diff --git a/drs2dd.py b/drs2dd.py index 88104c8e..59f2a4b1 100644 --- a/drs2dd.py +++ b/drs2dd.py @@ -4,6 +4,7 @@ import json import os import shutil +from copy import deepcopy from dataclasses import asdict from drsxml2json import get_songdata_from_track_id @@ -81,12 +82,11 @@ def map_line_nodes( ) track_step.long_point.insert(0, initial_track_point) - for index_in_line, drs_track_point in enumerate(track_step.long_point): + index_in_line = 0 + for drs_track_point in track_step.long_point: + index_in_line += 1 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, @@ -103,6 +103,13 @@ def map_line_nodes( ) lines.append(line) + if drs_track_point.left_end_pos and drs_track_point.right_end_pos: + index_in_line += 1 + end_line = deepcopy(line) + end_line.position.x = drs_track_point.to_dance_dash_end_x + end_line.indexInLine = index_in_line + lines.append(end_line) + return lines @@ -114,7 +121,6 @@ def create_dd_tracks_from_DRSSongData( print(f'Created directory: {target_dir}') 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_mp3_and_duration(folder_path) if song_path and song_length: @@ -149,14 +155,12 @@ def create_dd_tracks_from_DRSSongData( orderCountPerBeat=ORDER_COUNT_PER_BEAT, sphereNodes=map_sphere_nodes( difficulty, - # 10 seconds because the songs are 10 seconds longer... ? - float(song_length) - 10, + float(song_length), dd_bmp, ), lineNodes=map_line_nodes( difficulty, - # 10 seconds because the songs are 10 seconds longer... ? - float(song_length) - 10, + float(song_length), dd_bmp, ), effectNodes=[], diff --git a/model/dancerush.py b/model/dancerush.py index 8d89157c..a7d239fb 100644 --- a/model/dancerush.py +++ b/model/dancerush.py @@ -239,6 +239,12 @@ class DRSTrackPoint(DRSTrackStepPositionInfo): left_end_pos: int | None = None right_end_pos: int | None = None + @property + def to_dance_dash_end_x(self): + center_pos = (self.left_end_pos + self.right_end_pos) / 2 + mapped_value = 1 + (center_pos / MAX_POS) * 8 + return round(mapped_value) + @dataclass class DRSTrackStepPlayerInfo: diff --git a/tracks/1-2-3 Jump!/287_difficulty_1a.json b/tracks/1-2-3 Jump!/287_difficulty_1a.json index 01e9f3e2..b909ddd8 100644 --- a/tracks/1-2-3 Jump!/287_difficulty_1a.json +++ b/tracks/1-2-3 Jump!/287_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 98, - "time": 0.019515169995426133, + "time": 0.01951516999542613, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.024393962494282665, + "time": 0.02439396249428266, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 171, - "time": 0.03415154749199573, + "time": 0.034151547491995726, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 171, - "time": 0.03415154749199573, + "time": 0.034151547491995726, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 196, - "time": 0.039030339990852266, + "time": 0.03903033999085226, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 220, - "time": 0.0439091324897088, + "time": 0.04390913248970879, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 318, - "time": 0.06342430248513493, + "time": 0.06342430248513492, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 343, - "time": 0.06830309498399147, + "time": 0.06830309498399145, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 343, - "time": 0.06830309498399147, + "time": 0.06830309498399145, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 367, - "time": 0.073181887482848, + "time": 0.07318188748284798, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 367, - "time": 0.073181887482848, + "time": 0.07318188748284798, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 392, - "time": 0.07806067998170453, + "time": 0.07806067998170452, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 416, - "time": 0.08293947248056108, + "time": 0.08293947248056106, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 514, - "time": 0.1024546424759872, + "time": 0.10245464247598719, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 612, - "time": 0.12196981247141334, + "time": 0.12196981247141332, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 637, - "time": 0.12684860497026987, + "time": 0.12684860497026984, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 710, - "time": 0.14148498246683947, + "time": 0.14148498246683944, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 808, - "time": 0.1610001524622656, + "time": 0.16100015246226557, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 832, - "time": 0.16587894496112215, + "noteOrder": 833, + "time": 0.16587894496112213, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 906, - "time": 0.18051532245769172, + "time": 0.1805153224576917, "position": { "x": 2, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 955, - "time": 0.19027290745540482, + "time": 0.1902729074554048, "position": { "x": 8, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1053, - "time": 0.20978807745083092, + "time": 0.2097880774508309, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1090, - "time": 0.21710626619911574, + "time": 0.21710626619911572, "position": { "x": 5, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1139, - "time": 0.2268638511968288, + "time": 0.22686385119682878, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1298, - "time": 0.25857600243939627, + "time": 0.2585760024393962, "position": { "x": 2, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1347, - "time": 0.26833358743710933, + "time": 0.2683335874371093, "position": { "x": 8, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.30248513492910506, "position": { "x": 5, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.3073639274279616, + "noteOrder": 1543, + "time": 0.30736392742796154, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.3073639274279616, + "noteOrder": 1543, + "time": 0.30736392742796154, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1640, + "noteOrder": 1641, "time": 0.3268790974233877, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.3366366824211008, + "noteOrder": 1690, + "time": 0.33663668242110073, "position": { "x": 8, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1738, + "noteOrder": 1739, "time": 0.34639426741881385, "position": { "x": 2, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1787, - "time": 0.35615185241652697, + "noteOrder": 1788, + "time": 0.3561518524165269, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1836, - "time": 0.36590943741424, + "noteOrder": 1837, + "time": 0.3659094374142399, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1910, - "time": 0.38054581491080963, + "noteOrder": 1911, + "time": 0.3805458149108096, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.3854246074096661, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.3854246074096661, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2032, - "time": 0.4049397774050923, + "noteOrder": 2033, + "time": 0.4049397774050922, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2057, - "time": 0.4098185699039488, + "noteOrder": 2058, + "time": 0.40981856990394877, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2081, - "time": 0.4146973624028053, + "noteOrder": 2082, + "time": 0.41469736240280525, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2277, - "time": 0.4537277023936576, + "noteOrder": 2278, + "time": 0.45372770239365756, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2301, - "time": 0.45860649489251415, + "noteOrder": 2302, + "time": 0.45860649489251404, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2326, - "time": 0.4634852873913707, + "noteOrder": 2327, + "time": 0.4634852873913706, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.4927580423845098, "position": { "x": 5, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.49763683488336635, + "noteOrder": 2498, + "time": 0.4976368348833663, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.5025156273822229, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.5171520048787925, + "noteOrder": 2596, + "time": 0.5171520048787924, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.5171520048787925, + "noteOrder": 2596, + "time": 0.5171520048787924, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.522030797377649, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.522030797377649, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.5269095898765056, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.5269095898765056, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2670, "time": 0.5317883823753621, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2693, - "time": 0.5366671748742187, + "noteOrder": 2694, + "time": 0.5366671748742186, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.5415459673730751, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.5464247598719317, + "noteOrder": 2743, + "time": 0.5464247598719316, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2779, - "time": 0.5537429486202166, + "noteOrder": 2780, + "time": 0.5537429486202164, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2828, - "time": 0.5635005336179296, + "noteOrder": 2829, + "time": 0.5635005336179295, "position": { "x": 5, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.5708187223662143, + "noteOrder": 2866, + "time": 0.5708187223662142, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.5708187223662143, + "noteOrder": 2866, + "time": 0.5708187223662142, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2938, - "time": 0.585455099862784, + "noteOrder": 2939, + "time": 0.5854550998627839, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 2952, "time": 0.5878944961122122, "position": { "x": 5, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2963, - "time": 0.5903338923616406, + "noteOrder": 2964, + "time": 0.5903338923616405, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3012, - "time": 0.6000914773593536, + "noteOrder": 3013, + "time": 0.6000914773593534, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3062, "time": 0.6098490623570666, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.6147278548559232, + "noteOrder": 3086, + "time": 0.6147278548559231, "position": { "x": 3, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3109, + "noteOrder": 3111, "time": 0.6196066473547797, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.6244854398536362, + "noteOrder": 3135, + "time": 0.6244854398536361, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.6244854398536362, + "noteOrder": 3135, + "time": 0.6244854398536361, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3158, + "noteOrder": 3160, "time": 0.6293642323524927, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3158, + "noteOrder": 3160, "time": 0.6293642323524927, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3207, - "time": 0.6391218173502059, + "noteOrder": 3209, + "time": 0.6391218173502058, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3256, - "time": 0.648879402347919, + "noteOrder": 3258, + "time": 0.6488794023479189, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3282, "time": 0.6537581948467754, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.658636987345632, + "noteOrder": 3307, + "time": 0.6586369873456319, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3330, - "time": 0.6635157798444886, + "noteOrder": 3331, + "time": 0.6635157798444885, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3330, - "time": 0.6635157798444886, + "noteOrder": 3331, + "time": 0.6635157798444885, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3356, "time": 0.668394572343345, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3356, "time": 0.668394572343345, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3379, - "time": 0.6732733648422016, + "noteOrder": 3380, + "time": 0.6732733648422015, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.6757127610916299, + "noteOrder": 3392, + "time": 0.6757127610916297, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3403, - "time": 0.678152157341058, + "noteOrder": 3405, + "time": 0.6781521573410579, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3428, + "noteOrder": 3429, "time": 0.6830309498399146, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.685470346089343, + "noteOrder": 3441, + "time": 0.6854703460893429, "position": { "x": 5, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3452, - "time": 0.6879097423387712, + "noteOrder": 3454, + "time": 0.6879097423387711, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3599, + "noteOrder": 3601, "time": 0.7171824973319103, "position": { "x": 8, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 3650, "time": 0.7269400823296234, "position": { "x": 2, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.7513340448239061, + "noteOrder": 3772, + "time": 0.751334044823906, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3795, - "time": 0.7562128373227627, + "noteOrder": 3797, + "time": 0.7562128373227626, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3819, - "time": 0.7610916298216193, + "noteOrder": 3821, + "time": 0.7610916298216192, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3819, - "time": 0.7610916298216193, + "noteOrder": 3821, + "time": 0.7610916298216192, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.7659704223204757, + "noteOrder": 3846, + "time": 0.7659704223204756, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.7659704223204757, + "noteOrder": 3846, + "time": 0.7659704223204756, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7708492148193322, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3895, "time": 0.7757280073181887, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4015, + "noteOrder": 4017, "time": 0.8001219698124714, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4028, + "noteOrder": 4029, "time": 0.8025613660618997, "position": { "x": 5, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.805000762311328, + "noteOrder": 4042, + "time": 0.8050007623113279, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4138, + "noteOrder": 4140, "time": 0.824515932306754, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4236, - "time": 0.8440311023021803, + "noteOrder": 4237, + "time": 0.8440311023021801, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4309, - "time": 0.8586674797987499, + "noteOrder": 4311, + "time": 0.8586674797987497, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4334, - "time": 0.8635462722976064, + "noteOrder": 4335, + "time": 0.8635462722976063, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4334, - "time": 0.8635462722976064, + "noteOrder": 4335, + "time": 0.8635462722976063, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4407, + "noteOrder": 4409, "time": 0.8781826497941759, "position": { "x": 3, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.8806220460436043, + "noteOrder": 4421, + "time": 0.8806220460436042, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4432, - "time": 0.8830614422930325, + "noteOrder": 4433, + "time": 0.8830614422930324, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4530, - "time": 0.9025766122884586, + "noteOrder": 4531, + "time": 0.9025766122884585, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.9220917822838848, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4703, "time": 0.9367281597804543, "position": { "x": 3, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4713, - "time": 0.9391675560298827, + "noteOrder": 4715, + "time": 0.9391675560298826, "position": { "x": 5, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4725, - "time": 0.9416069522793109, + "noteOrder": 4727, + "time": 0.9416069522793108, "position": { "x": 7, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4750, - "time": 0.9464857447781674, + "noteOrder": 4752, + "time": 0.9464857447781673, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4750, - "time": 0.9464857447781674, + "noteOrder": 4752, + "time": 0.9464857447781673, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4774, + "noteOrder": 4776, "time": 0.951364537277024, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4774, + "noteOrder": 4776, "time": 0.951364537277024, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4848, - "time": 0.9660009147735936, + "noteOrder": 4850, + "time": 0.9660009147735934, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4872, - "time": 0.9708797072724501, + "noteOrder": 4874, + "time": 0.97087970727245, "position": { "x": 3, "y": 0 @@ -2536,10 +2536,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 245, - "time": 0.04878792498856533, + "time": 0.04878792498856532, "position": { "x": 4, "y": 0 @@ -2559,10 +2559,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 269, - "time": 0.05366671748742187, + "time": 0.053666717487421856, "position": { "x": 4, "y": 0 @@ -2582,10 +2582,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 245, - "time": 0.04878792498856533, + "time": 0.04878792498856532, "position": { "x": 6, "y": 0 @@ -2605,10 +2605,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 269, - "time": 0.05366671748742187, + "time": 0.053666717487421856, "position": { "x": 6, "y": 0 @@ -2628,10 +2628,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 441, - "time": 0.0878182649794176, + "time": 0.08781826497941758, "position": { "x": 6, "y": 0 @@ -2651,7 +2651,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 465, "time": 0.09269705747827413, @@ -2674,10 +2674,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 441, - "time": 0.0878182649794176, + "time": 0.08781826497941758, "position": { "x": 4, "y": 0 @@ -2697,7 +2697,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 465, "time": 0.09269705747827413, @@ -2720,10 +2720,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 490, - "time": 0.09757584997713066, + "time": 0.09757584997713065, "position": { "x": 3, "y": 0 @@ -2743,10 +2743,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 514, - "time": 0.1024546424759872, + "time": 0.10245464247598719, "position": { "x": 3, "y": 0 @@ -2766,10 +2766,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 539, - "time": 0.10733343497484374, + "time": 0.10733343497484371, "position": { "x": 7, "y": 0 @@ -2789,7 +2789,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 563, "time": 0.11221222747370026, @@ -2812,7 +2812,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 588, "time": 0.11709101997255679, @@ -2835,10 +2835,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 686, - "time": 0.13660618996798293, + "time": 0.1366061899679829, "position": { "x": 3, "y": 0 @@ -2858,10 +2858,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 686, - "time": 0.13660618996798293, + "time": 0.1366061899679829, "position": { "x": 7, "y": 0 @@ -2881,10 +2881,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 710, - "time": 0.14148498246683947, + "time": 0.14148498246683944, "position": { "x": 7, "y": 0 @@ -2904,10 +2904,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 735, - "time": 0.146363774965696, + "time": 0.14636377496569597, "position": { "x": 3, "y": 0 @@ -2927,7 +2927,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 759, "time": 0.15124256746455253, @@ -2950,10 +2950,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 783, - "time": 0.15612135996340906, + "noteOrder": 784, + "time": 0.15612135996340903, "position": { "x": 7, "y": 0 @@ -2973,10 +2973,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 881, - "time": 0.1756365299588352, + "noteOrder": 882, + "time": 0.17563652995883516, "position": { "x": 7, "y": 0 @@ -2996,10 +2996,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 881, - "time": 0.1756365299588352, + "noteOrder": 882, + "time": 0.17563652995883516, "position": { "x": 4, "y": 0 @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 906, - "time": 0.18051532245769172, + "time": 0.1805153224576917, "position": { "x": 4, "y": 0 @@ -3042,9 +3042,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 930, + "noteOrder": 931, "time": 0.18539411495654826, "position": { "x": 6, @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 955, - "time": 0.19027290745540482, + "time": 0.1902729074554048, "position": { "x": 6, "y": 0 @@ -3088,10 +3088,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 979, - "time": 0.19515169995426132, + "noteOrder": 980, + "time": 0.1951516999542613, "position": { "x": 3, "y": 0 @@ -3110,11 +3110,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1004, - "time": 0.20003049245311785, + "noteOrder": 992, + "time": 0.1975910962036896, "position": { "x": 3, "y": 0 @@ -3128,18 +3128,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1028, - "time": 0.2049092849519744, + "noteOrder": 992, + "time": 0.1975910962036896, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3156,13 +3156,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1077, - "time": 0.21466686994968748, + "noteOrder": 1004, + "time": 0.20003049245311785, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3174,16 +3174,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1004, + "time": 0.20003049245311785, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 1090, - "time": 0.21710626619911574, + "noteOrder": 1004, + "time": 0.20003049245311785, "position": { "x": 3, "y": 0 @@ -3202,13 +3225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 44, "indexInLine": 2, "isSliding": false, - "noteOrder": 1102, - "time": 0.21954566244854398, + "noteOrder": 1017, + "time": 0.2024698887025461, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3225,13 +3248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1126, - "time": 0.22442445494740051, + "noteOrder": 1017, + "time": 0.2024698887025461, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3243,18 +3266,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1139, - "time": 0.2268638511968288, + "noteOrder": 1029, + "time": 0.20490928495197439, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3266,16 +3289,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1151, - "time": 0.22930324744625707, + "noteOrder": 1029, + "time": 0.20490928495197439, "position": { "x": 5, "y": 0 @@ -3289,16 +3312,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1175, - "time": 0.23418203994511358, + "noteOrder": 1029, + "time": 0.20490928495197439, "position": { "x": 3, "y": 0 @@ -3317,11 +3340,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1200, - "time": 0.2390608324439701, + "noteOrder": 1041, + "time": 0.20734868120140262, "position": { "x": 3, "y": 0 @@ -3340,13 +3363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1175, - "time": 0.23418203994511358, + "noteOrder": 1041, + "time": 0.20734868120140262, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3358,18 +3381,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1200, - "time": 0.2390608324439701, + "noteOrder": 1053, + "time": 0.2097880774508309, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3381,18 +3404,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1224, - "time": 0.24393962494282667, + "noteOrder": 1053, + "time": 0.2097880774508309, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3404,18 +3427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.24881841744168318, + "noteOrder": 1078, + "time": 0.21466686994968742, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3432,13 +3455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1224, - "time": 0.24393962494282667, + "noteOrder": 1090, + "time": 0.21710626619911572, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3450,18 +3473,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, - "time": 0.24881841744168318, + "noteOrder": 1102, + "time": 0.21954566244854398, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3473,18 +3496,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1273, - "time": 0.25369720994053974, + "noteOrder": 1127, + "time": 0.22442445494740051, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3501,13 +3524,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.25857600243939627, + "noteOrder": 1139, + "time": 0.22686385119682878, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3524,13 +3547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1322, - "time": 0.2634547949382528, + "noteOrder": 1151, + "time": 0.22930324744625702, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3542,18 +3565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 1347, - "time": 0.26833358743710933, + "noteOrder": 1176, + "time": 0.23418203994511358, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3565,16 +3588,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1371, - "time": 0.27321237993596587, + "noteOrder": 1200, + "time": 0.2390608324439701, "position": { "x": 3, "y": 0 @@ -3593,13 +3616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1396, - "time": 0.2780911724348224, + "noteOrder": 1176, + "time": 0.23418203994511358, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3611,16 +3634,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1420, - "time": 0.28296996493367893, + "noteOrder": 1200, + "time": 0.2390608324439701, "position": { "x": 7, "y": 0 @@ -3639,13 +3662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 1445, - "time": 0.28784875743253546, + "noteOrder": 1225, + "time": 0.24393962494282664, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3662,13 +3685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1469, - "time": 0.292727549931392, + "noteOrder": 1249, + "time": 0.24881841744168315, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3680,18 +3703,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, - "time": 0.2976063424302485, + "noteOrder": 1225, + "time": 0.24393962494282664, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3708,13 +3731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1494, - "time": 0.2976063424302485, + "noteOrder": 1249, + "time": 0.24881841744168315, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3726,18 +3749,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 1518, - "time": 0.30248513492910506, + "noteOrder": 1274, + "time": 0.2536972099405397, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3749,18 +3772,2617 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1567, - "time": 0.3122427199268181, + "noteOrder": 1298, + "time": 0.2585760024393962, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1323, + "time": 0.2634547949382528, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1347, + "time": 0.2683335874371093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1372, + "time": 0.2732123799359658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1396, + "time": 0.2780911724348224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1421, + "time": 0.2829699649336789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1445, + "time": 0.28784875743253546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1470, + "time": 0.29272754993139194, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1494, + "time": 0.29760634243024847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1494, + "time": 0.29760634243024847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1519, + "time": 0.30248513492910506, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1568, + "time": 0.31224271992681807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1580, + "time": 0.31468211617624636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1580, + "time": 0.31468211617624636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1592, + "time": 0.31712151242567466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1604, + "time": 0.3195609086751029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1604, + "time": 0.3195609086751029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1617, + "time": 0.32200030492453113, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1629, + "time": 0.3244397011739594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1629, + "time": 0.3244397011739594, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1641, + "time": 0.3268790974233877, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1641, + "time": 0.3268790974233877, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1666, + "time": 0.33175788992224425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1690, + "time": 0.33663668242110073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1715, + "time": 0.3415154749199573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1739, + "time": 0.34639426741881385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1764, + "time": 0.3512730599176703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1788, + "time": 0.3561518524165269, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1813, + "time": 0.3610306449153834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1837, + "time": 0.3659094374142399, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1862, + "time": 0.3707882299130965, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.375667022411953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1886, + "time": 0.375667022411953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1911, + "time": 0.3805458149108096, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1960, + "time": 0.3903033999085226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1972, + "time": 0.3927427961579509, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1972, + "time": 0.3927427961579509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3951821924073792, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3976215886568074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3976215886568074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2009, + "time": 0.4000609849062357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2021, + "time": 0.40250038115566394, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2021, + "time": 0.40250038115566394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2033, + "time": 0.4049397774050922, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2033, + "time": 0.4049397774050922, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2106, + "time": 0.4195761549016618, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2131, + "time": 0.42445494740051837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2106, + "time": 0.4195761549016618, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2131, + "time": 0.42445494740051837, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2155, + "time": 0.42933373989937484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2168, + "time": 0.43177313614880314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2168, + "time": 0.43177313614880314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2180, + "time": 0.43421253239823143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2180, + "time": 0.43421253239823143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2180, + "time": 0.43421253239823143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2192, + "time": 0.43665192864765967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2192, + "time": 0.43665192864765967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2204, + "time": 0.43909132489708796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2204, + "time": 0.43909132489708796, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2204, + "time": 0.43909132489708796, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2217, + "time": 0.4415307211465162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2217, + "time": 0.4415307211465162, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2229, + "time": 0.44397011739594444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2229, + "time": 0.44397011739594444, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2229, + "time": 0.44397011739594444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2241, + "time": 0.44640951364537274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2241, + "time": 0.44640951364537274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2253, + "time": 0.44884890989480103, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2253, + "time": 0.44884890989480103, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2253, + "time": 0.44884890989480103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2278, + "time": 0.45372770239365756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2351, + "time": 0.46836407989022716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2351, + "time": 0.46836407989022716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2364, + "time": 0.4708034761396554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2364, + "time": 0.4708034761396554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2376, + "time": 0.47324287238908364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2376, + "time": 0.47324287238908364, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2376, + "time": 0.47324287238908364, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2388, + "time": 0.475682268638512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2388, + "time": 0.475682268638512, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2400, + "time": 0.4781216648879402, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2400, + "time": 0.4781216648879402, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2400, + "time": 0.4781216648879402, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2413, + "time": 0.48056106113736846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2413, + "time": 0.48056106113736846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2425, + "time": 0.4830004573867967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2425, + "time": 0.4830004573867967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2425, + "time": 0.4830004573867967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2437, + "time": 0.485439853636225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2437, + "time": 0.485439853636225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2449, + "time": 0.4878792498856533, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2449, + "time": 0.4878792498856533, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2449, + "time": 0.4878792498856533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2474, + "time": 0.4927580423845098, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2547, + "time": 0.5073944198810794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2768, + "time": 0.5513035523707882, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2780, + "time": 0.5537429486202164, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2792, + "time": 0.5561823448696448, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2817, + "time": 0.5610611373685013, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2829, + "time": 0.5635005336179295, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2841, + "time": 0.5659399298673577, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2890, + "time": 0.5756975148650709, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2903, + "time": 0.5781369111144992, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2903, + "time": 0.5781369111144992, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.5805763073639274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2927, + "time": 0.5830157036133556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2927, + "time": 0.5830157036133556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2988, + "time": 0.5952126848604969, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3013, + "time": 0.6000914773593534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3037, + "time": 0.6049702698582101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3062, + "time": 0.6098490623570666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3184, + "time": 0.6342430248513493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3209, + "time": 0.6391218173502058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3233, + "time": 0.6440006098490623, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3777,11 +6399,34 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1591, - "time": 0.31712151242567466, + "noteOrder": 3258, + "time": 0.6488794023479189, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3478, + "time": 0.6927885348376277, "position": { "x": 7, "y": 0 @@ -3800,11 +6445,57 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3490, + "time": 0.6952279310870559, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6976673273364842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1616, - "time": 0.3220003049245312, + "noteOrder": 3503, + "time": 0.6976673273364842, "position": { "x": 3, "y": 0 @@ -3823,11 +6514,80 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3515, + "time": 0.7001067235859124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3527, + "time": 0.7025461198353407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3527, + "time": 0.7025461198353407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1665, - "time": 0.3317578899222443, + "noteOrder": 3539, + "time": 0.7049855160847689, "position": { "x": 6, "y": 0 @@ -3846,11 +6606,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1689, - "time": 0.3366366824211008, + "noteOrder": 3552, + "time": 0.7074249123341974, "position": { "x": 6, "y": 0 @@ -3869,13 +6629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1714, - "time": 0.3415154749199573, + "noteOrder": 3552, + "time": 0.7074249123341974, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3892,11 +6652,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1738, - "time": 0.34639426741881385, + "noteOrder": 3564, + "time": 0.7098643085836256, "position": { "x": 4, "y": 0 @@ -3915,11 +6675,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1763, - "time": 0.3512730599176704, + "noteOrder": 3576, + "time": 0.7123037048330538, "position": { "x": 7, "y": 0 @@ -3938,11 +6698,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1787, - "time": 0.35615185241652697, + "noteOrder": 3601, + "time": 0.7171824973319103, "position": { "x": 7, "y": 0 @@ -3961,11 +6721,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1812, - "time": 0.36103064491538345, + "noteOrder": 3625, + "time": 0.7220612898307668, "position": { "x": 3, "y": 0 @@ -3984,11 +6744,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1836, - "time": 0.36590943741424, + "noteOrder": 3650, + "time": 0.7269400823296234, "position": { "x": 3, "y": 0 @@ -4007,13 +6767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1861, - "time": 0.3707882299130965, + "noteOrder": 3674, + "time": 0.7318188748284798, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4030,13 +6790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1885, - "time": 0.37566702241195304, + "noteOrder": 3699, + "time": 0.7366976673273364, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4053,13 +6813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1885, - "time": 0.37566702241195304, + "noteOrder": 3674, + "time": 0.7318188748284798, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4076,13 +6836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1910, - "time": 0.38054581491080963, + "noteOrder": 3699, + "time": 0.7366976673273364, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4099,13 +6859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1959, - "time": 0.39030339990852264, + "noteOrder": 3723, + "time": 0.741576459826193, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4117,16 +6877,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1983, - "time": 0.3951821924073792, + "noteOrder": 3748, + "time": 0.7464552523250495, "position": { "x": 3, "y": 0 @@ -4145,11 +6905,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2008, - "time": 0.4000609849062357, + "noteOrder": 3723, + "time": 0.741576459826193, "position": { "x": 7, "y": 0 @@ -4168,13 +6928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2106, - "time": 0.41957615490166184, + "noteOrder": 3748, + "time": 0.7464552523250495, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4186,16 +6946,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 2130, - "time": 0.42445494740051837, + "noteOrder": 3919, + "time": 0.7806067998170452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7854855923159018, "position": { "x": 4, "y": 0 @@ -4214,11 +6997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2106, - "time": 0.41957615490166184, + "noteOrder": 3919, + "time": 0.7806067998170452, "position": { "x": 6, "y": 0 @@ -4237,11 +7020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2130, - "time": 0.42445494740051837, + "noteOrder": 3944, + "time": 0.7854855923159018, "position": { "x": 6, "y": 0 @@ -4260,13 +7043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2155, - "time": 0.42933373989937496, + "noteOrder": 3968, + "time": 0.7903643848147583, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4278,18 +7061,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2179, - "time": 0.4342125323982315, + "noteOrder": 3980, + "time": 0.7928037810641866, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4306,13 +7089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2204, - "time": 0.43909132489708796, + "noteOrder": 3980, + "time": 0.7928037810641866, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4324,18 +7107,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2228, - "time": 0.4439701173959445, + "noteOrder": 3993, + "time": 0.7952431773136148, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4352,13 +7135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2253, - "time": 0.44884890989480103, + "noteOrder": 3993, + "time": 0.7952431773136148, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4370,18 +7153,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 2277, - "time": 0.4537277023936576, + "noteOrder": 3993, + "time": 0.7952431773136148, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4398,13 +7181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 182, "indexInLine": 2, "isSliding": false, - "noteOrder": 2350, - "time": 0.46836407989022716, + "noteOrder": 4005, + "time": 0.7976825735630431, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4421,13 +7204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2350, - "time": 0.46836407989022716, + "noteOrder": 4005, + "time": 0.7976825735630431, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4439,18 +7222,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2375, - "time": 0.4732428723890837, + "noteOrder": 4017, + "time": 0.8001219698124714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4467,13 +7250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2399, - "time": 0.4781216648879402, + "noteOrder": 4017, + "time": 0.8001219698124714, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4485,18 +7268,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2424, - "time": 0.4830004573867968, + "noteOrder": 4066, + "time": 0.8098795548101844, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4513,13 +7296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2448, - "time": 0.48787924988565334, + "noteOrder": 4078, + "time": 0.8123189510596126, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4531,18 +7314,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2473, - "time": 0.4927580423845098, + "noteOrder": 4078, + "time": 0.8123189510596126, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4554,16 +7337,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2546, - "time": 0.5073944198810795, + "noteOrder": 4091, + "time": 0.8147583473090411, "position": { "x": 4, "y": 0 @@ -4577,18 +7360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2767, - "time": 0.5513035523707882, + "noteOrder": 4091, + "time": 0.8147583473090411, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4600,16 +7383,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 2779, - "time": 0.5537429486202166, + "noteOrder": 4091, + "time": 0.8147583473090411, "position": { "x": 3, "y": 0 @@ -4628,13 +7411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 187, "indexInLine": 2, "isSliding": false, - "noteOrder": 2791, - "time": 0.5561823448696448, + "noteOrder": 4103, + "time": 0.8171977435584693, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4651,13 +7434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2816, - "time": 0.5610611373685013, + "noteOrder": 4103, + "time": 0.8171977435584693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4669,18 +7452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2828, - "time": 0.5635005336179296, + "noteOrder": 4115, + "time": 0.8196371398078975, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4692,16 +7475,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 2, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2840, - "time": 0.5659399298673579, + "noteOrder": 4115, + "time": 0.8196371398078975, "position": { "x": 5, "y": 0 @@ -4715,18 +7498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2889, - "time": 0.5756975148650709, + "noteOrder": 4115, + "time": 0.8196371398078975, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4738,16 +7521,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2914, - "time": 0.5805763073639274, + "noteOrder": 4140, + "time": 0.824515932306754, "position": { "x": 3, "y": 0 @@ -4766,13 +7549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2987, - "time": 0.595212684860497, + "noteOrder": 4164, + "time": 0.8293947248056105, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4784,18 +7567,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3012, - "time": 0.6000914773593536, + "noteOrder": 4176, + "time": 0.8318341210550388, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4807,18 +7590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3036, - "time": 0.6049702698582101, + "noteOrder": 4176, + "time": 0.8318341210550388, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4835,13 +7618,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3060, - "time": 0.6098490623570666, + "noteOrder": 4188, + "time": 0.8342735173044671, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4858,13 +7641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3183, - "time": 0.6342430248513493, + "noteOrder": 4188, + "time": 0.8342735173044671, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4881,11 +7664,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3207, - "time": 0.6391218173502059, + "noteOrder": 4188, + "time": 0.8342735173044671, "position": { "x": 7, "y": 0 @@ -4899,18 +7682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3232, - "time": 0.6440006098490624, + "noteOrder": 4201, + "time": 0.8367129135538953, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4927,13 +7710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3256, - "time": 0.648879402347919, + "noteOrder": 4201, + "time": 0.8367129135538953, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4950,13 +7733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3477, - "time": 0.6927885348376277, + "noteOrder": 4213, + "time": 0.8391523098033236, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4968,18 +7751,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3489, - "time": 0.6952279310870559, + "noteOrder": 4213, + "time": 0.8391523098033236, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4991,18 +7774,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 2, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3501, - "time": 0.6976673273364843, + "noteOrder": 4213, + "time": 0.8391523098033236, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5019,13 +7802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3501, - "time": 0.6976673273364843, + "noteOrder": 4237, + "time": 0.8440311023021801, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5037,18 +7820,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 3513, - "time": 0.7001067235859125, + "noteOrder": 4262, + "time": 0.8489098948010367, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5065,13 +7848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 196, "indexInLine": 2, "isSliding": false, - "noteOrder": 3526, - "time": 0.7025461198353408, + "noteOrder": 4274, + "time": 0.851349291050465, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5088,13 +7871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3526, - "time": 0.7025461198353408, + "noteOrder": 4274, + "time": 0.851349291050465, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5106,18 +7889,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 3538, - "time": 0.704985516084769, + "noteOrder": 4286, + "time": 0.8537886872998932, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5134,13 +7917,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 197, "indexInLine": 2, "isSliding": false, - "noteOrder": 3550, - "time": 0.7074249123341974, + "noteOrder": 4299, + "time": 0.8562280835493215, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5157,13 +7940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3550, - "time": 0.7074249123341974, + "noteOrder": 4299, + "time": 0.8562280835493215, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5175,18 +7958,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3562, - "time": 0.7098643085836256, + "noteOrder": 4311, + "time": 0.8586674797987497, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5198,16 +7981,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3575, - "time": 0.7123037048330539, + "noteOrder": 4311, + "time": 0.8586674797987497, "position": { "x": 7, "y": 0 @@ -5226,13 +8009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 3599, - "time": 0.7171824973319103, + "noteOrder": 4360, + "time": 0.8684250647964629, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5244,16 +8027,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3624, - "time": 0.7220612898307669, + "noteOrder": 4372, + "time": 0.8708644610458911, "position": { "x": 3, "y": 0 @@ -5272,13 +8055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3648, - "time": 0.7269400823296234, + "noteOrder": 4372, + "time": 0.8708644610458911, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5295,13 +8078,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3673, - "time": 0.73181887482848, + "noteOrder": 4384, + "time": 0.8733038572953193, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5313,18 +8096,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3697, - "time": 0.7366976673273365, + "noteOrder": 4384, + "time": 0.8733038572953193, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5336,18 +8119,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3673, - "time": 0.73181887482848, + "noteOrder": 4384, + "time": 0.8733038572953193, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5359,18 +8142,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3697, - "time": 0.7366976673273365, + "noteOrder": 4397, + "time": 0.8757432535447477, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5382,18 +8165,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3722, - "time": 0.741576459826193, + "noteOrder": 4397, + "time": 0.8757432535447477, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5405,18 +8188,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3746, - "time": 0.7464552523250496, + "noteOrder": 4409, + "time": 0.8781826497941759, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5428,18 +8211,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3722, - "time": 0.741576459826193, + "noteOrder": 4409, + "time": 0.8781826497941759, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5456,11 +8239,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 206, "indexInLine": 1, "isSliding": false, - "noteOrder": 3746, - "time": 0.7464552523250496, + "noteOrder": 4458, + "time": 0.8879402347918889, "position": { "x": 7, "y": 0 @@ -5479,13 +8262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3917, - "time": 0.7806067998170453, + "noteOrder": 4470, + "time": 0.8903796310413171, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5497,18 +8280,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3942, - "time": 0.7854855923159019, + "noteOrder": 4470, + "time": 0.8903796310413171, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5520,16 +8303,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3917, - "time": 0.7806067998170453, + "noteOrder": 4482, + "time": 0.8928190272907455, "position": { "x": 6, "y": 0 @@ -5548,13 +8331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3942, - "time": 0.7854855923159019, + "noteOrder": 4482, + "time": 0.8928190272907455, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5571,11 +8354,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3966, - "time": 0.7903643848147583, + "noteOrder": 4482, + "time": 0.8928190272907455, "position": { "x": 7, "y": 0 @@ -5589,16 +8372,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3991, - "time": 0.7952431773136149, + "noteOrder": 4495, + "time": 0.8952584235401738, "position": { "x": 7, "y": 0 @@ -5617,13 +8400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4064, - "time": 0.8098795548101846, + "noteOrder": 4495, + "time": 0.8952584235401738, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5640,13 +8423,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4089, - "time": 0.8147583473090411, + "noteOrder": 4507, + "time": 0.8976978197896021, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5658,18 +8441,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4113, - "time": 0.8196371398078977, + "noteOrder": 4507, + "time": 0.8976978197896021, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5686,13 +8469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 4138, - "time": 0.824515932306754, + "noteOrder": 4507, + "time": 0.8976978197896021, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5704,16 +8487,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4162, - "time": 0.8293947248056106, + "noteOrder": 4531, + "time": 0.9025766122884585, "position": { "x": 7, "y": 0 @@ -5732,13 +8515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4187, - "time": 0.8342735173044672, + "noteOrder": 4556, + "time": 0.9074554047873151, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5755,13 +8538,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4211, - "time": 0.8391523098033237, + "noteOrder": 4568, + "time": 0.9098948010367434, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5773,18 +8556,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4236, - "time": 0.8440311023021803, + "noteOrder": 4568, + "time": 0.9098948010367434, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5796,18 +8579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4260, - "time": 0.8489098948010367, + "noteOrder": 4580, + "time": 0.9123341972861716, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5824,13 +8607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4285, - "time": 0.8537886872998933, + "noteOrder": 4580, + "time": 0.9123341972861716, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5842,16 +8625,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4358, - "time": 0.868425064796463, + "noteOrder": 4580, + "time": 0.9123341972861716, "position": { "x": 3, "y": 0 @@ -5865,16 +8648,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4383, - "time": 0.8733038572953193, + "noteOrder": 4593, + "time": 0.9147735935355998, "position": { "x": 3, "y": 0 @@ -5893,13 +8676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4456, - "time": 0.887940234791889, + "noteOrder": 4593, + "time": 0.9147735935355998, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5916,13 +8699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4481, - "time": 0.8928190272907456, + "noteOrder": 4605, + "time": 0.9172129897850281, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5934,18 +8717,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4505, - "time": 0.8976978197896021, + "noteOrder": 4605, + "time": 0.9172129897850281, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5962,13 +8745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 4530, - "time": 0.9025766122884586, + "noteOrder": 4605, + "time": 0.9172129897850281, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5980,16 +8763,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4554, - "time": 0.9074554047873152, + "noteOrder": 4629, + "time": 0.9220917822838848, "position": { "x": 3, "y": 0 @@ -6008,13 +8791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4578, - "time": 0.9123341972861717, + "noteOrder": 4654, + "time": 0.9269705747827413, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6031,13 +8814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4603, - "time": 0.9172129897850283, + "noteOrder": 4666, + "time": 0.9294099710321695, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6049,16 +8832,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, + "lineGroupId": 216, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4666, + "time": 0.9294099710321695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, "indexInLine": 1, "isSliding": false, - "noteOrder": 4627, - "time": 0.9220917822838848, + "noteOrder": 4678, + "time": 0.9318493672815977, "position": { "x": 3, "y": 0 @@ -6077,13 +8883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4652, - "time": 0.9269705747827414, + "noteOrder": 4691, + "time": 0.934288763531026, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6095,18 +8901,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4676, - "time": 0.9318493672815978, + "noteOrder": 4691, + "time": 0.934288763531026, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6124,9 +8930,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.9562433297758804, "position": { "x": 6, @@ -6147,10 +8953,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4823, - "time": 0.961122122274737, + "noteOrder": 4825, + "time": 0.9611221222747369, "position": { "x": 6, "y": 0 @@ -6170,9 +8976,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.9562433297758804, "position": { "x": 4, @@ -6193,10 +8999,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4823, - "time": 0.961122122274737, + "noteOrder": 4825, + "time": 0.9611221222747369, "position": { "x": 4, "y": 0 @@ -6216,10 +9022,10 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, - "time": 0.9757584997713067, + "noteOrder": 4899, + "time": 0.9757584997713066, "position": { "x": 4, "y": 0 @@ -6239,9 +9045,9 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.980637292270163, "position": { "x": 4, @@ -6262,10 +9068,10 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, - "time": 0.9757584997713067, + "noteOrder": 4899, + "time": 0.9757584997713066, "position": { "x": 6, "y": 0 @@ -6285,9 +9091,9 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.980637292270163, "position": { "x": 6, diff --git a/tracks/1-2-3 Jump!/287_difficulty_1b.json b/tracks/1-2-3 Jump!/287_difficulty_1b.json index acaa7385..28794deb 100644 --- a/tracks/1-2-3 Jump!/287_difficulty_1b.json +++ b/tracks/1-2-3 Jump!/287_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 98, - "time": 0.019515169995426133, + "time": 0.01951516999542613, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 196, - "time": 0.039030339990852266, + "time": 0.03903033999085226, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 220, - "time": 0.0439091324897088, + "time": 0.04390913248970879, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 245, - "time": 0.04878792498856533, + "time": 0.04878792498856532, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 245, - "time": 0.04878792498856533, + "time": 0.04878792498856532, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 343, - "time": 0.06830309498399147, + "time": 0.06830309498399145, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 392, - "time": 0.07806067998170453, + "time": 0.07806067998170452, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 416, - "time": 0.08293947248056108, + "time": 0.08293947248056106, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 441, - "time": 0.0878182649794176, + "time": 0.08781826497941758, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 441, - "time": 0.0878182649794176, + "time": 0.08781826497941758, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 539, - "time": 0.10733343497484374, + "time": 0.10733343497484371, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 612, - "time": 0.12196981247141334, + "time": 0.12196981247141332, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 637, - "time": 0.12684860497026987, + "time": 0.12684860497026984, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 735, - "time": 0.146363774965696, + "time": 0.14636377496569597, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 783, - "time": 0.15612135996340906, + "noteOrder": 784, + "time": 0.15612135996340903, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 808, - "time": 0.1610001524622656, + "time": 0.16100015246226557, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 832, - "time": 0.16587894496112215, + "noteOrder": 833, + "time": 0.16587894496112213, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 881, - "time": 0.1756365299588352, + "noteOrder": 882, + "time": 0.17563652995883516, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 930, + "noteOrder": 931, "time": 0.18539411495654826, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1077, - "time": 0.21466686994968748, + "noteOrder": 1078, + "time": 0.21466686994968742, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1126, + "noteOrder": 1127, "time": 0.22442445494740051, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1273, - "time": 0.25369720994053974, + "noteOrder": 1274, + "time": 0.2536972099405397, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1298, - "time": 0.25857600243939627, + "time": 0.2585760024393962, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.2634547949382528, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.2634547949382528, "position": { "x": 6, @@ -654,7 +654,7 @@ }, { "noteOrder": 1347, - "time": 0.26833358743710933, + "time": 0.2683335874371093, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1347, - "time": 0.26833358743710933, + "time": 0.2683335874371093, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1420, - "time": 0.28296996493367893, + "noteOrder": 1421, + "time": 0.2829699649336789, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.30248513492910506, "position": { "x": 5, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.3073639274279616, + "noteOrder": 1543, + "time": 0.30736392742796154, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1665, - "time": 0.3317578899222443, + "noteOrder": 1666, + "time": 0.33175788992224425, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.3366366824211008, + "noteOrder": 1690, + "time": 0.33663668242110073, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1714, + "noteOrder": 1715, "time": 0.3415154749199573, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1714, + "noteOrder": 1715, "time": 0.3415154749199573, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1738, + "noteOrder": 1739, "time": 0.34639426741881385, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1738, + "noteOrder": 1739, "time": 0.34639426741881385, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1812, - "time": 0.36103064491538345, + "noteOrder": 1813, + "time": 0.3610306449153834, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1836, - "time": 0.36590943741424, + "noteOrder": 1837, + "time": 0.3659094374142399, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1910, - "time": 0.38054581491080963, + "noteOrder": 1911, + "time": 0.3805458149108096, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.3854246074096661, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2057, - "time": 0.4098185699039488, + "noteOrder": 2058, + "time": 0.40981856990394877, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2081, - "time": 0.4146973624028053, + "noteOrder": 2082, + "time": 0.41469736240280525, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2350, + "noteOrder": 2351, "time": 0.46836407989022716, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2375, - "time": 0.4732428723890837, + "noteOrder": 2376, + "time": 0.47324287238908364, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2399, + "noteOrder": 2400, "time": 0.4781216648879402, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2399, + "noteOrder": 2400, "time": 0.4781216648879402, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2424, - "time": 0.4830004573867968, + "noteOrder": 2425, + "time": 0.4830004573867967, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2424, - "time": 0.4830004573867968, + "noteOrder": 2425, + "time": 0.4830004573867967, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2448, - "time": 0.48787924988565334, + "noteOrder": 2449, + "time": 0.4878792498856533, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.4927580423845098, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.49763683488336635, + "noteOrder": 2498, + "time": 0.4976368348833663, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.5025156273822229, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.5171520048787925, + "noteOrder": 2596, + "time": 0.5171520048787924, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.5171520048787925, + "noteOrder": 2596, + "time": 0.5171520048787924, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.5269095898765056, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.5269095898765056, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2693, - "time": 0.5366671748742187, + "noteOrder": 2694, + "time": 0.5366671748742186, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.5415459673730751, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.5464247598719317, + "noteOrder": 2743, + "time": 0.5464247598719316, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.5708187223662143, + "noteOrder": 2866, + "time": 0.5708187223662142, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.5708187223662143, + "noteOrder": 2866, + "time": 0.5708187223662142, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.5756975148650709, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.5756975148650709, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3037, "time": 0.6049702698582101, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3062, "time": 0.6098490623570666, "position": { "x": 5, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.6147278548559232, + "noteOrder": 3086, + "time": 0.6147278548559231, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3109, + "noteOrder": 3111, "time": 0.6196066473547797, "position": { "x": 3, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.6244854398536362, + "noteOrder": 3135, + "time": 0.6244854398536361, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3158, + "noteOrder": 3160, "time": 0.6293642323524927, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3232, - "time": 0.6440006098490624, + "noteOrder": 3233, + "time": 0.6440006098490623, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3256, - "time": 0.648879402347919, + "noteOrder": 3258, + "time": 0.6488794023479189, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3282, "time": 0.6537581948467754, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.658636987345632, + "noteOrder": 3307, + "time": 0.6586369873456319, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3330, - "time": 0.6635157798444886, + "noteOrder": 3331, + "time": 0.6635157798444885, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3356, "time": 0.668394572343345, "position": { "x": 6, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3379, - "time": 0.6732733648422016, + "noteOrder": 3380, + "time": 0.6732733648422015, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3428, + "noteOrder": 3429, "time": 0.6830309498399146, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3477, + "noteOrder": 3478, "time": 0.6927885348376277, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3501, - "time": 0.6976673273364843, + "noteOrder": 3503, + "time": 0.6976673273364842, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3575, - "time": 0.7123037048330539, + "noteOrder": 3576, + "time": 0.7123037048330538, "position": { "x": 7, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3599, + "noteOrder": 3601, "time": 0.7171824973319103, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3624, - "time": 0.7220612898307669, + "noteOrder": 3625, + "time": 0.7220612898307668, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 3650, "time": 0.7269400823296234, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3819, - "time": 0.7610916298216193, + "noteOrder": 3821, + "time": 0.7610916298216192, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3917, - "time": 0.7806067998170453, + "noteOrder": 3919, + "time": 0.7806067998170452, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 3968, "time": 0.7903643848147583, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.7952431773136149, + "noteOrder": 3993, + "time": 0.7952431773136148, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4015, + "noteOrder": 4017, "time": 0.8001219698124714, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4015, + "noteOrder": 4017, "time": 0.8001219698124714, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.805000762311328, + "noteOrder": 4042, + "time": 0.8050007623113279, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.805000762311328, + "noteOrder": 4042, + "time": 0.8050007623113279, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4113, - "time": 0.8196371398078977, + "noteOrder": 4115, + "time": 0.8196371398078975, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4138, + "noteOrder": 4140, "time": 0.824515932306754, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4211, - "time": 0.8391523098033237, + "noteOrder": 4213, + "time": 0.8391523098033236, "position": { "x": 5, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4236, - "time": 0.8440311023021803, + "noteOrder": 4237, + "time": 0.8440311023021801, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4358, - "time": 0.868425064796463, + "noteOrder": 4360, + "time": 0.8684250647964629, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4383, + "noteOrder": 4384, "time": 0.8733038572953193, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4407, + "noteOrder": 4409, "time": 0.8781826497941759, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4407, + "noteOrder": 4409, "time": 0.8781826497941759, "position": { "x": 6, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4432, - "time": 0.8830614422930325, + "noteOrder": 4433, + "time": 0.8830614422930324, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4432, - "time": 0.8830614422930325, + "noteOrder": 4433, + "time": 0.8830614422930324, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4505, + "noteOrder": 4507, "time": 0.8976978197896021, "position": { "x": 5, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4530, - "time": 0.9025766122884586, + "noteOrder": 4531, + "time": 0.9025766122884585, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4603, - "time": 0.9172129897850283, + "noteOrder": 4605, + "time": 0.9172129897850281, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.9220917822838848, "position": { "x": 6, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4750, - "time": 0.9464857447781674, + "noteOrder": 4752, + "time": 0.9464857447781673, "position": { "x": 7, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4774, + "noteOrder": 4776, "time": 0.951364537277024, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.9562433297758804, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.9562433297758804, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4848, - "time": 0.9660009147735936, + "noteOrder": 4850, + "time": 0.9660009147735934, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4872, - "time": 0.9708797072724501, + "noteOrder": 4874, + "time": 0.97087970727245, "position": { "x": 7, "y": 0 @@ -2396,10 +2396,10 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 490, - "time": 0.09757584997713066, + "time": 0.09757584997713065, "position": { "x": 3, "y": 0 @@ -2419,7 +2419,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 563, "time": 0.11221222747370026, @@ -2442,10 +2442,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 686, - "time": 0.13660618996798293, + "time": 0.1366061899679829, "position": { "x": 7, "y": 0 @@ -2465,7 +2465,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 759, "time": 0.15124256746455253, @@ -2488,10 +2488,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 979, - "time": 0.19515169995426132, + "noteOrder": 980, + "time": 0.1951516999542613, "position": { "x": 7, "y": 0 @@ -2511,7 +2511,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1004, "time": 0.20003049245311785, @@ -2534,10 +2534,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 979, - "time": 0.19515169995426132, + "noteOrder": 980, + "time": 0.1951516999542613, "position": { "x": 3, "y": 0 @@ -2557,7 +2557,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1004, "time": 0.20003049245311785, @@ -2580,10 +2580,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1028, - "time": 0.2049092849519744, + "noteOrder": 1029, + "time": 0.20490928495197439, "position": { "x": 4, "y": 0 @@ -2603,10 +2603,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1053, - "time": 0.20978807745083092, + "time": 0.2097880774508309, "position": { "x": 4, "y": 0 @@ -2626,10 +2626,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1028, - "time": 0.2049092849519744, + "noteOrder": 1029, + "time": 0.20490928495197439, "position": { "x": 6, "y": 0 @@ -2649,10 +2649,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1053, - "time": 0.20978807745083092, + "time": 0.2097880774508309, "position": { "x": 6, "y": 0 @@ -2672,9 +2672,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1175, + "noteOrder": 1176, "time": 0.23418203994511358, "position": { "x": 7, @@ -2695,7 +2695,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1200, "time": 0.2390608324439701, @@ -2718,9 +2718,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1175, + "noteOrder": 1176, "time": 0.23418203994511358, "position": { "x": 3, @@ -2741,7 +2741,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1200, "time": 0.2390608324439701, @@ -2764,10 +2764,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1224, - "time": 0.24393962494282667, + "noteOrder": 1225, + "time": 0.24393962494282664, "position": { "x": 4, "y": 0 @@ -2787,10 +2787,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1249, - "time": 0.24881841744168318, + "time": 0.24881841744168315, "position": { "x": 4, "y": 0 @@ -2810,10 +2810,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1224, - "time": 0.24393962494282667, + "noteOrder": 1225, + "time": 0.24393962494282664, "position": { "x": 6, "y": 0 @@ -2833,10 +2833,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1249, - "time": 0.24881841744168318, + "time": 0.24881841744168315, "position": { "x": 6, "y": 0 @@ -2856,10 +2856,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1371, - "time": 0.27321237993596587, + "noteOrder": 1372, + "time": 0.2732123799359658, "position": { "x": 3, "y": 0 @@ -2879,7 +2879,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, "time": 0.28784875743253546, @@ -2902,10 +2902,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1469, - "time": 0.292727549931392, + "noteOrder": 1470, + "time": 0.29272754993139194, "position": { "x": 7, "y": 0 @@ -2925,10 +2925,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1542, - "time": 0.3073639274279616, + "noteOrder": 1543, + "time": 0.30736392742796154, "position": { "x": 7, "y": 0 @@ -2948,10 +2948,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1567, - "time": 0.3122427199268181, + "noteOrder": 1568, + "time": 0.31224271992681807, "position": { "x": 3, "y": 0 @@ -2971,9 +2971,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1591, + "noteOrder": 1592, "time": 0.31712151242567466, "position": { "x": 3, @@ -2994,10 +2994,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1616, - "time": 0.3220003049245312, + "noteOrder": 1617, + "time": 0.32200030492453113, "position": { "x": 7, "y": 0 @@ -3017,9 +3017,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1640, + "noteOrder": 1641, "time": 0.3268790974233877, "position": { "x": 7, @@ -3040,10 +3040,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1763, - "time": 0.3512730599176704, + "noteOrder": 1764, + "time": 0.3512730599176703, "position": { "x": 7, "y": 0 @@ -3063,10 +3063,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1836, - "time": 0.36590943741424, + "noteOrder": 1837, + "time": 0.3659094374142399, "position": { "x": 7, "y": 0 @@ -3086,9 +3086,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1861, + "noteOrder": 1862, "time": 0.3707882299130965, "position": { "x": 3, @@ -3109,9 +3109,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.3854246074096661, "position": { "x": 3, @@ -3132,10 +3132,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1959, - "time": 0.39030339990852264, + "noteOrder": 1960, + "time": 0.3903033999085226, "position": { "x": 7, "y": 0 @@ -3155,9 +3155,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1983, + "noteOrder": 1984, "time": 0.3951821924073792, "position": { "x": 7, @@ -3178,9 +3178,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2008, + "noteOrder": 2009, "time": 0.4000609849062357, "position": { "x": 3, @@ -3201,10 +3201,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2032, - "time": 0.4049397774050923, + "noteOrder": 2033, + "time": 0.4049397774050922, "position": { "x": 3, "y": 0 @@ -3224,10 +3224,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2106, - "time": 0.41957615490166184, + "time": 0.4195761549016618, "position": { "x": 4, "y": 0 @@ -3247,9 +3247,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2130, + "noteOrder": 2131, "time": 0.42445494740051837, "position": { "x": 4, @@ -3270,10 +3270,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2106, - "time": 0.41957615490166184, + "time": 0.4195761549016618, "position": { "x": 6, "y": 0 @@ -3293,9 +3293,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2130, + "noteOrder": 2131, "time": 0.42445494740051837, "position": { "x": 6, @@ -3316,10 +3316,33 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2155, - "time": 0.42933373989937496, + "time": 0.42933373989937484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2180, + "time": 0.43421253239823143, "position": { "x": 3, "y": 0 @@ -3337,9 +3360,78 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2180, + "time": 0.43421253239823143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2204, + "time": 0.43909132489708796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2204, + "time": 0.43909132489708796, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2204, "time": 0.43909132489708796, @@ -3360,9 +3452,101 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2229, + "time": 0.44397011739594444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2229, + "time": 0.44397011739594444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2253, + "time": 0.44884890989480103, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2253, + "time": 0.44884890989480103, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2253, "time": 0.44884890989480103, @@ -3383,12 +3567,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2278, + "time": 0.45372770239365756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2278, + "time": 0.45372770239365756, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2302, + "time": 0.45860649489251404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2302, + "time": 0.45860649489251404, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2302, + "time": 0.45860649489251404, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2301, - "time": 0.45860649489251415, + "noteOrder": 2327, + "time": 0.4634852873913706, "position": { "x": 3, "y": 0 @@ -3406,11 +3705,80 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2327, + "time": 0.4634852873913706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2351, + "time": 0.46836407989022716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2351, + "time": 0.46836407989022716, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.5513035523707882, "position": { "x": 3, @@ -3431,9 +3799,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2791, + "noteOrder": 2792, "time": 0.5561823448696448, "position": { "x": 3, @@ -3454,9 +3822,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.5610611373685013, "position": { "x": 7, @@ -3477,10 +3845,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2840, - "time": 0.5659399298673579, + "noteOrder": 2841, + "time": 0.5659399298673577, "position": { "x": 7, "y": 0 @@ -3500,9 +3868,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2914, + "noteOrder": 2915, "time": 0.5805763073639274, "position": { "x": 6, @@ -3523,10 +3891,10 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2938, - "time": 0.585455099862784, + "noteOrder": 2939, + "time": 0.5854550998627839, "position": { "x": 6, "y": 0 @@ -3546,9 +3914,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2914, + "noteOrder": 2915, "time": 0.5805763073639274, "position": { "x": 4, @@ -3569,10 +3937,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2938, - "time": 0.585455099862784, + "noteOrder": 2939, + "time": 0.5854550998627839, "position": { "x": 4, "y": 0 @@ -3592,10 +3960,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2987, - "time": 0.595212684860497, + "noteOrder": 2988, + "time": 0.5952126848604969, "position": { "x": 3, "y": 0 @@ -3615,9 +3983,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3060, + "noteOrder": 3062, "time": 0.6098490623570666, "position": { "x": 3, @@ -3638,9 +4006,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3183, + "noteOrder": 3184, "time": 0.6342430248513493, "position": { "x": 7, @@ -3661,10 +4029,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3256, - "time": 0.648879402347919, + "noteOrder": 3258, + "time": 0.6488794023479189, "position": { "x": 7, "y": 0 @@ -3684,10 +4052,10 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3526, - "time": 0.7025461198353408, + "noteOrder": 3527, + "time": 0.7025461198353407, "position": { "x": 4, "y": 0 @@ -3707,9 +4075,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3550, + "noteOrder": 3552, "time": 0.7074249123341974, "position": { "x": 4, @@ -3730,10 +4098,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3526, - "time": 0.7025461198353408, + "noteOrder": 3527, + "time": 0.7025461198353407, "position": { "x": 6, "y": 0 @@ -3753,9 +4121,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3550, + "noteOrder": 3552, "time": 0.7074249123341974, "position": { "x": 6, @@ -3776,10 +4144,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3673, - "time": 0.73181887482848, + "noteOrder": 3674, + "time": 0.7318188748284798, "position": { "x": 3, "y": 0 @@ -3799,10 +4167,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3697, - "time": 0.7366976673273365, + "noteOrder": 3699, + "time": 0.7366976673273364, "position": { "x": 3, "y": 0 @@ -3822,10 +4190,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3673, - "time": 0.73181887482848, + "noteOrder": 3674, + "time": 0.7318188748284798, "position": { "x": 7, "y": 0 @@ -3845,10 +4213,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3697, - "time": 0.7366976673273365, + "noteOrder": 3699, + "time": 0.7366976673273364, "position": { "x": 7, "y": 0 @@ -3868,9 +4236,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.741576459826193, "position": { "x": 4, @@ -3891,10 +4259,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.7464552523250496, + "noteOrder": 3748, + "time": 0.7464552523250495, "position": { "x": 4, "y": 0 @@ -3914,9 +4282,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.741576459826193, "position": { "x": 6, @@ -3937,10 +4305,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.7464552523250496, + "noteOrder": 3748, + "time": 0.7464552523250495, "position": { "x": 6, "y": 0 @@ -3960,10 +4328,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3771, - "time": 0.7513340448239061, + "noteOrder": 3772, + "time": 0.751334044823906, "position": { "x": 7, "y": 0 @@ -3983,10 +4351,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3819, - "time": 0.7610916298216193, + "noteOrder": 3821, + "time": 0.7610916298216192, "position": { "x": 7, "y": 0 @@ -4006,9 +4374,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7708492148193322, "position": { "x": 3, @@ -4029,10 +4397,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3917, - "time": 0.7806067998170453, + "noteOrder": 3919, + "time": 0.7806067998170452, "position": { "x": 3, "y": 0 @@ -4052,10 +4420,10 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4064, - "time": 0.8098795548101846, + "noteOrder": 4066, + "time": 0.8098795548101844, "position": { "x": 3, "y": 0 @@ -4075,9 +4443,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4138, + "noteOrder": 4140, "time": 0.824515932306754, "position": { "x": 3, @@ -4098,10 +4466,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4162, - "time": 0.8293947248056106, + "noteOrder": 4164, + "time": 0.8293947248056105, "position": { "x": 7, "y": 0 @@ -4121,10 +4489,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4236, - "time": 0.8440311023021803, + "noteOrder": 4237, + "time": 0.8440311023021801, "position": { "x": 7, "y": 0 @@ -4144,9 +4512,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4260, + "noteOrder": 4262, "time": 0.8489098948010367, "position": { "x": 3, @@ -4167,10 +4535,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4285, - "time": 0.8537886872998933, + "noteOrder": 4286, + "time": 0.8537886872998932, "position": { "x": 3, "y": 0 @@ -4190,10 +4558,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4309, - "time": 0.8586674797987499, + "noteOrder": 4311, + "time": 0.8586674797987497, "position": { "x": 7, "y": 0 @@ -4213,10 +4581,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4334, - "time": 0.8635462722976064, + "noteOrder": 4335, + "time": 0.8635462722976063, "position": { "x": 7, "y": 0 @@ -4236,10 +4604,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4456, - "time": 0.887940234791889, + "noteOrder": 4458, + "time": 0.8879402347918889, "position": { "x": 7, "y": 0 @@ -4259,10 +4627,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4530, - "time": 0.9025766122884586, + "noteOrder": 4531, + "time": 0.9025766122884585, "position": { "x": 7, "y": 0 @@ -4282,10 +4650,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4554, - "time": 0.9074554047873152, + "noteOrder": 4556, + "time": 0.9074554047873151, "position": { "x": 3, "y": 0 @@ -4305,9 +4673,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.9220917822838848, "position": { "x": 3, @@ -4328,10 +4696,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4652, - "time": 0.9269705747827414, + "noteOrder": 4654, + "time": 0.9269705747827413, "position": { "x": 7, "y": 0 @@ -4351,10 +4719,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.9318493672815978, + "noteOrder": 4678, + "time": 0.9318493672815977, "position": { "x": 7, "y": 0 @@ -4374,9 +4742,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4701, + "noteOrder": 4703, "time": 0.9367281597804543, "position": { "x": 3, @@ -4397,10 +4765,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4725, - "time": 0.9416069522793109, + "noteOrder": 4727, + "time": 0.9416069522793108, "position": { "x": 3, "y": 0 @@ -4420,10 +4788,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, - "time": 0.9757584997713067, + "noteOrder": 4899, + "time": 0.9757584997713066, "position": { "x": 6, "y": 0 @@ -4443,9 +4811,9 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.980637292270163, "position": { "x": 6, @@ -4466,10 +4834,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, - "time": 0.9757584997713067, + "noteOrder": 4899, + "time": 0.9757584997713066, "position": { "x": 4, "y": 0 @@ -4489,9 +4857,9 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.980637292270163, "position": { "x": 4, diff --git a/tracks/1-2-3 Jump!/info.json b/tracks/1-2-3 Jump!/info.json index 3d5583b5..737bd011 100644 --- a/tracks/1-2-3 Jump!/info.json +++ b/tracks/1-2-3 Jump!/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "1-2-3 Jump!", - "SongLength": "124.055510", + "SongLength": "114.102857", "SongAuthorName": "\u307e\u308d\u3093 (IOSYS) ft. Renko", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/7 to Smoke/272_difficulty_1a.json b/tracks/7 to Smoke/272_difficulty_1a.json index 1d6b3ece..e682921b 100644 --- a/tracks/7 to Smoke/272_difficulty_1a.json +++ b/tracks/7 to Smoke/272_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 203, - "time": 0.03817603393425238, + "time": 0.03817603393425239, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 248, - "time": 0.04665959703075291, + "time": 0.04665959703075292, "position": { "x": 3, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.06786850477200423, "position": { "x": 7, @@ -194,7 +194,7 @@ }, { "noteOrder": 383, - "time": 0.07211028632025451, + "time": 0.0721102863202545, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 406, - "time": 0.07635206786850476, + "time": 0.07635206786850478, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 428, - "time": 0.08059384941675503, + "time": 0.08059384941675504, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 496, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 496, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 541, - "time": 0.10180275715800637, + "time": 0.10180275715800635, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 563, + "noteOrder": 564, "time": 0.10604453870625663, "position": { "x": 5, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 608, - "time": 0.11452810180275715, + "noteOrder": 609, + "time": 0.11452810180275716, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 653, + "noteOrder": 654, "time": 0.12301166489925769, "position": { "x": 2, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 699, "time": 0.13149522799575822, "position": { "x": 8, @@ -534,7 +534,7 @@ }, { "noteOrder": 766, - "time": 0.14422057264050903, + "time": 0.144220572640509, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 811, - "time": 0.15270413573700953, + "time": 0.15270413573700956, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 822, + "noteOrder": 823, "time": 0.15482502651113467, "position": { "x": 6, @@ -634,7 +634,7 @@ }, { "noteOrder": 845, - "time": 0.15906680805938492, + "time": 0.15906680805938495, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 856, - "time": 0.16118769883351006, + "noteOrder": 857, + "time": 0.16118769883351008, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 901, + "noteOrder": 902, "time": 0.16967126193001061, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 946, + "noteOrder": 947, "time": 0.17815482502651114, "position": { "x": 3, @@ -754,7 +754,7 @@ }, { "noteOrder": 1059, - "time": 0.19936373276776248, + "time": 0.19936373276776245, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1149, + "noteOrder": 1150, "time": 0.2163308589607635, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1194, + "noteOrder": 1195, "time": 0.22481442205726404, "position": { "x": 7, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1239, - "time": 0.2332979851537646, + "noteOrder": 1240, + "time": 0.23329798515376457, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1284, + "noteOrder": 1285, "time": 0.24178154825026513, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1329, - "time": 0.2502651113467656, + "noteOrder": 1330, + "time": 0.25026511134676566, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1667, + "noteOrder": 1668, "time": 0.3138918345705196, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1690, - "time": 0.31813361611876984, + "noteOrder": 1691, + "time": 0.3181336161187699, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1825, + "noteOrder": 1826, "time": 0.3435843054082715, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1870, + "noteOrder": 1871, "time": 0.352067868504772, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1915, - "time": 0.3605514316012725, + "noteOrder": 1916, + "time": 0.36055143160127257, "position": { "x": 4, "y": 0 @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1938, - "time": 0.3647932131495228, + "time": 0.36479321314952284, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1960, + "noteOrder": 1961, "time": 0.36903499469777307, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2005, - "time": 0.37751855779427357, + "noteOrder": 2006, + "time": 0.3775185577942736, "position": { "x": 8, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.3860021208907741, + "noteOrder": 2051, + "time": 0.38600212089077407, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2073, + "noteOrder": 2074, "time": 0.39024390243902435, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2095, - "time": 0.3944856839872747, + "noteOrder": 2096, + "time": 0.3944856839872746, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.41145281018027574, + "noteOrder": 2186, + "time": 0.4114528101802757, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2231, + "noteOrder": 2232, "time": 0.41993637327677624, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2276, + "noteOrder": 2277, "time": 0.42841993637327674, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2298, + "noteOrder": 2299, "time": 0.432661717921527, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2321, + "noteOrder": 2322, "time": 0.4369034994697773, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.4453870625662778, "position": { "x": 2, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2411, + "noteOrder": 2412, "time": 0.45387062566277836, "position": { "x": 8, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2433, - "time": 0.4581124072110286, + "noteOrder": 2434, + "time": 0.45811240721102864, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2456, - "time": 0.46235418875927886, + "noteOrder": 2457, + "time": 0.4623541887592789, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2525, "time": 0.4750795334040297, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2535, + "noteOrder": 2536, "time": 0.47720042417815484, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.47932131495228, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2558, "time": 0.4814422057264051, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.48356309650053025, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2581, "time": 0.48568398727465534, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2591, + "noteOrder": 2592, "time": 0.4878048780487805, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2602, + "noteOrder": 2603, "time": 0.4899257688229056, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.5005302226935312, + "noteOrder": 2660, + "time": 0.5005302226935313, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.5005302226935312, + "noteOrder": 2660, + "time": 0.5005302226935313, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2681, + "noteOrder": 2682, "time": 0.5047720042417816, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2681, + "noteOrder": 2682, "time": 0.5047720042417816, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2794, + "noteOrder": 2795, "time": 0.5259809119830329, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2805, + "noteOrder": 2806, "time": 0.528101802757158, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2818, "time": 0.5302226935312832, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2839, - "time": 0.5344644750795334, + "noteOrder": 2840, + "time": 0.5344644750795333, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.5365853658536586, + "noteOrder": 2851, + "time": 0.5365853658536585, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2861, - "time": 0.5387062566277837, + "noteOrder": 2863, + "time": 0.5387062566277836, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2906, + "noteOrder": 2908, "time": 0.5471898197242842, "position": { "x": 6, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 2953, "time": 0.5556733828207847, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3154, + "noteOrder": 3156, "time": 0.5938494167550371, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3166, - "time": 0.5959703075291622, + "noteOrder": 3167, + "time": 0.5959703075291624, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3177, + "noteOrder": 3178, "time": 0.5980911983032874, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3199, + "noteOrder": 3201, "time": 0.6023329798515377, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3211, - "time": 0.6044538706256627, + "noteOrder": 3212, + "time": 0.6044538706256628, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3222, - "time": 0.6065747613997878, + "noteOrder": 3223, + "time": 0.6065747613997879, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.6150583244962884, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.623541887592789, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3335, + "noteOrder": 3336, "time": 0.6277836691410392, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3346, + "noteOrder": 3347, "time": 0.6299045599151644, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3357, - "time": 0.6320254506892894, + "noteOrder": 3359, + "time": 0.6320254506892895, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3368, + "noteOrder": 3370, "time": 0.6341463414634145, "position": { "x": 7, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3380, - "time": 0.6362672322375397, + "noteOrder": 3381, + "time": 0.6362672322375398, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3402, - "time": 0.64050901378579, + "noteOrder": 3404, + "time": 0.6405090137857901, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3402, - "time": 0.64050901378579, + "noteOrder": 3404, + "time": 0.6405090137857901, "position": { "x": 6, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3425, - "time": 0.6447507953340402, + "noteOrder": 3426, + "time": 0.6447507953340403, "position": { "x": 3, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3470, + "noteOrder": 3471, "time": 0.6532343584305409, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.6744432661717922, "position": { "x": 7, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3718, + "noteOrder": 3719, "time": 0.6998939554612937, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3740, + "noteOrder": 3742, "time": 0.704135737009544, "position": { "x": 8, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3763, + "noteOrder": 3764, "time": 0.7083775185577943, "position": { "x": 3, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3808, - "time": 0.7168610816542947, + "noteOrder": 3809, + "time": 0.7168610816542949, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3853, - "time": 0.7253446447507953, + "noteOrder": 3854, + "time": 0.7253446447507954, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3920, + "noteOrder": 3922, "time": 0.7380699893955461, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3943, + "noteOrder": 3945, "time": 0.7423117709437964, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4078, + "noteOrder": 4080, "time": 0.767762460233298, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4101, - "time": 0.7720042417815483, + "noteOrder": 4102, + "time": 0.7720042417815481, "position": { "x": 2, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4123, + "noteOrder": 4125, "time": 0.7762460233297984, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.784729586426299, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4213, - "time": 0.7932131495227996, + "noteOrder": 4215, + "time": 0.7932131495227995, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4236, - "time": 0.7974549310710499, + "noteOrder": 4238, + "time": 0.7974549310710498, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4236, - "time": 0.7974549310710499, + "noteOrder": 4238, + "time": 0.7974549310710498, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4348, - "time": 0.8186638388123012, + "noteOrder": 4350, + "time": 0.8186638388123011, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.8229056203605515, + "noteOrder": 4373, + "time": 0.8229056203605514, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4394, - "time": 0.8271474019088018, + "noteOrder": 4395, + "time": 0.8271474019088016, "position": { "x": 6, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4439, + "noteOrder": 4440, "time": 0.8356309650053022, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4461, + "noteOrder": 4463, "time": 0.8398727465535525, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4484, + "noteOrder": 4486, "time": 0.8441145281018028, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4529, - "time": 0.8525980911983033, + "noteOrder": 4531, + "time": 0.8525980911983032, "position": { "x": 8, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.8610816542948038, "position": { "x": 2, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.8865323435843053, + "noteOrder": 4711, + "time": 0.8865323435843054, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4734, "time": 0.8907741251325556, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4754, + "noteOrder": 4756, "time": 0.8950159066808059, "position": { "x": 4, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.9034994697773064, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4822, + "noteOrder": 4824, "time": 0.9077412513255567, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4844, + "noteOrder": 4846, "time": 0.911983032873807, "position": { "x": 6, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4889, - "time": 0.9204665959703074, + "noteOrder": 4891, + "time": 0.9204665959703076, "position": { "x": 2, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4934, - "time": 0.928950159066808, + "noteOrder": 4936, + "time": 0.9289501590668081, "position": { "x": 8, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4957, - "time": 0.9331919406150584, + "noteOrder": 4959, + "time": 0.9331919406150583, "position": { "x": 3, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5002, + "noteOrder": 5004, "time": 0.9416755037115588, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5047, + "noteOrder": 5049, "time": 0.9501590668080594, "position": { "x": 6, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5047, + "noteOrder": 5049, "time": 0.9501590668080594, "position": { "x": 4, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5086, + "noteOrder": 5089, "time": 0.9575821845174973, "position": { "x": 3, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5098, - "time": 0.9597030752916225, + "noteOrder": 5100, + "time": 0.9597030752916226, "position": { "x": 5, "y": 0 @@ -2896,10 +2896,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 135, - "time": 0.02545068928950159, + "time": 0.025450689289501588, "position": { "x": 4, "y": 0 @@ -2919,7 +2919,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 158, "time": 0.029692470837751856, @@ -2942,10 +2942,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 135, - "time": 0.02545068928950159, + "time": 0.025450689289501588, "position": { "x": 6, "y": 0 @@ -2965,7 +2965,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 158, "time": 0.029692470837751856, @@ -2988,10 +2988,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 270, - "time": 0.05090137857900318, + "time": 0.050901378579003176, "position": { "x": 6, "y": 0 @@ -3011,7 +3011,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 293, "time": 0.05514316012725345, @@ -3034,9 +3034,9 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 315, + "noteOrder": 316, "time": 0.05938494167550371, "position": { "x": 4, @@ -3057,7 +3057,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, "time": 0.06362672322375398, @@ -3080,7 +3080,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 631, "time": 0.11876988335100742, @@ -3103,9 +3103,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 653, + "noteOrder": 654, "time": 0.12301166489925769, "position": { "x": 4, @@ -3126,7 +3126,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 676, "time": 0.12725344644750797, @@ -3149,9 +3149,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 698, + "noteOrder": 699, "time": 0.13149522799575822, "position": { "x": 6, @@ -3172,10 +3172,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 991, - "time": 0.18663838812301164, + "noteOrder": 992, + "time": 0.18663838812301167, "position": { "x": 7, "y": 0 @@ -3194,13 +3194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1014, - "time": 0.19088016967126192, + "noteOrder": 1003, + "time": 0.1887592788971368, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3212,18 +3212,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1036, - "time": 0.19512195121951217, + "noteOrder": 1003, + "time": 0.1887592788971368, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3240,11 +3240,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1081, - "time": 0.20360551431601273, + "noteOrder": 1014, + "time": 0.19088016967126192, "position": { "x": 3, "y": 0 @@ -3263,11 +3263,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1127, - "time": 0.21208907741251326, + "noteOrder": 1026, + "time": 0.19300106044538703, "position": { "x": 3, "y": 0 @@ -3281,18 +3281,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1172, - "time": 0.2205726405090138, + "noteOrder": 1026, + "time": 0.19300106044538703, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3309,13 +3309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1217, - "time": 0.2290562036055143, + "noteOrder": 1037, + "time": 0.19512195121951217, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3332,13 +3332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1262, - "time": 0.23753976670201485, + "noteOrder": 1048, + "time": 0.1972428419936373, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3350,18 +3350,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1284, - "time": 0.24178154825026513, + "noteOrder": 1048, + "time": 0.1972428419936373, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3373,16 +3373,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 2, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1352, - "time": 0.25450689289501593, + "noteOrder": 1059, + "time": 0.19936373276776245, "position": { "x": 6, "y": 0 @@ -3396,16 +3396,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1352, - "time": 0.25450689289501593, + "noteOrder": 1059, + "time": 0.19936373276776245, "position": { "x": 7, "y": 0 @@ -3424,11 +3424,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1374, - "time": 0.25874867444326616, + "noteOrder": 1082, + "time": 0.2036055143160127, "position": { "x": 3, "y": 0 @@ -3447,13 +3447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1397, - "time": 0.26299045599151644, + "noteOrder": 1093, + "time": 0.20572640509013784, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3465,18 +3465,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1419, - "time": 0.2672322375397667, + "noteOrder": 1093, + "time": 0.20572640509013784, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3493,13 +3493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1442, - "time": 0.27147401908801694, + "noteOrder": 1104, + "time": 0.20784729586426298, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3511,18 +3511,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1487, - "time": 0.2799575821845175, + "noteOrder": 1104, + "time": 0.20784729586426298, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3539,13 +3539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1532, - "time": 0.28844114528101805, + "noteOrder": 1127, + "time": 0.21208907741251326, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3562,13 +3562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1577, - "time": 0.29692470837751855, + "noteOrder": 1138, + "time": 0.21420996818663837, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3580,18 +3580,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1622, - "time": 0.30540827147401906, + "noteOrder": 1138, + "time": 0.21420996818663837, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3608,13 +3608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1645, - "time": 0.30965005302226933, + "noteOrder": 1150, + "time": 0.2163308589607635, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3631,13 +3631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 2, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1712, - "time": 0.3223753976670201, + "noteOrder": 1150, + "time": 0.2163308589607635, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3654,11 +3654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1712, - "time": 0.3223753976670201, + "noteOrder": 1172, + "time": 0.2205726405090138, "position": { "x": 3, "y": 0 @@ -3677,13 +3677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.32661717921527045, + "noteOrder": 1183, + "time": 0.2226935312831389, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3695,18 +3695,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1757, - "time": 0.33085896076352067, + "noteOrder": 1183, + "time": 0.2226935312831389, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3723,13 +3723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1780, - "time": 0.33510074231177095, + "noteOrder": 1195, + "time": 0.22481442205726404, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3741,16 +3741,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1802, - "time": 0.33934252386002123, + "noteOrder": 1195, + "time": 0.22481442205726404, "position": { "x": 3, "y": 0 @@ -3769,13 +3769,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3435843054082715, + "noteOrder": 1217, + "time": 0.22905620360551432, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3787,18 +3787,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1848, - "time": 0.34782608695652173, + "noteOrder": 1228, + "time": 0.23117709437963946, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3815,13 +3815,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1870, - "time": 0.352067868504772, + "noteOrder": 1228, + "time": 0.23117709437963946, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3838,13 +3838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1893, - "time": 0.3563096500530223, + "noteOrder": 1240, + "time": 0.23329798515376457, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3856,16 +3856,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1983, - "time": 0.3732767762460233, + "noteOrder": 1240, + "time": 0.23329798515376457, "position": { "x": 3, "y": 0 @@ -3879,18 +3879,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1983, - "time": 0.3732767762460233, + "noteOrder": 1262, + "time": 0.23753976670201485, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3902,18 +3902,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2005, - "time": 0.37751855779427357, + "noteOrder": 1285, + "time": 0.24178154825026513, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3925,18 +3925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2028, - "time": 0.38176033934252385, + "noteOrder": 1352, + "time": 0.25450689289501593, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3953,13 +3953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 2050, - "time": 0.3860021208907741, + "noteOrder": 1352, + "time": 0.25450689289501593, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3971,18 +3971,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2118, - "time": 0.39872746553552496, + "noteOrder": 1364, + "time": 0.2566277836691411, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3999,11 +3999,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2140, - "time": 0.4029692470837752, + "noteOrder": 1364, + "time": 0.2566277836691411, "position": { "x": 6, "y": 0 @@ -4022,13 +4022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2118, - "time": 0.39872746553552496, + "noteOrder": 1375, + "time": 0.25874867444326616, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4045,11 +4045,34 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2140, - "time": 0.4029692470837752, + "noteOrder": 1386, + "time": 0.2608695652173913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1386, + "time": 0.2608695652173913, "position": { "x": 4, "y": 0 @@ -4068,11 +4091,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.40721102863202546, + "noteOrder": 1398, + "time": 0.26299045599151644, "position": { "x": 7, "y": 0 @@ -4091,11 +4114,34 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1409, + "time": 0.2651113467656416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2185, - "time": 0.41145281018027574, + "noteOrder": 1409, + "time": 0.2651113467656416, "position": { "x": 6, "y": 0 @@ -4114,11 +4160,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2208, - "time": 0.41569459172852596, + "noteOrder": 1420, + "time": 0.26723223753976666, "position": { "x": 3, "y": 0 @@ -4137,11 +4183,34 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2231, - "time": 0.41993637327677624, + "noteOrder": 1431, + "time": 0.2693531283138918, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1431, + "time": 0.2693531283138918, "position": { "x": 4, "y": 0 @@ -4160,11 +4229,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2253, - "time": 0.4241781548250265, + "noteOrder": 1443, + "time": 0.27147401908801694, "position": { "x": 7, "y": 0 @@ -4183,11 +4252,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2343, - "time": 0.4411452810180276, + "noteOrder": 1454, + "time": 0.2735949098621421, "position": { "x": 7, "y": 0 @@ -4206,13 +4275,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2343, - "time": 0.4411452810180276, + "noteOrder": 1454, + "time": 0.2735949098621421, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4224,18 +4293,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1465, + "time": 0.2757158006362672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1465, + "time": 0.2757158006362672, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 2366, - "time": 0.4453870625662778, + "noteOrder": 1488, + "time": 0.2799575821845175, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4252,11 +4367,34 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, - "time": 0.4496288441145281, + "noteOrder": 1499, + "time": 0.28207847295864263, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1499, + "time": 0.28207847295864263, "position": { "x": 6, "y": 0 @@ -4270,16 +4408,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2411, - "time": 0.45387062566277836, + "noteOrder": 1510, + "time": 0.2841993637327678, "position": { "x": 6, "y": 0 @@ -4293,18 +4431,2686 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1510, + "time": 0.2841993637327678, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1533, + "time": 0.288441145281018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1544, + "time": 0.29056203605514314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1544, + "time": 0.29056203605514314, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1555, + "time": 0.2926829268292683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1555, + "time": 0.2926829268292683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1578, + "time": 0.29692470837751855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1589, + "time": 0.2990455991516437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1589, + "time": 0.2990455991516437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1600, + "time": 0.30116648992576883, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1600, + "time": 0.30116648992576883, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1623, + "time": 0.3054082714740191, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1645, + "time": 0.30965005302226933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1713, + "time": 0.32237539766702017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1713, + "time": 0.32237539766702017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1724, + "time": 0.3244962884411453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1724, + "time": 0.3244962884411453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1736, + "time": 0.32661717921527045, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1747, + "time": 0.32873806998939553, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1747, + "time": 0.32873806998939553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1758, + "time": 0.33085896076352067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1769, + "time": 0.3329798515376458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1769, + "time": 0.3329798515376458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1781, + "time": 0.33510074231177095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1792, + "time": 0.3372216330858961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1792, + "time": 0.3372216330858961, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.33934252386002123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1826, + "time": 0.3435843054082715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1848, + "time": 0.34782608695652173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1871, + "time": 0.352067868504772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1893, + "time": 0.3563096500530223, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1984, + "time": 0.37327677624602335, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1984, + "time": 0.37327677624602335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2006, + "time": 0.3775185577942736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2029, + "time": 0.38176033934252385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2051, + "time": 0.38600212089077407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2119, + "time": 0.3987274655355249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.4029692470837752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2119, + "time": 0.3987274655355249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.4029692470837752, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.4072110286320254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2186, + "time": 0.4114528101802757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2209, + "time": 0.41569459172852596, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2232, + "time": 0.41993637327677624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2254, + "time": 0.4241781548250265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.4411452810180276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2344, + "time": 0.4411452810180276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2367, + "time": 0.4453870625662778, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2389, + "time": 0.4496288441145281, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2412, + "time": 0.45387062566277836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2479, + "time": 0.46659597030752914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.4708377518557794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2479, + "time": 0.46659597030752914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.4708377518557794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2615, + "time": 0.49204665959703076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2637, + "time": 0.49628844114528103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2705, + "time": 0.5090137857900319, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2727, + "time": 0.5132555673382821, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2727, + "time": 0.5132555673382821, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2750, + "time": 0.5174973488865323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2750, + "time": 0.5174973488865323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2772, + "time": 0.5217391304347826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2772, + "time": 0.5217391304347826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2784, + "time": 0.5238600212089077, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.5429480381760339, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5471898197242842, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2930, + "time": 0.5514316012725344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2953, + "time": 0.5556733828207847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.559915164369035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2987, + "time": 0.5620360551431601, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2998, + "time": 0.5641569459172853, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3009, + "time": 0.5662778366914104, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5683987274655355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5705196182396607, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5726405090137858, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.559915164369035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2987, + "time": 0.5620360551431601, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2998, + "time": 0.5641569459172853, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3009, + "time": 0.5662778366914104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5683987274655355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5705196182396607, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5726405090137858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3066, + "time": 0.576882290562036, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5811240721102863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5811240721102863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3111, + "time": 0.5853658536585366, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3111, + "time": 0.5853658536585366, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5896076352067868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5896076352067868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3144, + "time": 0.5917285259809121, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3246, + "time": 0.6108165429480382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3268, + "time": 0.6150583244962884, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3291, + "time": 0.6193001060445387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3313, + "time": 0.623541887592789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3516, + "time": 0.6617179215270413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3528, + "time": 0.6638388123011665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3528, + "time": 0.6638388123011665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3539, + "time": 0.6659597030752916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3550, + "time": 0.6680805938494168, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3550, + "time": 0.6680805938494168, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3561, + "time": 0.6702014846235419, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3573, + "time": 0.6723223753976669, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3573, + "time": 0.6723223753976669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6744432661717922, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6744432661717922, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.6786850477200425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3618, + "time": 0.6808059384941675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3618, + "time": 0.6808059384941675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6829268292682927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6829268292682927, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6829268292682927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6850477200424178, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6850477200424178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2478, - "time": 0.4665959703075292, + "noteOrder": 3663, + "time": 0.689289501590668, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4321,11 +7127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2501, - "time": 0.4708377518557794, + "noteOrder": 3663, + "time": 0.689289501590668, "position": { "x": 6, "y": 0 @@ -4344,13 +7150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2478, - "time": 0.4665959703075292, + "noteOrder": 3674, + "time": 0.6914103923647933, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4362,18 +7168,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2501, - "time": 0.4708377518557794, + "noteOrder": 3674, + "time": 0.6914103923647933, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4385,18 +7191,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2614, - "time": 0.49204665959703076, + "noteOrder": 3674, + "time": 0.6914103923647933, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4408,18 +7214,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2636, - "time": 0.49628844114528103, + "noteOrder": 3685, + "time": 0.6935312831389183, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4431,18 +7237,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2704, - "time": 0.5090137857900319, + "noteOrder": 3685, + "time": 0.6935312831389183, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4454,18 +7260,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2726, - "time": 0.513255567338282, + "noteOrder": 3697, + "time": 0.6956521739130435, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4477,16 +7283,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2726, - "time": 0.513255567338282, + "noteOrder": 3697, + "time": 0.6956521739130435, "position": { "x": 5, "y": 0 @@ -4505,13 +7311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 2749, - "time": 0.5174973488865323, + "noteOrder": 3697, + "time": 0.6956521739130435, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4523,18 +7329,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2749, - "time": 0.5174973488865323, + "noteOrder": 3719, + "time": 0.6998939554612937, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4551,13 +7357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2771, - "time": 0.5217391304347826, + "noteOrder": 3787, + "time": 0.7126193001060446, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4574,13 +7380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2771, - "time": 0.5217391304347826, + "noteOrder": 3787, + "time": 0.7126193001060446, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4597,13 +7403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2783, - "time": 0.5238600212089077, + "noteOrder": 3798, + "time": 0.7147401908801696, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4620,13 +7426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.5429480381760339, + "noteOrder": 3798, + "time": 0.7147401908801696, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4638,18 +7444,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2906, - "time": 0.5471898197242842, + "noteOrder": 3809, + "time": 0.7168610816542949, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4661,16 +7467,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2929, - "time": 0.5514316012725344, + "noteOrder": 3809, + "time": 0.7168610816542949, "position": { "x": 3, "y": 0 @@ -4689,11 +7495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 2952, - "time": 0.5556733828207847, + "noteOrder": 3832, + "time": 0.7211028632025451, "position": { "x": 3, "y": 0 @@ -4707,18 +7513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.559915164369035, + "noteOrder": 3843, + "time": 0.7232237539766702, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4730,16 +7536,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2985, - "time": 0.5620360551431601, + "noteOrder": 3843, + "time": 0.7232237539766702, "position": { "x": 4, "y": 0 @@ -4753,18 +7559,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2997, - "time": 0.5641569459172853, + "noteOrder": 3854, + "time": 0.7253446447507954, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4776,16 +7582,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 3, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3008, - "time": 0.5662778366914104, + "noteOrder": 3854, + "time": 0.7253446447507954, "position": { "x": 3, "y": 0 @@ -4799,18 +7605,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 4, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3019, - "time": 0.5683987274655355, + "noteOrder": 3877, + "time": 0.7295864262990457, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4827,13 +7633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 5, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3030, - "time": 0.5705196182396606, + "noteOrder": 3888, + "time": 0.7317073170731707, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4850,13 +7656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 6, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3042, - "time": 0.5726405090137857, + "noteOrder": 3888, + "time": 0.7317073170731707, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4873,13 +7679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2974, - "time": 0.559915164369035, + "noteOrder": 3900, + "time": 0.733828207847296, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4896,13 +7702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2985, - "time": 0.5620360551431601, + "noteOrder": 3911, + "time": 0.735949098621421, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4919,11 +7725,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 2, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2997, - "time": 0.5641569459172853, + "noteOrder": 3911, + "time": 0.735949098621421, "position": { "x": 6, "y": 0 @@ -4942,11 +7748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 3, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3008, - "time": 0.5662778366914104, + "noteOrder": 3922, + "time": 0.7380699893955461, "position": { "x": 6, "y": 0 @@ -4965,13 +7771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 4, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3019, - "time": 0.5683987274655355, + "noteOrder": 3922, + "time": 0.7380699893955461, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4988,13 +7794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 5, + "lineGroupId": 188, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3030, - "time": 0.5705196182396606, + "noteOrder": 3933, + "time": 0.7401908801696713, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5011,11 +7817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 6, + "lineGroupId": 188, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3042, - "time": 0.5726405090137857, + "noteOrder": 3933, + "time": 0.7401908801696713, "position": { "x": 6, "y": 0 @@ -5034,13 +7840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3064, - "time": 0.5768822905620361, + "noteOrder": 3945, + "time": 0.7423117709437964, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5052,18 +7858,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3087, - "time": 0.5811240721102863, + "noteOrder": 3945, + "time": 0.7423117709437964, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5075,18 +7881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3087, - "time": 0.5811240721102863, + "noteOrder": 3967, + "time": 0.7465535524920467, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5098,18 +7904,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3109, - "time": 0.5853658536585366, + "noteOrder": 3978, + "time": 0.7486744432661718, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5121,18 +7927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3109, - "time": 0.5853658536585366, + "noteOrder": 3978, + "time": 0.7486744432661718, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5149,13 +7955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3132, - "time": 0.5896076352067868, + "noteOrder": 3990, + "time": 0.750795334040297, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5172,11 +7978,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3132, - "time": 0.5896076352067868, + "noteOrder": 3990, + "time": 0.750795334040297, "position": { "x": 5, "y": 0 @@ -5190,18 +7996,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3143, - "time": 0.591728525980912, + "noteOrder": 3990, + "time": 0.750795334040297, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5218,11 +8024,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3244, - "time": 0.6108165429480381, + "noteOrder": 4001, + "time": 0.752916224814422, "position": { "x": 3, "y": 0 @@ -5236,18 +8042,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3267, - "time": 0.6150583244962884, + "noteOrder": 4001, + "time": 0.752916224814422, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5259,18 +8065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3290, - "time": 0.6193001060445387, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5287,13 +8093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3312, - "time": 0.623541887592789, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5310,11 +8116,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3515, - "time": 0.6617179215270413, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { "x": 3, "y": 0 @@ -5333,13 +8139,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3537, - "time": 0.6659597030752916, + "noteOrder": 4023, + "time": 0.7571580063626723, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5351,18 +8157,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3560, - "time": 0.6702014846235419, + "noteOrder": 4023, + "time": 0.7571580063626723, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5379,13 +8185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3605, - "time": 0.6786850477200425, + "noteOrder": 4035, + "time": 0.7592788971367974, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5397,18 +8203,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3627, - "time": 0.6829268292682927, + "noteOrder": 4035, + "time": 0.7592788971367974, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5425,13 +8231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.687168610816543, + "noteOrder": 4035, + "time": 0.7592788971367974, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5448,13 +8254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3673, - "time": 0.6914103923647932, + "noteOrder": 4046, + "time": 0.7613997879109226, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5466,18 +8272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3695, - "time": 0.6956521739130435, + "noteOrder": 4046, + "time": 0.7613997879109226, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5494,13 +8300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3718, - "time": 0.6998939554612937, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5517,13 +8323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 2, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3785, - "time": 0.7126193001060446, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5540,11 +8346,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3785, - "time": 0.7126193001060446, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { "x": 3, "y": 0 @@ -5563,11 +8369,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3830, - "time": 0.721102863202545, + "noteOrder": 4080, + "time": 0.767762460233298, "position": { "x": 3, "y": 0 @@ -5581,18 +8387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3875, - "time": 0.7295864262990456, + "noteOrder": 4147, + "time": 0.7804878048780487, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5609,11 +8415,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3898, - "time": 0.7338282078472959, + "noteOrder": 4147, + "time": 0.7804878048780487, "position": { "x": 7, "y": 0 @@ -5632,13 +8438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3965, - "time": 0.7465535524920466, + "noteOrder": 4159, + "time": 0.782608695652174, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5650,18 +8456,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3988, - "time": 0.7507953340402969, + "noteOrder": 4159, + "time": 0.782608695652174, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5678,13 +8484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4011, - "time": 0.7550371155885471, + "noteOrder": 4170, + "time": 0.784729586426299, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5696,18 +8502,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4033, - "time": 0.7592788971367974, + "noteOrder": 4170, + "time": 0.784729586426299, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5724,13 +8530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4056, - "time": 0.7635206786850477, + "noteOrder": 4193, + "time": 0.7889713679745493, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5747,13 +8553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4078, - "time": 0.767762460233298, + "noteOrder": 4204, + "time": 0.7910922587486745, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5770,11 +8576,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4146, - "time": 0.7804878048780487, + "noteOrder": 4204, + "time": 0.7910922587486745, "position": { "x": 6, "y": 0 @@ -5793,13 +8599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4146, - "time": 0.7804878048780487, + "noteOrder": 4215, + "time": 0.7932131495227995, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5811,16 +8617,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4191, - "time": 0.7889713679745494, + "noteOrder": 4215, + "time": 0.7932131495227995, "position": { "x": 7, "y": 0 @@ -5840,9 +8646,9 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4258, + "noteOrder": 4260, "time": 0.8016967126193001, "position": { "x": 3, @@ -5863,9 +8669,9 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4270, + "noteOrder": 4271, "time": 0.8038176033934252, "position": { "x": 3, @@ -5886,9 +8692,9 @@ }, { "lineGroupId": 205, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4292, + "noteOrder": 4294, "time": 0.8080593849416755, "position": { "x": 7, @@ -5909,10 +8715,10 @@ }, { "lineGroupId": 205, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4303, - "time": 0.8101802757158006, + "noteOrder": 4305, + "time": 0.8101802757158005, "position": { "x": 7, "y": 0 @@ -5932,9 +8738,9 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4258, + "noteOrder": 4260, "time": 0.8016967126193001, "position": { "x": 7, @@ -5955,9 +8761,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4270, + "noteOrder": 4271, "time": 0.8038176033934252, "position": { "x": 7, @@ -5978,9 +8784,9 @@ }, { "lineGroupId": 206, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4292, + "noteOrder": 4294, "time": 0.8080593849416755, "position": { "x": 3, @@ -6001,10 +8807,10 @@ }, { "lineGroupId": 206, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4303, - "time": 0.8101802757158006, + "noteOrder": 4305, + "time": 0.8101802757158005, "position": { "x": 3, "y": 0 @@ -6024,10 +8830,10 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.8144220572640509, + "noteOrder": 4328, + "time": 0.8144220572640508, "position": { "x": 7, "y": 0 @@ -6047,9 +8853,9 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4416, + "noteOrder": 4418, "time": 0.8313891834570519, "position": { "x": 7, @@ -6070,9 +8876,9 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4416, + "noteOrder": 4418, "time": 0.8313891834570519, "position": { "x": 3, @@ -6093,9 +8899,9 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4506, + "noteOrder": 4508, "time": 0.848356309650053, "position": { "x": 3, @@ -6116,9 +8922,9 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4506, + "noteOrder": 4508, "time": 0.848356309650053, "position": { "x": 6, @@ -6139,10 +8945,10 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4529, - "time": 0.8525980911983033, + "noteOrder": 4531, + "time": 0.8525980911983032, "position": { "x": 6, "y": 0 @@ -6162,9 +8968,9 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4551, + "noteOrder": 4553, "time": 0.8568398727465535, "position": { "x": 4, @@ -6185,9 +8991,9 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.8610816542948038, "position": { "x": 4, @@ -6208,9 +9014,9 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4596, + "noteOrder": 4598, "time": 0.865323435843054, "position": { "x": 6, @@ -6231,10 +9037,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4608, - "time": 0.8674443266171792, + "noteOrder": 4610, + "time": 0.8674443266171793, "position": { "x": 6, "y": 0 @@ -6254,9 +9060,9 @@ }, { "lineGroupId": 220, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.8695652173913043, "position": { "x": 7, @@ -6277,10 +9083,10 @@ }, { "lineGroupId": 220, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4630, - "time": 0.8716861081654295, + "noteOrder": 4632, + "time": 0.8716861081654296, "position": { "x": 7, "y": 0 @@ -6300,9 +9106,9 @@ }, { "lineGroupId": 220, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4641, + "noteOrder": 4643, "time": 0.8738069989395546, "position": { "x": 6, @@ -6323,9 +9129,9 @@ }, { "lineGroupId": 220, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4653, + "noteOrder": 4655, "time": 0.8759278897136797, "position": { "x": 6, @@ -6346,9 +9152,9 @@ }, { "lineGroupId": 220, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.8780487804878049, "position": { "x": 7, @@ -6369,9 +9175,9 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4596, + "noteOrder": 4598, "time": 0.865323435843054, "position": { "x": 4, @@ -6392,10 +9198,10 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4608, - "time": 0.8674443266171792, + "noteOrder": 4610, + "time": 0.8674443266171793, "position": { "x": 4, "y": 0 @@ -6415,9 +9221,9 @@ }, { "lineGroupId": 221, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.8695652173913043, "position": { "x": 4, @@ -6438,10 +9244,10 @@ }, { "lineGroupId": 221, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4630, - "time": 0.8716861081654295, + "noteOrder": 4632, + "time": 0.8716861081654296, "position": { "x": 4, "y": 0 @@ -6461,9 +9267,9 @@ }, { "lineGroupId": 221, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4641, + "noteOrder": 4643, "time": 0.8738069989395546, "position": { "x": 4, @@ -6484,9 +9290,9 @@ }, { "lineGroupId": 221, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4653, + "noteOrder": 4655, "time": 0.8759278897136797, "position": { "x": 4, @@ -6507,9 +9313,9 @@ }, { "lineGroupId": 221, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.8780487804878049, "position": { "x": 4, @@ -6530,9 +9336,9 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.8822905620360552, "position": { "x": 3, @@ -6553,9 +9359,9 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.8992576882290562, "position": { "x": 3, @@ -6576,9 +9382,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.8992576882290562, "position": { "x": 7, @@ -6599,10 +9405,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4867, - "time": 0.9162248144220572, + "noteOrder": 4869, + "time": 0.9162248144220573, "position": { "x": 7, "y": 0 @@ -6622,10 +9428,10 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4867, - "time": 0.9162248144220572, + "noteOrder": 4869, + "time": 0.9162248144220573, "position": { "x": 4, "y": 0 @@ -6645,10 +9451,10 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4889, - "time": 0.9204665959703074, + "noteOrder": 4891, + "time": 0.9204665959703076, "position": { "x": 4, "y": 0 @@ -6668,10 +9474,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4912, - "time": 0.9247083775185577, + "noteOrder": 4914, + "time": 0.9247083775185578, "position": { "x": 6, "y": 0 @@ -6691,10 +9497,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4934, - "time": 0.928950159066808, + "noteOrder": 4936, + "time": 0.9289501590668081, "position": { "x": 6, "y": 0 @@ -6714,9 +9520,9 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5115, + "noteOrder": 5117, "time": 0.9628844114528102, "position": { "x": 7, @@ -6737,9 +9543,9 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5137, + "noteOrder": 5139, "time": 0.9671261930010605, "position": { "x": 7, diff --git a/tracks/7 to Smoke/272_difficulty_1b.json b/tracks/7 to Smoke/272_difficulty_1b.json index dae84243..0a7f9834 100644 --- a/tracks/7 to Smoke/272_difficulty_1b.json +++ b/tracks/7 to Smoke/272_difficulty_1b.json @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.06786850477200423, "position": { "x": 3, @@ -74,7 +74,7 @@ }, { "noteOrder": 406, - "time": 0.07635206786850476, + "time": 0.07635206786850478, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 541, - "time": 0.10180275715800637, + "time": 0.10180275715800635, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 653, + "noteOrder": 654, "time": 0.12301166489925769, "position": { "x": 3, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 699, "time": 0.13149522799575822, "position": { "x": 4, @@ -254,7 +254,7 @@ }, { "noteOrder": 766, - "time": 0.14422057264050903, + "time": 0.144220572640509, "position": { "x": 3, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 991, - "time": 0.18663838812301164, + "noteOrder": 992, + "time": 0.18663838812301167, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.19512195121951217, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.19512195121951217, "position": { "x": 4, @@ -414,7 +414,7 @@ }, { "noteOrder": 1059, - "time": 0.19936373276776248, + "time": 0.19936373276776245, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1059, - "time": 0.19936373276776248, + "time": 0.19936373276776245, "position": { "x": 3, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.25874867444326616, "position": { "x": 5, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1397, + "noteOrder": 1398, "time": 0.26299045599151644, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1419, - "time": 0.2672322375397667, + "noteOrder": 1420, + "time": 0.26723223753976666, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1419, - "time": 0.2672322375397667, + "noteOrder": 1420, + "time": 0.26723223753976666, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1712, - "time": 0.3223753976670201, + "noteOrder": 1713, + "time": 0.32237539766702017, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1735, + "noteOrder": 1736, "time": 0.32661717921527045, "position": { "x": 5, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1758, "time": 0.33085896076352067, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1780, + "noteOrder": 1781, "time": 0.33510074231177095, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1780, + "noteOrder": 1781, "time": 0.33510074231177095, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1870, + "noteOrder": 1871, "time": 0.352067868504772, "position": { "x": 7, @@ -694,7 +694,7 @@ }, { "noteOrder": 1938, - "time": 0.3647932131495228, + "time": 0.36479321314952284, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1960, + "noteOrder": 1961, "time": 0.36903499469777307, "position": { "x": 3, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2028, + "noteOrder": 2029, "time": 0.38176033934252385, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.3860021208907741, + "noteOrder": 2051, + "time": 0.38600212089077407, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2118, - "time": 0.39872746553552496, + "noteOrder": 2119, + "time": 0.3987274655355249, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2140, + "noteOrder": 2141, "time": 0.4029692470837752, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.41145281018027574, + "noteOrder": 2186, + "time": 0.4114528101802757, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2231, + "noteOrder": 2232, "time": 0.41993637327677624, "position": { "x": 5, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2276, + "noteOrder": 2277, "time": 0.42841993637327674, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2321, + "noteOrder": 2322, "time": 0.4369034994697773, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2525, "time": 0.4750795334040297, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.47932131495228, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.48356309650053025, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2591, + "noteOrder": 2592, "time": 0.4878048780487805, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2681, + "noteOrder": 2682, "time": 0.5047720042417816, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2681, + "noteOrder": 2682, "time": 0.5047720042417816, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2704, + "noteOrder": 2705, "time": 0.5090137857900319, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2749, + "noteOrder": 2750, "time": 0.5174973488865323, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.5429480381760339, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2929, + "noteOrder": 2930, "time": 0.5514316012725344, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3064, - "time": 0.5768822905620361, + "noteOrder": 3066, + "time": 0.576882290562036, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3109, + "noteOrder": 3111, "time": 0.5853658536585366, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3154, + "noteOrder": 3156, "time": 0.5938494167550371, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3177, + "noteOrder": 3178, "time": 0.5980911983032874, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3199, + "noteOrder": 3201, "time": 0.6023329798515377, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3222, - "time": 0.6065747613997878, + "noteOrder": 3223, + "time": 0.6065747613997879, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.6108165429480381, + "noteOrder": 3246, + "time": 0.6108165429480382, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.6150583244962884, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3291, "time": 0.6193001060445387, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.623541887592789, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3402, - "time": 0.64050901378579, + "noteOrder": 3404, + "time": 0.6405090137857901, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3402, - "time": 0.64050901378579, + "noteOrder": 3404, + "time": 0.6405090137857901, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3515, + "noteOrder": 3516, "time": 0.6617179215270413, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3537, + "noteOrder": 3539, "time": 0.6659597030752916, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3560, + "noteOrder": 3561, "time": 0.6702014846235419, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3560, + "noteOrder": 3561, "time": 0.6702014846235419, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.6744432661717922, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.6744432661717922, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3785, + "noteOrder": 3787, "time": 0.7126193001060446, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3808, - "time": 0.7168610816542947, + "noteOrder": 3809, + "time": 0.7168610816542949, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3830, - "time": 0.721102863202545, + "noteOrder": 3832, + "time": 0.7211028632025451, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3853, - "time": 0.7253446447507953, + "noteOrder": 3854, + "time": 0.7253446447507954, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4146, + "noteOrder": 4147, "time": 0.7804878048780487, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.784729586426299, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4191, - "time": 0.7889713679745494, + "noteOrder": 4193, + "time": 0.7889713679745493, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4213, - "time": 0.7932131495227996, + "noteOrder": 4215, + "time": 0.7932131495227995, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4348, - "time": 0.8186638388123012, + "noteOrder": 4350, + "time": 0.8186638388123011, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4394, - "time": 0.8271474019088018, + "noteOrder": 4395, + "time": 0.8271474019088016, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4439, + "noteOrder": 4440, "time": 0.8356309650053022, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4484, + "noteOrder": 4486, "time": 0.8441145281018028, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4551, + "noteOrder": 4553, "time": 0.8568398727465535, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.8610816542948038, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4641, + "noteOrder": 4643, "time": 0.8738069989395546, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.8780487804878049, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4734, "time": 0.8907741251325556, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4754, + "noteOrder": 4756, "time": 0.8950159066808059, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4822, + "noteOrder": 4824, "time": 0.9077412513255567, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4844, + "noteOrder": 4846, "time": 0.911983032873807, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4889, - "time": 0.9204665959703074, + "noteOrder": 4891, + "time": 0.9204665959703076, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4934, - "time": 0.928950159066808, + "noteOrder": 4936, + "time": 0.9289501590668081, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5092, + "noteOrder": 5094, "time": 0.95864262990456, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5115, + "noteOrder": 5117, "time": 0.9628844114528102, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5137, + "noteOrder": 5139, "time": 0.9671261930010605, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5137, + "noteOrder": 5139, "time": 0.9671261930010605, "position": { "x": 6, @@ -1976,7 +1976,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 90, "time": 0.01696712619300106, @@ -1999,7 +1999,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 158, "time": 0.029692470837751856, @@ -2022,10 +2022,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 135, - "time": 0.02545068928950159, + "time": 0.025450689289501588, "position": { "x": 4, "y": 0 @@ -2045,7 +2045,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 158, "time": 0.029692470837751856, @@ -2068,10 +2068,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 270, - "time": 0.05090137857900318, + "time": 0.050901378579003176, "position": { "x": 6, "y": 0 @@ -2091,7 +2091,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 293, "time": 0.05514316012725345, @@ -2114,10 +2114,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 270, - "time": 0.05090137857900318, + "time": 0.050901378579003176, "position": { "x": 4, "y": 0 @@ -2137,7 +2137,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 293, "time": 0.05514316012725345, @@ -2160,9 +2160,9 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 315, + "noteOrder": 316, "time": 0.05938494167550371, "position": { "x": 7, @@ -2183,7 +2183,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, "time": 0.06362672322375398, @@ -2206,9 +2206,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 315, + "noteOrder": 316, "time": 0.05938494167550371, "position": { "x": 3, @@ -2229,7 +2229,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, "time": 0.06362672322375398, @@ -2252,7 +2252,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 451, "time": 0.08483563096500531, @@ -2275,7 +2275,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 473, "time": 0.08907741251325557, @@ -2298,7 +2298,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 451, "time": 0.08483563096500531, @@ -2321,7 +2321,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 473, "time": 0.08907741251325557, @@ -2344,10 +2344,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 496, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 3, "y": 0 @@ -2367,7 +2367,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 518, "time": 0.09756097560975609, @@ -2390,10 +2390,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 496, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 518, "time": 0.09756097560975609, @@ -2436,10 +2436,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 811, - "time": 0.15270413573700953, + "time": 0.15270413573700956, "position": { "x": 3, "y": 0 @@ -2459,10 +2459,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 856, - "time": 0.16118769883351006, + "noteOrder": 857, + "time": 0.16118769883351008, "position": { "x": 3, "y": 0 @@ -2482,10 +2482,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 811, - "time": 0.15270413573700953, + "time": 0.15270413573700956, "position": { "x": 7, "y": 0 @@ -2505,10 +2505,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 856, - "time": 0.16118769883351006, + "noteOrder": 857, + "time": 0.16118769883351008, "position": { "x": 7, "y": 0 @@ -2528,10 +2528,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1081, - "time": 0.20360551431601273, + "noteOrder": 1082, + "time": 0.2036055143160127, "position": { "x": 7, "y": 0 @@ -2550,11 +2550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1127, - "time": 0.21208907741251326, + "noteOrder": 1104, + "time": 0.20784729586426298, "position": { "x": 7, "y": 0 @@ -2568,18 +2568,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1172, - "time": 0.2205726405090138, + "noteOrder": 1104, + "time": 0.20784729586426298, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2596,13 +2596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1217, - "time": 0.2290562036055143, + "noteOrder": 1127, + "time": 0.21208907741251326, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2614,18 +2614,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1262, - "time": 0.23753976670201485, + "noteOrder": 1127, + "time": 0.21208907741251326, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2642,13 +2642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1307, - "time": 0.24602332979851538, + "noteOrder": 1127, + "time": 0.21208907741251326, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2665,13 +2665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.27147401908801694, + "noteOrder": 1150, + "time": 0.2163308589607635, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2688,13 +2688,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1487, - "time": 0.2799575821845175, + "noteOrder": 1150, + "time": 0.2163308589607635, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2706,18 +2706,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1532, - "time": 0.28844114528101805, + "noteOrder": 1172, + "time": 0.2205726405090138, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2734,13 +2734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1577, - "time": 0.29692470837751855, + "noteOrder": 1172, + "time": 0.2205726405090138, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2752,18 +2752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1622, - "time": 0.30540827147401906, + "noteOrder": 1172, + "time": 0.2205726405090138, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2775,16 +2775,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1667, - "time": 0.3138918345705196, + "noteOrder": 1195, + "time": 0.22481442205726404, "position": { "x": 7, "y": 0 @@ -2803,13 +2803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1802, - "time": 0.33934252386002123, + "noteOrder": 1195, + "time": 0.22481442205726404, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2826,13 +2826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1848, - "time": 0.34782608695652173, + "noteOrder": 1217, + "time": 0.22905620360551432, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2849,13 +2849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1893, - "time": 0.3563096500530223, + "noteOrder": 1217, + "time": 0.22905620360551432, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2867,18 +2867,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 1938, - "time": 0.3647932131495228, + "noteOrder": 1217, + "time": 0.22905620360551432, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2895,11 +2895,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1983, - "time": 0.3732767762460233, + "noteOrder": 1240, + "time": 0.23329798515376457, "position": { "x": 7, "y": 0 @@ -2913,18 +2913,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2050, - "time": 0.3860021208907741, + "noteOrder": 1240, + "time": 0.23329798515376457, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2936,18 +2936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2073, - "time": 0.39024390243902435, + "noteOrder": 1262, + "time": 0.23753976670201485, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2964,13 +2964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2140, - "time": 0.4029692470837752, + "noteOrder": 1262, + "time": 0.23753976670201485, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2987,11 +2987,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.40721102863202546, + "noteOrder": 1262, + "time": 0.23753976670201485, "position": { "x": 7, "y": 0 @@ -3010,11 +3010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2231, - "time": 0.41993637327677624, + "noteOrder": 1285, + "time": 0.24178154825026513, "position": { "x": 7, "y": 0 @@ -3033,13 +3033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2253, - "time": 0.4241781548250265, + "noteOrder": 1285, + "time": 0.24178154825026513, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3051,16 +3051,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2321, - "time": 0.4369034994697773, + "noteOrder": 1307, + "time": 0.24602332979851538, "position": { "x": 3, "y": 0 @@ -3079,13 +3079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2343, - "time": 0.4411452810180276, + "noteOrder": 1330, + "time": 0.25026511134676566, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3097,18 +3097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2366, - "time": 0.4453870625662778, + "noteOrder": 1330, + "time": 0.25026511134676566, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3120,16 +3120,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2388, - "time": 0.4496288441145281, + "noteOrder": 1443, + "time": 0.27147401908801694, "position": { "x": 3, "y": 0 @@ -3148,11 +3148,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2411, - "time": 0.45387062566277836, + "noteOrder": 1465, + "time": 0.2757158006362672, "position": { "x": 3, "y": 0 @@ -3171,13 +3171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2433, - "time": 0.4581124072110286, + "noteOrder": 1465, + "time": 0.2757158006362672, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3189,18 +3189,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2501, - "time": 0.4708377518557794, + "noteOrder": 1488, + "time": 0.2799575821845175, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3212,18 +3212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2478, - "time": 0.4665959703075292, + "noteOrder": 1488, + "time": 0.2799575821845175, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3240,13 +3240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 2501, - "time": 0.4708377518557794, + "noteOrder": 1488, + "time": 0.2799575821845175, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3258,16 +3258,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2614, - "time": 0.49204665959703076, + "noteOrder": 1510, + "time": 0.2841993637327678, "position": { "x": 3, "y": 0 @@ -3281,18 +3281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2659, - "time": 0.5005302226935312, + "noteOrder": 1510, + "time": 0.2841993637327678, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3304,18 +3304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2614, - "time": 0.49204665959703076, + "noteOrder": 1533, + "time": 0.288441145281018, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3332,13 +3332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2659, - "time": 0.5005302226935312, + "noteOrder": 1533, + "time": 0.288441145281018, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3355,13 +3355,1784 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2794, - "time": 0.5259809119830329, + "noteOrder": 1533, + "time": 0.288441145281018, "position": { - "x": 4, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1555, + "time": 0.2926829268292683, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1555, + "time": 0.2926829268292683, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1578, + "time": 0.29692470837751855, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1578, + "time": 0.29692470837751855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1578, + "time": 0.29692470837751855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1600, + "time": 0.30116648992576883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1600, + "time": 0.30116648992576883, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1623, + "time": 0.3054082714740191, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1623, + "time": 0.3054082714740191, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1623, + "time": 0.3054082714740191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1645, + "time": 0.30965005302226933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1645, + "time": 0.30965005302226933, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1668, + "time": 0.3138918345705196, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1691, + "time": 0.3181336161187699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1691, + "time": 0.3181336161187699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.33934252386002123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1848, + "time": 0.34782608695652173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1893, + "time": 0.3563096500530223, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1938, + "time": 0.36479321314952284, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1984, + "time": 0.37327677624602335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2051, + "time": 0.38600212089077407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2074, + "time": 0.39024390243902435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.4029692470837752, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.4072110286320254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2232, + "time": 0.41993637327677624, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2254, + "time": 0.4241781548250265, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2322, + "time": 0.4369034994697773, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2344, + "time": 0.4411452810180276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2367, + "time": 0.4453870625662778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2389, + "time": 0.4496288441145281, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2412, + "time": 0.45387062566277836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2434, + "time": 0.45811240721102864, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.4708377518557794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2479, + "time": 0.46659597030752914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.4708377518557794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2615, + "time": 0.49204665959703076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2660, + "time": 0.5005302226935313, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2615, + "time": 0.49204665959703076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2660, + "time": 0.5005302226935313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2795, + "time": 0.5259809119830329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2818, + "time": 0.5302226935312832, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2795, + "time": 0.5259809119830329, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2818, + "time": 0.5302226935312832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2840, + "time": 0.5344644750795333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2863, + "time": 0.5387062566277836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2840, + "time": 0.5344644750795333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2863, + "time": 0.5387062566277836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.559915164369035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2998, + "time": 0.5641569459172853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.559915164369035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2998, + "time": 0.5641569459172853, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5683987274655355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5726405090137858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5683987274655355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5726405090137858, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3336, + "time": 0.6277836691410392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3381, + "time": 0.6362672322375398, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3336, + "time": 0.6277836691410392, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3381, + "time": 0.6362672322375398, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.6786850477200425, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6829268292682927, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6829268292682927, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.687168610816543, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3674, + "time": 0.6914103923647933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3674, + "time": 0.6914103923647933, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3697, + "time": 0.6956521739130435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3697, + "time": 0.6956521739130435, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3697, + "time": 0.6956521739130435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6977730646871686, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6977730646871686, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3719, + "time": 0.6998939554612937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3730, + "time": 0.7020148462354189, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3730, + "time": 0.7020148462354189, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3742, + "time": 0.704135737009544, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3753, + "time": 0.7062566277836692, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3378,11 +5149,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2816, - "time": 0.5302226935312832, + "noteOrder": 3753, + "time": 0.7062566277836692, "position": { "x": 4, "y": 0 @@ -3401,13 +5172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2794, - "time": 0.5259809119830329, + "noteOrder": 3764, + "time": 0.7083775185577943, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3424,13 +5195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2816, - "time": 0.5302226935312832, + "noteOrder": 3776, + "time": 0.7104984093319194, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3447,13 +5218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2839, - "time": 0.5344644750795334, + "noteOrder": 3776, + "time": 0.7104984093319194, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3470,11 +5241,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 2861, - "time": 0.5387062566277837, + "noteOrder": 3877, + "time": 0.7295864262990457, "position": { "x": 7, "y": 0 @@ -3493,11 +5264,57 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3900, + "time": 0.733828207847296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3900, + "time": 0.733828207847296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2839, - "time": 0.5344644750795334, + "noteOrder": 3922, + "time": 0.7380699893955461, "position": { "x": 3, "y": 0 @@ -3516,11 +5333,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2861, - "time": 0.5387062566277837, + "noteOrder": 3945, + "time": 0.7423117709437964, "position": { "x": 3, "y": 0 @@ -3539,11 +5356,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2974, - "time": 0.559915164369035, + "noteOrder": 3945, + "time": 0.7423117709437964, "position": { "x": 4, "y": 0 @@ -3562,13 +5379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 2997, - "time": 0.5641569459172853, + "noteOrder": 3967, + "time": 0.7465535524920467, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3580,18 +5397,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.559915164369035, + "noteOrder": 3990, + "time": 0.750795334040297, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3608,11 +5425,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2997, - "time": 0.5641569459172853, + "noteOrder": 3990, + "time": 0.750795334040297, "position": { "x": 6, "y": 0 @@ -3631,13 +5448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3019, - "time": 0.5683987274655355, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3654,13 +5471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3042, - "time": 0.5726405090137857, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3677,13 +5494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3019, - "time": 0.5683987274655355, + "noteOrder": 4012, + "time": 0.7550371155885472, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3700,13 +5517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3042, - "time": 0.5726405090137857, + "noteOrder": 4035, + "time": 0.7592788971367974, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3723,13 +5540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3335, - "time": 0.6277836691410392, + "noteOrder": 4035, + "time": 0.7592788971367974, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3746,13 +5563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3380, - "time": 0.6362672322375397, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3769,13 +5586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3335, - "time": 0.6277836691410392, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3787,16 +5604,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 3380, - "time": 0.6362672322375397, + "noteOrder": 4057, + "time": 0.7635206786850477, "position": { "x": 7, "y": 0 @@ -3815,13 +5632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.6786850477200425, + "noteOrder": 4069, + "time": 0.7656415694591728, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3833,18 +5650,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3650, - "time": 0.687168610816543, + "noteOrder": 4069, + "time": 0.7656415694591728, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3861,13 +5678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3695, - "time": 0.6956521739130435, + "noteOrder": 4080, + "time": 0.767762460233298, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3884,13 +5701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3718, - "time": 0.6998939554612937, + "noteOrder": 4091, + "time": 0.7698833510074231, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3902,18 +5719,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3740, - "time": 0.704135737009544, + "noteOrder": 4091, + "time": 0.7698833510074231, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3930,13 +5747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3763, - "time": 0.7083775185577943, + "noteOrder": 4102, + "time": 0.7720042417815481, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3953,11 +5770,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3875, - "time": 0.7295864262990456, + "noteOrder": 4114, + "time": 0.7741251325556734, "position": { "x": 7, "y": 0 @@ -3976,13 +5793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3920, - "time": 0.7380699893955461, + "noteOrder": 4114, + "time": 0.7741251325556734, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3994,16 +5811,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3965, - "time": 0.7465535524920466, + "noteOrder": 4125, + "time": 0.7762460233297984, "position": { "x": 7, "y": 0 @@ -4017,16 +5834,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4011, - "time": 0.7550371155885471, + "noteOrder": 4136, + "time": 0.7783669141039237, "position": { "x": 7, "y": 0 @@ -4045,13 +5862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4056, - "time": 0.7635206786850477, + "noteOrder": 4136, + "time": 0.7783669141039237, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4063,18 +5880,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4078, - "time": 0.767762460233298, + "noteOrder": 4238, + "time": 0.7974549310710498, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4091,13 +5908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4101, - "time": 0.7720042417815483, + "noteOrder": 4260, + "time": 0.8016967126193001, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4109,18 +5926,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4123, - "time": 0.7762460233297984, + "noteOrder": 4260, + "time": 0.8016967126193001, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4137,13 +5954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4236, - "time": 0.7974549310710499, + "noteOrder": 4283, + "time": 0.8059384941675504, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4155,16 +5972,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4281, - "time": 0.8059384941675504, + "noteOrder": 4305, + "time": 0.8101802757158005, "position": { "x": 7, "y": 0 @@ -4182,12 +5999,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4305, + "time": 0.8101802757158005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.8144220572640509, + "noteOrder": 4328, + "time": 0.8144220572640508, "position": { "x": 3, "y": 0 @@ -4207,10 +6047,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4394, - "time": 0.8271474019088018, + "noteOrder": 4395, + "time": 0.8271474019088016, "position": { "x": 3, "y": 0 @@ -4230,9 +6070,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4416, + "noteOrder": 4418, "time": 0.8313891834570519, "position": { "x": 7, @@ -4253,9 +6093,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4484, + "noteOrder": 4486, "time": 0.8441145281018028, "position": { "x": 7, @@ -4276,9 +6116,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4506, + "noteOrder": 4508, "time": 0.848356309650053, "position": { "x": 3, @@ -4299,9 +6139,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.8610816542948038, "position": { "x": 3, @@ -4322,9 +6162,9 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4596, + "noteOrder": 4598, "time": 0.865323435843054, "position": { "x": 7, @@ -4345,9 +6185,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.8780487804878049, "position": { "x": 7, @@ -4368,9 +6208,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.8822905620360552, "position": { "x": 3, @@ -4391,9 +6231,9 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4731, + "noteOrder": 4734, "time": 0.8907741251325556, "position": { "x": 3, @@ -4414,9 +6254,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.8992576882290562, "position": { "x": 7, @@ -4437,9 +6277,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4822, + "noteOrder": 4824, "time": 0.9077412513255567, "position": { "x": 7, @@ -4460,10 +6300,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4867, - "time": 0.9162248144220572, + "noteOrder": 4869, + "time": 0.9162248144220573, "position": { "x": 3, "y": 0 @@ -4483,10 +6323,10 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4889, - "time": 0.9204665959703074, + "noteOrder": 4891, + "time": 0.9204665959703076, "position": { "x": 3, "y": 0 @@ -4506,10 +6346,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4912, - "time": 0.9247083775185577, + "noteOrder": 4914, + "time": 0.9247083775185578, "position": { "x": 7, "y": 0 @@ -4529,10 +6369,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4934, - "time": 0.928950159066808, + "noteOrder": 4936, + "time": 0.9289501590668081, "position": { "x": 7, "y": 0 diff --git a/tracks/7 to Smoke/info.json b/tracks/7 to Smoke/info.json index de33f6bc..5d843c65 100644 --- a/tracks/7 to Smoke/info.json +++ b/tracks/7 to Smoke/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "7 to Smoke", - "SongLength": "120.659592", + "SongLength": "110.706939", "SongAuthorName": "lapix", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/8347/278_difficulty_1a.json b/tracks/8347/278_difficulty_1a.json index a70e095d..98ecc604 100644 --- a/tracks/8347/278_difficulty_1a.json +++ b/tracks/8347/278_difficulty_1a.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 145, - "time": 0.02681564245810056, + "noteOrder": 146, + "time": 0.026815642458100558, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 158, - "time": 0.029050279329608943, + "time": 0.029050279329608936, "position": { "x": 5, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 242, + "noteOrder": 243, "time": 0.0446927374301676, "position": { "x": 7, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 339, + "noteOrder": 340, "time": 0.06256983240223464, "position": { "x": 4, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 436, + "noteOrder": 437, "time": 0.08044692737430167, "position": { "x": 5, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 533, - "time": 0.09832402234636872, + "noteOrder": 534, + "time": 0.09832402234636871, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 558, - "time": 0.10279329608938548, + "time": 0.10279329608938546, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 606, - "time": 0.111731843575419, + "time": 0.11173184357541899, "position": { "x": 8, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 630, - "time": 0.11620111731843577, + "noteOrder": 631, + "time": 0.11620111731843574, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 703, + "noteOrder": 704, "time": 0.12960893854748604, "position": { "x": 2, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 727, - "time": 0.13407821229050282, + "noteOrder": 728, + "time": 0.1340782122905028, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 752, - "time": 0.13854748603351957, + "time": 0.13854748603351955, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 824, + "noteOrder": 825, "time": 0.15195530726256984, "position": { "x": 8, @@ -374,7 +374,7 @@ }, { "noteOrder": 837, - "time": 0.15418994413407824, + "time": 0.15418994413407822, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 849, - "time": 0.15642458100558662, + "time": 0.15642458100558657, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 921, - "time": 0.1698324022346369, + "noteOrder": 922, + "time": 0.16983240223463686, "position": { "x": 8, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 934, - "time": 0.17206703910614524, + "time": 0.17206703910614526, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1018, + "noteOrder": 1019, "time": 0.1877094972067039, "position": { "x": 2, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1091, - "time": 0.20111731843575423, + "noteOrder": 1092, + "time": 0.2011173184357542, "position": { "x": 2, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1115, - "time": 0.20558659217877095, + "noteOrder": 1116, + "time": 0.20558659217877093, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1140, - "time": 0.21005586592178774, + "time": 0.2100558659217877, "position": { "x": 5, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1188, - "time": 0.21899441340782128, + "noteOrder": 1189, + "time": 0.21899441340782122, "position": { "x": 8, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1212, - "time": 0.223463687150838, + "noteOrder": 1213, + "time": 0.22346368715083798, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.24134078212290505, "position": { "x": 2, @@ -634,7 +634,7 @@ }, { "noteOrder": 1322, - "time": 0.24357541899441343, + "time": 0.2435754189944134, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1406, + "noteOrder": 1407, "time": 0.25921787709497207, "position": { "x": 8, @@ -694,7 +694,7 @@ }, { "noteOrder": 1528, - "time": 0.2815642458100559, + "time": 0.28156424581005585, "position": { "x": 4, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1540, - "time": 0.2837988826815643, + "time": 0.2837988826815642, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1552, - "time": 0.28603351955307266, + "noteOrder": 1553, + "time": 0.2860335195530726, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.28826815642458103, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1576, - "time": 0.2905027932960894, + "noteOrder": 1577, + "time": 0.29050279329608936, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1588, - "time": 0.2927374301675978, + "noteOrder": 1589, + "time": 0.29273743016759773, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1600, + "noteOrder": 1601, "time": 0.29497206703910617, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1770, - "time": 0.3262569832402235, + "noteOrder": 1771, + "time": 0.32625698324022345, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1794, + "noteOrder": 1795, "time": 0.33072625698324026, "position": { "x": 5, @@ -894,7 +894,7 @@ }, { "noteOrder": 1819, - "time": 0.335195530726257, + "time": 0.33519553072625696, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1867, - "time": 0.3441340782122905, + "noteOrder": 1868, + "time": 0.34413407821229053, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1891, + "noteOrder": 1892, "time": 0.3486033519553073, "position": { "x": 5, @@ -954,7 +954,7 @@ }, { "noteOrder": 1916, - "time": 0.35307262569832404, + "time": 0.353072625698324, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1964, + "noteOrder": 1965, "time": 0.36201117318435755, "position": { "x": 2, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1988, - "time": 0.36648044692737436, + "noteOrder": 1989, + "time": 0.3664804469273743, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2013, - "time": 0.3709497206703911, + "noteOrder": 2014, + "time": 0.370949720670391, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2061, + "noteOrder": 2062, "time": 0.37988826815642457, "position": { "x": 8, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2085, + "noteOrder": 2086, "time": 0.3843575418994414, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2110, - "time": 0.38882681564245813, + "noteOrder": 2111, + "time": 0.3888268156424581, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2158, - "time": 0.39776536312849164, + "noteOrder": 2159, + "time": 0.3977653631284916, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2182, - "time": 0.40223463687150846, + "noteOrder": 2183, + "time": 0.4022346368715084, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2207, - "time": 0.4067039106145252, + "noteOrder": 2208, + "time": 0.40670391061452515, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2255, + "noteOrder": 2256, "time": 0.41564245810055866, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2279, - "time": 0.4201117318435755, + "noteOrder": 2280, + "time": 0.4201117318435754, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2304, - "time": 0.42458100558659223, + "noteOrder": 2305, + "time": 0.4245810055865922, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2352, - "time": 0.43351955307262574, + "noteOrder": 2353, + "time": 0.4335195530726257, "position": { "x": 2, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2376, - "time": 0.43798882681564255, + "noteOrder": 2377, + "time": 0.43798882681564244, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.44245810055865925, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2449, - "time": 0.45139664804469276, + "noteOrder": 2450, + "time": 0.4513966480446927, "position": { "x": 8, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.4558659217877095, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.4603351955307263, + "noteOrder": 2499, + "time": 0.46033519553072627, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.4692737430167598, + "noteOrder": 2547, + "time": 0.4692737430167597, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.47374301675977654, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.47821229050279335, + "noteOrder": 2596, + "time": 0.4782122905027933, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2643, - "time": 0.48715083798882686, + "noteOrder": 2644, + "time": 0.4871508379888268, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2667, - "time": 0.4916201117318436, + "noteOrder": 2669, + "time": 0.49162011173184356, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.4960893854748604, + "noteOrder": 2693, + "time": 0.4960893854748603, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.5050279329608939, + "noteOrder": 2741, + "time": 0.5050279329608938, "position": { "x": 2, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2766, "time": 0.5094972067039106, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2789, - "time": 0.5139664804469275, + "noteOrder": 2790, + "time": 0.5139664804469274, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2837, + "noteOrder": 2838, "time": 0.5229050279329609, "position": { "x": 8, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2863, "time": 0.5273743016759777, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2886, - "time": 0.5318435754189945, + "noteOrder": 2887, + "time": 0.5318435754189944, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3128, + "noteOrder": 3129, "time": 0.5765363128491621, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3152, - "time": 0.5810055865921788, + "noteOrder": 3154, + "time": 0.5810055865921787, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5854748603351956, + "noteOrder": 3178, + "time": 0.5854748603351955, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3201, + "noteOrder": 3202, "time": 0.5899441340782123, "position": { "x": 8, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3226, "time": 0.5944134078212291, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3249, - "time": 0.5988826815642458, + "noteOrder": 3251, + "time": 0.5988826815642457, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3274, + "noteOrder": 3275, "time": 0.6033519553072626, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3299, "time": 0.6078212290502794, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3322, + "noteOrder": 3324, "time": 0.6122905027932961, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3346, - "time": 0.616759776536313, + "noteOrder": 3348, + "time": 0.6167597765363129, "position": { "x": 5, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3371, - "time": 0.6212290502793297, + "noteOrder": 3372, + "time": 0.6212290502793296, "position": { "x": 5, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3419, - "time": 0.6301675977653632, + "noteOrder": 3421, + "time": 0.630167597765363, "position": { "x": 8, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3443, + "noteOrder": 3445, "time": 0.6346368715083799, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3469, "time": 0.6391061452513966, "position": { "x": 5, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3613, - "time": 0.6659217877094973, + "noteOrder": 3615, + "time": 0.6659217877094972, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3637, - "time": 0.670391061452514, + "noteOrder": 3639, + "time": 0.6703910614525139, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3662, - "time": 0.6748603351955308, + "noteOrder": 3663, + "time": 0.6748603351955307, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3710, - "time": 0.6837988826815643, + "noteOrder": 3712, + "time": 0.6837988826815642, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3734, - "time": 0.688268156424581, + "noteOrder": 3736, + "time": 0.6882681564245811, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3758, - "time": 0.6927374301675979, + "noteOrder": 3760, + "time": 0.6927374301675978, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3807, - "time": 0.7016759776536313, + "noteOrder": 3809, + "time": 0.7016759776536312, "position": { "x": 2, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3831, - "time": 0.7061452513966481, + "noteOrder": 3833, + "time": 0.706145251396648, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3855, - "time": 0.7106145251396648, + "noteOrder": 3857, + "time": 0.7106145251396647, "position": { "x": 5, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3904, + "noteOrder": 3906, "time": 0.7195530726256983, "position": { "x": 8, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 3930, "time": 0.7240223463687151, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3952, - "time": 0.728491620111732, + "noteOrder": 3954, + "time": 0.7284916201117319, "position": { "x": 5, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4074, + "noteOrder": 4076, "time": 0.7508379888268156, "position": { "x": 2, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4086, - "time": 0.7530726256983241, + "noteOrder": 4088, + "time": 0.753072625698324, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.7553072625698324, "position": { "x": 5, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4110, - "time": 0.7575418994413409, + "noteOrder": 4112, + "time": 0.7575418994413406, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.7597765363128491, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.7620111731843576, + "noteOrder": 4136, + "time": 0.7620111731843575, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4195, + "noteOrder": 4197, "time": 0.7731843575418995, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.7754189944134079, + "noteOrder": 4209, + "time": 0.7754189944134078, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4304, + "noteOrder": 4306, "time": 0.7932960893854749, "position": { "x": 8, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4389, - "time": 0.8089385474860337, + "noteOrder": 4391, + "time": 0.8089385474860336, "position": { "x": 8, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4413, - "time": 0.8134078212290504, + "noteOrder": 4415, + "time": 0.8134078212290503, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4437, - "time": 0.8178770949720671, + "noteOrder": 4439, + "time": 0.817877094972067, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4486, - "time": 0.8268156424581006, + "noteOrder": 4488, + "time": 0.8268156424581005, "position": { "x": 2, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4510, + "noteOrder": 4512, "time": 0.8312849162011173, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4534, + "noteOrder": 4537, "time": 0.8357541899441341, "position": { "x": 4, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.8804469273743017, "position": { "x": 8, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4801, + "noteOrder": 4803, "time": 0.8849162011173185, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4828, "time": 0.8893854748603353, "position": { "x": 5, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4838, - "time": 0.8916201117318436, + "noteOrder": 4840, + "time": 0.8916201117318435, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.893854748603352, + "noteOrder": 4852, + "time": 0.8938547486033519, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4862, - "time": 0.8960893854748605, + "noteOrder": 4864, + "time": 0.8960893854748604, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.8983240223463688, + "noteOrder": 4876, + "time": 0.8983240223463687, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4886, - "time": 0.9005586592178773, + "noteOrder": 4888, + "time": 0.9005586592178771, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4898, - "time": 0.9027932960893855, + "noteOrder": 4900, + "time": 0.9027932960893854, "position": { "x": 5, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4910, - "time": 0.905027932960894, + "noteOrder": 4913, + "time": 0.9050279329608939, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4922, - "time": 0.9072625698324023, + "noteOrder": 4925, + "time": 0.9072625698324022, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4971, - "time": 0.9162011173184359, + "noteOrder": 4973, + "time": 0.9162011173184358, "position": { "x": 2, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4995, - "time": 0.9206703910614527, + "noteOrder": 4997, + "time": 0.9206703910614525, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5019, - "time": 0.9251396648044694, + "noteOrder": 5022, + "time": 0.9251396648044693, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5068, - "time": 0.9340782122905028, + "noteOrder": 5070, + "time": 0.9340782122905027, "position": { "x": 8, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5092, - "time": 0.9385474860335196, + "noteOrder": 5094, + "time": 0.9385474860335195, "position": { "x": 6, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5116, + "noteOrder": 5119, "time": 0.9430167597765363, "position": { "x": 4, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5165, - "time": 0.9519553072625699, + "noteOrder": 5167, + "time": 0.9519553072625698, "position": { "x": 2, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.9564245810055867, + "noteOrder": 5192, + "time": 0.9564245810055866, "position": { "x": 4, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5213, - "time": 0.9608938547486034, + "noteOrder": 5216, + "time": 0.9608938547486033, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5286, - "time": 0.9743016759776537, + "noteOrder": 5289, + "time": 0.9743016759776536, "position": { "x": 8, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5298, - "time": 0.9765363128491621, + "noteOrder": 5301, + "time": 0.976536312849162, "position": { "x": 6, "y": 0 @@ -2836,10 +2836,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.01787709497206704, + "time": 0.017877094972067038, "position": { "x": 7, "y": 0 @@ -2859,7 +2859,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, "time": 0.0223463687150838, @@ -2882,7 +2882,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 121, "time": 0.0223463687150838, @@ -2905,10 +2905,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 145, - "time": 0.02681564245810056, + "noteOrder": 146, + "time": 0.026815642458100558, "position": { "x": 8, "y": 0 @@ -2928,7 +2928,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 170, "time": 0.03128491620111732, @@ -2951,10 +2951,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 194, - "time": 0.03575418994413408, + "time": 0.035754189944134075, "position": { "x": 8, "y": 0 @@ -2974,10 +2974,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.03575418994413408, + "time": 0.035754189944134075, "position": { "x": 6, "y": 0 @@ -2997,7 +2997,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 218, "time": 0.04022346368715084, @@ -3020,7 +3020,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 218, "time": 0.04022346368715084, @@ -3043,9 +3043,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 242, + "noteOrder": 243, "time": 0.0446927374301676, "position": { "x": 5, @@ -3066,10 +3066,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 267, - "time": 0.04916201117318436, + "time": 0.049162011173184354, "position": { "x": 5, "y": 0 @@ -3089,10 +3089,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, - "time": 0.05363128491620112, + "time": 0.053631284916201116, "position": { "x": 5, "y": 0 @@ -3112,10 +3112,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.05363128491620112, + "time": 0.053631284916201116, "position": { "x": 5, "y": 0 @@ -3135,10 +3135,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 315, - "time": 0.058100558659217885, + "time": 0.05810055865921787, "position": { "x": 5, "y": 0 @@ -3158,10 +3158,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 315, - "time": 0.058100558659217885, + "time": 0.05810055865921787, "position": { "x": 6, "y": 0 @@ -3181,9 +3181,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 339, + "noteOrder": 340, "time": 0.06256983240223464, "position": { "x": 6, @@ -3204,10 +3204,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 364, - "time": 0.06703910614525141, + "time": 0.0670391061452514, "position": { "x": 6, "y": 0 @@ -3227,10 +3227,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 388, - "time": 0.07150837988826816, + "time": 0.07150837988826815, "position": { "x": 6, "y": 0 @@ -3250,10 +3250,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 388, - "time": 0.07150837988826816, + "time": 0.07150837988826815, "position": { "x": 4, "y": 0 @@ -3273,7 +3273,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 412, "time": 0.07597765363128492, @@ -3296,7 +3296,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 412, "time": 0.07597765363128492, @@ -3319,9 +3319,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 436, + "noteOrder": 437, "time": 0.08044692737430167, "position": { "x": 3, @@ -3342,10 +3342,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 461, - "time": 0.08491620111731844, + "time": 0.08491620111731843, "position": { "x": 3, "y": 0 @@ -3365,7 +3365,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 485, "time": 0.0893854748603352, @@ -3388,7 +3388,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 485, "time": 0.0893854748603352, @@ -3411,10 +3411,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 582, - "time": 0.10726256983240225, + "time": 0.10726256983240223, "position": { "x": 6, "y": 0 @@ -3434,10 +3434,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 582, - "time": 0.10726256983240225, + "time": 0.10726256983240223, "position": { "x": 8, "y": 0 @@ -3457,7 +3457,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 679, "time": 0.12513966480446928, @@ -3480,7 +3480,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 679, "time": 0.12513966480446928, @@ -3503,10 +3503,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 776, - "time": 0.14301675977653633, + "time": 0.1430167597765363, "position": { "x": 6, "y": 0 @@ -3526,10 +3526,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 776, - "time": 0.14301675977653633, + "time": 0.1430167597765363, "position": { "x": 8, "y": 0 @@ -3548,11 +3548,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 800, - "time": 0.14748603351955308, + "noteOrder": 788, + "time": 0.14525139664804468, "position": { "x": 8, "y": 0 @@ -3566,18 +3566,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 873, - "time": 0.16089385474860335, + "noteOrder": 788, + "time": 0.14525139664804468, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3589,16 +3589,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 897, - "time": 0.16536312849162013, + "noteOrder": 801, + "time": 0.14748603351955308, "position": { "x": 8, "y": 0 @@ -3612,18 +3612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 970, - "time": 0.1787709497206704, + "noteOrder": 813, + "time": 0.14972067039106143, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3635,18 +3635,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 994, - "time": 0.18324022346368718, + "noteOrder": 813, + "time": 0.14972067039106143, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3663,13 +3663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1067, - "time": 0.19664804469273744, + "noteOrder": 873, + "time": 0.16089385474860335, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3681,18 +3681,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1091, - "time": 0.20111731843575423, + "noteOrder": 885, + "time": 0.16312849162011173, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3704,18 +3704,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 2, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1115, - "time": 0.20558659217877095, + "noteOrder": 885, + "time": 0.16312849162011173, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3727,18 +3727,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 3, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1140, - "time": 0.21005586592178774, + "noteOrder": 898, + "time": 0.16536312849162013, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3750,18 +3750,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1164, - "time": 0.2145251396648045, + "noteOrder": 898, + "time": 0.16536312849162013, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3778,13 +3778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 1188, - "time": 0.21899441340782128, + "noteOrder": 898, + "time": 0.16536312849162013, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3796,18 +3796,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 39, "indexInLine": 2, "isSliding": false, - "noteOrder": 1212, - "time": 0.223463687150838, + "noteOrder": 910, + "time": 0.16759776536312848, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3819,18 +3819,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 39, "indexInLine": 3, "isSliding": false, - "noteOrder": 1237, - "time": 0.22793296089385476, + "noteOrder": 910, + "time": 0.16759776536312848, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3842,18 +3842,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1261, - "time": 0.23240223463687154, + "noteOrder": 922, + "time": 0.16983240223463686, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3870,13 +3870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1285, - "time": 0.23687150837988827, + "noteOrder": 922, + "time": 0.16983240223463686, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3888,18 +3888,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1358, - "time": 0.25027932960893856, + "noteOrder": 970, + "time": 0.1787709497206704, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3911,18 +3911,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1382, - "time": 0.2547486033519553, + "noteOrder": 983, + "time": 0.18100558659217877, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3939,13 +3939,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1455, - "time": 0.26815642458100564, + "noteOrder": 983, + "time": 0.18100558659217877, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3957,16 +3957,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1479, - "time": 0.27262569832402234, + "noteOrder": 995, + "time": 0.18324022346368715, "position": { "x": 4, "y": 0 @@ -3985,13 +3985,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1503, - "time": 0.27709497206703915, + "noteOrder": 995, + "time": 0.18324022346368715, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4003,18 +4003,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1625, - "time": 0.2994413407821229, + "noteOrder": 995, + "time": 0.18324022346368715, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4026,18 +4026,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1649, - "time": 0.3039106145251397, + "noteOrder": 1007, + "time": 0.1854748603351955, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4049,18 +4049,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1746, - "time": 0.3217877094972067, + "noteOrder": 1007, + "time": 0.1854748603351955, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4072,18 +4072,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1843, - "time": 0.3396648044692738, + "noteOrder": 1019, + "time": 0.1877094972067039, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4095,18 +4095,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1843, - "time": 0.3396648044692738, + "noteOrder": 1019, + "time": 0.1877094972067039, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4123,13 +4123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1940, - "time": 0.3575418994413408, + "noteOrder": 1067, + "time": 0.19664804469273742, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4141,18 +4141,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1940, - "time": 0.3575418994413408, + "noteOrder": 1092, + "time": 0.2011173184357542, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4169,13 +4169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2037, - "time": 0.3754189944134078, + "noteOrder": 1116, + "time": 0.20558659217877093, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4192,13 +4192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2037, - "time": 0.3754189944134078, + "noteOrder": 1140, + "time": 0.2100558659217877, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4210,18 +4210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2134, - "time": 0.3932960893854749, + "noteOrder": 1164, + "time": 0.21452513966480447, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4238,13 +4238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2134, - "time": 0.3932960893854749, + "noteOrder": 1189, + "time": 0.21899441340782122, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4256,16 +4256,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2231, - "time": 0.4111731843575419, + "noteOrder": 1213, + "time": 0.22346368715083798, "position": { "x": 6, "y": 0 @@ -4279,18 +4279,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2231, - "time": 0.4111731843575419, + "noteOrder": 1237, + "time": 0.22793296089385476, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4307,13 +4307,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 2328, - "time": 0.429050279329609, + "noteOrder": 1261, + "time": 0.23240223463687149, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4325,16 +4325,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2328, - "time": 0.429050279329609, + "noteOrder": 1274, + "time": 0.23463687150837986, "position": { "x": 2, "y": 0 @@ -4353,13 +4353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2425, - "time": 0.446927374301676, + "noteOrder": 1274, + "time": 0.23463687150837986, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4376,13 +4376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2425, - "time": 0.446927374301676, + "noteOrder": 1286, + "time": 0.23687150837988827, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4394,18 +4394,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2522, - "time": 0.4648044692737431, + "noteOrder": 1286, + "time": 0.23687150837988827, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4417,16 +4417,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2522, - "time": 0.4648044692737431, + "noteOrder": 1286, + "time": 0.23687150837988827, "position": { "x": 2, "y": 0 @@ -4440,18 +4440,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2619, - "time": 0.4826815642458101, + "noteOrder": 1298, + "time": 0.23910614525139665, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4463,18 +4463,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2619, - "time": 0.4826815642458101, + "noteOrder": 1298, + "time": 0.23910614525139665, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4491,11 +4491,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2716, - "time": 0.5005586592178771, + "noteOrder": 1310, + "time": 0.24134078212290505, "position": { "x": 4, "y": 0 @@ -4514,13 +4514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2716, - "time": 0.5005586592178771, + "noteOrder": 1310, + "time": 0.24134078212290505, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4532,18 +4532,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 2813, - "time": 0.5184357541899441, + "noteOrder": 1359, + "time": 0.25027932960893856, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4555,16 +4555,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2813, - "time": 0.5184357541899441, + "noteOrder": 1371, + "time": 0.2525139664804469, "position": { "x": 8, "y": 0 @@ -4583,13 +4583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2910, - "time": 0.5363128491620113, + "noteOrder": 1371, + "time": 0.2525139664804469, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4606,13 +4606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2910, - "time": 0.5363128491620113, + "noteOrder": 1383, + "time": 0.2547486033519553, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4624,18 +4624,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2934, - "time": 0.540782122905028, + "noteOrder": 1383, + "time": 0.2547486033519553, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4652,13 +4652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2958, - "time": 0.5452513966480447, + "noteOrder": 1383, + "time": 0.2547486033519553, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4675,13 +4675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2983, - "time": 0.5497206703910615, + "noteOrder": 1395, + "time": 0.2569832402234637, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4693,18 +4693,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3007, - "time": 0.5541899441340783, + "noteOrder": 1395, + "time": 0.2569832402234637, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4721,13 +4721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3031, - "time": 0.558659217877095, + "noteOrder": 1407, + "time": 0.25921787709497207, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4739,18 +4739,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3055, - "time": 0.5631284916201118, + "noteOrder": 1407, + "time": 0.25921787709497207, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4767,13 +4767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3080, - "time": 0.5675977653631286, + "noteOrder": 1456, + "time": 0.2681564245810056, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4790,13 +4790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3104, - "time": 0.5720670391061453, + "noteOrder": 1468, + "time": 0.27039106145251396, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4808,16 +4808,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3201, - "time": 0.5899441340782123, + "noteOrder": 1468, + "time": 0.27039106145251396, "position": { "x": 6, "y": 0 @@ -4831,18 +4831,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3395, - "time": 0.6256983240223465, + "noteOrder": 1480, + "time": 0.27262569832402234, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4854,18 +4854,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3419, - "time": 0.6301675977653632, + "noteOrder": 1492, + "time": 0.2748603351955307, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4877,16 +4877,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3443, - "time": 0.6346368715083799, + "noteOrder": 1492, + "time": 0.2748603351955307, "position": { "x": 6, "y": 0 @@ -4900,18 +4900,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 3, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3468, - "time": 0.6391061452513966, + "noteOrder": 1504, + "time": 0.2770949720670391, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4928,13 +4928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3492, - "time": 0.6435754189944134, + "noteOrder": 1516, + "time": 0.27932960893854747, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4946,18 +4946,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3516, - "time": 0.6480446927374302, + "noteOrder": 1516, + "time": 0.27932960893854747, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4974,13 +4974,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3540, - "time": 0.652513966480447, + "noteOrder": 1625, + "time": 0.29944134078212287, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4997,13 +4997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3565, - "time": 0.6569832402234638, + "noteOrder": 1650, + "time": 0.3039106145251397, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5015,16 +5015,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3589, - "time": 0.6614525139664805, + "noteOrder": 1747, + "time": 0.3217877094972067, "position": { "x": 2, "y": 0 @@ -5043,11 +5043,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3686, - "time": 0.6793296089385475, + "noteOrder": 1844, + "time": 0.3396648044692737, "position": { "x": 6, "y": 0 @@ -5066,11 +5066,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3686, - "time": 0.6793296089385475, + "noteOrder": 1844, + "time": 0.3396648044692737, "position": { "x": 8, "y": 0 @@ -5089,11 +5089,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3783, - "time": 0.6972067039106146, + "noteOrder": 1941, + "time": 0.3575418994413408, "position": { "x": 4, "y": 0 @@ -5112,11 +5112,11 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3783, - "time": 0.6972067039106146, + "noteOrder": 1941, + "time": 0.3575418994413408, "position": { "x": 2, "y": 0 @@ -5135,13 +5135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3807, - "time": 0.7016759776536313, + "noteOrder": 2038, + "time": 0.3754189944134078, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5158,13 +5158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 2, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3831, - "time": 0.7061452513966481, + "noteOrder": 2038, + "time": 0.3754189944134078, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5176,18 +5176,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 3, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3855, - "time": 0.7106145251396648, + "noteOrder": 2135, + "time": 0.39329608938547483, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5199,18 +5199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3880, - "time": 0.7150837988826816, + "noteOrder": 2135, + "time": 0.39329608938547483, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5222,18 +5222,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3904, - "time": 0.7195530726256983, + "noteOrder": 2232, + "time": 0.41117318435754185, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5245,18 +5245,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 2, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3928, - "time": 0.7240223463687151, + "noteOrder": 2232, + "time": 0.41117318435754185, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5273,13 +5273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 3, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3952, - "time": 0.728491620111732, + "noteOrder": 2329, + "time": 0.42905027932960893, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5296,11 +5296,11 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3977, - "time": 0.7329608938547487, + "noteOrder": 2329, + "time": 0.42905027932960893, "position": { "x": 2, "y": 0 @@ -5319,13 +5319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4001, - "time": 0.7374301675977655, + "noteOrder": 2426, + "time": 0.44692737430167595, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5337,18 +5337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4025, - "time": 0.7418994413407822, + "noteOrder": 2426, + "time": 0.44692737430167595, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5360,18 +5360,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4049, - "time": 0.746368715083799, + "noteOrder": 2523, + "time": 0.46480446927374297, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5388,13 +5388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4171, - "time": 0.7687150837988828, + "noteOrder": 2523, + "time": 0.46480446927374297, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5411,13 +5411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4195, - "time": 0.7731843575418995, + "noteOrder": 2620, + "time": 0.4826815642458101, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5434,11 +5434,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4219, - "time": 0.7776536312849163, + "noteOrder": 2620, + "time": 0.4826815642458101, "position": { "x": 8, "y": 0 @@ -5457,13 +5457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4268, - "time": 0.7865921787709498, + "noteOrder": 2717, + "time": 0.5005586592178771, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5480,13 +5480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4280, - "time": 0.7888268156424582, + "noteOrder": 2717, + "time": 0.5005586592178771, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5503,13 +5503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4304, - "time": 0.7932960893854749, + "noteOrder": 2814, + "time": 0.5184357541899441, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5526,11 +5526,11 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4365, - "time": 0.8044692737430169, + "noteOrder": 2814, + "time": 0.5184357541899441, "position": { "x": 8, "y": 0 @@ -5549,11 +5549,11 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4462, - "time": 0.8223463687150838, + "noteOrder": 2911, + "time": 0.5363128491620112, "position": { "x": 4, "y": 0 @@ -5572,11 +5572,11 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4462, - "time": 0.8223463687150838, + "noteOrder": 2911, + "time": 0.5363128491620112, "position": { "x": 2, "y": 0 @@ -5595,13 +5595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4534, - "time": 0.8357541899441341, + "noteOrder": 2923, + "time": 0.5385474860335195, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5618,13 +5618,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4559, - "time": 0.840223463687151, + "noteOrder": 2923, + "time": 0.5385474860335195, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5636,18 +5636,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4583, - "time": 0.8446927374301677, + "noteOrder": 2935, + "time": 0.5407821229050279, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5664,13 +5664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4607, - "time": 0.8491620111731845, + "noteOrder": 2935, + "time": 0.5407821229050279, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5682,18 +5682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4631, - "time": 0.8536312849162012, + "noteOrder": 2935, + "time": 0.5407821229050279, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5705,18 +5705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4656, - "time": 0.858100558659218, + "noteOrder": 2948, + "time": 0.5430167597765363, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5733,13 +5733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4680, - "time": 0.8625698324022347, + "noteOrder": 2948, + "time": 0.5430167597765363, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5751,18 +5751,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4704, - "time": 0.8670391061452515, + "noteOrder": 2960, + "time": 0.5452513966480447, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5779,13 +5779,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4728, - "time": 0.8715083798882681, + "noteOrder": 2960, + "time": 0.5452513966480447, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5797,18 +5797,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4753, - "time": 0.8759776536312851, + "noteOrder": 2960, + "time": 0.5452513966480447, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5820,18 +5820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 1, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4777, - "time": 0.8804469273743017, + "noteOrder": 2972, + "time": 0.547486033519553, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5843,18 +5843,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 2, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4801, - "time": 0.8849162011173185, + "noteOrder": 2972, + "time": 0.547486033519553, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5866,18 +5866,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 3, + "lineGroupId": 150, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4825, - "time": 0.8893854748603353, + "noteOrder": 2984, + "time": 0.5497206703910614, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5889,18 +5889,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4947, - "time": 0.911731843575419, + "noteOrder": 2984, + "time": 0.5497206703910614, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5912,18 +5912,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, + "lineGroupId": 151, "indexInLine": 1, "isSliding": false, - "noteOrder": 5044, - "time": 0.9296089385474862, + "noteOrder": 2984, + "time": 0.5497206703910614, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5940,13 +5940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5044, - "time": 0.9296089385474862, + "noteOrder": 2996, + "time": 0.5519553072625698, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5958,16 +5958,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5141, - "time": 0.9474860335195531, + "noteOrder": 2996, + "time": 0.5519553072625698, "position": { "x": 4, "y": 0 @@ -5981,18 +5981,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5141, - "time": 0.9474860335195531, + "noteOrder": 3008, + "time": 0.5541899441340782, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6009,13 +6009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5238, - "time": 0.9653631284916202, + "noteOrder": 3008, + "time": 0.5541899441340782, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6032,13 +6032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5238, - "time": 0.9653631284916202, + "noteOrder": 3008, + "time": 0.5541899441340782, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6055,11 +6055,3116 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5262, - "time": 0.969832402234637, + "noteOrder": 3020, + "time": 0.5564245810055866, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5564245810055866, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5586592178770949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5586592178770949, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5586592178770949, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3045, + "time": 0.5608938547486033, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3045, + "time": 0.5608938547486033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3057, + "time": 0.5631284916201117, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3057, + "time": 0.5631284916201117, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3057, + "time": 0.5631284916201117, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3069, + "time": 0.5653631284916201, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3069, + "time": 0.5653631284916201, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3081, + "time": 0.5675977653631284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3081, + "time": 0.5675977653631284, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3081, + "time": 0.5675977653631284, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3093, + "time": 0.5698324022346368, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3093, + "time": 0.5698324022346368, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3105, + "time": 0.5720670391061452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3105, + "time": 0.5720670391061452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3105, + "time": 0.5720670391061452, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3202, + "time": 0.5899441340782123, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3396, + "time": 0.6256983240223463, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3421, + "time": 0.630167597765363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3445, + "time": 0.6346368715083799, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3469, + "time": 0.6391061452513966, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3493, + "time": 0.6435754189944134, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3505, + "time": 0.6458100558659217, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3505, + "time": 0.6458100558659217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3518, + "time": 0.6480446927374302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3518, + "time": 0.6480446927374302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3518, + "time": 0.6480446927374302, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3530, + "time": 0.6502793296089385, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3530, + "time": 0.6502793296089385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3542, + "time": 0.6525139664804469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3542, + "time": 0.6525139664804469, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3542, + "time": 0.6525139664804469, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3554, + "time": 0.6547486033519553, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3554, + "time": 0.6547486033519553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3566, + "time": 0.6569832402234638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3566, + "time": 0.6569832402234638, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3566, + "time": 0.6569832402234638, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3578, + "time": 0.659217877094972, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3578, + "time": 0.659217877094972, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3590, + "time": 0.6614525139664805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3590, + "time": 0.6614525139664805, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3590, + "time": 0.6614525139664805, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3687, + "time": 0.6793296089385474, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3687, + "time": 0.6793296089385474, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.6972067039106146, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3784, + "time": 0.6972067039106146, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3809, + "time": 0.7016759776536312, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3833, + "time": 0.706145251396648, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3857, + "time": 0.7106145251396647, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3882, + "time": 0.7150837988826816, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3906, + "time": 0.7195530726256983, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3930, + "time": 0.7240223463687151, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3954, + "time": 0.7284916201117319, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3979, + "time": 0.7329608938547486, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3991, + "time": 0.735195530726257, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3991, + "time": 0.735195530726257, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7374301675977654, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7374301675977654, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7374301675977654, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4015, + "time": 0.7396648044692737, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4015, + "time": 0.7396648044692737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4027, + "time": 0.741899441340782, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4027, + "time": 0.741899441340782, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4027, + "time": 0.741899441340782, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4039, + "time": 0.7441340782122905, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4039, + "time": 0.7441340782122905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7463687150837989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7463687150837989, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7463687150837989, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.7486033519553073, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4063, + "time": 0.7486033519553073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7508379888268156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7508379888268156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4173, + "time": 0.7687150837988828, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4197, + "time": 0.7731843575418995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4221, + "time": 0.7776536312849162, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4270, + "time": 0.7865921787709497, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4282, + "time": 0.7888268156424582, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7932960893854749, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4367, + "time": 0.8044692737430168, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4464, + "time": 0.8223463687150837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4464, + "time": 0.8223463687150837, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4537, + "time": 0.8357541899441341, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4561, + "time": 0.8402234636871508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4573, + "time": 0.8424581005586592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4573, + "time": 0.8424581005586592, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4585, + "time": 0.8446927374301676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4597, + "time": 0.846927374301676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4597, + "time": 0.846927374301676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4609, + "time": 0.8491620111731844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4621, + "time": 0.8513966480446927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4621, + "time": 0.8513966480446927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4634, + "time": 0.853631284916201, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4634, + "time": 0.853631284916201, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4634, + "time": 0.853631284916201, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4646, + "time": 0.8558659217877095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4646, + "time": 0.8558659217877095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4658, + "time": 0.8581005586592179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4658, + "time": 0.8581005586592179, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4658, + "time": 0.8581005586592179, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4670, + "time": 0.8603351955307262, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4670, + "time": 0.8603351955307262, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4682, + "time": 0.8625698324022346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4694, + "time": 0.864804469273743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4694, + "time": 0.864804469273743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4706, + "time": 0.8670391061452514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4718, + "time": 0.8692737430167599, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4718, + "time": 0.8692737430167599, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4731, + "time": 0.8715083798882681, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4731, + "time": 0.8715083798882681, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4731, + "time": 0.8715083798882681, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4743, + "time": 0.8737430167597765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4743, + "time": 0.8737430167597765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4755, + "time": 0.8759776536312849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4755, + "time": 0.8759776536312849, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4755, + "time": 0.8759776536312849, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4779, + "time": 0.8804469273743017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4803, + "time": 0.8849162011173185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4828, + "time": 0.8893854748603353, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4949, + "time": 0.911731843575419, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5046, + "time": 0.9296089385474859, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5046, + "time": 0.9296089385474859, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5143, + "time": 0.9474860335195531, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5143, + "time": 0.9474860335195531, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5240, + "time": 0.9653631284916202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5240, + "time": 0.9653631284916202, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5252, + "time": 0.9675977653631285, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5252, + "time": 0.9675977653631285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5264, + "time": 0.9698324022346368, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5264, + "time": 0.9698324022346368, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5264, + "time": 0.9698324022346368, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5276, + "time": 0.9720670391061452, "position": { "x": 8, "y": 0 @@ -6076,6 +9181,75 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5276, + "time": 0.9720670391061452, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5289, + "time": 0.9743016759776536, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5289, + "time": 0.9743016759776536, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/8347/278_difficulty_1b.json b/tracks/8347/278_difficulty_1b.json index f13d2c14..e235c2c2 100644 --- a/tracks/8347/278_difficulty_1b.json +++ b/tracks/8347/278_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 145, - "time": 0.02681564245810056, + "noteOrder": 146, + "time": 0.026815642458100558, "position": { "x": 7, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 242, + "noteOrder": 243, "time": 0.0446927374301676, "position": { "x": 3, @@ -74,7 +74,7 @@ }, { "noteOrder": 267, - "time": 0.04916201117318436, + "time": 0.049162011173184354, "position": { "x": 7, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 339, + "noteOrder": 340, "time": 0.06256983240223464, "position": { "x": 4, @@ -114,7 +114,7 @@ }, { "noteOrder": 364, - "time": 0.06703910614525141, + "time": 0.0670391061452514, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 436, + "noteOrder": 437, "time": 0.08044692737430167, "position": { "x": 6, @@ -154,7 +154,7 @@ }, { "noteOrder": 461, - "time": 0.08491620111731844, + "time": 0.08491620111731843, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 533, - "time": 0.09832402234636872, + "noteOrder": 534, + "time": 0.09832402234636871, "position": { "x": 2, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 606, - "time": 0.111731843575419, + "time": 0.11173184357541899, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 630, - "time": 0.11620111731843577, + "noteOrder": 631, + "time": 0.11620111731843574, "position": { "x": 8, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 703, + "noteOrder": 704, "time": 0.12960893854748604, "position": { "x": 4, @@ -274,7 +274,7 @@ }, { "noteOrder": 752, - "time": 0.13854748603351957, + "time": 0.13854748603351955, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 776, - "time": 0.14301675977653633, + "time": 0.1430167597765363, "position": { "x": 8, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 921, - "time": 0.1698324022346369, + "noteOrder": 922, + "time": 0.16983240223463686, "position": { "x": 8, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 994, - "time": 0.18324022346368718, + "noteOrder": 995, + "time": 0.18324022346368715, "position": { "x": 4, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1018, + "noteOrder": 1019, "time": 0.1877094972067039, "position": { "x": 2, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1115, - "time": 0.20558659217877095, + "noteOrder": 1116, + "time": 0.20558659217877093, "position": { "x": 2, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1188, - "time": 0.21899441340782128, + "noteOrder": 1189, + "time": 0.21899441340782122, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1212, - "time": 0.223463687150838, + "noteOrder": 1213, + "time": 0.22346368715083798, "position": { "x": 8, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.24134078212290505, "position": { "x": 8, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1382, + "noteOrder": 1383, "time": 0.2547486033519553, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1406, + "noteOrder": 1407, "time": 0.25921787709497207, "position": { "x": 2, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2522, - "time": 0.4648044692737431, + "noteOrder": 2523, + "time": 0.46480446927374297, "position": { "x": 8, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2522, - "time": 0.4648044692737431, + "noteOrder": 2523, + "time": 0.46480446927374297, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.47374301675977654, "position": { "x": 8, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.4826815642458101, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2667, - "time": 0.4916201117318436, + "noteOrder": 2669, + "time": 0.49162011173184356, "position": { "x": 8, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.5005586592178771, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2766, "time": 0.5094972067039106, "position": { "x": 2, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.5184357541899441, "position": { "x": 2, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2863, "time": 0.5273743016759777, "position": { "x": 2, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3128, + "noteOrder": 3129, "time": 0.5765363128491621, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5854748603351956, + "noteOrder": 3178, + "time": 0.5854748603351955, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3226, "time": 0.5944134078212291, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3249, - "time": 0.5988826815642458, + "noteOrder": 3251, + "time": 0.5988826815642457, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3274, + "noteOrder": 3275, "time": 0.6033519553072626, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3299, "time": 0.6078212290502794, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3322, + "noteOrder": 3324, "time": 0.6122905027932961, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3346, - "time": 0.616759776536313, + "noteOrder": 3348, + "time": 0.6167597765363129, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3395, - "time": 0.6256983240223465, + "noteOrder": 3396, + "time": 0.6256983240223463, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3395, - "time": 0.6256983240223465, + "noteOrder": 3396, + "time": 0.6256983240223463, "position": { "x": 8, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3469, "time": 0.6391061452513966, "position": { "x": 8, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3492, + "noteOrder": 3493, "time": 0.6435754189944134, "position": { "x": 8, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3565, + "noteOrder": 3566, "time": 0.6569832402234638, "position": { "x": 8, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3613, - "time": 0.6659217877094973, + "noteOrder": 3615, + "time": 0.6659217877094972, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3637, - "time": 0.670391061452514, + "noteOrder": 3639, + "time": 0.6703910614525139, "position": { "x": 2, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3662, - "time": 0.6748603351955308, + "noteOrder": 3663, + "time": 0.6748603351955307, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3710, - "time": 0.6837988826815643, + "noteOrder": 3712, + "time": 0.6837988826815642, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3758, - "time": 0.6927374301675979, + "noteOrder": 3760, + "time": 0.6927374301675978, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3783, + "noteOrder": 3784, "time": 0.6972067039106146, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3855, - "time": 0.7106145251396648, + "noteOrder": 3857, + "time": 0.7106145251396647, "position": { "x": 2, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3880, + "noteOrder": 3882, "time": 0.7150837988826816, "position": { "x": 2, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3952, - "time": 0.728491620111732, + "noteOrder": 3954, + "time": 0.7284916201117319, "position": { "x": 2, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4001, - "time": 0.7374301675977655, + "noteOrder": 4003, + "time": 0.7374301675977654, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.7418994413407822, + "noteOrder": 4027, + "time": 0.741899441340782, "position": { "x": 8, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4049, - "time": 0.746368715083799, + "noteOrder": 4051, + "time": 0.7463687150837989, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.7553072625698324, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4146, - "time": 0.764245810055866, + "noteOrder": 4148, + "time": 0.7642458100558659, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4389, - "time": 0.8089385474860337, + "noteOrder": 4391, + "time": 0.8089385474860336, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4413, - "time": 0.8134078212290504, + "noteOrder": 4415, + "time": 0.8134078212290503, "position": { "x": 2, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4437, - "time": 0.8178770949720671, + "noteOrder": 4439, + "time": 0.817877094972067, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4486, - "time": 0.8268156424581006, + "noteOrder": 4488, + "time": 0.8268156424581005, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4510, + "noteOrder": 4512, "time": 0.8312849162011173, "position": { "x": 8, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4534, + "noteOrder": 4537, "time": 0.8357541899441341, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4607, - "time": 0.8491620111731845, + "noteOrder": 4609, + "time": 0.8491620111731844, "position": { "x": 8, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.858100558659218, + "noteOrder": 4658, + "time": 0.8581005586592179, "position": { "x": 8, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4704, - "time": 0.8670391061452515, + "noteOrder": 4706, + "time": 0.8670391061452514, "position": { "x": 8, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4898, - "time": 0.9027932960893855, + "noteOrder": 4900, + "time": 0.9027932960893854, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 5240, "time": 0.9653631284916202, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5262, - "time": 0.969832402234637, + "noteOrder": 5264, + "time": 0.9698324022346368, "position": { "x": 3, "y": 0 @@ -1456,7 +1456,7 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 485, "time": 0.0893854748603352, @@ -1479,10 +1479,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 533, - "time": 0.09832402234636872, + "noteOrder": 534, + "time": 0.09832402234636871, "position": { "x": 4, "y": 0 @@ -1502,10 +1502,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 582, - "time": 0.10726256983240225, + "time": 0.10726256983240223, "position": { "x": 2, "y": 0 @@ -1525,10 +1525,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 630, - "time": 0.11620111731843577, + "noteOrder": 631, + "time": 0.11620111731843574, "position": { "x": 6, "y": 0 @@ -1548,7 +1548,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 679, "time": 0.12513966480446928, @@ -1571,10 +1571,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 727, - "time": 0.13407821229050282, + "noteOrder": 728, + "time": 0.1340782122905028, "position": { "x": 4, "y": 0 @@ -1594,10 +1594,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 727, - "time": 0.13407821229050282, + "noteOrder": 728, + "time": 0.1340782122905028, "position": { "x": 2, "y": 0 @@ -1617,10 +1617,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 776, - "time": 0.14301675977653633, + "time": 0.1430167597765363, "position": { "x": 6, "y": 0 @@ -1640,7 +1640,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 873, "time": 0.16089385474860335, @@ -1662,11 +1662,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 897, - "time": 0.16536312849162013, + "noteOrder": 885, + "time": 0.16312849162011173, "position": { "x": 8, "y": 0 @@ -1680,18 +1680,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 970, - "time": 0.1787709497206704, + "noteOrder": 885, + "time": 0.16312849162011173, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -1708,13 +1708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 1018, - "time": 0.1877094972067039, + "noteOrder": 898, + "time": 0.16536312849162013, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -1726,18 +1726,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1067, - "time": 0.19664804469273744, + "noteOrder": 910, + "time": 0.16759776536312848, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1754,13 +1754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1091, - "time": 0.20111731843575423, + "noteOrder": 910, + "time": 0.16759776536312848, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1772,18 +1772,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1164, - "time": 0.2145251396648045, + "noteOrder": 970, + "time": 0.1787709497206704, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1795,18 +1795,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1212, - "time": 0.223463687150838, + "noteOrder": 1019, + "time": 0.1877094972067039, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1818,18 +1818,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1261, - "time": 0.23240223463687154, + "noteOrder": 1067, + "time": 0.19664804469273742, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -1841,18 +1841,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1285, - "time": 0.23687150837988827, + "noteOrder": 1080, + "time": 0.1988826815642458, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -1869,13 +1869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1358, - "time": 0.25027932960893856, + "noteOrder": 1080, + "time": 0.1988826815642458, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -1887,18 +1887,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1406, - "time": 0.25921787709497207, + "noteOrder": 1092, + "time": 0.2011173184357542, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -1915,11 +1915,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1455, - "time": 0.26815642458100564, + "noteOrder": 1104, + "time": 0.20335195530726258, "position": { "x": 2, "y": 0 @@ -1933,18 +1933,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1479, - "time": 0.27262569832402234, + "noteOrder": 1104, + "time": 0.20335195530726258, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -1961,13 +1961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1503, - "time": 0.27709497206703915, + "noteOrder": 1164, + "time": 0.21452513966480447, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1984,13 +1984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1540, - "time": 0.2837988826815643, + "noteOrder": 1213, + "time": 0.22346368715083798, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2007,13 +2007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1552, - "time": 0.28603351955307266, + "noteOrder": 1261, + "time": 0.23240223463687149, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2025,18 +2025,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 3, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1564, - "time": 0.28826815642458103, + "noteOrder": 1274, + "time": 0.23463687150837986, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2048,18 +2048,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 4, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1576, - "time": 0.2905027932960894, + "noteOrder": 1274, + "time": 0.23463687150837986, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2071,18 +2071,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 5, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1588, - "time": 0.2927374301675978, + "noteOrder": 1286, + "time": 0.23687150837988827, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2099,13 +2099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 6, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1600, - "time": 0.29497206703910617, + "noteOrder": 1298, + "time": 0.23910614525139665, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2122,13 +2122,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 7, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1613, - "time": 0.29720670391061454, + "noteOrder": 1298, + "time": 0.23910614525139665, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2145,13 +2145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 8, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1625, - "time": 0.2994413407821229, + "noteOrder": 1359, + "time": 0.25027932960893856, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2163,18 +2163,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 9, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1637, - "time": 0.3016759776536313, + "noteOrder": 1407, + "time": 0.25921787709497207, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2186,16 +2186,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 10, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1649, - "time": 0.3039106145251397, + "noteOrder": 1456, + "time": 0.2681564245810056, "position": { "x": 2, "y": 0 @@ -2214,11 +2214,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1746, - "time": 0.3217877094972067, + "noteOrder": 1468, + "time": 0.27039106145251396, "position": { "x": 2, "y": 0 @@ -2237,11 +2237,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1794, - "time": 0.33072625698324026, + "noteOrder": 1468, + "time": 0.27039106145251396, "position": { "x": 4, "y": 0 @@ -2260,13 +2260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1843, - "time": 0.3396648044692738, + "noteOrder": 1480, + "time": 0.27262569832402234, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2283,13 +2283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1891, - "time": 0.3486033519553073, + "noteOrder": 1492, + "time": 0.2748603351955307, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2306,13 +2306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1940, - "time": 0.3575418994413408, + "noteOrder": 1492, + "time": 0.2748603351955307, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2329,13 +2329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 1988, - "time": 0.36648044692737436, + "noteOrder": 1504, + "time": 0.2770949720670391, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2347,18 +2347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2037, - "time": 0.3754189944134078, + "noteOrder": 1540, + "time": 0.2837988826815642, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2375,13 +2375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2085, - "time": 0.3843575418994414, + "noteOrder": 1553, + "time": 0.2860335195530726, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2398,13 +2398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2134, - "time": 0.3932960893854749, + "noteOrder": 1565, + "time": 0.28826815642458103, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2421,11 +2421,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2182, - "time": 0.40223463687150846, + "noteOrder": 1577, + "time": 0.29050279329608936, "position": { "x": 4, "y": 0 @@ -2444,13 +2444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2231, - "time": 0.4111731843575419, + "noteOrder": 1589, + "time": 0.29273743016759773, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2467,13 +2467,1301 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1601, + "time": 0.29497206703910617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1613, + "time": 0.29720670391061454, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1625, + "time": 0.29944134078212287, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1638, + "time": 0.3016759776536313, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 1650, + "time": 0.3039106145251397, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1747, + "time": 0.3217877094972067, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1795, + "time": 0.33072625698324026, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1844, + "time": 0.3396648044692737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1892, + "time": 0.3486033519553073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1941, + "time": 0.3575418994413408, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1989, + "time": 0.3664804469273743, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2038, + "time": 0.3754189944134078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2086, + "time": 0.3843575418994414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2135, + "time": 0.39329608938547483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2183, + "time": 0.4022346368715084, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2232, + "time": 0.41117318435754185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2280, + "time": 0.4201117318435754, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2329, + "time": 0.42905027932960893, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2377, + "time": 0.43798882681564244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2426, + "time": 0.44692737430167595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2474, + "time": 0.4558659217877095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2547, + "time": 0.4692737430167597, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2559, + "time": 0.47150837988826816, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2559, + "time": 0.47150837988826816, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.4871508379888268, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.4893854748603352, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2656, + "time": 0.4893854748603352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.5050279329608938, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.5072625698324023, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.5072625698324023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.5229050279329609, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2850, + "time": 0.5251396648044693, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2850, + "time": 0.5251396648044693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2911, + "time": 0.5363128491620112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2923, + "time": 0.5385474860335195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2923, + "time": 0.5385474860335195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2960, + "time": 0.5452513966480447, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2972, + "time": 0.547486033519553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2972, + "time": 0.547486033519553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3008, + "time": 0.5541899441340782, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5564245810055866, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5564245810055866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3057, + "time": 0.5631284916201117, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3069, + "time": 0.5653631284916201, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3069, + "time": 0.5653631284916201, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3105, + "time": 0.5720670391061452, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3117, + "time": 0.5743016759776537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3117, + "time": 0.5743016759776537, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3154, + "time": 0.5810055865921787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3166, + "time": 0.5832402234636871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3166, + "time": 0.5832402234636871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3421, + "time": 0.630167597765363, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3433, + "time": 0.6324022346368715, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3433, + "time": 0.6324022346368715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3445, + "time": 0.6346368715083799, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3457, + "time": 0.6368715083798883, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2279, - "time": 0.4201117318435755, + "noteOrder": 3457, + "time": 0.6368715083798883, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2490,11 +3778,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2328, - "time": 0.429050279329609, + "noteOrder": 3518, + "time": 0.6480446927374302, "position": { "x": 8, "y": 0 @@ -2513,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2376, - "time": 0.43798882681564255, + "noteOrder": 3530, + "time": 0.6502793296089385, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2536,11 +3824,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2425, - "time": 0.446927374301676, + "noteOrder": 3530, + "time": 0.6502793296089385, "position": { "x": 6, "y": 0 @@ -2559,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2473, - "time": 0.4558659217877095, + "noteOrder": 3542, + "time": 0.6525139664804469, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2577,16 +3865,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, - "time": 0.4692737430167598, + "noteOrder": 3554, + "time": 0.6547486033519553, "position": { "x": 8, "y": 0 @@ -2600,16 +3888,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3554, + "time": 0.6547486033519553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.48715083798882686, + "noteOrder": 3590, + "time": 0.6614525139664805, "position": { "x": 8, "y": 0 @@ -2628,11 +3939,57 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3639, + "time": 0.6703910614525139, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3687, + "time": 0.6793296089385474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, - "time": 0.5050279329608939, + "noteOrder": 3687, + "time": 0.6793296089385474, "position": { "x": 2, "y": 0 @@ -2646,16 +4003,85 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3736, + "time": 0.6882681564245811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3736, + "time": 0.6882681564245811, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2837, - "time": 0.5229050279329609, + "noteOrder": 3784, + "time": 0.6972067039106146, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3809, + "time": 0.7016759776536312, "position": { "x": 2, "y": 0 @@ -2674,13 +4100,105 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3821, + "time": 0.7039106145251397, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3821, + "time": 0.7039106145251397, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3833, + "time": 0.706145251396648, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3845, + "time": 0.7083798882681565, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2910, - "time": 0.5363128491620113, + "noteOrder": 3845, + "time": 0.7083798882681565, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2697,13 +4215,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2958, - "time": 0.5452513966480447, + "noteOrder": 3906, + "time": 0.7195530726256983, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2720,13 +4238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3007, - "time": 0.5541899441340783, + "noteOrder": 3918, + "time": 0.7217877094972066, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2738,18 +4256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3055, - "time": 0.5631284916201118, + "noteOrder": 3918, + "time": 0.7217877094972066, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2766,13 +4284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3104, - "time": 0.5720670391061453, + "noteOrder": 3930, + "time": 0.7240223463687151, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2789,13 +4307,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3152, - "time": 0.5810055865921788, + "noteOrder": 3942, + "time": 0.7262569832402234, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2807,18 +4325,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3419, - "time": 0.6301675977653632, + "noteOrder": 3942, + "time": 0.7262569832402234, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2835,13 +4353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3443, - "time": 0.6346368715083799, + "noteOrder": 3979, + "time": 0.7329608938547486, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2858,13 +4376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3516, - "time": 0.6480446927374302, + "noteOrder": 4027, + "time": 0.741899441340782, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2876,18 +4394,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3540, - "time": 0.652513966480447, + "noteOrder": 4076, + "time": 0.7508379888268156, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2904,11 +4422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3589, - "time": 0.6614525139664805, + "noteOrder": 4076, + "time": 0.7508379888268156, "position": { "x": 8, "y": 0 @@ -2927,11 +4445,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3637, - "time": 0.670391061452514, + "noteOrder": 4124, + "time": 0.7597765363128491, "position": { "x": 4, "y": 0 @@ -2950,13 +4468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3686, - "time": 0.6793296089385475, + "noteOrder": 4124, + "time": 0.7597765363128491, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2968,18 +4486,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3686, - "time": 0.6793296089385475, + "noteOrder": 4173, + "time": 0.7687150837988828, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2996,13 +4514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3734, - "time": 0.688268156424581, + "noteOrder": 4173, + "time": 0.7687150837988828, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3014,16 +4532,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3734, - "time": 0.688268156424581, + "noteOrder": 4270, + "time": 0.7865921787709497, "position": { "x": 8, "y": 0 @@ -3042,13 +4560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 3783, - "time": 0.6972067039106146, + "noteOrder": 4367, + "time": 0.8044692737430168, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3065,13 +4583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3807, - "time": 0.7016759776536313, + "noteOrder": 4415, + "time": 0.8134078212290503, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3083,18 +4601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3831, - "time": 0.7061452513966481, + "noteOrder": 4464, + "time": 0.8223463687150837, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3111,11 +4629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3904, - "time": 0.7195530726256983, + "noteOrder": 4464, + "time": 0.8223463687150837, "position": { "x": 2, "y": 0 @@ -3134,13 +4652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3928, - "time": 0.7240223463687151, + "noteOrder": 4512, + "time": 0.8312849162011173, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3152,18 +4670,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3977, - "time": 0.7329608938547487, + "noteOrder": 4561, + "time": 0.8402234636871508, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3180,13 +4698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 4025, - "time": 0.7418994413407822, + "noteOrder": 4561, + "time": 0.8402234636871508, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3198,18 +4716,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 136, "indexInLine": 2, "isSliding": false, - "noteOrder": 4074, - "time": 0.7508379888268156, + "noteOrder": 4573, + "time": 0.8424581005586592, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3221,18 +4739,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4074, - "time": 0.7508379888268156, + "noteOrder": 4573, + "time": 0.8424581005586592, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3249,13 +4767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 4122, - "time": 0.7597765363128491, + "noteOrder": 4585, + "time": 0.8446927374301676, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3267,18 +4785,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4122, - "time": 0.7597765363128491, + "noteOrder": 4597, + "time": 0.846927374301676, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3295,11 +4813,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4171, - "time": 0.7687150837988828, + "noteOrder": 4597, + "time": 0.846927374301676, "position": { "x": 6, "y": 0 @@ -3318,11 +4836,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4171, - "time": 0.7687150837988828, + "noteOrder": 4682, + "time": 0.8625698324022346, "position": { "x": 8, "y": 0 @@ -3341,11 +4859,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4268, - "time": 0.7865921787709498, + "noteOrder": 4694, + "time": 0.864804469273743, "position": { "x": 8, "y": 0 @@ -3364,13 +4882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4365, - "time": 0.8044692737430169, + "noteOrder": 4694, + "time": 0.864804469273743, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3387,13 +4905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 4413, - "time": 0.8134078212290504, + "noteOrder": 4755, + "time": 0.8759776536312849, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3405,18 +4923,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 142, "indexInLine": 2, "isSliding": false, - "noteOrder": 4462, - "time": 0.8223463687150838, + "noteOrder": 4767, + "time": 0.8782122905027933, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3428,18 +4946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4462, - "time": 0.8223463687150838, + "noteOrder": 4767, + "time": 0.8782122905027933, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3456,13 +4974,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 4510, - "time": 0.8312849162011173, + "noteOrder": 4803, + "time": 0.8849162011173185, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3474,18 +4992,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 143, "indexInLine": 2, "isSliding": false, - "noteOrder": 4559, - "time": 0.840223463687151, + "noteOrder": 4815, + "time": 0.8871508379888268, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3497,18 +5015,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4559, - "time": 0.840223463687151, + "noteOrder": 4815, + "time": 0.8871508379888268, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3525,13 +5043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4583, - "time": 0.8446927374301677, + "noteOrder": 4852, + "time": 0.8938547486033519, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3548,13 +5066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4680, - "time": 0.8625698324022347, + "noteOrder": 4864, + "time": 0.8960893854748604, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3566,18 +5084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4753, - "time": 0.8759776536312851, + "noteOrder": 4864, + "time": 0.8960893854748604, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3594,11 +5112,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4801, - "time": 0.8849162011173185, + "noteOrder": 4876, + "time": 0.8983240223463687, "position": { "x": 7, "y": 0 @@ -3617,13 +5135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4850, - "time": 0.893854748603352, + "noteOrder": 4888, + "time": 0.9005586592178771, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3635,18 +5153,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4874, - "time": 0.8983240223463688, + "noteOrder": 4888, + "time": 0.9005586592178771, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3664,9 +5182,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4947, + "noteOrder": 4949, "time": 0.911731843575419, "position": { "x": 4, @@ -3687,10 +5205,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4995, - "time": 0.9206703910614527, + "noteOrder": 4997, + "time": 0.9206703910614525, "position": { "x": 6, "y": 0 @@ -3710,10 +5228,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5044, - "time": 0.9296089385474862, + "noteOrder": 5046, + "time": 0.9296089385474859, "position": { "x": 6, "y": 0 @@ -3733,10 +5251,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.9385474860335196, + "noteOrder": 5094, + "time": 0.9385474860335195, "position": { "x": 5, "y": 0 @@ -3756,9 +5274,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.9474860335195531, "position": { "x": 2, @@ -3779,10 +5297,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5189, - "time": 0.9564245810055867, + "noteOrder": 5192, + "time": 0.9564245810055866, "position": { "x": 4, "y": 0 diff --git a/tracks/8347/info.json b/tracks/8347/info.json index e83c07a7..afce9b52 100644 --- a/tracks/8347/info.json +++ b/tracks/8347/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "8347", - "SongLength": "114.337959", + "SongLength": "104.385306", "SongAuthorName": "Zekk", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/A Vague Idea/316_difficulty_1a.json b/tracks/A Vague Idea/316_difficulty_1a.json index a5d2a0e1..40c2b35d 100644 --- a/tracks/A Vague Idea/316_difficulty_1a.json +++ b/tracks/A Vague Idea/316_difficulty_1a.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 121, + "noteOrder": 122, "time": 0.01976528721432983, "position": { "x": 8, @@ -34,7 +34,7 @@ }, { "noteOrder": 146, - "time": 0.023718344657195797, + "time": 0.0237183446571958, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 267, - "time": 0.043483631871525624, + "time": 0.04348363187152563, "position": { "x": 2, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.0711550339715874, "position": { "x": 7, @@ -154,7 +154,7 @@ }, { "noteOrder": 462, - "time": 0.07510809141445336, + "time": 0.07510809141445335, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 535, - "time": 0.08696726374305125, + "time": 0.08696726374305126, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 607, - "time": 0.09882643607164916, + "noteOrder": 608, + "time": 0.09882643607164915, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 656, - "time": 0.1067325509573811, + "time": 0.10673255095738109, "position": { "x": 5, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 680, + "noteOrder": 681, "time": 0.11068560840024706, "position": { "x": 4, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 753, + "noteOrder": 754, "time": 0.12254478072884495, "position": { "x": 3, @@ -394,7 +394,7 @@ }, { "noteOrder": 802, - "time": 0.1304508956145769, + "time": 0.13045089561457687, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 826, + "noteOrder": 827, "time": 0.13440395305744285, "position": { "x": 7, @@ -434,7 +434,7 @@ }, { "noteOrder": 899, - "time": 0.14626312538604075, + "time": 0.14626312538604078, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 923, - "time": 0.15021618282890672, + "noteOrder": 924, + "time": 0.1502161828289067, "position": { "x": 5, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 996, + "noteOrder": 997, "time": 0.16207535515750462, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1093, - "time": 0.17788758492896847, + "noteOrder": 1094, + "time": 0.1778875849289685, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1142, - "time": 0.1857936998147004, + "noteOrder": 1143, + "time": 0.18579369981470042, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1191, - "time": 0.19369981470043238, + "time": 0.19369981470043235, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1215, - "time": 0.19765287214329832, + "time": 0.1976528721432983, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1239, - "time": 0.2016059295861643, + "noteOrder": 1240, + "time": 0.20160592958616427, "position": { "x": 7, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1336, + "noteOrder": 1337, "time": 0.21741815935762815, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1385, - "time": 0.22532427424336007, + "noteOrder": 1386, + "time": 0.2253242742433601, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1458, + "noteOrder": 1459, "time": 0.23718344657195797, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1482, + "noteOrder": 1483, "time": 0.24113650401482395, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1652, + "noteOrder": 1653, "time": 0.2688079061148857, "position": { "x": 8, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1652, + "noteOrder": 1653, "time": 0.2688079061148857, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1774, + "noteOrder": 1775, "time": 0.28857319332921555, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1798, - "time": 0.2925262507720815, + "noteOrder": 1799, + "time": 0.29252625077208155, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1822, + "noteOrder": 1823, "time": 0.2964793082149475, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1847, - "time": 0.30043236565781345, + "noteOrder": 1848, + "time": 0.3004323656578134, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1847, - "time": 0.30043236565781345, + "noteOrder": 1848, + "time": 0.3004323656578134, "position": { "x": 2, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1968, - "time": 0.32019765287214325, + "noteOrder": 1969, + "time": 0.3201976528721433, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2017, - "time": 0.3281037677578752, + "noteOrder": 2018, + "time": 0.32810376775787525, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.33205682520074115, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.33205682520074115, "position": { "x": 8, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.351822112415071, "position": { "x": 7, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.35577516985793695, + "noteOrder": 2188, + "time": 0.355775169857937, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.3597282273008029, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2406, - "time": 0.3913526868437307, + "noteOrder": 2407, + "time": 0.39135268684373065, "position": { "x": 2, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2430, - "time": 0.39530574428659665, + "noteOrder": 2431, + "time": 0.3953057442865966, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2479, - "time": 0.4032118591723286, + "noteOrder": 2480, + "time": 0.40321185917232855, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2504, "time": 0.40716491661519455, "position": { "x": 5, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2649, - "time": 0.43088326127239035, + "noteOrder": 2650, + "time": 0.4308832612723903, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.4348363187152563, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2697, + "noteOrder": 2698, "time": 0.43878937615812225, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2747, "time": 0.4466954910438542, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2770, - "time": 0.45064854848672015, + "noteOrder": 2771, + "time": 0.4506485484867202, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2794, - "time": 0.45460160592958615, + "noteOrder": 2796, + "time": 0.4546016059295861, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2867, + "noteOrder": 2869, "time": 0.46646077825818405, "position": { "x": 8, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2892, + "noteOrder": 2893, "time": 0.47041383570105, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2916, + "noteOrder": 2917, "time": 0.47436689314391595, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2940, - "time": 0.4783199505867819, + "noteOrder": 2941, + "time": 0.47831995058678195, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.4822730080296479, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.48622606547251385, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3039, "time": 0.4941321803582458, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3062, + "noteOrder": 3063, "time": 0.49808523780111175, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3086, + "noteOrder": 3087, "time": 0.5020382952439777, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3136, "time": 0.5099444101297097, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3159, - "time": 0.5138974675725756, + "noteOrder": 3160, + "time": 0.5138974675725757, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3183, + "noteOrder": 3185, "time": 0.5178505250154416, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5257566399011735, "position": { "x": 2, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3257, "time": 0.5297096973440395, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3280, + "noteOrder": 3282, "time": 0.5336627547869055, "position": { "x": 2, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3330, "time": 0.5415688696726374, "position": { "x": 8, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3353, + "noteOrder": 3355, "time": 0.5455219271155034, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3378, + "noteOrder": 3379, "time": 0.5494749845583693, "position": { "x": 8, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3548, + "noteOrder": 3549, "time": 0.5771463866584311, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3572, - "time": 0.5810994441012971, + "noteOrder": 3573, + "time": 0.581099444101297, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3621, + "noteOrder": 3622, "time": 0.589005558987029, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3646, "time": 0.592958616429895, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3669, + "noteOrder": 3671, "time": 0.5969116738727609, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3718, + "noteOrder": 3719, "time": 0.6048177887584929, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3742, + "noteOrder": 3744, "time": 0.6087708462013588, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3766, + "noteOrder": 3768, "time": 0.6127239036442248, "position": { "x": 5, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3791, + "noteOrder": 3792, "time": 0.6166769610870907, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3815, - "time": 0.6206300185299567, + "noteOrder": 3817, + "time": 0.6206300185299568, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3839, + "noteOrder": 3841, "time": 0.6245830759728227, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 3865, "time": 0.6285361334156886, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3890, "time": 0.6324891908585546, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3912, - "time": 0.6364422483014206, + "noteOrder": 3914, + "time": 0.6364422483014205, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3936, - "time": 0.6403953057442865, + "noteOrder": 3938, + "time": 0.6403953057442866, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4009, + "noteOrder": 4011, "time": 0.6522544780728844, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.6562075355157504, + "noteOrder": 4035, + "time": 0.6562075355157505, "position": { "x": 5, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4058, + "noteOrder": 4060, "time": 0.6601605929586164, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4107, + "noteOrder": 4108, "time": 0.6680667078443483, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4131, + "noteOrder": 4133, "time": 0.6720197652872143, "position": { "x": 5, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.6759728227300802, + "noteOrder": 4157, + "time": 0.6759728227300803, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4400, "time": 0.7155033971587399, "position": { "x": 8, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.7194564546016058, "position": { "x": 5, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.7234095120444718, + "noteOrder": 4449, + "time": 0.7234095120444719, "position": { "x": 8, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.7273625694873378, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7313156269302037, + "noteOrder": 4497, + "time": 0.7313156269302038, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.7352686843730697, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4544, + "noteOrder": 4546, "time": 0.7392217418159357, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4593, - "time": 0.7471278567016676, + "noteOrder": 4594, + "time": 0.7471278567016677, "position": { "x": 2, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4617, + "noteOrder": 4619, "time": 0.7510809141445336, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4641, + "noteOrder": 4643, "time": 0.7550339715873995, "position": { "x": 2, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4665, - "time": 0.7589870290302655, + "noteOrder": 4667, + "time": 0.7589870290302656, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.7629400864731316, + "noteOrder": 4692, + "time": 0.7629400864731315, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4714, - "time": 0.7668931439159974, + "noteOrder": 4716, + "time": 0.7668931439159975, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4738, - "time": 0.7708462013588635, + "noteOrder": 4740, + "time": 0.7708462013588634, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4787, - "time": 0.7787523162445953, + "noteOrder": 4789, + "time": 0.7787523162445954, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4811, - "time": 0.7827053736874614, + "noteOrder": 4813, + "time": 0.7827053736874613, "position": { "x": 8, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4836, - "time": 0.7866584311303272, + "noteOrder": 4838, + "time": 0.7866584311303273, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4860, - "time": 0.7906114885731933, + "noteOrder": 4862, + "time": 0.7906114885731932, "position": { "x": 8, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4884, + "noteOrder": 4886, "time": 0.7945645460160593, "position": { "x": 5, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4908, + "noteOrder": 4910, "time": 0.7985176034589252, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8024706609017912, "position": { "x": 3, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4981, - "time": 0.8103767757875231, + "noteOrder": 4983, + "time": 0.8103767757875232, "position": { "x": 5, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8143298332303891, "position": { "x": 2, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5030, - "time": 0.8182828906732551, + "noteOrder": 5032, + "time": 0.818282890673255, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5056, "time": 0.822235948116121, "position": { "x": 2, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5079, - "time": 0.826189005558987, + "noteOrder": 5081, + "time": 0.8261890055589869, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5105, "time": 0.830142063001853, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5127, + "noteOrder": 5129, "time": 0.8340951204447189, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5151, + "noteOrder": 5154, "time": 0.8380481778875849, "position": { "x": 8, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5151, + "noteOrder": 5154, "time": 0.8380481778875849, "position": { "x": 5, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5273, + "noteOrder": 5275, "time": 0.8578134651019147, "position": { "x": 7, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.8617665225447807, + "noteOrder": 5299, + "time": 0.8617665225447806, "position": { "x": 6, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5322, - "time": 0.8657195799876466, + "noteOrder": 5324, + "time": 0.8657195799876467, "position": { "x": 3, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5346, + "noteOrder": 5348, "time": 0.8696726374305126, "position": { "x": 2, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5346, + "noteOrder": 5348, "time": 0.8696726374305126, "position": { "x": 5, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5467, + "noteOrder": 5470, "time": 0.8894379246448424, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.8933909820877084, "position": { "x": 4, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5516, - "time": 0.8973440395305744, + "noteOrder": 5518, + "time": 0.8973440395305743, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5540, - "time": 0.9012970969734403, + "noteOrder": 5543, + "time": 0.9012970969734404, "position": { "x": 8, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5540, - "time": 0.9012970969734403, + "noteOrder": 5543, + "time": 0.9012970969734404, "position": { "x": 5, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.9210623841877702, "position": { "x": 7, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5686, + "noteOrder": 5688, "time": 0.9250154416306361, "position": { "x": 6, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5710, + "noteOrder": 5713, "time": 0.9289684990735021, "position": { "x": 3, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5832, + "noteOrder": 5834, "time": 0.9487337862878319, "position": { "x": 3, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5880, - "time": 0.9566399011735638, + "noteOrder": 5883, + "time": 0.9566399011735639, "position": { "x": 7, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5929, + "noteOrder": 5931, "time": 0.9645460160592958, "position": { "x": 3, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5929, + "noteOrder": 5931, "time": 0.9645460160592958, "position": { "x": 7, @@ -3056,7 +3056,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.015812229771463866, @@ -3079,7 +3079,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, "time": 0.027671402100061766, @@ -3102,7 +3102,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03162445954292773, @@ -3125,10 +3125,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, - "time": 0.043483631871525624, + "time": 0.04348363187152563, "position": { "x": 4, "y": 0 @@ -3148,10 +3148,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, - "time": 0.04743668931439159, + "time": 0.0474366893143916, "position": { "x": 6, "y": 0 @@ -3171,7 +3171,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 316, "time": 0.05138974675725756, @@ -3194,7 +3194,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 340, "time": 0.05534280420012353, @@ -3217,9 +3217,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 364, + "noteOrder": 365, "time": 0.05929586164298949, "position": { "x": 4, @@ -3240,7 +3240,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, "time": 0.06324891908585546, @@ -3261,9 +3261,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 401, + "time": 0.06522544780728844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 401, + "time": 0.06522544780728844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 413, "time": 0.06720197652872142, @@ -3284,9 +3330,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 425, + "time": 0.06917850525015441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 425, + "time": 0.06917850525015441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 486, "time": 0.07906114885731932, @@ -3309,7 +3401,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 559, "time": 0.09092032118591722, @@ -3332,10 +3424,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, - "time": 0.09487337862878319, + "time": 0.0948733786287832, "position": { "x": 7, "y": 0 @@ -3355,10 +3447,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 656, - "time": 0.1067325509573811, + "time": 0.10673255095738109, "position": { "x": 4, "y": 0 @@ -3378,7 +3470,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 875, "time": 0.1423100679431748, @@ -3401,10 +3493,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 923, - "time": 0.15021618282890672, + "noteOrder": 924, + "time": 0.1502161828289067, "position": { "x": 6, "y": 0 @@ -3424,7 +3516,7 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 948, "time": 0.15416924027177267, @@ -3447,7 +3539,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 972, "time": 0.15812229771463865, @@ -3470,7 +3562,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1021, "time": 0.16602841260037057, @@ -3493,7 +3585,7 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1045, "time": 0.16998147004323655, @@ -3516,10 +3608,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1069, - "time": 0.1739345274861025, + "noteOrder": 1070, + "time": 0.17393452748610252, "position": { "x": 7, "y": 0 @@ -3539,7 +3631,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1118, "time": 0.18184064237183445, @@ -3562,10 +3654,10 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1142, - "time": 0.1857936998147004, + "noteOrder": 1143, + "time": 0.18579369981470042, "position": { "x": 4, "y": 0 @@ -3585,10 +3677,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1166, - "time": 0.18974675725756637, + "noteOrder": 1167, + "time": 0.1897467572575664, "position": { "x": 3, "y": 0 @@ -3608,10 +3700,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1215, - "time": 0.19765287214329832, + "time": 0.1976528721432983, "position": { "x": 4, "y": 0 @@ -3631,10 +3723,10 @@ }, { "lineGroupId": 45, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1239, - "time": 0.2016059295861643, + "noteOrder": 1240, + "time": 0.20160592958616427, "position": { "x": 6, "y": 0 @@ -3654,7 +3746,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1264, "time": 0.20555898702903025, @@ -3677,7 +3769,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1288, "time": 0.20951204447189622, @@ -3700,10 +3792,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1312, - "time": 0.2134651019147622, + "noteOrder": 1313, + "time": 0.21346510191476217, "position": { "x": 4, "y": 0 @@ -3723,9 +3815,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1336, + "noteOrder": 1337, "time": 0.21741815935762815, "position": { "x": 4, @@ -3746,7 +3838,7 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1361, "time": 0.22137121680049412, @@ -3769,10 +3861,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1385, - "time": 0.22532427424336007, + "noteOrder": 1386, + "time": 0.2253242742433601, "position": { "x": 6, "y": 0 @@ -3792,9 +3884,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1409, + "noteOrder": 1410, "time": 0.22927733168622605, "position": { "x": 4, @@ -3815,7 +3907,7 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1434, "time": 0.23323038912909203, @@ -3838,9 +3930,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1701, + "noteOrder": 1702, "time": 0.27671402100061765, "position": { "x": 8, @@ -3860,11 +3952,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1725, - "time": 0.2806670784434836, + "noteOrder": 1714, + "time": 0.2786905497220506, "position": { "x": 8, "y": 0 @@ -3878,18 +3970,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1750, - "time": 0.2846201358863496, + "noteOrder": 1714, + "time": 0.2786905497220506, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3906,11 +3998,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1798, - "time": 0.2925262507720815, + "noteOrder": 1726, + "time": 0.2806670784434836, "position": { "x": 7, "y": 0 @@ -3929,13 +4021,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 2, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1822, - "time": 0.2964793082149475, + "noteOrder": 1726, + "time": 0.2806670784434836, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3952,13 +4044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1895, - "time": 0.30833848054354535, + "noteOrder": 1726, + "time": 0.2806670784434836, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3975,13 +4067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1920, - "time": 0.31229153798641135, + "noteOrder": 1738, + "time": 0.28264360716491654, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3993,18 +4085,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1944, - "time": 0.3162445954292773, + "noteOrder": 1738, + "time": 0.28264360716491654, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4021,13 +4113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1993, - "time": 0.32415071031500925, + "noteOrder": 1750, + "time": 0.2846201358863496, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4044,13 +4136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2017, - "time": 0.3281037677578752, + "noteOrder": 1750, + "time": 0.2846201358863496, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4067,11 +4159,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2090, - "time": 0.3399629400864731, + "noteOrder": 1750, + "time": 0.2846201358863496, "position": { "x": 8, "y": 0 @@ -4090,13 +4182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, - "time": 0.34391599752933905, + "noteOrder": 1799, + "time": 0.29252625077208155, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4108,18 +4200,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2138, - "time": 0.347869054972205, + "noteOrder": 1823, + "time": 0.2964793082149475, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4136,13 +4228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.35577516985793695, + "noteOrder": 1896, + "time": 0.30833848054354535, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4154,18 +4246,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 74, "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.3597282273008029, + "noteOrder": 1908, + "time": 0.3103150092649784, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4177,18 +4269,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2236, - "time": 0.3636812847436689, + "noteOrder": 1908, + "time": 0.3103150092649784, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4205,13 +4297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2260, - "time": 0.36763434218653485, + "noteOrder": 1920, + "time": 0.31229153798641135, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4223,18 +4315,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2284, - "time": 0.3715873996294008, + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1920, + "time": 0.31229153798641135, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4251,11 +4343,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.3755404570722668, + "noteOrder": 1920, + "time": 0.31229153798641135, "position": { "x": 2, "y": 0 @@ -4274,11 +4366,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2333, - "time": 0.37949351451513275, + "noteOrder": 1933, + "time": 0.3142680667078443, "position": { "x": 2, "y": 0 @@ -4292,18 +4384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2357, - "time": 0.3834465719579987, + "noteOrder": 1933, + "time": 0.3142680667078443, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4320,13 +4412,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2381, - "time": 0.38739962940086475, + "noteOrder": 1945, + "time": 0.3162445954292773, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4338,18 +4430,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2454, - "time": 0.3992588017294626, + "noteOrder": 1945, + "time": 0.3162445954292773, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4361,18 +4453,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 2503, - "time": 0.40716491661519455, + "noteOrder": 1945, + "time": 0.3162445954292773, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4389,13 +4481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 76, "indexInLine": 2, "isSliding": false, - "noteOrder": 2527, - "time": 0.4111179740580605, + "noteOrder": 1993, + "time": 0.32415071031500925, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4412,13 +4504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2527, - "time": 0.4111179740580605, + "noteOrder": 2018, + "time": 0.32810376775787525, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4430,18 +4522,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2551, - "time": 0.4150710315009265, + "noteOrder": 2091, + "time": 0.3399629400864731, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4453,18 +4545,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2576, - "time": 0.41902408894379245, + "noteOrder": 2103, + "time": 0.3419394688079061, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4481,11 +4573,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2600, - "time": 0.4229771463866584, + "noteOrder": 2103, + "time": 0.3419394688079061, "position": { "x": 7, "y": 0 @@ -4499,18 +4591,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2624, - "time": 0.4269302038295244, + "noteOrder": 2115, + "time": 0.34391599752933905, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4527,13 +4619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2673, - "time": 0.4348363187152563, + "noteOrder": 2115, + "time": 0.34391599752933905, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4550,13 +4642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2697, - "time": 0.43878937615812225, + "noteOrder": 2115, + "time": 0.34391599752933905, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4568,18 +4660,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2722, - "time": 0.44274243360098825, + "noteOrder": 2127, + "time": 0.34589252625077205, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4596,13 +4688,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2770, - "time": 0.45064854848672015, + "noteOrder": 2127, + "time": 0.34589252625077205, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4619,13 +4711,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2794, - "time": 0.45460160592958615, + "noteOrder": 2139, + "time": 0.34786905497220505, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4642,13 +4734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2843, - "time": 0.46250772081531805, + "noteOrder": 2139, + "time": 0.34786905497220505, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4660,18 +4752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2867, - "time": 0.46646077825818405, + "noteOrder": 2139, + "time": 0.34786905497220505, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4688,13 +4780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 84, "indexInLine": 2, "isSliding": false, - "noteOrder": 2989, - "time": 0.48622606547251385, + "noteOrder": 2188, + "time": 0.355775169857937, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4711,13 +4803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3013, - "time": 0.4901791229153798, + "noteOrder": 2212, + "time": 0.3597282273008029, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4729,18 +4821,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 3062, - "time": 0.49808523780111175, + "noteOrder": 2236, + "time": 0.3636812847436689, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4757,13 +4849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 88, "indexInLine": 2, "isSliding": false, - "noteOrder": 3086, - "time": 0.5020382952439777, + "noteOrder": 2249, + "time": 0.3656578134651019, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4780,13 +4872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3110, - "time": 0.5059913526868437, + "noteOrder": 2249, + "time": 0.3656578134651019, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4798,18 +4890,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3159, - "time": 0.5138974675725756, + "noteOrder": 2261, + "time": 0.36763434218653485, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4821,18 +4913,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 2, + "lineGroupId": 88, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3183, - "time": 0.5178505250154416, + "noteOrder": 2261, + "time": 0.36763434218653485, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4844,18 +4936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3208, - "time": 0.5218035824583076, + "noteOrder": 2261, + "time": 0.36763434218653485, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4867,18 +4959,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3280, - "time": 0.5336627547869055, + "noteOrder": 2273, + "time": 0.36961087090796785, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4890,18 +4982,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3305, - "time": 0.5376158122297714, + "noteOrder": 2273, + "time": 0.36961087090796785, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4918,13 +5010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3378, - "time": 0.5494749845583693, + "noteOrder": 2285, + "time": 0.37158739962940085, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4941,11 +5033,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3402, - "time": 0.5534280420012353, + "noteOrder": 2285, + "time": 0.37158739962940085, "position": { "x": 4, "y": 0 @@ -4959,18 +5051,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 3426, - "time": 0.5573810994441012, + "noteOrder": 2285, + "time": 0.37158739962940085, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4987,13 +5079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3451, - "time": 0.5613341568869672, + "noteOrder": 2297, + "time": 0.37356392835083385, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5005,18 +5097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3475, - "time": 0.5652872143298332, + "noteOrder": 2297, + "time": 0.37356392835083385, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5028,16 +5120,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3499, - "time": 0.5692402717726992, + "noteOrder": 2309, + "time": 0.3755404570722668, "position": { "x": 3, "y": 0 @@ -5056,13 +5148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3523, - "time": 0.5731933292155651, + "noteOrder": 2309, + "time": 0.3755404570722668, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5074,18 +5166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3596, - "time": 0.585052501544163, + "noteOrder": 2309, + "time": 0.3755404570722668, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5097,18 +5189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3669, - "time": 0.5969116738727609, + "noteOrder": 2322, + "time": 0.37751698579369974, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5120,16 +5212,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3694, - "time": 0.6008647313156269, + "noteOrder": 2322, + "time": 0.37751698579369974, "position": { "x": 3, "y": 0 @@ -5148,13 +5240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3766, - "time": 0.6127239036442248, + "noteOrder": 2334, + "time": 0.3794935145151328, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5171,13 +5263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3985, - "time": 0.6483014206300185, + "noteOrder": 2334, + "time": 0.3794935145151328, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5189,18 +5281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.6562075355157504, + "noteOrder": 2334, + "time": 0.3794935145151328, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5217,13 +5309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 92, "indexInLine": 2, "isSliding": false, - "noteOrder": 4058, - "time": 0.6601605929586164, + "noteOrder": 2346, + "time": 0.38147004323656575, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5240,13 +5332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4082, - "time": 0.6641136504014823, + "noteOrder": 2346, + "time": 0.38147004323656575, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5258,18 +5350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4131, - "time": 0.6720197652872143, + "noteOrder": 2358, + "time": 0.38344657195799875, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5281,16 +5373,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 92, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4155, - "time": 0.6759728227300802, + "noteOrder": 2358, + "time": 0.38344657195799875, "position": { "x": 4, "y": 0 @@ -5304,18 +5396,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4374, - "time": 0.7115503397158739, + "noteOrder": 2358, + "time": 0.38344657195799875, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5332,13 +5424,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4398, - "time": 0.7155033971587399, + "noteOrder": 2370, + "time": 0.3854231006794317, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5355,13 +5447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 2, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4422, - "time": 0.7194564546016058, + "noteOrder": 2370, + "time": 0.3854231006794317, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5378,13 +5470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 3, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4447, - "time": 0.7234095120444718, + "noteOrder": 2382, + "time": 0.3873996294008647, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5401,11 +5493,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 4, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4544, - "time": 0.7392217418159357, + "noteOrder": 2382, + "time": 0.3873996294008647, "position": { "x": 4, "y": 0 @@ -5424,13 +5516,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4568, - "time": 0.7431747992588016, + "noteOrder": 2382, + "time": 0.3873996294008647, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5447,13 +5539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4593, - "time": 0.7471278567016676, + "noteOrder": 2394, + "time": 0.3893761581222977, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5470,13 +5562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 2, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4617, - "time": 0.7510809141445336, + "noteOrder": 2394, + "time": 0.3893761581222977, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5493,11 +5585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 3, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4641, - "time": 0.7550339715873995, + "noteOrder": 2407, + "time": 0.39135268684373065, "position": { "x": 3, "y": 0 @@ -5516,13 +5608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 4, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4738, - "time": 0.7708462013588635, + "noteOrder": 2407, + "time": 0.39135268684373065, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5539,13 +5631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4763, - "time": 0.7747992588017295, + "noteOrder": 2455, + "time": 0.3992588017294626, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5557,18 +5649,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4787, - "time": 0.7787523162445953, + "noteOrder": 2504, + "time": 0.40716491661519455, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5580,18 +5672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 2, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4811, - "time": 0.7827053736874614, + "noteOrder": 2528, + "time": 0.4111179740580605, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5603,18 +5695,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 3, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4836, - "time": 0.7866584311303272, + "noteOrder": 2528, + "time": 0.4111179740580605, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5631,11 +5723,11 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 4, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4860, - "time": 0.7906114885731933, + "noteOrder": 2540, + "time": 0.41309450277949344, "position": { "x": 7, "y": 0 @@ -5654,13 +5746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 5, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4933, - "time": 0.8024706609017912, + "noteOrder": 2540, + "time": 0.41309450277949344, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5677,13 +5769,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4957, - "time": 0.8064237183446572, + "noteOrder": 2552, + "time": 0.4150710315009265, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5695,16 +5787,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4981, - "time": 0.8103767757875231, + "noteOrder": 2552, + "time": 0.4150710315009265, "position": { "x": 5, "y": 0 @@ -5718,18 +5810,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 2, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.8143298332303891, + "noteOrder": 2552, + "time": 0.4150710315009265, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5746,13 +5838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 3, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5030, - "time": 0.8182828906732551, + "noteOrder": 2565, + "time": 0.41704756022235945, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5769,13 +5861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 4, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5054, - "time": 0.822235948116121, + "noteOrder": 2565, + "time": 0.41704756022235945, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5792,11 +5884,11 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 5, + "lineGroupId": 101, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5127, - "time": 0.8340951204447189, + "noteOrder": 2577, + "time": 0.41902408894379245, "position": { "x": 6, "y": 0 @@ -5815,13 +5907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5200, - "time": 0.8459542927733168, + "noteOrder": 2577, + "time": 0.41902408894379245, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5833,18 +5925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5224, - "time": 0.8499073502161828, + "noteOrder": 2577, + "time": 0.41902408894379245, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5856,18 +5948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5249, - "time": 0.8538604076590488, + "noteOrder": 2589, + "time": 0.4210006176652254, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5884,13 +5976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5297, - "time": 0.8617665225447807, + "noteOrder": 2589, + "time": 0.4210006176652254, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5907,13 +5999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 2, + "lineGroupId": 102, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5322, - "time": 0.8657195799876466, + "noteOrder": 2601, + "time": 0.42297714638665834, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5930,13 +6022,2129 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5394, - "time": 0.8775787523162445, + "noteOrder": 2601, + "time": 0.42297714638665834, "position": { - "x": 2, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2601, + "time": 0.42297714638665834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2613, + "time": 0.4249536751080914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2613, + "time": 0.4249536751080914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2625, + "time": 0.42693020382952435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2625, + "time": 0.42693020382952435, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2625, + "time": 0.42693020382952435, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2674, + "time": 0.4348363187152563, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2698, + "time": 0.43878937615812225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2723, + "time": 0.44274243360098825, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2771, + "time": 0.4506485484867202, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2796, + "time": 0.4546016059295861, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2844, + "time": 0.46250772081531805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2869, + "time": 0.46646077825818405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2990, + "time": 0.48622606547251385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3014, + "time": 0.4901791229153798, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3063, + "time": 0.49808523780111175, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3087, + "time": 0.5020382952439777, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3112, + "time": 0.5059913526868437, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3160, + "time": 0.5138974675725757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3185, + "time": 0.5178505250154416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3209, + "time": 0.5218035824583075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5336627547869055, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5376158122297714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5494749845583693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3403, + "time": 0.5534280420012353, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3428, + "time": 0.5573810994441012, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3452, + "time": 0.5613341568869672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3476, + "time": 0.5652872143298331, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3501, + "time": 0.5692402717726992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3513, + "time": 0.5712168004941321, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3513, + "time": 0.5712168004941321, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3525, + "time": 0.5731933292155651, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3537, + "time": 0.5751698579369982, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3537, + "time": 0.5751698579369982, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3598, + "time": 0.5850525015441631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3671, + "time": 0.5969116738727609, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6008647313156268, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3768, + "time": 0.6127239036442248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3987, + "time": 0.6483014206300185, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4035, + "time": 0.6562075355157505, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4060, + "time": 0.6601605929586164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4084, + "time": 0.6641136504014823, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4133, + "time": 0.6720197652872143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4157, + "time": 0.6759728227300803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4376, + "time": 0.711550339715874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4400, + "time": 0.7155033971587399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4424, + "time": 0.7194564546016058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4449, + "time": 0.7234095120444719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4546, + "time": 0.7392217418159357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4570, + "time": 0.7431747992588017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4594, + "time": 0.7471278567016677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4619, + "time": 0.7510809141445336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4643, + "time": 0.7550339715873995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4740, + "time": 0.7708462013588634, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7747992588017294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4789, + "time": 0.7787523162445954, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4813, + "time": 0.7827053736874613, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4838, + "time": 0.7866584311303273, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4862, + "time": 0.7906114885731932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4935, + "time": 0.8024706609017912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4959, + "time": 0.8064237183446571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4983, + "time": 0.8103767757875232, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5008, + "time": 0.8143298332303891, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5032, + "time": 0.818282890673255, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5056, + "time": 0.822235948116121, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5129, + "time": 0.8340951204447189, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5202, + "time": 0.8459542927733167, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5214, + "time": 0.8479308214947499, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5214, + "time": 0.8479308214947499, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8499073502161828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8499073502161828, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8499073502161828, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5239, + "time": 0.8518838789376157, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5239, + "time": 0.8518838789376157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5251, + "time": 0.8538604076590487, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5251, + "time": 0.8538604076590487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5251, + "time": 0.8538604076590487, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5299, + "time": 0.8617665225447806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5324, + "time": 0.8657195799876467, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5397, + "time": 0.8775787523162445, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5409, + "time": 0.8795552810376774, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5409, + "time": 0.8795552810376774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5421, + "time": 0.8815318097591105, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5421, + "time": 0.8815318097591105, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5421, + "time": 0.8815318097591105, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5433, + "time": 0.8835083384805436, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5433, + "time": 0.8835083384805436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5445, + "time": 0.8854848672019765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5445, + "time": 0.8854848672019765, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5445, + "time": 0.8854848672019765, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5494, + "time": 0.8933909820877084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5518, + "time": 0.8973440395305743, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5953,13 +8161,82 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5591, + "time": 0.9092032118591722, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5603, + "time": 0.9111797405806052, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5603, + "time": 0.9111797405806052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5419, - "time": 0.8815318097591105, + "noteOrder": 5615, + "time": 0.9131562693020382, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5976,13 +8253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5443, - "time": 0.8854848672019765, + "noteOrder": 5615, + "time": 0.9131562693020382, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5994,18 +8271,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 5492, - "time": 0.8933909820877084, + "noteOrder": 5615, + "time": 0.9131562693020382, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6022,13 +8299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, + "lineGroupId": 224, "indexInLine": 2, "isSliding": false, - "noteOrder": 5516, - "time": 0.8973440395305744, + "noteOrder": 5628, + "time": 0.9151327980234711, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6045,13 +8322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5589, - "time": 0.9092032118591723, + "noteOrder": 5628, + "time": 0.9151327980234711, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6063,18 +8340,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5613, - "time": 0.9131562693020382, + "noteOrder": 5640, + "time": 0.9171093267449042, "position": { - "x": 8, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5640, + "time": 0.9171093267449042, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -6092,9 +8392,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5637, + "noteOrder": 5640, "time": 0.9171093267449042, "position": { "x": 8, @@ -6115,9 +8415,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5686, + "noteOrder": 5688, "time": 0.9250154416306361, "position": { "x": 7, @@ -6138,9 +8438,9 @@ }, { "lineGroupId": 225, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5710, + "noteOrder": 5713, "time": 0.9289684990735021, "position": { "x": 5, @@ -6161,9 +8461,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5737, "time": 0.9329215565163681, "position": { "x": 3, @@ -6182,12 +8482,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5749, + "time": 0.934898085237801, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5749, + "time": 0.934898085237801, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5761, + "time": 0.9368746139592341, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5759, - "time": 0.936874613959234, + "noteOrder": 5773, + "time": 0.938851142680667, "position": { "x": 7, "y": 0 @@ -6205,11 +8574,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 230, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5773, + "time": 0.938851142680667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5783, + "noteOrder": 5786, "time": 0.9408276714021, "position": { "x": 3, @@ -6228,11 +8620,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 231, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5798, + "time": 0.9428042001235329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5798, + "time": 0.9428042001235329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5808, + "noteOrder": 5810, "time": 0.9447807288449659, "position": { "x": 7, @@ -6250,6 +8688,52 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5822, + "time": 0.946757257566399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5822, + "time": 0.946757257566399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/A Vague Idea/316_difficulty_1b.json b/tracks/A Vague Idea/316_difficulty_1b.json index 6d741288..e80f4c1f 100644 --- a/tracks/A Vague Idea/316_difficulty_1b.json +++ b/tracks/A Vague Idea/316_difficulty_1b.json @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 121, + "noteOrder": 122, "time": 0.01976528721432983, "position": { "x": 6, @@ -54,7 +54,7 @@ }, { "noteOrder": 146, - "time": 0.023718344657195797, + "time": 0.0237183446571958, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 292, - "time": 0.04743668931439159, + "time": 0.0474366893143916, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.0711550339715874, "position": { "x": 4, @@ -294,7 +294,7 @@ }, { "noteOrder": 535, - "time": 0.08696726374305125, + "time": 0.08696726374305126, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 583, - "time": 0.09487337862878319, + "time": 0.0948733786287832, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 607, - "time": 0.09882643607164916, + "noteOrder": 608, + "time": 0.09882643607164915, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 680, + "noteOrder": 681, "time": 0.11068560840024706, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 753, + "noteOrder": 754, "time": 0.12254478072884495, "position": { "x": 6, @@ -474,7 +474,7 @@ }, { "noteOrder": 802, - "time": 0.1304508956145769, + "time": 0.13045089561457687, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 826, + "noteOrder": 827, "time": 0.13440395305744285, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 923, - "time": 0.15021618282890672, + "noteOrder": 924, + "time": 0.1502161828289067, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1069, - "time": 0.1739345274861025, + "noteOrder": 1070, + "time": 0.17393452748610252, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1166, - "time": 0.18974675725756637, + "noteOrder": 1167, + "time": 0.1897467572575664, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1215, - "time": 0.19765287214329832, + "time": 0.1976528721432983, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1312, - "time": 0.2134651019147622, + "noteOrder": 1313, + "time": 0.21346510191476217, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1409, + "noteOrder": 1410, "time": 0.22927733168622605, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1458, + "noteOrder": 1459, "time": 0.23718344657195797, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1482, + "noteOrder": 1483, "time": 0.24113650401482395, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1895, + "noteOrder": 1896, "time": 0.30833848054354535, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 1945, "time": 0.3162445954292773, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.3715873996294008, + "noteOrder": 2285, + "time": 0.37158739962940085, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2333, - "time": 0.37949351451513275, + "noteOrder": 2334, + "time": 0.3794935145151328, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2381, - "time": 0.38739962940086475, + "noteOrder": 2382, + "time": 0.3873996294008647, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2454, + "noteOrder": 2455, "time": 0.3992588017294626, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2479, - "time": 0.4032118591723286, + "noteOrder": 2480, + "time": 0.40321185917232855, "position": { "x": 8, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2504, "time": 0.40716491661519455, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2551, + "noteOrder": 2552, "time": 0.4150710315009265, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2577, "time": 0.41902408894379245, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2600, - "time": 0.4229771463866584, + "noteOrder": 2601, + "time": 0.42297714638665834, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.4348363187152563, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2722, + "noteOrder": 2723, "time": 0.44274243360098825, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2770, - "time": 0.45064854848672015, + "noteOrder": 2771, + "time": 0.4506485484867202, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3062, + "noteOrder": 3063, "time": 0.49808523780111175, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3110, + "noteOrder": 3112, "time": 0.5059913526868437, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3159, - "time": 0.5138974675725756, + "noteOrder": 3160, + "time": 0.5138974675725757, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3208, - "time": 0.5218035824583076, + "noteOrder": 3209, + "time": 0.5218035824583075, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5257566399011735, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3257, "time": 0.5297096973440395, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3306, "time": 0.5376158122297714, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3330, "time": 0.5415688696726374, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3353, + "noteOrder": 3355, "time": 0.5455219271155034, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3402, + "noteOrder": 3403, "time": 0.5534280420012353, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3428, "time": 0.5573810994441012, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3451, + "noteOrder": 3452, "time": 0.5613341568869672, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3499, + "noteOrder": 3501, "time": 0.5692402717726992, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3525, "time": 0.5731933292155651, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3548, + "noteOrder": 3549, "time": 0.5771463866584311, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3646, "time": 0.592958616429895, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3694, - "time": 0.6008647313156269, + "noteOrder": 3695, + "time": 0.6008647313156268, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3742, + "noteOrder": 3744, "time": 0.6087708462013588, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3839, + "noteOrder": 3841, "time": 0.6245830759728227, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3890, "time": 0.6324891908585546, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3936, - "time": 0.6403953057442865, + "noteOrder": 3938, + "time": 0.6403953057442866, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4374, - "time": 0.7115503397158739, + "noteOrder": 4376, + "time": 0.711550339715874, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4400, "time": 0.7155033971587399, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.7194564546016058, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.7273625694873378, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7313156269302037, + "noteOrder": 4497, + "time": 0.7313156269302038, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.7352686843730697, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4568, - "time": 0.7431747992588016, + "noteOrder": 4570, + "time": 0.7431747992588017, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4593, - "time": 0.7471278567016676, + "noteOrder": 4594, + "time": 0.7471278567016677, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4617, + "noteOrder": 4619, "time": 0.7510809141445336, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4665, - "time": 0.7589870290302655, + "noteOrder": 4667, + "time": 0.7589870290302656, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.7629400864731316, + "noteOrder": 4692, + "time": 0.7629400864731315, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4714, - "time": 0.7668931439159974, + "noteOrder": 4716, + "time": 0.7668931439159975, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4763, - "time": 0.7747992588017295, + "noteOrder": 4765, + "time": 0.7747992588017294, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4787, - "time": 0.7787523162445953, + "noteOrder": 4789, + "time": 0.7787523162445954, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4811, - "time": 0.7827053736874614, + "noteOrder": 4813, + "time": 0.7827053736874613, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4860, - "time": 0.7906114885731933, + "noteOrder": 4862, + "time": 0.7906114885731932, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4884, + "noteOrder": 4886, "time": 0.7945645460160593, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4908, + "noteOrder": 4910, "time": 0.7985176034589252, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4957, - "time": 0.8064237183446572, + "noteOrder": 4959, + "time": 0.8064237183446571, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4981, - "time": 0.8103767757875231, + "noteOrder": 4983, + "time": 0.8103767757875232, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8143298332303891, "position": { "x": 4, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5030, - "time": 0.8182828906732551, + "noteOrder": 5032, + "time": 0.818282890673255, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5056, "time": 0.822235948116121, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5394, + "noteOrder": 5397, "time": 0.8775787523162445, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5443, + "noteOrder": 5445, "time": 0.8854848672019765, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.8933909820877084, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5786, "time": 0.9408276714021, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5832, + "noteOrder": 5834, "time": 0.9487337862878319, "position": { "x": 4, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5880, - "time": 0.9566399011735638, + "noteOrder": 5883, + "time": 0.9566399011735639, "position": { "x": 3, "y": 0 @@ -2096,9 +2096,9 @@ "lineNodes": [ { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1652, + "noteOrder": 1653, "time": 0.2688079061148857, "position": { "x": 7, @@ -2118,11 +2118,908 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1677, + "time": 0.2727609635577517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1677, + "time": 0.2727609635577517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1702, + "time": 0.27671402100061765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1726, + "time": 0.2806670784434836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1726, + "time": 0.2806670784434836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1750, + "time": 0.2846201358863496, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1775, + "time": 0.28857319332921555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1775, + "time": 0.28857319332921555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1799, + "time": 0.29252625077208155, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1823, + "time": 0.2964793082149475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1823, + "time": 0.2964793082149475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1848, + "time": 0.3004323656578134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1993, + "time": 0.32415071031500925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2042, + "time": 0.33205682520074115, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2066, + "time": 0.33600988264360715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2066, + "time": 0.33600988264360715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3399629400864731, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2115, + "time": 0.34391599752933905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2115, + "time": 0.34391599752933905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2139, + "time": 0.34786905497220505, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2164, + "time": 0.351822112415071, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2164, + "time": 0.351822112415071, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2188, + "time": 0.355775169857937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2212, + "time": 0.3597282273008029, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2212, + "time": 0.3597282273008029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3636812847436689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2382, + "time": 0.3873996294008647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2625, + "time": 0.42693020382952435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2771, + "time": 0.4506485484867202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2820, + "time": 0.4585546633724521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2844, + "time": 0.46250772081531805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2844, + "time": 0.46250772081531805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2869, + "time": 0.46646077825818405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2893, + "time": 0.47041383570105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2893, + "time": 0.47041383570105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2917, + "time": 0.47436689314391595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2941, + "time": 0.47831995058678195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2941, + "time": 0.47831995058678195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2966, + "time": 0.4822730080296479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1701, - "time": 0.27671402100061765, + "noteOrder": 2990, + "time": 0.48622606547251385, "position": { "x": 7, "y": 0 @@ -2141,13 +3038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1750, - "time": 0.2846201358863496, + "noteOrder": 2990, + "time": 0.48622606547251385, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2159,16 +3056,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1798, - "time": 0.2925262507720815, + "noteOrder": 3014, + "time": 0.4901791229153798, "position": { "x": 7, "y": 0 @@ -2182,18 +3079,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1847, - "time": 0.30043236565781345, + "noteOrder": 3160, + "time": 0.5138974675725757, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2210,13 +3107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 1993, - "time": 0.32415071031500925, + "noteOrder": 3598, + "time": 0.5850525015441631, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2228,18 +3125,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, - "time": 0.33205682520074115, + "noteOrder": 3744, + "time": 0.6087708462013588, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2256,13 +3153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2090, - "time": 0.3399629400864731, + "noteOrder": 3792, + "time": 0.6166769610870907, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2279,13 +3176,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2138, - "time": 0.347869054972205, + "noteOrder": 3938, + "time": 0.6403953057442866, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2297,18 +3194,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.35577516985793695, + "noteOrder": 3987, + "time": 0.6483014206300185, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2320,18 +3217,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2236, - "time": 0.3636812847436689, + "noteOrder": 4035, + "time": 0.6562075355157505, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2348,11 +3245,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2381, - "time": 0.38739962940086475, + "noteOrder": 4084, + "time": 0.6641136504014823, "position": { "x": 6, "y": 0 @@ -2366,18 +3263,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2624, - "time": 0.4269302038295244, + "noteOrder": 4133, + "time": 0.6720197652872143, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2389,18 +3286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 2770, - "time": 0.45064854848672015, + "noteOrder": 4181, + "time": 0.6799258801729462, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2412,16 +3309,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2819, - "time": 0.4585546633724521, + "noteOrder": 4278, + "time": 0.6957381099444101, "position": { "x": 7, "y": 0 @@ -2440,13 +3337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2867, - "time": 0.46646077825818405, + "noteOrder": 4181, + "time": 0.6799258801729462, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2463,13 +3360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2916, - "time": 0.47436689314391595, + "noteOrder": 4278, + "time": 0.6957381099444101, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2481,18 +3378,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2965, - "time": 0.4822730080296479, + "noteOrder": 5154, + "time": 0.8380481778875849, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2509,13 +3406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3013, - "time": 0.4901791229153798, + "noteOrder": 5178, + "time": 0.8420012353304508, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2527,16 +3424,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3159, - "time": 0.5138974675725756, + "noteOrder": 5178, + "time": 0.8420012353304508, "position": { "x": 4, "y": 0 @@ -2550,16 +3447,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3596, - "time": 0.585052501544163, + "noteOrder": 5202, + "time": 0.8459542927733167, "position": { "x": 3, "y": 0 @@ -2573,18 +3470,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3742, - "time": 0.6087708462013588, + "noteOrder": 5227, + "time": 0.8499073502161828, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2596,18 +3493,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3791, - "time": 0.6166769610870907, + "noteOrder": 5227, + "time": 0.8499073502161828, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2624,13 +3521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 3936, - "time": 0.6403953057442865, + "noteOrder": 5251, + "time": 0.8538604076590487, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2642,18 +3539,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3985, - "time": 0.6483014206300185, + "noteOrder": 5275, + "time": 0.8578134651019147, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2670,11 +3567,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4034, - "time": 0.6562075355157504, + "noteOrder": 5275, + "time": 0.8578134651019147, "position": { "x": 4, "y": 0 @@ -2693,13 +3590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4082, - "time": 0.6641136504014823, + "noteOrder": 5299, + "time": 0.8617665225447806, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2716,13 +3613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.6720197652872143, + "noteOrder": 5324, + "time": 0.8657195799876467, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2739,13 +3636,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4179, - "time": 0.6799258801729462, + "noteOrder": 5324, + "time": 0.8657195799876467, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2762,13 +3659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 132, "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.69573810994441, + "noteOrder": 5348, + "time": 0.8696726374305126, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2780,18 +3677,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4179, - "time": 0.6799258801729462, + "noteOrder": 5494, + "time": 0.8933909820877084, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2808,13 +3705,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.69573810994441, + "noteOrder": 5543, + "time": 0.9012970969734404, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2826,18 +3723,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5151, - "time": 0.8380481778875849, + "noteOrder": 5567, + "time": 0.9052501544163063, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2849,18 +3746,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5200, - "time": 0.8459542927733168, + "noteOrder": 5567, + "time": 0.9052501544163063, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2877,13 +3774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5249, - "time": 0.8538604076590488, + "noteOrder": 5591, + "time": 0.9092032118591722, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2900,13 +3797,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5297, - "time": 0.8617665225447807, + "noteOrder": 5615, + "time": 0.9131562693020382, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2918,18 +3815,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5346, - "time": 0.8696726374305126, + "noteOrder": 5615, + "time": 0.9131562693020382, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2946,13 +3843,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 5492, - "time": 0.8933909820877084, + "noteOrder": 5640, + "time": 0.9171093267449042, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2964,16 +3861,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5540, - "time": 0.9012970969734403, + "noteOrder": 5664, + "time": 0.9210623841877702, "position": { "x": 7, "y": 0 @@ -2992,11 +3889,34 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5589, - "time": 0.9092032118591723, + "noteOrder": 5664, + "time": 0.9210623841877702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5688, + "time": 0.9250154416306361, "position": { "x": 7, "y": 0 @@ -3015,11 +3935,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5637, - "time": 0.9171093267449042, + "noteOrder": 5713, + "time": 0.9289684990735021, "position": { "x": 7, "y": 0 @@ -3033,18 +3953,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5686, - "time": 0.9250154416306361, + "noteOrder": 5713, + "time": 0.9289684990735021, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3062,9 +3982,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5737, "time": 0.9329215565163681, "position": { "x": 7, @@ -3085,10 +4005,10 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5880, - "time": 0.9566399011735638, + "noteOrder": 5883, + "time": 0.9566399011735639, "position": { "x": 4, "y": 0 diff --git a/tracks/A Vague Idea/info.json b/tracks/A Vague Idea/info.json index acbcf6cc..09ee10c3 100644 --- a/tracks/A Vague Idea/info.json +++ b/tracks/A Vague Idea/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "A Vague Idea", - "SongLength": "124.682449", + "SongLength": "114.729796", "SongAuthorName": "BEMANI Sound Team \"PHQUASE\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Aftermath/311_difficulty_1a.json b/tracks/Aftermath/311_difficulty_1a.json index 31ca40e6..2395c9fb 100644 --- a/tracks/Aftermath/311_difficulty_1a.json +++ b/tracks/Aftermath/311_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.009102977432201781, + "time": 0.009102977432201783, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.013654466148302673, + "time": 0.013654466148302674, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 266, - "time": 0.025033187938554902, + "time": 0.025033187938554906, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 339, - "time": 0.03186042101270624, + "time": 0.031860421012706246, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 460, - "time": 0.043239142802958465, + "time": 0.04323914280295847, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 532, - "time": 0.050066375877109805, + "time": 0.05006637587710981, "position": { "x": 7, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 580, - "time": 0.05461786459321069, + "noteOrder": 581, + "time": 0.0546178645932107, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 629, - "time": 0.059169353309311584, + "time": 0.05916935330931159, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 919, - "time": 0.08647828560591693, + "time": 0.08647828560591694, "position": { "x": 3, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1112, - "time": 0.10468424047032049, + "noteOrder": 1113, + "time": 0.1046842404703205, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1161, - "time": 0.10923572918642138, + "time": 0.1092357291864214, "position": { "x": 2, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1209, - "time": 0.11378721790252229, + "noteOrder": 1210, + "time": 0.11378721790252228, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1403, - "time": 0.13199317276692582, + "time": 0.13199317276692585, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1499, + "noteOrder": 1500, "time": 0.14109615019912763, "position": { "x": 2, @@ -394,7 +394,7 @@ }, { "noteOrder": 1548, - "time": 0.1456476389152285, + "time": 0.14564763891522853, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1597, "time": 0.15019912763132942, "position": { "x": 2, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1693, - "time": 0.15930210506353118, + "noteOrder": 1694, + "time": 0.1593021050635312, "position": { "x": 8, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1741, + "noteOrder": 1742, "time": 0.1638535937796321, "position": { "x": 3, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1838, - "time": 0.17295657121183386, + "noteOrder": 1839, + "time": 0.1729565712118339, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1886, + "noteOrder": 1887, "time": 0.17750805992793475, "position": { "x": 3, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1983, - "time": 0.18661103736013654, + "noteOrder": 1984, + "time": 0.18661103736013657, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2031, + "noteOrder": 2032, "time": 0.19116252607623743, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2080, + "noteOrder": 2081, "time": 0.19571401479233833, "position": { "x": 3, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2128, - "time": 0.20026550350843922, + "noteOrder": 2129, + "time": 0.20026550350843925, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2902, + "noteOrder": 2903, "time": 0.2730893229660535, "position": { "x": 2, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2999, + "noteOrder": 3000, "time": 0.28219230039825527, "position": { "x": 5, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3047, + "noteOrder": 3048, "time": 0.28674378911435616, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3096, - "time": 0.291295277830457, + "noteOrder": 3097, + "time": 0.29129527783045706, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.29584676654655795, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.30950123269486063, "position": { "x": 8, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3386, - "time": 0.31860421012706236, + "noteOrder": 3387, + "time": 0.3186042101270624, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.32315569884316325, + "noteOrder": 3435, + "time": 0.3231556988431633, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3484, "time": 0.3277071875592642, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3531, + "noteOrder": 3532, "time": 0.33225867627536504, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3773, + "noteOrder": 3774, "time": 0.3550161198558695, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3821, + "noteOrder": 3822, "time": 0.3595676085719704, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3871, "time": 0.3641190972880713, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.3686705860041722, + "noteOrder": 3919, + "time": 0.36867058600417224, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.37777356343637397, + "noteOrder": 4016, + "time": 0.377773563436374, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.38687654086857576, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4305, + "noteOrder": 4306, "time": 0.40508249573297933, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4331, "time": 0.4073582400910298, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.41873696188128195, + "noteOrder": 4452, + "time": 0.418736961881282, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4476, "time": 0.42101270623933246, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4498, - "time": 0.42328845059738285, + "noteOrder": 4500, + "time": 0.4232884505973829, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4522, - "time": 0.4255641949554333, + "noteOrder": 4524, + "time": 0.42556419495543335, "position": { "x": 2, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4693, "time": 0.4414944054617865, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4716, - "time": 0.44377014981983687, + "noteOrder": 4718, + "time": 0.4437701498198369, "position": { "x": 3, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.45970036032619, + "noteOrder": 4887, + "time": 0.45970036032619005, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.4619761046842405, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4984, "time": 0.46880333775839184, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5006, - "time": 0.4710790821164422, + "noteOrder": 5008, + "time": 0.4710790821164423, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5081, "time": 0.47790631519059357, "position": { "x": 2, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5105, "time": 0.480182059548644, "position": { "x": 8, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5175, - "time": 0.4870092926227953, + "noteOrder": 5177, + "time": 0.48700929262279535, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5200, - "time": 0.4892850369808458, + "noteOrder": 5201, + "time": 0.48928503698084586, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5272, + "noteOrder": 5274, "time": 0.49611227005499714, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5296, - "time": 0.4983880144130476, + "noteOrder": 5298, + "time": 0.49838801441304764, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5369, - "time": 0.5052152474871989, + "noteOrder": 5371, + "time": 0.505215247487199, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5466, + "noteOrder": 5468, "time": 0.5143182249194007, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5562, + "noteOrder": 5564, "time": 0.5234212023516025, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5611, - "time": 0.5279726910677033, + "noteOrder": 5613, + "time": 0.5279726910677034, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5635, - "time": 0.5302484354257538, + "noteOrder": 5637, + "time": 0.530248435425754, "position": { "x": 5, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5659, + "noteOrder": 5661, "time": 0.5325241797838043, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5683, - "time": 0.5347999241418546, + "noteOrder": 5685, + "time": 0.5347999241418548, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5901, - "time": 0.5552816233643086, + "noteOrder": 5903, + "time": 0.5552816233643088, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 6290, "time": 0.5916935330931159, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6385, + "noteOrder": 6387, "time": 0.6007965105253177, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6433, + "noteOrder": 6435, "time": 0.6053479992414186, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6481, - "time": 0.6098994879575194, + "noteOrder": 6484, + "time": 0.6098994879575195, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6578, + "noteOrder": 6580, "time": 0.6190024653897213, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6675, + "noteOrder": 6677, "time": 0.628105442821923, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6723, + "noteOrder": 6726, "time": 0.6326569315380239, "position": { "x": 2, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6772, - "time": 0.6372084202541247, + "noteOrder": 6774, + "time": 0.6372084202541248, "position": { "x": 8, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6868, - "time": 0.6463113976863265, + "noteOrder": 6871, + "time": 0.6463113976863266, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6917, - "time": 0.6508628864024274, + "noteOrder": 6919, + "time": 0.6508628864024275, "position": { "x": 8, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6965, + "noteOrder": 6968, "time": 0.6554143751185284, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 7013, + "noteOrder": 7016, "time": 0.6599658638346292, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 7062, + "noteOrder": 7064, "time": 0.6645173525507301, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 7110, + "noteOrder": 7113, "time": 0.669068841266831, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 7207, - "time": 0.6781718186990328, + "noteOrder": 7210, + "time": 0.6781718186990329, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 7231, - "time": 0.6804475630570832, + "noteOrder": 7234, + "time": 0.6804475630570833, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 7255, - "time": 0.6827233074151337, + "noteOrder": 7258, + "time": 0.6827233074151338, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7304, - "time": 0.6872747961312345, + "noteOrder": 7306, + "time": 0.6872747961312347, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 7328, + "noteOrder": 7330, "time": 0.689550540489285, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 7352, - "time": 0.6918262848473354, + "noteOrder": 7355, + "time": 0.6918262848473355, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7400, - "time": 0.6963777735634363, + "noteOrder": 7403, + "time": 0.6963777735634364, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7425, + "noteOrder": 7427, "time": 0.6986535179214868, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7449, - "time": 0.7009292622795372, + "noteOrder": 7451, + "time": 0.7009292622795373, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 7691, + "noteOrder": 7693, "time": 0.7236867058600417, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 7739, + "noteOrder": 7742, "time": 0.7282381945761426, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7787, + "noteOrder": 7790, "time": 0.7327896832922435, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 7836, - "time": 0.7373411720083444, + "noteOrder": 7839, + "time": 0.7373411720083445, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 7884, - "time": 0.7418926607244453, + "noteOrder": 7887, + "time": 0.7418926607244454, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 7932, - "time": 0.7464441494405462, + "noteOrder": 7935, + "time": 0.7464441494405463, "position": { "x": 8, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 8029, - "time": 0.7555471268727479, + "noteOrder": 8032, + "time": 0.755547126872748, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 8078, + "noteOrder": 8080, "time": 0.7600986155888488, "position": { "x": 8, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 8126, + "noteOrder": 8129, "time": 0.7646501043049497, "position": { "x": 2, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 8174, + "noteOrder": 8177, "time": 0.7692015930210506, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 8223, + "noteOrder": 8226, "time": 0.7737530817371515, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 8271, + "noteOrder": 8274, "time": 0.7783045704532524, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 8319, + "noteOrder": 8322, "time": 0.7828560591693533, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 8368, + "noteOrder": 8371, "time": 0.7874075478854542, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 8392, + "noteOrder": 8395, "time": 0.7896832922435046, "position": { "x": 5, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 8416, + "noteOrder": 8419, "time": 0.7919590366015551, "position": { "x": 3, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 8465, - "time": 0.796510525317656, + "noteOrder": 8468, + "time": 0.7965105253176561, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 8489, + "noteOrder": 8492, "time": 0.7987862696757064, "position": { "x": 5, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 8513, - "time": 0.8010620140337569, + "noteOrder": 8516, + "time": 0.801062014033757, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 8561, + "noteOrder": 8564, "time": 0.8056135027498578, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 8585, + "noteOrder": 8589, "time": 0.8078892471079082, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 8610, + "noteOrder": 8613, "time": 0.8101649914659587, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 8948, + "noteOrder": 8951, "time": 0.8420254124786649, "position": { "x": 7, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 8972, - "time": 0.8443011568367152, + "noteOrder": 8976, + "time": 0.8443011568367154, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 9142, - "time": 0.8602313673430684, + "noteOrder": 9145, + "time": 0.8602313673430685, "position": { "x": 3, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 9166, + "noteOrder": 9169, "time": 0.8625071117011189, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 9335, - "time": 0.878437322207472, + "noteOrder": 9338, + "time": 0.8784373222074721, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 9359, + "noteOrder": 9363, "time": 0.8807130665655224, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 9529, + "noteOrder": 9532, "time": 0.8966432770718756, "position": { "x": 4, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 9553, - "time": 0.898919021429926, + "noteOrder": 9556, + "time": 0.8989190214299261, "position": { "x": 7, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 9625, + "noteOrder": 9629, "time": 0.9057462545040773, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 9650, - "time": 0.9080219988621278, + "noteOrder": 9653, + "time": 0.9080219988621279, "position": { "x": 4, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 9722, - "time": 0.9148492319362791, + "noteOrder": 9726, + "time": 0.9148492319362792, "position": { "x": 2, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 9746, + "noteOrder": 9750, "time": 0.9171249762943297, "position": { "x": 8, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 9819, + "noteOrder": 9822, "time": 0.923952209368481, "position": { "x": 4, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 9843, - "time": 0.9262279537265313, + "noteOrder": 9847, + "time": 0.9262279537265314, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 9916, - "time": 0.9330551868006827, + "noteOrder": 9919, + "time": 0.9330551868006828, "position": { "x": 3, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 9940, + "noteOrder": 9943, "time": 0.9353309311587331, "position": { "x": 7, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 10061, - "time": 0.9467096529489853, + "noteOrder": 10064, + "time": 0.9467096529489855, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 10085, - "time": 0.9489853973070358, + "noteOrder": 10088, + "time": 0.9489853973070359, "position": { "x": 7, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 10157, + "noteOrder": 10161, "time": 0.9558126303811871, "position": { "x": 7, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 10182, - "time": 0.9580883747392376, + "noteOrder": 10185, + "time": 0.9580883747392377, "position": { "x": 3, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 10206, + "noteOrder": 10209, "time": 0.960364119097288, "position": { "x": 8, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 10230, - "time": 0.9626398634553385, + "noteOrder": 10234, + "time": 0.9626398634553386, "position": { "x": 5, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 10254, + "noteOrder": 10258, "time": 0.9649156078133889, "position": { "x": 2, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 10278, - "time": 0.9671913521714394, + "noteOrder": 10282, + "time": 0.9671913521714395, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 10278, - "time": 0.9671913521714394, + "noteOrder": 10282, + "time": 0.9671913521714395, "position": { "x": 6, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 10303, - "time": 0.9694670965294898, + "noteOrder": 10306, + "time": 0.9694670965294899, "position": { "x": 5, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 10327, - "time": 0.9717428408875401, + "noteOrder": 10330, + "time": 0.9717428408875405, "position": { "x": 5, "y": 0 @@ -2936,10 +2936,10 @@ "lineNodes": [ { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 677, - "time": 0.06372084202541248, + "time": 0.06372084202541249, "position": { "x": 7, "y": 0 @@ -2959,10 +2959,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 774, - "time": 0.07282381945761425, + "time": 0.07282381945761426, "position": { "x": 7, "y": 0 @@ -2982,9 +2982,9 @@ }, { "lineGroupId": 16, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.07737530817371516, "position": { "x": 4, @@ -3005,7 +3005,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 726, "time": 0.06827233074151337, @@ -3028,10 +3028,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 774, - "time": 0.07282381945761425, + "time": 0.07282381945761426, "position": { "x": 3, "y": 0 @@ -3051,9 +3051,9 @@ }, { "lineGroupId": 17, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.07737530817371516, "position": { "x": 6, @@ -3074,7 +3074,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 871, "time": 0.08192679688981605, @@ -3096,11 +3096,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 967, - "time": 0.09102977432201782, + "noteOrder": 895, + "time": 0.08420254124786648, "position": { "x": 3, "y": 0 @@ -3119,13 +3119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1064, - "time": 0.10013275175421961, + "noteOrder": 895, + "time": 0.08420254124786648, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3142,13 +3142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 1161, - "time": 0.10923572918642138, + "noteOrder": 968, + "time": 0.09102977432201782, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3165,11 +3165,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, + "lineGroupId": 20, "indexInLine": 2, "isSliding": false, - "noteOrder": 1258, - "time": 0.11833870661862317, + "noteOrder": 992, + "time": 0.09330551868006828, "position": { "x": 3, "y": 0 @@ -3188,13 +3188,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1258, - "time": 0.11833870661862317, + "noteOrder": 992, + "time": 0.09330551868006828, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3206,18 +3206,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, - "time": 0.12744168405082495, + "noteOrder": 1064, + "time": 0.10013275175421962, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3229,18 +3229,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1451, - "time": 0.13654466148302674, + "noteOrder": 1161, + "time": 0.1092357291864214, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3252,18 +3252,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1548, - "time": 0.1456476389152285, + "noteOrder": 1258, + "time": 0.11833870661862318, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3275,18 +3275,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 2, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1645, - "time": 0.15475061634743031, + "noteOrder": 1258, + "time": 0.11833870661862318, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3303,13 +3303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1645, - "time": 0.15475061634743031, + "noteOrder": 1282, + "time": 0.12061445097667362, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3321,18 +3321,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1741, - "time": 0.1638535937796321, + "noteOrder": 1282, + "time": 0.12061445097667362, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3344,18 +3344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 2, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1838, - "time": 0.17295657121183386, + "noteOrder": 1355, + "time": 0.12744168405082498, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3367,18 +3367,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 3, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1886, - "time": 0.17750805992793475, + "noteOrder": 1379, + "time": 0.1297174284088754, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3390,18 +3390,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 4, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1935, - "time": 0.18205954864403565, + "noteOrder": 1379, + "time": 0.1297174284088754, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3413,18 +3413,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 5, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1983, - "time": 0.18661103736013654, + "noteOrder": 1452, + "time": 0.13654466148302674, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3436,16 +3436,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 6, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2031, - "time": 0.19116252607623743, + "noteOrder": 1548, + "time": 0.14564763891522853, "position": { "x": 4, "y": 0 @@ -3459,18 +3459,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2225, - "time": 0.20936848094064098, + "noteOrder": 1645, + "time": 0.15475061634743031, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3487,13 +3487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2273, - "time": 0.2139199696567419, + "noteOrder": 1645, + "time": 0.15475061634743031, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3510,11 +3510,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2322, - "time": 0.21847145837284276, + "noteOrder": 1742, + "time": 0.1638535937796321, "position": { "x": 6, "y": 0 @@ -3528,16 +3528,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2370, - "time": 0.22302294708894366, + "noteOrder": 1839, + "time": 0.1729565712118339, "position": { "x": 4, "y": 0 @@ -3556,13 +3556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2515, - "time": 0.23667741323724634, + "noteOrder": 1887, + "time": 0.17750805992793475, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3574,18 +3574,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2612, - "time": 0.24578039066944812, + "noteOrder": 1935, + "time": 0.18205954864403565, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3597,18 +3597,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2612, - "time": 0.24578039066944812, + "noteOrder": 1984, + "time": 0.18661103736013657, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3625,13 +3625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2709, - "time": 0.2548833681016499, + "noteOrder": 2032, + "time": 0.19116252607623743, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3648,13 +3648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2805, - "time": 0.26398634553385164, + "noteOrder": 2226, + "time": 0.209368480940641, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3671,13 +3671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2902, - "time": 0.2730893229660535, + "noteOrder": 2250, + "time": 0.21164422529869145, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3694,13 +3694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3192, - "time": 0.30039825526265884, + "noteOrder": 2250, + "time": 0.21164422529869145, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3712,18 +3712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3289, - "time": 0.30950123269486063, + "noteOrder": 2274, + "time": 0.2139199696567419, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3740,13 +3740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.3413616537075668, + "noteOrder": 2298, + "time": 0.21619571401479235, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3763,13 +3763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3676, - "time": 0.3459131424236677, + "noteOrder": 2298, + "time": 0.21619571401479235, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3781,18 +3781,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3966, - "time": 0.3732220747202731, + "noteOrder": 2323, + "time": 0.2184714583728428, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3804,18 +3804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4015, - "time": 0.37777356343637397, + "noteOrder": 2347, + "time": 0.22074720273089324, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3827,18 +3827,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4063, - "time": 0.38232505215247486, + "noteOrder": 2347, + "time": 0.22074720273089324, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3855,13 +3855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 4111, - "time": 0.38687654086857576, + "noteOrder": 2371, + "time": 0.22302294708894368, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3873,16 +3873,62 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4160, - "time": 0.39142802958467665, + "noteOrder": 2395, + "time": 0.22529869144699413, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2395, + "time": 0.22529869144699413, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2516, + "time": 0.23667741323724636, "position": { "x": 7, "y": 0 @@ -3901,11 +3947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4208, - "time": 0.39597951830077754, + "noteOrder": 2613, + "time": 0.24578039066944812, "position": { "x": 7, "y": 0 @@ -3919,16 +3965,62 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2613, + "time": 0.24578039066944812, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2710, + "time": 0.25488336810164997, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4256, - "time": 0.40053100701687844, + "noteOrder": 2806, + "time": 0.2639863455338517, "position": { "x": 7, "y": 0 @@ -3947,11 +4039,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4353, - "time": 0.4096339844490802, + "noteOrder": 2903, + "time": 0.2730893229660535, "position": { "x": 5, "y": 0 @@ -3965,16 +4057,39 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3193, + "time": 0.30039825526265884, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4402, - "time": 0.4141854731651811, + "noteOrder": 3290, + "time": 0.30950123269486063, "position": { "x": 5, "y": 0 @@ -3988,18 +4103,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4547, - "time": 0.4278399393134838, + "noteOrder": 3629, + "time": 0.3413616537075669, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4016,11 +4131,34 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3653, + "time": 0.3436373980656173, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4643, - "time": 0.43694291674568553, + "noteOrder": 3653, + "time": 0.3436373980656173, "position": { "x": 5, "y": 0 @@ -4039,11 +4177,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4740, - "time": 0.4460458941778873, + "noteOrder": 3677, + "time": 0.3459131424236678, "position": { "x": 6, "y": 0 @@ -4062,11 +4200,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4789, - "time": 0.4505973828939882, + "noteOrder": 3702, + "time": 0.3481888867817182, "position": { "x": 6, "y": 0 @@ -4080,18 +4218,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4837, - "time": 0.45514887161008916, + "noteOrder": 3702, + "time": 0.3481888867817182, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4108,11 +4246,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4934, - "time": 0.4642518490422909, + "noteOrder": 3968, + "time": 0.37322207472027313, "position": { "x": 4, "y": 0 @@ -4131,11 +4269,80 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4016, + "time": 0.377773563436374, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4064, + "time": 0.38232505215247486, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4113, + "time": 0.38687654086857576, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5030, - "time": 0.4733548264744927, + "noteOrder": 4161, + "time": 0.39142802958467665, "position": { "x": 7, "y": 0 @@ -4149,16 +4356,2500 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4185, + "time": 0.3937037739427271, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4185, + "time": 0.3937037739427271, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4210, + "time": 0.39597951830077754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4210, + "time": 0.39597951830077754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4210, + "time": 0.39597951830077754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4234, + "time": 0.39825526265882805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4234, + "time": 0.39825526265882805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4258, + "time": 0.4005310070168785, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4258, + "time": 0.4005310070168785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4258, + "time": 0.4005310070168785, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4282, + "time": 0.4028067513749289, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4282, + "time": 0.4028067513749289, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4355, + "time": 0.4096339844490802, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4379, + "time": 0.41190972880713067, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4379, + "time": 0.41190972880713067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4403, + "time": 0.4141854731651811, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4427, + "time": 0.41646121752323156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4427, + "time": 0.41646121752323156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4548, + "time": 0.4278399393134838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4645, + "time": 0.4369429167456856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4742, + "time": 0.44604589417788737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4766, + "time": 0.4483216385359378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4766, + "time": 0.4483216385359378, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4790, + "time": 0.45059738289398826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4790, + "time": 0.45059738289398826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4790, + "time": 0.45059738289398826, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4814, + "time": 0.45287312725203865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4814, + "time": 0.45287312725203865, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4839, + "time": 0.4551488716100891, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4839, + "time": 0.4551488716100891, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4839, + "time": 0.4551488716100891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4863, + "time": 0.4574246159681396, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4863, + "time": 0.4574246159681396, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4935, + "time": 0.46425184904229094, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4960, + "time": 0.4665275934003414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4960, + "time": 0.4665275934003414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5032, + "time": 0.47335482647449273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5056, + "time": 0.4756305708325432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5056, + "time": 0.4756305708325432, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5129, + "time": 0.48245780390669446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5153, + "time": 0.48473354826474496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5153, + "time": 0.48473354826474496, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5226, + "time": 0.49156078133889625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5250, + "time": 0.49383652569694675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5250, + "time": 0.49383652569694675, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5322, + "time": 0.5006637587710981, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5419, + "time": 0.5097667362032999, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5419, + "time": 0.5097667362032999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5516, + "time": 0.5188697136355016, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5516, + "time": 0.5188697136355016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5613, + "time": 0.5279726910677034, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5710, + "time": 0.5370756684999052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5903, + "time": 0.5552816233643088, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6097, + "time": 0.5734875782287123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6097, + "time": 0.5734875782287123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6290, + "time": 0.5916935330931159, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6484, + "time": 0.6098994879575195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7500, + "time": 0.7054807509956382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7524, + "time": 0.7077564953536887, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7524, + "time": 0.7077564953536887, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7548, + "time": 0.710032239711739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7572, + "time": 0.7123079840697896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7572, + "time": 0.7123079840697896, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7597, + "time": 0.7145837284278399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7621, + "time": 0.7168594727858905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7621, + "time": 0.7168594727858905, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7645, + "time": 0.7191352171439408, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7742, + "time": 0.7282381945761426, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8661, + "time": 0.8147164801820596, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8685, + "time": 0.81699222454011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8685, + "time": 0.81699222454011, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8709, + "time": 0.8192679688981604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8734, + "time": 0.8215437132562109, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8734, + "time": 0.8215437132562109, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8758, + "time": 0.8238194576142613, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8782, + "time": 0.8260952019723119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8782, + "time": 0.8260952019723119, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8806, + "time": 0.8283709463303622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8830, + "time": 0.8306466906884127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8830, + "time": 0.8306466906884127, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 8855, + "time": 0.8329224350464631, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 8855, + "time": 0.8329224350464631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8855, + "time": 0.8329224350464631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8879, + "time": 0.8351981794045136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8879, + "time": 0.8351981794045136, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 8903, + "time": 0.837473923762564, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 8903, + "time": 0.837473923762564, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8903, + "time": 0.837473923762564, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8927, + "time": 0.8397496681206145, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8927, + "time": 0.8397496681206145, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9000, + "time": 0.8465769011947658, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9024, + "time": 0.8488526455528163, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9024, + "time": 0.8488526455528163, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 9048, + "time": 0.8511283899108667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 9048, + "time": 0.8511283899108667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9048, + "time": 0.8511283899108667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9072, + "time": 0.8534041342689171, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9072, + "time": 0.8534041342689171, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 9097, + "time": 0.8556798786269676, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 9097, + "time": 0.8556798786269676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9097, + "time": 0.8556798786269676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9121, + "time": 0.857955622985018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9121, + "time": 0.857955622985018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9193, + "time": 0.8647828560591694, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9218, + "time": 0.8670586004172198, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9218, + "time": 0.8670586004172198, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 9242, + "time": 0.8693343447752703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 9242, + "time": 0.8693343447752703, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5127, - "time": 0.48245780390669446, + "noteOrder": 9242, + "time": 0.8693343447752703, "position": { "x": 4, "y": 0 @@ -4172,18 +6863,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5224, - "time": 0.49156078133889625, + "noteOrder": 9266, + "time": 0.8716100891333207, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4200,13 +6891,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5321, - "time": 0.500663758771098, + "noteOrder": 9266, + "time": 0.8716100891333207, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4218,18 +6909,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5417, - "time": 0.5097667362032998, + "noteOrder": 9290, + "time": 0.8738858334913712, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4241,18 +6932,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5417, - "time": 0.5097667362032998, + "noteOrder": 9290, + "time": 0.8738858334913712, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4269,13 +6960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 5514, - "time": 0.5188697136355016, + "noteOrder": 9290, + "time": 0.8738858334913712, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4287,18 +6978,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5514, - "time": 0.5188697136355016, + "noteOrder": 9314, + "time": 0.8761615778494216, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4315,11 +7006,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5611, - "time": 0.5279726910677033, + "noteOrder": 9314, + "time": 0.8761615778494216, "position": { "x": 5, "y": 0 @@ -4338,13 +7029,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5708, - "time": 0.5370756684999052, + "noteOrder": 9387, + "time": 0.882988810923573, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4361,13 +7052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5901, - "time": 0.5552816233643086, + "noteOrder": 9411, + "time": 0.8852645552816234, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4384,13 +7075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 2, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6094, - "time": 0.5734875782287123, + "noteOrder": 9411, + "time": 0.8852645552816234, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4407,13 +7098,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6094, - "time": 0.5734875782287123, + "noteOrder": 9435, + "time": 0.8875402996396738, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4425,18 +7116,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 6288, - "time": 0.5916935330931159, + "noteOrder": 9435, + "time": 0.8875402996396738, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4453,13 +7144,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 208, "indexInLine": 2, "isSliding": false, - "noteOrder": 6481, - "time": 0.6098994879575194, + "noteOrder": 9459, + "time": 0.8898160439977243, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4476,13 +7167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7497, - "time": 0.7054807509956381, + "noteOrder": 9459, + "time": 0.8898160439977243, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4494,18 +7185,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7546, - "time": 0.710032239711739, + "noteOrder": 9484, + "time": 0.8920917883557747, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4522,13 +7213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7594, - "time": 0.7145837284278399, + "noteOrder": 9484, + "time": 0.8920917883557747, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4540,18 +7231,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7642, - "time": 0.7191352171439408, + "noteOrder": 9484, + "time": 0.8920917883557747, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4563,18 +7254,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7739, - "time": 0.7282381945761426, + "noteOrder": 9508, + "time": 0.8943675327138252, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4586,18 +7277,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8658, - "time": 0.8147164801820596, + "noteOrder": 9508, + "time": 0.8943675327138252, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4614,13 +7305,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8706, - "time": 0.8192679688981604, + "noteOrder": 9580, + "time": 0.9011947657879765, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4637,13 +7328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8755, - "time": 0.8238194576142612, + "noteOrder": 9605, + "time": 0.903470510146027, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4655,18 +7346,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8803, - "time": 0.8283709463303622, + "noteOrder": 9605, + "time": 0.903470510146027, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4683,13 +7374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8851, - "time": 0.832922435046463, + "noteOrder": 9677, + "time": 0.9102977432201782, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4706,13 +7397,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8900, - "time": 0.8374739237625639, + "noteOrder": 9701, + "time": 0.9125734875782288, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4724,18 +7415,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8997, - "time": 0.8465769011947657, + "noteOrder": 9701, + "time": 0.9125734875782288, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4752,13 +7443,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9045, - "time": 0.8511283899108666, + "noteOrder": 9774, + "time": 0.9194007206523801, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4775,13 +7466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9093, - "time": 0.8556798786269676, + "noteOrder": 9798, + "time": 0.9216764650104305, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4793,16 +7484,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9190, - "time": 0.8647828560591693, + "noteOrder": 9798, + "time": 0.9216764650104305, "position": { "x": 5, "y": 0 @@ -4821,13 +7512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9238, - "time": 0.8693343447752703, + "noteOrder": 9871, + "time": 0.9285036980845819, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4844,13 +7535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9287, - "time": 0.8738858334913711, + "noteOrder": 9895, + "time": 0.9307794424426322, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4862,18 +7553,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9384, - "time": 0.882988810923573, + "noteOrder": 9895, + "time": 0.9307794424426322, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4890,13 +7581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9432, - "time": 0.8875402996396737, + "noteOrder": 9968, + "time": 0.9376066755167837, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4913,13 +7604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9480, - "time": 0.8920917883557746, + "noteOrder": 9992, + "time": 0.939882419874834, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4931,18 +7622,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9577, - "time": 0.9011947657879764, + "noteOrder": 9992, + "time": 0.939882419874834, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4959,13 +7650,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9674, - "time": 0.9102977432201783, + "noteOrder": 10016, + "time": 0.9421581642328846, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4982,13 +7673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9770, - "time": 0.91940072065238, + "noteOrder": 10040, + "time": 0.944433908590935, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5000,18 +7691,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9867, - "time": 0.9285036980845818, + "noteOrder": 10040, + "time": 0.944433908590935, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5028,13 +7719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9964, - "time": 0.9376066755167837, + "noteOrder": 10113, + "time": 0.9512611416650864, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5051,13 +7742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 10012, - "time": 0.9421581642328845, + "noteOrder": 10137, + "time": 0.9535368860231368, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5069,18 +7760,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 10109, - "time": 0.9512611416650862, + "noteOrder": 10137, + "time": 0.9535368860231368, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { diff --git a/tracks/Aftermath/311_difficulty_1b.json b/tracks/Aftermath/311_difficulty_1b.json index 7183e295..3e813e9b 100644 --- a/tracks/Aftermath/311_difficulty_1b.json +++ b/tracks/Aftermath/311_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.009102977432201781, + "time": 0.009102977432201783, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.013654466148302673, + "time": 0.013654466148302674, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 290, - "time": 0.027308932296605345, + "time": 0.02730893229660535, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 339, - "time": 0.03186042101270624, + "time": 0.031860421012706246, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 532, - "time": 0.050066375877109805, + "time": 0.05006637587710981, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 629, - "time": 0.059169353309311584, + "time": 0.05916935330931159, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 919, - "time": 0.08647828560591693, + "time": 0.08647828560591694, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 967, + "noteOrder": 968, "time": 0.09102977432201782, "position": { "x": 4, @@ -274,7 +274,7 @@ }, { "noteOrder": 1064, - "time": 0.10013275175421961, + "time": 0.10013275175421962, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1112, - "time": 0.10468424047032049, + "noteOrder": 1113, + "time": 0.1046842404703205, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1161, - "time": 0.10923572918642138, + "time": 0.1092357291864214, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1209, - "time": 0.11378721790252229, + "noteOrder": 1210, + "time": 0.11378721790252228, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1258, - "time": 0.11833870661862317, + "time": 0.11833870661862318, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1354, - "time": 0.12744168405082495, + "noteOrder": 1355, + "time": 0.12744168405082498, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1403, - "time": 0.13199317276692582, + "time": 0.13199317276692585, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1451, + "noteOrder": 1452, "time": 0.13654466148302674, "position": { "x": 3, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1499, + "noteOrder": 1500, "time": 0.14109615019912763, "position": { "x": 4, @@ -474,7 +474,7 @@ }, { "noteOrder": 1548, - "time": 0.1456476389152285, + "time": 0.14564763891522853, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1597, "time": 0.15019912763132942, "position": { "x": 8, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1838, - "time": 0.17295657121183386, + "noteOrder": 1839, + "time": 0.1729565712118339, "position": { "x": 8, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1886, + "noteOrder": 1887, "time": 0.17750805992793475, "position": { "x": 2, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1983, - "time": 0.18661103736013654, + "noteOrder": 1984, + "time": 0.18661103736013657, "position": { "x": 2, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2031, + "noteOrder": 2032, "time": 0.19116252607623743, "position": { "x": 8, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2080, + "noteOrder": 2081, "time": 0.19571401479233833, "position": { "x": 2, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2128, - "time": 0.20026550350843922, + "noteOrder": 2129, + "time": 0.20026550350843925, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2225, - "time": 0.20936848094064098, + "noteOrder": 2226, + "time": 0.209368480940641, "position": { "x": 7, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2273, + "noteOrder": 2274, "time": 0.2139199696567419, "position": { "x": 7, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2322, - "time": 0.21847145837284276, + "noteOrder": 2323, + "time": 0.2184714583728428, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2370, - "time": 0.22302294708894366, + "noteOrder": 2371, + "time": 0.22302294708894368, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2902, + "noteOrder": 2903, "time": 0.2730893229660535, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2999, + "noteOrder": 3000, "time": 0.28219230039825527, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3047, + "noteOrder": 3048, "time": 0.28674378911435616, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3096, - "time": 0.291295277830457, + "noteOrder": 3097, + "time": 0.29129527783045706, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.29584676654655795, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.30950123269486063, "position": { "x": 6, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3386, - "time": 0.31860421012706236, + "noteOrder": 3387, + "time": 0.3186042101270624, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.32315569884316325, + "noteOrder": 3435, + "time": 0.3231556988431633, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3484, "time": 0.3277071875592642, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3531, + "noteOrder": 3532, "time": 0.33225867627536504, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3628, - "time": 0.3413616537075668, + "noteOrder": 3629, + "time": 0.3413616537075669, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3628, - "time": 0.3413616537075668, + "noteOrder": 3629, + "time": 0.3413616537075669, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.3459131424236677, + "noteOrder": 3677, + "time": 0.3459131424236678, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.3459131424236677, + "noteOrder": 3677, + "time": 0.3459131424236678, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3773, + "noteOrder": 3774, "time": 0.3550161198558695, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3821, + "noteOrder": 3822, "time": 0.3595676085719704, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3871, "time": 0.3641190972880713, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.3686705860041722, + "noteOrder": 3919, + "time": 0.36867058600417224, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.3732220747202731, + "noteOrder": 3968, + "time": 0.37322207472027313, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.37777356343637397, + "noteOrder": 4016, + "time": 0.377773563436374, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4064, "time": 0.38232505215247486, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.38687654086857576, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4160, + "noteOrder": 4161, "time": 0.39142802958467665, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4208, + "noteOrder": 4210, "time": 0.39597951830077754, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4256, - "time": 0.40053100701687844, + "noteOrder": 4258, + "time": 0.4005310070168785, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4305, + "noteOrder": 4306, "time": 0.40508249573297933, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4331, "time": 0.4073582400910298, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4353, + "noteOrder": 4355, "time": 0.4096339844490802, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4403, "time": 0.4141854731651811, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.41873696188128195, + "noteOrder": 4452, + "time": 0.418736961881282, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4498, - "time": 0.42328845059738285, + "noteOrder": 4500, + "time": 0.4232884505973829, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4522, - "time": 0.4255641949554333, + "noteOrder": 4524, + "time": 0.42556419495543335, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4693, "time": 0.4414944054617865, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4740, - "time": 0.4460458941778873, + "noteOrder": 4742, + "time": 0.44604589417788737, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4789, - "time": 0.4505973828939882, + "noteOrder": 4790, + "time": 0.45059738289398826, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4837, - "time": 0.45514887161008916, + "noteOrder": 4839, + "time": 0.4551488716100891, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.45970036032619, + "noteOrder": 4887, + "time": 0.45970036032619005, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5081, "time": 0.47790631519059357, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5272, + "noteOrder": 5274, "time": 0.49611227005499714, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5369, - "time": 0.5052152474871989, + "noteOrder": 5371, + "time": 0.505215247487199, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5466, + "noteOrder": 5468, "time": 0.5143182249194007, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5562, + "noteOrder": 5564, "time": 0.5234212023516025, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5611, - "time": 0.5279726910677033, + "noteOrder": 5613, + "time": 0.5279726910677034, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5659, + "noteOrder": 5661, "time": 0.5325241797838043, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5901, - "time": 0.5552816233643086, + "noteOrder": 5903, + "time": 0.5552816233643088, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 6290, "time": 0.5916935330931159, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6385, + "noteOrder": 6387, "time": 0.6007965105253177, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6433, + "noteOrder": 6435, "time": 0.6053479992414186, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6481, - "time": 0.6098994879575194, + "noteOrder": 6484, + "time": 0.6098994879575195, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6578, + "noteOrder": 6580, "time": 0.6190024653897213, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6675, + "noteOrder": 6677, "time": 0.628105442821923, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6723, + "noteOrder": 6726, "time": 0.6326569315380239, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6772, - "time": 0.6372084202541247, + "noteOrder": 6774, + "time": 0.6372084202541248, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6868, - "time": 0.6463113976863265, + "noteOrder": 6871, + "time": 0.6463113976863266, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6917, - "time": 0.6508628864024274, + "noteOrder": 6919, + "time": 0.6508628864024275, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6965, + "noteOrder": 6968, "time": 0.6554143751185284, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7013, + "noteOrder": 7016, "time": 0.6599658638346292, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 7062, + "noteOrder": 7064, "time": 0.6645173525507301, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7110, + "noteOrder": 7113, "time": 0.669068841266831, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7207, - "time": 0.6781718186990328, + "noteOrder": 7210, + "time": 0.6781718186990329, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 7255, - "time": 0.6827233074151337, + "noteOrder": 7258, + "time": 0.6827233074151338, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 7304, - "time": 0.6872747961312345, + "noteOrder": 7306, + "time": 0.6872747961312347, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 7352, - "time": 0.6918262848473354, + "noteOrder": 7355, + "time": 0.6918262848473355, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 7400, - "time": 0.6963777735634363, + "noteOrder": 7403, + "time": 0.6963777735634364, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 7449, - "time": 0.7009292622795372, + "noteOrder": 7451, + "time": 0.7009292622795373, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 7497, - "time": 0.7054807509956381, + "noteOrder": 7500, + "time": 0.7054807509956382, "position": { "x": 4, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 7546, + "noteOrder": 7548, "time": 0.710032239711739, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 7594, + "noteOrder": 7597, "time": 0.7145837284278399, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 7691, + "noteOrder": 7693, "time": 0.7236867058600417, "position": { "x": 2, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 7787, + "noteOrder": 7790, "time": 0.7327896832922435, "position": { "x": 8, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 7836, - "time": 0.7373411720083444, + "noteOrder": 7839, + "time": 0.7373411720083445, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 7884, - "time": 0.7418926607244453, + "noteOrder": 7887, + "time": 0.7418926607244454, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 7932, - "time": 0.7464441494405462, + "noteOrder": 7935, + "time": 0.7464441494405463, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 8029, - "time": 0.7555471268727479, + "noteOrder": 8032, + "time": 0.755547126872748, "position": { "x": 2, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 8078, + "noteOrder": 8080, "time": 0.7600986155888488, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 8126, + "noteOrder": 8129, "time": 0.7646501043049497, "position": { "x": 2, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 8174, + "noteOrder": 8177, "time": 0.7692015930210506, "position": { "x": 7, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 8223, + "noteOrder": 8226, "time": 0.7737530817371515, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 8271, + "noteOrder": 8274, "time": 0.7783045704532524, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 8368, + "noteOrder": 8371, "time": 0.7874075478854542, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 8416, + "noteOrder": 8419, "time": 0.7919590366015551, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 8465, - "time": 0.796510525317656, + "noteOrder": 8468, + "time": 0.7965105253176561, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 8513, - "time": 0.8010620140337569, + "noteOrder": 8516, + "time": 0.801062014033757, "position": { "x": 6, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 8561, + "noteOrder": 8564, "time": 0.8056135027498578, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 8610, + "noteOrder": 8613, "time": 0.8101649914659587, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 8658, + "noteOrder": 8661, "time": 0.8147164801820596, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 8706, + "noteOrder": 8709, "time": 0.8192679688981604, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 8755, - "time": 0.8238194576142612, + "noteOrder": 8758, + "time": 0.8238194576142613, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 8851, - "time": 0.832922435046463, + "noteOrder": 8855, + "time": 0.8329224350464631, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 8948, + "noteOrder": 8951, "time": 0.8420254124786649, "position": { "x": 4, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 9045, - "time": 0.8511283899108666, + "noteOrder": 9048, + "time": 0.8511283899108667, "position": { "x": 7, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 9238, + "noteOrder": 9242, "time": 0.8693343447752703, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 9335, - "time": 0.878437322207472, + "noteOrder": 9338, + "time": 0.8784373222074721, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 9384, + "noteOrder": 9387, "time": 0.882988810923573, "position": { "x": 8, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 9432, - "time": 0.8875402996396737, + "noteOrder": 9435, + "time": 0.8875402996396738, "position": { "x": 3, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 9432, - "time": 0.8875402996396737, + "noteOrder": 9435, + "time": 0.8875402996396738, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 9722, - "time": 0.9148492319362791, + "noteOrder": 9726, + "time": 0.9148492319362792, "position": { "x": 6, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 9916, - "time": 0.9330551868006827, + "noteOrder": 9919, + "time": 0.9330551868006828, "position": { "x": 3, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 9964, + "noteOrder": 9968, "time": 0.9376066755167837, "position": { "x": 6, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 10012, - "time": 0.9421581642328845, + "noteOrder": 10016, + "time": 0.9421581642328846, "position": { "x": 6, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 10061, - "time": 0.9467096529489853, + "noteOrder": 10064, + "time": 0.9467096529489855, "position": { "x": 6, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 10109, - "time": 0.9512611416650862, + "noteOrder": 10113, + "time": 0.9512611416650864, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 10157, + "noteOrder": 10161, "time": 0.9558126303811871, "position": { "x": 6, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 10206, + "noteOrder": 10209, "time": 0.960364119097288, "position": { "x": 4, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 10254, + "noteOrder": 10258, "time": 0.9649156078133889, "position": { "x": 6, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 10278, - "time": 0.9671913521714394, + "noteOrder": 10282, + "time": 0.9671913521714395, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 10303, - "time": 0.9694670965294898, + "noteOrder": 10306, + "time": 0.9694670965294899, "position": { "x": 6, "y": 0 @@ -2896,10 +2896,10 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 677, - "time": 0.06372084202541248, + "time": 0.06372084202541249, "position": { "x": 7, "y": 0 @@ -2919,9 +2919,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.07737530817371516, "position": { "x": 7, @@ -2942,7 +2942,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 726, "time": 0.06827233074151337, @@ -2965,9 +2965,9 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.07737530817371516, "position": { "x": 3, @@ -2988,9 +2988,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, + "noteOrder": 1742, "time": 0.1638535937796321, "position": { "x": 5, @@ -3011,9 +3011,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2031, + "noteOrder": 2032, "time": 0.19116252607623743, "position": { "x": 5, @@ -3034,10 +3034,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2515, - "time": 0.23667741323724634, + "noteOrder": 2516, + "time": 0.23667741323724636, "position": { "x": 7, "y": 0 @@ -3057,10 +3057,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, - "time": 0.2548833681016499, + "noteOrder": 2710, + "time": 0.25488336810164997, "position": { "x": 7, "y": 0 @@ -3080,9 +3080,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2612, + "noteOrder": 2613, "time": 0.24578039066944812, "position": { "x": 3, @@ -3103,10 +3103,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, - "time": 0.2548833681016499, + "noteOrder": 2710, + "time": 0.25488336810164997, "position": { "x": 3, "y": 0 @@ -3126,10 +3126,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2805, - "time": 0.26398634553385164, + "noteOrder": 2806, + "time": 0.2639863455338517, "position": { "x": 6, "y": 0 @@ -3149,9 +3149,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2902, + "noteOrder": 2903, "time": 0.2730893229660535, "position": { "x": 6, @@ -3172,9 +3172,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3192, + "noteOrder": 3193, "time": 0.30039825526265884, "position": { "x": 4, @@ -3195,9 +3195,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.30950123269486063, "position": { "x": 4, @@ -3218,9 +3218,9 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4547, + "noteOrder": 4548, "time": 0.4278399393134838, "position": { "x": 4, @@ -3241,10 +3241,10 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4643, - "time": 0.43694291674568553, + "noteOrder": 4645, + "time": 0.4369429167456856, "position": { "x": 4, "y": 0 @@ -3264,10 +3264,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4934, - "time": 0.4642518490422909, + "noteOrder": 4935, + "time": 0.46425184904229094, "position": { "x": 7, "y": 0 @@ -3286,11 +3286,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.46880333775839184, + "noteOrder": 4960, + "time": 0.4665275934003414, "position": { "x": 7, "y": 0 @@ -3304,18 +3304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5030, - "time": 0.4733548264744927, + "noteOrder": 4960, + "time": 0.4665275934003414, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3332,13 +3332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5127, - "time": 0.48245780390669446, + "noteOrder": 4984, + "time": 0.46880333775839184, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3355,13 +3355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5175, - "time": 0.4870092926227953, + "noteOrder": 5008, + "time": 0.4710790821164423, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3373,18 +3373,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5224, - "time": 0.49156078133889625, + "noteOrder": 5008, + "time": 0.4710790821164423, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3401,13 +3401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5321, - "time": 0.500663758771098, + "noteOrder": 5032, + "time": 0.47335482647449273, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3419,18 +3419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5417, - "time": 0.5097667362032998, + "noteOrder": 5056, + "time": 0.4756305708325432, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3442,18 +3442,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5417, - "time": 0.5097667362032998, + "noteOrder": 5056, + "time": 0.4756305708325432, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3470,13 +3470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 5514, - "time": 0.5188697136355016, + "noteOrder": 5129, + "time": 0.48245780390669446, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3488,18 +3488,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5514, - "time": 0.5188697136355016, + "noteOrder": 5153, + "time": 0.48473354826474496, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3516,11 +3516,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5611, - "time": 0.5279726910677033, + "noteOrder": 5153, + "time": 0.48473354826474496, "position": { "x": 4, "y": 0 @@ -3539,13 +3539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5708, - "time": 0.5370756684999052, + "noteOrder": 5177, + "time": 0.48700929262279535, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3562,13 +3562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6094, - "time": 0.5734875782287123, + "noteOrder": 5201, + "time": 0.48928503698084586, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3585,11 +3585,34 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6094, - "time": 0.5734875782287123, + "noteOrder": 5201, + "time": 0.48928503698084586, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5226, + "time": 0.49156078133889625, "position": { "x": 3, "y": 0 @@ -3608,11 +3631,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6481, - "time": 0.6098994879575194, + "noteOrder": 5250, + "time": 0.49383652569694675, "position": { "x": 3, "y": 0 @@ -3631,13 +3654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7642, - "time": 0.7191352171439408, + "noteOrder": 5250, + "time": 0.49383652569694675, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3649,18 +3672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 7739, - "time": 0.7282381945761426, + "noteOrder": 5322, + "time": 0.5006637587710981, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3672,18 +3695,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7739, - "time": 0.7282381945761426, + "noteOrder": 5419, + "time": 0.5097667362032999, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3700,13 +3723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 7836, - "time": 0.7373411720083444, + "noteOrder": 5419, + "time": 0.5097667362032999, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3718,18 +3741,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8803, - "time": 0.8283709463303622, + "noteOrder": 5516, + "time": 0.5188697136355016, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3741,16 +3764,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 8900, - "time": 0.8374739237625639, + "noteOrder": 5516, + "time": 0.5188697136355016, "position": { "x": 4, "y": 0 @@ -3769,13 +3792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8900, - "time": 0.8374739237625639, + "noteOrder": 5613, + "time": 0.5279726910677034, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3787,16 +3810,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 8997, - "time": 0.8465769011947657, + "noteOrder": 5710, + "time": 0.5370756684999052, "position": { "x": 6, "y": 0 @@ -3815,13 +3838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8997, - "time": 0.8465769011947657, + "noteOrder": 6097, + "time": 0.5734875782287123, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3833,18 +3856,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 9093, - "time": 0.8556798786269676, + "noteOrder": 6097, + "time": 0.5734875782287123, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3861,13 +3884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9093, - "time": 0.8556798786269676, + "noteOrder": 6484, + "time": 0.6098994879575195, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3879,18 +3902,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 9142, - "time": 0.8602313673430684, + "noteOrder": 7645, + "time": 0.7191352171439408, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3907,13 +3930,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9142, - "time": 0.8602313673430684, + "noteOrder": 7742, + "time": 0.7282381945761426, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3925,18 +3948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 9190, - "time": 0.8647828560591693, + "noteOrder": 7742, + "time": 0.7282381945761426, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3953,13 +3976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9190, - "time": 0.8647828560591693, + "noteOrder": 7839, + "time": 0.7373411720083445, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3971,18 +3994,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 9287, - "time": 0.8738858334913711, + "noteOrder": 8806, + "time": 0.8283709463303622, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3994,18 +4017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9287, - "time": 0.8738858334913711, + "noteOrder": 8903, + "time": 0.837473923762564, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4022,13 +4045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 9384, - "time": 0.882988810923573, + "noteOrder": 8903, + "time": 0.837473923762564, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4040,16 +4063,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9480, - "time": 0.8920917883557746, + "noteOrder": 9000, + "time": 0.8465769011947658, "position": { "x": 6, "y": 0 @@ -4068,13 +4091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 9553, - "time": 0.898919021429926, + "noteOrder": 9000, + "time": 0.8465769011947658, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4086,16 +4109,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9480, - "time": 0.8920917883557746, + "noteOrder": 9097, + "time": 0.8556798786269676, "position": { "x": 4, "y": 0 @@ -4114,13 +4137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 9553, - "time": 0.898919021429926, + "noteOrder": 9097, + "time": 0.8556798786269676, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4132,16 +4155,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9577, - "time": 0.9011947657879764, + "noteOrder": 9145, + "time": 0.8602313673430685, "position": { "x": 6, "y": 0 @@ -4160,13 +4183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9625, - "time": 0.9057462545040773, + "noteOrder": 9145, + "time": 0.8602313673430685, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4183,11 +4206,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9674, - "time": 0.9102977432201783, + "noteOrder": 9193, + "time": 0.8647828560591694, "position": { "x": 6, "y": 0 @@ -4201,16 +4224,407 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 9770, - "time": 0.91940072065238, + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9193, + "time": 0.8647828560591694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9290, + "time": 0.8738858334913712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9290, + "time": 0.8738858334913712, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9387, + "time": 0.882988810923573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9484, + "time": 0.8920917883557747, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9556, + "time": 0.8989190214299261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9484, + "time": 0.8920917883557747, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9556, + "time": 0.8989190214299261, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9580, + "time": 0.9011947657879765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9605, + "time": 0.903470510146027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9605, + "time": 0.903470510146027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9629, + "time": 0.9057462545040773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9653, + "time": 0.9080219988621279, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9653, + "time": 0.9080219988621279, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9677, + "time": 0.9102977432201782, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9701, + "time": 0.9125734875782288, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9701, + "time": 0.9125734875782288, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9774, + "time": 0.9194007206523801, "position": { "x": 3, "y": 0 @@ -4228,11 +4642,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9798, + "time": 0.9216764650104305, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9798, + "time": 0.9216764650104305, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9819, + "noteOrder": 9822, "time": 0.923952209368481, "position": { "x": 3, @@ -4251,12 +4711,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9847, + "time": 0.9262279537265314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9847, + "time": 0.9262279537265314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9867, - "time": 0.9285036980845818, + "noteOrder": 9871, + "time": 0.9285036980845819, "position": { "x": 3, "y": 0 @@ -4273,6 +4779,52 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9895, + "time": 0.9307794424426322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9895, + "time": 0.9307794424426322, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Aftermath/info.json b/tracks/Aftermath/info.json index e051da53..7fe6da42 100644 --- a/tracks/Aftermath/info.json +++ b/tracks/Aftermath/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Aftermath", - "SongLength": "142.837551", + "SongLength": "132.884898", "SongAuthorName": "BEMANI Sound Team \"\u732b\u53c9Master & \u3042\u3055\u304d & Yvya\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Anxiety/279_difficulty_1a.json b/tracks/Anxiety/279_difficulty_1a.json index 820d14e3..1c614dd5 100644 --- a/tracks/Anxiety/279_difficulty_1a.json +++ b/tracks/Anxiety/279_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 170, - "time": 0.029197080291970802, + "time": 0.029197080291970805, "position": { "x": 3, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 218, - "time": 0.037539103232533885, + "noteOrder": 219, + "time": 0.03753910323253389, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 340, - "time": 0.058394160583941604, + "time": 0.05839416058394161, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 388, + "noteOrder": 389, "time": 0.0667361835245047, "position": { "x": 3, @@ -274,7 +274,7 @@ }, { "noteOrder": 413, - "time": 0.07090719499478623, + "time": 0.07090719499478625, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 437, - "time": 0.07507820646506777, + "time": 0.07507820646506778, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 461, - "time": 0.07924921793534932, + "time": 0.07924921793534934, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 485, + "noteOrder": 486, "time": 0.08342022940563086, "position": { "x": 7, @@ -354,7 +354,7 @@ }, { "noteOrder": 510, - "time": 0.0875912408759124, + "time": 0.08759124087591241, "position": { "x": 5, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 558, + "noteOrder": 559, "time": 0.0959332638164755, "position": { "x": 3, @@ -434,7 +434,7 @@ }, { "noteOrder": 607, - "time": 0.10427528675703858, + "time": 0.1042752867570386, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.11261730969760167, "position": { "x": 7, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.11261730969760167, "position": { "x": 3, @@ -534,7 +534,7 @@ }, { "noteOrder": 668, - "time": 0.11470281543274244, + "time": 0.11470281543274245, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 668, - "time": 0.11470281543274244, + "time": 0.11470281543274245, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 680, - "time": 0.11678832116788321, + "time": 0.11678832116788322, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 680, - "time": 0.11678832116788321, + "time": 0.11678832116788322, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 704, - "time": 0.12095933263816475, + "time": 0.12095933263816476, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.1251303441084463, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 752, + "noteOrder": 753, "time": 0.12930135557872785, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 825, - "time": 0.14181438998957246, + "noteOrder": 826, + "time": 0.1418143899895725, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 850, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 6, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 850, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 995, + "noteOrder": 996, "time": 0.1710114702815433, "position": { "x": 7, @@ -774,7 +774,7 @@ }, { "noteOrder": 1044, - "time": 0.17935349322210636, + "time": 0.1793534932221064, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1165, + "noteOrder": 1166, "time": 0.20020855057351408, "position": { "x": 8, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1189, - "time": 0.2043795620437956, + "noteOrder": 1190, + "time": 0.20437956204379562, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1238, + "noteOrder": 1239, "time": 0.21272158498435872, "position": { "x": 6, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1335, - "time": 0.22940563086548488, + "noteOrder": 1336, + "time": 0.2294056308654849, "position": { "x": 7, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1408, - "time": 0.2419186652763295, + "time": 0.24191866527632952, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1432, - "time": 0.24608967674661106, + "noteOrder": 1433, + "time": 0.24608967674661109, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.27528675703858185, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1723, + "noteOrder": 1724, "time": 0.2961418143899896, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1772, + "noteOrder": 1773, "time": 0.3044838373305527, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1869, - "time": 0.3211678832116789, + "noteOrder": 1870, + "time": 0.32116788321167883, "position": { "x": 7, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1918, - "time": 0.3295099061522419, + "time": 0.32950990615224196, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1966, + "noteOrder": 1967, "time": 0.33785192909280504, "position": { "x": 8, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1991, "time": 0.3420229405630866, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2015, - "time": 0.34619395203336806, + "noteOrder": 2016, + "time": 0.34619395203336817, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2112, - "time": 0.3628779979144942, + "noteOrder": 2113, + "time": 0.36287799791449427, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2160, - "time": 0.37122002085505734, + "noteOrder": 2161, + "time": 0.3712200208550574, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.3879040667361835, + "noteOrder": 2258, + "time": 0.38790406673618355, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.3962460896767466, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.4129301355578728, + "noteOrder": 2404, + "time": 0.41293013555787283, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2415, - "time": 0.41501564129301355, + "noteOrder": 2416, + "time": 0.4150156412930136, "position": { "x": 5, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2646, - "time": 0.45464025026068816, + "noteOrder": 2647, + "time": 0.4546402502606882, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2670, - "time": 0.45881126173096975, + "noteOrder": 2671, + "time": 0.4588112617309698, "position": { "x": 8, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2694, - "time": 0.4629822732012513, + "noteOrder": 2696, + "time": 0.46298227320125135, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2719, - "time": 0.46715328467153283, + "noteOrder": 2720, + "time": 0.4671532846715329, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2743, + "noteOrder": 2744, "time": 0.4713242961418144, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2767, - "time": 0.4754953076120959, + "noteOrder": 2768, + "time": 0.47549530761209596, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2791, - "time": 0.47966631908237745, + "noteOrder": 2793, + "time": 0.47966631908237756, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2961, - "time": 0.5088633993743482, + "noteOrder": 2963, + "time": 0.5088633993743483, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2986, - "time": 0.5130344108446298, + "noteOrder": 2987, + "time": 0.5130344108446299, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3036, "time": 0.5213764337851929, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3058, + "noteOrder": 3060, "time": 0.5255474452554745, "position": { "x": 2, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.529718456725756, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3107, + "noteOrder": 3108, "time": 0.5338894681960376, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3131, + "noteOrder": 3133, "time": 0.5380604796663191, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3156, + "noteOrder": 3157, "time": 0.5422314911366006, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.5464025026068822, + "noteOrder": 3181, + "time": 0.5464025026068823, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3228, - "time": 0.5547445255474452, + "noteOrder": 3230, + "time": 0.5547445255474454, "position": { "x": 5, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3325, - "time": 0.5714285714285714, + "noteOrder": 3327, + "time": 0.5714285714285715, "position": { "x": 5, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3423, - "time": 0.5881126173096975, + "noteOrder": 3424, + "time": 0.5881126173096977, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.5964546402502606, + "noteOrder": 3473, + "time": 0.5964546402502607, "position": { "x": 5, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3520, + "noteOrder": 3521, "time": 0.6047966631908238, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3568, + "noteOrder": 3570, "time": 0.6131386861313869, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3617, - "time": 0.6214807090719499, + "noteOrder": 3618, + "time": 0.62148070907195, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3641, + "noteOrder": 3643, "time": 0.6256517205422315, "position": { "x": 8, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3665, - "time": 0.629822732012513, + "noteOrder": 3667, + "time": 0.6298227320125132, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3716, "time": 0.6381647549530761, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3738, - "time": 0.6423357664233578, + "noteOrder": 3740, + "time": 0.6423357664233577, "position": { "x": 2, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3762, + "noteOrder": 3764, "time": 0.6465067778936392, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3787, - "time": 0.6506777893639207, + "noteOrder": 3788, + "time": 0.6506777893639208, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3811, - "time": 0.6548488008342023, + "noteOrder": 3813, + "time": 0.6548488008342024, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3835, - "time": 0.6590198123044838, + "noteOrder": 3837, + "time": 0.6590198123044839, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3835, - "time": 0.6590198123044838, + "noteOrder": 3837, + "time": 0.6590198123044839, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3859, - "time": 0.6631908237747655, + "noteOrder": 3861, + "time": 0.6631908237747653, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3859, - "time": 0.6631908237747655, + "noteOrder": 3861, + "time": 0.6631908237747653, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6798748696558915, + "noteOrder": 3958, + "time": 0.6798748696558916, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3981, + "noteOrder": 3983, "time": 0.6840458811261731, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.6882168925964547, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 4055, "time": 0.6965589155370178, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4078, - "time": 0.7007299270072992, + "noteOrder": 4080, + "time": 0.7007299270072993, "position": { "x": 3, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4090, + "noteOrder": 4092, "time": 0.7028154327424401, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4102, + "noteOrder": 4104, "time": 0.7049009384775808, "position": { "x": 7, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4114, - "time": 0.7069864442127215, + "noteOrder": 4116, + "time": 0.7069864442127216, "position": { "x": 5, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4126, + "noteOrder": 4128, "time": 0.7090719499478624, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4139, + "noteOrder": 4140, "time": 0.7111574556830031, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4250, "time": 0.7299270072992701, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4345, + "noteOrder": 4347, "time": 0.7466110531803963, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4393, + "noteOrder": 4395, "time": 0.7549530761209593, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4418, - "time": 0.7591240875912408, + "noteOrder": 4420, + "time": 0.759124087591241, "position": { "x": 2, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7632950990615224, + "noteOrder": 4444, + "time": 0.7632950990615225, "position": { "x": 6, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4515, - "time": 0.775808133472367, + "noteOrder": 4517, + "time": 0.7758081334723671, "position": { "x": 2, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4539, - "time": 0.7799791449426486, + "noteOrder": 4541, + "time": 0.7799791449426487, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4636, - "time": 0.7966631908237747, + "noteOrder": 4638, + "time": 0.7966631908237748, "position": { "x": 3, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.8133472367049009, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.821689259645464, "position": { "x": 5, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.8258602711157456, + "noteOrder": 4808, + "time": 0.8258602711157457, "position": { "x": 8, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.8300312825860271, + "noteOrder": 4833, + "time": 0.8300312825860272, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.8633993743482794, + "noteOrder": 5027, + "time": 0.8633993743482795, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5146, + "noteOrder": 5148, "time": 0.8842544316996872, "position": { "x": 8, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5170, - "time": 0.8884254431699686, + "noteOrder": 5173, + "time": 0.8884254431699687, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5219, - "time": 0.8967674661105318, + "noteOrder": 5221, + "time": 0.8967674661105319, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5292, - "time": 0.9092805005213763, + "noteOrder": 5294, + "time": 0.9092805005213764, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5316, - "time": 0.913451511991658, + "noteOrder": 5318, + "time": 0.9134515119916581, "position": { "x": 5, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5437, - "time": 0.9343065693430657, + "noteOrder": 5440, + "time": 0.9343065693430658, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5461, - "time": 0.9384775808133472, + "noteOrder": 5464, + "time": 0.9384775808133473, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5510, - "time": 0.9468196037539103, + "noteOrder": 5513, + "time": 0.9468196037539104, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5583, - "time": 0.9593326381647549, + "noteOrder": 5585, + "time": 0.9593326381647551, "position": { "x": 3, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5607, + "noteOrder": 5610, "time": 0.9635036496350365, "position": { "x": 5, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5728, - "time": 0.9843587069864442, + "noteOrder": 5731, + "time": 0.9843587069864443, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5747, - "time": 0.9874869655891554, + "noteOrder": 5749, + "time": 0.9874869655891555, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5759, - "time": 0.989572471324296, + "noteOrder": 5761, + "time": 0.9895724713242962, "position": { "x": 7, "y": 0 @@ -2636,7 +2636,7 @@ "lineNodes": [ { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 777, "time": 0.1334723670490094, @@ -2657,9 +2657,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 789, + "time": 0.13555787278415016, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 789, + "time": 0.13555787278415016, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 801, "time": 0.13764337851929093, @@ -2680,12 +2726,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 814, + "time": 0.13972888425443172, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 814, + "time": 0.13972888425443172, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 826, + "time": 0.1418143899895725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 826, + "time": 0.1418143899895725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, - "time": 0.15015641293013554, + "time": 0.15015641293013557, "position": { "x": 4, "y": 0 @@ -2705,9 +2843,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 898, + "noteOrder": 899, "time": 0.1543274244004171, "position": { "x": 5, @@ -2728,9 +2866,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 898, + "noteOrder": 899, "time": 0.1543274244004171, "position": { "x": 6, @@ -2751,10 +2889,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 922, - "time": 0.15849843587069865, + "noteOrder": 923, + "time": 0.15849843587069867, "position": { "x": 5, "y": 0 @@ -2774,10 +2912,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 922, - "time": 0.15849843587069865, + "noteOrder": 923, + "time": 0.15849843587069867, "position": { "x": 4, "y": 0 @@ -2797,10 +2935,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 947, - "time": 0.16266944734098018, + "time": 0.1626694473409802, "position": { "x": 5, "y": 0 @@ -2820,10 +2958,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 947, - "time": 0.16266944734098018, + "time": 0.1626694473409802, "position": { "x": 6, "y": 0 @@ -2843,7 +2981,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 971, "time": 0.16684045881126172, @@ -2866,10 +3004,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1019, - "time": 0.1751824817518248, + "noteOrder": 1020, + "time": 0.17518248175182483, "position": { "x": 4, "y": 0 @@ -2889,10 +3027,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, - "time": 0.17935349322210636, + "time": 0.1793534932221064, "position": { "x": 5, "y": 0 @@ -2912,9 +3050,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1068, + "noteOrder": 1069, "time": 0.1835245046923879, "position": { "x": 6, @@ -2935,10 +3073,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1092, - "time": 0.18769551616266944, + "noteOrder": 1093, + "time": 0.18769551616266947, "position": { "x": 5, "y": 0 @@ -2958,10 +3096,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1092, - "time": 0.18769551616266944, + "noteOrder": 1093, + "time": 0.18769551616266947, "position": { "x": 4, "y": 0 @@ -2981,7 +3119,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1117, "time": 0.191866527632951, @@ -3004,7 +3142,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1117, "time": 0.191866527632951, @@ -3027,10 +3165,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1141, - "time": 0.19603753910323252, + "time": 0.19603753910323257, "position": { "x": 5, "y": 0 @@ -3050,10 +3188,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1141, - "time": 0.19603753910323252, + "time": 0.19603753910323257, "position": { "x": 4, "y": 0 @@ -3073,9 +3211,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1165, + "noteOrder": 1166, "time": 0.20020855057351408, "position": { "x": 5, @@ -3096,10 +3234,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1214, - "time": 0.20855057351407716, + "time": 0.2085505735140772, "position": { "x": 6, "y": 0 @@ -3119,9 +3257,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1238, + "noteOrder": 1239, "time": 0.21272158498435872, "position": { "x": 5, @@ -3142,9 +3280,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, + "noteOrder": 1263, "time": 0.21689259645464024, "position": { "x": 4, @@ -3165,9 +3303,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1286, + "noteOrder": 1287, "time": 0.2210636079249218, "position": { "x": 5, @@ -3188,9 +3326,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1286, + "noteOrder": 1287, "time": 0.2210636079249218, "position": { "x": 6, @@ -3211,7 +3349,7 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1311, "time": 0.22523461939520334, @@ -3234,10 +3372,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1359, - "time": 0.23357664233576642, + "noteOrder": 1360, + "time": 0.23357664233576644, "position": { "x": 4, "y": 0 @@ -3257,10 +3395,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1384, - "time": 0.23774765380604795, + "time": 0.23774765380604798, "position": { "x": 5, "y": 0 @@ -3280,10 +3418,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1384, - "time": 0.23774765380604795, + "time": 0.23774765380604798, "position": { "x": 6, "y": 0 @@ -3303,10 +3441,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1408, - "time": 0.2419186652763295, + "time": 0.24191866527632952, "position": { "x": 5, "y": 0 @@ -3326,9 +3464,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, + "noteOrder": 1457, "time": 0.2502606882168926, "position": { "x": 4, @@ -3349,10 +3487,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1481, - "time": 0.2544316996871741, + "time": 0.25443169968717416, "position": { "x": 5, "y": 0 @@ -3372,10 +3510,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1481, - "time": 0.2544316996871741, + "time": 0.25443169968717416, "position": { "x": 6, "y": 0 @@ -3395,9 +3533,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1505, + "noteOrder": 1506, "time": 0.2586027111574557, "position": { "x": 5, @@ -3418,9 +3556,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1505, + "noteOrder": 1506, "time": 0.2586027111574557, "position": { "x": 4, @@ -3441,9 +3579,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1529, + "noteOrder": 1530, "time": 0.26277372262773724, "position": { "x": 5, @@ -3464,9 +3602,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1529, + "noteOrder": 1530, "time": 0.26277372262773724, "position": { "x": 6, @@ -3487,9 +3625,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.264859228362878, "position": { "x": 5, @@ -3510,9 +3648,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1553, + "noteOrder": 1554, "time": 0.2669447340980188, "position": { "x": 3, @@ -3533,7 +3671,7 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1566, "time": 0.26903023983315955, @@ -3556,7 +3694,7 @@ }, { "lineGroupId": 68, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1578, "time": 0.2711157455683003, @@ -3579,10 +3717,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1590, - "time": 0.2732012513034411, + "noteOrder": 1591, + "time": 0.27320125130344114, "position": { "x": 7, "y": 0 @@ -3602,9 +3740,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.27528675703858185, "position": { "x": 7, @@ -3625,10 +3763,10 @@ }, { "lineGroupId": 70, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1614, - "time": 0.2773722627737226, + "noteOrder": 1615, + "time": 0.2773722627737227, "position": { "x": 5, "y": 0 @@ -3648,10 +3786,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1651, - "time": 0.28362877997914493, + "time": 0.283628779979145, "position": { "x": 7, "y": 0 @@ -3671,10 +3809,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1663, - "time": 0.2857142857142857, + "time": 0.28571428571428575, "position": { "x": 6, "y": 0 @@ -3694,10 +3832,10 @@ }, { "lineGroupId": 73, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1675, - "time": 0.2877997914494265, + "noteOrder": 1676, + "time": 0.28779979144942647, "position": { "x": 6, "y": 0 @@ -3717,10 +3855,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1675, - "time": 0.2877997914494265, + "noteOrder": 1676, + "time": 0.28779979144942647, "position": { "x": 3, "y": 0 @@ -3740,10 +3878,10 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1687, - "time": 0.28988529718456724, + "noteOrder": 1688, + "time": 0.2898852971845673, "position": { "x": 4, "y": 0 @@ -3763,10 +3901,10 @@ }, { "lineGroupId": 74, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1699, - "time": 0.291970802919708, + "noteOrder": 1700, + "time": 0.29197080291970806, "position": { "x": 4, "y": 0 @@ -3786,10 +3924,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1699, - "time": 0.291970802919708, + "noteOrder": 1700, + "time": 0.29197080291970806, "position": { "x": 7, "y": 0 @@ -3809,10 +3947,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1711, - "time": 0.2940563086548488, + "noteOrder": 1712, + "time": 0.29405630865484883, "position": { "x": 6, "y": 0 @@ -3832,9 +3970,9 @@ }, { "lineGroupId": 75, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1723, + "noteOrder": 1724, "time": 0.2961418143899896, "position": { "x": 6, @@ -3855,10 +3993,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1748, - "time": 0.3003128258602711, + "time": 0.30031282586027114, "position": { "x": 3, "y": 0 @@ -3878,9 +4016,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1760, + "noteOrder": 1761, "time": 0.3023983315954119, "position": { "x": 4, @@ -3901,9 +4039,9 @@ }, { "lineGroupId": 77, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1772, + "noteOrder": 1773, "time": 0.3044838373305527, "position": { "x": 4, @@ -3924,9 +4062,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1796, + "noteOrder": 1797, "time": 0.3086548488008342, "position": { "x": 7, @@ -3947,10 +4085,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1808, - "time": 0.3107403545359749, + "noteOrder": 1809, + "time": 0.310740354535975, "position": { "x": 6, "y": 0 @@ -3970,9 +4108,9 @@ }, { "lineGroupId": 79, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1820, + "noteOrder": 1821, "time": 0.31282586027111575, "position": { "x": 6, @@ -3993,9 +4131,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1820, + "noteOrder": 1821, "time": 0.31282586027111575, "position": { "x": 3, @@ -4016,10 +4154,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1833, - "time": 0.3149113660062565, + "time": 0.3149113660062566, "position": { "x": 4, "y": 0 @@ -4039,10 +4177,10 @@ }, { "lineGroupId": 80, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1845, - "time": 0.3169968717413973, + "noteOrder": 1846, + "time": 0.31699687174139735, "position": { "x": 4, "y": 0 @@ -4062,10 +4200,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1845, - "time": 0.3169968717413973, + "noteOrder": 1846, + "time": 0.31699687174139735, "position": { "x": 7, "y": 0 @@ -4084,11 +4222,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1893, - "time": 0.32533889468196037, + "noteOrder": 1858, + "time": 0.31908237747653806, "position": { "x": 7, "y": 0 @@ -4102,18 +4240,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1942, - "time": 0.33368091762252344, + "noteOrder": 1858, + "time": 0.31908237747653806, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4130,13 +4268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2015, - "time": 0.34619395203336806, + "noteOrder": 1870, + "time": 0.32116788321167883, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4153,13 +4291,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2039, - "time": 0.3503649635036496, + "noteOrder": 1870, + "time": 0.32116788321167883, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4171,18 +4309,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2051, - "time": 0.3524504692387904, + "noteOrder": 1894, + "time": 0.3253388946819604, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4199,13 +4337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 83, "indexInLine": 2, "isSliding": false, - "noteOrder": 2063, - "time": 0.3545359749739312, + "noteOrder": 1906, + "time": 0.3274244004171012, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4222,13 +4360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2063, - "time": 0.3545359749739312, + "noteOrder": 1906, + "time": 0.3274244004171012, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4240,16 +4378,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2075, - "time": 0.3566214807090719, + "noteOrder": 1918, + "time": 0.32950990615224196, "position": { "x": 6, "y": 0 @@ -4263,18 +4401,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2088, - "time": 0.3587069864442127, + "noteOrder": 1918, + "time": 0.32950990615224196, "position": { - "x": 6, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1943, + "time": 0.33368091762252344, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4291,13 +4452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2088, - "time": 0.3587069864442127, + "noteOrder": 2016, + "time": 0.34619395203336817, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4309,18 +4470,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 2100, - "time": 0.3607924921793535, + "noteOrder": 2040, + "time": 0.35036496350364965, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4337,11 +4498,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 89, "indexInLine": 2, "isSliding": false, - "noteOrder": 2112, - "time": 0.3628779979144942, + "noteOrder": 2052, + "time": 0.3524504692387904, "position": { "x": 4, "y": 0 @@ -4360,13 +4521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2136, - "time": 0.3670490093847758, + "noteOrder": 2064, + "time": 0.3545359749739312, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4378,18 +4539,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 2148, - "time": 0.3691345151199166, + "noteOrder": 2064, + "time": 0.3545359749739312, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4406,11 +4567,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 90, "indexInLine": 2, "isSliding": false, - "noteOrder": 2160, - "time": 0.37122002085505734, + "noteOrder": 2076, + "time": 0.35662148070907196, "position": { "x": 6, "y": 0 @@ -4429,13 +4590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2185, - "time": 0.3753910323253389, + "noteOrder": 2088, + "time": 0.3587069864442128, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4447,18 +4608,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 2197, - "time": 0.37747653806047965, + "noteOrder": 2088, + "time": 0.3587069864442128, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4475,11 +4636,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 91, "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.3795620437956204, + "noteOrder": 2101, + "time": 0.36079249217935355, "position": { "x": 4, "y": 0 @@ -4498,13 +4659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2209, - "time": 0.3795620437956204, + "noteOrder": 2113, + "time": 0.36287799791449427, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4516,18 +4677,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 2221, - "time": 0.3816475495307612, + "noteOrder": 2137, + "time": 0.3670490093847758, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4544,11 +4705,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 93, "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.383733055265902, + "noteOrder": 2149, + "time": 0.36913451511991663, "position": { "x": 6, "y": 0 @@ -4567,13 +4728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2233, - "time": 0.383733055265902, + "noteOrder": 2161, + "time": 0.3712200208550574, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4585,16 +4746,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2282, - "time": 0.39207507820646503, + "noteOrder": 2186, + "time": 0.37539103232533894, "position": { "x": 3, "y": 0 @@ -4608,18 +4769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2330, - "time": 0.40041710114702816, + "noteOrder": 2198, + "time": 0.37747653806047965, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4636,13 +4797,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2355, - "time": 0.4045881126173097, + "noteOrder": 2210, + "time": 0.3795620437956205, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4654,18 +4815,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2379, - "time": 0.4087591240875912, + "noteOrder": 2210, + "time": 0.3795620437956205, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4677,18 +4838,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.4171011470281543, + "noteOrder": 2222, + "time": 0.38164754953076124, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4705,13 +4866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2452, - "time": 0.42127215849843586, + "noteOrder": 2234, + "time": 0.383733055265902, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4723,18 +4884,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2476, - "time": 0.42544316996871745, + "noteOrder": 2234, + "time": 0.383733055265902, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4746,16 +4907,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.429614181438999, + "noteOrder": 2246, + "time": 0.3858185610010428, "position": { "x": 3, "y": 0 @@ -4774,13 +4935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2524, - "time": 0.43378519290928047, + "noteOrder": 2246, + "time": 0.3858185610010428, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4792,18 +4953,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2549, - "time": 0.437956204379562, + "noteOrder": 2258, + "time": 0.38790406673618355, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4820,13 +4981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2573, - "time": 0.4421272158498436, + "noteOrder": 2258, + "time": 0.38790406673618355, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4838,16 +4999,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2597, - "time": 0.44629822732012514, + "noteOrder": 2283, + "time": 0.39207507820646514, "position": { "x": 3, "y": 0 @@ -4861,18 +5022,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2622, - "time": 0.4504692387904067, + "noteOrder": 2295, + "time": 0.39416058394160586, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4889,13 +5050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2646, - "time": 0.45464025026068816, + "noteOrder": 2295, + "time": 0.39416058394160586, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4912,13 +5073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2719, - "time": 0.46715328467153283, + "noteOrder": 2307, + "time": 0.3962460896767466, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4935,11 +5096,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 3, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2743, - "time": 0.4713242961418144, + "noteOrder": 2307, + "time": 0.3962460896767466, "position": { "x": 5, "y": 0 @@ -4958,13 +5119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 4, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2791, - "time": 0.47966631908237745, + "noteOrder": 2331, + "time": 0.40041710114702816, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4976,16 +5137,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2816, - "time": 0.483837330552659, + "noteOrder": 2343, + "time": 0.402502606882169, "position": { "x": 3, "y": 0 @@ -5004,13 +5165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2840, - "time": 0.4880083420229406, + "noteOrder": 2343, + "time": 0.402502606882169, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5022,18 +5183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2864, - "time": 0.4921793534932221, + "noteOrder": 2356, + "time": 0.40458811261730976, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5045,16 +5206,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2889, - "time": 0.4963503649635036, + "noteOrder": 2368, + "time": 0.40667361835245047, "position": { "x": 7, "y": 0 @@ -5073,13 +5234,3233 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2913, - "time": 0.5005213764337852, + "noteOrder": 2368, + "time": 0.40667361835245047, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2380, + "time": 0.40875912408759124, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2392, + "time": 0.410844629822732, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2392, + "time": 0.410844629822732, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.4171011470281544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2441, + "time": 0.41918665276329514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2441, + "time": 0.41918665276329514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2453, + "time": 0.42127215849843586, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2453, + "time": 0.42127215849843586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.42127215849843586, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.4233576642335767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2465, + "time": 0.4233576642335767, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2489, + "time": 0.4275286757038582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2489, + "time": 0.4275286757038582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.429614181438999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2513, + "time": 0.43169968717413976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2513, + "time": 0.43169968717413976, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2526, + "time": 0.43378519290928047, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2538, + "time": 0.43587069864442135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2538, + "time": 0.43587069864442135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2550, + "time": 0.43795620437956206, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2550, + "time": 0.43795620437956206, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2550, + "time": 0.43795620437956206, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2562, + "time": 0.44004171011470283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2562, + "time": 0.44004171011470283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2574, + "time": 0.4421272158498436, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2574, + "time": 0.4421272158498436, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2574, + "time": 0.4421272158498436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2586, + "time": 0.44421272158498437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2586, + "time": 0.44421272158498437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4462982273201252, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4462982273201252, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4462982273201252, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2611, + "time": 0.44838373305526597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2611, + "time": 0.44838373305526597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2623, + "time": 0.4504692387904067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2647, + "time": 0.4546402502606882, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2720, + "time": 0.4671532846715329, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2744, + "time": 0.4713242961418144, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2793, + "time": 0.47966631908237756, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2817, + "time": 0.48383733055265904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2829, + "time": 0.4859228362877998, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2829, + "time": 0.4859228362877998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2841, + "time": 0.4880083420229406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2841, + "time": 0.4880083420229406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2841, + "time": 0.4880083420229406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2853, + "time": 0.4900938477580814, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2853, + "time": 0.4900938477580814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2878, + "time": 0.49426485922836294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2878, + "time": 0.49426485922836294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2890, + "time": 0.49635036496350365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2902, + "time": 0.4984358706986444, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2902, + "time": 0.4984358706986444, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2914, + "time": 0.5005213764337852, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2926, + "time": 0.502606882168926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2926, + "time": 0.502606882168926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2938, + "time": 0.5046923879040668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2938, + "time": 0.5046923879040668, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2938, + "time": 0.5046923879040668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2951, + "time": 0.5067778936392076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2951, + "time": 0.5067778936392076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2963, + "time": 0.5088633993743483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2963, + "time": 0.5088633993743483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2975, + "time": 0.5109489051094891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2975, + "time": 0.5109489051094891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2987, + "time": 0.5130344108446299, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2987, + "time": 0.5130344108446299, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3011, + "time": 0.5172054223149114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3036, + "time": 0.5213764337851929, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3108, + "time": 0.5338894681960376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5380604796663191, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3181, + "time": 0.5464025026068823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3206, + "time": 0.5505735140771637, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3230, + "time": 0.5547445255474454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3254, + "time": 0.5589155370177269, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3278, + "time": 0.5630865484880083, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3254, + "time": 0.5589155370177269, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3278, + "time": 0.5630865484880083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3303, + "time": 0.56725755995829, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3327, + "time": 0.5714285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5755995828988529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3376, + "time": 0.5797705943691346, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5755995828988529, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3376, + "time": 0.5797705943691346, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3400, + "time": 0.5839416058394161, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3473, + "time": 0.5964546402502607, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3497, + "time": 0.6006256517205423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.6131386861313869, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3594, + "time": 0.6173096976016684, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3618, + "time": 0.62148070907195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3691, + "time": 0.6339937434827947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3691, + "time": 0.6339937434827947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3716, + "time": 0.6381647549530761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3788, + "time": 0.6506777893639208, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3885, + "time": 0.6673618352450469, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3898, + "time": 0.6694473409801877, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3898, + "time": 0.6694473409801877, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3910, + "time": 0.6715328467153285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3922, + "time": 0.6736183524504693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3922, + "time": 0.6736183524504693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3934, + "time": 0.6757038581856101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3946, + "time": 0.6777893639207508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3946, + "time": 0.6777893639207508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3958, + "time": 0.6798748696558916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3958, + "time": 0.6798748696558916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6923879040667363, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4055, + "time": 0.6965589155370178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4153, + "time": 0.7132429614181439, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4165, + "time": 0.7153284671532848, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4165, + "time": 0.7153284671532848, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4177, + "time": 0.7174139728884256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4189, + "time": 0.7194994786235663, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4189, + "time": 0.7194994786235663, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4201, + "time": 0.7215849843587071, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4201, + "time": 0.7215849843587071, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4201, + "time": 0.7215849843587071, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4213, + "time": 0.7236704900938478, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4213, + "time": 0.7236704900938478, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4225, + "time": 0.7257559958289885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4225, + "time": 0.7257559958289885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4225, + "time": 0.7257559958289885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4238, + "time": 0.7278415015641293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4238, + "time": 0.7278415015641293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4250, + "time": 0.7299270072992701, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4250, + "time": 0.7299270072992701, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4274, + "time": 0.7340980187695516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4286, + "time": 0.7361835245046925, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4286, + "time": 0.7361835245046925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4298, + "time": 0.7382690302398333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4298, + "time": 0.7382690302398333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4298, + "time": 0.7382690302398333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4310, + "time": 0.740354535974974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4310, + "time": 0.740354535974974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4323, + "time": 0.7424400417101148, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4323, + "time": 0.7424400417101148, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5096,13 +8477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2937, - "time": 0.5046923879040668, + "noteOrder": 4323, + "time": 0.7424400417101148, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5119,11 +8500,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3010, - "time": 0.5172054223149114, + "noteOrder": 4335, + "time": 0.7445255474452556, "position": { "x": 3, "y": 0 @@ -5137,16 +8518,85 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4335, + "time": 0.7445255474452556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4347, + "time": 0.7466110531803963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4347, + "time": 0.7466110531803963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 3034, - "time": 0.5213764337851929, + "noteOrder": 4371, + "time": 0.7507820646506779, "position": { "x": 3, "y": 0 @@ -5165,13 +8615,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 199, "indexInLine": 2, "isSliding": false, - "noteOrder": 3107, - "time": 0.5338894681960376, + "noteOrder": 4395, + "time": 0.7549530761209593, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5188,11 +8638,57 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 199, "indexInLine": 3, "isSliding": false, - "noteOrder": 3131, - "time": 0.5380604796663191, + "noteOrder": 4468, + "time": 0.767466110531804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4468, + "time": 0.767466110531804, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4493, + "time": 0.7716371220020856, "position": { "x": 5, "y": 0 @@ -5206,18 +8702,41 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4493, + "time": 0.7716371220020856, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 4, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3180, - "time": 0.5464025026068822, + "noteOrder": 4517, + "time": 0.7758081334723671, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5234,11 +8753,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3204, - "time": 0.5505735140771637, + "noteOrder": 4565, + "time": 0.7841501564129303, "position": { "x": 7, "y": 0 @@ -5257,11 +8776,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3228, - "time": 0.5547445255474452, + "noteOrder": 4578, + "time": 0.786235662148071, "position": { "x": 7, "y": 0 @@ -5280,11 +8799,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3253, - "time": 0.5589155370177268, + "noteOrder": 4578, + "time": 0.786235662148071, "position": { "x": 6, "y": 0 @@ -5303,11 +8822,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3277, - "time": 0.5630865484880083, + "noteOrder": 4590, + "time": 0.7883211678832117, "position": { "x": 6, "y": 0 @@ -5326,13 +8845,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3253, - "time": 0.5589155370177268, + "noteOrder": 4590, + "time": 0.7883211678832117, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5344,18 +8863,87 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 3277, - "time": 0.5630865484880083, + "noteOrder": 4590, + "time": 0.7883211678832117, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7904066736183525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7904066736183525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5372,13 +8960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3301, - "time": 0.5672575599582899, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5395,13 +8983,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 3325, - "time": 0.5714285714285714, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5413,18 +9001,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3350, - "time": 0.575599582898853, + "noteOrder": 4626, + "time": 0.794577685088634, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5441,11 +9029,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3374, - "time": 0.5797705943691345, + "noteOrder": 4626, + "time": 0.794577685088634, "position": { "x": 6, "y": 0 @@ -5464,13 +9052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3350, - "time": 0.575599582898853, + "noteOrder": 4638, + "time": 0.7966631908237748, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5482,18 +9070,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3374, - "time": 0.5797705943691345, + "noteOrder": 4638, + "time": 0.7966631908237748, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5505,16 +9093,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3398, - "time": 0.583941605839416, + "noteOrder": 4663, + "time": 0.8008342022940563, "position": { "x": 7, "y": 0 @@ -5528,16 +9116,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3471, - "time": 0.5964546402502606, + "noteOrder": 4675, + "time": 0.8029197080291972, "position": { "x": 7, "y": 0 @@ -5551,18 +9139,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3495, - "time": 0.6006256517205422, + "noteOrder": 4675, + "time": 0.8029197080291972, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5579,13 +9167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3568, - "time": 0.6131386861313869, + "noteOrder": 4687, + "time": 0.805005213764338, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5602,13 +9190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3592, - "time": 0.6173096976016684, + "noteOrder": 4687, + "time": 0.805005213764338, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5625,13 +9213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 3617, - "time": 0.6214807090719499, + "noteOrder": 4687, + "time": 0.805005213764338, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5643,18 +9231,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 212, "indexInLine": 2, "isSliding": false, - "noteOrder": 3690, - "time": 0.6339937434827946, + "noteOrder": 4699, + "time": 0.8070907194994787, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5666,18 +9254,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3690, - "time": 0.6339937434827946, + "noteOrder": 4699, + "time": 0.8070907194994787, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5694,13 +9282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3714, - "time": 0.6381647549530761, + "noteOrder": 4711, + "time": 0.8091762252346195, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5717,13 +9305,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3787, - "time": 0.6506777893639207, + "noteOrder": 4711, + "time": 0.8091762252346195, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5740,11 +9328,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3884, - "time": 0.6673618352450469, + "noteOrder": 4711, + "time": 0.8091762252346195, "position": { "x": 7, "y": 0 @@ -5758,18 +9346,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3908, - "time": 0.6715328467153284, + "noteOrder": 4723, + "time": 0.8112617309697603, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5786,13 +9374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3932, - "time": 0.6757038581856101, + "noteOrder": 4723, + "time": 0.8112617309697603, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5804,18 +9392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4029, - "time": 0.6923879040667361, + "noteOrder": 4735, + "time": 0.8133472367049009, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5832,13 +9420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4054, - "time": 0.6965589155370178, + "noteOrder": 4735, + "time": 0.8133472367049009, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5855,11 +9443,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4151, - "time": 0.7132429614181438, + "noteOrder": 4760, + "time": 0.8175182481751825, "position": { "x": 7, "y": 0 @@ -5878,13 +9466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4175, - "time": 0.7174139728884255, + "noteOrder": 4784, + "time": 0.821689259645464, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5896,18 +9484,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4199, - "time": 0.721584984358707, + "noteOrder": 4857, + "time": 0.8342022940563087, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5924,13 +9512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4224, - "time": 0.7257559958289884, + "noteOrder": 4930, + "time": 0.8467153284671534, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5942,16 +9530,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4272, - "time": 0.7340980187695516, + "noteOrder": 4857, + "time": 0.8342022940563087, "position": { "x": 3, "y": 0 @@ -5965,18 +9553,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4296, - "time": 0.7382690302398331, + "noteOrder": 4881, + "time": 0.8383733055265903, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5993,13 +9581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4321, - "time": 0.7424400417101147, + "noteOrder": 4905, + "time": 0.8425443169968717, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6011,16 +9599,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4369, - "time": 0.7507820646506778, + "noteOrder": 4930, + "time": 0.8467153284671534, "position": { "x": 3, "y": 0 @@ -6039,13 +9627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4393, - "time": 0.7549530761209593, + "noteOrder": 4954, + "time": 0.8508863399374349, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6057,18 +9645,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 220, "indexInLine": 2, "isSliding": false, - "noteOrder": 4466, - "time": 0.767466110531804, + "noteOrder": 4966, + "time": 0.8529718456725757, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6080,18 +9668,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4466, - "time": 0.767466110531804, + "noteOrder": 4966, + "time": 0.8529718456725757, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6108,13 +9696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 4491, - "time": 0.7716371220020855, + "noteOrder": 4978, + "time": 0.8550573514077164, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6126,18 +9714,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4491, - "time": 0.7716371220020855, + "noteOrder": 4990, + "time": 0.8571428571428572, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6154,13 +9742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4515, - "time": 0.775808133472367, + "noteOrder": 4990, + "time": 0.8571428571428572, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6177,11 +9765,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4563, - "time": 0.7841501564129301, + "noteOrder": 5003, + "time": 0.859228362877998, "position": { "x": 7, "y": 0 @@ -6200,11 +9788,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4588, - "time": 0.7883211678832117, + "noteOrder": 5015, + "time": 0.8613138686131387, "position": { "x": 7, "y": 0 @@ -6218,18 +9806,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4612, - "time": 0.7924921793534933, + "noteOrder": 5015, + "time": 0.8613138686131387, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6246,13 +9834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4660, - "time": 0.8008342022940563, + "noteOrder": 5027, + "time": 0.8633993743482795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6264,16 +9852,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4685, - "time": 0.8050052137643378, + "noteOrder": 5027, + "time": 0.8633993743482795, "position": { "x": 7, "y": 0 @@ -6292,13 +9880,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, - "time": 0.8091762252346194, + "noteOrder": 5051, + "time": 0.8675703858185609, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6315,13 +9903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, - "time": 0.8175182481751824, + "noteOrder": 5075, + "time": 0.8717413972888427, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6333,18 +9921,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 225, "indexInLine": 1, "isSliding": false, - "noteOrder": 4782, - "time": 0.821689259645464, + "noteOrder": 5075, + "time": 0.8717413972888427, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6361,13 +9949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 225, "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8342022940563086, + "noteOrder": 5100, + "time": 0.8759124087591241, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6384,13 +9972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 3, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4927, - "time": 0.8467153284671532, + "noteOrder": 5100, + "time": 0.8759124087591241, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6402,18 +9990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8342022940563086, + "noteOrder": 5124, + "time": 0.8800834202294057, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6430,13 +10018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 4879, - "time": 0.8383733055265903, + "noteOrder": 5124, + "time": 0.8800834202294057, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6448,18 +10036,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 227, "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.8425443169968717, + "noteOrder": 5148, + "time": 0.8842544316996872, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6471,18 +10059,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 3, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4927, - "time": 0.8467153284671532, + "noteOrder": 5197, + "time": 0.8925964546402504, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6499,13 +10087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4952, - "time": 0.8508863399374349, + "noteOrder": 5221, + "time": 0.8967674661105319, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6517,18 +10105,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4976, - "time": 0.8550573514077163, + "noteOrder": 5245, + "time": 0.9009384775808134, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6540,16 +10128,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5000, - "time": 0.859228362877998, + "noteOrder": 5258, + "time": 0.9030239833159541, "position": { "x": 7, "y": 0 @@ -6568,11 +10156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5049, - "time": 0.8675703858185609, + "noteOrder": 5258, + "time": 0.9030239833159541, "position": { "x": 6, "y": 0 @@ -6586,18 +10174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5073, - "time": 0.8717413972888426, + "noteOrder": 5270, + "time": 0.9051094890510949, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6609,18 +10197,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5073, - "time": 0.8717413972888426, + "noteOrder": 5270, + "time": 0.9051094890510949, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6637,13 +10225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, + "lineGroupId": 233, "indexInLine": 1, "isSliding": false, - "noteOrder": 5097, - "time": 0.875912408759124, + "noteOrder": 5270, + "time": 0.9051094890510949, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6655,18 +10243,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5097, - "time": 0.875912408759124, + "noteOrder": 5282, + "time": 0.9071949947862357, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6683,13 +10271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5122, - "time": 0.8800834202294057, + "noteOrder": 5282, + "time": 0.9071949947862357, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6706,13 +10294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5122, - "time": 0.8800834202294057, + "noteOrder": 5294, + "time": 0.9092805005213764, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6724,18 +10312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5146, - "time": 0.8842544316996872, + "noteOrder": 5306, + "time": 0.9113660062565172, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6747,18 +10335,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5194, - "time": 0.8925964546402503, + "noteOrder": 5318, + "time": 0.9134515119916581, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6775,13 +10363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 5219, - "time": 0.8967674661105318, + "noteOrder": 5343, + "time": 0.9176225234619396, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6793,18 +10381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5243, - "time": 0.9009384775808134, + "noteOrder": 5367, + "time": 0.9217935349322212, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6821,13 +10409,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5267, - "time": 0.9051094890510949, + "noteOrder": 5367, + "time": 0.9217935349322212, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6844,13 +10432,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 237, "indexInLine": 2, "isSliding": false, - "noteOrder": 5292, - "time": 0.9092805005213763, + "noteOrder": 5391, + "time": 0.9259645464025027, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6867,11 +10455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 3, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5304, - "time": 0.9113660062565172, + "noteOrder": 5391, + "time": 0.9259645464025027, "position": { "x": 4, "y": 0 @@ -6885,18 +10473,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 4, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.913451511991658, + "noteOrder": 5415, + "time": 0.9301355578727841, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6908,18 +10496,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5340, - "time": 0.9176225234619395, + "noteOrder": 5415, + "time": 0.9301355578727841, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6931,16 +10519,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5364, - "time": 0.921793534932221, + "noteOrder": 5440, + "time": 0.9343065693430658, "position": { "x": 5, "y": 0 @@ -6954,18 +10542,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5364, - "time": 0.921793534932221, + "noteOrder": 5488, + "time": 0.9426485922836289, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6977,16 +10565,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5389, - "time": 0.9259645464025026, + "noteOrder": 5513, + "time": 0.9468196037539104, "position": { "x": 5, "y": 0 @@ -7000,18 +10588,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5389, - "time": 0.9259645464025026, + "noteOrder": 5537, + "time": 0.9509906152241919, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7023,18 +10611,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5413, - "time": 0.9301355578727842, + "noteOrder": 5549, + "time": 0.9530761209593327, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7046,18 +10634,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5413, - "time": 0.9301355578727842, + "noteOrder": 5549, + "time": 0.9530761209593327, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7074,13 +10662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 1, + "lineGroupId": 244, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5437, - "time": 0.9343065693430657, + "noteOrder": 5561, + "time": 0.9551616266944735, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -7097,13 +10685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5486, - "time": 0.9426485922836289, + "noteOrder": 5561, + "time": 0.9551616266944735, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7115,18 +10703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 5510, - "time": 0.9468196037539103, + "noteOrder": 5561, + "time": 0.9551616266944735, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7143,11 +10731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5534, - "time": 0.9509906152241918, + "noteOrder": 5573, + "time": 0.9572471324296143, "position": { "x": 3, "y": 0 @@ -7161,18 +10749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5559, - "time": 0.9551616266944735, + "noteOrder": 5573, + "time": 0.9572471324296143, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7190,10 +10778,10 @@ }, { "lineGroupId": 245, - "indexInLine": 2, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5583, - "time": 0.9593326381647549, + "noteOrder": 5585, + "time": 0.9593326381647551, "position": { "x": 4, "y": 0 @@ -7213,10 +10801,10 @@ }, { "lineGroupId": 245, - "indexInLine": 3, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5595, - "time": 0.9614181438998957, + "noteOrder": 5598, + "time": 0.9614181438998958, "position": { "x": 6, "y": 0 @@ -7236,9 +10824,9 @@ }, { "lineGroupId": 245, - "indexInLine": 4, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5607, + "noteOrder": 5610, "time": 0.9635036496350365, "position": { "x": 6, @@ -7259,10 +10847,10 @@ }, { "lineGroupId": 245, - "indexInLine": 5, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5704, - "time": 0.9801876955161626, + "noteOrder": 5707, + "time": 0.9801876955161628, "position": { "x": 6, "y": 0 @@ -7282,10 +10870,10 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5631, - "time": 0.967674661105318, + "noteOrder": 5634, + "time": 0.9676746611053181, "position": { "x": 7, "y": 0 @@ -7305,10 +10893,10 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5656, - "time": 0.9718456725755995, + "noteOrder": 5658, + "time": 0.9718456725755996, "position": { "x": 3, "y": 0 @@ -7328,9 +10916,9 @@ }, { "lineGroupId": 248, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5680, + "noteOrder": 5683, "time": 0.9760166840458812, "position": { "x": 3, @@ -7351,10 +10939,10 @@ }, { "lineGroupId": 248, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5704, - "time": 0.9801876955161626, + "noteOrder": 5707, + "time": 0.9801876955161628, "position": { "x": 7, "y": 0 diff --git a/tracks/Anxiety/279_difficulty_1b.json b/tracks/Anxiety/279_difficulty_1b.json index e54b1beb..b990c6bf 100644 --- a/tracks/Anxiety/279_difficulty_1b.json +++ b/tracks/Anxiety/279_difficulty_1b.json @@ -74,7 +74,7 @@ }, { "noteOrder": 170, - "time": 0.029197080291970802, + "time": 0.029197080291970805, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 218, - "time": 0.037539103232533885, + "noteOrder": 219, + "time": 0.03753910323253389, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 340, - "time": 0.058394160583941604, + "time": 0.05839416058394161, "position": { "x": 8, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 388, + "noteOrder": 389, "time": 0.0667361835245047, "position": { "x": 2, @@ -274,7 +274,7 @@ }, { "noteOrder": 413, - "time": 0.07090719499478623, + "time": 0.07090719499478625, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 437, - "time": 0.07507820646506777, + "time": 0.07507820646506778, "position": { "x": 2, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 461, - "time": 0.07924921793534932, + "time": 0.07924921793534934, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 510, - "time": 0.0875912408759124, + "time": 0.08759124087591241, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 558, + "noteOrder": 559, "time": 0.0959332638164755, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 558, + "noteOrder": 559, "time": 0.0959332638164755, "position": { "x": 6, @@ -434,7 +434,7 @@ }, { "noteOrder": 607, - "time": 0.10427528675703858, + "time": 0.1042752867570386, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.11261730969760167, "position": { "x": 4, @@ -494,7 +494,7 @@ }, { "noteOrder": 704, - "time": 0.12095933263816475, + "time": 0.12095933263816476, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 704, - "time": 0.12095933263816475, + "time": 0.12095933263816476, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.1251303441084463, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.1251303441084463, "position": { "x": 7, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 752, + "noteOrder": 753, "time": 0.12930135557872785, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 752, + "noteOrder": 753, "time": 0.12930135557872785, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 825, - "time": 0.14181438998957246, + "noteOrder": 826, + "time": 0.1418143899895725, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 825, - "time": 0.14181438998957246, + "noteOrder": 826, + "time": 0.1418143899895725, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 850, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 3, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 850, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1068, + "noteOrder": 1069, "time": 0.1835245046923879, "position": { "x": 7, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1092, - "time": 0.18769551616266944, + "noteOrder": 1093, + "time": 0.18769551616266947, "position": { "x": 8, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1141, - "time": 0.19603753910323252, + "time": 0.19603753910323257, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1189, - "time": 0.2043795620437956, + "noteOrder": 1190, + "time": 0.20437956204379562, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1238, + "noteOrder": 1239, "time": 0.21272158498435872, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1456, + "noteOrder": 1457, "time": 0.2502606882168926, "position": { "x": 3, @@ -874,7 +874,7 @@ }, { "noteOrder": 1481, - "time": 0.2544316996871741, + "time": 0.25443169968717416, "position": { "x": 2, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1505, + "noteOrder": 1506, "time": 0.2586027111574557, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1530, "time": 0.26277372262773724, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1553, + "noteOrder": 1554, "time": 0.2669447340980188, "position": { "x": 7, @@ -974,7 +974,7 @@ }, { "noteOrder": 1748, - "time": 0.3003128258602711, + "time": 0.30031282586027114, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1772, + "noteOrder": 1773, "time": 0.3044838373305527, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1796, + "noteOrder": 1797, "time": 0.3086548488008342, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1820, + "noteOrder": 1821, "time": 0.31282586027111575, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1893, - "time": 0.32533889468196037, + "noteOrder": 1894, + "time": 0.3253388946819604, "position": { "x": 7, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1918, - "time": 0.3295099061522419, + "time": 0.32950990615224196, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1991, "time": 0.3420229405630866, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2015, - "time": 0.34619395203336806, + "noteOrder": 2016, + "time": 0.34619395203336817, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2136, + "noteOrder": 2137, "time": 0.3670490093847758, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2160, - "time": 0.37122002085505734, + "noteOrder": 2161, + "time": 0.3712200208550574, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.3753910323253389, + "noteOrder": 2186, + "time": 0.37539103232533894, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2209, - "time": 0.3795620437956204, + "noteOrder": 2210, + "time": 0.3795620437956205, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2282, - "time": 0.39207507820646503, + "noteOrder": 2283, + "time": 0.39207507820646514, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.3962460896767466, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.4087591240875912, + "noteOrder": 2380, + "time": 0.40875912408759124, "position": { "x": 8, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.4129301355578728, + "noteOrder": 2404, + "time": 0.41293013555787283, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2646, - "time": 0.45464025026068816, + "noteOrder": 2647, + "time": 0.4546402502606882, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2670, - "time": 0.45881126173096975, + "noteOrder": 2671, + "time": 0.4588112617309698, "position": { "x": 2, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2694, - "time": 0.4629822732012513, + "noteOrder": 2696, + "time": 0.46298227320125135, "position": { "x": 8, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2743, + "noteOrder": 2744, "time": 0.4713242961418144, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2791, - "time": 0.47966631908237745, + "noteOrder": 2793, + "time": 0.47966631908237756, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3036, "time": 0.5213764337851929, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3058, + "noteOrder": 3060, "time": 0.5255474452554745, "position": { "x": 8, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.529718456725756, "position": { "x": 2, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3131, + "noteOrder": 3133, "time": 0.5380604796663191, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.5464025026068822, + "noteOrder": 3181, + "time": 0.5464025026068823, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3206, "time": 0.5505735140771637, "position": { "x": 3, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.5589155370177268, + "noteOrder": 3254, + "time": 0.5589155370177269, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.5589155370177268, + "noteOrder": 3254, + "time": 0.5589155370177269, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3301, - "time": 0.5672575599582899, + "noteOrder": 3303, + "time": 0.56725755995829, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3350, - "time": 0.575599582898853, + "noteOrder": 3351, + "time": 0.5755995828988529, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3350, - "time": 0.575599582898853, + "noteOrder": 3351, + "time": 0.5755995828988529, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3398, - "time": 0.583941605839416, + "noteOrder": 3400, + "time": 0.5839416058394161, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3495, - "time": 0.6006256517205422, + "noteOrder": 3497, + "time": 0.6006256517205423, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3617, - "time": 0.6214807090719499, + "noteOrder": 3618, + "time": 0.62148070907195, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3641, + "noteOrder": 3643, "time": 0.6256517205422315, "position": { "x": 2, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3665, - "time": 0.629822732012513, + "noteOrder": 3667, + "time": 0.6298227320125132, "position": { "x": 8, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3716, "time": 0.6381647549530761, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3738, - "time": 0.6423357664233578, + "noteOrder": 3740, + "time": 0.6423357664233577, "position": { "x": 8, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3762, + "noteOrder": 3764, "time": 0.6465067778936392, "position": { "x": 2, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3884, + "noteOrder": 3885, "time": 0.6673618352450469, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3908, - "time": 0.6715328467153284, + "noteOrder": 3910, + "time": 0.6715328467153285, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3932, + "noteOrder": 3934, "time": 0.6757038581856101, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3932, + "noteOrder": 3934, "time": 0.6757038581856101, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6798748696558915, + "noteOrder": 3958, + "time": 0.6798748696558916, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6798748696558915, + "noteOrder": 3958, + "time": 0.6798748696558916, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4078, - "time": 0.7007299270072992, + "noteOrder": 4080, + "time": 0.7007299270072993, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4102, + "noteOrder": 4104, "time": 0.7049009384775808, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4126, + "noteOrder": 4128, "time": 0.7090719499478624, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4151, - "time": 0.7132429614181438, + "noteOrder": 4153, + "time": 0.7132429614181439, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4345, + "noteOrder": 4347, "time": 0.7466110531803963, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4393, + "noteOrder": 4395, "time": 0.7549530761209593, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4418, - "time": 0.7591240875912408, + "noteOrder": 4420, + "time": 0.759124087591241, "position": { "x": 2, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7632950990615224, + "noteOrder": 4444, + "time": 0.7632950990615225, "position": { "x": 8, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4491, - "time": 0.7716371220020855, + "noteOrder": 4493, + "time": 0.7716371220020856, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4515, - "time": 0.775808133472367, + "noteOrder": 4517, + "time": 0.7758081334723671, "position": { "x": 8, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4539, - "time": 0.7799791449426486, + "noteOrder": 4541, + "time": 0.7799791449426487, "position": { "x": 2, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.8133472367049009, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.821689259645464, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.8258602711157456, + "noteOrder": 4808, + "time": 0.8258602711157457, "position": { "x": 8, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.8300312825860271, + "noteOrder": 4833, + "time": 0.8300312825860272, "position": { "x": 2, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4952, + "noteOrder": 4954, "time": 0.8508863399374349, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.8550573514077163, + "noteOrder": 4978, + "time": 0.8550573514077164, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5000, + "noteOrder": 5003, "time": 0.859228362877998, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5000, + "noteOrder": 5003, "time": 0.859228362877998, "position": { "x": 4, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.8633993743482794, + "noteOrder": 5027, + "time": 0.8633993743482795, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.8633993743482794, + "noteOrder": 5027, + "time": 0.8633993743482795, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5122, + "noteOrder": 5124, "time": 0.8800834202294057, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5219, - "time": 0.8967674661105318, + "noteOrder": 5221, + "time": 0.8967674661105319, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5364, - "time": 0.921793534932221, + "noteOrder": 5367, + "time": 0.9217935349322212, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5389, - "time": 0.9259645464025026, + "noteOrder": 5391, + "time": 0.9259645464025027, "position": { "x": 2, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5413, - "time": 0.9301355578727842, + "noteOrder": 5415, + "time": 0.9301355578727841, "position": { "x": 8, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5461, - "time": 0.9384775808133472, + "noteOrder": 5464, + "time": 0.9384775808133473, "position": { "x": 4, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5486, + "noteOrder": 5488, "time": 0.9426485922836289, "position": { "x": 8, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5510, - "time": 0.9468196037539103, + "noteOrder": 5513, + "time": 0.9468196037539104, "position": { "x": 2, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 5561, "time": 0.9551616266944735, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5607, + "noteOrder": 5610, "time": 0.9635036496350365, "position": { "x": 6, @@ -2516,10 +2516,33 @@ "lineNodes": [ { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, - "time": 0.15015641293013554, + "time": 0.15015641293013557, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 899, + "time": 0.1543274244004171, "position": { "x": 7, "y": 0 @@ -2537,12 +2560,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 899, + "time": 0.1543274244004171, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 923, + "time": 0.15849843587069867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 923, + "time": 0.15849843587069867, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 922, - "time": 0.15849843587069865, + "noteOrder": 923, + "time": 0.15849843587069867, "position": { "x": 7, "y": 0 @@ -2561,11 +2653,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 971, - "time": 0.16684045881126172, + "noteOrder": 947, + "time": 0.1626694473409802, "position": { "x": 7, "y": 0 @@ -2579,18 +2671,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1019, - "time": 0.1751824817518248, + "noteOrder": 947, + "time": 0.1626694473409802, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2607,13 +2699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1165, - "time": 0.20020855057351408, + "noteOrder": 971, + "time": 0.16684045881126172, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2630,13 +2722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1189, - "time": 0.2043795620437956, + "noteOrder": 971, + "time": 0.16684045881126172, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2653,11 +2745,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1214, - "time": 0.20855057351407716, + "noteOrder": 971, + "time": 0.16684045881126172, "position": { "x": 7, "y": 0 @@ -2676,11 +2768,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1238, - "time": 0.21272158498435872, + "noteOrder": 996, + "time": 0.1710114702815433, "position": { "x": 7, "y": 0 @@ -2699,13 +2791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1262, - "time": 0.21689259645464024, + "noteOrder": 996, + "time": 0.1710114702815433, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2717,18 +2809,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1311, - "time": 0.22523461939520334, + "noteOrder": 1020, + "time": 0.17518248175182483, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2745,13 +2837,36 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1359, - "time": 0.23357664233576642, + "noteOrder": 1020, + "time": 0.17518248175182483, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1020, + "time": 0.17518248175182483, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2768,13 +2883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1408, - "time": 0.2419186652763295, + "noteOrder": 1044, + "time": 0.1793534932221064, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2786,16 +2901,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1602, - "time": 0.27528675703858185, + "noteOrder": 1044, + "time": 0.1793534932221064, "position": { "x": 6, "y": 0 @@ -2809,16 +2924,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1626, - "time": 0.2794577685088634, + "noteOrder": 1069, + "time": 0.1835245046923879, "position": { "x": 6, "y": 0 @@ -2832,18 +2947,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1602, - "time": 0.27528675703858185, + "noteOrder": 1069, + "time": 0.1835245046923879, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2860,13 +2975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1626, - "time": 0.2794577685088634, + "noteOrder": 1166, + "time": 0.20020855057351408, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2883,11 +2998,34 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1651, - "time": 0.28362877997914493, + "noteOrder": 1190, + "time": 0.20437956204379562, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1214, + "time": 0.2085505735140772, "position": { "x": 7, "y": 0 @@ -2906,13 +3044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1675, - "time": 0.2877997914494265, + "noteOrder": 1239, + "time": 0.21272158498435872, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2929,11 +3067,34 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1263, + "time": 0.21689259645464024, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1675, - "time": 0.2877997914494265, + "noteOrder": 1287, + "time": 0.2210636079249218, "position": { "x": 3, "y": 0 @@ -2952,13 +3113,2474 @@ "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1287, + "time": 0.2210636079249218, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1311, + "time": 0.22523461939520334, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1311, + "time": 0.22523461939520334, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1311, + "time": 0.22523461939520334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1336, + "time": 0.2294056308654849, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1336, + "time": 0.2294056308654849, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1360, + "time": 0.23357664233576644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1360, + "time": 0.23357664233576644, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1360, + "time": 0.23357664233576644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1384, + "time": 0.23774765380604798, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1384, + "time": 0.23774765380604798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1408, + "time": 0.24191866527632952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1408, + "time": 0.24191866527632952, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1408, + "time": 0.24191866527632952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1433, + "time": 0.24608967674661109, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1433, + "time": 0.24608967674661109, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1457, + "time": 0.2502606882168926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1457, + "time": 0.2502606882168926, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1603, + "time": 0.27528675703858185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1627, + "time": 0.27945776850886345, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1603, + "time": 0.27528675703858185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1627, + "time": 0.27945776850886345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1651, + "time": 0.283628779979145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1676, + "time": 0.28779979144942647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1676, + "time": 0.28779979144942647, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1700, + "time": 0.29197080291970806, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1700, + "time": 0.29197080291970806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1724, + "time": 0.2961418143899896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1724, + "time": 0.2961418143899896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1748, + "time": 0.30031282586027114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1846, + "time": 0.31699687174139735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1870, + "time": 0.32116788321167883, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1870, + "time": 0.32116788321167883, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1894, + "time": 0.3253388946819604, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1943, + "time": 0.33368091762252344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1967, + "time": 0.33785192909280504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1967, + "time": 0.33785192909280504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1991, + "time": 0.3420229405630866, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2040, + "time": 0.35036496350364965, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2064, + "time": 0.3545359749739312, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2064, + "time": 0.3545359749739312, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2088, + "time": 0.3587069864442128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2088, + "time": 0.3587069864442128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2113, + "time": 0.36287799791449427, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2113, + "time": 0.36287799791449427, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3670490093847758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.383733055265902, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.38790406673618355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2258, + "time": 0.38790406673618355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2283, + "time": 0.39207507820646514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2331, + "time": 0.40041710114702816, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2356, + "time": 0.40458811261730976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2404, + "time": 0.41293013555787283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.4171011470281544, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2453, + "time": 0.42127215849843586, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2453, + "time": 0.42127215849843586, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42544316996871745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.429614181438999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2501, + "time": 0.429614181438999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2526, + "time": 0.43378519290928047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2526, + "time": 0.43378519290928047, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2526, + "time": 0.43378519290928047, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2538, + "time": 0.43587069864442135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2538, + "time": 0.43587069864442135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2550, + "time": 0.43795620437956206, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2562, + "time": 0.44004171011470283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2562, + "time": 0.44004171011470283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2574, + "time": 0.4421272158498436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2586, + "time": 0.44421272158498437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2586, + "time": 0.44421272158498437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4462982273201252, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2611, + "time": 0.44838373305526597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2611, + "time": 0.44838373305526597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2623, + "time": 0.4504692387904067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2720, + "time": 0.4671532846715329, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2720, + "time": 0.4671532846715329, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2744, + "time": 0.4713242961418144, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2768, + "time": 0.47549530761209596, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2793, + "time": 0.47966631908237756, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2817, + "time": 0.48383733055265904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2841, + "time": 0.4880083420229406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2841, + "time": 0.4880083420229406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2866, + "time": 0.49217935349322217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2890, + "time": 0.49635036496350365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2890, + "time": 0.49635036496350365, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2914, + "time": 0.5005213764337852, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2914, + "time": 0.5005213764337852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2914, + "time": 0.5005213764337852, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2926, + "time": 0.502606882168926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2926, + "time": 0.502606882168926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2938, + "time": 0.5046923879040668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2951, + "time": 0.5067778936392076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2951, + "time": 0.5067778936392076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2963, + "time": 0.5088633993743483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2975, + "time": 0.5109489051094891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2975, + "time": 0.5109489051094891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2987, + "time": 0.5130344108446299, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2999, + "time": 0.5151199165797706, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2999, + "time": 0.5151199165797706, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3011, + "time": 0.5172054223149114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3108, + "time": 0.5338894681960376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3108, + "time": 0.5338894681960376, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5380604796663191, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 1699, - "time": 0.291970802919708, + "noteOrder": 3157, + "time": 0.5422314911366006, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2970,18 +5592,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.291970802919708, + "noteOrder": 3181, + "time": 0.5464025026068823, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2998,13 +5620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 1723, - "time": 0.2961418143899896, + "noteOrder": 3594, + "time": 0.6173096976016684, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3016,18 +5638,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1723, - "time": 0.2961418143899896, + "noteOrder": 3691, + "time": 0.6339937434827947, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3044,13 +5666,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 1748, - "time": 0.3003128258602711, + "noteOrder": 3691, + "time": 0.6339937434827947, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3062,18 +5684,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1845, - "time": 0.3169968717413973, + "noteOrder": 3788, + "time": 0.6506777893639208, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3090,13 +5712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 2, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1893, - "time": 0.32533889468196037, + "noteOrder": 3788, + "time": 0.6506777893639208, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3108,16 +5730,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1942, - "time": 0.33368091762252344, + "noteOrder": 3813, + "time": 0.6548488008342024, "position": { "x": 3, "y": 0 @@ -3136,13 +5758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 2, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1990, - "time": 0.3420229405630866, + "noteOrder": 3837, + "time": 0.6590198123044839, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3154,18 +5776,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2039, - "time": 0.3503649635036496, + "noteOrder": 3861, + "time": 0.6631908237747653, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3177,18 +5799,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 2063, - "time": 0.3545359749739312, + "noteOrder": 3983, + "time": 0.6840458811261731, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3200,16 +5822,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2063, - "time": 0.3545359749739312, + "noteOrder": 4007, + "time": 0.6882168925964547, "position": { "x": 7, "y": 0 @@ -3228,11 +5850,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2088, - "time": 0.3587069864442127, + "noteOrder": 4007, + "time": 0.6882168925964547, "position": { "x": 6, "y": 0 @@ -3251,11 +5873,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2088, - "time": 0.3587069864442127, + "noteOrder": 4031, + "time": 0.6923879040667363, "position": { "x": 3, "y": 0 @@ -3274,13 +5896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2112, - "time": 0.3628779979144942, + "noteOrder": 4055, + "time": 0.6965589155370178, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3297,13 +5919,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2112, - "time": 0.3628779979144942, + "noteOrder": 4055, + "time": 0.6965589155370178, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3315,18 +5937,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 2136, - "time": 0.3670490093847758, + "noteOrder": 4177, + "time": 0.7174139728884256, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3343,13 +5965,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.383733055265902, + "noteOrder": 4201, + "time": 0.7215849843587071, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3361,18 +5983,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 2, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2282, - "time": 0.39207507820646503, + "noteOrder": 4201, + "time": 0.7215849843587071, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3384,18 +6006,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2330, - "time": 0.40041710114702816, + "noteOrder": 4225, + "time": 0.7257559958289885, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3412,13 +6034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2355, - "time": 0.4045881126173097, + "noteOrder": 4225, + "time": 0.7257559958289885, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3435,13 +6057,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 2, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.4129301355578728, + "noteOrder": 4225, + "time": 0.7257559958289885, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3453,18 +6075,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.4171011470281543, + "noteOrder": 4250, + "time": 0.7299270072992701, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3481,13 +6103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2476, - "time": 0.42544316996871745, + "noteOrder": 4250, + "time": 0.7299270072992701, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3499,18 +6121,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2524, - "time": 0.43378519290928047, + "noteOrder": 4274, + "time": 0.7340980187695516, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3527,13 +6149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2549, - "time": 0.437956204379562, + "noteOrder": 4274, + "time": 0.7340980187695516, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3545,18 +6167,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2573, - "time": 0.4421272158498436, + "noteOrder": 4274, + "time": 0.7340980187695516, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3568,18 +6190,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2597, - "time": 0.44629822732012514, + "noteOrder": 4286, + "time": 0.7361835245046925, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3596,13 +6218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2622, - "time": 0.4504692387904067, + "noteOrder": 4286, + "time": 0.7361835245046925, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3614,18 +6236,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 2719, - "time": 0.46715328467153283, + "noteOrder": 4298, + "time": 0.7382690302398333, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3642,13 +6264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2719, - "time": 0.46715328467153283, + "noteOrder": 4310, + "time": 0.740354535974974, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3660,18 +6282,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2743, - "time": 0.4713242961418144, + "noteOrder": 4310, + "time": 0.740354535974974, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3683,18 +6305,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2767, - "time": 0.4754953076120959, + "noteOrder": 4323, + "time": 0.7424400417101148, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3706,18 +6328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2791, - "time": 0.47966631908237745, + "noteOrder": 4335, + "time": 0.7445255474452556, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3729,18 +6351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2816, - "time": 0.483837330552659, + "noteOrder": 4335, + "time": 0.7445255474452556, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3757,13 +6379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2864, - "time": 0.4921793534932221, + "noteOrder": 4371, + "time": 0.7507820646506779, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3780,13 +6402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2913, - "time": 0.5005213764337852, + "noteOrder": 4468, + "time": 0.767466110531804, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3798,16 +6420,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2937, - "time": 0.5046923879040668, + "noteOrder": 4468, + "time": 0.767466110531804, "position": { "x": 7, "y": 0 @@ -3821,18 +6443,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2961, - "time": 0.5088633993743482, + "noteOrder": 4565, + "time": 0.7841501564129303, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3849,13 +6471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2986, - "time": 0.5130344108446298, + "noteOrder": 4565, + "time": 0.7841501564129303, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3872,13 +6494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3010, - "time": 0.5172054223149114, + "noteOrder": 4590, + "time": 0.7883211678832117, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3890,16 +6512,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3107, - "time": 0.5338894681960376, + "noteOrder": 4590, + "time": 0.7883211678832117, "position": { "x": 4, "y": 0 @@ -3913,18 +6535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3107, - "time": 0.5338894681960376, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3941,13 +6563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3131, - "time": 0.5380604796663191, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3964,13 +6586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3156, - "time": 0.5422314911366006, + "noteOrder": 4614, + "time": 0.7924921793534933, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3987,13 +6609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3180, - "time": 0.5464025026068822, + "noteOrder": 4638, + "time": 0.7966631908237748, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4010,13 +6632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3592, - "time": 0.6173096976016684, + "noteOrder": 4638, + "time": 0.7966631908237748, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4028,18 +6650,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3690, - "time": 0.6339937434827946, + "noteOrder": 4663, + "time": 0.8008342022940563, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4051,18 +6673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3690, - "time": 0.6339937434827946, + "noteOrder": 4663, + "time": 0.8008342022940563, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4079,13 +6701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 3787, - "time": 0.6506777893639207, + "noteOrder": 4663, + "time": 0.8008342022940563, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4097,16 +6719,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3787, - "time": 0.6506777893639207, + "noteOrder": 4675, + "time": 0.8029197080291972, "position": { "x": 3, "y": 0 @@ -4125,13 +6747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3811, - "time": 0.6548488008342023, + "noteOrder": 4675, + "time": 0.8029197080291972, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4148,13 +6770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3835, - "time": 0.6590198123044838, + "noteOrder": 4687, + "time": 0.805005213764338, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4171,13 +6793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.6631908237747655, + "noteOrder": 4699, + "time": 0.8070907194994787, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4194,13 +6816,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3981, - "time": 0.6840458811261731, + "noteOrder": 4699, + "time": 0.8070907194994787, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4217,11 +6839,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4029, - "time": 0.6923879040667361, + "noteOrder": 4711, + "time": 0.8091762252346195, "position": { "x": 3, "y": 0 @@ -4240,13 +6862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4175, - "time": 0.7174139728884255, + "noteOrder": 4723, + "time": 0.8112617309697603, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4258,18 +6880,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4224, - "time": 0.7257559958289884, + "noteOrder": 4723, + "time": 0.8112617309697603, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4286,11 +6908,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4272, - "time": 0.7340980187695516, + "noteOrder": 4760, + "time": 0.8175182481751825, "position": { "x": 7, "y": 0 @@ -4309,13 +6931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4296, - "time": 0.7382690302398331, + "noteOrder": 4857, + "time": 0.8342022940563087, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4327,18 +6949,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4321, - "time": 0.7424400417101147, + "noteOrder": 4857, + "time": 0.8342022940563087, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4350,18 +6972,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4369, - "time": 0.7507820646506778, + "noteOrder": 4881, + "time": 0.8383733055265903, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4378,13 +7000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4466, - "time": 0.767466110531804, + "noteOrder": 4930, + "time": 0.8467153284671534, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4401,11 +7023,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.767466110531804, + "noteOrder": 4905, + "time": 0.8425443169968717, "position": { "x": 7, "y": 0 @@ -4424,13 +7046,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4563, - "time": 0.7841501564129301, + "noteOrder": 4930, + "time": 0.8467153284671534, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4447,11 +7069,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4563, - "time": 0.7841501564129301, + "noteOrder": 5051, + "time": 0.8675703858185609, "position": { "x": 3, "y": 0 @@ -4470,11 +7092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4612, - "time": 0.7924921793534933, + "noteOrder": 5063, + "time": 0.8696558915537019, "position": { "x": 3, "y": 0 @@ -4488,18 +7110,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4660, - "time": 0.8008342022940563, + "noteOrder": 5063, + "time": 0.8696558915537019, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4516,11 +7138,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4685, - "time": 0.8050052137643378, + "noteOrder": 5075, + "time": 0.8717413972888427, "position": { "x": 3, "y": 0 @@ -4539,11 +7161,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4709, - "time": 0.8091762252346194, + "noteOrder": 5088, + "time": 0.8738269030239834, "position": { "x": 3, "y": 0 @@ -4557,18 +7179,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4758, - "time": 0.8175182481751824, + "noteOrder": 5088, + "time": 0.8738269030239834, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4585,13 +7207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 4855, - "time": 0.8342022940563086, + "noteOrder": 5100, + "time": 0.8759124087591241, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4603,16 +7225,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8342022940563086, + "noteOrder": 5112, + "time": 0.8779979144942649, "position": { "x": 3, "y": 0 @@ -4631,11 +7253,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4879, - "time": 0.8383733055265903, + "noteOrder": 5112, + "time": 0.8779979144942649, "position": { "x": 4, "y": 0 @@ -4654,13 +7276,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4927, - "time": 0.8467153284671532, + "noteOrder": 5148, + "time": 0.8842544316996872, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4672,16 +7294,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.8425443169968717, + "noteOrder": 5160, + "time": 0.886339937434828, "position": { "x": 7, "y": 0 @@ -4700,11 +7322,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4927, - "time": 0.8467153284671532, + "noteOrder": 5160, + "time": 0.886339937434828, "position": { "x": 6, "y": 0 @@ -4723,13 +7345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5049, - "time": 0.8675703858185609, + "noteOrder": 5173, + "time": 0.8884254431699687, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4746,13 +7368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5073, - "time": 0.8717413972888426, + "noteOrder": 5185, + "time": 0.8905109489051096, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4764,18 +7386,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5097, - "time": 0.875912408759124, + "noteOrder": 5185, + "time": 0.8905109489051096, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4792,11 +7414,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5146, - "time": 0.8842544316996872, + "noteOrder": 5197, + "time": 0.8925964546402504, "position": { "x": 7, "y": 0 @@ -4815,11 +7437,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5170, - "time": 0.8884254431699686, + "noteOrder": 5209, + "time": 0.8946819603753912, "position": { "x": 7, "y": 0 @@ -4833,18 +7455,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5194, - "time": 0.8925964546402503, + "noteOrder": 5209, + "time": 0.8946819603753912, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4862,9 +7484,9 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5243, + "noteOrder": 5245, "time": 0.9009384775808134, "position": { "x": 3, @@ -4885,9 +7507,9 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5267, + "noteOrder": 5270, "time": 0.9051094890510949, "position": { "x": 4, @@ -4908,9 +7530,9 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5267, + "noteOrder": 5270, "time": 0.9051094890510949, "position": { "x": 7, @@ -4931,10 +7553,10 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5292, - "time": 0.9092805005213763, + "noteOrder": 5294, + "time": 0.9092805005213764, "position": { "x": 6, "y": 0 @@ -4954,10 +7576,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5292, - "time": 0.9092805005213763, + "noteOrder": 5294, + "time": 0.9092805005213764, "position": { "x": 3, "y": 0 @@ -4977,10 +7599,10 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.913451511991658, + "noteOrder": 5318, + "time": 0.9134515119916581, "position": { "x": 4, "y": 0 @@ -5000,10 +7622,10 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5316, - "time": 0.913451511991658, + "noteOrder": 5318, + "time": 0.9134515119916581, "position": { "x": 7, "y": 0 @@ -5023,10 +7645,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5340, - "time": 0.9176225234619395, + "noteOrder": 5343, + "time": 0.9176225234619396, "position": { "x": 6, "y": 0 @@ -5046,10 +7668,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5340, - "time": 0.9176225234619395, + "noteOrder": 5343, + "time": 0.9176225234619396, "position": { "x": 3, "y": 0 @@ -5069,10 +7691,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5437, - "time": 0.9343065693430657, + "noteOrder": 5440, + "time": 0.9343065693430658, "position": { "x": 6, "y": 0 @@ -5092,10 +7714,10 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5437, - "time": 0.9343065693430657, + "noteOrder": 5440, + "time": 0.9343065693430658, "position": { "x": 7, "y": 0 @@ -5115,10 +7737,10 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5534, - "time": 0.9509906152241918, + "noteOrder": 5537, + "time": 0.9509906152241919, "position": { "x": 4, "y": 0 @@ -5138,10 +7760,10 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5534, - "time": 0.9509906152241918, + "noteOrder": 5537, + "time": 0.9509906152241919, "position": { "x": 3, "y": 0 @@ -5161,9 +7783,9 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5559, + "noteOrder": 5561, "time": 0.9551616266944735, "position": { "x": 3, @@ -5184,10 +7806,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5583, - "time": 0.9593326381647549, + "noteOrder": 5585, + "time": 0.9593326381647551, "position": { "x": 7, "y": 0 @@ -5207,9 +7829,9 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5607, + "noteOrder": 5610, "time": 0.9635036496350365, "position": { "x": 7, @@ -5230,10 +7852,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5631, - "time": 0.967674661105318, + "noteOrder": 5634, + "time": 0.9676746611053181, "position": { "x": 3, "y": 0 @@ -5253,10 +7875,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5656, - "time": 0.9718456725755995, + "noteOrder": 5658, + "time": 0.9718456725755996, "position": { "x": 4, "y": 0 @@ -5276,10 +7898,10 @@ }, { "lineGroupId": 214, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5704, - "time": 0.9801876955161626, + "noteOrder": 5707, + "time": 0.9801876955161628, "position": { "x": 4, "y": 0 @@ -5299,9 +7921,9 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5680, + "noteOrder": 5683, "time": 0.9760166840458812, "position": { "x": 7, @@ -5322,10 +7944,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5704, - "time": 0.9801876955161626, + "noteOrder": 5707, + "time": 0.9801876955161628, "position": { "x": 6, "y": 0 diff --git a/tracks/Anxiety/info.json b/tracks/Anxiety/info.json index dcc85a42..29fa1f80 100644 --- a/tracks/Anxiety/info.json +++ b/tracks/Anxiety/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Anxiety", - "SongLength": "113.920000", + "SongLength": "103.967347", "SongAuthorName": "YUKIYANAGI", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Awakening Wings/381_difficulty_1a.json b/tracks/Awakening Wings/381_difficulty_1a.json index b4bf4de3..899d3382 100644 --- a/tracks/Awakening Wings/381_difficulty_1a.json +++ b/tracks/Awakening Wings/381_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.04054054054054054, + "time": 0.040540540540540536, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 218, - "time": 0.060810810810810814, + "time": 0.06081081081081081, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 266, - "time": 0.07432432432432433, + "time": 0.07432432432432431, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 363, - "time": 0.10135135135135136, + "time": 0.10135135135135134, "position": { "x": 8, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 411, - "time": 0.11486486486486486, + "time": 0.11486486486486487, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 459, - "time": 0.1283783783783784, + "noteOrder": 460, + "time": 0.12837837837837837, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 483, + "noteOrder": 484, "time": 0.13513513513513514, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 532, - "time": 0.14864864864864866, + "time": 0.14864864864864863, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 580, - "time": 0.16216216216216217, + "time": 0.16216216216216214, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 604, + "noteOrder": 605, "time": 0.16891891891891891, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 701, - "time": 0.19594594594594594, + "time": 0.19594594594594592, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 725, - "time": 0.20270270270270271, + "noteOrder": 726, + "time": 0.2027027027027027, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 749, - "time": 0.20945945945945948, + "noteOrder": 750, + "time": 0.20945945945945946, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 774, - "time": 0.21621621621621623, + "time": 0.2162162162162162, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 774, - "time": 0.21621621621621623, + "time": 0.2162162162162162, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 846, - "time": 0.23648648648648649, + "noteOrder": 847, + "time": 0.23648648648648646, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 870, - "time": 0.24324324324324326, + "noteOrder": 871, + "time": 0.24324324324324323, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 919, - "time": 0.2567567567567568, + "time": 0.25675675675675674, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 943, - "time": 0.26351351351351354, + "time": 0.2635135135135135, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 991, - "time": 0.27702702702702703, + "noteOrder": 992, + "time": 0.277027027027027, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1015, + "noteOrder": 1016, "time": 0.28378378378378377, "position": { "x": 3, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1039, - "time": 0.29054054054054057, + "noteOrder": 1040, + "time": 0.2905405405405405, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1064, - "time": 0.2972972972972973, + "time": 0.29729729729729726, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1076, - "time": 0.3006756756756757, + "time": 0.30067567567567566, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1100, - "time": 0.30743243243243246, + "time": 0.3074324324324324, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1113, "time": 0.3108108108108108, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1124, + "noteOrder": 1125, "time": 0.3141891891891892, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1136, - "time": 0.3175675675675676, + "noteOrder": 1137, + "time": 0.31756756756756754, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1281, - "time": 0.3581081081081081, + "noteOrder": 1282, + "time": 0.35810810810810806, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1305, + "noteOrder": 1306, "time": 0.36486486486486486, "position": { "x": 4, @@ -854,7 +854,7 @@ }, { "noteOrder": 1330, - "time": 0.37162162162162166, + "time": 0.3716216216216216, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1475, - "time": 0.4121621621621622, + "time": 0.41216216216216217, "position": { "x": 5, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1499, - "time": 0.41891891891891897, + "noteOrder": 1500, + "time": 0.4189189189189189, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1523, - "time": 0.42567567567567566, + "noteOrder": 1524, + "time": 0.4256756756756757, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.4391891891891892, + "noteOrder": 1572, + "time": 0.43918918918918914, "position": { "x": 6, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1620, - "time": 0.45270270270270274, + "time": 0.4527027027027027, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1644, - "time": 0.45945945945945943, + "noteOrder": 1645, + "time": 0.4594594594594595, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1668, + "noteOrder": 1669, "time": 0.46621621621621623, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1765, - "time": 0.4932432432432432, + "noteOrder": 1766, + "time": 0.49324324324324326, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1813, + "noteOrder": 1814, "time": 0.5067567567567568, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1910, + "noteOrder": 1911, "time": 0.5337837837837838, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1910, + "noteOrder": 1911, "time": 0.5337837837837838, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1922, + "noteOrder": 1923, "time": 0.5371621621621622, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1922, + "noteOrder": 1923, "time": 0.5371621621621622, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2006, - "time": 0.5608108108108109, + "noteOrder": 2007, + "time": 0.5608108108108107, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2006, - "time": 0.5608108108108109, + "noteOrder": 2007, + "time": 0.5608108108108107, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2031, + "noteOrder": 2032, "time": 0.5675675675675675, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2055, + "noteOrder": 2056, "time": 0.5743243243243243, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2079, - "time": 0.5810810810810811, + "noteOrder": 2080, + "time": 0.581081081081081, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2103, + "noteOrder": 2104, "time": 0.5878378378378378, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.6148648648648649, + "noteOrder": 2201, + "time": 0.6148648648648648, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.6148648648648649, + "noteOrder": 2201, + "time": 0.6148648648648648, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2224, + "noteOrder": 2225, "time": 0.6216216216216216, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2224, + "noteOrder": 2225, "time": 0.6216216216216216, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2248, + "noteOrder": 2249, "time": 0.6283783783783784, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2248, + "noteOrder": 2249, "time": 0.6283783783783784, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2272, - "time": 0.6351351351351352, + "noteOrder": 2273, + "time": 0.6351351351351351, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.6385135135135136, + "noteOrder": 2286, + "time": 0.6385135135135135, "position": { "x": 5, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.6418918918918919, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2321, - "time": 0.6486486486486487, + "noteOrder": 2322, + "time": 0.6486486486486486, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2321, - "time": 0.6486486486486487, + "noteOrder": 2322, + "time": 0.6486486486486486, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2345, - "time": 0.6554054054054055, + "noteOrder": 2346, + "time": 0.6554054054054054, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2345, - "time": 0.6554054054054055, + "noteOrder": 2346, + "time": 0.6554054054054054, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.6621621621621622, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2381, - "time": 0.6655405405405406, + "noteOrder": 2382, + "time": 0.6655405405405405, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2393, + "noteOrder": 2394, "time": 0.668918918918919, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2514, + "noteOrder": 2515, "time": 0.7027027027027026, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2514, + "noteOrder": 2515, "time": 0.7027027027027026, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 2588, "time": 0.722972972972973, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2611, + "noteOrder": 2612, "time": 0.7297297297297297, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.7432432432432433, + "noteOrder": 2660, + "time": 0.7432432432432432, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2683, - "time": 0.7500000000000001, + "noteOrder": 2685, + "time": 0.7499999999999999, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2707, + "noteOrder": 2709, "time": 0.7567567567567568, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2732, - "time": 0.7635135135135136, + "noteOrder": 2733, + "time": 0.7635135135135135, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2756, + "noteOrder": 2757, "time": 0.7702702702702703, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2780, + "noteOrder": 2781, "time": 0.777027027027027, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2804, - "time": 0.7837837837837838, + "noteOrder": 2806, + "time": 0.7837837837837837, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2816, - "time": 0.7871621621621623, + "noteOrder": 2818, + "time": 0.7871621621621622, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 2830, "time": 0.7905405405405406, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2842, "time": 0.793918918918919, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2852, - "time": 0.7972972972972974, + "noteOrder": 2854, + "time": 0.7972972972972973, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.8006756756756758, + "noteOrder": 2866, + "time": 0.8006756756756757, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2877, + "noteOrder": 2878, "time": 0.8040540540540541, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 3023, "time": 0.8445945945945945, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3046, - "time": 0.8513513513513513, + "noteOrder": 3047, + "time": 0.8513513513513514, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3070, + "noteOrder": 3072, "time": 0.8581081081081081, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3215, + "noteOrder": 3217, "time": 0.8986486486486487, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3239, - "time": 0.9054054054054055, + "noteOrder": 3241, + "time": 0.9054054054054054, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3263, - "time": 0.9121621621621623, + "noteOrder": 3265, + "time": 0.9121621621621621, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3288, - "time": 0.9189189189189189, + "noteOrder": 3289, + "time": 0.918918918918919, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.9256756756756757, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.9324324324324325, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.9324324324324325, "position": { "x": 4, @@ -2116,10 +2116,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.02702702702702703, + "time": 0.027027027027027025, "position": { "x": 3, "y": 0 @@ -2139,10 +2139,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, - "time": 0.05405405405405406, + "time": 0.05405405405405405, "position": { "x": 3, "y": 0 @@ -2162,10 +2162,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.05405405405405406, + "time": 0.05405405405405405, "position": { "x": 7, "y": 0 @@ -2185,10 +2185,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.08108108108108109, + "time": 0.08108108108108107, "position": { "x": 7, "y": 0 @@ -2208,10 +2208,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.08108108108108109, + "time": 0.08108108108108107, "position": { "x": 4, "y": 0 @@ -2231,7 +2231,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 314, "time": 0.08783783783783783, @@ -2254,9 +2254,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 338, + "noteOrder": 339, "time": 0.0945945945945946, "position": { "x": 6, @@ -2277,10 +2277,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 363, - "time": 0.10135135135135136, + "time": 0.10135135135135134, "position": { "x": 6, "y": 0 @@ -2300,10 +2300,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 387, - "time": 0.10810810810810811, + "time": 0.1081081081081081, "position": { "x": 3, "y": 0 @@ -2323,10 +2323,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 411, - "time": 0.11486486486486486, + "time": 0.11486486486486487, "position": { "x": 3, "y": 0 @@ -2346,10 +2346,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 435, - "time": 0.12162162162162163, + "time": 0.12162162162162161, "position": { "x": 7, "y": 0 @@ -2369,10 +2369,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 459, - "time": 0.1283783783783784, + "noteOrder": 460, + "time": 0.12837837837837837, "position": { "x": 7, "y": 0 @@ -2392,7 +2392,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 792, "time": 0.2212837837837838, @@ -2415,10 +2415,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 822, - "time": 0.22972972972972971, + "time": 0.22972972972972974, "position": { "x": 3, "y": 0 @@ -2438,7 +2438,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 792, "time": 0.2212837837837838, @@ -2461,10 +2461,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 822, - "time": 0.22972972972972971, + "time": 0.22972972972972974, "position": { "x": 7, "y": 0 @@ -2484,9 +2484,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 894, + "noteOrder": 895, "time": 0.25, "position": { "x": 7, @@ -2507,10 +2507,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 943, - "time": 0.26351351351351354, + "time": 0.2635135135135135, "position": { "x": 7, "y": 0 @@ -2530,10 +2530,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1160, - "time": 0.32432432432432434, + "noteOrder": 1161, + "time": 0.3243243243243243, "position": { "x": 7, "y": 0 @@ -2552,11 +2552,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1185, - "time": 0.3310810810810811, + "noteOrder": 1173, + "time": 0.3277027027027027, "position": { "x": 7, "y": 0 @@ -2570,18 +2570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1209, - "time": 0.33783783783783783, + "noteOrder": 1173, + "time": 0.3277027027027027, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2598,13 +2598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1233, - "time": 0.3445945945945946, + "noteOrder": 1185, + "time": 0.3310810810810811, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2616,18 +2616,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1257, - "time": 0.3513513513513513, + "noteOrder": 1185, + "time": 0.3310810810810811, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2644,13 +2644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, - "time": 0.3783783783783784, + "noteOrder": 1185, + "time": 0.3310810810810811, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2662,18 +2662,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1354, - "time": 0.3783783783783784, + "noteOrder": 1197, + "time": 0.3344594594594595, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2690,13 +2690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1378, - "time": 0.38513513513513514, + "noteOrder": 1197, + "time": 0.3344594594594595, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2708,18 +2708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1402, - "time": 0.3918918918918919, + "noteOrder": 1209, + "time": 0.33783783783783783, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2736,13 +2736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1426, - "time": 0.3986486486486487, + "noteOrder": 1209, + "time": 0.33783783783783783, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2754,18 +2754,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1450, - "time": 0.40540540540540543, + "noteOrder": 1209, + "time": 0.33783783783783783, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2777,18 +2777,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1547, - "time": 0.43243243243243246, + "noteOrder": 1221, + "time": 0.3412162162162162, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2800,18 +2800,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1547, - "time": 0.43243243243243246, + "noteOrder": 1221, + "time": 0.3412162162162162, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2828,13 +2828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1571, - "time": 0.4391891891891892, + "noteOrder": 1233, + "time": 0.3445945945945946, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2851,13 +2851,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1595, - "time": 0.445945945945946, + "noteOrder": 1233, + "time": 0.3445945945945946, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2869,18 +2869,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 1620, - "time": 0.45270270270270274, + "noteOrder": 1233, + "time": 0.3445945945945946, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2897,13 +2897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1692, - "time": 0.47297297297297297, + "noteOrder": 1246, + "time": 0.34797297297297297, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2920,13 +2920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1716, - "time": 0.47972972972972977, + "noteOrder": 1246, + "time": 0.34797297297297297, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2943,11 +2943,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1692, - "time": 0.47297297297297297, + "noteOrder": 1258, + "time": 0.3513513513513513, "position": { "x": 6, "y": 0 @@ -2961,18 +2961,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1716, - "time": 0.47972972972972977, + "noteOrder": 1258, + "time": 0.3513513513513513, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2984,18 +2984,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, - "time": 0.4864864864864865, + "noteOrder": 1258, + "time": 0.3513513513513513, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3007,18 +3007,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1765, - "time": 0.4932432432432432, + "noteOrder": 1354, + "time": 0.3783783783783784, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3030,18 +3030,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1789, - "time": 0.5, + "noteOrder": 1354, + "time": 0.3783783783783784, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3053,18 +3053,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1813, - "time": 0.5067567567567568, + "noteOrder": 1367, + "time": 0.38175675675675674, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3076,18 +3076,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1837, - "time": 0.5135135135135136, + "noteOrder": 1367, + "time": 0.38175675675675674, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3099,18 +3099,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1886, - "time": 0.5270270270270271, + "noteOrder": 1379, + "time": 0.38513513513513514, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3122,18 +3122,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1837, - "time": 0.5135135135135136, + "noteOrder": 1379, + "time": 0.38513513513513514, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3150,11 +3150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 1886, - "time": 0.5270270270270271, + "noteOrder": 1379, + "time": 0.38513513513513514, "position": { "x": 3, "y": 0 @@ -3168,16 +3168,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1934, - "time": 0.5405405405405406, + "noteOrder": 1391, + "time": 0.3885135135135135, "position": { "x": 3, "y": 0 @@ -3191,18 +3191,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1982, - "time": 0.5540540540540541, + "noteOrder": 1391, + "time": 0.3885135135135135, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3214,18 +3214,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1934, - "time": 0.5405405405405406, + "noteOrder": 1403, + "time": 0.39189189189189183, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3242,13 +3242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1982, - "time": 0.5540540540540541, + "noteOrder": 1403, + "time": 0.39189189189189183, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3265,13 +3265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2127, - "time": 0.5945945945945946, + "noteOrder": 1403, + "time": 0.39189189189189183, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3283,18 +3283,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2176, - "time": 0.6081081081081081, + "noteOrder": 1415, + "time": 0.3952702702702703, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3306,18 +3306,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2417, - "time": 0.6756756756756757, + "noteOrder": 1415, + "time": 0.3952702702702703, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3329,18 +3329,1306 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1427, + "time": 0.39864864864864863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1427, + "time": 0.39864864864864863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1427, + "time": 0.39864864864864863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1439, + "time": 0.40202702702702703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1439, + "time": 0.40202702702702703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1451, + "time": 0.4054054054054054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1451, + "time": 0.4054054054054054, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1451, + "time": 0.4054054054054054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1548, + "time": 0.4324324324324324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1548, + "time": 0.4324324324324324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1572, + "time": 0.43918918918918914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1596, + "time": 0.44594594594594594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1620, + "time": 0.4527027027027027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1693, + "time": 0.4729729729729729, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1717, + "time": 0.4797297297297297, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1693, + "time": 0.4729729729729729, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1717, + "time": 0.4797297297297297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1741, + "time": 0.48648648648648646, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.49324324324324326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1790, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1814, + "time": 0.5067567567567568, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1838, + "time": 0.5135135135135135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.527027027027027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1838, + "time": 0.5135135135135135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.527027027027027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1935, + "time": 0.5405405405405406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.554054054054054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1935, + "time": 0.5405405405405406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.554054054054054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2128, + "time": 0.5945945945945945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2177, + "time": 0.6081081081081081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.6756756756756757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2443, + "time": 0.6824324324324323, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2467, + "time": 0.6891891891891893, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2491, + "time": 0.6959459459459459, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2533, + "time": 0.7077702702702702, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2564, + "time": 0.7162162162162161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2533, + "time": 0.7077702702702702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2564, + "time": 0.7162162162162161, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2636, + "time": 0.7364864864864865, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2685, + "time": 0.7499999999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2902, + "time": 0.8108108108108107, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2914, + "time": 0.8141891891891891, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2914, + "time": 0.8141891891891891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2926, + "time": 0.8175675675675677, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2926, + "time": 0.8175675675675677, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2926, + "time": 0.8175675675675677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2939, + "time": 0.8209459459459458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2939, + "time": 0.8209459459459458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2951, + "time": 0.8243243243243243, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2951, + "time": 0.8243243243243243, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2951, + "time": 0.8243243243243243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2963, + "time": 0.8277027027027027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2963, + "time": 0.8277027027027027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2975, + "time": 0.831081081081081, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2975, + "time": 0.831081081081081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 2442, - "time": 0.6824324324324326, + "noteOrder": 2975, + "time": 0.831081081081081, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3357,11 +4645,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2466, - "time": 0.6891891891891893, + "noteOrder": 2987, + "time": 0.8344594594594594, "position": { "x": 3, "y": 0 @@ -3375,16 +4663,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2490, - "time": 0.6959459459459459, + "noteOrder": 2987, + "time": 0.8344594594594594, "position": { "x": 4, "y": 0 @@ -3398,16 +4686,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2532, - "time": 0.7077702702702704, + "noteOrder": 2999, + "time": 0.8378378378378378, "position": { "x": 4, "y": 0 @@ -3421,18 +4709,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2999, + "time": 0.8378378378378378, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 2562, - "time": 0.7162162162162162, + "noteOrder": 2999, + "time": 0.8378378378378378, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3449,11 +4760,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2532, - "time": 0.7077702702702704, + "noteOrder": 3096, + "time": 0.8648648648648648, "position": { "x": 6, "y": 0 @@ -3467,18 +4778,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 2562, - "time": 0.7162162162162162, + "noteOrder": 3096, + "time": 0.8648648648648648, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3495,13 +4806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2635, - "time": 0.7364864864864865, + "noteOrder": 3108, + "time": 0.8682432432432432, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3513,18 +4824,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2683, - "time": 0.7500000000000001, + "noteOrder": 3108, + "time": 0.8682432432432432, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3536,18 +4847,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2901, - "time": 0.8108108108108109, + "noteOrder": 3120, + "time": 0.8716216216216216, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3559,18 +4870,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2925, - "time": 0.8175675675675677, + "noteOrder": 3120, + "time": 0.8716216216216216, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3587,13 +4898,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2949, - "time": 0.8243243243243245, + "noteOrder": 3120, + "time": 0.8716216216216216, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3610,13 +4921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2973, - "time": 0.8310810810810811, + "noteOrder": 3132, + "time": 0.875, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3628,18 +4939,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2998, - "time": 0.8378378378378379, + "noteOrder": 3132, + "time": 0.875, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3656,11 +4967,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3094, - "time": 0.8648648648648649, + "noteOrder": 3144, + "time": 0.8783783783783783, "position": { "x": 6, "y": 0 @@ -3679,11 +4990,34 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3144, + "time": 0.8783783783783783, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3094, - "time": 0.8648648648648649, + "noteOrder": 3144, + "time": 0.8783783783783783, "position": { "x": 7, "y": 0 @@ -3702,11 +5036,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3118, - "time": 0.8716216216216216, + "noteOrder": 3156, + "time": 0.8817567567567567, "position": { "x": 7, "y": 0 @@ -3720,18 +5054,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3143, - "time": 0.8783783783783784, + "noteOrder": 3156, + "time": 0.8817567567567567, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3168, + "time": 0.8851351351351352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3168, + "time": 0.8851351351351352, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3749,9 +5129,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3167, + "noteOrder": 3168, "time": 0.8851351351351352, "position": { "x": 7, @@ -3770,12 +5150,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3180, + "time": 0.8885135135135134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3180, + "time": 0.8885135135135134, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3193, + "time": 0.8918918918918919, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3193, + "time": 0.8918918918918919, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3191, - "time": 0.891891891891892, + "noteOrder": 3193, + "time": 0.8918918918918919, "position": { "x": 7, "y": 0 @@ -3795,10 +5267,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3288, - "time": 0.9189189189189189, + "noteOrder": 3289, + "time": 0.918918918918919, "position": { "x": 4, "y": 0 @@ -3818,10 +5290,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3348, - "time": 0.9358108108108109, + "noteOrder": 3350, + "time": 0.9358108108108107, "position": { "x": 3, "y": 0 @@ -3841,10 +5313,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.972972972972973, + "noteOrder": 3483, + "time": 0.9729729729729729, "position": { "x": 3, "y": 0 @@ -3864,10 +5336,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3348, - "time": 0.9358108108108109, + "noteOrder": 3350, + "time": 0.9358108108108107, "position": { "x": 7, "y": 0 @@ -3887,10 +5359,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.972972972972973, + "noteOrder": 3483, + "time": 0.9729729729729729, "position": { "x": 7, "y": 0 diff --git a/tracks/Awakening Wings/381_difficulty_1b.json b/tracks/Awakening Wings/381_difficulty_1b.json index 69faacdf..c7f9116e 100644 --- a/tracks/Awakening Wings/381_difficulty_1b.json +++ b/tracks/Awakening Wings/381_difficulty_1b.json @@ -54,7 +54,7 @@ }, { "noteOrder": 218, - "time": 0.060810810810810814, + "time": 0.06081081081081081, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 266, - "time": 0.07432432432432433, + "time": 0.07432432432432431, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 290, - "time": 0.08108108108108109, + "time": 0.08108108108108107, "position": { "x": 4, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 338, + "noteOrder": 339, "time": 0.0945945945945946, "position": { "x": 2, @@ -134,7 +134,7 @@ }, { "noteOrder": 387, - "time": 0.10810810810810811, + "time": 0.1081081081081081, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 435, - "time": 0.12162162162162163, + "time": 0.12162162162162161, "position": { "x": 8, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 483, + "noteOrder": 484, "time": 0.13513513513513514, "position": { "x": 3, @@ -194,7 +194,7 @@ }, { "noteOrder": 532, - "time": 0.14864864864864866, + "time": 0.14864864864864863, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 580, - "time": 0.16216216216216217, + "time": 0.16216216216216214, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 701, - "time": 0.19594594594594594, + "time": 0.19594594594594592, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 725, - "time": 0.20270270270270271, + "noteOrder": 726, + "time": 0.2027027027027027, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 749, - "time": 0.20945945945945948, + "noteOrder": 750, + "time": 0.20945945945945946, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 870, - "time": 0.24324324324324326, + "noteOrder": 871, + "time": 0.24324324324324323, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 919, - "time": 0.2567567567567568, + "time": 0.25675675675675674, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1015, + "noteOrder": 1016, "time": 0.28378378378378377, "position": { "x": 4, @@ -414,7 +414,7 @@ }, { "noteOrder": 1064, - "time": 0.2972972972972973, + "time": 0.29729729729729726, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1113, "time": 0.3108108108108108, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1136, - "time": 0.3175675675675676, + "noteOrder": 1137, + "time": 0.31756756756756754, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1258, "time": 0.3513513513513513, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1281, - "time": 0.3581081081081081, + "noteOrder": 1282, + "time": 0.35810810810810806, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1305, + "noteOrder": 1306, "time": 0.36486486486486486, "position": { "x": 4, @@ -554,7 +554,7 @@ }, { "noteOrder": 1330, - "time": 0.37162162162162166, + "time": 0.3716216216216216, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1450, - "time": 0.40540540540540543, + "noteOrder": 1451, + "time": 0.4054054054054054, "position": { "x": 3, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1475, - "time": 0.4121621621621622, + "time": 0.41216216216216217, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1499, - "time": 0.41891891891891897, + "noteOrder": 1500, + "time": 0.4189189189189189, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1523, - "time": 0.42567567567567566, + "noteOrder": 1524, + "time": 0.4256756756756757, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1595, - "time": 0.445945945945946, + "noteOrder": 1596, + "time": 0.44594594594594594, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1620, - "time": 0.45270270270270274, + "time": 0.4527027027027027, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1692, - "time": 0.47297297297297297, + "noteOrder": 1693, + "time": 0.4729729729729729, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1716, - "time": 0.47972972972972977, + "noteOrder": 1717, + "time": 0.4797297297297297, "position": { "x": 7, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1741, - "time": 0.4864864864864865, + "time": 0.48648648648648646, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1765, - "time": 0.4932432432432432, + "noteOrder": 1766, + "time": 0.49324324324324326, "position": { "x": 3, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1789, + "noteOrder": 1790, "time": 0.5, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1813, + "noteOrder": 1814, "time": 0.5067567567567568, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2031, + "noteOrder": 2032, "time": 0.5675675675675675, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2055, + "noteOrder": 2056, "time": 0.5743243243243243, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2079, - "time": 0.5810810810810811, + "noteOrder": 2080, + "time": 0.581081081081081, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2103, + "noteOrder": 2104, "time": 0.5878378378378378, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2224, + "noteOrder": 2225, "time": 0.6216216216216216, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2272, - "time": 0.6351351351351352, + "noteOrder": 2273, + "time": 0.6351351351351351, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2321, - "time": 0.6486486486486487, + "noteOrder": 2322, + "time": 0.6486486486486486, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.6621621621621622, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2417, + "noteOrder": 2419, "time": 0.6756756756756757, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2442, - "time": 0.6824324324324326, + "noteOrder": 2443, + "time": 0.6824324324324323, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2466, + "noteOrder": 2467, "time": 0.6891891891891893, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2490, + "noteOrder": 2491, "time": 0.6959459459459459, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2611, + "noteOrder": 2612, "time": 0.7297297297297297, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.7432432432432433, + "noteOrder": 2660, + "time": 0.7432432432432432, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2707, + "noteOrder": 2709, "time": 0.7567567567567568, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2756, + "noteOrder": 2757, "time": 0.7702702702702703, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2804, - "time": 0.7837837837837838, + "noteOrder": 2806, + "time": 0.7837837837837837, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 2830, "time": 0.7905405405405406, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2852, - "time": 0.7972972972972974, + "noteOrder": 2854, + "time": 0.7972972972972973, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2877, + "noteOrder": 2878, "time": 0.8040540540540541, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.8378378378378379, + "noteOrder": 2999, + "time": 0.8378378378378378, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 3023, "time": 0.8445945945945945, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3046, - "time": 0.8513513513513513, + "noteOrder": 3047, + "time": 0.8513513513513514, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3070, + "noteOrder": 3072, "time": 0.8581081081081081, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3191, - "time": 0.891891891891892, + "noteOrder": 3193, + "time": 0.8918918918918919, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3215, + "noteOrder": 3217, "time": 0.8986486486486487, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3239, - "time": 0.9054054054054055, + "noteOrder": 3241, + "time": 0.9054054054054054, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3263, - "time": 0.9121621621621623, + "noteOrder": 3265, + "time": 0.9121621621621621, "position": { "x": 3, "y": 0 @@ -1376,10 +1376,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.02702702702702703, + "time": 0.027027027027027025, "position": { "x": 3, "y": 0 @@ -1399,7 +1399,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, "time": 0.0472972972972973, @@ -1422,10 +1422,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.05405405405405406, + "time": 0.05405405405405405, "position": { "x": 7, "y": 0 @@ -1445,10 +1445,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.07432432432432433, + "time": 0.07432432432432431, "position": { "x": 7, "y": 0 @@ -1468,10 +1468,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.21621621621621623, + "time": 0.2162162162162162, "position": { "x": 7, "y": 0 @@ -1491,10 +1491,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 846, - "time": 0.23648648648648649, + "noteOrder": 847, + "time": 0.23648648648648646, "position": { "x": 7, "y": 0 @@ -1514,10 +1514,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.21621621621621623, + "time": 0.2162162162162162, "position": { "x": 3, "y": 0 @@ -1537,10 +1537,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 846, - "time": 0.23648648648648649, + "noteOrder": 847, + "time": 0.23648648648648646, "position": { "x": 3, "y": 0 @@ -1560,10 +1560,33 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1161, + "time": 0.3243243243243243, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1160, - "time": 0.32432432432432434, + "noteOrder": 1185, + "time": 0.3310810810810811, "position": { "x": 7, "y": 0 @@ -1581,9 +1604,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1185, + "time": 0.3310810810810811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1209, "time": 0.33783783783783783, @@ -1604,9 +1650,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1233, + "time": 0.3445945945945946, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1233, + "time": 0.3445945945945946, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1354, "time": 0.3783783783783784, @@ -1627,12 +1719,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1379, + "time": 0.38513513513513514, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1379, + "time": 0.38513513513513514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1403, + "time": 0.39189189189189183, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1402, - "time": 0.3918918918918919, + "noteOrder": 1427, + "time": 0.39864864864864863, "position": { "x": 3, "y": 0 @@ -1650,12 +1811,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1427, + "time": 0.39864864864864863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1547, - "time": 0.43243243243243246, + "noteOrder": 1548, + "time": 0.4324324324324324, "position": { "x": 7, "y": 0 @@ -1675,10 +1859,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1620, - "time": 0.45270270270270274, + "time": 0.4527027027027027, "position": { "x": 7, "y": 0 @@ -1698,10 +1882,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1644, - "time": 0.45945945945945943, + "noteOrder": 1645, + "time": 0.4594594594594595, "position": { "x": 3, "y": 0 @@ -1721,10 +1905,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1716, - "time": 0.47972972972972977, + "noteOrder": 1717, + "time": 0.4797297297297297, "position": { "x": 3, "y": 0 @@ -1744,10 +1928,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1837, - "time": 0.5135135135135136, + "noteOrder": 1838, + "time": 0.5135135135135135, "position": { "x": 3, "y": 0 @@ -1767,9 +1951,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1861, + "noteOrder": 1862, "time": 0.5202702702702703, "position": { "x": 3, @@ -1790,10 +1974,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1837, - "time": 0.5135135135135136, + "noteOrder": 1838, + "time": 0.5135135135135135, "position": { "x": 7, "y": 0 @@ -1813,9 +1997,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1861, + "noteOrder": 1862, "time": 0.5202702702702703, "position": { "x": 7, @@ -1836,10 +2020,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1886, - "time": 0.5270270270270271, + "time": 0.527027027027027, "position": { "x": 4, "y": 0 @@ -1859,9 +2043,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1910, + "noteOrder": 1911, "time": 0.5337837837837838, "position": { "x": 4, @@ -1882,10 +2066,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1886, - "time": 0.5270270270270271, + "time": 0.527027027027027, "position": { "x": 6, "y": 0 @@ -1905,9 +2089,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1910, + "noteOrder": 1911, "time": 0.5337837837837838, "position": { "x": 6, @@ -1928,9 +2112,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.5405405405405406, "position": { "x": 7, @@ -1951,10 +2135,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1958, - "time": 0.5472972972972974, + "noteOrder": 1959, + "time": 0.5472972972972973, "position": { "x": 7, "y": 0 @@ -1974,10 +2158,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1982, - "time": 0.5540540540540541, + "noteOrder": 1983, + "time": 0.554054054054054, "position": { "x": 3, "y": 0 @@ -1997,10 +2181,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2006, - "time": 0.5608108108108109, + "noteOrder": 2007, + "time": 0.5608108108108107, "position": { "x": 3, "y": 0 @@ -2020,10 +2204,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2127, - "time": 0.5945945945945946, + "noteOrder": 2128, + "time": 0.5945945945945945, "position": { "x": 4, "y": 0 @@ -2043,10 +2227,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2151, - "time": 0.6013513513513514, + "noteOrder": 2153, + "time": 0.6013513513513513, "position": { "x": 4, "y": 0 @@ -2066,10 +2250,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2127, - "time": 0.5945945945945946, + "noteOrder": 2128, + "time": 0.5945945945945945, "position": { "x": 6, "y": 0 @@ -2089,10 +2273,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2151, - "time": 0.6013513513513514, + "noteOrder": 2153, + "time": 0.6013513513513513, "position": { "x": 6, "y": 0 @@ -2112,9 +2296,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.6081081081081081, "position": { "x": 3, @@ -2135,10 +2319,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2200, - "time": 0.6148648648648649, + "noteOrder": 2201, + "time": 0.6148648648648648, "position": { "x": 3, "y": 0 @@ -2158,9 +2342,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.6081081081081081, "position": { "x": 7, @@ -2181,10 +2365,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2200, - "time": 0.6148648648648649, + "noteOrder": 2201, + "time": 0.6148648648648648, "position": { "x": 7, "y": 0 @@ -2204,9 +2388,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2514, + "noteOrder": 2515, "time": 0.7027027027027026, "position": { "x": 7, @@ -2227,9 +2411,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2587, + "noteOrder": 2588, "time": 0.722972972972973, "position": { "x": 7, @@ -2250,9 +2434,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2514, + "noteOrder": 2515, "time": 0.7027027027027026, "position": { "x": 3, @@ -2273,9 +2457,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2587, + "noteOrder": 2588, "time": 0.722972972972973, "position": { "x": 3, @@ -2296,10 +2480,33 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2902, + "time": 0.8108108108108107, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2901, - "time": 0.8108108108108109, + "noteOrder": 2926, + "time": 0.8175675675675677, "position": { "x": 3, "y": 0 @@ -2317,12 +2524,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2926, + "time": 0.8175675675675677, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2951, + "time": 0.8243243243243243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2949, - "time": 0.8243243243243245, + "noteOrder": 2975, + "time": 0.831081081081081, "position": { "x": 3, "y": 0 @@ -2340,12 +2593,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2975, + "time": 0.831081081081081, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3096, + "time": 0.8648648648648648, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3094, - "time": 0.8648648648648649, + "noteOrder": 3120, + "time": 0.8716216216216216, "position": { "x": 7, "y": 0 @@ -2363,12 +2662,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3120, + "time": 0.8716216216216216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3143, - "time": 0.8783783783783784, + "noteOrder": 3144, + "time": 0.8783783783783783, "position": { "x": 7, "y": 0 @@ -2386,12 +2708,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3168, + "time": 0.8851351351351352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3168, + "time": 0.8851351351351352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3288, - "time": 0.9189189189189189, + "noteOrder": 3289, + "time": 0.918918918918919, "position": { "x": 6, "y": 0 @@ -2411,10 +2779,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.972972972972973, + "noteOrder": 3483, + "time": 0.9729729729729729, "position": { "x": 6, "y": 0 @@ -2434,9 +2802,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.9324324324324325, "position": { "x": 4, @@ -2457,10 +2825,10 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.972972972972973, + "noteOrder": 3483, + "time": 0.9729729729729729, "position": { "x": 4, "y": 0 diff --git a/tracks/Awakening Wings/info.json b/tracks/Awakening Wings/info.json index 986bab68..1527d780 100644 --- a/tracks/Awakening Wings/info.json +++ b/tracks/Awakening Wings/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Awakening Wings", - "SongLength": "104.150204", + "SongLength": "94.197551", "SongAuthorName": "\u4f0a\u9054\u6731\u91cc\u7d17", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/BAAM/281_difficulty_1a.json b/tracks/BAAM/281_difficulty_1a.json index ce8c21b4..375a4e4a 100644 --- a/tracks/BAAM/281_difficulty_1a.json +++ b/tracks/BAAM/281_difficulty_1a.json @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.05005688282138794, "position": { "x": 3, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05460750853242321, "position": { "x": 5, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.05915813424345848, "position": { "x": 7, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.06370875995449375, "position": { "x": 6, @@ -274,7 +274,7 @@ }, { "noteOrder": 601, - "time": 0.11376564277588169, + "time": 0.11376564277588168, "position": { "x": 6, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.15017064846416384, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.15927189988623436, "position": { "x": 3, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.16837315130830488, + "noteOrder": 890, + "time": 0.1683731513083049, "position": { "x": 4, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.17292377701934014, "position": { "x": 5, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17747440273037543, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.1820250284414107, "position": { "x": 7, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 985, - "time": 0.18657565415244595, + "noteOrder": 986, + "time": 0.18657565415244598, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.19112627986348124, "position": { "x": 5, @@ -474,7 +474,7 @@ }, { "noteOrder": 1034, - "time": 0.1956769055745165, + "time": 0.19567690557451647, "position": { "x": 4, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1202, - "time": 0.22753128555176338, + "time": 0.22753128555176336, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1274, - "time": 0.2411831626848692, + "time": 0.24118316268486917, "position": { "x": 8, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.25028441410693975, + "noteOrder": 1323, + "time": 0.2502844141069397, "position": { "x": 8, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.254835039817975, "position": { "x": 8, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1358, - "time": 0.25711035267349264, + "noteOrder": 1359, + "time": 0.2571103526734926, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.25938566552901027, "position": { "x": 4, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1382, + "noteOrder": 1383, "time": 0.2616609783845279, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.27303754266211605, "position": { "x": 8, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2775881683731513, "position": { "x": 8, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2821387940841866, "position": { "x": 8, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.28668941979522183, "position": { "x": 3, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.3139931740614335, + "noteOrder": 1659, + "time": 0.31399317406143346, "position": { "x": 2, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3458475540386803, "position": { "x": 2, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.3503981797497156, "position": { "x": 2, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.35494880546075086, "position": { "x": 2, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.3594994311717861, + "noteOrder": 1900, + "time": 0.3594994311717862, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.4186575654152446, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2235, - "time": 0.4232081911262799, + "noteOrder": 2236, + "time": 0.42320819112627983, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.42775881683731515, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.4323094425483504, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.4505119453924915, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.4505119453924915, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2428, - "time": 0.45961319681456203, + "noteOrder": 2429, + "time": 0.459613196814562, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.4641638225255973, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.46871444823663255, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.47781569965870313, + "noteOrder": 2525, + "time": 0.4778156996587031, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4823663253697384, + "noteOrder": 2549, + "time": 0.48236632536973834, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.48691695108077365, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.4960182025028442, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.5051194539249148, + "noteOrder": 2669, + "time": 0.5051194539249146, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.5142207053469853, + "noteOrder": 2717, + "time": 0.5142207053469852, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.5187713310580205, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.5233219567690558, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.5324232081911263, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2860, + "noteOrder": 2862, "time": 0.5415244596131968, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 2910, "time": 0.5506257110352674, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2934, "time": 0.5551763367463026, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2958, "time": 0.5597269624573379, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5915813424345847, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3149, - "time": 0.5961319681456201, + "noteOrder": 3150, + "time": 0.59613196814562, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.6006825938566553, "position": { "x": 5, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.6052332195676906, + "noteOrder": 3198, + "time": 0.6052332195676905, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.6097838452787259, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.6143344709897611, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.6188850967007965, + "noteOrder": 3270, + "time": 0.6188850967007964, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.6234357224118316, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.627986348122867, + "noteOrder": 3318, + "time": 0.6279863481228669, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.6325369738339022, "position": { "x": 2, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3366, "time": 0.6370875995449374, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.6416382252559727, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3415, "time": 0.646188850967008, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3439, "time": 0.6507394766780432, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.68259385665529, + "noteOrder": 3607, + "time": 0.6825938566552902, "position": { "x": 8, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.6916951080773606, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3703, "time": 0.7007963594994312, "position": { "x": 8, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3727, "time": 0.7053469852104665, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3775, "time": 0.714448236632537, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.7189988623435722, + "noteOrder": 3799, + "time": 0.7189988623435724, "position": { "x": 4, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3822, - "time": 0.7235494880546076, + "noteOrder": 3823, + "time": 0.7235494880546075, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3847, "time": 0.7281001137656428, "position": { "x": 2, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3871, "time": 0.7326507394766781, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 3896, "time": 0.7372013651877133, "position": { "x": 2, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.7417519908987487, + "noteOrder": 3920, + "time": 0.7417519908987485, "position": { "x": 5, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.7554038680318543, "position": { "x": 2, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4038, + "noteOrder": 4040, "time": 0.764505119453925, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4088, "time": 0.7736063708759955, "position": { "x": 2, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7781569965870307, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7872582480091014, + "noteOrder": 4160, + "time": 0.7872582480091013, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7918088737201365, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4208, "time": 0.7963594994311719, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.8236632536973835, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.8418657565415245, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.8691695108077361, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8782707622298066, "position": { "x": 7, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.8873720136518771, + "noteOrder": 4689, + "time": 0.8873720136518772, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.8964732650739476, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.901023890784983, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.9055745164960182, "position": { "x": 6, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4807, - "time": 0.9101251422070535, + "noteOrder": 4809, + "time": 0.9101251422070534, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.9146757679180887, + "noteOrder": 4833, + "time": 0.9146757679180888, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.9192263936291241, + "noteOrder": 4857, + "time": 0.919226393629124, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.9237770193401592, + "noteOrder": 4881, + "time": 0.9237770193401593, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.9283276450511946, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 4930, "time": 0.9328782707622298, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 4954, "time": 0.9374288964732651, "position": { "x": 5, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.9419795221843004, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4999, + "noteOrder": 5002, "time": 0.9465301478953356, "position": { "x": 7, @@ -2436,7 +2436,7 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.07281001137656427, @@ -2459,7 +2459,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.08191126279863481, @@ -2482,7 +2482,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.07281001137656427, @@ -2505,7 +2505,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.08191126279863481, @@ -2528,7 +2528,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.09101251422070535, @@ -2551,7 +2551,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.09556313993174062, @@ -2574,7 +2574,7 @@ }, { "lineGroupId": 17, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 529, "time": 0.10011376564277588, @@ -2597,7 +2597,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.10011376564277588, @@ -2619,11 +2619,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 553, - "time": 0.10466439135381116, + "noteOrder": 541, + "time": 0.10238907849829351, "position": { "x": 8, "y": 0 @@ -2637,18 +2637,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 577, - "time": 0.10921501706484642, + "noteOrder": 541, + "time": 0.10238907849829351, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2665,13 +2665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 601, - "time": 0.11376564277588169, + "noteOrder": 553, + "time": 0.10466439135381116, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2683,18 +2683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, + "lineGroupId": 20, "indexInLine": 2, "isSliding": false, - "noteOrder": 625, - "time": 0.11831626848691695, + "noteOrder": 565, + "time": 0.10693970420932879, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2706,18 +2706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 625, - "time": 0.11831626848691695, + "noteOrder": 565, + "time": 0.10693970420932879, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2734,13 +2734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 649, - "time": 0.12286689419795223, + "noteOrder": 577, + "time": 0.10921501706484642, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2757,13 +2757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 673, - "time": 0.1274175199089875, + "noteOrder": 601, + "time": 0.11376564277588168, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2775,18 +2775,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 697, - "time": 0.13196814562002276, + "noteOrder": 625, + "time": 0.11831626848691695, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2803,13 +2803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, - "time": 0.13651877133105803, + "noteOrder": 625, + "time": 0.11831626848691695, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2826,13 +2826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 745, - "time": 0.1410693970420933, + "noteOrder": 637, + "time": 0.12059158134243458, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2849,13 +2849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.16382252559726962, + "noteOrder": 637, + "time": 0.12059158134243458, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2867,18 +2867,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1820250284414107, + "noteOrder": 649, + "time": 0.12286689419795221, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2895,11 +2895,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 24, "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, - "time": 0.20022753128555176, + "noteOrder": 661, + "time": 0.12514220705346984, "position": { "x": 2, "y": 0 @@ -2918,11 +2918,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 24, "indexInLine": 3, "isSliding": false, - "noteOrder": 1106, - "time": 0.2093287827076223, + "noteOrder": 661, + "time": 0.12514220705346984, "position": { "x": 4, "y": 0 @@ -2941,13 +2941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.2366325369738339, + "noteOrder": 673, + "time": 0.1274175199089875, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2964,13 +2964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.24573378839590446, + "noteOrder": 685, + "time": 0.12969283276450513, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2982,18 +2982,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, - "time": 0.26393629124004553, + "noteOrder": 685, + "time": 0.12969283276450513, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3010,13 +3010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1418, - "time": 0.2684869169510808, + "noteOrder": 697, + "time": 0.13196814562002274, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3033,11 +3033,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.30944254835039825, + "noteOrder": 709, + "time": 0.1342434584755404, "position": { "x": 2, "y": 0 @@ -3056,13 +3056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.3185437997724687, + "noteOrder": 709, + "time": 0.1342434584755404, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3074,18 +3074,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1779, - "time": 0.33674630261660976, + "noteOrder": 721, + "time": 0.13651877133105803, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3097,18 +3097,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.341296928327645, + "noteOrder": 745, + "time": 0.1410693970420933, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3125,11 +3125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.3822525597269625, + "noteOrder": 866, + "time": 0.16382252559726962, "position": { "x": 2, "y": 0 @@ -3148,13 +3148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2043, - "time": 0.38680318543799774, + "noteOrder": 962, + "time": 0.1820250284414107, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3166,18 +3166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2067, - "time": 0.391353811149033, + "noteOrder": 1058, + "time": 0.20022753128555176, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3194,11 +3194,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2091, - "time": 0.39590443686006827, + "noteOrder": 1106, + "time": 0.2093287827076223, "position": { "x": 4, "y": 0 @@ -3217,11 +3217,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.4004550625711035, + "noteOrder": 1250, + "time": 0.2366325369738339, "position": { "x": 8, "y": 0 @@ -3240,13 +3240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.4050056882821388, + "noteOrder": 1262, + "time": 0.23890784982935154, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3258,16 +3258,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2163, - "time": 0.40955631399317405, + "noteOrder": 1262, + "time": 0.23890784982935154, "position": { "x": 6, "y": 0 @@ -3286,13 +3286,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.41410693970420936, + "noteOrder": 1299, + "time": 0.24573378839590443, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3304,18 +3304,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2404, - "time": 0.45506257110352677, + "noteOrder": 1311, + "time": 0.2480091012514221, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3327,16 +3327,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.4732650739476678, + "noteOrder": 1311, + "time": 0.2480091012514221, "position": { "x": 6, "y": 0 @@ -3350,18 +3350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.4732650739476678, + "noteOrder": 1395, + "time": 0.2639362912400455, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3373,18 +3373,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.4914675767918089, + "noteOrder": 1407, + "time": 0.26621160409556316, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3396,16 +3396,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2596, - "time": 0.4914675767918089, + "noteOrder": 1407, + "time": 0.26621160409556316, "position": { "x": 6, "y": 0 @@ -3424,13 +3424,2313 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2684869169510808, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1431, + "time": 0.2707622298065984, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1431, + "time": 0.2707622298065984, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1443, + "time": 0.27303754266211605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1443, + "time": 0.27303754266211605, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1455, + "time": 0.2753128555176337, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1455, + "time": 0.2753128555176337, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2775881683731513, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2775881683731513, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1479, + "time": 0.27986348122866894, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 1479, + "time": 0.27986348122866894, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 1491, + "time": 0.2821387940841866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 1491, + "time": 0.2821387940841866, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.3094425483503982, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1647, + "time": 0.3117178612059158, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1647, + "time": 0.3117178612059158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.3185437997724687, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1695, + "time": 0.32081911262798635, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1695, + "time": 0.32081911262798635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.3367463026166098, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1791, + "time": 0.3390216154721274, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1791, + "time": 0.3390216154721274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.3412969283276451, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1816, + "time": 0.3435722411831627, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1816, + "time": 0.3435722411831627, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1828, + "time": 0.3458475540386803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1828, + "time": 0.3458475540386803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1840, + "time": 0.34812286689419797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1840, + "time": 0.34812286689419797, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3503981797497156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3503981797497156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1864, + "time": 0.35267349260523323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 1864, + "time": 0.35267349260523323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 1876, + "time": 0.35494880546075086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 1876, + "time": 0.35494880546075086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3822525597269625, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2032, + "time": 0.38452787258248006, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2032, + "time": 0.38452787258248006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.38680318543799774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.3890784982935154, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2056, + "time": 0.3890784982935154, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.39135381114903295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2092, + "time": 0.39590443686006827, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.4004550625711035, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2128, + "time": 0.40273037542662116, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2128, + "time": 0.40273037542662116, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2140, + "time": 0.40500568828213884, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2152, + "time": 0.4072810011376564, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2152, + "time": 0.4072810011376564, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.40955631399317405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2188, + "time": 0.4141069397042093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4550625711035267, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4732650739476678, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4732650739476678, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2597, + "time": 0.49146757679180886, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.49146757679180886, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2645, + "time": 0.5005688282138794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.5005688282138794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2693, + "time": 0.50967007963595, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.50967007963595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2741, + "time": 0.5187713310580205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5642775881683731, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5733788395904437, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5733788395904437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5824800910125142, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5824800910125142, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5915813424345847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.6552901023890785, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3511, + "time": 0.664391353811149, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6734926052332196, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3571, + "time": 0.6757679180887373, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3571, + "time": 0.6757679180887373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6780432309442548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6780432309442548, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6780432309442548, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6803185437997724, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6803185437997724, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6825938566552902, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6825938566552902, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6916951080773606, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3667, + "time": 0.6939704209328782, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3667, + "time": 0.6939704209328782, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6962457337883959, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6962457337883959, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6962457337883959, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3691, + "time": 0.6985210466439136, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3691, + "time": 0.6985210466439136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3703, + "time": 0.7007963594994312, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3703, + "time": 0.7007963594994312, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.7098976109215017, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3847, + "time": 0.7281001137656428, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7463026166097839, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3956, + "time": 0.7485779294653016, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3956, + "time": 0.7485779294653016, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7508532423208192, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7508532423208192, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.5005688282138795, + "noteOrder": 3968, + "time": 0.7508532423208192, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3980, + "time": 0.7531285551763367, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3980, + "time": 0.7531285551763367, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3992, + "time": 0.7554038680318543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3992, + "time": 0.7554038680318543, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3447,13 +5747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.5005688282138795, + "noteOrder": 4040, + "time": 0.764505119453925, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3470,13 +5770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.50967007963595, + "noteOrder": 4052, + "time": 0.7667804323094426, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3493,13 +5793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.50967007963595, + "noteOrder": 4052, + "time": 0.7667804323094426, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3511,18 +5811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2740, - "time": 0.5187713310580205, + "noteOrder": 4064, + "time": 0.7690557451649601, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3534,16 +5834,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2980, - "time": 0.5642775881683731, + "noteOrder": 4064, + "time": 0.7690557451649601, "position": { "x": 5, "y": 0 @@ -3562,13 +5862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 3028, - "time": 0.5733788395904437, + "noteOrder": 4064, + "time": 0.7690557451649601, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3580,18 +5880,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3028, - "time": 0.5733788395904437, + "noteOrder": 4076, + "time": 0.7713310580204779, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3608,11 +5908,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.5824800910125142, + "noteOrder": 4076, + "time": 0.7713310580204779, "position": { "x": 4, "y": 0 @@ -3631,13 +5931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3077, - "time": 0.5824800910125142, + "noteOrder": 4088, + "time": 0.7736063708759955, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3649,18 +5949,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3125, - "time": 0.5915813424345847, + "noteOrder": 4088, + "time": 0.7736063708759955, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3672,18 +5972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.6552901023890785, + "noteOrder": 4136, + "time": 0.7827076222980659, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3695,18 +5995,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3509, - "time": 0.664391353811149, + "noteOrder": 4208, + "time": 0.7963594994311719, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3718,18 +6018,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.6734926052332195, + "noteOrder": 4328, + "time": 0.8191126279863481, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3746,13 +6046,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3581, - "time": 0.6780432309442549, + "noteOrder": 4352, + "time": 0.8236632536973835, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3764,18 +6064,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3653, - "time": 0.6916951080773606, + "noteOrder": 4376, + "time": 0.8282138794084186, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3792,11 +6092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3677, - "time": 0.6962457337883959, + "noteOrder": 4376, + "time": 0.8282138794084186, "position": { "x": 8, "y": 0 @@ -3815,11 +6115,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.7098976109215017, + "noteOrder": 4388, + "time": 0.8304891922639362, "position": { "x": 8, "y": 0 @@ -3833,18 +6133,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3846, - "time": 0.7281001137656428, + "noteOrder": 4388, + "time": 0.8304891922639362, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3856,18 +6156,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3942, - "time": 0.7463026166097838, + "noteOrder": 4400, + "time": 0.8327645051194539, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3879,18 +6179,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3966, - "time": 0.7508532423208192, + "noteOrder": 4413, + "time": 0.8350398179749716, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3907,13 +6207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4038, - "time": 0.764505119453925, + "noteOrder": 4413, + "time": 0.8350398179749716, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3925,18 +6225,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4062, - "time": 0.7690557451649602, + "noteOrder": 4425, + "time": 0.8373151308304893, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3948,18 +6248,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4134, - "time": 0.782707622298066, + "noteOrder": 4449, + "time": 0.8418657565415245, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3976,11 +6276,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4206, - "time": 0.7963594994311719, + "noteOrder": 4473, + "time": 0.8464163822525597, "position": { "x": 4, "y": 0 @@ -3999,13 +6299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.8191126279863481, + "noteOrder": 4473, + "time": 0.8464163822525597, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4022,13 +6322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4350, - "time": 0.8236632536973835, + "noteOrder": 4485, + "time": 0.8486916951080774, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4045,13 +6345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 2, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4374, - "time": 0.8282138794084187, + "noteOrder": 4485, + "time": 0.8486916951080774, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4068,13 +6368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4374, - "time": 0.8282138794084187, + "noteOrder": 4497, + "time": 0.850967007963595, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4091,13 +6391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4398, - "time": 0.832764505119454, + "noteOrder": 4509, + "time": 0.8532423208191127, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4109,18 +6409,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.8373151308304893, + "noteOrder": 4509, + "time": 0.8532423208191127, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4137,13 +6437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 4447, - "time": 0.8418657565415245, + "noteOrder": 4521, + "time": 0.8555176336746303, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4155,18 +6455,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 177, "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.8464163822525598, + "noteOrder": 4533, + "time": 0.8577929465301479, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4178,18 +6478,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4471, - "time": 0.8464163822525598, + "noteOrder": 4533, + "time": 0.8577929465301479, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4206,11 +6506,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4495, - "time": 0.8509670079635949, + "noteOrder": 4545, + "time": 0.8600682593856654, "position": { "x": 2, "y": 0 @@ -4229,13 +6529,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4519, - "time": 0.8555176336746303, + "noteOrder": 4557, + "time": 0.8623435722411832, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4247,18 +6547,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4543, - "time": 0.8600682593856654, + "noteOrder": 4557, + "time": 0.8623435722411832, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4276,9 +6576,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4567, + "noteOrder": 4569, "time": 0.8646188850967008, "position": { "x": 6, @@ -4299,9 +6599,9 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.8691695108077361, "position": { "x": 6, @@ -4322,10 +6622,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4711, - "time": 0.8919226393629125, + "noteOrder": 4713, + "time": 0.8919226393629124, "position": { "x": 2, "y": 0 @@ -4345,10 +6645,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4807, - "time": 0.9101251422070535, + "noteOrder": 4809, + "time": 0.9101251422070534, "position": { "x": 5, "y": 0 @@ -4368,9 +6668,9 @@ }, { "lineGroupId": 185, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.9283276450511946, "position": { "x": 2, @@ -4391,9 +6691,9 @@ }, { "lineGroupId": 185, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4951, + "noteOrder": 4954, "time": 0.9374288964732651, "position": { "x": 4, diff --git a/tracks/BAAM/281_difficulty_1b.json b/tracks/BAAM/281_difficulty_1b.json index 025c9ee9..f635ca7f 100644 --- a/tracks/BAAM/281_difficulty_1b.json +++ b/tracks/BAAM/281_difficulty_1b.json @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05460750853242321, "position": { "x": 4, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.06370875995449375, "position": { "x": 6, @@ -234,7 +234,7 @@ }, { "noteOrder": 601, - "time": 0.11376564277588169, + "time": 0.11376564277588168, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 649, - "time": 0.12286689419795223, + "time": 0.12286689419795221, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 697, - "time": 0.13196814562002276, + "time": 0.13196814562002274, "position": { "x": 4, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.16382252559726962, "position": { "x": 4, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.16837315130830488, + "noteOrder": 890, + "time": 0.1683731513083049, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.17292377701934014, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17747440273037543, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.1820250284414107, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 985, - "time": 0.18657565415244595, + "noteOrder": 986, + "time": 0.18657565415244598, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.19112627986348124, "position": { "x": 4, @@ -534,7 +534,7 @@ }, { "noteOrder": 1034, - "time": 0.1956769055745165, + "time": 0.19567690557451647, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1274, - "time": 0.2411831626848692, + "time": 0.24118316268486917, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.24573378839590446, + "noteOrder": 1299, + "time": 0.24573378839590443, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.25028441410693975, + "noteOrder": 1323, + "time": 0.2502844141069397, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.254835039817975, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.25938566552901027, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.26393629124004553, + "noteOrder": 1395, + "time": 0.2639362912400455, "position": { "x": 2, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.2684869169510808, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.27303754266211605, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2775881683731513, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2821387940841866, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.28668941979522183, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.30944254835039825, + "noteOrder": 1635, + "time": 0.3094425483503982, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.3139931740614335, + "noteOrder": 1659, + "time": 0.31399317406143346, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.3185437997724687, "position": { "x": 3, @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1779, - "time": 0.33674630261660976, + "time": 0.3367463026166098, "position": { "x": 8, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1803, - "time": 0.341296928327645, + "time": 0.3412969283276451, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3458475540386803, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.3503981797497156, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.35494880546075086, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.3594994311717861, + "noteOrder": 1900, + "time": 0.3594994311717862, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.391353811149033, + "noteOrder": 2068, + "time": 0.39135381114903295, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.40955631399317405, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.44596131968145625, + "noteOrder": 2357, + "time": 0.4459613196814562, "position": { "x": 8, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4823663253697384, + "noteOrder": 2549, + "time": 0.48236632536973834, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.6006825938566553, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.6052332195676906, + "noteOrder": 3198, + "time": 0.6052332195676905, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.6188850967007965, + "noteOrder": 3270, + "time": 0.6188850967007964, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.6234357224118316, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3366, "time": 0.6370875995449374, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.6416382252559727, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3415, "time": 0.646188850967008, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3439, "time": 0.6507394766780432, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.6689419795221844, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.68259385665529, + "noteOrder": 3607, + "time": 0.6825938566552902, "position": { "x": 2, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3631, "time": 0.6871444823663254, "position": { "x": 2, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3703, "time": 0.7007963594994312, "position": { "x": 2, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3727, "time": 0.7053469852104665, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3751, "time": 0.7098976109215017, "position": { "x": 2, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3775, "time": 0.714448236632537, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.7189988623435722, + "noteOrder": 3799, + "time": 0.7189988623435724, "position": { "x": 2, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3822, - "time": 0.7235494880546076, + "noteOrder": 3823, + "time": 0.7235494880546075, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3847, "time": 0.7281001137656428, "position": { "x": 2, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3847, "time": 0.7281001137656428, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3871, "time": 0.7326507394766781, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 3896, "time": 0.7372013651877133, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.7417519908987487, + "noteOrder": 3920, + "time": 0.7417519908987485, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.7554038680318543, "position": { "x": 8, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.7599544937428897, "position": { "x": 8, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4088, "time": 0.7736063708759955, "position": { "x": 8, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7781569965870307, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.782707622298066, + "noteOrder": 4136, + "time": 0.7827076222980659, "position": { "x": 8, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7872582480091014, + "noteOrder": 4160, + "time": 0.7872582480091013, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7918088737201365, "position": { "x": 8, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4208, "time": 0.7963594994311719, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.800910125142207, "position": { "x": 8, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.8191126279863481, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.8236632536973835, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4374, - "time": 0.8282138794084187, + "noteOrder": 4376, + "time": 0.8282138794084186, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4398, - "time": 0.832764505119454, + "noteOrder": 4400, + "time": 0.8327645051194539, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4423, + "noteOrder": 4425, "time": 0.8373151308304893, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.8418657565415245, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4471, - "time": 0.8464163822525598, + "noteOrder": 4473, + "time": 0.8464163822525597, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.8509670079635949, + "noteOrder": 4497, + "time": 0.850967007963595, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4521, "time": 0.8555176336746303, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.8600682593856654, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4569, "time": 0.8646188850967008, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.8691695108077361, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.8691695108077361, "position": { "x": 7, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4711, - "time": 0.8919226393629125, + "noteOrder": 4713, + "time": 0.8919226393629124, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.8964732650739476, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.901023890784983, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.9055745164960182, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4807, - "time": 0.9101251422070535, + "noteOrder": 4809, + "time": 0.9101251422070534, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.9146757679180887, + "noteOrder": 4833, + "time": 0.9146757679180888, "position": { "x": 6, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.9192263936291241, + "noteOrder": 4857, + "time": 0.919226393629124, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.9237770193401592, + "noteOrder": 4881, + "time": 0.9237770193401593, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.9283276450511946, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 4930, "time": 0.9328782707622298, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 4954, "time": 0.9374288964732651, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.9419795221843004, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.9419795221843004, "position": { "x": 7, @@ -2356,9 +2356,9 @@ "lineNodes": [ { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.3822525597269625, "position": { "x": 8, @@ -2379,9 +2379,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.4004550625711035, "position": { "x": 4, @@ -2402,9 +2402,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.4004550625711035, "position": { "x": 2, @@ -2425,9 +2425,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.4186575654152446, "position": { "x": 6, @@ -2448,9 +2448,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.4186575654152446, "position": { "x": 8, @@ -2470,13 +2470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.42775881683731515, + "noteOrder": 2236, + "time": 0.42320819112627983, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2488,18 +2488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2307, - "time": 0.43686006825938567, + "noteOrder": 2236, + "time": 0.42320819112627983, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2516,11 +2516,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2331, - "time": 0.44141069397042093, + "noteOrder": 2260, + "time": 0.42775881683731515, "position": { "x": 4, "y": 0 @@ -2539,13 +2539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2404, - "time": 0.45506257110352677, + "noteOrder": 2284, + "time": 0.4323094425483504, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2557,18 +2557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2452, - "time": 0.4641638225255973, + "noteOrder": 2284, + "time": 0.4323094425483504, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2585,11 +2585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.4732650739476678, + "noteOrder": 2308, + "time": 0.43686006825938567, "position": { "x": 8, "y": 0 @@ -2608,13 +2608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.4914675767918089, + "noteOrder": 2320, + "time": 0.4391353811149033, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2631,13 +2631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2596, - "time": 0.4914675767918089, + "noteOrder": 2320, + "time": 0.4391353811149033, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2649,18 +2649,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.5005688282138795, + "noteOrder": 2333, + "time": 0.44141069397042093, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2672,18 +2672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.50967007963595, + "noteOrder": 2345, + "time": 0.4436860068259386, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2700,13 +2700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2740, - "time": 0.5187713310580205, + "noteOrder": 2345, + "time": 0.4436860068259386, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2718,18 +2718,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.5278725824800911, + "noteOrder": 2405, + "time": 0.4550625711035267, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2741,18 +2741,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.5369738339021616, + "noteOrder": 2429, + "time": 0.459613196814562, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2764,16 +2764,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2836, - "time": 0.5369738339021616, + "noteOrder": 2429, + "time": 0.459613196814562, "position": { "x": 6, "y": 0 @@ -2792,13 +2792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.5460750853242321, + "noteOrder": 2453, + "time": 0.4641638225255973, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2810,18 +2810,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.5460750853242321, + "noteOrder": 2477, + "time": 0.46871444823663255, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2838,13 +2838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2932, - "time": 0.5551763367463026, + "noteOrder": 2477, + "time": 0.46871444823663255, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2861,11 +2861,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.5551763367463026, + "noteOrder": 2501, + "time": 0.4732650739476678, "position": { "x": 8, "y": 0 @@ -2884,13 +2884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.5642775881683731, + "noteOrder": 2597, + "time": 0.49146757679180886, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2907,13 +2907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2980, - "time": 0.5642775881683731, + "noteOrder": 2597, + "time": 0.49146757679180886, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2930,11 +2930,34 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3028, - "time": 0.5733788395904437, + "noteOrder": 2621, + "time": 0.4960182025028442, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4960182025028442, "position": { "x": 4, "y": 0 @@ -2953,11 +2976,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3028, - "time": 0.5733788395904437, + "noteOrder": 2645, + "time": 0.5005688282138794, "position": { "x": 6, "y": 0 @@ -2976,11 +2999,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3077, - "time": 0.5824800910125142, + "noteOrder": 2669, + "time": 0.5051194539249146, "position": { "x": 6, "y": 0 @@ -2999,13 +3022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.5824800910125142, + "noteOrder": 2669, + "time": 0.5051194539249146, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3017,18 +3040,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, - "time": 0.5915813424345847, + "noteOrder": 2693, + "time": 0.50967007963595, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3045,13 +3068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3125, - "time": 0.5915813424345847, + "noteOrder": 2717, + "time": 0.5142207053469852, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3063,18 +3086,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3173, - "time": 0.6006825938566553, + "noteOrder": 2717, + "time": 0.5142207053469852, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3086,18 +3109,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, - "time": 0.6097838452787259, + "noteOrder": 2741, + "time": 0.5187713310580205, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3109,18 +3132,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3245, - "time": 0.6143344709897611, + "noteOrder": 2765, + "time": 0.5233219567690558, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3132,18 +3155,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3317, - "time": 0.627986348122867, + "noteOrder": 2765, + "time": 0.5233219567690558, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3160,13 +3183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 3341, - "time": 0.6325369738339022, + "noteOrder": 2789, + "time": 0.527872582480091, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3178,18 +3201,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.6552901023890785, + "noteOrder": 2837, + "time": 0.5369738339021616, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3206,13 +3229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 3509, - "time": 0.664391353811149, + "noteOrder": 2837, + "time": 0.5369738339021616, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3224,18 +3247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.6734926052332195, + "noteOrder": 2886, + "time": 0.5460750853242321, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3247,18 +3270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.6916951080773606, + "noteOrder": 2886, + "time": 0.5460750853242321, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3270,18 +3293,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.7463026166097838, + "noteOrder": 2934, + "time": 0.5551763367463026, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3293,16 +3316,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4038, - "time": 0.764505119453925, + "noteOrder": 2934, + "time": 0.5551763367463026, "position": { "x": 8, "y": 0 @@ -3316,6 +3339,627 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5642775881683731, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5642775881683731, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5733788395904437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5733788395904437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5824800910125142, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5824800910125142, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5915813424345847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5915813424345847, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3174, + "time": 0.6006825938566553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.6097838452787259, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3246, + "time": 0.6143344709897611, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.6279863481228669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3342, + "time": 0.6325369738339022, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.6552901023890785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3511, + "time": 0.664391353811149, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6734926052332196, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6780432309442548, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6780432309442548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6916951080773606, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6962457337883959, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6962457337883959, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7463026166097839, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7508532423208192, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7508532423208192, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4040, + "time": 0.764505119453925, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7690557451649601, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7690557451649601, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false diff --git a/tracks/BAAM/info.json b/tracks/BAAM/info.json index e2add862..61315f35 100644 --- a/tracks/BAAM/info.json +++ b/tracks/BAAM/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "BAAM", - "SongLength": "113.972245", + "SongLength": "104.019592", "SongAuthorName": "MOMOLAND", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/BBoom BBoom/282_difficulty_1a.json b/tracks/BBoom BBoom/282_difficulty_1a.json index f4d56334..4eee78d8 100644 --- a/tracks/BBoom BBoom/282_difficulty_1a.json +++ b/tracks/BBoom BBoom/282_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.018369690011481053, + "time": 0.018369690011481057, "position": { "x": 6, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05510907003444317, "position": { "x": 4, @@ -154,7 +154,7 @@ }, { "noteOrder": 361, - "time": 0.06888633754305395, + "time": 0.06888633754305397, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 649, - "time": 0.12399540757749712, + "time": 0.12399540757749714, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 698, "time": 0.13318025258323765, "position": { "x": 5, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 721, - "time": 0.1377726750861079, + "noteOrder": 722, + "time": 0.13777267508610794, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 745, - "time": 0.14236509758897817, + "noteOrder": 746, + "time": 0.1423650975889782, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 769, - "time": 0.14695752009184843, + "noteOrder": 770, + "time": 0.14695752009184845, "position": { "x": 8, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.16532721010332949, + "noteOrder": 866, + "time": 0.1653272101033295, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1010, - "time": 0.19288174512055106, + "time": 0.1928817451205511, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1034, - "time": 0.19747416762342138, + "time": 0.19747416762342135, "position": { "x": 5, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1106, - "time": 0.21125143513203215, + "time": 0.21125143513203218, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.22502870264064292, "position": { "x": 5, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.2296211251435132, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1226, + "noteOrder": 1227, "time": 0.23421354764638347, "position": { "x": 8, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.24339839265212398, + "noteOrder": 1275, + "time": 0.243398392652124, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.24799081515499424, + "noteOrder": 1299, + "time": 0.24799081515499427, "position": { "x": 4, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.2525832376578645, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.2571756601607348, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.261768082663605, + "noteOrder": 1371, + "time": 0.2617680826636051, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1382, - "time": 0.26406429391504016, + "noteOrder": 1383, + "time": 0.2640642939150402, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1491, - "time": 0.28473019517795634, + "time": 0.2847301951779564, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1539, - "time": 0.29391504018369685, + "time": 0.2939150401836969, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1575, - "time": 0.3008036739380023, + "time": 0.30080367393800234, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.3444316877152698, + "noteOrder": 1804, + "time": 0.34443168771526983, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1851, - "time": 0.3536165327210103, + "noteOrder": 1852, + "time": 0.35361653272101035, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3582089552238806, "position": { "x": 2, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.3673938002296211, "position": { "x": 2, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.3719862227324913, + "noteOrder": 1948, + "time": 0.37198622273249143, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.3765786452353616, + "noteOrder": 1972, + "time": 0.37657864523536166, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 2068, - "time": 0.39494833524684275, + "time": 0.3949483352468427, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2092, + "noteOrder": 2093, "time": 0.399540757749713, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2164, + "noteOrder": 2165, "time": 0.4133180252583238, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2188, + "noteOrder": 2189, "time": 0.417910447761194, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.4316877152698048, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.4316877152698048, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.4362801377726751, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2308, + "noteOrder": 2309, "time": 0.44087256027554533, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.4454649827784156, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.45005740528128585, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.45464982778415614, + "noteOrder": 2381, + "time": 0.4546498277841562, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.47761194029850745, "position": { "x": 2, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.48220436280137774, "position": { "x": 5, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.48679678530424797, + "noteOrder": 2550, + "time": 0.486796785304248, "position": { "x": 2, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2574, "time": 0.49138920780711826, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2596, - "time": 0.4959816303099885, + "noteOrder": 2598, + "time": 0.49598163030998854, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.5005740528128587, + "noteOrder": 2622, + "time": 0.5005740528128588, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2717, + "noteOrder": 2718, "time": 0.5189437428243399, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2741, - "time": 0.52353616532721, + "noteOrder": 2742, + "time": 0.5235361653272101, "position": { "x": 2, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2765, - "time": 0.5281285878300803, + "noteOrder": 2766, + "time": 0.5281285878300804, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2981, - "time": 0.5694603903559127, + "noteOrder": 2982, + "time": 0.5694603903559128, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.574052812858783, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3031, "time": 0.5786452353616532, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3077, - "time": 0.5878300803673937, + "noteOrder": 3079, + "time": 0.5878300803673938, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.592422502870264, + "noteOrder": 3103, + "time": 0.5924225028702641, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.5970149253731343, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3149, - "time": 0.6016073478760046, + "noteOrder": 3151, + "time": 0.6016073478760047, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3246, + "noteOrder": 3247, "time": 0.6199770378874856, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3246, + "noteOrder": 3247, "time": 0.6199770378874856, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3342, - "time": 0.6383467278989666, + "noteOrder": 3343, + "time": 0.6383467278989667, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3342, - "time": 0.6383467278989666, + "noteOrder": 3343, + "time": 0.6383467278989667, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3512, "time": 0.6704936854190585, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3536, "time": 0.6750861079219288, "position": { "x": 5, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.69804822043628, + "noteOrder": 3656, + "time": 0.6980482204362801, "position": { "x": 8, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 3848, "time": 0.7347876004592422, "position": { "x": 8, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3895, - "time": 0.7439724454649826, + "noteOrder": 3896, + "time": 0.7439724454649829, "position": { "x": 8, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3919, - "time": 0.7485648679678529, + "noteOrder": 3920, + "time": 0.748564867967853, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3967, - "time": 0.7577497129735935, + "noteOrder": 3969, + "time": 0.7577497129735936, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.7623421354764638, + "noteOrder": 3993, + "time": 0.7623421354764639, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.766934557979334, + "noteOrder": 4017, + "time": 0.7669345579793341, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4039, - "time": 0.7715269804822042, + "noteOrder": 4041, + "time": 0.7715269804822044, "position": { "x": 2, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4087, + "noteOrder": 4089, "time": 0.7807118254879448, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4111, - "time": 0.785304247990815, + "noteOrder": 4113, + "time": 0.7853042479908151, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4183, + "noteOrder": 4185, "time": 0.799081515499426, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4209, "time": 0.8036739380022963, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4281, "time": 0.817451205510907, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.8541905855338692, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4496, - "time": 0.8587830080367393, + "noteOrder": 4498, + "time": 0.8587830080367395, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.8633754305396096, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4544, + "noteOrder": 4546, "time": 0.8679678530424799, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4568, + "noteOrder": 4570, "time": 0.8725602755453502, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4592, + "noteOrder": 4594, "time": 0.8771526980482205, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.8817451205510907, "position": { "x": 8, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9001148105625717, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4856, + "noteOrder": 4859, "time": 0.9276693455797933, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4880, + "noteOrder": 4883, "time": 0.9322617680826636, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4904, + "noteOrder": 4907, "time": 0.9368541905855339, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4928, + "noteOrder": 4931, "time": 0.9414466130884042, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4976, + "noteOrder": 4979, "time": 0.9506314580941446, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5003, "time": 0.9552238805970149, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.9598163030998852, + "noteOrder": 5027, + "time": 0.9598163030998853, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5049, + "noteOrder": 5051, "time": 0.9644087256027555, "position": { "x": 6, @@ -2116,10 +2116,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.036739380022962106, + "time": 0.03673938002296211, "position": { "x": 7, "y": 0 @@ -2139,9 +2139,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 240, + "noteOrder": 241, "time": 0.04592422502870264, "position": { "x": 7, @@ -2162,10 +2162,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, - "time": 0.07347876004592421, + "time": 0.07347876004592423, "position": { "x": 3, "y": 0 @@ -2185,10 +2185,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, - "time": 0.08266360505166474, + "time": 0.08266360505166476, "position": { "x": 3, "y": 0 @@ -2208,10 +2208,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, - "time": 0.08266360505166474, + "time": 0.08266360505166476, "position": { "x": 5, "y": 0 @@ -2231,7 +2231,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, "time": 0.09184845005740527, @@ -2254,7 +2254,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.09184845005740527, @@ -2276,11 +2276,11 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 505, - "time": 0.09644087256027553, + "noteOrder": 493, + "time": 0.09414466130884042, "position": { "x": 2, "y": 0 @@ -2294,18 +2294,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 529, - "time": 0.10103329506314582, + "noteOrder": 493, + "time": 0.09414466130884042, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2322,13 +2322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 4, "isSliding": false, - "noteOrder": 553, - "time": 0.10562571756601608, + "noteOrder": 505, + "time": 0.09644087256027555, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2340,18 +2340,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 5, "isSliding": false, - "noteOrder": 577, - "time": 0.11021814006888633, + "noteOrder": 505, + "time": 0.09644087256027555, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2368,11 +2368,11 @@ "isPlayAudio": false }, { - "lineGroupId": 18, + "lineGroupId": 15, "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.1285878300803674, + "noteOrder": 505, + "time": 0.09644087256027555, "position": { "x": 2, "y": 0 @@ -2386,18 +2386,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, + "lineGroupId": 15, "indexInLine": 2, "isSliding": false, - "noteOrder": 769, - "time": 0.14695752009184843, + "noteOrder": 517, + "time": 0.09873708381171067, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2409,18 +2409,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.16532721010332949, + "noteOrder": 517, + "time": 0.09873708381171067, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2437,13 +2437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 4, "isSliding": false, - "noteOrder": 890, - "time": 0.16991963260619974, + "noteOrder": 529, + "time": 0.10103329506314582, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2455,18 +2455,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 5, "isSliding": false, - "noteOrder": 914, - "time": 0.17451205510907, + "noteOrder": 529, + "time": 0.10103329506314582, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2483,13 +2483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 938, - "time": 0.1791044776119403, + "noteOrder": 529, + "time": 0.10103329506314582, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2506,13 +2506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 962, - "time": 0.18369690011481055, + "noteOrder": 541, + "time": 0.10332950631458095, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2524,18 +2524,87 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 16, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 541, + "time": 0.10332950631458095, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 553, + "time": 0.10562571756601609, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 553, + "time": 0.10562571756601609, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 1010, - "time": 0.19288174512055106, + "noteOrder": 553, + "time": 0.10562571756601609, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2552,13 +2621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 17, "indexInLine": 2, "isSliding": false, - "noteOrder": 1034, - "time": 0.19747416762342138, + "noteOrder": 565, + "time": 0.1079219288174512, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2575,13 +2644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 17, "indexInLine": 3, "isSliding": false, - "noteOrder": 1058, - "time": 0.20206659012629163, + "noteOrder": 565, + "time": 0.1079219288174512, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2598,11 +2667,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 17, "indexInLine": 4, "isSliding": false, - "noteOrder": 1154, - "time": 0.22043628013777267, + "noteOrder": 577, + "time": 0.11021814006888633, "position": { "x": 4, "y": 0 @@ -2621,11 +2690,34 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1154, - "time": 0.22043628013777267, + "noteOrder": 577, + "time": 0.11021814006888633, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 577, + "time": 0.11021814006888633, "position": { "x": 2, "y": 0 @@ -2644,11 +2736,34 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1226, - "time": 0.23421354764638347, + "noteOrder": 673, + "time": 0.1285878300803674, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 770, + "time": 0.14695752009184845, "position": { "x": 6, "y": 0 @@ -2662,18 +2777,2847 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 866, + "time": 0.1653272101033295, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 878, + "time": 0.16762342135476463, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 878, + "time": 0.16762342135476463, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 890, + "time": 0.1699196326061998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 890, + "time": 0.1699196326061998, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 890, + "time": 0.1699196326061998, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 902, + "time": 0.17221584385763491, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 902, + "time": 0.17221584385763491, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 914, + "time": 0.17451205510907003, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 914, + "time": 0.17451205510907003, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 914, + "time": 0.17451205510907003, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 926, + "time": 0.17680826636050517, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 926, + "time": 0.17680826636050517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 938, + "time": 0.1791044776119403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 938, + "time": 0.1791044776119403, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 938, + "time": 0.1791044776119403, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 950, + "time": 0.18140068886337543, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 950, + "time": 0.18140068886337543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 962, + "time": 0.18369690011481055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 962, + "time": 0.18369690011481055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 962, + "time": 0.18369690011481055, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1010, + "time": 0.1928817451205511, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1034, + "time": 0.19747416762342135, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1058, + "time": 0.20206659012629163, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1154, + "time": 0.22043628013777267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1154, + "time": 0.22043628013777267, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1227, + "time": 0.23421354764638347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1251, + "time": 0.23880597014925373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1275, + "time": 0.243398392652124, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1299, + "time": 0.24799081515499427, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1323, + "time": 0.2525832376578645, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1347, + "time": 0.2571756601607348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.2755453501722159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2801377726750861, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1491, + "time": 0.2847301951779564, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1515, + "time": 0.2893226176808266, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1539, + "time": 0.2939150401836969, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.31228473019517794, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1648, + "time": 0.31458094144661314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1648, + "time": 0.31458094144661314, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1660, + "time": 0.31687715269804817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1672, + "time": 0.31917336394948337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1672, + "time": 0.31917336394948337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1684, + "time": 0.3214695752009185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1708, + "time": 0.32606199770378874, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.330654420206659, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1780, + "time": 0.3398392652123996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1756, + "time": 0.33524684270952926, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1780, + "time": 0.3398392652123996, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.34902411021814006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1876, + "time": 0.3582089552238806, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1924, + "time": 0.3673938002296211, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1972, + "time": 0.37657864523536166, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4592422502870264, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2417, + "time": 0.46153846153846156, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2417, + "time": 0.46153846153846156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2429, + "time": 0.46383467278989665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2429, + "time": 0.46383467278989665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2429, + "time": 0.46383467278989665, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2441, + "time": 0.4661308840413318, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2441, + "time": 0.4661308840413318, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2453, + "time": 0.46842709529276694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2453, + "time": 0.46842709529276694, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.46842709529276694, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.4707233065442021, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2465, + "time": 0.4707233065442021, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.47301951779563717, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.47301951779563717, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2477, + "time": 0.47301951779563717, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2489, + "time": 0.4753157290470723, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2489, + "time": 0.4753157290470723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2501, + "time": 0.47761194029850745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2501, + "time": 0.47761194029850745, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.505166475315729, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2694, + "time": 0.5143513203214696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5327210103329506, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2838, + "time": 0.5419058553386912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5464982778415614, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5510907003444317, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5602755453501722, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5648679678530425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3055, + "time": 0.5832376578645235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3055, + "time": 0.5832376578645235, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3151, + "time": 0.6016073478760047, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6061997703788748, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6153846153846154, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6061997703788748, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6153846153846154, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6245694603903559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.6337543053960963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6245694603903559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.6337543053960963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.642939150401837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.661308840413318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.642939150401837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.661308840413318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3560, + "time": 0.6796785304247992, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3572, + "time": 0.6819747416762342, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3572, + "time": 0.6819747416762342, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6842709529276693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6842709529276693, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6842709529276693, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3596, + "time": 0.6865671641791045, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3596, + "time": 0.6865671641791045, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3608, + "time": 0.6888633754305397, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3608, + "time": 0.6888633754305397, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3608, + "time": 0.6888633754305397, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3620, + "time": 0.6911595866819747, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3620, + "time": 0.6911595866819747, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3632, + "time": 0.69345579793341, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3632, + "time": 0.69345579793341, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3632, + "time": 0.69345579793341, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3644, + "time": 0.695752009184845, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3644, + "time": 0.695752009184845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6980482204362801, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6980482204362801, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7072330654420207, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3716, + "time": 0.7095292766934559, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3716, + "time": 0.7095292766934559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3728, + "time": 0.711825487944891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3740, + "time": 0.714121699196326, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3740, + "time": 0.714121699196326, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7164179104477612, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1250, - "time": 0.23880597014925373, + "noteOrder": 3764, + "time": 0.7187141216991964, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2690,13 +5634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1274, - "time": 0.24339839265212398, + "noteOrder": 3764, + "time": 0.7187141216991964, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2713,11 +5657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 2, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1298, - "time": 0.24799081515499424, + "noteOrder": 3776, + "time": 0.7210103329506314, "position": { "x": 6, "y": 0 @@ -2736,13 +5680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 3, + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1322, - "time": 0.2525832376578645, + "noteOrder": 3776, + "time": 0.7210103329506314, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2759,13 +5703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 4, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.2571756601607348, + "noteOrder": 3776, + "time": 0.7210103329506314, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2777,18 +5721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.2755453501722158, + "noteOrder": 3788, + "time": 0.7233065442020666, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2805,13 +5749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1467, - "time": 0.2801377726750861, + "noteOrder": 3788, + "time": 0.7233065442020666, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2828,13 +5772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 2, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1491, - "time": 0.28473019517795634, + "noteOrder": 3800, + "time": 0.7256027554535017, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2851,13 +5795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 3, + "lineGroupId": 139, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1515, - "time": 0.2893226176808266, + "noteOrder": 3800, + "time": 0.7256027554535017, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2874,13 +5818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 4, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1539, - "time": 0.29391504018369685, + "noteOrder": 3800, + "time": 0.7256027554535017, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2892,18 +5836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.31228473019517794, + "noteOrder": 3812, + "time": 0.7278989667049369, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2920,13 +5864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1659, - "time": 0.31687715269804817, + "noteOrder": 3812, + "time": 0.7278989667049369, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2938,16 +5882,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1683, - "time": 0.32146957520091846, + "noteOrder": 3824, + "time": 0.730195177956372, "position": { "x": 6, "y": 0 @@ -2966,13 +5910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1707, - "time": 0.32606199770378874, + "noteOrder": 3824, + "time": 0.730195177956372, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2989,13 +5933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.33065442020665897, + "noteOrder": 3824, + "time": 0.730195177956372, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3012,13 +5956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3398392652123995, + "noteOrder": 3836, + "time": 0.7324913892078071, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3035,13 +5979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1755, - "time": 0.33524684270952926, + "noteOrder": 3836, + "time": 0.7324913892078071, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3053,18 +5997,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1779, - "time": 0.3398392652123995, + "noteOrder": 3848, + "time": 0.7347876004592422, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3076,18 +6020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1827, - "time": 0.34902411021814, + "noteOrder": 3848, + "time": 0.7347876004592422, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3099,18 +6043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 1875, - "time": 0.3582089552238806, + "noteOrder": 3945, + "time": 0.7531572904707233, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3127,11 +6071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 145, "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.3673938002296211, + "noteOrder": 4041, + "time": 0.7715269804822044, "position": { "x": 4, "y": 0 @@ -3150,13 +6094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 3, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1971, - "time": 0.3765786452353616, + "noteOrder": 4137, + "time": 0.7898966704936854, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3168,18 +6112,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2404, - "time": 0.4592422502870264, + "noteOrder": 4149, + "time": 0.7921928817451206, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3196,13 +6140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2428, - "time": 0.46383467278989665, + "noteOrder": 4149, + "time": 0.7921928817451206, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3214,18 +6158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.46842709529276694, + "noteOrder": 4161, + "time": 0.7944890929965558, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3237,18 +6181,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.47301951779563717, + "noteOrder": 4173, + "time": 0.7967853042479908, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3265,13 +6209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2645, - "time": 0.505166475315729, + "noteOrder": 4173, + "time": 0.7967853042479908, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3283,16 +6227,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 2693, - "time": 0.5143513203214696, + "noteOrder": 4233, + "time": 0.8082663605051665, "position": { "x": 3, "y": 0 @@ -3311,13 +6255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2789, - "time": 0.5327210103329506, + "noteOrder": 4245, + "time": 0.8105625717566016, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3334,13 +6278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2837, - "time": 0.5419058553386912, + "noteOrder": 4245, + "time": 0.8105625717566016, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3357,13 +6301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2861, - "time": 0.5464982778415614, + "noteOrder": 4257, + "time": 0.8128587830080367, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3380,13 +6324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5510907003444316, + "noteOrder": 4269, + "time": 0.8151549942594718, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3403,13 +6347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 2, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2933, - "time": 0.5602755453501722, + "noteOrder": 4269, + "time": 0.8151549942594718, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3426,13 +6370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2957, - "time": 0.5648679678530425, + "noteOrder": 4329, + "time": 0.8266360505166476, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3449,13 +6393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3053, - "time": 0.5832376578645235, + "noteOrder": 4341, + "time": 0.8289322617680827, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3472,13 +6416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3053, - "time": 0.5832376578645235, + "noteOrder": 4341, + "time": 0.8289322617680827, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3490,18 +6434,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3149, - "time": 0.6016073478760046, + "noteOrder": 4353, + "time": 0.8312284730195177, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3513,18 +6457,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3173, - "time": 0.6061997703788748, + "noteOrder": 4353, + "time": 0.8312284730195177, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3541,13 +6485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, - "time": 0.6153846153846153, + "noteOrder": 4353, + "time": 0.8312284730195177, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3559,18 +6503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.6061997703788748, + "noteOrder": 4365, + "time": 0.8335246842709529, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3587,13 +6531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3221, - "time": 0.6153846153846153, + "noteOrder": 4365, + "time": 0.8335246842709529, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3610,13 +6554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3270, - "time": 0.6245694603903559, + "noteOrder": 4377, + "time": 0.835820895522388, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3633,13 +6577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3318, - "time": 0.6337543053960963, + "noteOrder": 4377, + "time": 0.835820895522388, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3656,13 +6600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3270, - "time": 0.6245694603903559, + "noteOrder": 4377, + "time": 0.835820895522388, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3679,13 +6623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3318, - "time": 0.6337543053960963, + "noteOrder": 4389, + "time": 0.8381171067738232, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3702,13 +6646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3366, - "time": 0.6429391504018369, + "noteOrder": 4389, + "time": 0.8381171067738232, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3720,18 +6664,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3462, - "time": 0.6613088404133179, + "noteOrder": 4402, + "time": 0.8404133180252583, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3743,18 +6687,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3366, - "time": 0.6429391504018369, + "noteOrder": 4402, + "time": 0.8404133180252583, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3771,13 +6715,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.6613088404133179, + "noteOrder": 4402, + "time": 0.8404133180252583, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3789,18 +6733,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.679678530424799, + "noteOrder": 4414, + "time": 0.8427095292766935, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3817,13 +6761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3582, - "time": 0.6842709529276693, + "noteOrder": 4414, + "time": 0.8427095292766935, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3835,18 +6779,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3606, - "time": 0.6888633754305395, + "noteOrder": 4426, + "time": 0.8450057405281287, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3863,13 +6807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3630, - "time": 0.6934557979334098, + "noteOrder": 4426, + "time": 0.8450057405281287, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3881,18 +6825,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.7072330654420206, + "noteOrder": 4426, + "time": 0.8450057405281287, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3904,18 +6848,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3726, - "time": 0.7118254879448909, + "noteOrder": 4522, + "time": 0.8633754305396096, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3932,13 +6876,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3750, - "time": 0.7164179104477612, + "noteOrder": 4618, + "time": 0.8817451205510907, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3950,16 +6894,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3774, - "time": 0.7210103329506313, + "noteOrder": 4714, + "time": 0.9001148105625717, "position": { "x": 8, "y": 0 @@ -3973,16 +6917,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3798, - "time": 0.7256027554535016, + "noteOrder": 4726, + "time": 0.9024110218140069, "position": { "x": 8, "y": 0 @@ -4001,13 +6945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3823, - "time": 0.7301951779563719, + "noteOrder": 4726, + "time": 0.9024110218140069, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4019,18 +6963,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3943, - "time": 0.7531572904707232, + "noteOrder": 4738, + "time": 0.9047072330654421, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4047,13 +6991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4039, - "time": 0.7715269804822042, + "noteOrder": 4738, + "time": 0.9047072330654421, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4070,13 +7014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4135, - "time": 0.7898966704936855, + "noteOrder": 4738, + "time": 0.9047072330654421, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4093,13 +7037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4159, - "time": 0.7944890929965557, + "noteOrder": 4750, + "time": 0.9070034443168772, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4111,18 +7055,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4231, - "time": 0.8082663605051665, + "noteOrder": 4750, + "time": 0.9070034443168772, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4139,13 +7083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4255, - "time": 0.8128587830080367, + "noteOrder": 4762, + "time": 0.9092996555683124, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4157,18 +7101,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4327, - "time": 0.8266360505166476, + "noteOrder": 4762, + "time": 0.9092996555683124, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4185,13 +7129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4351, - "time": 0.8312284730195179, + "noteOrder": 4762, + "time": 0.9092996555683124, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4208,13 +7152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4375, - "time": 0.835820895522388, + "noteOrder": 4774, + "time": 0.9115958668197474, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4226,18 +7170,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4400, - "time": 0.8404133180252583, + "noteOrder": 4774, + "time": 0.9115958668197474, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4254,13 +7198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4424, - "time": 0.8450057405281286, + "noteOrder": 4786, + "time": 0.9138920780711826, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4272,18 +7216,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4520, - "time": 0.8633754305396096, + "noteOrder": 4786, + "time": 0.9138920780711826, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4295,18 +7239,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, - "time": 0.8817451205510907, + "noteOrder": 4786, + "time": 0.9138920780711826, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4323,11 +7267,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4712, - "time": 0.9001148105625717, + "noteOrder": 4798, + "time": 0.9161882893226176, "position": { "x": 8, "y": 0 @@ -4341,18 +7285,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4736, - "time": 0.904707233065442, + "noteOrder": 4798, + "time": 0.9161882893226176, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4369,13 +7313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4760, - "time": 0.9092996555683123, + "noteOrder": 4810, + "time": 0.9184845005740528, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4387,18 +7331,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4784, - "time": 0.9138920780711826, + "noteOrder": 4810, + "time": 0.9184845005740528, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4416,9 +7360,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4808, + "noteOrder": 4810, "time": 0.9184845005740528, "position": { "x": 8, @@ -4439,9 +7383,9 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4856, + "noteOrder": 4859, "time": 0.9276693455797933, "position": { "x": 8, @@ -4462,9 +7406,9 @@ }, { "lineGroupId": 179, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4880, + "noteOrder": 4883, "time": 0.9322617680826636, "position": { "x": 6, @@ -4485,9 +7429,9 @@ }, { "lineGroupId": 179, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4904, + "noteOrder": 4907, "time": 0.9368541905855339, "position": { "x": 8, @@ -4508,9 +7452,9 @@ }, { "lineGroupId": 179, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4928, + "noteOrder": 4931, "time": 0.9414466130884042, "position": { "x": 6, @@ -4531,9 +7475,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, + "noteOrder": 4955, "time": 0.9460390355912743, "position": { "x": 5, @@ -4554,9 +7498,9 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4976, + "noteOrder": 4979, "time": 0.9506314580941446, "position": { "x": 3, @@ -4577,9 +7521,9 @@ }, { "lineGroupId": 184, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5001, + "noteOrder": 5003, "time": 0.9552238805970149, "position": { "x": 5, @@ -4600,10 +7544,10 @@ }, { "lineGroupId": 184, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5025, - "time": 0.9598163030998852, + "noteOrder": 5027, + "time": 0.9598163030998853, "position": { "x": 3, "y": 0 @@ -4623,9 +7567,9 @@ }, { "lineGroupId": 184, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5049, + "noteOrder": 5051, "time": 0.9644087256027555, "position": { "x": 5, diff --git a/tracks/BBoom BBoom/282_difficulty_1b.json b/tracks/BBoom BBoom/282_difficulty_1b.json index 7bdd4f39..0ff56e7b 100644 --- a/tracks/BBoom BBoom/282_difficulty_1b.json +++ b/tracks/BBoom BBoom/282_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.018369690011481053, + "time": 0.018369690011481057, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 192, - "time": 0.036739380022962106, + "time": 0.03673938002296211, "position": { "x": 8, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.04592422502870264, "position": { "x": 8, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.05051664753157291, "position": { "x": 8, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05510907003444317, "position": { "x": 4, @@ -174,7 +174,7 @@ }, { "noteOrder": 361, - "time": 0.06888633754305395, + "time": 0.06888633754305397, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 385, - "time": 0.07347876004592421, + "time": 0.07347876004592423, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 649, - "time": 0.12399540757749712, + "time": 0.12399540757749714, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 721, - "time": 0.1377726750861079, + "noteOrder": 722, + "time": 0.13777267508610794, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 769, - "time": 0.14695752009184843, + "noteOrder": 770, + "time": 0.14695752009184845, "position": { "x": 8, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.1515499425947187, "position": { "x": 4, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.15614236509758897, "position": { "x": 8, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.16073478760045923, + "noteOrder": 842, + "time": 0.16073478760045926, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1010, - "time": 0.19288174512055106, + "time": 0.1928817451205511, "position": { "x": 8, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1034, - "time": 0.19747416762342138, + "time": 0.19747416762342135, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1106, - "time": 0.21125143513203215, + "time": 0.21125143513203218, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.22502870264064292, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.24339839265212398, + "noteOrder": 1275, + "time": 0.243398392652124, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.24799081515499424, + "noteOrder": 1299, + "time": 0.24799081515499427, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.2525832376578645, "position": { "x": 4, @@ -634,7 +634,7 @@ }, { "noteOrder": 1491, - "time": 0.28473019517795634, + "time": 0.2847301951779564, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1635, + "noteOrder": 1636, "time": 0.31228473019517794, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1635, + "noteOrder": 1636, "time": 0.31228473019517794, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1659, + "noteOrder": 1660, "time": 0.31687715269804817, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1659, + "noteOrder": 1660, "time": 0.31687715269804817, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1683, - "time": 0.32146957520091846, + "noteOrder": 1684, + "time": 0.3214695752009185, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1683, - "time": 0.32146957520091846, + "noteOrder": 1684, + "time": 0.3214695752009185, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1851, - "time": 0.3536165327210103, + "noteOrder": 1852, + "time": 0.35361653272101035, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3582089552238806, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.3719862227324913, + "noteOrder": 1948, + "time": 0.37198622273249143, "position": { "x": 8, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.3765786452353616, + "noteOrder": 1972, + "time": 0.37657864523536166, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 2068, - "time": 0.39494833524684275, + "time": 0.3949483352468427, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2092, + "noteOrder": 2093, "time": 0.399540757749713, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2164, + "noteOrder": 2165, "time": 0.4133180252583238, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2188, + "noteOrder": 2189, "time": 0.417910447761194, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.47761194029850745, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.48220436280137774, "position": { "x": 8, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.48679678530424797, + "noteOrder": 2550, + "time": 0.486796785304248, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.5005740528128587, + "noteOrder": 2622, + "time": 0.5005740528128588, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2645, + "noteOrder": 2646, "time": 0.505166475315729, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2717, + "noteOrder": 2718, "time": 0.5189437428243399, "position": { "x": 2, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2741, - "time": 0.52353616532721, + "noteOrder": 2742, + "time": 0.5235361653272101, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2765, - "time": 0.5281285878300803, + "noteOrder": 2766, + "time": 0.5281285878300804, "position": { "x": 2, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2981, - "time": 0.5694603903559127, + "noteOrder": 2982, + "time": 0.5694603903559128, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.574052812858783, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3031, "time": 0.5786452353616532, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3077, - "time": 0.5878300803673937, + "noteOrder": 3079, + "time": 0.5878300803673938, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.592422502870264, + "noteOrder": 3103, + "time": 0.5924225028702641, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.5970149253731343, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.7256027554535016, + "noteOrder": 3800, + "time": 0.7256027554535017, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 3848, "time": 0.7347876004592422, "position": { "x": 2, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3895, - "time": 0.7439724454649826, + "noteOrder": 3896, + "time": 0.7439724454649829, "position": { "x": 2, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3919, - "time": 0.7485648679678529, + "noteOrder": 3920, + "time": 0.748564867967853, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4087, + "noteOrder": 4089, "time": 0.7807118254879448, "position": { "x": 2, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4111, - "time": 0.785304247990815, + "noteOrder": 4113, + "time": 0.7853042479908151, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4135, - "time": 0.7898966704936855, + "noteOrder": 4137, + "time": 0.7898966704936854, "position": { "x": 2, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4159, - "time": 0.7944890929965557, + "noteOrder": 4161, + "time": 0.7944890929965558, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4233, "time": 0.8082663605051665, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4257, "time": 0.8128587830080367, "position": { "x": 2, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4424, - "time": 0.8450057405281286, + "noteOrder": 4426, + "time": 0.8450057405281287, "position": { "x": 2, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.8541905855338692, "position": { "x": 2, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4496, - "time": 0.8587830080367393, + "noteOrder": 4498, + "time": 0.8587830080367395, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4568, + "noteOrder": 4570, "time": 0.8725602755453502, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.8817451205510907, "position": { "x": 8, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4640, + "noteOrder": 4642, "time": 0.886337543053961, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.8909299655568312, "position": { "x": 8, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4688, - "time": 0.8955223880597015, + "noteOrder": 4690, + "time": 0.8955223880597014, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4808, + "noteOrder": 4810, "time": 0.9184845005740528, "position": { "x": 8, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4856, + "noteOrder": 4859, "time": 0.9276693455797933, "position": { "x": 8, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4880, + "noteOrder": 4883, "time": 0.9322617680826636, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4904, + "noteOrder": 4907, "time": 0.9368541905855339, "position": { "x": 8, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4928, + "noteOrder": 4931, "time": 0.9414466130884042, "position": { "x": 8, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4952, + "noteOrder": 4955, "time": 0.9460390355912743, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4976, + "noteOrder": 4979, "time": 0.9506314580941446, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5003, "time": 0.9552238805970149, "position": { "x": 8, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.9598163030998852, + "noteOrder": 5027, + "time": 0.9598163030998853, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5049, + "noteOrder": 5051, "time": 0.9644087256027555, "position": { "x": 8, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5073, - "time": 0.9690011481056257, + "noteOrder": 5075, + "time": 0.9690011481056258, "position": { "x": 4, "y": 0 @@ -1816,7 +1816,7 @@ "lineNodes": [ { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.09184845005740527, @@ -1838,11 +1838,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, - "time": 0.10103329506314582, + "noteOrder": 505, + "time": 0.09644087256027555, "position": { "x": 2, "y": 0 @@ -1856,18 +1856,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 673, - "time": 0.1285878300803674, + "noteOrder": 505, + "time": 0.09644087256027555, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -1884,13 +1884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, + "lineGroupId": 13, "indexInLine": 1, "isSliding": false, - "noteOrder": 721, - "time": 0.1377726750861079, + "noteOrder": 529, + "time": 0.10103329506314582, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -1902,18 +1902,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, + "lineGroupId": 13, "indexInLine": 2, "isSliding": false, - "noteOrder": 769, - "time": 0.14695752009184843, + "noteOrder": 553, + "time": 0.10562571756601609, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -1925,18 +1925,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.16532721010332949, + "noteOrder": 553, + "time": 0.10562571756601609, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -1953,13 +1953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 1, "isSliding": false, - "noteOrder": 914, - "time": 0.17451205510907, + "noteOrder": 673, + "time": 0.1285878300803674, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -1976,13 +1976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1250, - "time": 0.23880597014925373, + "noteOrder": 722, + "time": 0.13777267508610794, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1994,18 +1994,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1274, - "time": 0.24339839265212398, + "noteOrder": 770, + "time": 0.14695752009184845, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2017,18 +2017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 2, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, - "time": 0.24799081515499424, + "noteOrder": 866, + "time": 0.1653272101033295, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2045,13 +2045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 3, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, - "time": 0.2525832376578645, + "noteOrder": 890, + "time": 0.1699196326061998, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2068,13 +2068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1442, - "time": 0.2755453501722158, + "noteOrder": 890, + "time": 0.1699196326061998, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2086,18 +2086,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 1467, - "time": 0.2801377726750861, + "noteOrder": 914, + "time": 0.17451205510907003, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2114,13 +2114,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 24, "indexInLine": 2, "isSliding": false, - "noteOrder": 1491, - "time": 0.28473019517795634, + "noteOrder": 938, + "time": 0.1791044776119403, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2137,13 +2137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 24, "indexInLine": 3, "isSliding": false, - "noteOrder": 1515, - "time": 0.2893226176808266, + "noteOrder": 938, + "time": 0.1791044776119403, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2160,13 +2160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.33065442020665897, + "noteOrder": 1251, + "time": 0.23880597014925373, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2183,13 +2183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3398392652123995, + "noteOrder": 1275, + "time": 0.243398392652124, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2206,13 +2206,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1755, - "time": 0.33524684270952926, + "noteOrder": 1299, + "time": 0.24799081515499427, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2224,18 +2224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1779, - "time": 0.3398392652123995, + "noteOrder": 1323, + "time": 0.2525832376578645, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2247,18 +2247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.34902411021814, + "noteOrder": 1443, + "time": 0.2755453501722159, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2270,18 +2270,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.3582089552238806, + "noteOrder": 1467, + "time": 0.2801377726750861, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2293,18 +2293,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1923, - "time": 0.3673938002296211, + "noteOrder": 1491, + "time": 0.2847301951779564, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2321,11 +2321,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1971, - "time": 0.3765786452353616, + "noteOrder": 1515, + "time": 0.2893226176808266, "position": { "x": 4, "y": 0 @@ -2344,13 +2344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.3857634902411021, + "noteOrder": 1732, + "time": 0.330654420206659, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2362,16 +2362,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2116, - "time": 0.40413318025258327, + "noteOrder": 1780, + "time": 0.3398392652123996, "position": { "x": 7, "y": 0 @@ -2390,11 +2390,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2212, - "time": 0.4225028702640643, + "noteOrder": 1756, + "time": 0.33524684270952926, "position": { "x": 3, "y": 0 @@ -2413,13 +2413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2260, - "time": 0.4316877152698048, + "noteOrder": 1780, + "time": 0.3398392652123996, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2431,18 +2431,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.4592422502870264, + "noteOrder": 1828, + "time": 0.34902411021814006, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2459,13 +2459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2428, - "time": 0.46383467278989665, + "noteOrder": 1876, + "time": 0.3582089552238806, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2482,13 +2482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2428, - "time": 0.46383467278989665, + "noteOrder": 1924, + "time": 0.3673938002296211, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2505,11 +2505,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.46842709529276694, + "noteOrder": 1972, + "time": 0.37657864523536166, "position": { "x": 4, "y": 0 @@ -2528,13 +2528,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.46842709529276694, + "noteOrder": 2020, + "time": 0.3857634902411022, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2546,18 +2546,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2548, - "time": 0.48679678530424797, + "noteOrder": 2044, + "time": 0.3903559127439724, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2569,18 +2569,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2596, - "time": 0.4959816303099885, + "noteOrder": 2044, + "time": 0.3903559127439724, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2597,13 +2597,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.5005740528128587, + "noteOrder": 2117, + "time": 0.40413318025258327, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2615,18 +2615,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 63, "indexInLine": 2, "isSliding": false, - "noteOrder": 2645, - "time": 0.505166475315729, + "noteOrder": 2141, + "time": 0.4087256027554535, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2638,16 +2638,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2789, - "time": 0.5327210103329506, + "noteOrder": 2141, + "time": 0.4087256027554535, "position": { "x": 6, "y": 0 @@ -2666,13 +2666,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 2837, - "time": 0.5419058553386912, + "noteOrder": 2213, + "time": 0.42250287026406436, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2684,18 +2684,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5510907003444316, + "noteOrder": 2237, + "time": 0.4270952927669346, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2712,11 +2712,517 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2237, + "time": 0.4270952927669346, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2261, + "time": 0.4316877152698048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.4362801377726751, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2285, + "time": 0.4362801377726751, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4592422502870264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2429, + "time": 0.46383467278989665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2429, + "time": 0.46383467278989665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2453, + "time": 0.46842709529276694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.46842709529276694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2550, + "time": 0.486796785304248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.49598163030998854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2622, + "time": 0.5005740528128588, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2646, + "time": 0.505166475315729, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5327210103329506, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2838, + "time": 0.5419058553386912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5510907003444317, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5602755453501722, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6061997703788748, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6153846153846154, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2933, - "time": 0.5602755453501722, + "noteOrder": 3271, + "time": 0.6245694603903559, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.6337543053960963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.642939150401837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.661308840413318, "position": { "x": 4, "y": 0 @@ -2730,18 +3236,225 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.642939150401837, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.661308840413318, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3560, + "time": 0.6796785304247992, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6842709529276693, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3584, + "time": 0.6842709529276693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3608, + "time": 0.6888633754305397, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3632, + "time": 0.69345579793341, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3632, + "time": 0.69345579793341, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6980482204362801, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.6061997703788748, + "noteOrder": 3680, + "time": 0.7026406429391504, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -2758,11 +3471,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3221, - "time": 0.6153846153846153, + "noteOrder": 3680, + "time": 0.7026406429391504, "position": { "x": 6, "y": 0 @@ -2781,11 +3494,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3270, - "time": 0.6245694603903559, + "noteOrder": 3704, + "time": 0.7072330654420207, "position": { "x": 8, "y": 0 @@ -2804,13 +3517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3318, - "time": 0.6337543053960963, + "noteOrder": 3728, + "time": 0.711825487944891, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2827,13 +3540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3366, - "time": 0.6429391504018369, + "noteOrder": 3728, + "time": 0.711825487944891, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2850,13 +3563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.6613088404133179, + "noteOrder": 3752, + "time": 0.7164179104477612, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2868,18 +3581,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.6429391504018369, + "noteOrder": 3848, + "time": 0.7347876004592422, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2896,13 +3609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.6613088404133179, + "noteOrder": 3945, + "time": 0.7531572904707233, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2914,18 +3627,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.679678530424799, + "noteOrder": 3969, + "time": 0.7577497129735936, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2937,18 +3650,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3606, - "time": 0.6888633754305395, + "noteOrder": 3969, + "time": 0.7577497129735936, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2965,13 +3678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3654, - "time": 0.69804822043628, + "noteOrder": 3993, + "time": 0.7623421354764639, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2988,13 +3701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3702, - "time": 0.7072330654420206, + "noteOrder": 4017, + "time": 0.7669345579793341, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3006,18 +3719,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3750, - "time": 0.7164179104477612, + "noteOrder": 4017, + "time": 0.7669345579793341, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3034,13 +3747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 107, "indexInLine": 1, "isSliding": false, - "noteOrder": 3847, - "time": 0.7347876004592422, + "noteOrder": 4041, + "time": 0.7715269804822044, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3052,16 +3765,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3943, - "time": 0.7531572904707232, + "noteOrder": 4065, + "time": 0.7761194029850746, "position": { "x": 2, "y": 0 @@ -3080,13 +3793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3991, - "time": 0.7623421354764638, + "noteOrder": 4065, + "time": 0.7761194029850746, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3098,16 +3811,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4039, - "time": 0.7715269804822042, + "noteOrder": 4329, + "time": 0.8266360505166476, "position": { "x": 2, "y": 0 @@ -3127,10 +3840,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.8266360505166476, + "noteOrder": 4353, + "time": 0.8312284730195177, "position": { "x": 2, "y": 0 @@ -3148,11 +3861,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4353, + "time": 0.8312284730195177, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, + "noteOrder": 4377, "time": 0.835820895522388, "position": { "x": 2, @@ -3171,11 +3907,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4402, + "time": 0.8404133180252583, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4402, + "time": 0.8404133180252583, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.8633754305396096, "position": { "x": 2, @@ -3196,9 +3978,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4568, + "noteOrder": 4570, "time": 0.8725602755453502, "position": { "x": 4, @@ -3219,9 +4001,9 @@ }, { "lineGroupId": 121, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.8817451205510907, "position": { "x": 4, @@ -3242,9 +4024,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9001148105625717, "position": { "x": 8, @@ -3263,12 +4045,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4738, + "time": 0.9047072330654421, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4738, + "time": 0.9047072330654421, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4762, + "time": 0.9092996555683124, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4760, - "time": 0.9092996555683123, + "noteOrder": 4786, + "time": 0.9138920780711826, "position": { "x": 8, "y": 0 @@ -3285,6 +4136,29 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4786, + "time": 0.9138920780711826, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/BBoom BBoom/info.json b/tracks/BBoom BBoom/info.json index e0978c37..6297fb18 100644 --- a/tracks/BBoom BBoom/info.json +++ b/tracks/BBoom BBoom/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "BBoom BBoom", - "SongLength": "113.867755", + "SongLength": "103.915102", "SongAuthorName": "MOMOLAND", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1a.json b/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1a.json index 2bfedae2..7c2ea077 100644 --- a/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1a.json +++ b/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1a.json @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 362, "time": 0.0627418174213113, "position": { "x": 7, @@ -194,7 +194,7 @@ }, { "noteOrder": 554, - "time": 0.09620412004601066, + "time": 0.09620412004601067, "position": { "x": 5, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 626, - "time": 0.10875248353027292, + "noteOrder": 627, + "time": 0.10875248353027293, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 651, - "time": 0.11293527135836033, + "time": 0.11293527135836036, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 867, + "noteOrder": 868, "time": 0.15058036181114712, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 891, + "noteOrder": 892, "time": 0.15476314963923454, "position": { "x": 3, @@ -314,7 +314,7 @@ }, { "noteOrder": 988, - "time": 0.17149430095158424, + "time": 0.17149430095158422, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1060, + "noteOrder": 1061, "time": 0.1840426644358465, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1084, - "time": 0.1882254522639339, + "noteOrder": 1085, + "time": 0.18822545226393392, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1156, + "noteOrder": 1157, "time": 0.20077381574819617, "position": { "x": 7, @@ -414,7 +414,7 @@ }, { "noteOrder": 1253, - "time": 0.21750496706054584, + "time": 0.21750496706054587, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1277, - "time": 0.22168775488863326, + "time": 0.2216877548886333, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1349, + "noteOrder": 1350, "time": 0.23423611837289554, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1373, - "time": 0.23841890620098294, + "noteOrder": 1374, + "time": 0.23841890620098297, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1421, - "time": 0.2467844818571578, + "noteOrder": 1422, + "time": 0.24678448185715782, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1566, + "noteOrder": 1567, "time": 0.27188120882568234, "position": { "x": 7, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1590, + "noteOrder": 1591, "time": 0.27606399665376974, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1614, + "noteOrder": 1615, "time": 0.28024678448185714, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1614, + "noteOrder": 1615, "time": 0.28024678448185714, "position": { "x": 4, @@ -634,7 +634,7 @@ }, { "noteOrder": 1687, - "time": 0.2927951479661194, + "time": 0.29279514796611944, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1807, - "time": 0.3137090871065565, + "noteOrder": 1808, + "time": 0.31370908710655654, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1879, - "time": 0.32625745059081873, + "noteOrder": 1880, + "time": 0.3262574505908188, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1903, + "noteOrder": 1904, "time": 0.33044023841890624, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2024, + "noteOrder": 2025, "time": 0.3513541775593433, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2072, + "noteOrder": 2073, "time": 0.35971975321551813, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2120, + "noteOrder": 2121, "time": 0.368085328871693, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2168, - "time": 0.3764509045278678, + "noteOrder": 2169, + "time": 0.37645090452786784, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2458, - "time": 0.42664435846491683, + "noteOrder": 2459, + "time": 0.4266443584649169, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2506, - "time": 0.4350099341210917, + "noteOrder": 2507, + "time": 0.43500993412109173, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2554, - "time": 0.44337550977726653, + "noteOrder": 2555, + "time": 0.4433755097772666, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2578, - "time": 0.4475582976053539, + "noteOrder": 2579, + "time": 0.447558297605354, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2602, - "time": 0.4517410854334413, + "noteOrder": 2603, + "time": 0.45174108543344144, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2650, - "time": 0.46010666108961623, + "noteOrder": 2651, + "time": 0.4601066610896163, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2724, "time": 0.4726550245738785, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2747, - "time": 0.4768378124019659, + "noteOrder": 2748, + "time": 0.47683781240196593, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2771, + "noteOrder": 2772, "time": 0.48102060023005333, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2795, - "time": 0.4852033880581407, + "noteOrder": 2796, + "time": 0.4852033880581408, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2843, - "time": 0.4935689637143156, + "noteOrder": 2844, + "time": 0.49356896371431563, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2891, + "noteOrder": 2892, "time": 0.5019345393704904, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2939, + "noteOrder": 2941, "time": 0.5103001150266653, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2963, - "time": 0.5144829028547526, + "noteOrder": 2965, + "time": 0.5144829028547527, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2988, + "noteOrder": 2989, "time": 0.5186656906828401, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3036, - "time": 0.5270312663390149, + "noteOrder": 3037, + "time": 0.527031266339015, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3108, + "noteOrder": 3109, "time": 0.5395796298232772, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.547945205479452, + "noteOrder": 3158, + "time": 0.5479452054794521, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3180, + "noteOrder": 3182, "time": 0.5521279933075395, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3206, "time": 0.5563107811356269, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3206, "time": 0.5563107811356269, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3277, + "noteOrder": 3278, "time": 0.5688591446198892, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3301, - "time": 0.5730419324479765, + "noteOrder": 3302, + "time": 0.5730419324479766, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3301, - "time": 0.5730419324479765, + "noteOrder": 3302, + "time": 0.5730419324479766, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3373, - "time": 0.5855902959322388, + "noteOrder": 3375, + "time": 0.5855902959322389, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3399, "time": 0.5897730837603262, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3469, + "noteOrder": 3471, "time": 0.6023214472445885, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3495, "time": 0.6065042350726759, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.6190525985569382, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.6232353863850256, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3662, + "noteOrder": 3664, "time": 0.6357837498692879, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3686, - "time": 0.6399665376973752, + "noteOrder": 3688, + "time": 0.6399665376973753, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3686, - "time": 0.6399665376973752, + "noteOrder": 3688, + "time": 0.6399665376973753, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3759, - "time": 0.6525149011816375, + "noteOrder": 3760, + "time": 0.6525149011816376, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3783, - "time": 0.6566976890097249, + "noteOrder": 3784, + "time": 0.656697689009725, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3783, - "time": 0.6566976890097249, + "noteOrder": 3784, + "time": 0.656697689009725, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.6776116281501621, + "noteOrder": 3905, + "time": 0.6776116281501622, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.685977203806337, + "noteOrder": 3953, + "time": 0.6859772038063369, "position": { "x": 2, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3975, + "noteOrder": 3977, "time": 0.6901599916344243, "position": { "x": 8, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4048, + "noteOrder": 4049, "time": 0.7027083551186866, "position": { "x": 8, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4072, + "noteOrder": 4074, "time": 0.706891142946774, "position": { "x": 2, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4144, + "noteOrder": 4146, "time": 0.7194395064310363, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.7236222942591237, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4240, + "noteOrder": 4242, "time": 0.736170657743386, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4264, - "time": 0.7403534455714733, + "noteOrder": 4266, + "time": 0.7403534455714734, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4385, - "time": 0.7612673847119105, + "noteOrder": 4387, + "time": 0.7612673847119106, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4433, - "time": 0.7696329603680853, + "noteOrder": 4435, + "time": 0.7696329603680854, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4457, + "noteOrder": 4459, "time": 0.7738157481961728, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4578, - "time": 0.7947296873366099, + "noteOrder": 4580, + "time": 0.7947296873366098, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4722, + "noteOrder": 4724, "time": 0.8198264143051344, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4819, + "noteOrder": 4821, "time": 0.8365575656174841, "position": { "x": 6, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4843, - "time": 0.8407403534455714, + "noteOrder": 4845, + "time": 0.8407403534455715, "position": { "x": 2, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4915, - "time": 0.8532887169298337, + "noteOrder": 4917, + "time": 0.8532887169298338, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4939, - "time": 0.8574715047579211, + "noteOrder": 4941, + "time": 0.8574715047579212, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5035, - "time": 0.8742026560702708, + "noteOrder": 5038, + "time": 0.8742026560702709, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5060, - "time": 0.8783854438983582, + "noteOrder": 5062, + "time": 0.8783854438983583, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8825682317264456, + "noteOrder": 5086, + "time": 0.8825682317264457, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5156, - "time": 0.8951165952107079, + "noteOrder": 5158, + "time": 0.895116595210708, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5180, + "noteOrder": 5182, "time": 0.8992993830387954, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5252, + "noteOrder": 5255, "time": 0.9118477465230577, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5276, - "time": 0.916030534351145, + "noteOrder": 5279, + "time": 0.9160305343511451, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5300, - "time": 0.9202133221792325, + "noteOrder": 5303, + "time": 0.9202133221792326, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5325, - "time": 0.9243961100073199, + "noteOrder": 5327, + "time": 0.9243961100073198, "position": { "x": 4, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5349, + "noteOrder": 5351, "time": 0.9285788978354073, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5373, + "noteOrder": 5375, "time": 0.9327616856634947, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5421, + "noteOrder": 5423, "time": 0.9411272613196695, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5433, - "time": 0.9432186552337132, + "noteOrder": 5435, + "time": 0.9432186552337133, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5469, + "noteOrder": 5472, "time": 0.9494928369758444, "position": { "x": 3, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5481, - "time": 0.9515842308898882, + "noteOrder": 5484, + "time": 0.9515842308898881, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5541, + "noteOrder": 5544, "time": 0.9620412004601067, "position": { "x": 6, @@ -2216,7 +2216,7 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, "time": 0.11711805918644777, @@ -2237,12 +2237,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 687, + "time": 0.11920945310049148, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 687, + "time": 0.11920945310049148, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 699, - "time": 0.12130084701453518, + "time": 0.1213008470145352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 711, + "time": 0.12339224092857891, "position": { "x": 7, "y": 0 @@ -2260,9 +2329,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 711, + "time": 0.12339224092857891, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, "time": 0.1254836348426226, @@ -2283,9 +2375,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 735, + "time": 0.12757502875666632, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 735, + "time": 0.12757502875666632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 747, "time": 0.12966642267071002, @@ -2307,13 +2445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 916, - "time": 0.15894593746732197, + "noteOrder": 759, + "time": 0.13175781658475375, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2325,18 +2463,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 940, - "time": 0.16312872529540937, + "noteOrder": 759, + "time": 0.13175781658475375, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2353,13 +2491,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1012, - "time": 0.17567708877967164, + "noteOrder": 916, + "time": 0.15894593746732197, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2376,13 +2514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1036, - "time": 0.17985987660775907, + "noteOrder": 928, + "time": 0.1610373313813657, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2394,16 +2532,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 928, + "time": 0.1610373313813657, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1108, - "time": 0.19240824009202132, + "noteOrder": 940, + "time": 0.1631287252954094, "position": { "x": 4, "y": 0 @@ -2422,13 +2583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1132, - "time": 0.19659102792010877, + "noteOrder": 952, + "time": 0.16522011920945312, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2440,18 +2601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1205, - "time": 0.20913939140437102, + "noteOrder": 952, + "time": 0.16522011920945312, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2468,13 +2629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1229, - "time": 0.21332217923245841, + "noteOrder": 1012, + "time": 0.17567708877967164, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2491,13 +2652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1301, - "time": 0.22587054271672066, + "noteOrder": 1024, + "time": 0.17776848269371537, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2509,16 +2670,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1325, - "time": 0.23005333054480812, + "noteOrder": 1024, + "time": 0.17776848269371537, "position": { "x": 6, "y": 0 @@ -2537,13 +2698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1397, - "time": 0.24260169402907036, + "noteOrder": 1036, + "time": 0.17985987660775907, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2555,18 +2716,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1494, - "time": 0.25933284534142004, + "noteOrder": 1036, + "time": 0.17985987660775907, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2583,13 +2744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1518, - "time": 0.26351563316950743, + "noteOrder": 1036, + "time": 0.17985987660775907, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2606,13 +2767,5096 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1542, - "time": 0.2676984209975949, + "noteOrder": 1049, + "time": 0.1819512705218028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1049, + "time": 0.1819512705218028, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1061, + "time": 0.1840426644358465, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1061, + "time": 0.1840426644358465, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1109, + "time": 0.19240824009202134, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1121, + "time": 0.19449963400606507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1121, + "time": 0.19449963400606507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1133, + "time": 0.19659102792010877, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1145, + "time": 0.19868242183415244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1145, + "time": 0.19868242183415244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1205, + "time": 0.20913939140437102, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1217, + "time": 0.21123078531841472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1217, + "time": 0.21123078531841472, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1229, + "time": 0.21332217923245844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1229, + "time": 0.21332217923245844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1229, + "time": 0.21332217923245844, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1241, + "time": 0.21541357314650214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1241, + "time": 0.21541357314650214, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1253, + "time": 0.21750496706054587, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1253, + "time": 0.21750496706054587, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1302, + "time": 0.22587054271672072, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1314, + "time": 0.22796193663076442, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1314, + "time": 0.22796193663076442, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1326, + "time": 0.23005333054480814, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1338, + "time": 0.23214472445885181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1338, + "time": 0.23214472445885181, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1398, + "time": 0.2426016940290704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1410, + "time": 0.2446930879431141, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1410, + "time": 0.2446930879431141, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1422, + "time": 0.24678448185715782, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1422, + "time": 0.24678448185715782, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1434, + "time": 0.24887587577120152, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1434, + "time": 0.24887587577120152, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1446, + "time": 0.2509672696852452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1446, + "time": 0.2509672696852452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1494, + "time": 0.25933284534142004, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1506, + "time": 0.26142423925546376, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1506, + "time": 0.26142423925546376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1519, + "time": 0.2635156331695075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1531, + "time": 0.2656070270835512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1531, + "time": 0.2656070270835512, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1543, + "time": 0.2676984209975949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1591, + "time": 0.27606399665376974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1639, + "time": 0.2844295723099446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1651, + "time": 0.2865209662239883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1651, + "time": 0.2865209662239883, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1663, + "time": 0.288612360138032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1675, + "time": 0.2907037540520757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1675, + "time": 0.2907037540520757, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1687, + "time": 0.29279514796611944, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1687, + "time": 0.29279514796611944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1699, + "time": 0.2948865418801631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1699, + "time": 0.2948865418801631, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1711, + "time": 0.29697793579420684, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1711, + "time": 0.29697793579420684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1735, + "time": 0.30116072362229424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1748, + "time": 0.30325211753633796, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1748, + "time": 0.30325211753633796, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1760, + "time": 0.3053435114503817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1772, + "time": 0.3074349053644254, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1772, + "time": 0.3074349053644254, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1784, + "time": 0.3095262992784691, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1796, + "time": 0.3116176931925128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1796, + "time": 0.3116176931925128, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1832, + "time": 0.31789187493464394, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1844, + "time": 0.31998326884868766, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1844, + "time": 0.31998326884868766, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1856, + "time": 0.3220746627627314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1868, + "time": 0.3241660566767751, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1868, + "time": 0.3241660566767751, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1880, + "time": 0.3262574505908188, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1880, + "time": 0.3262574505908188, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1892, + "time": 0.3283488445048625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1892, + "time": 0.3283488445048625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1904, + "time": 0.33044023841890624, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1904, + "time": 0.33044023841890624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1928, + "time": 0.33462302624699364, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1940, + "time": 0.33671442016103736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1940, + "time": 0.33671442016103736, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1952, + "time": 0.3388058140750811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1964, + "time": 0.3408972079891248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1964, + "time": 0.3408972079891248, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1976, + "time": 0.34298860190316843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1989, + "time": 0.34507999581721216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1989, + "time": 0.34507999581721216, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2001, + "time": 0.3471713897312559, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2013, + "time": 0.34926278364529956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2013, + "time": 0.34926278364529956, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2218, + "time": 0.3848164801840427, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2230, + "time": 0.3869078740980864, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2230, + "time": 0.3869078740980864, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2242, + "time": 0.38899926801213014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2254, + "time": 0.3910906619261738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2254, + "time": 0.3910906619261738, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2266, + "time": 0.39318205584021754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2278, + "time": 0.39527344975426126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2278, + "time": 0.39527344975426126, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2290, + "time": 0.3973648436683049, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2302, + "time": 0.3994562375823486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2302, + "time": 0.3994562375823486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2314, + "time": 0.40154763149639233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2386, + "time": 0.4140959949806546, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2314, + "time": 0.40154763149639233, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2386, + "time": 0.4140959949806546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2700, + "time": 0.4684722367457911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4726550245738785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2748, + "time": 0.47683781240196593, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2772, + "time": 0.48102060023005333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2796, + "time": 0.4852033880581408, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3085, + "time": 0.5353968419951898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3109, + "time": 0.5395796298232772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5437624176513647, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3133, + "time": 0.5437624176513647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3158, + "time": 0.5479452054794521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3182, + "time": 0.5521279933075395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3230, + "time": 0.5604935689637143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3242, + "time": 0.562584962877758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3242, + "time": 0.562584962877758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3254, + "time": 0.5646763567918017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3266, + "time": 0.5667677507058454, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3266, + "time": 0.5667677507058454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3326, + "time": 0.577224720276064, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3338, + "time": 0.5793161141901078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3338, + "time": 0.5793161141901078, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3350, + "time": 0.5814075081041514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3362, + "time": 0.5834989020181951, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3362, + "time": 0.5834989020181951, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3423, + "time": 0.5939558715884137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5960472655024573, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5960472655024573, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5981386594165011, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5981386594165011, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5981386594165011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.6002300533305448, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3459, + "time": 0.6002300533305448, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3471, + "time": 0.6023214472445885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3471, + "time": 0.6023214472445885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3519, + "time": 0.6106870229007634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3531, + "time": 0.612778416814807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3531, + "time": 0.612778416814807, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3543, + "time": 0.6148698107288508, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3543, + "time": 0.6148698107288508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3543, + "time": 0.6148698107288508, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3555, + "time": 0.6169612046428945, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3555, + "time": 0.6169612046428945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3567, + "time": 0.6190525985569382, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3567, + "time": 0.6190525985569382, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3616, + "time": 0.6274181742131131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3628, + "time": 0.6295095681271567, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3628, + "time": 0.6295095681271567, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6316009620412005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3652, + "time": 0.6336923559552442, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3652, + "time": 0.6336923559552442, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3712, + "time": 0.6441493255254628, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3724, + "time": 0.6462407194395065, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3724, + "time": 0.6462407194395065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3736, + "time": 0.6483321133535502, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3748, + "time": 0.6504235072675939, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3748, + "time": 0.6504235072675939, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3808, + "time": 0.6608804768378125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3820, + "time": 0.6629718707518562, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3820, + "time": 0.6629718707518562, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3832, + "time": 0.6650632646658999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3845, + "time": 0.6671546585799436, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3845, + "time": 0.6671546585799436, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4001, + "time": 0.6943427794625118, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4013, + "time": 0.6964341733765554, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4013, + "time": 0.6964341733765554, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4025, + "time": 0.6985255672905991, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4037, + "time": 0.7006169612046429, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4037, + "time": 0.7006169612046429, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4098, + "time": 0.7110739307748615, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7131653246889051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7131653246889051, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4122, + "time": 0.7152567186029488, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4134, + "time": 0.7173481125169926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4134, + "time": 0.7173481125169926, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4194, + "time": 0.7278050820872112, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7298964760012548, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7298964760012548, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7319878699152985, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7319878699152985, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7319878699152985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4230, + "time": 0.7340792638293423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4230, + "time": 0.7340792638293423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4242, + "time": 0.736170657743386, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4242, + "time": 0.736170657743386, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4290, + "time": 0.7445362333995609, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4302, + "time": 0.7466276273136045, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4302, + "time": 0.7466276273136045, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4315, + "time": 0.7487190212276482, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4315, + "time": 0.7487190212276482, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4315, + "time": 0.7487190212276482, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4327, + "time": 0.750810415141692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4327, + "time": 0.750810415141692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4339, + "time": 0.7529018090557357, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4339, + "time": 0.7529018090557357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4339, + "time": 0.7529018090557357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4351, + "time": 0.7549932029697793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4351, + "time": 0.7549932029697793, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4363, + "time": 0.7570845968838231, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4363, + "time": 0.7570845968838231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4363, + "time": 0.7570845968838231, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4375, + "time": 0.7591759907978668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4375, + "time": 0.7591759907978668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4387, + "time": 0.7612673847119106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4387, + "time": 0.7612673847119106, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7633587786259542, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7633587786259542, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4411, + "time": 0.7654501725399979, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4411, + "time": 0.7654501725399979, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4411, + "time": 0.7654501725399979, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4423, + "time": 0.7675415664540417, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4423, + "time": 0.7675415664540417, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7779985360242603, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4495, + "time": 0.780089929938304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4495, + "time": 0.780089929938304, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7821813238523476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7821813238523476, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7821813238523476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7842727177663914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7842727177663914, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2624,16 +7868,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1590, - "time": 0.27606399665376974, + "noteOrder": 4531, + "time": 0.7863641116804351, "position": { "x": 4, "y": 0 @@ -2647,18 +7891,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1638, - "time": 0.2844295723099446, + "noteOrder": 4531, + "time": 0.7863641116804351, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2670,18 +7914,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1662, - "time": 0.288612360138032, + "noteOrder": 4531, + "time": 0.7863641116804351, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2693,18 +7937,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.30116072362229424, + "noteOrder": 4544, + "time": 0.7884555055944787, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2721,11 +7965,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1759, - "time": 0.3053435114503817, + "noteOrder": 4544, + "time": 0.7884555055944787, "position": { "x": 4, "y": 0 @@ -2739,18 +7983,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1783, - "time": 0.3095262992784691, + "noteOrder": 4556, + "time": 0.7905468995085225, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2767,13 +8011,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1831, - "time": 0.31789187493464394, + "noteOrder": 4556, + "time": 0.7905468995085225, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2785,16 +8029,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1855, - "time": 0.32207466276273133, + "noteOrder": 4556, + "time": 0.7905468995085225, "position": { "x": 3, "y": 0 @@ -2808,18 +8052,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1927, - "time": 0.33462302624699364, + "noteOrder": 4568, + "time": 0.7926382934225662, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2836,13 +8080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1952, - "time": 0.33880581407508104, + "noteOrder": 4568, + "time": 0.7926382934225662, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2854,16 +8098,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1976, - "time": 0.3429886019031685, + "noteOrder": 4580, + "time": 0.7947296873366098, "position": { "x": 4, "y": 0 @@ -2882,13 +8126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2000, - "time": 0.3471713897312559, + "noteOrder": 4580, + "time": 0.7947296873366098, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2900,18 +8144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2217, - "time": 0.38481648018404263, + "noteOrder": 4592, + "time": 0.7968210812506537, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2928,13 +8172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2241, - "time": 0.38899926801213003, + "noteOrder": 4592, + "time": 0.7968210812506537, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2946,16 +8190,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2265, - "time": 0.39318205584021754, + "noteOrder": 4604, + "time": 0.7989124751646972, "position": { "x": 4, "y": 0 @@ -2974,11 +8218,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2289, - "time": 0.39736484366830493, + "noteOrder": 4604, + "time": 0.7989124751646972, "position": { "x": 6, "y": 0 @@ -2992,16 +8236,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2313, - "time": 0.40154763149639233, + "noteOrder": 4604, + "time": 0.7989124751646972, "position": { "x": 3, "y": 0 @@ -3020,11 +8264,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2385, - "time": 0.4140959949806546, + "noteOrder": 4616, + "time": 0.8010038690787411, "position": { "x": 3, "y": 0 @@ -3043,13 +8287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2313, - "time": 0.40154763149639233, + "noteOrder": 4616, + "time": 0.8010038690787411, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3061,16 +8305,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 2385, - "time": 0.4140959949806546, + "noteOrder": 4748, + "time": 0.8240092021332218, "position": { "x": 7, "y": 0 @@ -3084,18 +8328,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2698, - "time": 0.4684722367457911, + "noteOrder": 4760, + "time": 0.8261005960472655, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3112,13 +8356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2723, - "time": 0.4726550245738785, + "noteOrder": 4760, + "time": 0.8261005960472655, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3135,13 +8379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2747, - "time": 0.4768378124019659, + "noteOrder": 4773, + "time": 0.8281919899613092, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3153,16 +8397,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 3, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2771, - "time": 0.48102060023005333, + "noteOrder": 4785, + "time": 0.8302833838753529, "position": { "x": 4, "y": 0 @@ -3176,18 +8420,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 4, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2795, - "time": 0.4852033880581407, + "noteOrder": 4785, + "time": 0.8302833838753529, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3199,18 +8443,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3084, - "time": 0.5353968419951898, + "noteOrder": 4797, + "time": 0.8323747777893966, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3227,13 +8471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3108, - "time": 0.5395796298232772, + "noteOrder": 4809, + "time": 0.8344661717034404, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3250,13 +8494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3132, - "time": 0.5437624176513647, + "noteOrder": 4809, + "time": 0.8344661717034404, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3273,11 +8517,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3132, - "time": 0.5437624176513647, + "noteOrder": 4869, + "time": 0.8449231412736589, "position": { "x": 6, "y": 0 @@ -3291,18 +8535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3156, - "time": 0.547945205479452, + "noteOrder": 4881, + "time": 0.8470145351877026, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3314,18 +8558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3180, - "time": 0.5521279933075395, + "noteOrder": 4881, + "time": 0.8470145351877026, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3337,18 +8581,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3228, - "time": 0.5604935689637143, + "noteOrder": 4893, + "time": 0.8491059291017463, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3360,16 +8604,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3253, - "time": 0.5646763567918017, + "noteOrder": 4905, + "time": 0.85119732301579, "position": { "x": 4, "y": 0 @@ -3388,13 +8632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3325, - "time": 0.577224720276064, + "noteOrder": 4905, + "time": 0.85119732301579, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3406,16 +8650,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3349, - "time": 0.5814075081041514, + "noteOrder": 4965, + "time": 0.8616542925860086, "position": { "x": 4, "y": 0 @@ -3434,13 +8678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3421, - "time": 0.5939558715884137, + "noteOrder": 4977, + "time": 0.8637456865000523, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3452,18 +8696,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3445, - "time": 0.5981386594165011, + "noteOrder": 4977, + "time": 0.8637456865000523, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3480,13 +8724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3518, - "time": 0.6106870229007634, + "noteOrder": 4989, + "time": 0.865837080414096, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3503,13 +8747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3542, - "time": 0.6148698107288507, + "noteOrder": 5001, + "time": 0.8679284743281397, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3521,18 +8765,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3614, - "time": 0.627418174213113, + "noteOrder": 5001, + "time": 0.8679284743281397, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3544,18 +8788,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3638, - "time": 0.6316009620412004, + "noteOrder": 5014, + "time": 0.8700198682421835, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3567,18 +8811,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3710, - "time": 0.6441493255254627, + "noteOrder": 5086, + "time": 0.8825682317264457, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3590,18 +8834,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3734, - "time": 0.6483321133535501, + "noteOrder": 5110, + "time": 0.8867510195545332, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3618,13 +8862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3807, - "time": 0.6608804768378125, + "noteOrder": 5122, + "time": 0.8888424134685768, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3641,11 +8885,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3831, - "time": 0.6650632646658997, + "noteOrder": 5122, + "time": 0.8888424134685768, "position": { "x": 6, "y": 0 @@ -3659,18 +8903,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3999, - "time": 0.6943427794625118, + "noteOrder": 5134, + "time": 0.8909338073826206, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3687,13 +8931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4024, - "time": 0.6985255672905992, + "noteOrder": 5134, + "time": 0.8909338073826206, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3705,18 +8949,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4096, - "time": 0.7110739307748615, + "noteOrder": 5134, + "time": 0.8909338073826206, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3733,13 +8977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4120, - "time": 0.7152567186029488, + "noteOrder": 5146, + "time": 0.8930252012966643, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3751,18 +8995,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4192, - "time": 0.7278050820872111, + "noteOrder": 5146, + "time": 0.8930252012966643, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3779,13 +9023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4216, - "time": 0.7319878699152985, + "noteOrder": 5158, + "time": 0.895116595210708, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3797,16 +9041,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4289, - "time": 0.7445362333995608, + "noteOrder": 5158, + "time": 0.895116595210708, "position": { "x": 7, "y": 0 @@ -3820,16 +9064,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4313, - "time": 0.7487190212276482, + "noteOrder": 5170, + "time": 0.8972079891247517, "position": { "x": 7, "y": 0 @@ -3848,13 +9092,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4337, - "time": 0.7529018090557356, + "noteOrder": 5170, + "time": 0.8972079891247517, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3866,18 +9110,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4361, - "time": 0.757084596883823, + "noteOrder": 5182, + "time": 0.8992993830387954, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3894,11 +9138,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4409, - "time": 0.7654501725399978, + "noteOrder": 5182, + "time": 0.8992993830387954, "position": { "x": 7, "y": 0 @@ -3912,16 +9156,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4481, - "time": 0.7779985360242601, + "noteOrder": 5206, + "time": 0.9034821708668829, "position": { "x": 3, "y": 0 @@ -3940,11 +9184,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4505, - "time": 0.7821813238523476, + "noteOrder": 5218, + "time": 0.9055735647809265, "position": { "x": 3, "y": 0 @@ -3958,18 +9202,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4530, - "time": 0.7863641116804351, + "noteOrder": 5218, + "time": 0.9055735647809265, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3986,13 +9230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4554, - "time": 0.7905468995085224, + "noteOrder": 5230, + "time": 0.9076649586949702, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4004,18 +9248,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4602, - "time": 0.7989124751646973, + "noteOrder": 5230, + "time": 0.9076649586949702, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4032,13 +9276,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4746, - "time": 0.8240092021332218, + "noteOrder": 5230, + "time": 0.9076649586949702, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4050,18 +9294,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4770, - "time": 0.8281919899613092, + "noteOrder": 5243, + "time": 0.909756352609014, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4078,13 +9322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4795, - "time": 0.8323747777893966, + "noteOrder": 5243, + "time": 0.909756352609014, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4096,18 +9340,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4867, - "time": 0.8449231412736589, + "noteOrder": 5255, + "time": 0.9118477465230577, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4119,18 +9363,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4891, - "time": 0.8491059291017463, + "noteOrder": 5255, + "time": 0.9118477465230577, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4147,13 +9391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4963, - "time": 0.8616542925860086, + "noteOrder": 5267, + "time": 0.9139391404371014, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4170,13 +9414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4987, - "time": 0.8658370804140959, + "noteOrder": 5267, + "time": 0.9139391404371014, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4188,18 +9432,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5011, - "time": 0.8700198682421834, + "noteOrder": 5279, + "time": 0.9160305343511451, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4216,13 +9460,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5084, - "time": 0.8825682317264456, + "noteOrder": 5279, + "time": 0.9160305343511451, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4239,13 +9483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5108, - "time": 0.8867510195545331, + "noteOrder": 5399, + "time": 0.9369444734915822, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4257,18 +9501,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5132, - "time": 0.8909338073826204, + "noteOrder": 5423, + "time": 0.9411272613196695, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4285,13 +9529,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5204, - "time": 0.9034821708668827, + "noteOrder": 5447, + "time": 0.945310049147757, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4303,18 +9547,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5228, - "time": 0.9076649586949702, + "noteOrder": 5472, + "time": 0.9494928369758444, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4331,13 +9575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5397, - "time": 0.9369444734915822, + "noteOrder": 5496, + "time": 0.9536756248039319, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4354,13 +9598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5421, - "time": 0.9411272613196695, + "noteOrder": 5508, + "time": 0.9557670187179755, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4377,13 +9621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5445, - "time": 0.945310049147757, + "noteOrder": 5508, + "time": 0.9557670187179755, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4395,18 +9639,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 5469, - "time": 0.9494928369758444, + "noteOrder": 5520, + "time": 0.9578584126320192, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4423,13 +9667,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5493, - "time": 0.9536756248039318, + "noteOrder": 5532, + "time": 0.959949806546063, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4441,18 +9685,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5517, - "time": 0.9578584126320192, + "noteOrder": 5532, + "time": 0.959949806546063, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { diff --git a/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1b.json b/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1b.json index c6306c39..897793df 100644 --- a/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1b.json +++ b/tracks/BENJAMIN RUNNING MAN EDITION/327_difficulty_1b.json @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 626, - "time": 0.10875248353027292, + "noteOrder": 627, + "time": 0.10875248353027293, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1229, - "time": 0.21332217923245841, + "time": 0.21332217923245844, "position": { "x": 5, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.22587054271672066, + "noteOrder": 1302, + "time": 0.22587054271672072, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1325, - "time": 0.23005333054480812, + "noteOrder": 1326, + "time": 0.23005333054480814, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1397, - "time": 0.24260169402907036, + "noteOrder": 1398, + "time": 0.2426016940290704, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1421, - "time": 0.2467844818571578, + "noteOrder": 1422, + "time": 0.24678448185715782, "position": { "x": 5, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1518, - "time": 0.26351563316950743, + "noteOrder": 1519, + "time": 0.2635156331695075, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1687, - "time": 0.2927951479661194, + "time": 0.29279514796611944, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1783, + "noteOrder": 1784, "time": 0.3095262992784691, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1807, - "time": 0.3137090871065565, + "noteOrder": 1808, + "time": 0.31370908710655654, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1879, - "time": 0.32625745059081873, + "noteOrder": 1880, + "time": 0.3262574505908188, "position": { "x": 4, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1903, + "noteOrder": 1904, "time": 0.33044023841890624, "position": { "x": 7, @@ -414,7 +414,7 @@ }, { "noteOrder": 1976, - "time": 0.3429886019031685, + "time": 0.34298860190316843, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.3471713897312559, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2554, - "time": 0.44337550977726653, + "noteOrder": 2555, + "time": 0.4433755097772666, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2747, - "time": 0.4768378124019659, + "noteOrder": 2748, + "time": 0.47683781240196593, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2939, + "noteOrder": 2941, "time": 0.5103001150266653, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2939, + "noteOrder": 2941, "time": 0.5103001150266653, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3108, + "noteOrder": 3109, "time": 0.5395796298232772, "position": { "x": 5, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3132, + "noteOrder": 3133, "time": 0.5437624176513647, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.547945205479452, + "noteOrder": 3158, + "time": 0.5479452054794521, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3228, + "noteOrder": 3230, "time": 0.5604935689637143, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.5646763567918017, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3325, + "noteOrder": 3326, "time": 0.577224720276064, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3349, + "noteOrder": 3350, "time": 0.5814075081041514, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3421, + "noteOrder": 3423, "time": 0.5939558715884137, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3445, + "noteOrder": 3447, "time": 0.5981386594165011, "position": { "x": 8, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3519, "time": 0.6106870229007634, "position": { "x": 7, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3542, - "time": 0.6148698107288507, + "noteOrder": 3543, + "time": 0.6148698107288508, "position": { "x": 2, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3614, - "time": 0.627418174213113, + "noteOrder": 3616, + "time": 0.6274181742131131, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3638, - "time": 0.6316009620412004, + "noteOrder": 3640, + "time": 0.6316009620412005, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3710, - "time": 0.6441493255254627, + "noteOrder": 3712, + "time": 0.6441493255254628, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3734, - "time": 0.6483321133535501, + "noteOrder": 3736, + "time": 0.6483321133535502, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3807, + "noteOrder": 3808, "time": 0.6608804768378125, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3831, - "time": 0.6650632646658997, + "noteOrder": 3832, + "time": 0.6650632646658999, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6817944159782495, + "noteOrder": 3929, + "time": 0.6817944159782496, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4240, + "noteOrder": 4242, "time": 0.736170657743386, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4289, - "time": 0.7445362333995608, + "noteOrder": 4290, + "time": 0.7445362333995609, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4313, + "noteOrder": 4315, "time": 0.7487190212276482, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4770, + "noteOrder": 4773, "time": 0.8281919899613092, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4795, + "noteOrder": 4797, "time": 0.8323747777893966, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4867, + "noteOrder": 4869, "time": 0.8449231412736589, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.8491059291017463, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8616542925860086, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4987, - "time": 0.8658370804140959, + "noteOrder": 4989, + "time": 0.865837080414096, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5011, - "time": 0.8700198682421834, + "noteOrder": 5014, + "time": 0.8700198682421835, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5011, - "time": 0.8700198682421834, + "noteOrder": 5014, + "time": 0.8700198682421835, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5035, - "time": 0.8742026560702708, + "noteOrder": 5038, + "time": 0.8742026560702709, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5035, - "time": 0.8742026560702708, + "noteOrder": 5038, + "time": 0.8742026560702709, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5060, - "time": 0.8783854438983582, + "noteOrder": 5062, + "time": 0.8783854438983583, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8825682317264456, + "noteOrder": 5086, + "time": 0.8825682317264457, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5397, + "noteOrder": 5399, "time": 0.9369444734915822, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5421, + "noteOrder": 5423, "time": 0.9411272613196695, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5445, + "noteOrder": 5447, "time": 0.945310049147757, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5469, + "noteOrder": 5472, "time": 0.9494928369758444, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5493, - "time": 0.9536756248039318, + "noteOrder": 5496, + "time": 0.9536756248039319, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5493, - "time": 0.9536756248039318, + "noteOrder": 5496, + "time": 0.9536756248039319, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5517, + "noteOrder": 5520, "time": 0.9578584126320192, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5517, + "noteOrder": 5520, "time": 0.9578584126320192, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5541, + "noteOrder": 5544, "time": 0.9620412004601067, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5541, + "noteOrder": 5544, "time": 0.9620412004601067, "position": { "x": 5, @@ -1396,7 +1396,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01673115131234968, @@ -1419,7 +1419,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, "time": 0.03346230262469936, @@ -1442,7 +1442,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03346230262469936, @@ -1465,7 +1465,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.05019345393704904, @@ -1488,7 +1488,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.05019345393704904, @@ -1511,9 +1511,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 385, + "noteOrder": 386, "time": 0.06692460524939872, "position": { "x": 6, @@ -1534,9 +1534,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 385, + "noteOrder": 386, "time": 0.06692460524939872, "position": { "x": 3, @@ -1557,7 +1557,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, "time": 0.08365575656174841, @@ -1580,9 +1580,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 867, + "noteOrder": 868, "time": 0.15058036181114712, "position": { "x": 4, @@ -1603,7 +1603,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 916, "time": 0.15894593746732197, @@ -1626,7 +1626,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, "time": 0.16731151312349682, @@ -1649,7 +1649,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1012, "time": 0.17567708877967164, @@ -1672,9 +1672,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1060, + "noteOrder": 1061, "time": 0.1840426644358465, "position": { "x": 3, @@ -1695,10 +1695,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1108, - "time": 0.19240824009202132, + "noteOrder": 1109, + "time": 0.19240824009202134, "position": { "x": 3, "y": 0 @@ -1718,9 +1718,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1156, + "noteOrder": 1157, "time": 0.20077381574819617, "position": { "x": 3, @@ -1741,7 +1741,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1205, "time": 0.20913939140437102, @@ -1764,10 +1764,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1253, - "time": 0.21750496706054584, + "time": 0.21750496706054587, "position": { "x": 5, "y": 0 @@ -1787,9 +1787,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1349, + "noteOrder": 1350, "time": 0.23423611837289554, "position": { "x": 5, @@ -1810,9 +1810,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1349, + "noteOrder": 1350, "time": 0.23423611837289554, "position": { "x": 7, @@ -1833,10 +1833,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1397, - "time": 0.24260169402907036, + "noteOrder": 1398, + "time": 0.2426016940290704, "position": { "x": 7, "y": 0 @@ -1856,7 +1856,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1446, "time": 0.2509672696852452, @@ -1879,9 +1879,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1542, + "noteOrder": 1543, "time": 0.2676984209975949, "position": { "x": 5, @@ -1902,9 +1902,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1638, + "noteOrder": 1639, "time": 0.2844295723099446, "position": { "x": 7, @@ -1924,13 +1924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.30116072362229424, + "noteOrder": 1663, + "time": 0.288612360138032, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1942,18 +1942,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1831, - "time": 0.31789187493464394, + "noteOrder": 1663, + "time": 0.288612360138032, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1970,11 +1970,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1927, - "time": 0.33462302624699364, + "noteOrder": 1735, + "time": 0.30116072362229424, "position": { "x": 3, "y": 0 @@ -1993,13 +1993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2024, - "time": 0.3513541775593433, + "noteOrder": 1760, + "time": 0.3053435114503817, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2011,18 +2011,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2072, - "time": 0.35971975321551813, + "noteOrder": 1760, + "time": 0.3053435114503817, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2039,11 +2039,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2120, - "time": 0.368085328871693, + "noteOrder": 1832, + "time": 0.31789187493464394, "position": { "x": 7, "y": 0 @@ -2062,11 +2062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2168, - "time": 0.3764509045278678, + "noteOrder": 1856, + "time": 0.3220746627627314, "position": { "x": 7, "y": 0 @@ -2080,18 +2080,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2217, - "time": 0.38481648018404263, + "noteOrder": 1856, + "time": 0.3220746627627314, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2108,13 +2108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2241, - "time": 0.38899926801213003, + "noteOrder": 1928, + "time": 0.33462302624699364, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2131,13 +2131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2265, - "time": 0.39318205584021754, + "noteOrder": 1952, + "time": 0.3388058140750811, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2149,18 +2149,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2289, - "time": 0.39736484366830493, + "noteOrder": 1952, + "time": 0.3388058140750811, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2177,11 +2177,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2313, - "time": 0.40154763149639233, + "noteOrder": 2025, + "time": 0.3513541775593433, "position": { "x": 7, "y": 0 @@ -2200,11 +2200,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2385, - "time": 0.4140959949806546, + "noteOrder": 2049, + "time": 0.35553696538743074, "position": { "x": 7, "y": 0 @@ -2223,13 +2223,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3084, - "time": 0.5353968419951898, + "noteOrder": 2049, + "time": 0.35553696538743074, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2241,18 +2241,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 3180, - "time": 0.5521279933075395, + "noteOrder": 2073, + "time": 0.35971975321551813, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2269,11 +2269,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3180, - "time": 0.5521279933075395, + "noteOrder": 2097, + "time": 0.3639025410436056, "position": { "x": 7, "y": 0 @@ -2287,18 +2287,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3277, - "time": 0.5688591446198892, + "noteOrder": 2097, + "time": 0.3639025410436056, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2310,18 +2310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3277, - "time": 0.5688591446198892, + "noteOrder": 2121, + "time": 0.368085328871693, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2333,18 +2333,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3373, - "time": 0.5855902959322388, + "noteOrder": 2145, + "time": 0.37226811669978044, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2356,18 +2356,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3373, - "time": 0.5855902959322388, + "noteOrder": 2145, + "time": 0.37226811669978044, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2384,11 +2384,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 3469, - "time": 0.6023214472445885, + "noteOrder": 2169, + "time": 0.37645090452786784, "position": { "x": 7, "y": 0 @@ -2402,18 +2402,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3469, - "time": 0.6023214472445885, + "noteOrder": 2193, + "time": 0.3806336923559553, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2430,13 +2430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3566, - "time": 0.6190525985569382, + "noteOrder": 2193, + "time": 0.3806336923559553, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2453,11 +2453,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3566, - "time": 0.6190525985569382, + "noteOrder": 2218, + "time": 0.3848164801840427, "position": { "x": 7, "y": 0 @@ -2476,13 +2476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3662, - "time": 0.6357837498692879, + "noteOrder": 2230, + "time": 0.3869078740980864, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2494,18 +2494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3759, - "time": 0.6525149011816375, + "noteOrder": 2230, + "time": 0.3869078740980864, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2522,11 +2522,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3951, - "time": 0.685977203806337, + "noteOrder": 2242, + "time": 0.38899926801213014, "position": { "x": 7, "y": 0 @@ -2540,16 +2540,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3999, - "time": 0.6943427794625118, + "noteOrder": 2254, + "time": 0.3910906619261738, "position": { "x": 7, "y": 0 @@ -2568,13 +2568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4024, - "time": 0.6985255672905992, + "noteOrder": 2254, + "time": 0.3910906619261738, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2586,16 +2586,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4048, - "time": 0.7027083551186866, + "noteOrder": 2266, + "time": 0.39318205584021754, "position": { "x": 7, "y": 0 @@ -2609,16 +2609,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4096, - "time": 0.7110739307748615, + "noteOrder": 2278, + "time": 0.39527344975426126, "position": { "x": 7, "y": 0 @@ -2637,13 +2637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4120, - "time": 0.7152567186029488, + "noteOrder": 2278, + "time": 0.39527344975426126, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2655,16 +2655,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4144, - "time": 0.7194395064310363, + "noteOrder": 2290, + "time": 0.3973648436683049, "position": { "x": 7, "y": 0 @@ -2678,16 +2678,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4192, - "time": 0.7278050820872111, + "noteOrder": 2302, + "time": 0.3994562375823486, "position": { "x": 7, "y": 0 @@ -2706,13 +2706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4216, - "time": 0.7319878699152985, + "noteOrder": 2302, + "time": 0.3994562375823486, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2724,18 +2724,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4337, - "time": 0.7529018090557356, + "noteOrder": 2314, + "time": 0.40154763149639233, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2747,18 +2747,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4385, - "time": 0.7612673847119105, + "noteOrder": 2386, + "time": 0.4140959949806546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2775,11 +2775,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4409, - "time": 0.7654501725399978, + "noteOrder": 3085, + "time": 0.5353968419951898, "position": { "x": 3, "y": 0 @@ -2798,13 +2798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4433, - "time": 0.7696329603680853, + "noteOrder": 3182, + "time": 0.5521279933075395, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2816,18 +2816,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4481, - "time": 0.7779985360242601, + "noteOrder": 3182, + "time": 0.5521279933075395, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2839,18 +2839,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4505, - "time": 0.7821813238523476, + "noteOrder": 3278, + "time": 0.5688591446198892, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2867,10 +2867,1390 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4530, + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3278, + "time": 0.5688591446198892, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3375, + "time": 0.5855902959322389, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3375, + "time": 0.5855902959322389, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3471, + "time": 0.6023214472445885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3471, + "time": 0.6023214472445885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3567, + "time": 0.6190525985569382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3567, + "time": 0.6190525985569382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3591, + "time": 0.6232353863850256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3591, + "time": 0.6232353863850256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3664, + "time": 0.6357837498692879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3688, + "time": 0.6399665376973753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3688, + "time": 0.6399665376973753, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3760, + "time": 0.6525149011816376, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.656697689009725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3784, + "time": 0.656697689009725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6859772038063369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3977, + "time": 0.6901599916344243, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3977, + "time": 0.6901599916344243, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4001, + "time": 0.6943427794625118, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4013, + "time": 0.6964341733765554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4013, + "time": 0.6964341733765554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4025, + "time": 0.6985255672905991, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4037, + "time": 0.7006169612046429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4037, + "time": 0.7006169612046429, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4049, + "time": 0.7027083551186866, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4074, + "time": 0.706891142946774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4074, + "time": 0.706891142946774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4098, + "time": 0.7110739307748615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7131653246889051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7131653246889051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4122, + "time": 0.7152567186029488, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4134, + "time": 0.7173481125169926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4134, + "time": 0.7173481125169926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4146, + "time": 0.7194395064310363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4170, + "time": 0.7236222942591237, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4170, + "time": 0.7236222942591237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4194, + "time": 0.7278050820872112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7298964760012548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7298964760012548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7319878699152985, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4230, + "time": 0.7340792638293423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4230, + "time": 0.7340792638293423, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4339, + "time": 0.7529018090557357, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4363, + "time": 0.7570845968838231, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4363, + "time": 0.7570845968838231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4387, + "time": 0.7612673847119106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7633587786259542, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7633587786259542, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4411, + "time": 0.7654501725399979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4423, + "time": 0.7675415664540417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4423, + "time": 0.7675415664540417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4435, + "time": 0.7696329603680854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4459, + "time": 0.7738157481961728, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4459, + "time": 0.7738157481961728, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7779985360242603, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4495, + "time": 0.780089929938304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4495, + "time": 0.780089929938304, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7821813238523476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7842727177663914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7842727177663914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4531, "time": 0.7863641116804351, "position": { "x": 3, @@ -2889,12 +4269,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7905468995085225, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7905468995085225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7947296873366098, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4578, - "time": 0.7947296873366099, + "noteOrder": 4592, + "time": 0.7968210812506537, "position": { "x": 3, "y": 0 @@ -2912,12 +4361,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7968210812506537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7989124751646972, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4602, - "time": 0.7989124751646973, + "noteOrder": 4616, + "time": 0.8010038690787411, "position": { "x": 3, "y": 0 @@ -2935,11 +4430,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4616, + "time": 0.8010038690787411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4722, + "noteOrder": 4724, "time": 0.8198264143051344, "position": { "x": 7, @@ -2958,11 +4476,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4748, + "time": 0.8240092021332218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4748, + "time": 0.8240092021332218, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4819, + "noteOrder": 4821, "time": 0.8365575656174841, "position": { "x": 3, @@ -2981,12 +4545,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4845, + "time": 0.8407403534455715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4845, + "time": 0.8407403534455715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.8532887169298338, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4915, - "time": 0.8532887169298337, + "noteOrder": 4941, + "time": 0.8574715047579212, "position": { "x": 7, "y": 0 @@ -3004,12 +4637,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4941, + "time": 0.8574715047579212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5108, - "time": 0.8867510195545331, + "noteOrder": 5110, + "time": 0.8867510195545332, "position": { "x": 4, "y": 0 @@ -3029,10 +4685,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5156, - "time": 0.8951165952107079, + "noteOrder": 5158, + "time": 0.895116595210708, "position": { "x": 4, "y": 0 @@ -3052,10 +4708,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5204, - "time": 0.9034821708668827, + "noteOrder": 5206, + "time": 0.9034821708668829, "position": { "x": 6, "y": 0 @@ -3075,9 +4731,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5252, + "noteOrder": 5255, "time": 0.9118477465230577, "position": { "x": 6, @@ -3098,10 +4754,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5300, - "time": 0.9202133221792325, + "noteOrder": 5303, + "time": 0.9202133221792326, "position": { "x": 6, "y": 0 @@ -3121,10 +4777,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5325, - "time": 0.9243961100073199, + "noteOrder": 5327, + "time": 0.9243961100073198, "position": { "x": 6, "y": 0 @@ -3144,10 +4800,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5300, - "time": 0.9202133221792325, + "noteOrder": 5303, + "time": 0.9202133221792326, "position": { "x": 4, "y": 0 @@ -3167,10 +4823,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5325, - "time": 0.9243961100073199, + "noteOrder": 5327, + "time": 0.9243961100073198, "position": { "x": 4, "y": 0 @@ -3190,9 +4846,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5349, + "noteOrder": 5351, "time": 0.9285788978354073, "position": { "x": 6, @@ -3213,9 +4869,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5373, + "noteOrder": 5375, "time": 0.9327616856634947, "position": { "x": 6, @@ -3236,9 +4892,9 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5349, + "noteOrder": 5351, "time": 0.9285788978354073, "position": { "x": 4, @@ -3259,9 +4915,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5373, + "noteOrder": 5375, "time": 0.9327616856634947, "position": { "x": 4, diff --git a/tracks/BENJAMIN RUNNING MAN EDITION/info.json b/tracks/BENJAMIN RUNNING MAN EDITION/info.json index d2dac89f..4ef79eeb 100644 --- a/tracks/BENJAMIN RUNNING MAN EDITION/info.json +++ b/tracks/BENJAMIN RUNNING MAN EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "BENJAMIN RUNNING MAN EDITION", - "SongLength": "119.092245", + "SongLength": "109.139592", "SongAuthorName": "MARON (IOSYS)", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1a.json b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1a.json index 4562b445..05f3f8c5 100644 --- a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1a.json +++ b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.01575578532742491, + "time": 0.015755785327424915, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 192, - "time": 0.03151157065484982, + "time": 0.03151157065484983, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 384, - "time": 0.06302314130969965, + "time": 0.06302314130969966, "position": { "x": 7, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.0827178729689808, "position": { "x": 6, @@ -134,7 +134,7 @@ }, { "noteOrder": 601, - "time": 0.09847365829640571, + "time": 0.09847365829640572, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 649, - "time": 0.10635155096011817, + "time": 0.10635155096011818, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 697, - "time": 0.11422944362383063, + "time": 0.11422944362383064, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 721, - "time": 0.11816838995568685, + "time": 0.11816838995568686, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 889, - "time": 0.14574101427868047, + "time": 0.14574101427868044, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 961, - "time": 0.15755785327424915, + "time": 0.15755785327424912, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1129, - "time": 0.18513047759724274, + "time": 0.18513047759724272, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.2481536189069424, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 1658, - "time": 0.2717872968980798, + "time": 0.27178729689807973, "position": { "x": 5, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1682, - "time": 0.27572624322993594, + "time": 0.275726243229936, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1778, - "time": 0.29148202855736094, + "time": 0.2914820285573609, "position": { "x": 3, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1922, - "time": 0.3151157065484983, + "time": 0.31511570654849824, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.31905465288035445, + "noteOrder": 1947, + "time": 0.3190546528803545, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3229935992122107, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.33481043820777945, + "noteOrder": 2043, + "time": 0.3348104382077794, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2066, - "time": 0.3387493845396356, + "noteOrder": 2067, + "time": 0.33874938453963566, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.34268833087149186, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34662727720334807, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34662727720334807, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.35056622353520434, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.35056622353520434, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.3663220088626292, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2246, + "noteOrder": 2247, "time": 0.3682914820285573, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.3741999015263417, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2294, + "noteOrder": 2295, "time": 0.3761693746922698, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2426, + "noteOrder": 2427, "time": 0.3978335795174791, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2450, + "noteOrder": 2451, "time": 0.40177252584933526, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.4057114721811915, + "noteOrder": 2475, + "time": 0.4057114721811916, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.40965041851304773, + "noteOrder": 2499, + "time": 0.4096504185130478, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2522, - "time": 0.413589364844904, + "noteOrder": 2523, + "time": 0.41358936484490405, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.4175283111767602, + "noteOrder": 2547, + "time": 0.41752831117676026, "position": { "x": 8, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2570, - "time": 0.4214672575086164, + "noteOrder": 2571, + "time": 0.42146725750861647, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2618, - "time": 0.4293451501723289, + "noteOrder": 2619, + "time": 0.42934515017232894, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2642, + "noteOrder": 2643, "time": 0.43328409650418515, "position": { "x": 5, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2666, - "time": 0.43722304283604135, + "noteOrder": 2667, + "time": 0.4372230428360414, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2690, - "time": 0.44116198916789756, + "noteOrder": 2691, + "time": 0.4411619891678976, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2714, - "time": 0.44510093549975377, + "noteOrder": 2716, + "time": 0.4451009354997538, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.44903988183161003, + "noteOrder": 2740, + "time": 0.4490398818316101, "position": { "x": 2, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2763, - "time": 0.45297882816346624, + "noteOrder": 2764, + "time": 0.4529788281634663, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2811, - "time": 0.4608567208271787, + "noteOrder": 2812, + "time": 0.46085672082717877, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2835, - "time": 0.4647956671590349, + "noteOrder": 2836, + "time": 0.464795667159035, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4687346134908912, + "noteOrder": 2860, + "time": 0.46873461349089124, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.47661250615460365, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2931, - "time": 0.4805514524864598, + "noteOrder": 2932, + "time": 0.4805514524864599, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2955, - "time": 0.48449039881831607, + "noteOrder": 2956, + "time": 0.4844903988183161, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3003, - "time": 0.49236829148202854, + "noteOrder": 3004, + "time": 0.4923682914820286, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3052, "time": 0.5002461841457411, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3147, + "noteOrder": 3148, "time": 0.5160019694731659, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3195, - "time": 0.5238798621368783, + "noteOrder": 3196, + "time": 0.5238798621368784, "position": { "x": 5, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.5278188084687346, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3243, - "time": 0.5317577548005907, + "noteOrder": 3244, + "time": 0.5317577548005908, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3292, "time": 0.5396356474643033, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.5435745937961596, + "noteOrder": 3316, + "time": 0.5435745937961595, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3339, + "noteOrder": 3340, "time": 0.5475135401280157, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.6105366814377154, + "noteOrder": 3725, + "time": 0.6105366814377153, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.6105366814377154, + "noteOrder": 3725, + "time": 0.6105366814377153, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.6184145741014277, + "noteOrder": 3773, + "time": 0.6184145741014279, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3821, "time": 0.6262924667651403, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.6381093057607089, + "noteOrder": 3893, + "time": 0.638109305760709, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.6499261447562777, + "noteOrder": 3965, + "time": 0.6499261447562776, "position": { "x": 3, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4012, - "time": 0.65780403741999, + "noteOrder": 4013, + "time": 0.6578040374199902, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4084, - "time": 0.6696208764155589, + "noteOrder": 4085, + "time": 0.6696208764155588, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.7129492860659773, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.7208271787296898, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4470, "time": 0.7326440177252584, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4540, - "time": 0.7444608567208271, + "noteOrder": 4542, + "time": 0.7444608567208272, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.7483998030526834, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.7523387493845396, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 4614, "time": 0.7562776957163958, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4636, - "time": 0.7602166420482521, + "noteOrder": 4638, + "time": 0.760216642048252, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.7641555883801082, + "noteOrder": 4662, + "time": 0.7641555883801084, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4732, - "time": 0.7759724273756771, + "noteOrder": 4734, + "time": 0.775972427375677, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4756, - "time": 0.7799113737075333, + "noteOrder": 4758, + "time": 0.7799113737075332, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4780, + "noteOrder": 4782, "time": 0.7838503200393894, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4804, - "time": 0.7877892663712457, + "noteOrder": 4806, + "time": 0.7877892663712458, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4828, - "time": 0.7917282127031019, + "noteOrder": 4830, + "time": 0.791728212703102, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4852, + "noteOrder": 4854, "time": 0.7956671590349582, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.8074839980305268, + "noteOrder": 4926, + "time": 0.807483998030527, "position": { "x": 5, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.8153618906942394, "position": { "x": 5, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5117, - "time": 0.8389955686853766, + "noteOrder": 5119, + "time": 0.8389955686853767, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.8468734613490891, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.8508124076809453, + "noteOrder": 5191, + "time": 0.8508124076809455, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5201, - "time": 0.8527818808468733, + "noteOrder": 5203, + "time": 0.8527818808468735, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5213, - "time": 0.8547513540128016, + "noteOrder": 5215, + "time": 0.8547513540128017, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5261, - "time": 0.862629246676514, + "noteOrder": 5263, + "time": 0.8626292466765141, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5261, - "time": 0.862629246676514, + "noteOrder": 5263, + "time": 0.8626292466765141, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5381, - "time": 0.8823239783357951, + "noteOrder": 5383, + "time": 0.8823239783357952, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5405, + "noteOrder": 5407, "time": 0.8862629246676514, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5573, - "time": 0.913835548990645, + "noteOrder": 5575, + "time": 0.9138355489906451, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5597, - "time": 0.9177744953225012, + "noteOrder": 5599, + "time": 0.9177744953225013, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5765, - "time": 0.9453471196454948, + "noteOrder": 5767, + "time": 0.9453471196454949, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5789, - "time": 0.949286065977351, + "noteOrder": 5791, + "time": 0.9492860659773511, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5813, + "noteOrder": 5816, "time": 0.9532250123092073, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5861, - "time": 0.9611029049729196, + "noteOrder": 5864, + "time": 0.9611029049729198, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5861, - "time": 0.9611029049729196, + "noteOrder": 5864, + "time": 0.9611029049729198, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5885, - "time": 0.9650418513047759, + "noteOrder": 5888, + "time": 0.965041851304776, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5909, - "time": 0.9689807976366321, + "noteOrder": 5912, + "time": 0.9689807976366323, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5957, + "noteOrder": 5960, "time": 0.9768586903003447, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5957, + "noteOrder": 5960, "time": 0.9768586903003447, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5981, - "time": 0.9807976366322008, + "noteOrder": 5984, + "time": 0.980797636632201, "position": { "x": 5, "y": 0 @@ -2376,10 +2376,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.07877892663712457, + "noteOrder": 481, + "time": 0.07877892663712456, "position": { "x": 7, "y": 0 @@ -2399,9 +2399,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 504, + "noteOrder": 505, "time": 0.0827178729689808, "position": { "x": 7, @@ -2422,9 +2422,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.08665681930083702, "position": { "x": 6, @@ -2445,7 +2445,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, "time": 0.09059576563269325, @@ -2468,7 +2468,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.09453471196454948, @@ -2491,10 +2491,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.09847365829640571, + "time": 0.09847365829640572, "position": { "x": 3, "y": 0 @@ -2514,10 +2514,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10241260462826193, + "time": 0.10241260462826195, "position": { "x": 4, "y": 0 @@ -2537,10 +2537,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.10635155096011817, + "time": 0.10635155096011818, "position": { "x": 4, "y": 0 @@ -2560,10 +2560,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.11029049729197439, + "time": 0.1102904972919744, "position": { "x": 5, "y": 0 @@ -2583,10 +2583,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.1260462826193993, + "time": 0.12604628261939932, "position": { "x": 5, "y": 0 @@ -2606,7 +2606,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 913, "time": 0.14967996061053668, @@ -2628,11 +2628,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.1536189069423929, + "noteOrder": 925, + "time": 0.15164943377646478, "position": { "x": 7, "y": 0 @@ -2646,18 +2646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1009, - "time": 0.1654357459379616, + "noteOrder": 925, + "time": 0.15164943377646478, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2669,18 +2669,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1033, - "time": 0.1693746922698178, + "noteOrder": 937, + "time": 0.1536189069423929, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2692,18 +2692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.18906942392909895, + "noteOrder": 949, + "time": 0.15558838010832102, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2720,13 +2720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1177, - "time": 0.1930083702609552, + "noteOrder": 949, + "time": 0.15558838010832102, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2738,18 +2738,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.20482520925652387, + "noteOrder": 1009, + "time": 0.1654357459379616, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2761,18 +2761,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.2087641555883801, + "noteOrder": 1021, + "time": 0.1674052191038897, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2789,11 +2789,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1345, - "time": 0.22058099458394878, + "noteOrder": 1021, + "time": 0.1674052191038897, "position": { "x": 4, "y": 0 @@ -2812,13 +2812,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.22451994091580502, + "noteOrder": 1033, + "time": 0.16937469226981783, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2835,13 +2835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.2402757262432299, + "noteOrder": 1045, + "time": 0.17134416543574593, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2858,13 +2858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.24421467257508617, + "noteOrder": 1045, + "time": 0.17134416543574593, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2881,13 +2881,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, - "time": 0.24421467257508617, + "noteOrder": 1153, + "time": 0.18906942392909895, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2904,13 +2904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, - "time": 0.2481536189069424, + "noteOrder": 1166, + "time": 0.1910388970950271, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2927,11 +2927,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1537, - "time": 0.2520925652387986, + "noteOrder": 1166, + "time": 0.1910388970950271, "position": { "x": 4, "y": 0 @@ -2950,13 +2950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.25603151157065485, + "noteOrder": 1178, + "time": 0.1930083702609552, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2973,11 +2973,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1633, - "time": 0.2678483505662235, + "noteOrder": 1190, + "time": 0.1949778434268833, "position": { "x": 7, "y": 0 @@ -2996,13 +2996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1658, - "time": 0.2717872968980798, + "noteOrder": 1190, + "time": 0.1949778434268833, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3019,13 +3019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.2836041358936484, + "noteOrder": 1250, + "time": 0.2048252092565239, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3042,13 +3042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 3, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, - "time": 0.29148202855736094, + "noteOrder": 1262, + "time": 0.20679468242245203, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3065,13 +3065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1826, - "time": 0.29935992122107336, + "noteOrder": 1262, + "time": 0.20679468242245203, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3083,18 +3083,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1850, - "time": 0.30329886755292956, + "noteOrder": 1274, + "time": 0.20876415558838013, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3111,11 +3111,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 40, "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.3151157065484983, + "noteOrder": 1286, + "time": 0.21073362875430823, "position": { "x": 6, "y": 0 @@ -3134,13 +3134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1994, - "time": 0.326932545544067, + "noteOrder": 1286, + "time": 0.21073362875430823, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3152,18 +3152,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, - "time": 0.3308714918759232, + "noteOrder": 1346, + "time": 0.2205809945839488, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3175,18 +3175,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1994, - "time": 0.326932545544067, + "noteOrder": 1358, + "time": 0.2225504677498769, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3203,13 +3203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2018, - "time": 0.3308714918759232, + "noteOrder": 1358, + "time": 0.2225504677498769, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3226,13 +3226,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2162, - "time": 0.35450516986706054, + "noteOrder": 1370, + "time": 0.22451994091580504, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3249,13 +3249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2186, - "time": 0.35844411619891675, + "noteOrder": 1382, + "time": 0.22648941408173315, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3272,13 +3272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2162, - "time": 0.35450516986706054, + "noteOrder": 1382, + "time": 0.22648941408173315, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3290,18 +3290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2186, - "time": 0.35844411619891675, + "noteOrder": 1466, + "time": 0.24027572624322996, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3313,18 +3313,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.362383062530773, + "noteOrder": 1490, + "time": 0.24421467257508617, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3341,13 +3341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2234, - "time": 0.3663220088626292, + "noteOrder": 1490, + "time": 0.24421467257508617, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3359,18 +3359,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2258, - "time": 0.3702609551944855, + "noteOrder": 1514, + "time": 0.2481536189069424, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3387,13 +3387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 2282, - "time": 0.3741999015263417, + "noteOrder": 1538, + "time": 0.25209256523879864, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3410,13 +3410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2306, - "time": 0.3781388478581979, + "noteOrder": 1550, + "time": 0.25406203840472674, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3428,18 +3428,1973 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2354, - "time": 0.3860167405219104, + "noteOrder": 1550, + "time": 0.25406203840472674, "position": { - "x": 7, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1562, + "time": 0.25603151157065485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1574, + "time": 0.25800098473658295, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1574, + "time": 0.25800098473658295, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.2678483505662235, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1658, + "time": 0.27178729689807973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1730, + "time": 0.2836041358936484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1778, + "time": 0.2914820285573609, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.29935992122107336, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1850, + "time": 0.30329886755292956, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1922, + "time": 0.31511570654849824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3269325455440669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3308714918759232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3269325455440669, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3308714918759232, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.35450516986706054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2187, + "time": 0.35844411619891675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.35450516986706054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2187, + "time": 0.35844411619891675, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.362383062530773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3663220088626292, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.37026095519448543, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2283, + "time": 0.3741999015263417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2307, + "time": 0.3781388478581979, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2355, + "time": 0.3860167405219104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2331, + "time": 0.3820777941900542, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2355, + "time": 0.3860167405219104, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.3938946331856229, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42540620384047273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42540620384047273, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2788, + "time": 0.45691777449532256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.45691777449532256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2884, + "time": 0.47267355982274745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.47267355982274745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2980, + "time": 0.48842934515017233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2980, + "time": 0.48842934515017233, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3028, + "time": 0.4963072378138848, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3028, + "time": 0.4963072378138848, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3076, + "time": 0.5041851304775973, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.5041851304775973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5081240768094535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5081240768094535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5120630231413097, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5120630231413097, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3148, + "time": 0.5160019694731659, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3172, + "time": 0.5199409158050221, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3196, + "time": 0.5238798621368784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3244, + "time": 0.5317577548005908, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3268, + "time": 0.535696701132447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3292, + "time": 0.5396356474643033, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3340, + "time": 0.5475135401280157, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.551452486459872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.5553914327917282, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3412, + "time": 0.5593303791235844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.5632693254554406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3557, + "time": 0.5829640571147218, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3629, + "time": 0.5947808961102905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3557, + "time": 0.5829640571147218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3629, + "time": 0.5947808961102905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3749, + "time": 0.6144756277695717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3761, + "time": 0.6164451009354998, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3761, + "time": 0.6164451009354998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3797, + "time": 0.6223535204332841, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6243229935992123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6243229935992123, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3845, + "time": 0.6302314130969965, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3857, + "time": 0.6322008862629247, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3857, + "time": 0.6322008862629247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3869, + "time": 0.6341703594288528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3881, + "time": 0.6361398325947809, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3881, + "time": 0.6361398325947809, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3893, + "time": 0.638109305760709, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3893, + "time": 0.638109305760709, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3941, + "time": 0.6459871984244214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6479566715903496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6479566715903496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3989, + "time": 0.6538650910881338, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4001, + "time": 0.6558345642540621, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4001, + "time": 0.6558345642540621, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4037, + "time": 0.6617429837518464, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4049, + "time": 0.6637124569177745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4049, + "time": 0.6637124569177745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4061, + "time": 0.6656819300837026, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4073, + "time": 0.6676514032496308, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4073, + "time": 0.6676514032496308, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4085, + "time": 0.6696208764155588, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3456,13 +5411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2330, - "time": 0.3820777941900541, + "noteOrder": 4085, + "time": 0.6696208764155588, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3474,18 +5429,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.3860167405219104, + "noteOrder": 4133, + "time": 0.6774987690792713, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3497,18 +5452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2402, - "time": 0.39389463318562284, + "noteOrder": 4181, + "time": 0.6853766617429837, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3525,11 +5480,34 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.4254062038404727, + "noteOrder": 4181, + "time": 0.6853766617429837, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4229, + "time": 0.6932545544066961, "position": { "x": 6, "y": 0 @@ -3543,16 +5521,39 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4229, + "time": 0.6932545544066961, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, - "time": 0.4254062038404727, + "noteOrder": 4278, + "time": 0.7011324470704087, "position": { "x": 4, "y": 0 @@ -3566,16 +5567,85 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4278, + "time": 0.7011324470704087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4302, + "time": 0.7050713934022649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.4569177744953225, + "noteOrder": 4326, + "time": 0.7090103397341211, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4338, + "time": 0.7109798129000493, "position": { "x": 4, "y": 0 @@ -3594,13 +5664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2787, - "time": 0.4569177744953225, + "noteOrder": 4350, + "time": 0.7129492860659773, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3612,16 +5682,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 2883, - "time": 0.4726735598227474, + "noteOrder": 4374, + "time": 0.7168882323978335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4386, + "time": 0.7188577055637617, "position": { "x": 6, "y": 0 @@ -3640,11 +5733,34 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4398, + "time": 0.7208271787296898, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2883, - "time": 0.4726735598227474, + "noteOrder": 4422, + "time": 0.724766125061546, "position": { "x": 4, "y": 0 @@ -3663,11 +5779,34 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2979, - "time": 0.48842934515017233, + "noteOrder": 4434, + "time": 0.7267355982274741, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7287050713934022, "position": { "x": 4, "y": 0 @@ -3686,13 +5825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, - "time": 0.48842934515017233, + "noteOrder": 4446, + "time": 0.7287050713934022, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3709,13 +5848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3027, - "time": 0.4963072378138848, + "noteOrder": 4458, + "time": 0.7306745445593305, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3732,13 +5871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3027, - "time": 0.4963072378138848, + "noteOrder": 4470, + "time": 0.7326440177252584, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3750,18 +5889,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 3075, - "time": 0.5041851304775972, + "noteOrder": 4518, + "time": 0.7405219103889709, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3773,18 +5912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, - "time": 0.5041851304775972, + "noteOrder": 4542, + "time": 0.7444608567208272, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3801,13 +5940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3099, - "time": 0.5081240768094535, + "noteOrder": 4662, + "time": 0.7641555883801084, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3824,13 +5963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3099, - "time": 0.5081240768094535, + "noteOrder": 4710, + "time": 0.7720334810438207, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3847,13 +5986,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, - "time": 0.5120630231413097, + "noteOrder": 4734, + "time": 0.775972427375677, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3870,13 +6009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3123, - "time": 0.5120630231413097, + "noteOrder": 4854, + "time": 0.7956671590349582, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3888,18 +6027,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3147, - "time": 0.5160019694731659, + "noteOrder": 4902, + "time": 0.8035450516986705, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3916,13 +6055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3171, - "time": 0.5199409158050222, + "noteOrder": 4926, + "time": 0.807483998030527, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3934,16 +6073,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 3195, - "time": 0.5238798621368783, + "noteOrder": 4950, + "time": 0.8114229443623832, "position": { "x": 3, "y": 0 @@ -3962,13 +6101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 194, "indexInLine": 2, "isSliding": false, - "noteOrder": 3243, - "time": 0.5317577548005907, + "noteOrder": 4974, + "time": 0.8153618906942394, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3985,13 +6124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.535696701132447, + "noteOrder": 4998, + "time": 0.8193008370260956, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4008,13 +6147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3291, - "time": 0.5396356474643033, + "noteOrder": 5023, + "time": 0.8232397833579518, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4031,11 +6170,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3339, - "time": 0.5475135401280157, + "noteOrder": 5023, + "time": 0.8232397833579518, "position": { "x": 5, "y": 0 @@ -4049,18 +6188,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3363, - "time": 0.5514524864598719, + "noteOrder": 5047, + "time": 0.8271787296898081, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4077,11 +6216,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 3387, - "time": 0.5553914327917282, + "noteOrder": 5047, + "time": 0.8271787296898081, "position": { "x": 5, "y": 0 @@ -4095,18 +6234,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, - "time": 0.5593303791235844, + "noteOrder": 5071, + "time": 0.8311176760216643, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4123,13 +6262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3435, - "time": 0.5632693254554407, + "noteOrder": 5095, + "time": 0.8350566223535205, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4141,18 +6280,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3555, - "time": 0.5829640571147219, + "noteOrder": 5119, + "time": 0.8389955686853767, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4169,13 +6308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 3627, - "time": 0.5947808961102905, + "noteOrder": 5143, + "time": 0.8429345150172329, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4187,18 +6326,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3555, - "time": 0.5829640571147219, + "noteOrder": 5167, + "time": 0.8468734613490891, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4215,11 +6354,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 3627, - "time": 0.5947808961102905, + "noteOrder": 5287, + "time": 0.8665681930083703, "position": { "x": 7, "y": 0 @@ -4238,11 +6377,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3747, - "time": 0.6144756277695717, + "noteOrder": 5299, + "time": 0.8685376661742984, "position": { "x": 7, "y": 0 @@ -4261,13 +6400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3795, - "time": 0.6223535204332841, + "noteOrder": 5299, + "time": 0.8685376661742984, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4279,18 +6418,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3843, - "time": 0.6302314130969966, + "noteOrder": 5311, + "time": 0.8705071393402266, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4307,13 +6446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3868, - "time": 0.6341703594288528, + "noteOrder": 5311, + "time": 0.8705071393402266, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4325,18 +6464,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.6459871984244214, + "noteOrder": 5311, + "time": 0.8705071393402266, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4353,13 +6492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, - "time": 0.653865091088134, + "noteOrder": 5323, + "time": 0.8724766125061546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4371,18 +6510,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4036, - "time": 0.6617429837518464, + "noteOrder": 5323, + "time": 0.8724766125061546, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4399,13 +6538,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4060, - "time": 0.6656819300837026, + "noteOrder": 5335, + "time": 0.8744460856720828, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4417,18 +6556,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4132, - "time": 0.6774987690792712, + "noteOrder": 5335, + "time": 0.8744460856720828, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4440,16 +6579,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 4180, - "time": 0.6853766617429837, + "noteOrder": 5335, + "time": 0.8744460856720828, "position": { "x": 7, "y": 0 @@ -4468,13 +6607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4180, - "time": 0.6853766617429837, + "noteOrder": 5347, + "time": 0.8764155588380108, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4486,16 +6625,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4228, - "time": 0.6932545544066961, + "noteOrder": 5347, + "time": 0.8764155588380108, "position": { "x": 6, "y": 0 @@ -4509,41 +6648,18 @@ "y": 1, "z": 1 }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 164, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4228, - "time": 0.6932545544066961, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4276, - "time": 0.7011324470704087, + "noteOrder": 5359, + "time": 0.878385032003939, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4560,13 +6676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4276, - "time": 0.7011324470704087, + "noteOrder": 5359, + "time": 0.878385032003939, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4578,18 +6694,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 4300, - "time": 0.7050713934022649, + "noteOrder": 5359, + "time": 0.878385032003939, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4606,13 +6722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4324, - "time": 0.7090103397341211, + "noteOrder": 5371, + "time": 0.880354505169867, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4629,13 +6745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4336, - "time": 0.7109798129000492, + "noteOrder": 5371, + "time": 0.880354505169867, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4652,13 +6768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 2, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4348, - "time": 0.7129492860659773, + "noteOrder": 5383, + "time": 0.8823239783357952, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4675,13 +6791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4372, - "time": 0.7168882323978335, + "noteOrder": 5383, + "time": 0.8823239783357952, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4693,16 +6809,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4384, - "time": 0.7188577055637617, + "noteOrder": 5431, + "time": 0.8902018709995076, "position": { "x": 6, "y": 0 @@ -4721,13 +6837,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 216, "indexInLine": 2, "isSliding": false, - "noteOrder": 4396, - "time": 0.7208271787296898, + "noteOrder": 5455, + "time": 0.894140817331364, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4744,13 +6860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4420, - "time": 0.724766125061546, + "noteOrder": 5479, + "time": 0.8980797636632202, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4767,13 +6883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4432, - "time": 0.726735598227474, + "noteOrder": 5491, + "time": 0.9000492368291482, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4790,11 +6906,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4444, - "time": 0.7287050713934022, + "noteOrder": 5491, + "time": 0.9000492368291482, "position": { "x": 4, "y": 0 @@ -4813,13 +6929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4444, - "time": 0.7287050713934022, + "noteOrder": 5503, + "time": 0.9020187099950764, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4831,16 +6947,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4456, - "time": 0.7306745445593303, + "noteOrder": 5503, + "time": 0.9020187099950764, "position": { "x": 5, "y": 0 @@ -4854,18 +6970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4468, - "time": 0.7326440177252584, + "noteOrder": 5503, + "time": 0.9020187099950764, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4882,13 +6998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4516, - "time": 0.740521910388971, + "noteOrder": 5515, + "time": 0.9039881831610045, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4905,13 +7021,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4540, - "time": 0.7444608567208271, + "noteOrder": 5515, + "time": 0.9039881831610045, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4928,13 +7044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4660, - "time": 0.7641555883801082, + "noteOrder": 5527, + "time": 0.9059576563269326, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4951,13 +7067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4708, - "time": 0.7720334810438207, + "noteOrder": 5527, + "time": 0.9059576563269326, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4969,16 +7085,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4732, - "time": 0.7759724273756771, + "noteOrder": 5527, + "time": 0.9059576563269326, "position": { "x": 3, "y": 0 @@ -4997,13 +7113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 220, "indexInLine": 2, "isSliding": false, - "noteOrder": 4852, - "time": 0.7956671590349582, + "noteOrder": 5539, + "time": 0.9079271294928607, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5020,13 +7136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4900, - "time": 0.8035450516986705, + "noteOrder": 5539, + "time": 0.9079271294928607, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5038,18 +7154,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4924, - "time": 0.8074839980305268, + "noteOrder": 5551, + "time": 0.9098966026587888, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5061,18 +7177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4948, - "time": 0.811422944362383, + "noteOrder": 5551, + "time": 0.9098966026587888, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5089,11 +7205,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 4973, - "time": 0.8153618906942394, + "noteOrder": 5551, + "time": 0.9098966026587888, "position": { "x": 3, "y": 0 @@ -5107,18 +7223,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4997, - "time": 0.8193008370260955, + "noteOrder": 5563, + "time": 0.9118660758247169, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5135,13 +7251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5021, - "time": 0.8232397833579517, + "noteOrder": 5563, + "time": 0.9118660758247169, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5158,13 +7274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5021, - "time": 0.8232397833579517, + "noteOrder": 5575, + "time": 0.9138355489906451, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5176,16 +7292,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5045, - "time": 0.827178729689808, + "noteOrder": 5575, + "time": 0.9138355489906451, "position": { "x": 5, "y": 0 @@ -5199,18 +7315,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5045, - "time": 0.827178729689808, + "noteOrder": 5623, + "time": 0.9217134416543575, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5222,18 +7338,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5069, - "time": 0.8311176760216642, + "noteOrder": 5647, + "time": 0.9256523879862137, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5245,18 +7361,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5093, - "time": 0.8350566223535204, + "noteOrder": 5671, + "time": 0.92959133431807, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5268,18 +7384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5117, - "time": 0.8389955686853766, + "noteOrder": 5683, + "time": 0.931560807483998, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5291,18 +7407,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5141, - "time": 0.8429345150172328, + "noteOrder": 5683, + "time": 0.931560807483998, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5319,13 +7435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5165, - "time": 0.8468734613490891, + "noteOrder": 5695, + "time": 0.9335302806499262, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5342,13 +7458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5285, - "time": 0.8665681930083703, + "noteOrder": 5695, + "time": 0.9335302806499262, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5365,13 +7481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5309, - "time": 0.8705071393402264, + "noteOrder": 5695, + "time": 0.9335302806499262, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5388,13 +7504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5333, - "time": 0.8744460856720827, + "noteOrder": 5707, + "time": 0.9354997538158543, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5406,18 +7522,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5357, - "time": 0.8783850320039389, + "noteOrder": 5707, + "time": 0.9354997538158543, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5434,13 +7550,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5429, - "time": 0.8902018709995075, + "noteOrder": 5719, + "time": 0.9374692269817825, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5452,18 +7568,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5453, - "time": 0.8941408173313639, + "noteOrder": 5719, + "time": 0.9374692269817825, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5475,18 +7591,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5477, - "time": 0.8980797636632201, + "noteOrder": 5719, + "time": 0.9374692269817825, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5498,18 +7614,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5501, - "time": 0.9020187099950763, + "noteOrder": 5731, + "time": 0.9394387001477105, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5526,13 +7642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5525, - "time": 0.9059576563269325, + "noteOrder": 5731, + "time": 0.9394387001477105, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5544,18 +7660,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5549, - "time": 0.9098966026587887, + "noteOrder": 5743, + "time": 0.9414081733136387, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5572,11 +7688,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5621, - "time": 0.9217134416543574, + "noteOrder": 5743, + "time": 0.9414081733136387, "position": { "x": 4, "y": 0 @@ -5590,18 +7706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, + "lineGroupId": 229, "indexInLine": 1, "isSliding": false, - "noteOrder": 5645, - "time": 0.9256523879862136, + "noteOrder": 5743, + "time": 0.9414081733136387, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5618,11 +7734,11 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5669, - "time": 0.9295913343180698, + "noteOrder": 5755, + "time": 0.9433776464795667, "position": { "x": 6, "y": 0 @@ -5636,18 +7752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5693, - "time": 0.9335302806499262, + "noteOrder": 5755, + "time": 0.9433776464795667, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5664,13 +7780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5717, - "time": 0.9374692269817824, + "noteOrder": 5767, + "time": 0.9453471196454949, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5682,18 +7798,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5741, - "time": 0.9414081733136385, + "noteOrder": 5767, + "time": 0.9453471196454949, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5711,10 +7827,10 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6005, - "time": 0.9847365829640571, + "noteOrder": 6008, + "time": 0.9847365829640572, "position": { "x": 7, "y": 0 @@ -5734,10 +7850,10 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6029, - "time": 0.9886755292959133, + "noteOrder": 6032, + "time": 0.9886755292959134, "position": { "x": 7, "y": 0 @@ -5757,10 +7873,10 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6005, - "time": 0.9847365829640571, + "noteOrder": 6008, + "time": 0.9847365829640572, "position": { "x": 3, "y": 0 @@ -5780,10 +7896,10 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6029, - "time": 0.9886755292959133, + "noteOrder": 6032, + "time": 0.9886755292959134, "position": { "x": 3, "y": 0 diff --git a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1b.json b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1b.json index 7690e657..0a09796b 100644 --- a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1b.json +++ b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/299_difficulty_1b.json @@ -74,7 +74,7 @@ }, { "noteOrder": 1033, - "time": 0.1693746922698178, + "time": 0.16937469226981783, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 1129, - "time": 0.18513047759724274, + "time": 0.18513047759724272, "position": { "x": 4, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.1930083702609552, "position": { "x": 6, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.19694731659281142, + "noteOrder": 1202, + "time": 0.19694731659281145, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.24421467257508617, "position": { "x": 6, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.2481536189069424, "position": { "x": 4, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.2520925652387986, + "noteOrder": 1538, + "time": 0.25209256523879864, "position": { "x": 7, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.2520925652387986, + "noteOrder": 1538, + "time": 0.25209256523879864, "position": { "x": 3, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1561, + "noteOrder": 1562, "time": 0.25603151157065485, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1561, + "noteOrder": 1562, "time": 0.25603151157065485, "position": { "x": 4, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.2599704579025111, + "noteOrder": 1586, + "time": 0.25997045790251105, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.2599704579025111, + "noteOrder": 1586, + "time": 0.25997045790251105, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1778, - "time": 0.29148202855736094, + "time": 0.2914820285573609, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1922, - "time": 0.3151157065484983, + "time": 0.31511570654849824, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.31905465288035445, + "noteOrder": 1947, + "time": 0.3190546528803545, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2211, "time": 0.362383062530773, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.3663220088626292, "position": { "x": 3, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.3702609551944855, + "noteOrder": 2259, + "time": 0.37026095519448543, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.3741999015263417, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.3781388478581979, "position": { "x": 5, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.3820777941900541, + "noteOrder": 2331, + "time": 0.3820777941900542, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2354, + "noteOrder": 2355, "time": 0.3860167405219104, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2835, - "time": 0.4647956671590349, + "noteOrder": 2836, + "time": 0.464795667159035, "position": { "x": 5, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2931, - "time": 0.4805514524864598, + "noteOrder": 2932, + "time": 0.4805514524864599, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.4963072378138848, "position": { "x": 6, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3123, + "noteOrder": 3124, "time": 0.5120630231413097, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3459, + "noteOrder": 3460, "time": 0.5672082717872968, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3485, "time": 0.5711472181191531, "position": { "x": 7, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3509, "time": 0.5750861644510094, "position": { "x": 3, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3531, + "noteOrder": 3533, "time": 0.5790251107828656, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3797, "time": 0.6223535204332841, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3821, "time": 0.6262924667651403, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.6302314130969966, + "noteOrder": 3845, + "time": 0.6302314130969965, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3869, "time": 0.6341703594288528, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.6381093057607089, + "noteOrder": 3893, + "time": 0.638109305760709, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3988, - "time": 0.653865091088134, + "noteOrder": 3989, + "time": 0.6538650910881338, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4012, - "time": 0.65780403741999, + "noteOrder": 4013, + "time": 0.6578040374199902, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4037, "time": 0.6617429837518464, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4060, + "noteOrder": 4061, "time": 0.6656819300837026, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4084, - "time": 0.6696208764155589, + "noteOrder": 4085, + "time": 0.6696208764155588, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.724766125061546, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4444, + "noteOrder": 4446, "time": 0.7287050713934022, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4470, "time": 0.7326440177252584, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4540, - "time": 0.7444608567208271, + "noteOrder": 4542, + "time": 0.7444608567208272, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.7483998030526834, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.7523387493845396, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 4614, "time": 0.7562776957163958, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4636, - "time": 0.7602166420482521, + "noteOrder": 4638, + "time": 0.760216642048252, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.7641555883801082, + "noteOrder": 4662, + "time": 0.7641555883801084, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4732, - "time": 0.7759724273756771, + "noteOrder": 4734, + "time": 0.775972427375677, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4756, - "time": 0.7799113737075333, + "noteOrder": 4758, + "time": 0.7799113737075332, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4780, + "noteOrder": 4782, "time": 0.7838503200393894, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4804, - "time": 0.7877892663712457, + "noteOrder": 4806, + "time": 0.7877892663712458, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4828, - "time": 0.7917282127031019, + "noteOrder": 4830, + "time": 0.791728212703102, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4852, + "noteOrder": 4854, "time": 0.7956671590349582, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.8074839980305268, + "noteOrder": 4926, + "time": 0.807483998030527, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.8153618906942394, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.827178729689808, + "noteOrder": 5047, + "time": 0.8271787296898081, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5093, - "time": 0.8350566223535204, + "noteOrder": 5095, + "time": 0.8350566223535205, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5117, - "time": 0.8389955686853766, + "noteOrder": 5119, + "time": 0.8389955686853767, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5141, - "time": 0.8429345150172328, + "noteOrder": 5143, + "time": 0.8429345150172329, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.8468734613490891, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5429, - "time": 0.8902018709995075, + "noteOrder": 5431, + "time": 0.8902018709995076, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5621, - "time": 0.9217134416543574, + "noteOrder": 5623, + "time": 0.9217134416543575, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5693, + "noteOrder": 5695, "time": 0.9335302806499262, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5741, - "time": 0.9414081733136385, + "noteOrder": 5743, + "time": 0.9414081733136387, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5765, - "time": 0.9453471196454948, + "noteOrder": 5767, + "time": 0.9453471196454949, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5765, - "time": 0.9453471196454948, + "noteOrder": 5767, + "time": 0.9453471196454949, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5789, - "time": 0.949286065977351, + "noteOrder": 5791, + "time": 0.9492860659773511, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5789, - "time": 0.949286065977351, + "noteOrder": 5791, + "time": 0.9492860659773511, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5813, + "noteOrder": 5816, "time": 0.9532250123092073, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5813, + "noteOrder": 5816, "time": 0.9532250123092073, "position": { "x": 7, @@ -1596,10 +1596,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.07877892663712457, + "noteOrder": 481, + "time": 0.07877892663712456, "position": { "x": 6, "y": 0 @@ -1619,9 +1619,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 504, + "noteOrder": 505, "time": 0.0827178729689808, "position": { "x": 6, @@ -1642,9 +1642,9 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.08665681930083702, "position": { "x": 4, @@ -1665,7 +1665,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, "time": 0.09059576563269325, @@ -1688,7 +1688,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.09453471196454948, @@ -1711,10 +1711,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.09847365829640571, + "time": 0.09847365829640572, "position": { "x": 6, "y": 0 @@ -1734,10 +1734,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10241260462826193, + "time": 0.10241260462826195, "position": { "x": 4, "y": 0 @@ -1757,10 +1757,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.10635155096011817, + "time": 0.10635155096011818, "position": { "x": 4, "y": 0 @@ -1780,10 +1780,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.11029049729197439, + "time": 0.1102904972919744, "position": { "x": 6, "y": 0 @@ -1803,10 +1803,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, - "time": 0.11422944362383063, + "time": 0.11422944362383064, "position": { "x": 6, "y": 0 @@ -1826,10 +1826,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 697, - "time": 0.11422944362383063, + "time": 0.11422944362383064, "position": { "x": 4, "y": 0 @@ -1849,10 +1849,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, - "time": 0.11816838995568685, + "time": 0.11816838995568686, "position": { "x": 4, "y": 0 @@ -1872,10 +1872,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 721, - "time": 0.11816838995568685, + "time": 0.11816838995568686, "position": { "x": 6, "y": 0 @@ -1895,7 +1895,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 745, "time": 0.12210733628754308, @@ -1918,7 +1918,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.1418020679468242, @@ -1941,10 +1941,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, - "time": 0.14574101427868047, + "time": 0.14574101427868044, "position": { "x": 6, "y": 0 @@ -1964,7 +1964,7 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 937, "time": 0.1536189069423929, @@ -1987,10 +1987,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.15755785327424915, + "time": 0.15755785327424912, "position": { "x": 3, "y": 0 @@ -2010,7 +2010,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 985, "time": 0.16149679960610536, @@ -2033,10 +2033,10 @@ }, { "lineGroupId": 16, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1033, - "time": 0.1693746922698178, + "time": 0.16937469226981783, "position": { "x": 4, "y": 0 @@ -2056,7 +2056,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, "time": 0.17331363860167404, @@ -2079,7 +2079,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1081, "time": 0.17725258493353027, @@ -2102,10 +2102,10 @@ }, { "lineGroupId": 19, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1129, - "time": 0.18513047759724274, + "time": 0.18513047759724272, "position": { "x": 6, "y": 0 @@ -2125,10 +2125,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.20482520925652387, + "noteOrder": 1250, + "time": 0.2048252092565239, "position": { "x": 6, "y": 0 @@ -2148,10 +2148,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.21270310192023634, + "noteOrder": 1298, + "time": 0.21270310192023636, "position": { "x": 6, "y": 0 @@ -2171,10 +2171,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1273, - "time": 0.2087641555883801, + "noteOrder": 1274, + "time": 0.20876415558838013, "position": { "x": 3, "y": 0 @@ -2194,10 +2194,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.21270310192023634, + "noteOrder": 1298, + "time": 0.21270310192023636, "position": { "x": 4, "y": 0 @@ -2217,10 +2217,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.22058099458394878, + "noteOrder": 1346, + "time": 0.2205809945839488, "position": { "x": 4, "y": 0 @@ -2240,10 +2240,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.22845888724766125, + "noteOrder": 1394, + "time": 0.22845888724766128, "position": { "x": 4, "y": 0 @@ -2263,10 +2263,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.22451994091580502, + "noteOrder": 1370, + "time": 0.22451994091580504, "position": { "x": 7, "y": 0 @@ -2286,10 +2286,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.22845888724766125, + "noteOrder": 1394, + "time": 0.22845888724766128, "position": { "x": 6, "y": 0 @@ -2309,9 +2309,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.2678483505662235, "position": { "x": 7, @@ -2332,10 +2332,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1658, - "time": 0.2717872968980798, + "time": 0.27178729689807973, "position": { "x": 6, "y": 0 @@ -2355,10 +2355,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1682, - "time": 0.27572624322993594, + "time": 0.275726243229936, "position": { "x": 6, "y": 0 @@ -2378,7 +2378,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1706, "time": 0.2796651895617922, @@ -2401,7 +2401,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1826, "time": 0.29935992122107336, @@ -2424,7 +2424,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1850, "time": 0.30329886755292956, @@ -2447,7 +2447,7 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1874, "time": 0.3072378138847858, @@ -2470,7 +2470,7 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1898, "time": 0.31117676021664203, @@ -2493,9 +2493,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3229935992122107, "position": { "x": 6, @@ -2516,9 +2516,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.3308714918759232, "position": { "x": 6, @@ -2539,10 +2539,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2066, - "time": 0.3387493845396356, + "noteOrder": 2067, + "time": 0.33874938453963566, "position": { "x": 4, "y": 0 @@ -2562,9 +2562,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.34268833087149186, "position": { "x": 4, @@ -2585,9 +2585,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34662727720334807, "position": { "x": 7, @@ -2608,9 +2608,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.35450516986706054, "position": { "x": 7, @@ -2631,9 +2631,9 @@ }, { "lineGroupId": 54, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2186, + "noteOrder": 2187, "time": 0.35844411619891675, "position": { "x": 6, @@ -2654,9 +2654,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.35056622353520434, "position": { "x": 4, @@ -2677,9 +2677,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2186, + "noteOrder": 2187, "time": 0.35844411619891675, "position": { "x": 4, @@ -2700,10 +2700,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, - "time": 0.39389463318562284, + "noteOrder": 2403, + "time": 0.3938946331856229, "position": { "x": 3, "y": 0 @@ -2723,9 +2723,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2450, + "noteOrder": 2451, "time": 0.40177252584933526, "position": { "x": 4, @@ -2746,10 +2746,10 @@ }, { "lineGroupId": 63, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2498, - "time": 0.40965041851304773, + "noteOrder": 2499, + "time": 0.4096504185130478, "position": { "x": 4, "y": 0 @@ -2769,10 +2769,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, - "time": 0.40965041851304773, + "noteOrder": 2499, + "time": 0.4096504185130478, "position": { "x": 7, "y": 0 @@ -2792,10 +2792,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, - "time": 0.4175283111767602, + "noteOrder": 2547, + "time": 0.41752831117676026, "position": { "x": 6, "y": 0 @@ -2815,10 +2815,10 @@ }, { "lineGroupId": 64, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.4254062038404727, + "noteOrder": 2595, + "time": 0.42540620384047273, "position": { "x": 6, "y": 0 @@ -2838,10 +2838,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.4254062038404727, + "noteOrder": 2595, + "time": 0.42540620384047273, "position": { "x": 7, "y": 0 @@ -2861,9 +2861,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2642, + "noteOrder": 2643, "time": 0.43328409650418515, "position": { "x": 5, @@ -2884,10 +2884,10 @@ }, { "lineGroupId": 65, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2690, - "time": 0.44116198916789756, + "noteOrder": 2691, + "time": 0.4411619891678976, "position": { "x": 5, "y": 0 @@ -2907,10 +2907,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, - "time": 0.44116198916789756, + "noteOrder": 2691, + "time": 0.4411619891678976, "position": { "x": 3, "y": 0 @@ -2930,10 +2930,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2738, - "time": 0.44903988183161003, + "noteOrder": 2740, + "time": 0.4490398818316101, "position": { "x": 4, "y": 0 @@ -2953,10 +2953,10 @@ }, { "lineGroupId": 66, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2787, - "time": 0.4569177744953225, + "noteOrder": 2788, + "time": 0.45691777449532256, "position": { "x": 4, "y": 0 @@ -2976,10 +2976,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.4569177744953225, + "noteOrder": 2788, + "time": 0.45691777449532256, "position": { "x": 3, "y": 0 @@ -2999,10 +2999,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2883, - "time": 0.4726735598227474, + "noteOrder": 2884, + "time": 0.47267355982274745, "position": { "x": 3, "y": 0 @@ -3022,10 +3022,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2883, - "time": 0.4726735598227474, + "noteOrder": 2884, + "time": 0.47267355982274745, "position": { "x": 7, "y": 0 @@ -3045,9 +3045,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.48842934515017233, "position": { "x": 7, @@ -3068,9 +3068,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.48842934515017233, "position": { "x": 4, @@ -3091,10 +3091,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, - "time": 0.5041851304775972, + "noteOrder": 3076, + "time": 0.5041851304775973, "position": { "x": 4, "y": 0 @@ -3114,10 +3114,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3075, - "time": 0.5041851304775972, + "noteOrder": 3076, + "time": 0.5041851304775973, "position": { "x": 6, "y": 0 @@ -3137,10 +3137,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3171, - "time": 0.5199409158050222, + "noteOrder": 3172, + "time": 0.5199409158050221, "position": { "x": 6, "y": 0 @@ -3160,10 +3160,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, - "time": 0.5199409158050222, + "noteOrder": 3172, + "time": 0.5199409158050221, "position": { "x": 3, "y": 0 @@ -3183,9 +3183,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.5278188084687346, "position": { "x": 3, @@ -3206,9 +3206,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.5278188084687346, "position": { "x": 6, @@ -3229,9 +3229,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.535696701132447, "position": { "x": 6, @@ -3252,9 +3252,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.535696701132447, "position": { "x": 4, @@ -3275,10 +3275,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, - "time": 0.5435745937961596, + "noteOrder": 3316, + "time": 0.5435745937961595, "position": { "x": 4, "y": 0 @@ -3298,10 +3298,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3315, - "time": 0.5435745937961596, + "noteOrder": 3316, + "time": 0.5435745937961595, "position": { "x": 6, "y": 0 @@ -3321,10 +3321,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3363, - "time": 0.5514524864598719, + "noteOrder": 3364, + "time": 0.551452486459872, "position": { "x": 6, "y": 0 @@ -3344,10 +3344,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, - "time": 0.5514524864598719, + "noteOrder": 3364, + "time": 0.551452486459872, "position": { "x": 5, "y": 0 @@ -3367,9 +3367,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3412, "time": 0.5593303791235844, "position": { "x": 5, @@ -3390,9 +3390,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3412, "time": 0.5593303791235844, "position": { "x": 5, @@ -3413,9 +3413,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3459, + "noteOrder": 3460, "time": 0.5672082717872968, "position": { "x": 5, @@ -3436,10 +3436,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3555, - "time": 0.5829640571147219, + "noteOrder": 3557, + "time": 0.5829640571147218, "position": { "x": 4, "y": 0 @@ -3459,9 +3459,9 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3627, + "noteOrder": 3629, "time": 0.5947808961102905, "position": { "x": 4, @@ -3482,10 +3482,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3555, - "time": 0.5829640571147219, + "noteOrder": 3557, + "time": 0.5829640571147218, "position": { "x": 6, "y": 0 @@ -3505,9 +3505,9 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3627, + "noteOrder": 3629, "time": 0.5947808961102905, "position": { "x": 6, @@ -3528,9 +3528,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3747, + "noteOrder": 3749, "time": 0.6144756277695717, "position": { "x": 7, @@ -3551,10 +3551,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3771, - "time": 0.6184145741014277, + "noteOrder": 3773, + "time": 0.6184145741014279, "position": { "x": 6, "y": 0 @@ -3574,9 +3574,9 @@ }, { "lineGroupId": 89, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3819, + "noteOrder": 3821, "time": 0.6262924667651403, "position": { "x": 6, @@ -3597,9 +3597,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3941, "time": 0.6459871984244214, "position": { "x": 3, @@ -3620,10 +3620,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3964, - "time": 0.6499261447562777, + "noteOrder": 3965, + "time": 0.6499261447562776, "position": { "x": 4, "y": 0 @@ -3643,10 +3643,10 @@ }, { "lineGroupId": 96, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4012, - "time": 0.65780403741999, + "noteOrder": 4013, + "time": 0.6578040374199902, "position": { "x": 4, "y": 0 @@ -3666,10 +3666,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, - "time": 0.6774987690792712, + "noteOrder": 4133, + "time": 0.6774987690792713, "position": { "x": 4, "y": 0 @@ -3689,9 +3689,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4181, "time": 0.6853766617429837, "position": { "x": 4, @@ -3712,9 +3712,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4229, "time": 0.6932545544066961, "position": { "x": 6, @@ -3735,9 +3735,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.7011324470704087, "position": { "x": 6, @@ -3758,9 +3758,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.7090103397341211, "position": { "x": 3, @@ -3781,9 +3781,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.7129492860659773, "position": { "x": 4, @@ -3804,9 +3804,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4372, + "noteOrder": 4374, "time": 0.7168882323978335, "position": { "x": 7, @@ -3827,9 +3827,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.7208271787296898, "position": { "x": 6, @@ -3850,10 +3850,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.740521910388971, + "noteOrder": 4518, + "time": 0.7405219103889709, "position": { "x": 7, "y": 0 @@ -3873,10 +3873,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4540, - "time": 0.7444608567208271, + "noteOrder": 4542, + "time": 0.7444608567208272, "position": { "x": 7, "y": 0 @@ -3896,9 +3896,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, + "noteOrder": 4710, "time": 0.7720334810438207, "position": { "x": 3, @@ -3919,10 +3919,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, - "time": 0.7759724273756771, + "noteOrder": 4734, + "time": 0.775972427375677, "position": { "x": 3, "y": 0 @@ -3942,9 +3942,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4900, + "noteOrder": 4902, "time": 0.8035450516986705, "position": { "x": 6, @@ -3965,10 +3965,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4924, - "time": 0.8074839980305268, + "noteOrder": 4926, + "time": 0.807483998030527, "position": { "x": 6, "y": 0 @@ -3988,10 +3988,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4948, - "time": 0.811422944362383, + "noteOrder": 4950, + "time": 0.8114229443623832, "position": { "x": 3, "y": 0 @@ -4011,9 +4011,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.8153618906942394, "position": { "x": 3, @@ -4034,10 +4034,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, - "time": 0.8193008370260955, + "noteOrder": 4998, + "time": 0.8193008370260956, "position": { "x": 6, "y": 0 @@ -4057,10 +4057,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5021, - "time": 0.8232397833579517, + "noteOrder": 5023, + "time": 0.8232397833579518, "position": { "x": 6, "y": 0 @@ -4080,10 +4080,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5021, - "time": 0.8232397833579517, + "noteOrder": 5023, + "time": 0.8232397833579518, "position": { "x": 4, "y": 0 @@ -4103,10 +4103,10 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5045, - "time": 0.827178729689808, + "noteOrder": 5047, + "time": 0.8271787296898081, "position": { "x": 4, "y": 0 @@ -4126,9 +4126,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5285, + "noteOrder": 5287, "time": 0.8665681930083703, "position": { "x": 6, @@ -4147,12 +4147,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5311, + "time": 0.8705071393402266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5311, + "time": 0.8705071393402266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5335, + "time": 0.8744460856720828, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5359, + "time": 0.878385032003939, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5333, - "time": 0.8744460856720827, + "noteOrder": 5359, + "time": 0.878385032003939, "position": { "x": 6, "y": 0 @@ -4172,10 +4264,56 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5383, + "time": 0.8823239783357952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5407, + "time": 0.8862629246676514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5381, - "time": 0.8823239783357951, + "noteOrder": 5407, + "time": 0.8862629246676514, "position": { "x": 6, "y": 0 @@ -4195,10 +4333,33 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5479, + "time": 0.8980797636632202, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5477, - "time": 0.8980797636632201, + "noteOrder": 5503, + "time": 0.9020187099950764, "position": { "x": 4, "y": 0 @@ -4216,12 +4377,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5503, + "time": 0.9020187099950764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5527, + "time": 0.9059576563269326, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5551, + "time": 0.9098966026587888, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5525, - "time": 0.9059576563269325, + "noteOrder": 5551, + "time": 0.9098966026587888, "position": { "x": 4, "y": 0 @@ -4241,10 +4471,56 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5573, - "time": 0.913835548990645, + "noteOrder": 5575, + "time": 0.9138355489906451, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5599, + "time": 0.9177744953225013, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5599, + "time": 0.9177744953225013, "position": { "x": 4, "y": 0 @@ -4264,10 +4540,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5669, - "time": 0.9295913343180698, + "noteOrder": 5671, + "time": 0.92959133431807, "position": { "x": 6, "y": 0 @@ -4287,9 +4563,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5693, + "noteOrder": 5695, "time": 0.9335302806499262, "position": { "x": 6, @@ -4310,10 +4586,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5717, - "time": 0.9374692269817824, + "noteOrder": 5719, + "time": 0.9374692269817825, "position": { "x": 4, "y": 0 @@ -4333,10 +4609,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5741, - "time": 0.9414081733136385, + "noteOrder": 5743, + "time": 0.9414081733136387, "position": { "x": 4, "y": 0 @@ -4356,10 +4632,10 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5861, - "time": 0.9611029049729196, + "noteOrder": 5864, + "time": 0.9611029049729198, "position": { "x": 4, "y": 0 @@ -4379,10 +4655,10 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5909, - "time": 0.9689807976366321, + "noteOrder": 5912, + "time": 0.9689807976366323, "position": { "x": 4, "y": 0 @@ -4402,10 +4678,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5861, - "time": 0.9611029049729196, + "noteOrder": 5864, + "time": 0.9611029049729198, "position": { "x": 6, "y": 0 @@ -4425,10 +4701,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5909, - "time": 0.9689807976366321, + "noteOrder": 5912, + "time": 0.9689807976366323, "position": { "x": 6, "y": 0 @@ -4448,9 +4724,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5957, + "noteOrder": 5960, "time": 0.9768586903003447, "position": { "x": 4, @@ -4471,10 +4747,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6005, - "time": 0.9847365829640571, + "noteOrder": 6008, + "time": 0.9847365829640572, "position": { "x": 4, "y": 0 @@ -4494,9 +4770,9 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5957, + "noteOrder": 5960, "time": 0.9768586903003447, "position": { "x": 6, @@ -4517,10 +4793,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6005, - "time": 0.9847365829640571, + "noteOrder": 6008, + "time": 0.9847365829640572, "position": { "x": 6, "y": 0 diff --git a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/info.json b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/info.json index 26af19fd..b4370b0d 100644 --- a/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/info.json +++ b/tracks/BOOMBAYAH-JP Ver.- ANOTHER EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "BOOMBAYAH-JP Ver.- ANOTHER EDITION", - "SongLength": "131.970612", + "SongLength": "122.017959", "SongAuthorName": "BLACKPINK", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1a.json b/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1a.json index b22058e2..d2a6f928 100644 --- a/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1a.json +++ b/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.021197668256491786, + "time": 0.021197668256491782, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.025437201907790145, + "time": 0.02543720190779014, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 168, - "time": 0.029676735559088504, + "time": 0.029676735559088497, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 216, - "time": 0.03815580286168522, + "time": 0.03815580286168521, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 240, - "time": 0.04239533651298357, + "time": 0.042395336512983564, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 336, - "time": 0.05935347111817701, + "time": 0.059353471118176994, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 409, "time": 0.07207207207207207, "position": { "x": 4, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 432, - "time": 0.07631160572337044, + "noteOrder": 433, + "time": 0.07631160572337042, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 456, - "time": 0.08055113937466879, + "noteOrder": 457, + "time": 0.08055113937466878, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.08479067302596714, + "noteOrder": 481, + "time": 0.08479067302596713, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.10174880763116058, + "noteOrder": 577, + "time": 0.10174880763116056, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 673, - "time": 0.11870694223635402, + "time": 0.11870694223635399, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.22045574986751457, "position": { "x": 7, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1273, - "time": 0.22469528351881293, + "noteOrder": 1274, + "time": 0.2246952835188129, "position": { "x": 3, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1285, + "noteOrder": 1286, "time": 0.22681505034446212, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.22893481717011127, "position": { "x": 5, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.23317435082140964, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.24165341812400637, + "noteOrder": 1370, + "time": 0.24165341812400634, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.24589295177530474, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.25013248542660305, + "noteOrder": 1418, + "time": 0.2501324854266031, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.2713301536830949, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.2882882882882883, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.3094859565447801, + "noteOrder": 1754, + "time": 0.30948595654478006, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.3137254901960785, + "noteOrder": 1778, + "time": 0.3137254901960784, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1826, - "time": 0.32220455749867516, + "time": 0.3222045574986751, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1922, - "time": 0.33916269210386857, + "time": 0.3391626921038685, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1970, - "time": 0.3476417594064653, + "noteOrder": 1971, + "time": 0.34764175940646524, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1994, - "time": 0.35188129305776367, + "noteOrder": 1995, + "time": 0.3518812930577636, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2018, - "time": 0.356120826709062, + "noteOrder": 2019, + "time": 0.35612082670906203, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.37731849496555375, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2162, - "time": 0.3815580286168521, + "noteOrder": 2163, + "time": 0.3815580286168522, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2186, - "time": 0.38579756226815054, + "noteOrder": 2187, + "time": 0.3857975622681505, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.3900370959194489, + "noteOrder": 2211, + "time": 0.39003709591944885, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.4069952305246423, + "noteOrder": 2307, + "time": 0.40699523052464226, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.4239533651298357, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2426, + "noteOrder": 2427, "time": 0.4281928987811341, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.43243243243243246, + "noteOrder": 2451, + "time": 0.4324324324324324, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.43667196608373077, + "noteOrder": 2475, + "time": 0.4366719660837308, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2594, + "noteOrder": 2595, "time": 0.45786963434022254, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2690, - "time": 0.47482776894541606, + "noteOrder": 2691, + "time": 0.47482776894541595, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2714, + "noteOrder": 2715, "time": 0.4790673025967144, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.48330683624801274, + "noteOrder": 2739, + "time": 0.4833068362480127, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2762, - "time": 0.4875463698993111, + "noteOrder": 2764, + "time": 0.48754636989931105, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2786, + "noteOrder": 2788, "time": 0.49178590355060947, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2810, - "time": 0.49602543720190784, + "noteOrder": 2812, + "time": 0.4960254372019078, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2860, "time": 0.5045045045045045, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.5257021727609963, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.534181240063593, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.5384207737148914, + "noteOrder": 3052, + "time": 0.5384207737148913, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.5680975092739798, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.5765765765765766, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3315, + "noteOrder": 3316, "time": 0.5850556438791733, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3339, + "noteOrder": 3340, "time": 0.5892951775304717, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3411, - "time": 0.6020137784843667, + "noteOrder": 3412, + "time": 0.6020137784843668, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.6104928457869635, + "noteOrder": 3460, + "time": 0.6104928457869634, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3484, "time": 0.6147323794382618, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3507, - "time": 0.6189719130895602, + "noteOrder": 3508, + "time": 0.6189719130895601, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3531, + "noteOrder": 3532, "time": 0.6232114467408585, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3627, + "noteOrder": 3629, "time": 0.640169581346052, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3723, + "noteOrder": 3725, "time": 0.6571277159512453, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 3917, "time": 0.6910439851616321, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4059, - "time": 0.7164811870694224, + "noteOrder": 4061, + "time": 0.7164811870694223, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 4085, "time": 0.7207207207207207, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4107, - "time": 0.7249602543720192, + "noteOrder": 4109, + "time": 0.724960254372019, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4155, + "noteOrder": 4157, "time": 0.7334393216746158, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4181, "time": 0.7376788553259142, "position": { "x": 8, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4204, - "time": 0.7419183889772125, + "noteOrder": 4205, + "time": 0.7419183889772124, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4444, + "noteOrder": 4446, "time": 0.7843137254901961, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.7885532591414945, + "noteOrder": 4470, + "time": 0.7885532591414943, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4494, "time": 0.7927927927927928, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.7970323264440912, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4564, - "time": 0.8055113937466879, + "noteOrder": 4566, + "time": 0.8055113937466878, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.8139904610492846, + "noteOrder": 4614, + "time": 0.8139904610492845, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 4638, "time": 0.8182299947005829, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4708, + "noteOrder": 4710, "time": 0.830948595654478, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4804, + "noteOrder": 4806, "time": 0.8479067302596714, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.8691043985161633, + "noteOrder": 4926, + "time": 0.8691043985161632, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4972, - "time": 0.87758346581876, + "noteOrder": 4974, + "time": 0.8775834658187599, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 4998, "time": 0.8818229994700583, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5020, - "time": 0.8860625331213567, + "noteOrder": 5022, + "time": 0.8860625331213565, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.890302066772655, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5068, + "noteOrder": 5070, "time": 0.8945416004239534, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5068, + "noteOrder": 5070, "time": 0.8945416004239534, "position": { "x": 6, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5116, - "time": 0.9030206677265501, + "noteOrder": 5118, + "time": 0.90302066772655, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5284, + "noteOrder": 5287, "time": 0.9326974032856385, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5311, "time": 0.9369369369369369, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5332, - "time": 0.9411764705882354, + "noteOrder": 5335, + "time": 0.9411764705882353, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5357, + "noteOrder": 5359, "time": 0.9454160042395336, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5381, - "time": 0.9496555378908321, + "noteOrder": 5383, + "time": 0.9496555378908319, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5405, + "noteOrder": 5407, "time": 0.9538950715421304, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5453, - "time": 0.9623741388447271, + "noteOrder": 5455, + "time": 0.962374138844727, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5465, + "noteOrder": 5467, "time": 0.9644939056703762, "position": { "x": 7, @@ -2076,10 +2076,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.05087440381558029, + "time": 0.05087440381558028, "position": { "x": 3, "y": 0 @@ -2099,7 +2099,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, "time": 0.06783253842077372, @@ -2122,7 +2122,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, "time": 0.06783253842077372, @@ -2145,10 +2145,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 480, - "time": 0.08479067302596714, + "noteOrder": 481, + "time": 0.08479067302596713, "position": { "x": 4, "y": 0 @@ -2168,10 +2168,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 504, - "time": 0.0890302066772655, + "noteOrder": 505, + "time": 0.08903020667726551, "position": { "x": 7, "y": 0 @@ -2190,11 +2190,11 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 528, - "time": 0.09326974032856386, + "noteOrder": 517, + "time": 0.09114997350291468, "position": { "x": 7, "y": 0 @@ -2208,18 +2208,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 552, - "time": 0.09750927397986223, + "noteOrder": 517, + "time": 0.09114997350291468, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2236,13 +2236,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 4, "isSliding": false, - "noteOrder": 601, - "time": 0.10598834128245893, + "noteOrder": 529, + "time": 0.09326974032856386, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2254,18 +2254,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 5, "isSliding": false, - "noteOrder": 625, - "time": 0.11022787493375728, + "noteOrder": 529, + "time": 0.09326974032856386, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2282,11 +2282,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 649, - "time": 0.11446740858505564, + "noteOrder": 529, + "time": 0.09326974032856386, "position": { "x": 7, "y": 0 @@ -2305,13 +2305,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 697, - "time": 0.12294647588765237, + "noteOrder": 541, + "time": 0.09538950715421304, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2328,11 +2328,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 721, - "time": 0.1271860095389507, + "noteOrder": 541, + "time": 0.09538950715421304, "position": { "x": 6, "y": 0 @@ -2351,11 +2351,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 4, "isSliding": false, - "noteOrder": 721, - "time": 0.1271860095389507, + "noteOrder": 553, + "time": 0.09750927397986221, "position": { "x": 6, "y": 0 @@ -2369,18 +2369,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 5, "isSliding": false, - "noteOrder": 745, - "time": 0.13142554319024907, + "noteOrder": 553, + "time": 0.09750927397986221, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2392,18 +2392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 745, - "time": 0.13142554319024907, + "noteOrder": 553, + "time": 0.09750927397986221, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2415,18 +2415,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 1, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 769, - "time": 0.13566507684154744, + "noteOrder": 565, + "time": 0.0996290408055114, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2438,18 +2438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.15262321144674088, + "noteOrder": 565, + "time": 0.0996290408055114, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2466,13 +2466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 1, + "lineGroupId": 20, + "indexInLine": 4, "isSliding": false, - "noteOrder": 961, - "time": 0.16958134605193428, + "noteOrder": 577, + "time": 0.10174880763116056, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2489,13 +2489,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 2, + "lineGroupId": 20, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653948065712772, + "noteOrder": 577, + "time": 0.10174880763116056, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2512,13 +2512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 3, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.20349761526232116, + "noteOrder": 601, + "time": 0.10598834128245893, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2530,16 +2530,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 4, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1225, - "time": 0.21621621621621623, + "noteOrder": 613, + "time": 0.1081081081081081, "position": { "x": 7, "y": 0 @@ -2553,18 +2553,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.15262321144674088, + "noteOrder": 613, + "time": 0.1081081081081081, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2581,13 +2581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 961, - "time": 0.16958134605193428, + "noteOrder": 625, + "time": 0.11022787493375728, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2604,11 +2604,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 2, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653948065712772, + "noteOrder": 625, + "time": 0.11022787493375728, "position": { "x": 4, "y": 0 @@ -2627,13 +2627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 3, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.20349761526232116, + "noteOrder": 625, + "time": 0.11022787493375728, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2645,18 +2645,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 4, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1225, - "time": 0.21621621621621623, + "noteOrder": 637, + "time": 0.11234764175940645, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2668,18 +2668,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1345, - "time": 0.23741388447270803, + "noteOrder": 637, + "time": 0.11234764175940645, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2691,18 +2691,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1417, - "time": 0.25013248542660305, + "noteOrder": 649, + "time": 0.11446740858505564, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2714,18 +2714,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1441, - "time": 0.2543720190779014, + "noteOrder": 649, + "time": 0.11446740858505564, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2737,16 +2737,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.2586115527291998, + "noteOrder": 649, + "time": 0.11446740858505564, "position": { "x": 7, "y": 0 @@ -2760,16 +2760,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1489, - "time": 0.26285108638049814, + "noteOrder": 661, + "time": 0.11658717541070482, "position": { "x": 7, "y": 0 @@ -2788,13 +2788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1513, - "time": 0.2670906200317965, + "noteOrder": 661, + "time": 0.11658717541070482, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2806,18 +2806,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1657, - "time": 0.29252782193958665, + "noteOrder": 673, + "time": 0.11870694223635399, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2829,18 +2829,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1681, - "time": 0.29676735559088496, + "noteOrder": 673, + "time": 0.11870694223635399, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2857,13 +2857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.30100688924218333, + "noteOrder": 697, + "time": 0.12294647588765237, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2875,18 +2875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.30524642289348175, + "noteOrder": 721, + "time": 0.1271860095389507, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2903,13 +2903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 27, "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.32220455749867516, + "noteOrder": 721, + "time": 0.1271860095389507, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2921,18 +2921,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1850, - "time": 0.3264440911499735, + "noteOrder": 745, + "time": 0.13142554319024907, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 745, + "time": 0.13142554319024907, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -2949,11 +2972,34 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, - "time": 0.3306836248012719, + "noteOrder": 769, + "time": 0.13566507684154744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 865, + "time": 0.15262321144674085, "position": { "x": 7, "y": 0 @@ -2972,11 +3018,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1898, - "time": 0.3349231584525702, + "noteOrder": 961, + "time": 0.16958134605193426, "position": { "x": 7, "y": 0 @@ -2990,18 +3036,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2042, - "time": 0.36036036036036034, + "noteOrder": 1057, + "time": 0.18653948065712772, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3013,16 +3059,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2066, - "time": 0.3645998940116587, + "noteOrder": 1153, + "time": 0.20349761526232113, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1226, + "time": 0.2162162162162162, "position": { "x": 7, "y": 0 @@ -3041,11 +3110,172 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2090, - "time": 0.3688394276629571, + "noteOrder": 865, + "time": 0.15262321144674085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 961, + "time": 0.16958134605193426, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1057, + "time": 0.18653948065712772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1153, + "time": 0.20349761526232113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1226, + "time": 0.2162162162162162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1346, + "time": 0.23741388447270798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1418, + "time": 0.2501324854266031, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1442, + "time": 0.2543720190779014, "position": { "x": 7, "y": 0 @@ -3064,13 +3294,4751 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1454, + "time": 0.2564917859035506, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1454, + "time": 0.2564917859035506, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1466, + "time": 0.2586115527291998, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1466, + "time": 0.2586115527291998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1466, + "time": 0.2586115527291998, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1478, + "time": 0.26073131955484896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1478, + "time": 0.26073131955484896, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1490, + "time": 0.26285108638049814, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1490, + "time": 0.26285108638049814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1490, + "time": 0.26285108638049814, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1502, + "time": 0.2649708532061473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1502, + "time": 0.2649708532061473, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1514, + "time": 0.2670906200317965, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1514, + "time": 0.2670906200317965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1514, + "time": 0.2670906200317965, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1526, + "time": 0.26921038685744564, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1526, + "time": 0.26921038685744564, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1538, + "time": 0.2713301536830949, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1538, + "time": 0.2713301536830949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.29252782193958665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.29464758876523583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1670, + "time": 0.29464758876523583, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29676735559088496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29676735559088496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29676735559088496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1694, + "time": 0.29888712241653415, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1694, + "time": 0.29888712241653415, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1706, + "time": 0.3010068892421834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1706, + "time": 0.3010068892421834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.3010068892421834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.3031266560678325, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1718, + "time": 0.3031266560678325, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1730, + "time": 0.3052464228934817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1730, + "time": 0.3052464228934817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.3052464228934817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1826, + "time": 0.3222045574986751, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1850, + "time": 0.3264440911499735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1862, + "time": 0.32856385797562265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1862, + "time": 0.32856385797562265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1874, + "time": 0.33068362480127184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1874, + "time": 0.33068362480127184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.33068362480127184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.3328033916269211, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1886, + "time": 0.3328033916269211, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1898, + "time": 0.3349231584525702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1898, + "time": 0.3349231584525702, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1898, + "time": 0.3349231584525702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1910, + "time": 0.3370429252782194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1910, + "time": 0.3370429252782194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1922, + "time": 0.3391626921038685, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1922, + "time": 0.3391626921038685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2043, + "time": 0.36036036036036034, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2055, + "time": 0.3624801271860095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2055, + "time": 0.3624801271860095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2067, + "time": 0.3645998940116587, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2067, + "time": 0.3645998940116587, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.3645998940116587, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2079, + "time": 0.3667196608373079, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2079, + "time": 0.3667196608373079, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3688394276629571, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3688394276629571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3688394276629571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2103, + "time": 0.3709591944886062, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2103, + "time": 0.3709591944886062, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2115, + "time": 0.37307896131425544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2115, + "time": 0.37307896131425544, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2115, + "time": 0.37307896131425544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2211, + "time": 0.39003709591944885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2235, + "time": 0.39427662957074716, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3963963963963964, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3963963963963964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2259, + "time": 0.3985161632220456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2259, + "time": 0.3985161632220456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.3985161632220456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2271, + "time": 0.4006359300476947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2271, + "time": 0.4006359300476947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2283, + "time": 0.4027556968733439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2283, + "time": 0.4027556968733439, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2283, + "time": 0.4027556968733439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2295, + "time": 0.40487546369899313, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2295, + "time": 0.40487546369899313, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2307, + "time": 0.40699523052464226, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2307, + "time": 0.40699523052464226, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2331, + "time": 0.4112347641759406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2355, + "time": 0.415474297827239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2355, + "time": 0.415474297827239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2379, + "time": 0.41971383147853736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2379, + "time": 0.41971383147853736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2403, + "time": 0.4239533651298357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.44091149973502913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4451510333863275, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4451510333863275, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2547, + "time": 0.4493905670376258, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2547, + "time": 0.4493905670376258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2571, + "time": 0.45363010068892423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2571, + "time": 0.45363010068892423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.45786963434022254, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2619, + "time": 0.4621091679915209, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2631, + "time": 0.4642289348171701, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2631, + "time": 0.4642289348171701, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2643, + "time": 0.4663487016428193, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2643, + "time": 0.4663487016428193, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.4663487016428193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2655, + "time": 0.46846846846846846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2655, + "time": 0.46846846846846846, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2667, + "time": 0.47058823529411764, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2667, + "time": 0.47058823529411764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2667, + "time": 0.47058823529411764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2679, + "time": 0.4727080021197668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2679, + "time": 0.4727080021197668, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2691, + "time": 0.47482776894541595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2691, + "time": 0.47482776894541595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2836, + "time": 0.5002649708532062, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2848, + "time": 0.5023847376788553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2848, + "time": 0.5023847376788553, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2860, + "time": 0.5045045045045045, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2860, + "time": 0.5045045045045045, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.5087440381558028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2896, + "time": 0.510863804981452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2896, + "time": 0.510863804981452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5129835718071012, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5129835718071012, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5129835718071012, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2920, + "time": 0.5151033386327504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2920, + "time": 0.5151033386327504, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5172231054583996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5172231054583996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5172231054583996, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2944, + "time": 0.5193428722840487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2944, + "time": 0.5193428722840487, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5214626391096979, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5214626391096979, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5214626391096979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2968, + "time": 0.5235824059353471, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2968, + "time": 0.5235824059353471, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2980, + "time": 0.5257021727609963, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2980, + "time": 0.5257021727609963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3004, + "time": 0.5299417064122947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5320614732379438, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5320614732379438, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3028, + "time": 0.534181240063593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3028, + "time": 0.534181240063593, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.5426603073661898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5447800741918388, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5447800741918388, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3100, + "time": 0.546899841017488, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3100, + "time": 0.546899841017488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3100, + "time": 0.546899841017488, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3112, + "time": 0.5490196078431373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3112, + "time": 0.5490196078431373, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5511393746687864, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5511393746687864, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5511393746687864, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3172, + "time": 0.5596184419713831, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.5935347111817699, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6104928457869634, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3557, + "time": 0.6274509803921569, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3569, + "time": 0.6295707472178059, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3569, + "time": 0.6295707472178059, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3581, + "time": 0.6316905140434552, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3581, + "time": 0.6316905140434552, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3581, + "time": 0.6316905140434552, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3593, + "time": 0.6338102808691044, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3593, + "time": 0.6338102808691044, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3605, + "time": 0.6359300476947536, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3605, + "time": 0.6359300476947536, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3605, + "time": 0.6359300476947536, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3617, + "time": 0.6380498145204028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3617, + "time": 0.6380498145204028, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3629, + "time": 0.640169581346052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3629, + "time": 0.640169581346052, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3653, + "time": 0.6444091149973502, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6465288818229994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6465288818229994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3677, + "time": 0.6486486486486487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3677, + "time": 0.6486486486486487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3677, + "time": 0.6486486486486487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3689, + "time": 0.6507684154742979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3689, + "time": 0.6507684154742979, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3701, + "time": 0.652888182299947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3701, + "time": 0.652888182299947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3701, + "time": 0.652888182299947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6550079491255961, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6550079491255961, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3725, + "time": 0.6571277159512453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3725, + "time": 0.6571277159512453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3749, + "time": 0.6613672496025437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3761, + "time": 0.663487016428193, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3761, + "time": 0.663487016428193, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3773, + "time": 0.6656067832538421, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3785, + "time": 0.6677265500794912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3785, + "time": 0.6677265500794912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3797, + "time": 0.6698463169051404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6719660837307896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6719660837307896, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3821, + "time": 0.6740858505564388, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3833, + "time": 0.676205617382088, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3833, + "time": 0.676205617382088, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3941, + "time": 0.6952835188129305, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6974032856385798, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6974032856385798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3965, + "time": 0.699523052464229, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3965, + "time": 0.699523052464229, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3965, + "time": 0.699523052464229, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3977, + "time": 0.7016428192898782, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3977, + "time": 0.7016428192898782, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2114, - "time": 0.37307896131425544, + "noteOrder": 3989, + "time": 0.7037625861155272, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3082,18 +8050,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2210, - "time": 0.3900370959194489, + "noteOrder": 3989, + "time": 0.7037625861155272, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3105,18 +8073,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2234, - "time": 0.3942766295707473, + "noteOrder": 3989, + "time": 0.7037625861155272, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3133,13 +8101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2258, - "time": 0.3985161632220456, + "noteOrder": 4001, + "time": 0.7058823529411764, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3151,18 +8119,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2282, - "time": 0.40275569687334395, + "noteOrder": 4001, + "time": 0.7058823529411764, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3179,13 +8147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2330, - "time": 0.4112347641759407, + "noteOrder": 4013, + "time": 0.7080021197668256, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3202,11 +8170,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 144, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2354, - "time": 0.415474297827239, + "noteOrder": 4013, + "time": 0.7080021197668256, "position": { "x": 4, "y": 0 @@ -3225,13 +8193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.415474297827239, + "noteOrder": 4013, + "time": 0.7080021197668256, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3248,13 +8216,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2378, - "time": 0.41971383147853736, + "noteOrder": 4025, + "time": 0.7101218865924748, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3271,13 +8239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2378, - "time": 0.41971383147853736, + "noteOrder": 4025, + "time": 0.7101218865924748, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3289,18 +8257,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2402, - "time": 0.4239533651298357, + "noteOrder": 4037, + "time": 0.7122416534181241, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3312,18 +8280,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2498, - "time": 0.44091149973502913, + "noteOrder": 4037, + "time": 0.7122416534181241, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3340,13 +8308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 2522, - "time": 0.4451510333863275, + "noteOrder": 4037, + "time": 0.7122416534181241, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3358,18 +8326,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2522, - "time": 0.4451510333863275, + "noteOrder": 4133, + "time": 0.7291997880233174, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3386,13 +8354,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 2546, - "time": 0.44939056703762587, + "noteOrder": 4229, + "time": 0.7461579226285109, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3409,13 +8377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, - "time": 0.44939056703762587, + "noteOrder": 4253, + "time": 0.7503974562798092, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3427,16 +8395,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 2570, - "time": 0.45363010068892423, + "noteOrder": 4253, + "time": 0.7503974562798092, "position": { "x": 5, "y": 0 @@ -3455,13 +8423,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2570, - "time": 0.45363010068892423, + "noteOrder": 4277, + "time": 0.7546369899311075, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3473,18 +8441,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.45786963434022254, + "noteOrder": 4277, + "time": 0.7546369899311075, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3501,13 +8469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2618, - "time": 0.4621091679915209, + "noteOrder": 4301, + "time": 0.7588765235824059, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3524,13 +8492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2642, - "time": 0.4663487016428193, + "noteOrder": 4325, + "time": 0.7631160572337043, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3547,13 +8515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2666, - "time": 0.4705882352941177, + "noteOrder": 4338, + "time": 0.7652358240593534, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3565,18 +8533,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2834, - "time": 0.5002649708532061, + "noteOrder": 4338, + "time": 0.7652358240593534, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3593,13 +8561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2882, - "time": 0.5087440381558028, + "noteOrder": 4350, + "time": 0.7673555908850026, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3616,13 +8584,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2906, - "time": 0.5129835718071013, + "noteOrder": 4350, + "time": 0.7673555908850026, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3634,16 +8602,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2930, - "time": 0.5172231054583996, + "noteOrder": 4350, + "time": 0.7673555908850026, "position": { "x": 3, "y": 0 @@ -3657,16 +8625,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2954, - "time": 0.5214626391096979, + "noteOrder": 4362, + "time": 0.7694753577106518, "position": { "x": 3, "y": 0 @@ -3685,13 +8653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3003, - "time": 0.5299417064122947, + "noteOrder": 4362, + "time": 0.7694753577106518, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3708,13 +8676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3075, - "time": 0.5426603073661898, + "noteOrder": 4374, + "time": 0.771595124536301, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3726,16 +8694,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3099, - "time": 0.5468998410174881, + "noteOrder": 4374, + "time": 0.771595124536301, "position": { "x": 6, "y": 0 @@ -3754,13 +8722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3123, - "time": 0.5511393746687865, + "noteOrder": 4374, + "time": 0.771595124536301, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3777,13 +8745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3171, - "time": 0.5596184419713831, + "noteOrder": 4386, + "time": 0.7737148913619502, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3800,13 +8768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3363, - "time": 0.5935347111817699, + "noteOrder": 4386, + "time": 0.7737148913619502, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3823,11 +8791,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3459, - "time": 0.6104928457869635, + "noteOrder": 4398, + "time": 0.7758346581875994, "position": { "x": 5, "y": 0 @@ -3846,13 +8814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3555, - "time": 0.627450980392157, + "noteOrder": 4398, + "time": 0.7758346581875994, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3864,18 +8832,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3579, - "time": 0.6316905140434552, + "noteOrder": 4398, + "time": 0.7758346581875994, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3887,18 +8855,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3603, - "time": 0.6359300476947536, + "noteOrder": 4410, + "time": 0.7779544250132485, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3915,13 +8883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3651, - "time": 0.6444091149973503, + "noteOrder": 4410, + "time": 0.7779544250132485, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3933,18 +8901,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3675, - "time": 0.6486486486486486, + "noteOrder": 4422, + "time": 0.7800741918388977, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3961,13 +8929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3699, - "time": 0.652888182299947, + "noteOrder": 4422, + "time": 0.7800741918388977, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3979,18 +8947,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3747, - "time": 0.6613672496025438, + "noteOrder": 4422, + "time": 0.7800741918388977, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4002,18 +8970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3771, - "time": 0.665606783253842, + "noteOrder": 4518, + "time": 0.7970323264440912, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4030,13 +8998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3795, - "time": 0.6698463169051404, + "noteOrder": 4662, + "time": 0.8224695283518813, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4048,18 +9016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3819, - "time": 0.6740858505564388, + "noteOrder": 4710, + "time": 0.830948595654478, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4076,13 +9044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3939, - "time": 0.6952835188129306, + "noteOrder": 4734, + "time": 0.8351881293057764, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4094,18 +9062,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3963, - "time": 0.699523052464229, + "noteOrder": 4746, + "time": 0.8373078961314254, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4122,13 +9090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3987, - "time": 0.7037625861155273, + "noteOrder": 4746, + "time": 0.8373078961314254, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4140,18 +9108,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4011, - "time": 0.7080021197668257, + "noteOrder": 4758, + "time": 0.8394276629570747, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4168,13 +9136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4035, - "time": 0.712241653418124, + "noteOrder": 4758, + "time": 0.8394276629570747, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4186,18 +9154,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 4131, - "time": 0.7291997880233174, + "noteOrder": 4758, + "time": 0.8394276629570747, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4214,13 +9182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4228, - "time": 0.7461579226285109, + "noteOrder": 4770, + "time": 0.8415474297827239, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4237,11 +9205,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4252, - "time": 0.7503974562798092, + "noteOrder": 4770, + "time": 0.8415474297827239, "position": { "x": 5, "y": 0 @@ -4260,11 +9228,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4252, - "time": 0.7503974562798092, + "noteOrder": 4782, + "time": 0.8436671966083731, "position": { "x": 5, "y": 0 @@ -4278,18 +9246,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4276, - "time": 0.7546369899311075, + "noteOrder": 4782, + "time": 0.8436671966083731, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4301,18 +9269,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4276, - "time": 0.7546369899311075, + "noteOrder": 4782, + "time": 0.8436671966083731, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4324,18 +9292,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4300, - "time": 0.758876523582406, + "noteOrder": 4794, + "time": 0.8457869634340223, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4347,18 +9315,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4324, - "time": 0.7631160572337042, + "noteOrder": 4794, + "time": 0.8457869634340223, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4375,13 +9343,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4348, - "time": 0.7673555908850027, + "noteOrder": 4806, + "time": 0.8479067302596714, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4393,18 +9361,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4372, - "time": 0.7715951245363011, + "noteOrder": 4806, + "time": 0.8479067302596714, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4421,13 +9389,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4396, - "time": 0.7758346581875993, + "noteOrder": 4830, + "time": 0.8521462639109697, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4439,16 +9407,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4420, - "time": 0.7800741918388978, + "noteOrder": 4854, + "time": 0.8563857975622682, "position": { "x": 4, "y": 0 @@ -4467,13 +9435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.7970323264440912, + "noteOrder": 4854, + "time": 0.8563857975622682, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4485,18 +9453,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4660, - "time": 0.8224695283518814, + "noteOrder": 4878, + "time": 0.8606253312135665, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4508,18 +9476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.830948595654478, + "noteOrder": 4878, + "time": 0.8606253312135665, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4536,13 +9504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, - "time": 0.8351881293057764, + "noteOrder": 4902, + "time": 0.8648648648648648, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4559,13 +9527,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4756, - "time": 0.8394276629570747, + "noteOrder": 4902, + "time": 0.8648648648648648, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4582,13 +9550,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4780, - "time": 0.8436671966083731, + "noteOrder": 4950, + "time": 0.8733439321674616, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4600,16 +9568,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4828, - "time": 0.8521462639109697, + "noteOrder": 4950, + "time": 0.8733439321674616, "position": { "x": 3, "y": 0 @@ -4628,13 +9596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4852, - "time": 0.8563857975622682, + "noteOrder": 4998, + "time": 0.8818229994700583, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4651,13 +9619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4852, - "time": 0.8563857975622682, + "noteOrder": 5143, + "time": 0.9072602013778485, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4674,11 +9642,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4876, - "time": 0.8606253312135664, + "noteOrder": 5155, + "time": 0.9093799682034976, "position": { "x": 6, "y": 0 @@ -4697,13 +9665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4876, - "time": 0.8606253312135664, + "noteOrder": 5155, + "time": 0.9093799682034976, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4715,18 +9683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4900, - "time": 0.8648648648648649, + "noteOrder": 5167, + "time": 0.9114997350291467, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4738,18 +9706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4900, - "time": 0.8648648648648649, + "noteOrder": 5167, + "time": 0.9114997350291467, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4766,13 +9734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 4948, - "time": 0.8733439321674615, + "noteOrder": 5167, + "time": 0.9114997350291467, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4784,18 +9752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4948, - "time": 0.8733439321674615, + "noteOrder": 5179, + "time": 0.9136195018547959, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4812,13 +9780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4996, - "time": 0.8818229994700583, + "noteOrder": 5179, + "time": 0.9136195018547959, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4835,13 +9803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5140, - "time": 0.9072602013778485, + "noteOrder": 5191, + "time": 0.9157392686804451, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4853,18 +9821,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5164, - "time": 0.9114997350291468, + "noteOrder": 5191, + "time": 0.9157392686804451, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4882,9 +9850,9 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5188, + "noteOrder": 5191, "time": 0.9157392686804451, "position": { "x": 6, @@ -4905,9 +9873,9 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5212, + "noteOrder": 5215, "time": 0.9199788023317436, "position": { "x": 4, @@ -4928,9 +9896,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5212, + "noteOrder": 5215, "time": 0.9199788023317436, "position": { "x": 4, @@ -4951,9 +9919,9 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5236, + "noteOrder": 5239, "time": 0.9242183359830418, "position": { "x": 6, @@ -4974,9 +9942,9 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5236, + "noteOrder": 5239, "time": 0.9242183359830418, "position": { "x": 6, @@ -4997,10 +9965,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5260, - "time": 0.9284578696343403, + "noteOrder": 5263, + "time": 0.9284578696343402, "position": { "x": 4, "y": 0 @@ -5020,10 +9988,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5260, - "time": 0.9284578696343403, + "noteOrder": 5263, + "time": 0.9284578696343402, "position": { "x": 4, "y": 0 @@ -5043,9 +10011,9 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5284, + "noteOrder": 5287, "time": 0.9326974032856385, "position": { "x": 6, diff --git a/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1b.json b/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1b.json index 0117c1eb..2ed88e43 100644 --- a/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1b.json +++ b/tracks/BREDLI RUNNING MAN EDITION/326_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.025437201907790145, + "time": 0.02543720190779014, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 240, - "time": 0.04239533651298357, + "time": 0.042395336512983564, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 288, - "time": 0.05087440381558029, + "time": 0.05087440381558028, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 336, - "time": 0.05935347111817701, + "time": 0.059353471118176994, "position": { "x": 6, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 432, - "time": 0.07631160572337044, + "noteOrder": 433, + "time": 0.07631160572337042, "position": { "x": 4, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.2543720190779014, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.26285108638049814, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.2882882882882883, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.29676735559088496, "position": { "x": 4, @@ -334,7 +334,7 @@ }, { "noteOrder": 1826, - "time": 0.32220455749867516, + "time": 0.3222045574986751, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1874, - "time": 0.3306836248012719, + "time": 0.33068362480127184, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1970, - "time": 0.3476417594064653, + "noteOrder": 1971, + "time": 0.34764175940646524, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1994, - "time": 0.35188129305776367, + "noteOrder": 1995, + "time": 0.3518812930577636, "position": { "x": 3, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.3645998940116587, "position": { "x": 3, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.3688394276629571, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2162, - "time": 0.3815580286168521, + "noteOrder": 2163, + "time": 0.3815580286168522, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2186, - "time": 0.38579756226815054, + "noteOrder": 2187, + "time": 0.3857975622681505, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.3985161632220456, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.4112347641759407, + "noteOrder": 2331, + "time": 0.4112347641759406, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.4112347641759407, + "noteOrder": 2331, + "time": 0.4112347641759406, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2354, + "noteOrder": 2355, "time": 0.415474297827239, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2378, + "noteOrder": 2379, "time": 0.41971383147853736, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.44939056703762587, + "noteOrder": 2547, + "time": 0.4493905670376258, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.45363010068892423, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.48330683624801274, + "noteOrder": 2739, + "time": 0.4833068362480127, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2762, - "time": 0.4875463698993111, + "noteOrder": 2764, + "time": 0.48754636989931105, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2834, - "time": 0.5002649708532061, + "noteOrder": 2836, + "time": 0.5002649708532062, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2860, "time": 0.5045045045045045, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.534181240063593, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.5384207737148914, + "noteOrder": 3052, + "time": 0.5384207737148913, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3171, + "noteOrder": 3172, "time": 0.5596184419713831, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.5680975092739798, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3268, "time": 0.5765765765765766, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3315, + "noteOrder": 3316, "time": 0.5850556438791733, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.6104928457869635, + "noteOrder": 3460, + "time": 0.6104928457869634, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3507, - "time": 0.6189719130895602, + "noteOrder": 3508, + "time": 0.6189719130895601, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.6613672496025438, + "noteOrder": 3749, + "time": 0.6613672496025437, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.665606783253842, + "noteOrder": 3773, + "time": 0.6656067832538421, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3797, "time": 0.6698463169051404, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3821, "time": 0.6740858505564388, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3939, - "time": 0.6952835188129306, + "noteOrder": 3941, + "time": 0.6952835188129305, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3987, - "time": 0.7037625861155273, + "noteOrder": 3989, + "time": 0.7037625861155272, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4035, - "time": 0.712241653418124, + "noteOrder": 4037, + "time": 0.7122416534181241, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 4085, "time": 0.7207207207207207, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 4277, "time": 0.7546369899311075, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4300, - "time": 0.758876523582406, + "noteOrder": 4301, + "time": 0.7588765235824059, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4324, - "time": 0.7631160572337042, + "noteOrder": 4325, + "time": 0.7631160572337043, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.7715951245363011, + "noteOrder": 4374, + "time": 0.771595124536301, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4420, - "time": 0.7800741918388978, + "noteOrder": 4422, + "time": 0.7800741918388977, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.7885532591414945, + "noteOrder": 4470, + "time": 0.7885532591414943, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.8139904610492846, + "noteOrder": 4614, + "time": 0.8139904610492845, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 4638, "time": 0.8182299947005829, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4756, + "noteOrder": 4758, "time": 0.8394276629570747, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4804, + "noteOrder": 4806, "time": 0.8479067302596714, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4852, + "noteOrder": 4854, "time": 0.8563857975622682, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4876, - "time": 0.8606253312135664, + "noteOrder": 4878, + "time": 0.8606253312135665, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.8648648648648649, + "noteOrder": 4902, + "time": 0.8648648648648648, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4948, - "time": 0.8733439321674615, + "noteOrder": 4950, + "time": 0.8733439321674616, "position": { "x": 6, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 4998, "time": 0.8818229994700583, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.890302066772655, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5068, + "noteOrder": 5070, "time": 0.8945416004239534, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5140, + "noteOrder": 5143, "time": 0.9072602013778485, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5164, - "time": 0.9114997350291468, + "noteOrder": 5167, + "time": 0.9114997350291467, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5239, "time": 0.9242183359830418, "position": { "x": 8, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.9284578696343403, + "noteOrder": 5263, + "time": 0.9284578696343402, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5332, - "time": 0.9411764705882354, + "noteOrder": 5335, + "time": 0.9411764705882353, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5357, + "noteOrder": 5359, "time": 0.9454160042395336, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5429, + "noteOrder": 5431, "time": 0.9581346051934287, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5453, - "time": 0.9623741388447271, + "noteOrder": 5455, + "time": 0.962374138844727, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5465, + "noteOrder": 5467, "time": 0.9644939056703762, "position": { "x": 6, @@ -1576,10 +1576,33 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 481, + "time": 0.08479067302596713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 480, - "time": 0.08479067302596714, + "noteOrder": 505, + "time": 0.08903020667726551, "position": { "x": 7, "y": 0 @@ -1597,11 +1620,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 9, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 505, + "time": 0.08903020667726551, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.09326974032856386, "position": { "x": 7, @@ -1620,12 +1666,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 553, + "time": 0.09750927397986221, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 553, + "time": 0.09750927397986221, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.10174880763116058, + "noteOrder": 577, + "time": 0.10174880763116056, "position": { "x": 7, "y": 0 @@ -1644,11 +1736,11 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 625, - "time": 0.11022787493375728, + "noteOrder": 601, + "time": 0.10598834128245893, "position": { "x": 7, "y": 0 @@ -1662,18 +1754,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 673, - "time": 0.11870694223635402, + "noteOrder": 601, + "time": 0.10598834128245893, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1690,11 +1782,11 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, - "time": 0.1271860095389507, + "noteOrder": 625, + "time": 0.11022787493375728, "position": { "x": 7, "y": 0 @@ -1713,11 +1805,11 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 865, - "time": 0.15262321144674088, + "noteOrder": 649, + "time": 0.11446740858505564, "position": { "x": 7, "y": 0 @@ -1731,16 +1823,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 19, + "lineGroupId": 12, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 649, + "time": 0.11446740858505564, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16958134605193428, + "noteOrder": 673, + "time": 0.11870694223635399, "position": { "x": 7, "y": 0 @@ -1759,13 +1874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, + "lineGroupId": 13, "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653948065712772, + "noteOrder": 697, + "time": 0.12294647588765237, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1782,13 +1897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653948065712772, + "noteOrder": 697, + "time": 0.12294647588765237, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1800,18 +1915,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, + "lineGroupId": 14, "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.20349761526232116, + "noteOrder": 721, + "time": 0.1271860095389507, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1828,13 +1943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, + "lineGroupId": 14, "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, - "time": 0.21197668256491786, + "noteOrder": 745, + "time": 0.13142554319024907, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1851,13 +1966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, + "lineGroupId": 14, "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, - "time": 0.22045574986751457, + "noteOrder": 745, + "time": 0.13142554319024907, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1874,11 +1989,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.22045574986751457, + "noteOrder": 865, + "time": 0.15262321144674085, "position": { "x": 7, "y": 0 @@ -1897,11 +2012,34 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 961, + "time": 0.16958134605193426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1345, - "time": 0.23741388447270803, + "noteOrder": 1057, + "time": 0.18653948065712772, "position": { "x": 5, "y": 0 @@ -1920,13 +2058,1117 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 2, + "lineGroupId": 20, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1057, + "time": 0.18653948065712772, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1153, + "time": 0.20349761526232113, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1202, + "time": 0.21197668256491786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1250, + "time": 0.22045574986751457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1250, + "time": 0.22045574986751457, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1346, + "time": 0.23741388447270798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1394, + "time": 0.24589295177530474, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1418, + "time": 0.2501324854266031, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1538, + "time": 0.2713301536830949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1610, + "time": 0.2840487546369899, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.3052464228934817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1754, + "time": 0.30948595654478006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1754, + "time": 0.30948595654478006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1778, + "time": 0.3137254901960784, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1802, + "time": 0.3179650238473768, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1802, + "time": 0.3179650238473768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2019, + "time": 0.35612082670906203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2067, + "time": 0.3645998940116587, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2115, + "time": 0.37307896131425544, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3815580286168522, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.39003709591944885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2307, + "time": 0.40699523052464226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.4239533651298357, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2427, + "time": 0.4281928987811341, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2427, + "time": 0.4281928987811341, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.4324324324324324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2475, + "time": 0.4366719660837308, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2475, + "time": 0.4366719660837308, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.44091149973502913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4451510333863275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4451510333863275, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.45786963434022254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2619, + "time": 0.4621091679915209, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2619, + "time": 0.4621091679915209, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.4663487016428193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2667, + "time": 0.47058823529411764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2667, + "time": 0.47058823529411764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.47482776894541595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2715, + "time": 0.4790673025967144, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2715, + "time": 0.4790673025967144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.49178590355060947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2836, + "time": 0.5002649708532062, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.5087440381558028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5129835718071012, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5129835718071012, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5172231054583996, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5214626391096979, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5214626391096979, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1393, - "time": 0.24589295177530474, + "noteOrder": 2980, + "time": 0.5257021727609963, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1943,11 +3185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1417, - "time": 0.25013248542660305, + "noteOrder": 3028, + "time": 0.534181240063593, "position": { "x": 6, "y": 0 @@ -1966,13 +3208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, - "time": 0.2713301536830949, + "noteOrder": 3076, + "time": 0.5426603073661898, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1989,13 +3231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, - "time": 0.2840487546369899, + "noteOrder": 3100, + "time": 0.546899841017488, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2012,13 +3254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1729, - "time": 0.30524642289348175, + "noteOrder": 3100, + "time": 0.546899841017488, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2030,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.3137254901960785, + "noteOrder": 3124, + "time": 0.5511393746687864, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2053,18 +3295,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2018, - "time": 0.356120826709062, + "noteOrder": 3148, + "time": 0.5553789083200847, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2081,13 +3323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2066, - "time": 0.3645998940116587, + "noteOrder": 3148, + "time": 0.5553789083200847, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2104,13 +3346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, - "time": 0.37307896131425544, + "noteOrder": 3364, + "time": 0.5935347111817699, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2127,13 +3369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, - "time": 0.3815580286168521, + "noteOrder": 3460, + "time": 0.6104928457869634, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2150,13 +3392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.3900370959194489, + "noteOrder": 3557, + "time": 0.6274509803921569, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2168,18 +3410,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2306, - "time": 0.4069952305246423, + "noteOrder": 3581, + "time": 0.6316905140434552, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2191,18 +3433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2402, - "time": 0.4239533651298357, + "noteOrder": 3581, + "time": 0.6316905140434552, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2219,11 +3461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2450, - "time": 0.43243243243243246, + "noteOrder": 3605, + "time": 0.6359300476947536, "position": { "x": 3, "y": 0 @@ -2242,11 +3484,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.44091149973502913, + "noteOrder": 3629, + "time": 0.640169581346052, "position": { "x": 3, "y": 0 @@ -2260,18 +3502,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.45786963434022254, + "noteOrder": 3629, + "time": 0.640169581346052, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2288,13 +3530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2642, - "time": 0.4663487016428193, + "noteOrder": 3653, + "time": 0.6444091149973502, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2311,13 +3553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2690, - "time": 0.47482776894541606, + "noteOrder": 3677, + "time": 0.6486486486486487, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2329,18 +3571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2786, - "time": 0.49178590355060947, + "noteOrder": 3677, + "time": 0.6486486486486487, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2357,13 +3599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 80, "indexInLine": 1, "isSliding": false, - "noteOrder": 2834, - "time": 0.5002649708532061, + "noteOrder": 3701, + "time": 0.652888182299947, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2375,18 +3617,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, - "time": 0.5087440381558028, + "noteOrder": 3725, + "time": 0.6571277159512453, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2403,13 +3645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2930, - "time": 0.5172231054583996, + "noteOrder": 3725, + "time": 0.6571277159512453, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2421,16 +3663,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, - "time": 0.5257021727609963, + "noteOrder": 4133, + "time": 0.7291997880233174, "position": { "x": 7, "y": 0 @@ -2449,13 +3691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3027, - "time": 0.534181240063593, + "noteOrder": 4157, + "time": 0.7334393216746158, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2472,13 +3714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3075, - "time": 0.5426603073661898, + "noteOrder": 4157, + "time": 0.7334393216746158, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2490,18 +3732,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3123, - "time": 0.5511393746687865, + "noteOrder": 4181, + "time": 0.7376788553259142, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2513,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3363, - "time": 0.5935347111817699, + "noteOrder": 4205, + "time": 0.7419183889772124, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2541,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3459, - "time": 0.6104928457869635, + "noteOrder": 4205, + "time": 0.7419183889772124, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2564,13 +3806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3555, - "time": 0.627450980392157, + "noteOrder": 4229, + "time": 0.7461579226285109, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2582,18 +3824,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3603, - "time": 0.6359300476947536, + "noteOrder": 4253, + "time": 0.7503974562798092, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2610,13 +3852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3651, - "time": 0.6444091149973503, + "noteOrder": 4253, + "time": 0.7503974562798092, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2628,16 +3870,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3699, - "time": 0.652888182299947, + "noteOrder": 4518, + "time": 0.7970323264440912, "position": { "x": 3, "y": 0 @@ -2651,18 +3893,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.7291997880233174, + "noteOrder": 4542, + "time": 0.8012718600953894, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2674,18 +3916,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4180, - "time": 0.7376788553259142, + "noteOrder": 4542, + "time": 0.8012718600953894, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2702,13 +3944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, - "time": 0.7461579226285109, + "noteOrder": 4566, + "time": 0.8055113937466878, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2725,11 +3967,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4516, - "time": 0.7970323264440912, + "noteOrder": 4590, + "time": 0.8097509273979863, "position": { "x": 3, "y": 0 @@ -2743,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, - "time": 0.8055113937466879, + "noteOrder": 4590, + "time": 0.8097509273979863, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2772,10 +4014,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4660, - "time": 0.8224695283518814, + "noteOrder": 4662, + "time": 0.8224695283518813, "position": { "x": 4, "y": 0 @@ -2795,9 +4037,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4708, + "noteOrder": 4710, "time": 0.830948595654478, "position": { "x": 4, @@ -2818,10 +4060,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5092, - "time": 0.8987811340752517, + "noteOrder": 5094, + "time": 0.8987811340752516, "position": { "x": 4, "y": 0 @@ -2841,9 +4083,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5188, + "noteOrder": 5191, "time": 0.9157392686804451, "position": { "x": 4, @@ -2864,9 +4106,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5188, + "noteOrder": 5191, "time": 0.9157392686804451, "position": { "x": 6, @@ -2887,9 +4129,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5284, + "noteOrder": 5287, "time": 0.9326974032856385, "position": { "x": 6, @@ -2910,9 +4152,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5284, + "noteOrder": 5287, "time": 0.9326974032856385, "position": { "x": 8, @@ -2933,10 +4175,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5332, - "time": 0.9411764705882354, + "noteOrder": 5335, + "time": 0.9411764705882353, "position": { "x": 6, "y": 0 @@ -2956,10 +4198,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5381, - "time": 0.9496555378908321, + "noteOrder": 5383, + "time": 0.9496555378908319, "position": { "x": 3, "y": 0 @@ -2979,9 +4221,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5429, + "noteOrder": 5431, "time": 0.9581346051934287, "position": { "x": 4, diff --git a/tracks/BREDLI RUNNING MAN EDITION/info.json b/tracks/BREDLI RUNNING MAN EDITION/info.json index 71517e0c..99b8d7e9 100644 --- a/tracks/BREDLI RUNNING MAN EDITION/info.json +++ b/tracks/BREDLI RUNNING MAN EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "BREDLI RUNNING MAN EDITION", - "SongLength": "120.659592", + "SongLength": "110.706939", "SongAuthorName": "BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Bloody Bounce/260_difficulty_1a.json b/tracks/Bloody Bounce/260_difficulty_1a.json index 02c38ed9..db3ae78a 100644 --- a/tracks/Bloody Bounce/260_difficulty_1a.json +++ b/tracks/Bloody Bounce/260_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 240, - "time": 0.04171011470281544, + "time": 0.04171011470281543, "position": { "x": 3, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.045881126173096975, "position": { "x": 5, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05005213764337852, "position": { "x": 7, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.05422314911366006, "position": { "x": 5, @@ -134,7 +134,7 @@ }, { "noteOrder": 337, - "time": 0.05839416058394161, + "time": 0.058394160583941604, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 361, - "time": 0.06256517205422316, + "time": 0.06256517205422314, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 409, - "time": 0.07090719499478625, + "time": 0.07090719499478623, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 481, - "time": 0.08342022940563087, + "time": 0.08342022940563086, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 505, - "time": 0.0875912408759124, + "time": 0.08759124087591241, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 553, - "time": 0.0959332638164755, + "time": 0.09593326381647549, "position": { "x": 5, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 673, - "time": 0.11678832116788322, + "time": 0.11678832116788321, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 721, - "time": 0.1251303441084463, + "time": 0.12513034410844628, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.1334723670490094, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 817, - "time": 0.1418143899895725, + "noteOrder": 818, + "time": 0.14181438998957246, "position": { "x": 3, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 7, @@ -574,7 +574,7 @@ }, { "noteOrder": 1010, - "time": 0.1751824817518248, + "time": 0.17518248175182483, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1082, - "time": 0.18769551616266947, + "time": 0.18769551616266944, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1106, - "time": 0.191866527632951, + "time": 0.19186652763295098, "position": { "x": 6, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1226, - "time": 0.21272158498435872, + "time": 0.2127215849843587, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1274, - "time": 0.2210636079249218, + "time": 0.22106360792492177, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.22523461939520334, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.22940563086548488, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.23774765380604798, + "noteOrder": 1371, + "time": 0.23774765380604795, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2419186652763295, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.24608967674661106, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1466, - "time": 0.25443169968717416, + "noteOrder": 1467, + "time": 0.2544316996871741, "position": { "x": 8, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2586027111574557, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.26277372262773724, "position": { "x": 8, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.2711157455683003, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27528675703858185, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2794577685088634, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.32116788321167883, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.32533889468196037, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.32950990615224196, + "noteOrder": 1900, + "time": 0.3295099061522419, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3545359749739312, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3587069864442127, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.36287799791449427, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.437956204379562, "position": { "x": 2, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4421272158498436, + "noteOrder": 2549, + "time": 0.44212721584984355, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.44629822732012514, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.4546402502606882, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.45881126173096975, "position": { "x": 8, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.46298227320125135, + "noteOrder": 2669, + "time": 0.4629822732012513, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4880083420229406, + "noteOrder": 2813, + "time": 0.4880083420229405, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2838, "time": 0.4921793534932221, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2860, + "noteOrder": 2862, "time": 0.49635036496350365, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.5046923879040668, + "noteOrder": 2910, + "time": 0.5046923879040667, "position": { "x": 8, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5088633993743483, + "noteOrder": 2934, + "time": 0.5088633993743482, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2957, - "time": 0.5130344108446299, + "noteOrder": 2958, + "time": 0.5130344108446298, "position": { "x": 6, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.5213764337851929, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3030, "time": 0.5255474452554745, "position": { "x": 2, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.529718456725756, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5547445255474452, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5589155370177268, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5630865484880083, "position": { "x": 5, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.575599582898853, + "noteOrder": 3318, + "time": 0.5755995828988529, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3343, "time": 0.5797705943691345, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5922836287799792, + "noteOrder": 3415, + "time": 0.5922836287799791, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3437, - "time": 0.5964546402502607, + "noteOrder": 3439, + "time": 0.5964546402502606, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.6131386861313869, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3583, "time": 0.62148070907195, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4134, + "noteOrder": 4136, "time": 0.7174139728884255, "position": { "x": 2, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7257559958289885, "position": { "x": 2, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4232, "time": 0.7340980187695516, "position": { "x": 2, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4256, "time": 0.7382690302398331, "position": { "x": 2, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4267, + "noteOrder": 4268, "time": 0.7403545359749739, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4280, "time": 0.7424400417101147, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4291, + "noteOrder": 4292, "time": 0.7445255474452556, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4303, + "noteOrder": 4304, "time": 0.7466110531803962, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.7549530761209593, "position": { "x": 5, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4401, "time": 0.7632950990615224, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4521, "time": 0.7841501564129301, "position": { "x": 8, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7924921793534933, + "noteOrder": 4569, + "time": 0.7924921793534931, "position": { "x": 8, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4617, "time": 0.8008342022940563, "position": { "x": 8, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8050052137643379, "position": { "x": 8, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4651, + "noteOrder": 4653, "time": 0.8070907194994786, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4665, "time": 0.8091762252346194, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4675, + "noteOrder": 4677, "time": 0.8112617309697602, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.813347236704901, + "noteOrder": 4689, + "time": 0.8133472367049009, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4928, + "noteOrder": 4930, "time": 0.8550573514077163, "position": { "x": 5, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.859228362877998, + "noteOrder": 4954, + "time": 0.8592283628779979, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.8633993743482795, + "noteOrder": 4978, + "time": 0.8633993743482794, "position": { "x": 7, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5120, + "noteOrder": 5122, "time": 0.8884254431699687, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.8925964546402503, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5170, "time": 0.8967674661105318, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9176225234619395, "position": { "x": 2, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5300, - "time": 0.9197080291970804, + "noteOrder": 5302, + "time": 0.9197080291970803, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.921793534932221, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5324, + "noteOrder": 5326, "time": 0.9238790406673618, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.9259645464025027, + "noteOrder": 5338, + "time": 0.9259645464025026, "position": { "x": 2, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5348, + "noteOrder": 5350, "time": 0.9280500521376435, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.9301355578727841, "position": { "x": 6, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241918, "position": { "x": 8, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5492, - "time": 0.9530761209593326, + "noteOrder": 5495, + "time": 0.9530761209593327, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5504, - "time": 0.9551616266944735, + "noteOrder": 5507, + "time": 0.9551616266944734, "position": { "x": 4, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5517, + "noteOrder": 5519, "time": 0.9572471324296142, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5529, + "noteOrder": 5531, "time": 0.9593326381647549, "position": { "x": 8, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5541, + "noteOrder": 5543, "time": 0.9614181438998958, "position": { "x": 6, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5553, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5565, + "noteOrder": 5567, "time": 0.9655891553701773, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5577, + "noteOrder": 5579, "time": 0.967674661105318, "position": { "x": 8, @@ -2396,10 +2396,10 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16684045881126175, + "noteOrder": 962, + "time": 0.16684045881126172, "position": { "x": 8, "y": 0 @@ -2419,7 +2419,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, "time": 0.1835245046923879, @@ -2442,7 +2442,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, "time": 0.1835245046923879, @@ -2465,7 +2465,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1154, "time": 0.20020855057351408, @@ -2488,7 +2488,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, "time": 0.20020855057351408, @@ -2511,7 +2511,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1250, "time": 0.21689259645464024, @@ -2534,7 +2534,7 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, "time": 0.21689259645464024, @@ -2557,10 +2557,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1346, - "time": 0.23357664233576644, + "noteOrder": 1347, + "time": 0.23357664233576642, "position": { "x": 6, "y": 0 @@ -2580,10 +2580,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.23357664233576644, + "noteOrder": 1347, + "time": 0.23357664233576642, "position": { "x": 8, "y": 0 @@ -2603,10 +2603,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.23774765380604798, + "noteOrder": 1371, + "time": 0.23774765380604795, "position": { "x": 6, "y": 0 @@ -2626,9 +2626,9 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2419186652763295, "position": { "x": 8, @@ -2649,9 +2649,9 @@ }, { "lineGroupId": 49, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.24608967674661106, "position": { "x": 6, @@ -2672,10 +2672,10 @@ }, { "lineGroupId": 49, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1442, - "time": 0.2502606882168926, + "noteOrder": 1443, + "time": 0.25026068821689257, "position": { "x": 8, "y": 0 @@ -2695,10 +2695,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2502606882168926, + "noteOrder": 1443, + "time": 0.25026068821689257, "position": { "x": 5, "y": 0 @@ -2718,10 +2718,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.25443169968717416, + "noteOrder": 1467, + "time": 0.2544316996871741, "position": { "x": 7, "y": 0 @@ -2741,9 +2741,9 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2586027111574557, "position": { "x": 5, @@ -2764,9 +2764,9 @@ }, { "lineGroupId": 53, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.26277372262773724, "position": { "x": 7, @@ -2787,9 +2787,9 @@ }, { "lineGroupId": 53, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 5, @@ -2810,7 +2810,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1731, "time": 0.3003128258602711, @@ -2832,11 +2832,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1755, - "time": 0.3044838373305526, + "noteOrder": 1743, + "time": 0.30239833159541185, "position": { "x": 2, "y": 0 @@ -2850,18 +2850,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1779, - "time": 0.3086548488008342, + "noteOrder": 1743, + "time": 0.30239833159541185, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2878,13 +2878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1803, - "time": 0.31282586027111575, + "noteOrder": 1755, + "time": 0.3044838373305527, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2896,18 +2896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1827, - "time": 0.3169968717413973, + "noteOrder": 1755, + "time": 0.3044838373305527, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2924,13 +2924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, - "time": 0.3336809176225235, + "noteOrder": 1755, + "time": 0.3044838373305527, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2942,18 +2942,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.3336809176225235, + "noteOrder": 1767, + "time": 0.30656934306569344, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2970,13 +2970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1947, - "time": 0.33785192909280504, + "noteOrder": 1767, + "time": 0.30656934306569344, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2988,18 +2988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1971, - "time": 0.3420229405630865, + "noteOrder": 1779, + "time": 0.3086548488008342, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3016,13 +3016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1995, - "time": 0.34619395203336806, + "noteOrder": 1779, + "time": 0.3086548488008342, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3034,18 +3034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.3503649635036496, + "noteOrder": 1779, + "time": 0.3086548488008342, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3057,18 +3057,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.3670490093847758, + "noteOrder": 1792, + "time": 0.310740354535975, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3080,18 +3080,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2115, - "time": 0.3670490093847758, + "noteOrder": 1792, + "time": 0.310740354535975, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3108,13 +3108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2139, - "time": 0.37122002085505734, + "noteOrder": 1804, + "time": 0.31282586027111575, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3126,18 +3126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2163, - "time": 0.37539103232533894, + "noteOrder": 1804, + "time": 0.31282586027111575, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3154,11 +3154,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.3795620437956205, + "noteOrder": 1804, + "time": 0.31282586027111575, "position": { "x": 2, "y": 0 @@ -3177,13 +3177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 3, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.3879040667361835, + "noteOrder": 1816, + "time": 0.3149113660062565, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3200,13 +3200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 4, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.39207507820646503, + "noteOrder": 1816, + "time": 0.3149113660062565, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3223,13 +3223,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 5, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2284, - "time": 0.3962460896767466, + "noteOrder": 1828, + "time": 0.3169968717413973, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3246,13 +3246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2211, - "time": 0.383733055265902, + "noteOrder": 1828, + "time": 0.3169968717413973, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3264,16 +3264,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 2235, - "time": 0.3879040667361835, + "noteOrder": 1828, + "time": 0.3169968717413973, "position": { "x": 2, "y": 0 @@ -3292,13 +3292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 69, "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.39207507820646503, + "noteOrder": 1924, + "time": 0.33368091762252344, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3315,13 +3315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 3, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.3962460896767466, + "noteOrder": 1924, + "time": 0.33368091762252344, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3333,16 +3333,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, - "time": 0.40041710114702816, + "noteOrder": 1936, + "time": 0.3357664233576642, "position": { "x": 8, "y": 0 @@ -3361,13 +3361,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2332, - "time": 0.4045881126173097, + "noteOrder": 1936, + "time": 0.3357664233576642, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3379,18 +3379,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2356, - "time": 0.40875912408759124, + "noteOrder": 1948, + "time": 0.337851929092805, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3407,13 +3407,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2380, - "time": 0.4129301355578728, + "noteOrder": 1948, + "time": 0.337851929092805, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3425,18 +3425,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 3, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2428, - "time": 0.4212721584984359, + "noteOrder": 1948, + "time": 0.337851929092805, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3453,13 +3453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 4, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 1960, + "time": 0.33993743482794575, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3476,13 +3476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 5, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2476, - "time": 0.429614181438999, + "noteOrder": 1960, + "time": 0.33993743482794575, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3499,13 +3499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2404, - "time": 0.4171011470281543, + "noteOrder": 1972, + "time": 0.3420229405630865, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3517,18 +3517,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2428, - "time": 0.4212721584984359, + "noteOrder": 1972, + "time": 0.3420229405630865, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3540,18 +3540,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 2, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 1972, + "time": 0.3420229405630865, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3568,13 +3568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 3, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.429614181438999, + "noteOrder": 1984, + "time": 0.3441084462982273, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3591,13 +3591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.43378519290928047, + "noteOrder": 1984, + "time": 0.3441084462982273, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3614,13 +3614,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2524, - "time": 0.437956204379562, + "noteOrder": 1996, + "time": 0.34619395203336806, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3637,13 +3637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 2, + "lineGroupId": 75, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2596, - "time": 0.4504692387904067, + "noteOrder": 1996, + "time": 0.34619395203336806, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3660,13 +3660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.4504692387904067, + "noteOrder": 1996, + "time": 0.34619395203336806, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3683,13 +3683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.4671532846715329, + "noteOrder": 2008, + "time": 0.3482794577685088, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3706,13 +3706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.4671532846715329, + "noteOrder": 2008, + "time": 0.3482794577685088, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3724,18 +3724,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2716, - "time": 0.4713242961418144, + "noteOrder": 2020, + "time": 0.35036496350364965, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3752,13 +3752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2740, - "time": 0.47549530761209596, + "noteOrder": 2020, + "time": 0.35036496350364965, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3770,16 +3770,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2764, - "time": 0.47966631908237745, + "noteOrder": 2020, + "time": 0.35036496350364965, "position": { "x": 8, "y": 0 @@ -3793,18 +3793,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2788, - "time": 0.483837330552659, + "noteOrder": 2116, + "time": 0.3670490093847758, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3821,13 +3821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 2812, - "time": 0.4880083420229406, + "noteOrder": 2116, + "time": 0.3670490093847758, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3839,18 +3839,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 81, "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.4921793534932221, + "noteOrder": 2128, + "time": 0.3691345151199166, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3862,18 +3862,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 81, "indexInLine": 3, "isSliding": false, - "noteOrder": 2860, - "time": 0.49635036496350365, + "noteOrder": 2128, + "time": 0.3691345151199166, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3885,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2884, - "time": 0.5005213764337852, + "noteOrder": 2140, + "time": 0.37122002085505734, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3913,13 +3913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2908, - "time": 0.5046923879040668, + "noteOrder": 2140, + "time": 0.37122002085505734, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3936,13 +3936,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 2, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.5172054223149114, + "noteOrder": 2140, + "time": 0.37122002085505734, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3954,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2981, - "time": 0.5172054223149114, + "noteOrder": 2152, + "time": 0.3733055265901981, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3982,13 +3982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.5338894681960376, + "noteOrder": 2152, + "time": 0.3733055265901981, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4005,13 +4005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3077, - "time": 0.5338894681960376, + "noteOrder": 2164, + "time": 0.3753910323253389, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4023,18 +4023,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3101, - "time": 0.5380604796663191, + "noteOrder": 2164, + "time": 0.3753910323253389, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4051,11 +4051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, - "time": 0.5422314911366006, + "noteOrder": 2164, + "time": 0.3753910323253389, "position": { "x": 2, "y": 0 @@ -4074,11 +4074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, - "time": 0.5464025026068822, + "noteOrder": 2176, + "time": 0.37747653806047965, "position": { "x": 2, "y": 0 @@ -4092,18 +4092,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3173, - "time": 0.5505735140771637, + "noteOrder": 2176, + "time": 0.37747653806047965, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4120,13 +4120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3197, - "time": 0.5547445255474452, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4143,13 +4143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3221, - "time": 0.5589155370177268, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4166,13 +4166,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 3, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3245, - "time": 0.5630865484880083, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4184,18 +4184,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.6339937434827946, + "noteOrder": 2200, + "time": 0.3816475495307612, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4212,13 +4212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3678, - "time": 0.6381647549530761, + "noteOrder": 2200, + "time": 0.3816475495307612, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4235,13 +4235,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3702, - "time": 0.6423357664233577, + "noteOrder": 2212, + "time": 0.38373305526590196, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4253,18 +4253,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3726, - "time": 0.6465067778936392, + "noteOrder": 2212, + "time": 0.38373305526590196, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4276,18 +4276,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3750, - "time": 0.6506777893639207, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4304,11 +4304,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3774, - "time": 0.6548488008342023, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { "x": 6, "y": 0 @@ -4327,13 +4327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3798, - "time": 0.6590198123044839, + "noteOrder": 2284, + "time": 0.39624608967674657, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4345,16 +4345,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 3822, - "time": 0.6631908237747653, + "noteOrder": 2212, + "time": 0.38373305526590196, "position": { "x": 2, "y": 0 @@ -4373,13 +4373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.667361835245047, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4391,18 +4391,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3870, - "time": 0.6715328467153284, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4414,18 +4414,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3894, - "time": 0.6757038581856101, + "noteOrder": 2284, + "time": 0.39624608967674657, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4442,13 +4442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 3918, - "time": 0.6798748696558916, + "noteOrder": 2309, + "time": 0.40041710114702816, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4460,18 +4460,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.7007299270072992, + "noteOrder": 2321, + "time": 0.40250260688216893, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4483,18 +4483,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 2321, + "time": 0.40250260688216893, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4511,13 +4511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4086, - "time": 0.7090719499478624, + "noteOrder": 2333, + "time": 0.4045881126173097, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4529,18 +4529,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4110, - "time": 0.7132429614181439, + "noteOrder": 2333, + "time": 0.4045881126173097, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4557,13 +4557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, - "time": 0.7215849843587071, + "noteOrder": 2333, + "time": 0.4045881126173097, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4580,13 +4580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.7299270072992701, + "noteOrder": 2345, + "time": 0.40667361835245047, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4598,18 +4598,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4327, - "time": 0.7507820646506779, + "noteOrder": 2345, + "time": 0.40667361835245047, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4621,18 +4621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 2357, + "time": 0.40875912408759124, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4644,18 +4644,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 2357, + "time": 0.40875912408759124, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4672,13 +4672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.767466110531804, + "noteOrder": 2357, + "time": 0.40875912408759124, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4690,16 +4690,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.767466110531804, + "noteOrder": 2369, + "time": 0.410844629822732, "position": { "x": 8, "y": 0 @@ -4718,13 +4718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4447, - "time": 0.7716371220020856, + "noteOrder": 2369, + "time": 0.410844629822732, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4736,18 +4736,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4471, - "time": 0.775808133472367, + "noteOrder": 2381, + "time": 0.4129301355578728, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4764,13 +4764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4495, - "time": 0.7799791449426486, + "noteOrder": 2381, + "time": 0.4129301355578728, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4782,16 +4782,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4543, - "time": 0.7883211678832117, + "noteOrder": 2381, + "time": 0.4129301355578728, "position": { "x": 8, "y": 0 @@ -4805,16 +4805,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4591, - "time": 0.7966631908237748, + "noteOrder": 2393, + "time": 0.41501564129301355, "position": { "x": 8, "y": 0 @@ -4833,13 +4833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4711, - "time": 0.8175182481751825, + "noteOrder": 2393, + "time": 0.41501564129301355, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4856,11 +4856,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4735, - "time": 0.821689259645464, + "noteOrder": 2405, + "time": 0.4171011470281543, "position": { "x": 7, "y": 0 @@ -4874,18 +4874,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4759, - "time": 0.8258602711157456, + "noteOrder": 2405, + "time": 0.4171011470281543, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4902,13 +4902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4783, - "time": 0.8300312825860271, + "noteOrder": 2429, + "time": 0.42127215849843586, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4920,18 +4920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4807, - "time": 0.8342022940563086, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4948,11 +4948,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4831, - "time": 0.8383733055265902, + "noteOrder": 2477, + "time": 0.42961418143899893, "position": { "x": 2, "y": 0 @@ -4966,18 +4966,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4855, - "time": 0.8425443169968718, + "noteOrder": 2405, + "time": 0.4171011470281543, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4989,18 +4989,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4880, - "time": 0.8467153284671532, + "noteOrder": 2429, + "time": 0.42127215849843586, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5017,13 +5017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4904, - "time": 0.8508863399374349, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5035,18 +5035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5000, - "time": 0.8675703858185609, + "noteOrder": 2477, + "time": 0.42961418143899893, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5058,18 +5058,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5000, - "time": 0.8675703858185609, + "noteOrder": 2501, + "time": 0.43378519290928047, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5086,13 +5086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5024, - "time": 0.8717413972888426, + "noteOrder": 2525, + "time": 0.437956204379562, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5104,18 +5104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5048, - "time": 0.875912408759124, + "noteOrder": 2597, + "time": 0.4504692387904067, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5132,13 +5132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5072, - "time": 0.8800834202294057, + "noteOrder": 2597, + "time": 0.4504692387904067, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5155,13 +5155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5096, - "time": 0.8842544316996872, + "noteOrder": 2693, + "time": 0.46715328467153283, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5173,18 +5173,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9009384775808134, + "noteOrder": 2693, + "time": 0.46715328467153283, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5201,13 +5201,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5192, - "time": 0.9009384775808134, + "noteOrder": 2705, + "time": 0.4692387904066736, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5219,18 +5219,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5216, - "time": 0.905109489051095, + "noteOrder": 2705, + "time": 0.4692387904066736, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5247,13 +5247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5240, - "time": 0.9092805005213764, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5265,18 +5265,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5264, - "time": 0.913451511991658, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5293,11 +5293,11 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.9343065693430658, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { "x": 8, "y": 0 @@ -5311,15 +5311,4523 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.47340980187695514, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.47340980187695514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4754953076120959, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4754953076120959, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4754953076120959, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4775808133472367, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4775808133472367, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2765, + "time": 0.47966631908237745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2765, + "time": 0.47966631908237745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2765, + "time": 0.47966631908237745, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4817518248175182, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4817518248175182, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2789, + "time": 0.483837330552659, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2789, + "time": 0.483837330552659, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.483837330552659, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4880083420229405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2838, + "time": 0.4921793534932221, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2862, + "time": 0.49635036496350365, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5005213764337851, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5046923879040667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5172054223149114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5172054223149114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5338894681960376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5338894681960376, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5359749739311783, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5359749739311783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5380604796663191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5380604796663191, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5380604796663191, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3114, + "time": 0.5401459854014599, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3114, + "time": 0.5401459854014599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5422314911366006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5422314911366006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5422314911366006, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5443169968717414, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5443169968717414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5464025026068822, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5464025026068822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5464025026068822, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5484880083420229, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5484880083420229, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5505735140771637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5505735140771637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5505735140771637, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3198, + "time": 0.5547445255474452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5589155370177268, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5630865484880083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6339937434827946, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6381647549530761, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3703, + "time": 0.6423357664233577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3727, + "time": 0.6465067778936392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6506777893639207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6548488008342023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6590198123044838, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3823, + "time": 0.6631908237747653, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3848, + "time": 0.6673618352450469, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3872, + "time": 0.6715328467153284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.67570385818561, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3920, + "time": 0.6798748696558915, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4040, + "time": 0.7007299270072993, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4052, + "time": 0.7028154327424401, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4052, + "time": 0.7028154327424401, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7049009384775808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7049009384775808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7049009384775808, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7069864442127216, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7069864442127216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4088, + "time": 0.7090719499478624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4088, + "time": 0.7090719499478624, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4088, + "time": 0.7090719499478624, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4100, + "time": 0.7111574556830031, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4100, + "time": 0.7111574556830031, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7132429614181439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7132429614181439, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7132429614181439, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7153284671532847, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7153284671532847, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4136, + "time": 0.7174139728884255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4136, + "time": 0.7174139728884255, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4160, + "time": 0.721584984358707, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4172, + "time": 0.7236704900938478, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4172, + "time": 0.7236704900938478, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4208, + "time": 0.7299270072992701, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4220, + "time": 0.7320125130344108, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4220, + "time": 0.7320125130344108, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7507820646506778, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4377, + "time": 0.7591240875912408, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4377, + "time": 0.7591240875912408, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4425, + "time": 0.7674661105318039, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4425, + "time": 0.7674661105318039, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4437, + "time": 0.7695516162669448, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4437, + "time": 0.7695516162669448, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4449, + "time": 0.7716371220020855, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4449, + "time": 0.7716371220020855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4449, + "time": 0.7716371220020855, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4461, + "time": 0.7737226277372263, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4461, + "time": 0.7737226277372263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4473, + "time": 0.775808133472367, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4473, + "time": 0.775808133472367, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4473, + "time": 0.775808133472367, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4485, + "time": 0.7778936392075079, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4485, + "time": 0.7778936392075079, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7799791449426485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7799791449426485, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7799791449426485, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4509, + "time": 0.7820646506777894, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4509, + "time": 0.7820646506777894, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7841501564129301, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7841501564129301, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4545, + "time": 0.7883211678832116, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4557, + "time": 0.7904066736183525, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4557, + "time": 0.7904066736183525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7966631908237748, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4605, + "time": 0.7987486965589156, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4605, + "time": 0.7987486965589156, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.8175182481751825, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4725, + "time": 0.8196037539103233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4725, + "time": 0.8196037539103233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4737, + "time": 0.821689259645464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4749, + "time": 0.8237747653806048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4749, + "time": 0.8237747653806048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8258602711157456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4773, + "time": 0.8279457768508863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4773, + "time": 0.8279457768508863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8300312825860271, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4797, + "time": 0.8321167883211679, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4797, + "time": 0.8321167883211679, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8342022940563086, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4821, + "time": 0.8362877997914495, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4821, + "time": 0.8362877997914495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8383733055265902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8383733055265902, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8383733055265902, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4845, + "time": 0.840458811261731, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4845, + "time": 0.840458811261731, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4857, + "time": 0.8425443169968717, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4857, + "time": 0.8425443169968717, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4857, + "time": 0.8425443169968717, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4870, + "time": 0.8446298227320126, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4870, + "time": 0.8446298227320126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4882, + "time": 0.8467153284671532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4882, + "time": 0.8467153284671532, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4882, + "time": 0.8467153284671532, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4894, + "time": 0.8488008342022941, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4894, + "time": 0.8488008342022941, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4906, + "time": 0.8508863399374348, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4906, + "time": 0.8508863399374348, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4906, + "time": 0.8508863399374348, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5002, + "time": 0.8675703858185609, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5002, + "time": 0.8675703858185609, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5014, + "time": 0.8696558915537018, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5014, + "time": 0.8696558915537018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5026, + "time": 0.8717413972888425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5026, + "time": 0.8717413972888425, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5026, + "time": 0.8717413972888425, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5038, + "time": 0.8738269030239834, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5038, + "time": 0.8738269030239834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5050, + "time": 0.875912408759124, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5050, + "time": 0.875912408759124, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5050, + "time": 0.875912408759124, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5062, + "time": 0.8779979144942649, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5062, + "time": 0.8779979144942649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5074, + "time": 0.8800834202294056, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5074, + "time": 0.8800834202294056, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5074, + "time": 0.8800834202294056, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5086, + "time": 0.8821689259645464, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5086, + "time": 0.8821689259645464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5098, + "time": 0.8842544316996871, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5098, + "time": 0.8842544316996871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5098, + "time": 0.8842544316996871, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5194, + "time": 0.9009384775808134, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5194, + "time": 0.9009384775808134, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5206, + "time": 0.9030239833159541, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5206, + "time": 0.9030239833159541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5218, + "time": 0.9051094890510949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5218, + "time": 0.9051094890510949, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5218, + "time": 0.9051094890510949, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5230, + "time": 0.9071949947862357, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5230, + "time": 0.9071949947862357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5242, + "time": 0.9092805005213764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5242, + "time": 0.9092805005213764, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5242, + "time": 0.9092805005213764, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5254, + "time": 0.9113660062565172, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5254, + "time": 0.9113660062565172, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5266, + "time": 0.913451511991658, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5266, + "time": 0.913451511991658, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5266, + "time": 0.913451511991658, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5278, + "time": 0.9155370177267987, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5278, + "time": 0.9155370177267987, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5290, + "time": 0.9176225234619395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5290, + "time": 0.9176225234619395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5387, + "time": 0.9343065693430657, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5399, + "time": 0.9363920750782065, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5399, + "time": 0.9363920750782065, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5411, + "time": 0.9384775808133472, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5411, + "time": 0.9384775808133472, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5408, + "noteOrder": 5411, "time": 0.9384775808133472, "position": { "x": 8, @@ -5338,12 +9846,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5423, + "time": 0.9405630865484881, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5423, + "time": 0.9405630865484881, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5435, + "time": 0.9426485922836287, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5435, + "time": 0.9426485922836287, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5435, + "time": 0.9426485922836287, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5432, - "time": 0.9426485922836289, + "noteOrder": 5447, + "time": 0.9447340980187696, "position": { "x": 8, "y": 0 @@ -5361,11 +9984,80 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5447, + "time": 0.9447340980187696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5459, + "time": 0.9468196037539103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5459, + "time": 0.9468196037539103, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5456, + "noteOrder": 5459, "time": 0.9468196037539103, "position": { "x": 8, @@ -5383,6 +10075,98 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5471, + "time": 0.9489051094890512, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5471, + "time": 0.9489051094890512, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5483, + "time": 0.9509906152241918, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5483, + "time": 0.9509906152241918, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Bloody Bounce/260_difficulty_1b.json b/tracks/Bloody Bounce/260_difficulty_1b.json index 747aa7f7..6da14397 100644 --- a/tracks/Bloody Bounce/260_difficulty_1b.json +++ b/tracks/Bloody Bounce/260_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 240, - "time": 0.04171011470281544, + "time": 0.04171011470281543, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.05005213764337852, "position": { "x": 6, @@ -74,7 +74,7 @@ }, { "noteOrder": 337, - "time": 0.05839416058394161, + "time": 0.058394160583941604, "position": { "x": 2, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 481, - "time": 0.08342022940563087, + "time": 0.08342022940563086, "position": { "x": 8, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 553, - "time": 0.0959332638164755, + "time": 0.09593326381647549, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 673, - "time": 0.11678832116788322, + "time": 0.11678832116788321, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 721, - "time": 0.1251303441084463, + "time": 0.12513034410844628, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.1334723670490094, "position": { "x": 4, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 817, - "time": 0.1418143899895725, + "noteOrder": 818, + "time": 0.14181438998957246, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 4, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.1543274244004171, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.15849843587069865, "position": { "x": 4, @@ -374,7 +374,7 @@ }, { "noteOrder": 1010, - "time": 0.1751824817518248, + "time": 0.17518248175182483, "position": { "x": 2, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1106, - "time": 0.191866527632951, + "time": 0.19186652763295098, "position": { "x": 8, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.22523461939520334, "position": { "x": 8, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2419186652763295, "position": { "x": 2, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.2502606882168926, + "noteOrder": 1443, + "time": 0.25026068821689257, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2586027111574557, "position": { "x": 2, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.2711157455683003, "position": { "x": 8, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27528675703858185, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2794577685088634, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.3420229405630865, "position": { "x": 5, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.3503649635036496, + "noteOrder": 2020, + "time": 0.35036496350364965, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3587069864442127, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.40875912408759124, "position": { "x": 5, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2404, + "noteOrder": 2405, "time": 0.4171011470281543, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4421272158498436, + "noteOrder": 2549, + "time": 0.44212721584984355, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2596, + "noteOrder": 2597, "time": 0.4504692387904067, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.45881126173096975, "position": { "x": 5, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.47549530761209596, + "noteOrder": 2741, + "time": 0.4754953076120959, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2788, + "noteOrder": 2789, "time": 0.483837330552659, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2838, "time": 0.4921793534932221, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5422314911366006, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5505735140771637, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5589155370177268, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.56725755995829, + "noteOrder": 3270, + "time": 0.5672575599582899, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5714285714285714, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.575599582898853, + "noteOrder": 3318, + "time": 0.5755995828988529, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5839416058394161, + "noteOrder": 3367, + "time": 0.583941605839416, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.5881126173096977, + "noteOrder": 3391, + "time": 0.5881126173096975, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5922836287799792, + "noteOrder": 3415, + "time": 0.5922836287799791, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3463, "time": 0.6006256517205422, "position": { "x": 8, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3485, - "time": 0.6047966631908238, + "noteOrder": 3487, + "time": 0.6047966631908237, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.6089676746611052, + "noteOrder": 3511, + "time": 0.6089676746611054, "position": { "x": 8, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.6173096976016684, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3583, "time": 0.62148070907195, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3606, + "noteOrder": 3607, "time": 0.6256517205422315, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3654, + "noteOrder": 3655, "time": 0.6339937434827946, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3679, "time": 0.6381647549530761, "position": { "x": 8, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3702, + "noteOrder": 3703, "time": 0.6423357664233577, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3727, "time": 0.6465067778936392, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3751, "time": 0.6506777893639207, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3775, "time": 0.6548488008342023, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.6590198123044839, + "noteOrder": 3799, + "time": 0.6590198123044838, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3823, "time": 0.6631908237747653, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.667361835245047, + "noteOrder": 3848, + "time": 0.6673618352450469, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3872, "time": 0.6715328467153284, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.6757038581856101, + "noteOrder": 3896, + "time": 0.67570385818561, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.6798748696558916, + "noteOrder": 3920, + "time": 0.6798748696558915, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4088, "time": 0.7090719499478624, "position": { "x": 8, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7132429614181439, "position": { "x": 8, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7215849843587071, + "noteOrder": 4160, + "time": 0.721584984358707, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7257559958289885, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4208, "time": 0.7299270072992701, "position": { "x": 2, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4280, "time": 0.7424400417101147, "position": { "x": 2, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4303, + "noteOrder": 4304, "time": 0.7466110531803962, "position": { "x": 2, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.7549530761209593, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 4377, + "time": 0.7591240875912408, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4401, "time": 0.7632950990615224, "position": { "x": 8, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.7716371220020856, + "noteOrder": 4449, + "time": 0.7716371220020855, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.775808133472367, "position": { "x": 4, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7799791449426486, + "noteOrder": 4497, + "time": 0.7799791449426485, "position": { "x": 3, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4521, "time": 0.7841501564129301, "position": { "x": 2, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4543, - "time": 0.7883211678832117, + "noteOrder": 4545, + "time": 0.7883211678832116, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7924921793534933, + "noteOrder": 4569, + "time": 0.7924921793534931, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.7966631908237748, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8050052137643379, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4665, "time": 0.8091762252346194, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.813347236704901, + "noteOrder": 4689, + "time": 0.8133472367049009, "position": { "x": 7, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4711, + "noteOrder": 4713, "time": 0.8175182481751825, "position": { "x": 8, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.821689259645464, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.8258602711157456, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.8300312825860271, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5048, + "noteOrder": 5050, "time": 0.875912408759124, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5096, - "time": 0.8842544316996872, + "noteOrder": 5098, + "time": 0.8842544316996871, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5120, + "noteOrder": 5122, "time": 0.8884254431699687, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.8925964546402503, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5170, "time": 0.8967674661105318, "position": { "x": 8, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5432, - "time": 0.9426485922836289, + "noteOrder": 5435, + "time": 0.9426485922836287, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241918, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5504, - "time": 0.9551616266944735, + "noteOrder": 5507, + "time": 0.9551616266944734, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5529, + "noteOrder": 5531, "time": 0.9593326381647549, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5553, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 2, "y": 0 @@ -2056,10 +2056,10 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16684045881126175, + "noteOrder": 962, + "time": 0.16684045881126172, "position": { "x": 7, "y": 0 @@ -2079,10 +2079,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1010, - "time": 0.1751824817518248, + "time": 0.17518248175182483, "position": { "x": 5, "y": 0 @@ -2102,7 +2102,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, "time": 0.1835245046923879, @@ -2125,10 +2125,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1106, - "time": 0.191866527632951, + "time": 0.19186652763295098, "position": { "x": 5, "y": 0 @@ -2148,7 +2148,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, "time": 0.20020855057351408, @@ -2171,7 +2171,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1202, "time": 0.20855057351407716, @@ -2194,7 +2194,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, "time": 0.21689259645464024, @@ -2217,9 +2217,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.22523461939520334, "position": { "x": 5, @@ -2240,10 +2240,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.23357664233576644, + "noteOrder": 1347, + "time": 0.23357664233576642, "position": { "x": 7, "y": 0 @@ -2263,9 +2263,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2419186652763295, "position": { "x": 5, @@ -2286,10 +2286,10 @@ }, { "lineGroupId": 27, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1442, - "time": 0.2502606882168926, + "noteOrder": 1443, + "time": 0.25026068821689257, "position": { "x": 7, "y": 0 @@ -2309,9 +2309,9 @@ }, { "lineGroupId": 27, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.2586027111574557, "position": { "x": 5, @@ -2332,9 +2332,9 @@ }, { "lineGroupId": 27, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 7, @@ -2355,7 +2355,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1731, "time": 0.3003128258602711, @@ -2377,11 +2377,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3086548488008342, + "noteOrder": 1755, + "time": 0.3044838373305527, "position": { "x": 8, "y": 0 @@ -2395,18 +2395,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.3169968717413973, + "noteOrder": 1755, + "time": 0.3044838373305527, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2423,11 +2423,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1875, - "time": 0.32533889468196037, + "noteOrder": 1779, + "time": 0.3086548488008342, "position": { "x": 8, "y": 0 @@ -2446,11 +2446,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.3336809176225235, + "noteOrder": 1804, + "time": 0.31282586027111575, "position": { "x": 8, "y": 0 @@ -2464,41 +2464,18 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 40, - "indexInLine": 1, - "isSliding": false, - "noteOrder": 2067, - "time": 0.3587069864442127, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2115, - "time": 0.3670490093847758, + "noteOrder": 1804, + "time": 0.31282586027111575, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2515,13 +2492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.37539103232533894, + "noteOrder": 1828, + "time": 0.3169968717413973, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2538,13 +2515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.383733055265902, + "noteOrder": 1852, + "time": 0.32116788321167883, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2556,18 +2533,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.39207507820646503, + "noteOrder": 1852, + "time": 0.32116788321167883, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2584,13 +2561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.40041710114702816, + "noteOrder": 1876, + "time": 0.32533889468196037, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2607,13 +2584,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 1900, + "time": 0.3295099061522419, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2630,11 +2607,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.43378519290928047, + "noteOrder": 1900, + "time": 0.3295099061522419, "position": { "x": 6, "y": 0 @@ -2653,13 +2630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.45881126173096975, + "noteOrder": 1924, + "time": 0.33368091762252344, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2671,16 +2648,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.4671532846715329, + "noteOrder": 2068, + "time": 0.3587069864442127, "position": { "x": 4, "y": 0 @@ -2699,13 +2676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 2836, - "time": 0.4921793534932221, + "noteOrder": 2116, + "time": 0.3670490093847758, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2717,18 +2694,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.5005213764337852, + "noteOrder": 2140, + "time": 0.37122002085505734, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2740,18 +2717,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2933, - "time": 0.5088633993743483, + "noteOrder": 2140, + "time": 0.37122002085505734, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2768,13 +2745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.5172054223149114, + "noteOrder": 2164, + "time": 0.3753910323253389, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2791,13 +2768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3029, - "time": 0.5255474452554745, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2809,18 +2786,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.5338894681960376, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2837,13 +2814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, - "time": 0.5422314911366006, + "noteOrder": 2212, + "time": 0.38373305526590196, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2855,18 +2832,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 46, "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.5505735140771637, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2878,18 +2855,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 46, "indexInLine": 3, "isSliding": false, - "noteOrder": 3221, - "time": 0.5589155370177268, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2901,18 +2878,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4038, - "time": 0.7007299270072992, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2929,13 +2906,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 2284, + "time": 0.39624608967674657, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2947,18 +2924,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4134, - "time": 0.7174139728884255, + "noteOrder": 2284, + "time": 0.39624608967674657, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2975,13 +2952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 4206, - "time": 0.7299270072992701, + "noteOrder": 2309, + "time": 0.40041710114702816, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2993,18 +2970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4231, - "time": 0.7340980187695516, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3021,13 +2998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4255, - "time": 0.7382690302398331, + "noteOrder": 2501, + "time": 0.43378519290928047, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3039,18 +3016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.7507820646506779, + "noteOrder": 2645, + "time": 0.45881126173096975, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3067,13 +3044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 4399, - "time": 0.7632950990615224, + "noteOrder": 2693, + "time": 0.46715328467153283, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3085,18 +3062,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.767466110531804, + "noteOrder": 2838, + "time": 0.4921793534932221, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3113,13 +3090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.7841501564129301, + "noteOrder": 2886, + "time": 0.5005213764337851, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3136,13 +3113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 60, "indexInLine": 2, "isSliding": false, - "noteOrder": 4591, - "time": 0.7966631908237748, + "noteOrder": 2910, + "time": 0.5046923879040667, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3159,13 +3136,1163 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4615, + "noteOrder": 2910, + "time": 0.5046923879040667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5088633993743482, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5130344108446298, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5130344108446298, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5172054223149114, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3006, + "time": 0.5213764337851929, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3006, + "time": 0.5213764337851929, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5255474452554745, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3054, + "time": 0.529718456725756, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3054, + "time": 0.529718456725756, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5338894681960376, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5422314911366006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5505735140771637, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5589155370177268, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4040, + "time": 0.7007299270072993, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4052, + "time": 0.7028154327424401, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4052, + "time": 0.7028154327424401, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7049009384775808, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7069864442127216, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7069864442127216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4136, + "time": 0.7174139728884255, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.7299270072992701, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7340980187695516, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4244, + "time": 0.7361835245046924, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4244, + "time": 0.7361835245046924, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4256, + "time": 0.7382690302398331, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4268, + "time": 0.7403545359749739, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4268, + "time": 0.7403545359749739, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7507820646506778, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4401, + "time": 0.7632950990615224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4425, + "time": 0.7674661105318039, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7841501564129301, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7966631908237748, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4617, "time": 0.8008342022940563, "position": { - "x": 3, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4713, + "time": 0.8175182481751825, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8300312825860271, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8342022940563086, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8383733055265902, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8383733055265902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4857, + "time": 0.8425443169968717, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4882, + "time": 0.8467153284671532, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4882, + "time": 0.8467153284671532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4906, + "time": 0.8508863399374348, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4918, + "time": 0.8529718456725757, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4918, + "time": 0.8529718456725757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4930, + "time": 0.8550573514077163, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4942, + "time": 0.8571428571428572, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4942, + "time": 0.8571428571428572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4954, + "time": 0.8592283628779979, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4966, + "time": 0.8613138686131387, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4966, + "time": 0.8613138686131387, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3182,13 +4309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 4711, - "time": 0.8175182481751825, + "noteOrder": 4978, + "time": 0.8633993743482794, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3200,16 +4327,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 130, "indexInLine": 2, "isSliding": false, - "noteOrder": 4783, - "time": 0.8300312825860271, + "noteOrder": 4990, + "time": 0.8654848800834203, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4990, + "time": 0.8654848800834203, "position": { "x": 4, "y": 0 @@ -3223,16 +4373,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.8342022940563086, + "noteOrder": 5002, + "time": 0.8675703858185609, "position": { "x": 2, "y": 0 @@ -3251,13 +4401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8425443169968718, + "noteOrder": 5098, + "time": 0.8842544316996871, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3269,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4904, - "time": 0.8508863399374349, + "noteOrder": 5170, + "time": 0.8967674661105318, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3297,13 +4447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4928, - "time": 0.8550573514077163, + "noteOrder": 5194, + "time": 0.9009384775808134, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3320,13 +4470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4952, - "time": 0.859228362877998, + "noteOrder": 5218, + "time": 0.9051094890510949, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3338,18 +4488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4976, - "time": 0.8633993743482795, + "noteOrder": 5218, + "time": 0.9051094890510949, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3366,13 +4516,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5000, - "time": 0.8675703858185609, + "noteOrder": 5242, + "time": 0.9092805005213764, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3389,13 +4539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5096, - "time": 0.8842544316996872, + "noteOrder": 5266, + "time": 0.913451511991658, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3412,11 +4562,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 2, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5168, - "time": 0.8967674661105318, + "noteOrder": 5266, + "time": 0.913451511991658, "position": { "x": 6, "y": 0 @@ -3435,11 +4585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9009384775808134, + "noteOrder": 5290, + "time": 0.9176225234619395, "position": { "x": 8, "y": 0 @@ -3458,11 +4608,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5240, - "time": 0.9092805005213764, + "noteOrder": 5302, + "time": 0.9197080291970803, "position": { "x": 8, "y": 0 @@ -3476,18 +4626,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5288, - "time": 0.9176225234619395, + "noteOrder": 5302, + "time": 0.9197080291970803, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3505,9 +4655,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.921793534932221, "position": { "x": 8, @@ -3526,12 +4676,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5326, + "time": 0.9238790406673618, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5326, + "time": 0.9238790406673618, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5338, + "time": 0.9259645464025026, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5336, - "time": 0.9259645464025027, + "noteOrder": 5350, + "time": 0.9280500521376435, "position": { "x": 8, "y": 0 @@ -3549,11 +4768,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5350, + "time": 0.9280500521376435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.9301355578727841, "position": { "x": 8, @@ -3572,12 +4814,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5375, + "time": 0.932221063607925, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5375, + "time": 0.932221063607925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.9343065693430658, + "noteOrder": 5387, + "time": 0.9343065693430657, "position": { "x": 8, "y": 0 @@ -3597,10 +4885,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241918, "position": { "x": 6, "y": 0 @@ -3620,10 +4908,10 @@ }, { "lineGroupId": 143, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5553, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 4, "y": 0 diff --git a/tracks/Bloody Bounce/info.json b/tracks/Bloody Bounce/info.json index e309f902..73568135 100644 --- a/tracks/Bloody Bounce/info.json +++ b/tracks/Bloody Bounce/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Bloody Bounce", - "SongLength": "124.342857", + "SongLength": "114.390204", "SongAuthorName": "Alicemetix", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Brand New Step/307_difficulty_1a.json b/tracks/Brand New Step/307_difficulty_1a.json index 610a408d..c49a4758 100644 --- a/tracks/Brand New Step/307_difficulty_1a.json +++ b/tracks/Brand New Step/307_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 121, - "time": 0.020855057351407715, + "time": 0.02085505735140772, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.025026068821689257, + "time": 0.02502606882168926, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 217, - "time": 0.037539103232533885, + "time": 0.03753910323253389, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 241, - "time": 0.04171011470281543, + "time": 0.04171011470281544, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 290, - "time": 0.050052137643378514, + "time": 0.05005213764337852, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 362, - "time": 0.06256517205422314, + "time": 0.06256517205422316, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 410, - "time": 0.07090719499478625, + "time": 0.07090719499478623, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 410, - "time": 0.07090719499478625, + "time": 0.07090719499478623, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 434, - "time": 0.07507820646506777, + "noteOrder": 435, + "time": 0.07507820646506778, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 434, - "time": 0.07507820646506777, + "noteOrder": 435, + "time": 0.07507820646506778, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 579, - "time": 0.10010427528675703, + "time": 0.10010427528675704, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 603, + "noteOrder": 604, "time": 0.10427528675703858, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 628, "time": 0.10844629822732012, "position": { "x": 3, @@ -494,7 +494,7 @@ }, { "noteOrder": 724, - "time": 0.12513034410844628, + "time": 0.1251303441084463, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 773, "time": 0.1334723670490094, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 773, "time": 0.1334723670490094, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 797, "time": 0.13764337851929093, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 797, "time": 0.13764337851929093, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 821, - "time": 0.1418143899895725, + "time": 0.14181438998957246, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 821, - "time": 0.1418143899895725, + "time": 0.14181438998957246, "position": { "x": 4, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 845, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 845, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 893, - "time": 0.15432742440041708, + "time": 0.1543274244004171, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 941, - "time": 0.16266944734098018, + "noteOrder": 942, + "time": 0.1626694473409802, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 990, "time": 0.17101147028154326, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1135, "time": 0.19603753910323254, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.20020855057351405, + "noteOrder": 1159, + "time": 0.20020855057351408, "position": { "x": 7, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1183, - "time": 0.2043795620437956, + "time": 0.20437956204379562, "position": { "x": 3, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1231, - "time": 0.2127215849843587, + "time": 0.21272158498435872, "position": { "x": 3, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1231, - "time": 0.2127215849843587, + "time": 0.21272158498435872, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1279, - "time": 0.22106360792492177, + "noteOrder": 1280, + "time": 0.2210636079249218, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1304, "time": 0.22523461939520334, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1327, - "time": 0.22940563086548488, + "noteOrder": 1328, + "time": 0.2294056308654849, "position": { "x": 4, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1376, - "time": 0.23774765380604795, + "time": 0.23774765380604798, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1424, - "time": 0.24608967674661106, + "noteOrder": 1425, + "time": 0.24608967674661103, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.2544316996871741, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.26277372262773724, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27528675703858185, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27528675703858185, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1617, + "noteOrder": 1618, "time": 0.2794577685088634, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1617, + "noteOrder": 1618, "time": 0.2794577685088634, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1665, - "time": 0.2877997914494265, + "noteOrder": 1666, + "time": 0.28779979144942647, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1762, + "noteOrder": 1763, "time": 0.3044838373305526, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1835, "time": 0.3169968717413973, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.32116788321167883, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.32533889468196037, + "noteOrder": 1883, + "time": 0.3253388946819604, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.32533889468196037, + "noteOrder": 1883, + "time": 0.3253388946819604, "position": { "x": 6, "y": 0 @@ -1374,7 +1374,7 @@ }, { "noteOrder": 1907, - "time": 0.3295099061522419, + "time": 0.32950990615224196, "position": { "x": 7, "y": 0 @@ -1394,7 +1394,7 @@ }, { "noteOrder": 1907, - "time": 0.3295099061522419, + "time": 0.32950990615224196, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2051, + "noteOrder": 2052, "time": 0.3545359749739312, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2148, + "noteOrder": 2149, "time": 0.37122002085505734, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2221, "time": 0.383733055265902, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2244, + "noteOrder": 2245, "time": 0.38790406673618355, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2269, + "noteOrder": 2270, "time": 0.3920750782064651, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2269, + "noteOrder": 2270, "time": 0.3920750782064651, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2293, - "time": 0.3962460896767466, + "noteOrder": 2294, + "time": 0.39624608967674657, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2293, - "time": 0.3962460896767466, + "noteOrder": 2294, + "time": 0.39624608967674657, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2317, - "time": 0.4004171011470281, + "noteOrder": 2318, + "time": 0.40041710114702816, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2341, - "time": 0.40458811261730965, + "noteOrder": 2342, + "time": 0.4045881126173097, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2365, - "time": 0.4087591240875912, + "noteOrder": 2366, + "time": 0.40875912408759124, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2390, "time": 0.4129301355578728, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2390, "time": 0.4129301355578728, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2534, - "time": 0.437956204379562, + "noteOrder": 2535, + "time": 0.43795620437956206, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2558, - "time": 0.44212721584984355, + "noteOrder": 2559, + "time": 0.4421272158498436, "position": { "x": 8, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.44629822732012514, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2631, + "noteOrder": 2632, "time": 0.4546402502606882, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2679, + "noteOrder": 2680, "time": 0.4629822732012513, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2751, - "time": 0.4754953076120959, + "noteOrder": 2752, + "time": 0.47549530761209596, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2775, + "noteOrder": 2777, "time": 0.4796663190823775, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2775, + "noteOrder": 2777, "time": 0.4796663190823775, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2920, - "time": 0.5046923879040667, + "noteOrder": 2921, + "time": 0.5046923879040668, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2946, "time": 0.5088633993743482, "position": { "x": 2, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2968, + "noteOrder": 2970, "time": 0.5130344108446299, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3017, + "noteOrder": 3018, "time": 0.5213764337851929, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3065, + "noteOrder": 3066, "time": 0.529718456725756, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3139, "time": 0.5422314911366006, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3163, "time": 0.5464025026068822, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3163, "time": 0.5464025026068822, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3210, + "noteOrder": 3211, "time": 0.5547445255474452, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3234, + "noteOrder": 3235, "time": 0.5589155370177268, "position": { "x": 2, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3258, + "noteOrder": 3259, "time": 0.5630865484880083, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3306, + "noteOrder": 3308, "time": 0.5714285714285714, "position": { "x": 8, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3331, - "time": 0.575599582898853, + "noteOrder": 3332, + "time": 0.5755995828988529, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3355, - "time": 0.5797705943691345, + "noteOrder": 3356, + "time": 0.5797705943691346, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3403, - "time": 0.5881126173096975, + "noteOrder": 3404, + "time": 0.5881126173096977, "position": { "x": 2, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3451, + "noteOrder": 3453, "time": 0.5964546402502607, "position": { "x": 8, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3499, - "time": 0.6047966631908238, + "noteOrder": 3501, + "time": 0.6047966631908237, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3525, "time": 0.6089676746611052, "position": { "x": 2, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3548, + "noteOrder": 3549, "time": 0.6131386861313869, "position": { "x": 2, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3596, + "noteOrder": 3597, "time": 0.62148070907195, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3620, + "noteOrder": 3622, "time": 0.6256517205422315, "position": { "x": 8, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 3646, "time": 0.629822732012513, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3693, + "noteOrder": 3694, "time": 0.6381647549530761, "position": { "x": 2, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3717, + "noteOrder": 3718, "time": 0.6423357664233577, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3741, + "noteOrder": 3742, "time": 0.6465067778936392, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3789, - "time": 0.6548488008342023, + "noteOrder": 3791, + "time": 0.6548488008342024, "position": { "x": 8, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3837, + "noteOrder": 3839, "time": 0.6631908237747655, "position": { "x": 2, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3861, - "time": 0.6673618352450469, + "noteOrder": 3863, + "time": 0.667361835245047, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3886, - "time": 0.6715328467153285, + "noteOrder": 3887, + "time": 0.6715328467153284, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4006, + "noteOrder": 4008, "time": 0.6923879040667362, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4006, + "noteOrder": 4008, "time": 0.6923879040667362, "position": { "x": 4, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4030, - "time": 0.6965589155370177, + "noteOrder": 4032, + "time": 0.6965589155370178, "position": { "x": 7, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4030, - "time": 0.6965589155370177, + "noteOrder": 4032, + "time": 0.6965589155370178, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4055, + "noteOrder": 4056, "time": 0.7007299270072993, "position": { "x": 7, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4079, - "time": 0.7049009384775807, + "noteOrder": 4080, + "time": 0.7049009384775808, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4103, + "noteOrder": 4105, "time": 0.7090719499478624, "position": { "x": 3, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4127, - "time": 0.7132429614181438, + "noteOrder": 4129, + "time": 0.7132429614181439, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.7215849843587069, + "noteOrder": 4177, + "time": 0.721584984358707, "position": { "x": 8, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4223, - "time": 0.7299270072992701, + "noteOrder": 4225, + "time": 0.7299270072992702, "position": { "x": 2, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4298, "time": 0.7424400417101147, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 4322, "time": 0.7466110531803962, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4346, "time": 0.7507820646506778, "position": { "x": 3, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4356, - "time": 0.7528675703858185, + "noteOrder": 4358, + "time": 0.7528675703858186, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4392, - "time": 0.759124087591241, + "noteOrder": 4394, + "time": 0.7591240875912408, "position": { "x": 3, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4417, - "time": 0.7632950990615224, + "noteOrder": 4418, + "time": 0.7632950990615225, "position": { "x": 4, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4441, + "noteOrder": 4443, "time": 0.767466110531804, "position": { "x": 7, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4465, - "time": 0.7716371220020855, + "noteOrder": 4467, + "time": 0.7716371220020856, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4489, + "noteOrder": 4491, "time": 0.7758081334723671, "position": { "x": 3, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4513, - "time": 0.7799791449426485, + "noteOrder": 4515, + "time": 0.7799791449426486, "position": { "x": 7, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4537, + "noteOrder": 4539, "time": 0.7841501564129302, "position": { "x": 4, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4537, + "noteOrder": 4539, "time": 0.7841501564129302, "position": { "x": 6, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4561, - "time": 0.7883211678832116, + "noteOrder": 4563, + "time": 0.7883211678832117, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4561, - "time": 0.7883211678832116, + "noteOrder": 4563, + "time": 0.7883211678832117, "position": { "x": 3, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4585, - "time": 0.7924921793534933, + "noteOrder": 4587, + "time": 0.7924921793534931, "position": { "x": 6, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4585, - "time": 0.7924921793534933, + "noteOrder": 4587, + "time": 0.7924921793534931, "position": { "x": 4, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4610, - "time": 0.7966631908237748, + "noteOrder": 4612, + "time": 0.7966631908237747, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4610, - "time": 0.7966631908237748, + "noteOrder": 4612, + "time": 0.7966631908237747, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4634, - "time": 0.8008342022940562, + "noteOrder": 4636, + "time": 0.8008342022940563, "position": { "x": 7, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4646, + "noteOrder": 4648, "time": 0.8029197080291971, "position": { "x": 6, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4658, + "noteOrder": 4660, "time": 0.8050052137643379, "position": { "x": 5, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.8091762252346193, + "noteOrder": 4684, + "time": 0.8091762252346194, "position": { "x": 3, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4694, + "noteOrder": 4696, "time": 0.8112617309697602, "position": { "x": 4, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4706, + "noteOrder": 4708, "time": 0.8133472367049009, "position": { "x": 5, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4754, + "noteOrder": 4756, "time": 0.821689259645464, "position": { "x": 7, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4754, + "noteOrder": 4756, "time": 0.821689259645464, "position": { "x": 3, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4781, "time": 0.8258602711157456, "position": { "x": 4, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4781, "time": 0.8258602711157456, "position": { "x": 6, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4805, "time": 0.8300312825860271, "position": { "x": 3, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4805, "time": 0.8300312825860271, "position": { "x": 7, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4947, - "time": 0.8550573514077163, + "noteOrder": 4950, + "time": 0.8550573514077164, "position": { "x": 3, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4996, - "time": 0.8633993743482795, + "noteOrder": 4998, + "time": 0.8633993743482794, "position": { "x": 7, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5044, - "time": 0.8717413972888426, + "noteOrder": 5046, + "time": 0.8717413972888425, "position": { "x": 8, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5068, - "time": 0.875912408759124, + "noteOrder": 5070, + "time": 0.8759124087591241, "position": { "x": 4, "y": 0 @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5092, + "noteOrder": 5094, "time": 0.8800834202294057, "position": { "x": 7, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5213, + "noteOrder": 5215, "time": 0.9009384775808134, "position": { "x": 7, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5261, + "noteOrder": 5263, "time": 0.9092805005213764, "position": { "x": 7, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5285, - "time": 0.9134515119916579, + "noteOrder": 5288, + "time": 0.9134515119916581, "position": { "x": 8, "y": 0 @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5406, + "noteOrder": 5408, "time": 0.9343065693430657, "position": { "x": 7, @@ -3393,7 +3393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9384775808133472, "position": { "x": 3, @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5503, - "time": 0.9509906152241918, + "noteOrder": 5505, + "time": 0.9509906152241919, "position": { "x": 3, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5503, - "time": 0.9509906152241918, + "noteOrder": 5505, + "time": 0.9509906152241919, "position": { "x": 7, "y": 0 @@ -3456,7 +3456,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.016684045881126174, @@ -3479,10 +3479,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, - "time": 0.020855057351407715, + "time": 0.02085505735140772, "position": { "x": 7, "y": 0 @@ -3502,7 +3502,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 169, "time": 0.029197080291970802, @@ -3525,7 +3525,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, "time": 0.03336809176225235, @@ -3548,9 +3548,9 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 265, + "noteOrder": 266, "time": 0.045881126173096975, "position": { "x": 3, @@ -3571,10 +3571,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.050052137643378514, + "time": 0.05005213764337852, "position": { "x": 3, "y": 0 @@ -3594,10 +3594,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.08342022940563086, + "time": 0.08342022940563087, "position": { "x": 3, "y": 0 @@ -3617,7 +3617,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 507, "time": 0.08759124087591241, @@ -3640,7 +3640,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 555, "time": 0.0959332638164755, @@ -3663,10 +3663,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, - "time": 0.10010427528675703, + "time": 0.10010427528675704, "position": { "x": 3, "y": 0 @@ -3686,7 +3686,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 652, "time": 0.11261730969760167, @@ -3709,7 +3709,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 676, "time": 0.11678832116788321, @@ -3732,10 +3732,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, - "time": 0.15015641293013554, + "time": 0.15015641293013557, "position": { "x": 7, "y": 0 @@ -3755,10 +3755,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 965, - "time": 0.16684045881126172, + "noteOrder": 966, + "time": 0.16684045881126175, "position": { "x": 7, "y": 0 @@ -3778,10 +3778,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, - "time": 0.16684045881126172, + "noteOrder": 966, + "time": 0.16684045881126175, "position": { "x": 3, "y": 0 @@ -3801,7 +3801,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1062, "time": 0.1835245046923879, @@ -3824,7 +3824,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1062, "time": 0.1835245046923879, @@ -3847,7 +3847,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1086, "time": 0.18769551616266944, @@ -3870,9 +3870,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1110, + "noteOrder": 1111, "time": 0.191866527632951, "position": { "x": 3, @@ -3893,9 +3893,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1134, + "noteOrder": 1135, "time": 0.19603753910323254, "position": { "x": 3, @@ -3916,7 +3916,7 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1255, "time": 0.21689259645464024, @@ -3939,7 +3939,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1352, "time": 0.23357664233576642, @@ -3962,7 +3962,7 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1352, "time": 0.23357664233576642, @@ -3985,10 +3985,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1448, - "time": 0.25026068821689257, + "noteOrder": 1449, + "time": 0.2502606882168926, "position": { "x": 7, "y": 0 @@ -4008,10 +4008,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1448, - "time": 0.25026068821689257, + "noteOrder": 1449, + "time": 0.2502606882168926, "position": { "x": 3, "y": 0 @@ -4031,9 +4031,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.2544316996871741, "position": { "x": 3, @@ -4054,9 +4054,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.2586027111574557, "position": { "x": 7, @@ -4077,9 +4077,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.26277372262773724, "position": { "x": 7, @@ -4100,10 +4100,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, - "time": 0.283628779979145, + "noteOrder": 1642, + "time": 0.28362877997914493, "position": { "x": 7, "y": 0 @@ -4122,13 +4122,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1689, - "time": 0.291970802919708, + "noteOrder": 1654, + "time": 0.2857142857142857, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4140,18 +4140,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1714, - "time": 0.29614181438998954, + "noteOrder": 1654, + "time": 0.2857142857142857, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4168,13 +4168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1738, - "time": 0.3003128258602711, + "noteOrder": 1666, + "time": 0.28779979144942647, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4186,16 +4186,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1786, - "time": 0.30865484880083416, + "noteOrder": 1666, + "time": 0.28779979144942647, "position": { "x": 7, "y": 0 @@ -4214,13 +4214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1810, - "time": 0.31282586027111575, + "noteOrder": 1690, + "time": 0.29197080291970806, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4237,11 +4237,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1931, - "time": 0.33368091762252344, + "noteOrder": 1702, + "time": 0.29405630865484883, "position": { "x": 3, "y": 0 @@ -4260,13 +4260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1955, - "time": 0.337851929092805, + "noteOrder": 1702, + "time": 0.29405630865484883, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4278,18 +4278,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1979, - "time": 0.3420229405630865, + "noteOrder": 1714, + "time": 0.2961418143899896, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4306,13 +4306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2003, - "time": 0.3461939520333681, + "noteOrder": 1714, + "time": 0.2961418143899896, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4324,16 +4324,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2027, - "time": 0.35036496350364965, + "noteOrder": 1714, + "time": 0.2961418143899896, "position": { "x": 3, "y": 0 @@ -4347,18 +4347,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2076, - "time": 0.3587069864442127, + "noteOrder": 1726, + "time": 0.29822732012513037, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4375,13 +4375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2100, - "time": 0.36287799791449427, + "noteOrder": 1726, + "time": 0.29822732012513037, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4393,18 +4393,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2124, - "time": 0.3670490093847758, + "noteOrder": 1738, + "time": 0.30031282586027114, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4421,13 +4421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2172, - "time": 0.3753910323253389, + "noteOrder": 1738, + "time": 0.30031282586027114, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4439,16 +4439,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2196, - "time": 0.3795620437956205, + "noteOrder": 1738, + "time": 0.30031282586027114, "position": { "x": 3, "y": 0 @@ -4462,18 +4462,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2413, - "time": 0.4171011470281543, + "noteOrder": 1750, + "time": 0.30239833159541185, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4485,18 +4485,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2438, - "time": 0.42127215849843586, + "noteOrder": 1750, + "time": 0.30239833159541185, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4513,13 +4513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2462, - "time": 0.4254431699687174, + "noteOrder": 1763, + "time": 0.3044838373305526, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4531,18 +4531,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2486, - "time": 0.42961418143899893, + "noteOrder": 1763, + "time": 0.3044838373305526, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4559,11 +4559,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2510, - "time": 0.43378519290928047, + "noteOrder": 1787, + "time": 0.3086548488008342, "position": { "x": 7, "y": 0 @@ -4582,11 +4582,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2534, - "time": 0.437956204379562, + "noteOrder": 1799, + "time": 0.310740354535975, "position": { "x": 7, "y": 0 @@ -4605,13 +4605,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2606, - "time": 0.4504692387904067, + "noteOrder": 1799, + "time": 0.310740354535975, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4628,13 +4628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2606, - "time": 0.4504692387904067, + "noteOrder": 1811, + "time": 0.31282586027111575, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4646,18 +4646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2655, - "time": 0.45881126173096975, + "noteOrder": 1811, + "time": 0.31282586027111575, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4674,13 +4674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2703, - "time": 0.46715328467153283, + "noteOrder": 1811, + "time": 0.31282586027111575, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4697,11 +4697,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2727, - "time": 0.47132429614181437, + "noteOrder": 1823, + "time": 0.3149113660062565, "position": { "x": 7, "y": 0 @@ -4715,18 +4715,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2800, - "time": 0.48383733055265904, + "noteOrder": 1823, + "time": 0.3149113660062565, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4743,13 +4743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2824, - "time": 0.4880083420229406, + "noteOrder": 1835, + "time": 0.3169968717413973, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4761,18 +4761,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2848, - "time": 0.4921793534932221, + "noteOrder": 1835, + "time": 0.3169968717413973, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4789,11 +4789,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2872, - "time": 0.49635036496350365, + "noteOrder": 1932, + "time": 0.3336809176225235, "position": { "x": 3, "y": 0 @@ -4807,16 +4807,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2896, - "time": 0.5005213764337851, + "noteOrder": 1944, + "time": 0.3357664233576642, "position": { "x": 3, "y": 0 @@ -4835,13 +4835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2920, - "time": 0.5046923879040667, + "noteOrder": 1944, + "time": 0.3357664233576642, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4858,13 +4858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 2, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2993, - "time": 0.5172054223149114, + "noteOrder": 1956, + "time": 0.337851929092805, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4876,16 +4876,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2993, - "time": 0.5172054223149114, + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1968, + "time": 0.33993743482794575, "position": { "x": 7, "y": 0 @@ -4904,13 +4904,36 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3041, - "time": 0.5255474452554745, + "noteOrder": 1968, + "time": 0.33993743482794575, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1980, + "time": 0.3420229405630865, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4927,11 +4950,57 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3089, - "time": 0.5338894681960376, + "noteOrder": 1992, + "time": 0.34410844629822734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1992, + "time": 0.34410844629822734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2004, + "time": 0.3461939520333681, "position": { "x": 7, "y": 0 @@ -4950,11 +5019,57 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3113, - "time": 0.5380604796663191, + "noteOrder": 2016, + "time": 0.3482794577685089, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2016, + "time": 0.3482794577685089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2028, + "time": 0.35036496350364965, "position": { "x": 3, "y": 0 @@ -4973,11 +5088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3186, - "time": 0.5505735140771637, + "noteOrder": 2040, + "time": 0.3524504692387904, "position": { "x": 3, "y": 0 @@ -4996,11 +5111,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3210, - "time": 0.5547445255474452, + "noteOrder": 2040, + "time": 0.3524504692387904, "position": { "x": 4, "y": 0 @@ -5019,11 +5134,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 2, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3234, - "time": 0.5589155370177268, + "noteOrder": 2052, + "time": 0.3545359749739312, "position": { "x": 4, "y": 0 @@ -5042,13 +5157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 3, + "lineGroupId": 95, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3258, - "time": 0.5630865484880083, + "noteOrder": 2052, + "time": 0.3545359749739312, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5065,13 +5180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3282, - "time": 0.56725755995829, + "noteOrder": 2076, + "time": 0.3587069864442127, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5088,11 +5203,34 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3306, - "time": 0.5714285714285714, + "noteOrder": 2088, + "time": 0.3607924921793535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2088, + "time": 0.3607924921793535, "position": { "x": 6, "y": 0 @@ -5111,13 +5249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 2, + "lineGroupId": 97, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3331, - "time": 0.575599582898853, + "noteOrder": 2101, + "time": 0.3628779979144943, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5134,11 +5272,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 3, + "lineGroupId": 97, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3355, - "time": 0.5797705943691345, + "noteOrder": 2101, + "time": 0.3628779979144943, "position": { "x": 5, "y": 0 @@ -5157,13 +5295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3379, - "time": 0.583941605839416, + "noteOrder": 2101, + "time": 0.3628779979144943, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5180,13 +5318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3403, - "time": 0.5881126173096975, + "noteOrder": 2113, + "time": 0.3649635036496351, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5203,11 +5341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3427, - "time": 0.5922836287799791, + "noteOrder": 2113, + "time": 0.3649635036496351, "position": { "x": 6, "y": 0 @@ -5221,18 +5359,2801 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2125, + "time": 0.3670490093847758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2125, + "time": 0.3670490093847758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3451, - "time": 0.5964546402502607, + "noteOrder": 2125, + "time": 0.3670490093847758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3691345151199166, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3691345151199166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2149, + "time": 0.37122002085505734, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2149, + "time": 0.37122002085505734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2173, + "time": 0.3753910323253389, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2185, + "time": 0.37747653806047965, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2185, + "time": 0.37747653806047965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2197, + "time": 0.3795620437956204, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2197, + "time": 0.3795620437956204, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2197, + "time": 0.3795620437956204, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2209, + "time": 0.38164754953076124, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2209, + "time": 0.38164754953076124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2221, + "time": 0.383733055265902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2221, + "time": 0.383733055265902, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2414, + "time": 0.4171011470281543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2426, + "time": 0.41918665276329514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2426, + "time": 0.41918665276329514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2439, + "time": 0.4212721584984359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2439, + "time": 0.4212721584984359, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2439, + "time": 0.4212721584984359, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2451, + "time": 0.4233576642335767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2451, + "time": 0.4233576642335767, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2463, + "time": 0.42544316996871745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2463, + "time": 0.42544316996871745, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2463, + "time": 0.42544316996871745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2475, + "time": 0.4275286757038582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2475, + "time": 0.4275286757038582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2487, + "time": 0.42961418143899893, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2487, + "time": 0.42961418143899893, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2487, + "time": 0.42961418143899893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2499, + "time": 0.4316996871741397, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2499, + "time": 0.4316996871741397, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2511, + "time": 0.43378519290928047, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2511, + "time": 0.43378519290928047, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2511, + "time": 0.43378519290928047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2535, + "time": 0.43795620437956206, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4504692387904067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4504692387904067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2620, + "time": 0.45255474452554745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2620, + "time": 0.45255474452554745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4546402502606882, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4546402502606882, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2656, + "time": 0.4588112617309698, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4608967674661106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4608967674661106, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2680, + "time": 0.4629822732012513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2680, + "time": 0.4629822732012513, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2704, + "time": 0.46715328467153283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2716, + "time": 0.4692387904066736, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2716, + "time": 0.4692387904066736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2728, + "time": 0.47132429614181437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2740, + "time": 0.47340980187695514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2740, + "time": 0.47340980187695514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2752, + "time": 0.47549530761209596, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2752, + "time": 0.47549530761209596, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2801, + "time": 0.48383733055265904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4859228362877998, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4859228362877998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2825, + "time": 0.4880083420229406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2825, + "time": 0.4880083420229406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2825, + "time": 0.4880083420229406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.49009384775808135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2837, + "time": 0.49009384775808135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2849, + "time": 0.49217935349322206, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2849, + "time": 0.49217935349322206, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2849, + "time": 0.49217935349322206, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2861, + "time": 0.49426485922836294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2861, + "time": 0.49426485922836294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2873, + "time": 0.49635036496350365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2873, + "time": 0.49635036496350365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2873, + "time": 0.49635036496350365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.4984358706986444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2885, + "time": 0.4984358706986444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2897, + "time": 0.5005213764337852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2897, + "time": 0.5005213764337852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2897, + "time": 0.5005213764337852, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2921, + "time": 0.5046923879040668, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2994, + "time": 0.5172054223149114, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2994, + "time": 0.5172054223149114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3006, + "time": 0.5192909280500522, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3006, + "time": 0.5192909280500522, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5213764337851929, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5213764337851929, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3042, + "time": 0.5255474452554745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3054, + "time": 0.5276329509906152, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3054, + "time": 0.5276329509906152, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3066, + "time": 0.529718456725756, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3066, + "time": 0.529718456725756, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5338894681960376, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3103, + "time": 0.5359749739311783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3103, + "time": 0.5359749739311783, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3115, + "time": 0.5380604796663191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5401459854014599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5401459854014599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3139, + "time": 0.5422314911366006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3139, + "time": 0.5422314911366006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5505735140771637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3211, + "time": 0.5547445255474452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3235, + "time": 0.5589155370177268, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3259, + "time": 0.5630865484880083, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5672575599582899, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3308, + "time": 0.5714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5755995828988529, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3356, + "time": 0.5797705943691346, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5839416058394161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3404, + "time": 0.5881126173096977, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3428, + "time": 0.5922836287799792, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3453, + "time": 0.5964546402502607, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3477, + "time": 0.6006256517205423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3501, + "time": 0.6047966631908237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3549, + "time": 0.6131386861313869, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3573, + "time": 0.6173096976016684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3597, + "time": 0.62148070907195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3622, + "time": 0.6256517205422315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3646, + "time": 0.629822732012513, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3670, + "time": 0.6339937434827946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3694, + "time": 0.6381647549530761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3718, + "time": 0.6423357664233577, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3742, + "time": 0.6465067778936392, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5244,18 +8165,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3475, - "time": 0.6006256517205422, + "noteOrder": 3766, + "time": 0.6506777893639208, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5267,18 +8188,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3499, - "time": 0.6047966631908238, + "noteOrder": 3791, + "time": 0.6548488008342024, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5290,16 +8211,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 2, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3548, - "time": 0.6131386861313869, + "noteOrder": 3815, + "time": 0.6590198123044839, "position": { "x": 4, "y": 0 @@ -5318,13 +8239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3572, - "time": 0.6173096976016683, + "noteOrder": 3839, + "time": 0.6631908237747655, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5336,18 +8257,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 3596, - "time": 0.62148070907195, + "noteOrder": 3911, + "time": 0.67570385818561, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5359,18 +8280,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 180, "indexInLine": 2, "isSliding": false, - "noteOrder": 3620, - "time": 0.6256517205422315, + "noteOrder": 3936, + "time": 0.6798748696558915, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5382,18 +8303,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 3, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3644, - "time": 0.629822732012513, + "noteOrder": 3911, + "time": 0.67570385818561, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5410,13 +8331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3668, - "time": 0.6339937434827946, + "noteOrder": 3936, + "time": 0.6798748696558915, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5428,18 +8349,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 183, "indexInLine": 1, "isSliding": false, - "noteOrder": 3693, - "time": 0.6381647549530761, + "noteOrder": 3960, + "time": 0.684045881126173, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5456,13 +8377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 183, "indexInLine": 2, "isSliding": false, - "noteOrder": 3717, - "time": 0.6423357664233577, + "noteOrder": 3984, + "time": 0.6882168925964547, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5479,13 +8400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 3, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3741, - "time": 0.6465067778936392, + "noteOrder": 3960, + "time": 0.684045881126173, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5497,18 +8418,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3765, - "time": 0.6506777893639207, + "noteOrder": 3984, + "time": 0.6882168925964547, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5525,11 +8446,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 3789, - "time": 0.6548488008342023, + "noteOrder": 4153, + "time": 0.7174139728884255, "position": { "x": 6, "y": 0 @@ -5548,13 +8469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3813, - "time": 0.6590198123044838, + "noteOrder": 4177, + "time": 0.721584984358707, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5566,16 +8487,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 3837, - "time": 0.6631908237747655, + "noteOrder": 4201, + "time": 0.7257559958289886, "position": { "x": 4, "y": 0 @@ -5594,11 +8515,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3910, - "time": 0.67570385818561, + "noteOrder": 4225, + "time": 0.7299270072992702, "position": { "x": 4, "y": 0 @@ -5617,13 +8538,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 3934, - "time": 0.6798748696558916, + "noteOrder": 4249, + "time": 0.7340980187695516, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5635,18 +8556,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3910, - "time": 0.67570385818561, + "noteOrder": 4261, + "time": 0.7361835245046924, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5663,11 +8584,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3934, - "time": 0.6798748696558916, + "noteOrder": 4261, + "time": 0.7361835245046924, "position": { "x": 6, "y": 0 @@ -5686,11 +8607,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3958, - "time": 0.684045881126173, + "noteOrder": 4274, + "time": 0.7382690302398331, "position": { "x": 3, "y": 0 @@ -5709,11 +8630,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3982, - "time": 0.6882168925964546, + "noteOrder": 4286, + "time": 0.7403545359749739, "position": { "x": 3, "y": 0 @@ -5732,13 +8653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3958, - "time": 0.684045881126173, + "noteOrder": 4286, + "time": 0.7403545359749739, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5750,18 +8671,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3982, - "time": 0.6882168925964546, + "noteOrder": 4298, + "time": 0.7424400417101147, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5773,18 +8694,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4151, - "time": 0.7174139728884255, + "noteOrder": 4298, + "time": 0.7424400417101147, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5796,18 +8717,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4175, - "time": 0.7215849843587069, + "noteOrder": 4310, + "time": 0.7445255474452556, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5819,16 +8740,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4199, - "time": 0.7257559958289885, + "noteOrder": 4310, + "time": 0.7445255474452556, "position": { "x": 4, "y": 0 @@ -5847,11 +8768,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4223, - "time": 0.7299270072992701, + "noteOrder": 4322, + "time": 0.7466110531803962, "position": { "x": 4, "y": 0 @@ -5869,35 +8790,12 @@ "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 198, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4248, - "time": 0.7340980187695516, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4272, - "time": 0.7382690302398331, + "noteOrder": 4322, + "time": 0.7466110531803962, "position": { "x": 3, "y": 0 @@ -5917,9 +8815,9 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4368, + "noteOrder": 4370, "time": 0.7549530761209593, "position": { "x": 7, @@ -5940,10 +8838,10 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4392, - "time": 0.759124087591241, + "noteOrder": 4394, + "time": 0.7591240875912408, "position": { "x": 7, "y": 0 @@ -5963,9 +8861,9 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4827, + "noteOrder": 4829, "time": 0.8342022940563086, "position": { "x": 4, @@ -5986,10 +8884,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4851, - "time": 0.8383733055265902, + "noteOrder": 4853, + "time": 0.8383733055265903, "position": { "x": 5, "y": 0 @@ -6009,10 +8907,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4851, - "time": 0.8383733055265902, + "noteOrder": 4853, + "time": 0.8383733055265903, "position": { "x": 6, "y": 0 @@ -6032,10 +8930,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.8425443169968717, + "noteOrder": 4877, + "time": 0.8425443169968718, "position": { "x": 5, "y": 0 @@ -6055,10 +8953,10 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4875, - "time": 0.8425443169968717, + "noteOrder": 4877, + "time": 0.8425443169968718, "position": { "x": 4, "y": 0 @@ -6078,10 +8976,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4899, - "time": 0.8467153284671532, + "noteOrder": 4901, + "time": 0.8467153284671534, "position": { "x": 5, "y": 0 @@ -6101,10 +8999,10 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4899, - "time": 0.8467153284671532, + "noteOrder": 4901, + "time": 0.8467153284671534, "position": { "x": 6, "y": 0 @@ -6124,9 +9022,9 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4911, + "noteOrder": 4913, "time": 0.848800834202294, "position": { "x": 5, @@ -6147,10 +9045,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4923, - "time": 0.8508863399374348, + "noteOrder": 4925, + "time": 0.8508863399374349, "position": { "x": 7, "y": 0 @@ -6170,10 +9068,10 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4947, - "time": 0.8550573514077163, + "noteOrder": 4950, + "time": 0.8550573514077164, "position": { "x": 6, "y": 0 @@ -6193,9 +9091,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4972, + "noteOrder": 4974, "time": 0.8592283628779979, "position": { "x": 3, @@ -6216,10 +9114,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4996, - "time": 0.8633993743482795, + "noteOrder": 4998, + "time": 0.8633993743482794, "position": { "x": 4, "y": 0 @@ -6239,9 +9137,9 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5020, + "noteOrder": 5022, "time": 0.8675703858185609, "position": { "x": 6, @@ -6262,10 +9160,10 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5044, - "time": 0.8717413972888426, + "noteOrder": 5046, + "time": 0.8717413972888425, "position": { "x": 6, "y": 0 @@ -6285,10 +9183,10 @@ }, { "lineGroupId": 240, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5068, - "time": 0.875912408759124, + "noteOrder": 5070, + "time": 0.8759124087591241, "position": { "x": 5, "y": 0 @@ -6308,9 +9206,9 @@ }, { "lineGroupId": 240, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5092, + "noteOrder": 5094, "time": 0.8800834202294057, "position": { "x": 5, @@ -6331,10 +9229,10 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5116, - "time": 0.8842544316996871, + "noteOrder": 5119, + "time": 0.8842544316996872, "position": { "x": 6, "y": 0 @@ -6354,9 +9252,9 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.8884254431699687, "position": { "x": 5, @@ -6377,9 +9275,9 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.8884254431699687, "position": { "x": 4, @@ -6400,9 +9298,9 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.8925964546402503, "position": { "x": 5, @@ -6423,9 +9321,9 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.8925964546402503, "position": { "x": 6, @@ -6446,9 +9344,9 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5189, + "noteOrder": 5191, "time": 0.8967674661105318, "position": { "x": 5, @@ -6469,9 +9367,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5189, + "noteOrder": 5191, "time": 0.8967674661105318, "position": { "x": 4, @@ -6492,9 +9390,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5201, + "noteOrder": 5203, "time": 0.8988529718456726, "position": { "x": 5, @@ -6515,10 +9413,10 @@ }, { "lineGroupId": 249, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5237, - "time": 0.9051094890510948, + "noteOrder": 5239, + "time": 0.9051094890510949, "position": { "x": 5, "y": 0 @@ -6538,10 +9436,10 @@ }, { "lineGroupId": 249, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5285, - "time": 0.9134515119916579, + "noteOrder": 5288, + "time": 0.9134515119916581, "position": { "x": 6, "y": 0 @@ -6561,10 +9459,10 @@ }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5309, - "time": 0.9176225234619395, + "noteOrder": 5312, + "time": 0.9176225234619396, "position": { "x": 4, "y": 0 @@ -6584,9 +9482,9 @@ }, { "lineGroupId": 252, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5334, + "noteOrder": 5336, "time": 0.9217935349322212, "position": { "x": 5, @@ -6607,9 +9505,9 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5334, + "noteOrder": 5336, "time": 0.9217935349322212, "position": { "x": 6, @@ -6630,9 +9528,9 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.9259645464025026, "position": { "x": 5, @@ -6653,9 +9551,9 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.9259645464025026, "position": { "x": 4, @@ -6676,9 +9574,9 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.9301355578727841, "position": { "x": 5, @@ -6699,9 +9597,9 @@ }, { "lineGroupId": 255, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.9301355578727841, "position": { "x": 6, @@ -6722,9 +9620,9 @@ }, { "lineGroupId": 255, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5406, + "noteOrder": 5408, "time": 0.9343065693430657, "position": { "x": 6, @@ -6745,9 +9643,9 @@ }, { "lineGroupId": 255, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9384775808133472, "position": { "x": 5, @@ -6768,9 +9666,9 @@ }, { "lineGroupId": 255, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5454, + "noteOrder": 5457, "time": 0.9426485922836287, "position": { "x": 5, @@ -6791,9 +9689,9 @@ }, { "lineGroupId": 255, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5478, + "noteOrder": 5481, "time": 0.9468196037539103, "position": { "x": 4, diff --git a/tracks/Brand New Step/307_difficulty_1b.json b/tracks/Brand New Step/307_difficulty_1b.json index 47fda095..09e753b5 100644 --- a/tracks/Brand New Step/307_difficulty_1b.json +++ b/tracks/Brand New Step/307_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 145, - "time": 0.025026068821689257, + "time": 0.02502606882168926, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 290, - "time": 0.050052137643378514, + "time": 0.05005213764337852, "position": { "x": 5, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 434, - "time": 0.07507820646506777, + "noteOrder": 435, + "time": 0.07507820646506778, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 434, - "time": 0.07507820646506777, + "noteOrder": 435, + "time": 0.07507820646506778, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 579, - "time": 0.10010427528675703, + "time": 0.10010427528675704, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 773, "time": 0.1334723670490094, "position": { "x": 5, @@ -254,7 +254,7 @@ }, { "noteOrder": 821, - "time": 0.1418143899895725, + "time": 0.14181438998957246, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 821, - "time": 0.1418143899895725, + "time": 0.14181438998957246, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 845, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 845, - "time": 0.145985401459854, + "time": 0.14598540145985403, "position": { "x": 4, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 941, - "time": 0.16266944734098018, + "noteOrder": 942, + "time": 0.1626694473409802, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1111, "time": 0.191866527632951, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1135, "time": 0.19603753910323254, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.20020855057351405, + "noteOrder": 1159, + "time": 0.20020855057351408, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1183, - "time": 0.2043795620437956, + "time": 0.20437956204379562, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1231, - "time": 0.2127215849843587, + "time": 0.21272158498435872, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1304, "time": 0.22523461939520334, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1327, - "time": 0.22940563086548488, + "noteOrder": 1328, + "time": 0.2294056308654849, "position": { "x": 5, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1424, - "time": 0.24608967674661106, + "noteOrder": 1425, + "time": 0.24608967674661103, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1448, - "time": 0.25026068821689257, + "noteOrder": 1449, + "time": 0.2502606882168926, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.2544316996871741, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.2586027111574557, "position": { "x": 4, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.26277372262773724, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27528675703858185, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27528675703858185, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1617, + "noteOrder": 1618, "time": 0.2794577685088634, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1617, + "noteOrder": 1618, "time": 0.2794577685088634, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.291970802919708, + "noteOrder": 1690, + "time": 0.29197080291970806, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1714, - "time": 0.29614181438998954, + "time": 0.2961418143899896, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1786, - "time": 0.30865484880083416, + "noteOrder": 1787, + "time": 0.3086548488008342, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1810, + "noteOrder": 1811, "time": 0.31282586027111575, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1835, "time": 0.3169968717413973, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.32116788321167883, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.32533889468196037, + "noteOrder": 1883, + "time": 0.3253388946819604, "position": { "x": 3, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1907, - "time": 0.3295099061522419, + "time": 0.32950990615224196, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1931, - "time": 0.33368091762252344, + "noteOrder": 1932, + "time": 0.3336809176225235, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1955, + "noteOrder": 1956, "time": 0.337851929092805, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1980, "time": 0.3420229405630865, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1980, "time": 0.3420229405630865, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2003, + "noteOrder": 2004, "time": 0.3461939520333681, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2003, + "noteOrder": 2004, "time": 0.3461939520333681, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2100, - "time": 0.36287799791449427, + "noteOrder": 2101, + "time": 0.3628779979144943, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2173, "time": 0.3753910323253389, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2196, - "time": 0.3795620437956205, + "noteOrder": 2197, + "time": 0.3795620437956204, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2221, "time": 0.383733055265902, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2244, + "noteOrder": 2245, "time": 0.38790406673618355, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2269, + "noteOrder": 2270, "time": 0.3920750782064651, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2293, - "time": 0.3962460896767466, + "noteOrder": 2294, + "time": 0.39624608967674657, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2317, - "time": 0.4004171011470281, + "noteOrder": 2318, + "time": 0.40041710114702816, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2341, - "time": 0.40458811261730965, + "noteOrder": 2342, + "time": 0.4045881126173097, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2365, - "time": 0.4087591240875912, + "noteOrder": 2366, + "time": 0.40875912408759124, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2365, - "time": 0.4087591240875912, + "noteOrder": 2366, + "time": 0.40875912408759124, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2390, "time": 0.4129301355578728, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2390, "time": 0.4129301355578728, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2510, + "noteOrder": 2511, "time": 0.43378519290928047, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2534, - "time": 0.437956204379562, + "noteOrder": 2535, + "time": 0.43795620437956206, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2558, - "time": 0.44212721584984355, + "noteOrder": 2559, + "time": 0.4421272158498436, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.44629822732012514, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2703, + "noteOrder": 2704, "time": 0.46715328467153283, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2728, "time": 0.47132429614181437, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2751, - "time": 0.4754953076120959, + "noteOrder": 2752, + "time": 0.47549530761209596, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2751, - "time": 0.4754953076120959, + "noteOrder": 2752, + "time": 0.47549530761209596, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2775, + "noteOrder": 2777, "time": 0.4796663190823775, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2775, + "noteOrder": 2777, "time": 0.4796663190823775, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2896, - "time": 0.5005213764337851, + "noteOrder": 2897, + "time": 0.5005213764337852, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2920, - "time": 0.5046923879040667, + "noteOrder": 2921, + "time": 0.5046923879040668, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2946, "time": 0.5088633993743482, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2968, + "noteOrder": 2970, "time": 0.5130344108446299, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3089, + "noteOrder": 3090, "time": 0.5338894681960376, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3113, + "noteOrder": 3115, "time": 0.5380604796663191, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3139, "time": 0.5422314911366006, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3139, "time": 0.5422314911366006, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3163, "time": 0.5464025026068822, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3163, "time": 0.5464025026068822, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3210, + "noteOrder": 3211, "time": 0.5547445255474452, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3234, + "noteOrder": 3235, "time": 0.5589155370177268, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3258, + "noteOrder": 3259, "time": 0.5630865484880083, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3306, + "noteOrder": 3308, "time": 0.5714285714285714, "position": { "x": 6, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3331, - "time": 0.575599582898853, + "noteOrder": 3332, + "time": 0.5755995828988529, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3355, - "time": 0.5797705943691345, + "noteOrder": 3356, + "time": 0.5797705943691346, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3379, - "time": 0.583941605839416, + "noteOrder": 3380, + "time": 0.5839416058394161, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3403, - "time": 0.5881126173096975, + "noteOrder": 3404, + "time": 0.5881126173096977, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3427, - "time": 0.5922836287799791, + "noteOrder": 3428, + "time": 0.5922836287799792, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3451, + "noteOrder": 3453, "time": 0.5964546402502607, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3475, - "time": 0.6006256517205422, + "noteOrder": 3477, + "time": 0.6006256517205423, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3499, - "time": 0.6047966631908238, + "noteOrder": 3501, + "time": 0.6047966631908237, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3525, "time": 0.6089676746611052, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3548, + "noteOrder": 3549, "time": 0.6131386861313869, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3596, + "noteOrder": 3597, "time": 0.62148070907195, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3620, + "noteOrder": 3622, "time": 0.6256517205422315, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 3646, "time": 0.629822732012513, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3693, + "noteOrder": 3694, "time": 0.6381647549530761, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3717, + "noteOrder": 3718, "time": 0.6423357664233577, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3741, + "noteOrder": 3742, "time": 0.6465067778936392, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3765, - "time": 0.6506777893639207, + "noteOrder": 3766, + "time": 0.6506777893639208, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3789, - "time": 0.6548488008342023, + "noteOrder": 3791, + "time": 0.6548488008342024, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3813, - "time": 0.6590198123044838, + "noteOrder": 3815, + "time": 0.6590198123044839, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3837, + "noteOrder": 3839, "time": 0.6631908237747655, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3861, - "time": 0.6673618352450469, + "noteOrder": 3863, + "time": 0.667361835245047, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3886, - "time": 0.6715328467153285, + "noteOrder": 3887, + "time": 0.6715328467153284, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 3911, "time": 0.67570385818561, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 3911, "time": 0.67570385818561, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3934, - "time": 0.6798748696558916, + "noteOrder": 3936, + "time": 0.6798748696558915, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3934, - "time": 0.6798748696558916, + "noteOrder": 3936, + "time": 0.6798748696558915, "position": { "x": 4, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3958, + "noteOrder": 3960, "time": 0.684045881126173, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4006, + "noteOrder": 4008, "time": 0.6923879040667362, "position": { "x": 7, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4030, - "time": 0.6965589155370177, + "noteOrder": 4032, + "time": 0.6965589155370178, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4055, + "noteOrder": 4056, "time": 0.7007299270072993, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4151, + "noteOrder": 4153, "time": 0.7174139728884255, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4249, "time": 0.7340980187695516, "position": { "x": 5, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4298, "time": 0.7424400417101147, "position": { "x": 3, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4298, "time": 0.7424400417101147, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 4322, "time": 0.7466110531803962, "position": { "x": 6, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 4322, "time": 0.7466110531803962, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4392, - "time": 0.759124087591241, + "noteOrder": 4394, + "time": 0.7591240875912408, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4441, + "noteOrder": 4443, "time": 0.767466110531804, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4537, + "noteOrder": 4539, "time": 0.7841501564129302, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4634, - "time": 0.8008342022940562, + "noteOrder": 4636, + "time": 0.8008342022940563, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.8091762252346193, + "noteOrder": 4684, + "time": 0.8091762252346194, "position": { "x": 3, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.8091762252346193, + "noteOrder": 4684, + "time": 0.8091762252346194, "position": { "x": 7, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4706, + "noteOrder": 4708, "time": 0.8133472367049009, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4706, + "noteOrder": 4708, "time": 0.8133472367049009, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4781, "time": 0.8258602711157456, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4805, "time": 0.8300312825860271, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.8425443169968717, + "noteOrder": 4877, + "time": 0.8425443169968718, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4899, - "time": 0.8467153284671532, + "noteOrder": 4901, + "time": 0.8467153284671534, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4923, - "time": 0.8508863399374348, + "noteOrder": 4925, + "time": 0.8508863399374349, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4947, - "time": 0.8550573514077163, + "noteOrder": 4950, + "time": 0.8550573514077164, "position": { "x": 6, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 4974, "time": 0.8592283628779979, "position": { "x": 3, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4996, - "time": 0.8633993743482795, + "noteOrder": 4998, + "time": 0.8633993743482794, "position": { "x": 4, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5020, + "noteOrder": 5022, "time": 0.8675703858185609, "position": { "x": 7, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5044, - "time": 0.8717413972888426, + "noteOrder": 5046, + "time": 0.8717413972888425, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5068, - "time": 0.875912408759124, + "noteOrder": 5070, + "time": 0.8759124087591241, "position": { "x": 4, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5068, - "time": 0.875912408759124, + "noteOrder": 5070, + "time": 0.8759124087591241, "position": { "x": 6, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5092, + "noteOrder": 5094, "time": 0.8800834202294057, "position": { "x": 7, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5092, + "noteOrder": 5094, "time": 0.8800834202294057, "position": { "x": 3, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.8925964546402503, "position": { "x": 7, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5189, + "noteOrder": 5191, "time": 0.8967674661105318, "position": { "x": 3, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5261, + "noteOrder": 5263, "time": 0.9092805005213764, "position": { "x": 3, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5285, - "time": 0.9134515119916579, + "noteOrder": 5288, + "time": 0.9134515119916581, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5309, - "time": 0.9176225234619395, + "noteOrder": 5312, + "time": 0.9176225234619396, "position": { "x": 3, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5334, + "noteOrder": 5336, "time": 0.9217935349322212, "position": { "x": 4, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.9259645464025026, "position": { "x": 7, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.9301355578727841, "position": { "x": 6, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5406, + "noteOrder": 5408, "time": 0.9343065693430657, "position": { "x": 3, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9384775808133472, "position": { "x": 7, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5454, + "noteOrder": 5457, "time": 0.9426485922836287, "position": { "x": 4, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5454, + "noteOrder": 5457, "time": 0.9426485922836287, "position": { "x": 6, @@ -3296,7 +3296,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.016684045881126174, @@ -3319,7 +3319,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, "time": 0.03336809176225235, @@ -3342,10 +3342,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 241, - "time": 0.04171011470281543, + "time": 0.04171011470281544, "position": { "x": 3, "y": 0 @@ -3365,10 +3365,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.050052137643378514, + "time": 0.05005213764337852, "position": { "x": 3, "y": 0 @@ -3388,7 +3388,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, "time": 0.058394160583941604, @@ -3411,7 +3411,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 386, "time": 0.0667361835245047, @@ -3434,10 +3434,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.08342022940563086, + "time": 0.08342022940563087, "position": { "x": 3, "y": 0 @@ -3457,10 +3457,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, - "time": 0.10010427528675703, + "time": 0.10010427528675704, "position": { "x": 3, "y": 0 @@ -3480,9 +3480,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 627, + "noteOrder": 628, "time": 0.10844629822732012, "position": { "x": 7, @@ -3503,7 +3503,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 676, "time": 0.11678832116788321, @@ -3526,10 +3526,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 724, - "time": 0.12513034410844628, + "time": 0.1251303441084463, "position": { "x": 3, "y": 0 @@ -3549,9 +3549,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 772, + "noteOrder": 773, "time": 0.1334723670490094, "position": { "x": 3, @@ -3572,10 +3572,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, - "time": 0.15015641293013554, + "time": 0.15015641293013557, "position": { "x": 7, "y": 0 @@ -3595,10 +3595,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 941, - "time": 0.16266944734098018, + "noteOrder": 942, + "time": 0.1626694473409802, "position": { "x": 7, "y": 0 @@ -3618,10 +3618,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, - "time": 0.16684045881126172, + "noteOrder": 966, + "time": 0.16684045881126175, "position": { "x": 3, "y": 0 @@ -3641,7 +3641,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1038, "time": 0.17935349322210636, @@ -3664,7 +3664,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1255, "time": 0.21689259645464024, @@ -3687,10 +3687,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1327, - "time": 0.22940563086548488, + "noteOrder": 1328, + "time": 0.2294056308654849, "position": { "x": 3, "y": 0 @@ -3710,7 +3710,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1352, "time": 0.23357664233576642, @@ -3733,10 +3733,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1424, - "time": 0.24608967674661106, + "noteOrder": 1425, + "time": 0.24608967674661103, "position": { "x": 7, "y": 0 @@ -3756,10 +3756,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, - "time": 0.283628779979145, + "noteOrder": 1642, + "time": 0.28362877997914493, "position": { "x": 7, "y": 0 @@ -3778,13 +3778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1738, - "time": 0.3003128258602711, + "noteOrder": 1666, + "time": 0.28779979144942647, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3796,18 +3796,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2027, - "time": 0.35036496350364965, + "noteOrder": 1666, + "time": 0.28779979144942647, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3819,18 +3819,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2124, - "time": 0.3670490093847758, + "noteOrder": 1738, + "time": 0.30031282586027114, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3842,18 +3842,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2413, - "time": 0.4171011470281543, + "noteOrder": 1763, + "time": 0.3044838373305526, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3865,18 +3865,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2462, - "time": 0.4254431699687174, + "noteOrder": 1763, + "time": 0.3044838373305526, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3893,11 +3893,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2606, - "time": 0.4504692387904067, + "noteOrder": 2028, + "time": 0.35036496350364965, "position": { "x": 3, "y": 0 @@ -3916,13 +3916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2655, - "time": 0.45881126173096975, + "noteOrder": 2052, + "time": 0.3545359749739312, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3934,18 +3934,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2800, - "time": 0.48383733055265904, + "noteOrder": 2052, + "time": 0.3545359749739312, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3962,13 +3962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2848, - "time": 0.4921793534932221, + "noteOrder": 2125, + "time": 0.3670490093847758, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3985,11 +3985,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2993, - "time": 0.5172054223149114, + "noteOrder": 2149, + "time": 0.37122002085505734, "position": { "x": 7, "y": 0 @@ -4008,13 +4008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3041, - "time": 0.5255474452554745, + "noteOrder": 2149, + "time": 0.37122002085505734, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4026,18 +4026,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3186, - "time": 0.5505735140771637, + "noteOrder": 2414, + "time": 0.4171011470281543, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4054,13 +4054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3282, - "time": 0.56725755995829, + "noteOrder": 2439, + "time": 0.4212721584984359, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4077,13 +4077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3282, - "time": 0.56725755995829, + "noteOrder": 2439, + "time": 0.4212721584984359, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4095,18 +4095,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3379, - "time": 0.583941605839416, + "noteOrder": 2463, + "time": 0.42544316996871745, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4118,18 +4118,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3572, - "time": 0.6173096976016683, + "noteOrder": 2463, + "time": 0.42544316996871745, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4141,18 +4141,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 3668, - "time": 0.6339937434827946, + "noteOrder": 2463, + "time": 0.42544316996871745, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4169,13 +4169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3668, - "time": 0.6339937434827946, + "noteOrder": 2487, + "time": 0.42961418143899893, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4187,16 +4187,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3765, - "time": 0.6506777893639207, + "noteOrder": 2487, + "time": 0.42961418143899893, "position": { "x": 6, "y": 0 @@ -4210,18 +4210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4103, - "time": 0.7090719499478624, + "noteOrder": 2511, + "time": 0.43378519290928047, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4238,13 +4238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4151, - "time": 0.7174139728884255, + "noteOrder": 2511, + "time": 0.43378519290928047, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4261,13 +4261,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4199, - "time": 0.7257559958289885, + "noteOrder": 2608, + "time": 0.4504692387904067, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4279,18 +4279,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4248, - "time": 0.7340980187695516, + "noteOrder": 2632, + "time": 0.4546402502606882, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4302,18 +4302,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4344, - "time": 0.7507820646506778, + "noteOrder": 2632, + "time": 0.4546402502606882, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4330,13 +4330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 4441, - "time": 0.767466110531804, + "noteOrder": 2656, + "time": 0.4588112617309698, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4348,16 +4348,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4489, - "time": 0.7758081334723671, + "noteOrder": 2680, + "time": 0.4629822732012513, "position": { "x": 7, "y": 0 @@ -4376,13 +4376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4537, - "time": 0.7841501564129302, + "noteOrder": 2680, + "time": 0.4629822732012513, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4399,11 +4399,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4585, - "time": 0.7924921793534933, + "noteOrder": 2801, + "time": 0.48383733055265904, "position": { "x": 3, "y": 0 @@ -4422,11 +4422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4634, - "time": 0.8008342022940562, + "noteOrder": 2825, + "time": 0.4880083420229406, "position": { "x": 3, "y": 0 @@ -4445,13 +4445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4730, - "time": 0.8175182481751824, + "noteOrder": 2825, + "time": 0.4880083420229406, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4463,18 +4463,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4827, - "time": 0.8342022940563086, + "noteOrder": 2849, + "time": 0.49217935349322206, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4491,13 +4491,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5116, - "time": 0.8842544316996871, + "noteOrder": 2849, + "time": 0.49217935349322206, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4514,13 +4514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5213, - "time": 0.9009384775808134, + "noteOrder": 2849, + "time": 0.49217935349322206, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4537,11 +4537,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5478, - "time": 0.9468196037539103, + "noteOrder": 2873, + "time": 0.49635036496350365, "position": { "x": 3, "y": 0 @@ -4555,18 +4555,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5503, - "time": 0.9509906152241918, + "noteOrder": 2873, + "time": 0.49635036496350365, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4578,18 +4578,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5478, - "time": 0.9468196037539103, + "noteOrder": 2897, + "time": 0.5005213764337852, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4606,11 +4606,931 @@ "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2897, + "time": 0.5005213764337852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 5503, - "time": 0.9509906152241918, + "noteOrder": 2994, + "time": 0.5172054223149114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5213764337851929, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5213764337851929, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3042, + "time": 0.5255474452554745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3066, + "time": 0.529718456725756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3066, + "time": 0.529718456725756, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5505735140771637, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5672575599582899, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5672575599582899, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5839416058394161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3573, + "time": 0.6173096976016684, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3670, + "time": 0.6339937434827946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3670, + "time": 0.6339937434827946, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3766, + "time": 0.6506777893639208, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4105, + "time": 0.7090719499478624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4153, + "time": 0.7174139728884255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4201, + "time": 0.7257559958289886, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4249, + "time": 0.7340980187695516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4346, + "time": 0.7507820646506778, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4443, + "time": 0.767466110531804, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4491, + "time": 0.7758081334723671, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4539, + "time": 0.7841501564129302, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7924921793534931, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4636, + "time": 0.8008342022940563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4732, + "time": 0.8175182481751825, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4756, + "time": 0.821689259645464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4756, + "time": 0.821689259645464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4829, + "time": 0.8342022940563086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4853, + "time": 0.8383733055265903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4853, + "time": 0.8383733055265903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5119, + "time": 0.8842544316996872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5143, + "time": 0.8884254431699687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5143, + "time": 0.8884254431699687, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5215, + "time": 0.9009384775808134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5239, + "time": 0.9051094890510949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5239, + "time": 0.9051094890510949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5481, + "time": 0.9468196037539103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5505, + "time": 0.9509906152241919, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5481, + "time": 0.9468196037539103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5505, + "time": 0.9509906152241919, "position": { "x": 7, "y": 0 diff --git a/tracks/Brand New Step/info.json b/tracks/Brand New Step/info.json index f07b1470..fb874d9a 100644 --- a/tracks/Brand New Step/info.json +++ b/tracks/Brand New Step/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Brand New Step", - "SongLength": "123.010612", + "SongLength": "113.057959", "SongAuthorName": "Kradness", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1a.json b/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1a.json index d2d456d8..d6cd1bb2 100644 --- a/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1a.json +++ b/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1a.json @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 265, + "noteOrder": 266, "time": 0.05314009661835749, "position": { "x": 7, @@ -114,7 +114,7 @@ }, { "noteOrder": 290, - "time": 0.05797101449275362, + "time": 0.057971014492753624, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 314, - "time": 0.06280193236714975, + "time": 0.06280193236714976, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 362, - "time": 0.07246376811594202, + "time": 0.07246376811594203, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 410, - "time": 0.0821256038647343, + "time": 0.08212560386473429, "position": { "x": 5, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 458, - "time": 0.09178743961352658, + "noteOrder": 459, + "time": 0.09178743961352656, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 555, - "time": 0.1111111111111111, + "time": 0.11111111111111112, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 603, - "time": 0.12077294685990336, + "time": 0.12077294685990339, "position": { "x": 3, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 627, - "time": 0.1256038647342995, + "noteOrder": 628, + "time": 0.12560386473429952, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 651, + "noteOrder": 652, "time": 0.13043478260869565, "position": { "x": 3, @@ -414,7 +414,7 @@ }, { "noteOrder": 724, - "time": 0.14492753623188404, + "time": 0.14492753623188406, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 796, - "time": 0.15942028985507248, + "noteOrder": 797, + "time": 0.15942028985507245, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 820, - "time": 0.1642512077294686, + "noteOrder": 821, + "time": 0.16425120772946858, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 820, - "time": 0.1642512077294686, + "noteOrder": 821, + "time": 0.16425120772946858, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 845, "time": 0.16908212560386474, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 845, "time": 0.16908212560386474, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 989, - "time": 0.19806763285024157, + "noteOrder": 990, + "time": 0.19806763285024154, "position": { "x": 5, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1037, + "noteOrder": 1038, "time": 0.20772946859903382, "position": { "x": 5, @@ -654,7 +654,7 @@ }, { "noteOrder": 1110, - "time": 0.2222222222222222, + "time": 0.22222222222222224, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1134, - "time": 0.22705314009661834, + "time": 0.22705314009661837, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.23188405797101447, + "noteOrder": 1159, + "time": 0.2318840579710145, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.23188405797101447, + "noteOrder": 1159, + "time": 0.2318840579710145, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1327, - "time": 0.2657004830917874, + "noteOrder": 1328, + "time": 0.26570048309178745, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1423, + "noteOrder": 1424, "time": 0.28502415458937197, "position": { "x": 5, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1544, + "noteOrder": 1545, "time": 0.30917874396135264, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1568, + "noteOrder": 1569, "time": 0.31400966183574874, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1689, + "noteOrder": 1690, "time": 0.33816425120772947, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.3429951690821256, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1761, - "time": 0.35265700483091783, + "noteOrder": 1762, + "time": 0.3526570048309179, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1931, "time": 0.3864734299516908, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1954, - "time": 0.3913043478260869, + "noteOrder": 1955, + "time": 0.391304347826087, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.39613526570048313, + "noteOrder": 1979, + "time": 0.3961352657004831, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.39613526570048313, + "noteOrder": 1979, + "time": 0.3961352657004831, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2051, + "noteOrder": 2052, "time": 0.4106280193236715, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2075, + "noteOrder": 2076, "time": 0.41545893719806765, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.42028985507246375, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.429951690821256, + "noteOrder": 2148, + "time": 0.42995169082125606, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2196, - "time": 0.43961352657004826, + "noteOrder": 2197, + "time": 0.4396135265700483, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2316, - "time": 0.46376811594202894, + "noteOrder": 2317, + "time": 0.463768115942029, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.4685990338164251, + "noteOrder": 2341, + "time": 0.46859903381642515, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.4734299516908212, + "noteOrder": 2365, + "time": 0.4734299516908213, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.4734299516908212, + "noteOrder": 2365, + "time": 0.4734299516908213, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.47826086956521735, + "noteOrder": 2390, + "time": 0.4782608695652174, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.47826086956521735, + "noteOrder": 2390, + "time": 0.4782608695652174, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.48792270531400966, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2461, - "time": 0.49275362318840576, + "noteOrder": 2462, + "time": 0.4927536231884058, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2485, - "time": 0.4975845410628019, + "noteOrder": 2486, + "time": 0.497584541062802, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.5072463768115942, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2559, "time": 0.5120772946859903, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.5169082125603864, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2630, + "noteOrder": 2631, "time": 0.5265700483091788, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2679, "time": 0.536231884057971, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2823, + "noteOrder": 2824, "time": 0.5652173913043478, "position": { "x": 8, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.5748792270531401, "position": { "x": 2, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2919, - "time": 0.5845410628019323, + "noteOrder": 2921, + "time": 0.5845410628019324, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2943, + "noteOrder": 2945, "time": 0.5893719806763285, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2968, + "noteOrder": 2969, "time": 0.5942028985507246, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3016, - "time": 0.6038647342995168, + "noteOrder": 3017, + "time": 0.6038647342995169, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3040, - "time": 0.608695652173913, + "noteOrder": 3041, + "time": 0.6086956521739131, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.6135265700483091, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3088, + "noteOrder": 3090, "time": 0.6183574879227053, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3112, - "time": 0.6231884057971013, + "noteOrder": 3114, + "time": 0.6231884057971014, "position": { "x": 3, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3136, + "noteOrder": 3138, "time": 0.6280193236714975, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3136, + "noteOrder": 3138, "time": 0.6280193236714975, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3161, + "noteOrder": 3162, "time": 0.6328502415458938, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3161, + "noteOrder": 3162, "time": 0.6328502415458938, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3355, "time": 0.6714975845410628, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3476, "time": 0.6956521739130435, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3498, - "time": 0.7004830917874395, + "noteOrder": 3500, + "time": 0.7004830917874396, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3523, - "time": 0.7053140096618357, + "noteOrder": 3524, + "time": 0.7053140096618358, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3523, - "time": 0.7053140096618357, + "noteOrder": 3524, + "time": 0.7053140096618358, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3547, + "noteOrder": 3548, "time": 0.7101449275362319, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3547, + "noteOrder": 3548, "time": 0.7101449275362319, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3740, + "noteOrder": 3741, "time": 0.748792270531401, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3860, + "noteOrder": 3862, "time": 0.7729468599033816, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3884, - "time": 0.7777777777777777, + "noteOrder": 3886, + "time": 0.7777777777777778, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.8309178743961353, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.8309178743961353, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.8357487922705313, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.8357487922705313, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4200, "time": 0.8405797101449275, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4200, "time": 0.8405797101449275, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.8454106280193237, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.8454106280193237, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4246, + "noteOrder": 4248, "time": 0.8502415458937198, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4272, "time": 0.8550724637681159, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4295, - "time": 0.859903381642512, + "noteOrder": 4296, + "time": 0.8599033816425121, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4319, + "noteOrder": 4321, "time": 0.8647342995169082, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.8743961352657004, + "noteOrder": 4369, + "time": 0.8743961352657005, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8840579710144928, + "noteOrder": 4417, + "time": 0.8840579710144927, "position": { "x": 5, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4514, "time": 0.9033816425120773, "position": { "x": 5, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4536, - "time": 0.9082125603864734, + "noteOrder": 4538, + "time": 0.9082125603864735, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4548, - "time": 0.9106280193236714, + "noteOrder": 4550, + "time": 0.9106280193236715, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4562, "time": 0.9130434782608695, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4584, - "time": 0.9178743961352657, + "noteOrder": 4586, + "time": 0.9178743961352658, "position": { "x": 7, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 4598, "time": 0.9202898550724637, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4610, "time": 0.9227053140096618, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4681, - "time": 0.9371980676328502, + "noteOrder": 4683, + "time": 0.9371980676328503, "position": { "x": 7, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4705, + "noteOrder": 4707, "time": 0.9420289855072463, "position": { "x": 3, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4729, - "time": 0.9468599033816424, + "noteOrder": 4731, + "time": 0.9468599033816426, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4729, - "time": 0.9468599033816424, + "noteOrder": 4731, + "time": 0.9468599033816426, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4747, - "time": 0.9504830917874395, + "noteOrder": 4749, + "time": 0.9504830917874396, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.9528985507246376, + "noteOrder": 4761, + "time": 0.9528985507246377, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4771, - "time": 0.9553140096618357, + "noteOrder": 4773, + "time": 0.9553140096618358, "position": { "x": 7, "y": 0 @@ -2476,7 +2476,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01932367149758454, @@ -2499,7 +2499,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, "time": 0.024154589371980676, @@ -2522,10 +2522,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, - "time": 0.02898550724637681, + "time": 0.028985507246376812, "position": { "x": 3, "y": 0 @@ -2545,7 +2545,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, "time": 0.033816425120772944, @@ -2568,7 +2568,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03864734299516908, @@ -2591,7 +2591,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 217, "time": 0.043478260869565216, @@ -2614,7 +2614,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.07729468599033816, @@ -2637,10 +2637,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 410, - "time": 0.0821256038647343, + "time": 0.08212560386473429, "position": { "x": 4, "y": 0 @@ -2660,7 +2660,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, "time": 0.0966183574879227, @@ -2683,10 +2683,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, - "time": 0.11594202898550723, + "time": 0.11594202898550725, "position": { "x": 6, "y": 0 @@ -2706,10 +2706,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, - "time": 0.11594202898550723, + "time": 0.11594202898550725, "position": { "x": 4, "y": 0 @@ -2729,7 +2729,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 676, "time": 0.13526570048309178, @@ -2752,7 +2752,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, "time": 0.17391304347826086, @@ -2775,10 +2775,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 893, - "time": 0.17874396135265702, + "time": 0.178743961352657, "position": { "x": 5, "y": 0 @@ -2798,10 +2798,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 893, - "time": 0.17874396135265702, + "time": 0.178743961352657, "position": { "x": 5, "y": 0 @@ -2821,10 +2821,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 917, - "time": 0.18357487922705315, + "time": 0.18357487922705312, "position": { "x": 5, "y": 0 @@ -2844,10 +2844,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 917, - "time": 0.18357487922705315, + "time": 0.18357487922705312, "position": { "x": 5, "y": 0 @@ -2867,7 +2867,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 941, "time": 0.18840579710144928, @@ -2890,7 +2890,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 941, "time": 0.18840579710144928, @@ -2913,9 +2913,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 965, + "noteOrder": 966, "time": 0.1932367149758454, "position": { "x": 5, @@ -2936,9 +2936,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, + "noteOrder": 966, "time": 0.1932367149758454, "position": { "x": 5, @@ -2959,10 +2959,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 989, - "time": 0.19806763285024157, + "noteOrder": 990, + "time": 0.19806763285024154, "position": { "x": 5, "y": 0 @@ -2982,9 +2982,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.2028985507246377, "position": { "x": 5, @@ -3005,9 +3005,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1037, + "noteOrder": 1038, "time": 0.20772946859903382, "position": { "x": 5, @@ -3028,10 +3028,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1182, - "time": 0.2367149758454106, + "noteOrder": 1183, + "time": 0.23671497584541065, "position": { "x": 7, "y": 0 @@ -3051,10 +3051,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1194, - "time": 0.23913043478260868, + "noteOrder": 1195, + "time": 0.2391304347826087, "position": { "x": 7, "y": 0 @@ -3074,9 +3074,9 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.24396135265700483, "position": { "x": 3, @@ -3097,10 +3097,10 @@ }, { "lineGroupId": 49, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1230, - "time": 0.24637681159420288, + "noteOrder": 1231, + "time": 0.2463768115942029, "position": { "x": 3, "y": 0 @@ -3120,10 +3120,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1182, - "time": 0.2367149758454106, + "noteOrder": 1183, + "time": 0.23671497584541065, "position": { "x": 3, "y": 0 @@ -3143,10 +3143,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1194, - "time": 0.23913043478260868, + "noteOrder": 1195, + "time": 0.2391304347826087, "position": { "x": 3, "y": 0 @@ -3166,9 +3166,9 @@ }, { "lineGroupId": 50, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.24396135265700483, "position": { "x": 7, @@ -3189,10 +3189,10 @@ }, { "lineGroupId": 50, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1230, - "time": 0.24637681159420288, + "noteOrder": 1231, + "time": 0.2463768115942029, "position": { "x": 7, "y": 0 @@ -3212,10 +3212,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1255, - "time": 0.251207729468599, + "time": 0.25120772946859904, "position": { "x": 5, "y": 0 @@ -3235,7 +3235,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1279, "time": 0.25603864734299514, @@ -3258,7 +3258,7 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1303, "time": 0.2608695652173913, @@ -3281,10 +3281,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1327, - "time": 0.2657004830917874, + "noteOrder": 1328, + "time": 0.26570048309178745, "position": { "x": 5, "y": 0 @@ -3304,9 +3304,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, + "noteOrder": 1352, "time": 0.27053140096618356, "position": { "x": 5, @@ -3327,9 +3327,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.2753623188405797, "position": { "x": 5, @@ -3350,9 +3350,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.2753623188405797, "position": { "x": 5, @@ -3373,9 +3373,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2801932367149758, "position": { "x": 5, @@ -3396,9 +3396,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2801932367149758, "position": { "x": 5, @@ -3419,9 +3419,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1423, + "noteOrder": 1424, "time": 0.28502415458937197, "position": { "x": 5, @@ -3442,10 +3442,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1448, - "time": 0.28985507246376807, + "time": 0.2898550724637681, "position": { "x": 7, "y": 0 @@ -3464,13 +3464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1472, - "time": 0.2946859903381642, + "noteOrder": 1460, + "time": 0.2922705314009662, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3482,18 +3482,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1496, - "time": 0.2995169082125604, + "noteOrder": 1460, + "time": 0.2922705314009662, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3510,11 +3510,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1520, - "time": 0.3043478260869565, + "noteOrder": 1472, + "time": 0.2946859903381642, "position": { "x": 3, "y": 0 @@ -3533,13 +3533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1592, - "time": 0.31884057971014496, + "noteOrder": 1484, + "time": 0.2971014492753623, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3551,18 +3551,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1484, + "time": 0.2971014492753623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 1617, - "time": 0.32367149758454106, + "noteOrder": 1497, + "time": 0.2995169082125604, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3579,13 +3602,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1592, - "time": 0.31884057971014496, + "noteOrder": 1509, + "time": 0.30193236714975846, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3597,18 +3620,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1617, - "time": 0.32367149758454106, + "noteOrder": 1509, + "time": 0.30193236714975846, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3620,16 +3643,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, - "time": 0.3285024154589372, + "noteOrder": 1521, + "time": 0.30434782608695654, "position": { "x": 3, "y": 0 @@ -3648,11 +3671,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1737, - "time": 0.34782608695652173, + "noteOrder": 1533, + "time": 0.30676328502415456, "position": { "x": 3, "y": 0 @@ -3671,13 +3694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1737, - "time": 0.34782608695652173, + "noteOrder": 1533, + "time": 0.30676328502415456, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3689,18 +3712,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 1761, - "time": 0.35265700483091783, + "noteOrder": 1593, + "time": 0.3188405797101449, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3717,13 +3740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1785, - "time": 0.35748792270531404, + "noteOrder": 1617, + "time": 0.32367149758454106, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3735,18 +3758,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 1810, - "time": 0.36231884057971014, + "noteOrder": 1593, + "time": 0.3188405797101449, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3763,13 +3786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1834, - "time": 0.3671497584541063, + "noteOrder": 1617, + "time": 0.32367149758454106, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3781,18 +3804,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 1858, - "time": 0.3719806763285024, + "noteOrder": 1641, + "time": 0.32850241545893716, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3804,18 +3827,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1858, - "time": 0.3719806763285024, + "noteOrder": 1738, + "time": 0.34782608695652173, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3832,13 +3855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 1882, - "time": 0.37681159420289856, + "noteOrder": 1738, + "time": 0.34782608695652173, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3850,18 +3873,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1882, - "time": 0.37681159420289856, + "noteOrder": 1762, + "time": 0.3526570048309179, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3878,13 +3901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 1906, - "time": 0.38164251207729466, + "noteOrder": 1786, + "time": 0.357487922705314, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3896,18 +3919,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, - "time": 0.38164251207729466, + "noteOrder": 1810, + "time": 0.36231884057971014, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3924,11 +3947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 1930, - "time": 0.3864734299516908, + "noteOrder": 1834, + "time": 0.36714975845410625, "position": { "x": 5, "y": 0 @@ -3942,18 +3965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2027, - "time": 0.4057971014492754, + "noteOrder": 1859, + "time": 0.3719806763285024, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3970,13 +3993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 78, "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.4251207729468599, + "noteOrder": 1859, + "time": 0.3719806763285024, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3988,18 +4011,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2123, - "time": 0.4251207729468599, + "noteOrder": 1883, + "time": 0.37681159420289856, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4015,12 +4038,173 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1883, + "time": 0.37681159420289856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1907, + "time": 0.38164251207729466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1907, + "time": 0.38164251207729466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1931, + "time": 0.3864734299516908, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2028, + "time": 0.4057971014492754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2124, + "time": 0.4251207729468599, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 2147, - "time": 0.429951690821256, + "noteOrder": 2124, + "time": 0.4251207729468599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2148, + "time": 0.42995169082125606, "position": { "x": 3, "y": 0 @@ -4040,9 +4224,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.43478260869565216, "position": { "x": 7, @@ -4063,10 +4247,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2196, - "time": 0.43961352657004826, + "noteOrder": 2197, + "time": 0.4396135265700483, "position": { "x": 7, "y": 0 @@ -4086,10 +4270,10 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2220, - "time": 0.4444444444444444, + "noteOrder": 2221, + "time": 0.4444444444444445, "position": { "x": 5, "y": 0 @@ -4109,9 +4293,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2244, + "noteOrder": 2245, "time": 0.4492753623188406, "position": { "x": 5, @@ -4132,9 +4316,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2244, + "noteOrder": 2245, "time": 0.4492753623188406, "position": { "x": 5, @@ -4155,10 +4339,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2268, - "time": 0.4541062801932367, + "noteOrder": 2269, + "time": 0.45410628019323673, "position": { "x": 5, "y": 0 @@ -4178,10 +4362,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2268, - "time": 0.4541062801932367, + "noteOrder": 2269, + "time": 0.45410628019323673, "position": { "x": 5, "y": 0 @@ -4201,10 +4385,10 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2292, - "time": 0.45893719806763283, + "noteOrder": 2293, + "time": 0.4589371980676329, "position": { "x": 5, "y": 0 @@ -4224,10 +4408,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2292, - "time": 0.45893719806763283, + "noteOrder": 2293, + "time": 0.4589371980676329, "position": { "x": 5, "y": 0 @@ -4247,10 +4431,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2316, - "time": 0.46376811594202894, + "noteOrder": 2317, + "time": 0.463768115942029, "position": { "x": 5, "y": 0 @@ -4270,10 +4454,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2413, - "time": 0.48309178743961345, + "noteOrder": 2414, + "time": 0.48309178743961356, "position": { "x": 7, "y": 0 @@ -4293,9 +4477,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.48792270531400966, "position": { "x": 7, @@ -4316,10 +4500,10 @@ }, { "lineGroupId": 105, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2509, - "time": 0.502415458937198, + "noteOrder": 2510, + "time": 0.5024154589371981, "position": { "x": 4, "y": 0 @@ -4339,10 +4523,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2509, - "time": 0.502415458937198, + "noteOrder": 2510, + "time": 0.5024154589371981, "position": { "x": 3, "y": 0 @@ -4362,9 +4546,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.5072463768115942, "position": { "x": 3, @@ -4385,9 +4569,9 @@ }, { "lineGroupId": 109, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.5169082125603864, "position": { "x": 6, @@ -4408,9 +4592,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2606, + "noteOrder": 2607, "time": 0.5217391304347826, "position": { "x": 7, @@ -4431,9 +4615,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2630, + "noteOrder": 2631, "time": 0.5265700483091788, "position": { "x": 7, @@ -4454,10 +4638,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2654, - "time": 0.5314009661835748, + "noteOrder": 2655, + "time": 0.5314009661835749, "position": { "x": 3, "y": 0 @@ -4477,9 +4661,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2678, + "noteOrder": 2679, "time": 0.536231884057971, "position": { "x": 3, @@ -4500,9 +4684,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2702, + "noteOrder": 2703, "time": 0.5410628019323671, "position": { "x": 5, @@ -4523,9 +4707,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2726, + "noteOrder": 2728, "time": 0.5458937198067633, "position": { "x": 5, @@ -4546,9 +4730,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2726, + "noteOrder": 2728, "time": 0.5458937198067633, "position": { "x": 5, @@ -4569,9 +4753,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2750, + "noteOrder": 2752, "time": 0.5507246376811594, "position": { "x": 5, @@ -4592,9 +4776,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2750, + "noteOrder": 2752, "time": 0.5507246376811594, "position": { "x": 5, @@ -4615,9 +4799,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2775, + "noteOrder": 2776, "time": 0.5555555555555556, "position": { "x": 5, @@ -4638,9 +4822,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2775, + "noteOrder": 2776, "time": 0.5555555555555556, "position": { "x": 5, @@ -4661,9 +4845,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.5603864734299516, "position": { "x": 5, @@ -4684,9 +4868,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.5603864734299516, "position": { "x": 6, @@ -4707,9 +4891,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2823, + "noteOrder": 2824, "time": 0.5652173913043478, "position": { "x": 6, @@ -4730,9 +4914,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2847, + "noteOrder": 2848, "time": 0.5700483091787439, "position": { "x": 4, @@ -4753,9 +4937,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.5748792270531401, "position": { "x": 4, @@ -4776,10 +4960,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2895, - "time": 0.5797101449275361, + "noteOrder": 2897, + "time": 0.5797101449275363, "position": { "x": 6, "y": 0 @@ -4799,9 +4983,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2992, + "noteOrder": 2993, "time": 0.5990338164251208, "position": { "x": 6, @@ -4822,9 +5006,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2992, + "noteOrder": 2993, "time": 0.5990338164251208, "position": { "x": 4, @@ -4845,9 +5029,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.6135265700483091, "position": { "x": 4, @@ -4868,10 +5052,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3185, - "time": 0.6376811594202899, + "noteOrder": 3186, + "time": 0.6376811594202898, "position": { "x": 5, "y": 0 @@ -4891,9 +5075,9 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.642512077294686, "position": { "x": 5, @@ -4914,9 +5098,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.642512077294686, "position": { "x": 5, @@ -4937,9 +5121,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.6473429951690821, "position": { "x": 5, @@ -4960,9 +5144,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.6473429951690821, "position": { "x": 5, @@ -4983,9 +5167,9 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3257, + "noteOrder": 3259, "time": 0.6521739130434783, "position": { "x": 5, @@ -5006,9 +5190,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3257, + "noteOrder": 3259, "time": 0.6521739130434783, "position": { "x": 5, @@ -5029,10 +5213,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3281, - "time": 0.6570048309178744, + "noteOrder": 3283, + "time": 0.6570048309178743, "position": { "x": 5, "y": 0 @@ -5052,10 +5236,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3281, - "time": 0.6570048309178744, + "noteOrder": 3283, + "time": 0.6570048309178743, "position": { "x": 5, "y": 0 @@ -5075,10 +5259,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3305, - "time": 0.6618357487922705, + "noteOrder": 3307, + "time": 0.6618357487922706, "position": { "x": 5, "y": 0 @@ -5098,10 +5282,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3305, - "time": 0.6618357487922705, + "noteOrder": 3307, + "time": 0.6618357487922706, "position": { "x": 5, "y": 0 @@ -5121,9 +5305,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3330, + "noteOrder": 3331, "time": 0.6666666666666666, "position": { "x": 5, @@ -5144,9 +5328,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3330, + "noteOrder": 3331, "time": 0.6666666666666666, "position": { "x": 5, @@ -5167,9 +5351,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3354, + "noteOrder": 3355, "time": 0.6714975845410628, "position": { "x": 5, @@ -5190,9 +5374,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3378, + "noteOrder": 3379, "time": 0.6763285024154589, "position": { "x": 7, @@ -5212,13 +5396,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3402, - "time": 0.681159420289855, + "noteOrder": 3391, + "time": 0.678743961352657, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5230,18 +5414,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3426, - "time": 0.6859903381642511, + "noteOrder": 3391, + "time": 0.678743961352657, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5258,11 +5442,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3450, - "time": 0.6908212560386473, + "noteOrder": 3403, + "time": 0.6811594202898551, "position": { "x": 3, "y": 0 @@ -5281,13 +5465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3571, - "time": 0.7149758454106281, + "noteOrder": 3415, + "time": 0.6835748792270532, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5304,11 +5488,195 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3595, - "time": 0.7198067632850241, + "noteOrder": 3415, + "time": 0.6835748792270532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3428, + "time": 0.6859903381642511, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3440, + "time": 0.6884057971014492, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3440, + "time": 0.6884057971014492, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3452, + "time": 0.6908212560386474, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3464, + "time": 0.6932367149758455, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3464, + "time": 0.6932367149758455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3572, + "time": 0.714975845410628, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3597, + "time": 0.7198067632850242, "position": { "x": 5, "y": 0 @@ -5328,10 +5696,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3595, - "time": 0.7198067632850241, + "noteOrder": 3597, + "time": 0.7198067632850242, "position": { "x": 5, "y": 0 @@ -5351,10 +5719,194 @@ }, { "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3621, + "time": 0.7246376811594203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3621, + "time": 0.7246376811594203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3645, + "time": 0.7294685990338164, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3645, + "time": 0.7294685990338164, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3669, + "time": 0.7342995169082125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3619, - "time": 0.7246376811594203, + "noteOrder": 3669, + "time": 0.7342995169082125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3693, + "time": 0.7391304347826088, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3693, + "time": 0.7391304347826088, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3717, + "time": 0.7439613526570048, "position": { "x": 5, "y": 0 @@ -5373,11 +5925,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3619, - "time": 0.7246376811594203, + "noteOrder": 3717, + "time": 0.7439613526570048, "position": { "x": 5, "y": 0 @@ -5396,11 +5948,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3643, - "time": 0.7294685990338164, + "noteOrder": 3741, + "time": 0.748792270531401, "position": { "x": 5, "y": 0 @@ -5419,13 +5971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3643, - "time": 0.7294685990338164, + "noteOrder": 3765, + "time": 0.7536231884057971, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5437,18 +5989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3667, - "time": 0.7342995169082126, + "noteOrder": 3778, + "time": 0.7560386473429952, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5460,18 +6012,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3667, - "time": 0.7342995169082126, + "noteOrder": 3778, + "time": 0.7560386473429952, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5488,13 +6040,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 3691, - "time": 0.7391304347826086, + "noteOrder": 3790, + "time": 0.7584541062801933, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5506,18 +6058,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3691, - "time": 0.7391304347826086, + "noteOrder": 3802, + "time": 0.7608695652173912, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5534,13 +6086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3716, - "time": 0.7439613526570048, + "noteOrder": 3802, + "time": 0.7608695652173912, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5557,13 +6109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3716, - "time": 0.7439613526570048, + "noteOrder": 3814, + "time": 0.7632850241545893, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5580,13 +6132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3740, - "time": 0.748792270531401, + "noteOrder": 3826, + "time": 0.7657004830917875, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5603,13 +6155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3764, - "time": 0.7536231884057971, + "noteOrder": 3826, + "time": 0.7657004830917875, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5626,11 +6178,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3788, - "time": 0.7584541062801932, + "noteOrder": 3838, + "time": 0.7681159420289856, "position": { "x": 7, "y": 0 @@ -5649,13 +6201,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3812, - "time": 0.7632850241545893, + "noteOrder": 3850, + "time": 0.7705314009661836, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5667,18 +6219,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3836, - "time": 0.7681159420289855, + "noteOrder": 3850, + "time": 0.7705314009661836, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5696,10 +6248,10 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3909, - "time": 0.7826086956521738, + "noteOrder": 3910, + "time": 0.782608695652174, "position": { "x": 4, "y": 0 @@ -5719,10 +6271,10 @@ }, { "lineGroupId": 171, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3933, - "time": 0.78743961352657, + "noteOrder": 3934, + "time": 0.7874396135265701, "position": { "x": 4, "y": 0 @@ -5742,10 +6294,10 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3909, - "time": 0.7826086956521738, + "noteOrder": 3910, + "time": 0.782608695652174, "position": { "x": 6, "y": 0 @@ -5765,10 +6317,10 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3933, - "time": 0.78743961352657, + "noteOrder": 3934, + "time": 0.7874396135265701, "position": { "x": 6, "y": 0 @@ -5788,10 +6340,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3957, - "time": 0.7922705314009663, + "noteOrder": 3959, + "time": 0.7922705314009661, "position": { "x": 7, "y": 0 @@ -5811,10 +6363,10 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3969, - "time": 0.7946859903381641, + "noteOrder": 3971, + "time": 0.7946859903381642, "position": { "x": 6, "y": 0 @@ -5834,10 +6386,10 @@ }, { "lineGroupId": 174, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3981, - "time": 0.7971014492753622, + "noteOrder": 3983, + "time": 0.7971014492753624, "position": { "x": 7, "y": 0 @@ -5857,9 +6409,9 @@ }, { "lineGroupId": 174, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3993, + "noteOrder": 3995, "time": 0.7995169082125604, "position": { "x": 6, @@ -5880,9 +6432,9 @@ }, { "lineGroupId": 174, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.8019323671497585, "position": { "x": 7, @@ -5903,9 +6455,9 @@ }, { "lineGroupId": 174, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4017, + "noteOrder": 4019, "time": 0.8043478260869565, "position": { "x": 6, @@ -5926,9 +6478,9 @@ }, { "lineGroupId": 174, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.8067632850241546, "position": { "x": 7, @@ -5949,10 +6501,10 @@ }, { "lineGroupId": 174, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4041, - "time": 0.8091787439613527, + "noteOrder": 4043, + "time": 0.8091787439613526, "position": { "x": 6, "y": 0 @@ -5972,9 +6524,9 @@ }, { "lineGroupId": 174, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.8115942028985508, "position": { "x": 6, @@ -5995,10 +6547,10 @@ }, { "lineGroupId": 174, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4065, - "time": 0.8140096618357487, + "noteOrder": 4067, + "time": 0.8140096618357489, "position": { "x": 6, "y": 0 @@ -6018,10 +6570,10 @@ }, { "lineGroupId": 174, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4077, - "time": 0.8164251207729468, + "noteOrder": 4079, + "time": 0.8164251207729469, "position": { "x": 6, "y": 0 @@ -6041,9 +6593,9 @@ }, { "lineGroupId": 174, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4090, + "noteOrder": 4091, "time": 0.8188405797101449, "position": { "x": 6, @@ -6064,9 +6616,9 @@ }, { "lineGroupId": 174, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4102, + "noteOrder": 4103, "time": 0.821256038647343, "position": { "x": 6, @@ -6087,9 +6639,9 @@ }, { "lineGroupId": 174, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4114, + "noteOrder": 4115, "time": 0.8236714975845411, "position": { "x": 6, @@ -6110,10 +6662,10 @@ }, { "lineGroupId": 174, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4126, - "time": 0.8260869565217391, + "noteOrder": 4128, + "time": 0.826086956521739, "position": { "x": 6, "y": 0 @@ -6133,9 +6685,9 @@ }, { "lineGroupId": 174, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4138, + "noteOrder": 4140, "time": 0.8285024154589372, "position": { "x": 6, @@ -6156,10 +6708,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3957, - "time": 0.7922705314009663, + "noteOrder": 3959, + "time": 0.7922705314009661, "position": { "x": 3, "y": 0 @@ -6179,10 +6731,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3969, - "time": 0.7946859903381641, + "noteOrder": 3971, + "time": 0.7946859903381642, "position": { "x": 4, "y": 0 @@ -6202,10 +6754,10 @@ }, { "lineGroupId": 175, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3981, - "time": 0.7971014492753622, + "noteOrder": 3983, + "time": 0.7971014492753624, "position": { "x": 3, "y": 0 @@ -6225,9 +6777,9 @@ }, { "lineGroupId": 175, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3993, + "noteOrder": 3995, "time": 0.7995169082125604, "position": { "x": 4, @@ -6248,9 +6800,9 @@ }, { "lineGroupId": 175, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.8019323671497585, "position": { "x": 3, @@ -6271,9 +6823,9 @@ }, { "lineGroupId": 175, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4017, + "noteOrder": 4019, "time": 0.8043478260869565, "position": { "x": 4, @@ -6294,9 +6846,9 @@ }, { "lineGroupId": 175, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.8067632850241546, "position": { "x": 3, @@ -6317,10 +6869,10 @@ }, { "lineGroupId": 175, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4041, - "time": 0.8091787439613527, + "noteOrder": 4043, + "time": 0.8091787439613526, "position": { "x": 4, "y": 0 @@ -6340,9 +6892,9 @@ }, { "lineGroupId": 175, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.8115942028985508, "position": { "x": 4, @@ -6363,10 +6915,10 @@ }, { "lineGroupId": 175, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4065, - "time": 0.8140096618357487, + "noteOrder": 4067, + "time": 0.8140096618357489, "position": { "x": 3, "y": 0 @@ -6386,10 +6938,10 @@ }, { "lineGroupId": 175, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4077, - "time": 0.8164251207729468, + "noteOrder": 4079, + "time": 0.8164251207729469, "position": { "x": 3, "y": 0 @@ -6409,9 +6961,9 @@ }, { "lineGroupId": 175, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4090, + "noteOrder": 4091, "time": 0.8188405797101449, "position": { "x": 4, @@ -6432,9 +6984,9 @@ }, { "lineGroupId": 175, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4102, + "noteOrder": 4103, "time": 0.821256038647343, "position": { "x": 4, @@ -6455,9 +7007,9 @@ }, { "lineGroupId": 175, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4114, + "noteOrder": 4115, "time": 0.8236714975845411, "position": { "x": 3, @@ -6478,10 +7030,10 @@ }, { "lineGroupId": 175, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4126, - "time": 0.8260869565217391, + "noteOrder": 4128, + "time": 0.826086956521739, "position": { "x": 3, "y": 0 @@ -6501,9 +7053,9 @@ }, { "lineGroupId": 175, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4138, + "noteOrder": 4140, "time": 0.8285024154589372, "position": { "x": 4, @@ -6524,9 +7076,9 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.8695652173913043, "position": { "x": 6, @@ -6547,10 +7099,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4367, - "time": 0.8743961352657004, + "noteOrder": 4369, + "time": 0.8743961352657005, "position": { "x": 6, "y": 0 @@ -6570,10 +7122,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4391, - "time": 0.8792270531400965, + "noteOrder": 4393, + "time": 0.8792270531400966, "position": { "x": 4, "y": 0 @@ -6593,10 +7145,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4415, - "time": 0.8840579710144928, + "noteOrder": 4417, + "time": 0.8840579710144927, "position": { "x": 4, "y": 0 @@ -6616,10 +7168,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4439, - "time": 0.8888888888888888, + "noteOrder": 4441, + "time": 0.888888888888889, "position": { "x": 5, "y": 0 @@ -6639,9 +7191,9 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.893719806763285, "position": { "x": 5, @@ -6662,9 +7214,9 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.893719806763285, "position": { "x": 5, @@ -6685,9 +7237,9 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4488, + "noteOrder": 4490, "time": 0.8985507246376812, "position": { "x": 5, @@ -6708,9 +7260,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4488, + "noteOrder": 4490, "time": 0.8985507246376812, "position": { "x": 5, @@ -6731,9 +7283,9 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4512, + "noteOrder": 4514, "time": 0.9033816425120773, "position": { "x": 5, @@ -6754,10 +7306,33 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4634, + "time": 0.927536231884058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4632, - "time": 0.9275362318840579, + "noteOrder": 4646, + "time": 0.929951690821256, "position": { "x": 7, "y": 0 @@ -6775,12 +7350,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4646, + "time": 0.929951690821256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4659, + "time": 0.9323671497584541, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4656, - "time": 0.932367149758454, + "noteOrder": 4671, + "time": 0.9347826086956522, "position": { "x": 3, "y": 0 @@ -6797,6 +7418,29 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4671, + "time": 0.9347826086956522, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1b.json b/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1b.json index 74b0ac8c..6bfdc61d 100644 --- a/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1b.json +++ b/tracks/Broadway Walk CHARLESTON EDITION/364_difficulty_1b.json @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 265, + "noteOrder": 266, "time": 0.05314009661835749, "position": { "x": 5, @@ -94,7 +94,7 @@ }, { "noteOrder": 290, - "time": 0.05797101449275362, + "time": 0.057971014492753624, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 314, - "time": 0.06280193236714975, + "time": 0.06280193236714976, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 362, - "time": 0.07246376811594202, + "time": 0.07246376811594203, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 410, - "time": 0.0821256038647343, + "time": 0.08212560386473429, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 458, - "time": 0.09178743961352658, + "noteOrder": 459, + "time": 0.09178743961352656, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 555, - "time": 0.1111111111111111, + "time": 0.11111111111111112, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 603, - "time": 0.12077294685990336, + "time": 0.12077294685990339, "position": { "x": 5, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 651, + "noteOrder": 652, "time": 0.13043478260869565, "position": { "x": 5, @@ -374,7 +374,7 @@ }, { "noteOrder": 724, - "time": 0.14492753623188404, + "time": 0.14492753623188406, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 796, - "time": 0.15942028985507248, + "noteOrder": 797, + "time": 0.15942028985507245, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 820, - "time": 0.1642512077294686, + "noteOrder": 821, + "time": 0.16425120772946858, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 820, - "time": 0.1642512077294686, + "noteOrder": 821, + "time": 0.16425120772946858, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 845, "time": 0.16908212560386474, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 845, "time": 0.16908212560386474, "position": { "x": 6, @@ -574,7 +574,7 @@ }, { "noteOrder": 1110, - "time": 0.2222222222222222, + "time": 0.22222222222222224, "position": { "x": 5, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1134, - "time": 0.22705314009661834, + "time": 0.22705314009661837, "position": { "x": 5, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.23188405797101447, + "noteOrder": 1159, + "time": 0.2318840579710145, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1182, - "time": 0.2367149758454106, + "noteOrder": 1183, + "time": 0.23671497584541065, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1206, - "time": 0.24154589371980673, + "noteOrder": 1207, + "time": 0.24154589371980678, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1206, - "time": 0.24154589371980673, + "noteOrder": 1207, + "time": 0.24154589371980678, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1230, - "time": 0.24637681159420288, + "noteOrder": 1231, + "time": 0.2463768115942029, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1230, - "time": 0.24637681159420288, + "noteOrder": 1231, + "time": 0.2463768115942029, "position": { "x": 7, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1448, - "time": 0.28985507246376807, + "time": 0.2898550724637681, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.2995169082125604, "position": { "x": 5, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1520, - "time": 0.3043478260869565, + "noteOrder": 1521, + "time": 0.30434782608695654, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1544, + "noteOrder": 1545, "time": 0.30917874396135264, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1568, + "noteOrder": 1569, "time": 0.31400966183574874, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.31884057971014496, + "noteOrder": 1593, + "time": 0.3188405797101449, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.31884057971014496, + "noteOrder": 1593, + "time": 0.3188405797101449, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.34782608695652173, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1761, - "time": 0.35265700483091783, + "noteOrder": 1762, + "time": 0.3526570048309179, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1785, - "time": 0.35748792270531404, + "noteOrder": 1786, + "time": 0.357487922705314, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.3719806763285024, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.38164251207729466, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1931, "time": 0.3864734299516908, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1954, - "time": 0.3913043478260869, + "noteOrder": 1955, + "time": 0.391304347826087, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.39613526570048313, + "noteOrder": 1979, + "time": 0.3961352657004831, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2075, + "noteOrder": 2076, "time": 0.41545893719806765, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.42028985507246375, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.43478260869565216, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2196, - "time": 0.43961352657004826, + "noteOrder": 2197, + "time": 0.4396135265700483, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2220, - "time": 0.4444444444444444, + "noteOrder": 2221, + "time": 0.4444444444444445, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2244, + "noteOrder": 2245, "time": 0.4492753623188406, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2268, - "time": 0.4541062801932367, + "noteOrder": 2269, + "time": 0.45410628019323673, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2292, - "time": 0.45893719806763283, + "noteOrder": 2293, + "time": 0.4589371980676329, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2316, - "time": 0.46376811594202894, + "noteOrder": 2317, + "time": 0.463768115942029, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.4685990338164251, + "noteOrder": 2341, + "time": 0.46859903381642515, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.4734299516908212, + "noteOrder": 2365, + "time": 0.4734299516908213, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.4734299516908212, + "noteOrder": 2365, + "time": 0.4734299516908213, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.47826086956521735, + "noteOrder": 2390, + "time": 0.4782608695652174, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.47826086956521735, + "noteOrder": 2390, + "time": 0.4782608695652174, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2413, - "time": 0.48309178743961345, + "noteOrder": 2414, + "time": 0.48309178743961356, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.48792270531400966, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2461, - "time": 0.49275362318840576, + "noteOrder": 2462, + "time": 0.4927536231884058, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2485, - "time": 0.4975845410628019, + "noteOrder": 2486, + "time": 0.497584541062802, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.5072463768115942, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2559, "time": 0.5120772946859903, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.5169082125603864, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2606, + "noteOrder": 2607, "time": 0.5217391304347826, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2630, + "noteOrder": 2631, "time": 0.5265700483091788, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2654, - "time": 0.5314009661835748, + "noteOrder": 2655, + "time": 0.5314009661835749, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2679, "time": 0.536231884057971, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2823, + "noteOrder": 2824, "time": 0.5652173913043478, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.5748792270531401, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.5797101449275361, + "noteOrder": 2897, + "time": 0.5797101449275363, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2919, - "time": 0.5845410628019323, + "noteOrder": 2921, + "time": 0.5845410628019324, "position": { "x": 5, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2943, + "noteOrder": 2945, "time": 0.5893719806763285, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2968, + "noteOrder": 2969, "time": 0.5942028985507246, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3088, + "noteOrder": 3090, "time": 0.6183574879227053, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3112, - "time": 0.6231884057971013, + "noteOrder": 3114, + "time": 0.6231884057971014, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.642512077294686, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3257, + "noteOrder": 3259, "time": 0.6521739130434783, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3281, - "time": 0.6570048309178744, + "noteOrder": 3283, + "time": 0.6570048309178743, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.6618357487922705, + "noteOrder": 3307, + "time": 0.6618357487922706, "position": { "x": 5, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3331, "time": 0.6666666666666666, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3355, "time": 0.6714975845410628, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3428, "time": 0.6859903381642511, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.6908212560386473, + "noteOrder": 3452, + "time": 0.6908212560386474, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3476, "time": 0.6956521739130435, "position": { "x": 7, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3498, - "time": 0.7004830917874395, + "noteOrder": 3500, + "time": 0.7004830917874396, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3523, - "time": 0.7053140096618357, + "noteOrder": 3524, + "time": 0.7053140096618358, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3547, + "noteOrder": 3548, "time": 0.7101449275362319, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3621, "time": 0.7246376811594203, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3643, + "noteOrder": 3645, "time": 0.7294685990338164, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3667, - "time": 0.7342995169082126, + "noteOrder": 3669, + "time": 0.7342995169082125, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3691, - "time": 0.7391304347826086, + "noteOrder": 3693, + "time": 0.7391304347826088, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3717, "time": 0.7439613526570048, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3740, + "noteOrder": 3741, "time": 0.748792270531401, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3764, + "noteOrder": 3765, "time": 0.7536231884057971, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3788, - "time": 0.7584541062801932, + "noteOrder": 3790, + "time": 0.7584541062801933, "position": { "x": 5, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3814, "time": 0.7632850241545893, "position": { "x": 5, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3836, - "time": 0.7681159420289855, + "noteOrder": 3838, + "time": 0.7681159420289856, "position": { "x": 5, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3860, + "noteOrder": 3862, "time": 0.7729468599033816, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3884, - "time": 0.7777777777777777, + "noteOrder": 3886, + "time": 0.7777777777777778, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3909, - "time": 0.7826086956521738, + "noteOrder": 3910, + "time": 0.782608695652174, "position": { "x": 7, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3933, - "time": 0.78743961352657, + "noteOrder": 3934, + "time": 0.7874396135265701, "position": { "x": 6, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4246, + "noteOrder": 4248, "time": 0.8502415458937198, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4272, "time": 0.8550724637681159, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4319, + "noteOrder": 4321, "time": 0.8647342995169082, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.8695652173913043, "position": { "x": 5, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.8743961352657004, + "noteOrder": 4369, + "time": 0.8743961352657005, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4391, - "time": 0.8792270531400965, + "noteOrder": 4393, + "time": 0.8792270531400966, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8840579710144928, + "noteOrder": 4417, + "time": 0.8840579710144927, "position": { "x": 5, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.893719806763285, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4514, "time": 0.9033816425120773, "position": { "x": 4, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4536, - "time": 0.9082125603864734, + "noteOrder": 4538, + "time": 0.9082125603864735, "position": { "x": 3, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4562, "time": 0.9130434782608695, "position": { "x": 7, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4584, - "time": 0.9178743961352657, + "noteOrder": 4586, + "time": 0.9178743961352658, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4610, "time": 0.9227053140096618, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.932367149758454, + "noteOrder": 4659, + "time": 0.9323671497584541, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4705, + "noteOrder": 4707, "time": 0.9420289855072463, "position": { "x": 5, @@ -2616,7 +2616,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01932367149758454, @@ -2639,7 +2639,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, "time": 0.03864734299516908, @@ -2662,7 +2662,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03864734299516908, @@ -2685,10 +2685,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.05797101449275362, + "time": 0.057971014492753624, "position": { "x": 3, "y": 0 @@ -2708,7 +2708,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.07729468599033816, @@ -2731,7 +2731,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 483, "time": 0.0966183574879227, @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, - "time": 0.11594202898550723, + "time": 0.11594202898550725, "position": { "x": 3, "y": 0 @@ -2777,7 +2777,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 676, "time": 0.13526570048309178, @@ -2800,7 +2800,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, "time": 0.17391304347826086, @@ -2823,10 +2823,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 917, - "time": 0.18357487922705315, + "time": 0.18357487922705312, "position": { "x": 5, "y": 0 @@ -2846,10 +2846,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 917, - "time": 0.18357487922705315, + "time": 0.18357487922705312, "position": { "x": 5, "y": 0 @@ -2869,9 +2869,9 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 965, + "noteOrder": 966, "time": 0.1932367149758454, "position": { "x": 5, @@ -2892,9 +2892,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, + "noteOrder": 966, "time": 0.1932367149758454, "position": { "x": 5, @@ -2915,9 +2915,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.2028985507246377, "position": { "x": 5, @@ -2938,9 +2938,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.2028985507246377, "position": { "x": 5, @@ -2961,7 +2961,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1062, "time": 0.21256038647342995, @@ -2984,10 +2984,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1255, - "time": 0.251207729468599, + "time": 0.25120772946859904, "position": { "x": 5, "y": 0 @@ -3007,7 +3007,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1303, "time": 0.2608695652173913, @@ -3030,7 +3030,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1303, "time": 0.2608695652173913, @@ -3053,9 +3053,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1351, + "noteOrder": 1352, "time": 0.27053140096618356, "position": { "x": 5, @@ -3076,9 +3076,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, + "noteOrder": 1352, "time": 0.27053140096618356, "position": { "x": 5, @@ -3099,9 +3099,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2801932367149758, "position": { "x": 5, @@ -3122,9 +3122,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2801932367149758, "position": { "x": 5, @@ -3145,10 +3145,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1448, - "time": 0.28985507246376807, + "time": 0.2898550724637681, "position": { "x": 5, "y": 0 @@ -3168,10 +3168,33 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1641, - "time": 0.3285024154589372, + "time": 0.32850241545893716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1665, + "time": 0.3333333333333333, "position": { "x": 7, "y": 0 @@ -3189,11 +3212,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1665, + "time": 0.3333333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1689, + "noteOrder": 1690, "time": 0.33816425120772947, "position": { "x": 3, @@ -3212,12 +3258,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1714, + "time": 0.3429951690821256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1714, + "time": 0.3429951690821256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1834, - "time": 0.3671497584541063, + "time": 0.36714975845410625, "position": { "x": 6, "y": 0 @@ -3237,9 +3329,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.3719806763285024, "position": { "x": 6, @@ -3260,9 +3352,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1882, + "noteOrder": 1883, "time": 0.37681159420289856, "position": { "x": 4, @@ -3283,9 +3375,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.38164251207729466, "position": { "x": 4, @@ -3306,9 +3398,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.4057971014492754, "position": { "x": 7, @@ -3329,9 +3421,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.42028985507246375, "position": { "x": 7, @@ -3352,9 +3444,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.4251207729468599, "position": { "x": 3, @@ -3375,10 +3467,10 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2196, - "time": 0.43961352657004826, + "noteOrder": 2197, + "time": 0.4396135265700483, "position": { "x": 3, "y": 0 @@ -3398,10 +3490,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2413, - "time": 0.48309178743961345, + "noteOrder": 2414, + "time": 0.48309178743961356, "position": { "x": 7, "y": 0 @@ -3421,10 +3513,10 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.502415458937198, + "noteOrder": 2510, + "time": 0.5024154589371981, "position": { "x": 7, "y": 0 @@ -3444,10 +3536,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2509, - "time": 0.502415458937198, + "noteOrder": 2510, + "time": 0.5024154589371981, "position": { "x": 3, "y": 0 @@ -3467,9 +3559,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2606, + "noteOrder": 2607, "time": 0.5217391304347826, "position": { "x": 3, @@ -3490,9 +3582,9 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2702, + "noteOrder": 2703, "time": 0.5410628019323671, "position": { "x": 6, @@ -3513,9 +3605,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.5603864734299516, "position": { "x": 6, @@ -3536,9 +3628,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2702, + "noteOrder": 2703, "time": 0.5410628019323671, "position": { "x": 4, @@ -3559,9 +3651,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.5603864734299516, "position": { "x": 4, @@ -3582,9 +3674,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2992, + "noteOrder": 2993, "time": 0.5990338164251208, "position": { "x": 7, @@ -3605,10 +3697,10 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3016, - "time": 0.6038647342995168, + "noteOrder": 3017, + "time": 0.6038647342995169, "position": { "x": 7, "y": 0 @@ -3628,9 +3720,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2992, + "noteOrder": 2993, "time": 0.5990338164251208, "position": { "x": 3, @@ -3651,10 +3743,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3016, - "time": 0.6038647342995168, + "noteOrder": 3017, + "time": 0.6038647342995169, "position": { "x": 3, "y": 0 @@ -3674,10 +3766,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3040, - "time": 0.608695652173913, + "noteOrder": 3041, + "time": 0.6086956521739131, "position": { "x": 6, "y": 0 @@ -3697,9 +3789,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.6135265700483091, "position": { "x": 6, @@ -3720,10 +3812,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3040, - "time": 0.608695652173913, + "noteOrder": 3041, + "time": 0.6086956521739131, "position": { "x": 4, "y": 0 @@ -3743,9 +3835,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.6135265700483091, "position": { "x": 4, @@ -3766,9 +3858,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3136, + "noteOrder": 3138, "time": 0.6280193236714975, "position": { "x": 7, @@ -3789,9 +3881,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3161, + "noteOrder": 3162, "time": 0.6328502415458938, "position": { "x": 7, @@ -3812,9 +3904,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3136, + "noteOrder": 3138, "time": 0.6280193236714975, "position": { "x": 3, @@ -3835,9 +3927,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3161, + "noteOrder": 3162, "time": 0.6328502415458938, "position": { "x": 3, @@ -3858,10 +3950,10 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3185, - "time": 0.6376811594202899, + "noteOrder": 3186, + "time": 0.6376811594202898, "position": { "x": 4, "y": 0 @@ -3881,9 +3973,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.642512077294686, "position": { "x": 4, @@ -3904,9 +3996,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.6473429951690821, "position": { "x": 6, @@ -3927,9 +4019,9 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3257, + "noteOrder": 3259, "time": 0.6521739130434783, "position": { "x": 6, @@ -3950,9 +4042,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3378, + "noteOrder": 3379, "time": 0.6763285024154589, "position": { "x": 3, @@ -3973,10 +4065,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3450, - "time": 0.6908212560386473, + "noteOrder": 3452, + "time": 0.6908212560386474, "position": { "x": 3, "y": 0 @@ -3996,10 +4088,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3571, - "time": 0.7149758454106281, + "noteOrder": 3572, + "time": 0.714975845410628, "position": { "x": 7, "y": 0 @@ -4019,9 +4111,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3643, + "noteOrder": 3645, "time": 0.7294685990338164, "position": { "x": 7, @@ -4042,10 +4134,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3957, - "time": 0.7922705314009663, + "noteOrder": 3959, + "time": 0.7922705314009661, "position": { "x": 6, "y": 0 @@ -4065,9 +4157,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.8115942028985508, "position": { "x": 6, @@ -4088,10 +4180,10 @@ }, { "lineGroupId": 150, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4126, - "time": 0.8260869565217391, + "noteOrder": 4128, + "time": 0.826086956521739, "position": { "x": 7, "y": 0 @@ -4111,9 +4203,9 @@ }, { "lineGroupId": 150, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.8309178743961353, "position": { "x": 7, @@ -4134,9 +4226,9 @@ }, { "lineGroupId": 150, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.8454106280193237, "position": { "x": 5, @@ -4157,10 +4249,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3957, - "time": 0.7922705314009663, + "noteOrder": 3959, + "time": 0.7922705314009661, "position": { "x": 4, "y": 0 @@ -4180,9 +4272,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.8115942028985508, "position": { "x": 4, @@ -4203,10 +4295,10 @@ }, { "lineGroupId": 151, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4126, - "time": 0.8260869565217391, + "noteOrder": 4128, + "time": 0.826086956521739, "position": { "x": 5, "y": 0 @@ -4226,9 +4318,9 @@ }, { "lineGroupId": 151, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.8309178743961353, "position": { "x": 5, @@ -4249,9 +4341,9 @@ }, { "lineGroupId": 151, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.8454106280193237, "position": { "x": 3, @@ -4272,10 +4364,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4295, - "time": 0.859903381642512, + "noteOrder": 4296, + "time": 0.8599033816425121, "position": { "x": 7, "y": 0 @@ -4295,9 +4387,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4319, + "noteOrder": 4321, "time": 0.8647342995169082, "position": { "x": 7, @@ -4318,10 +4410,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4439, - "time": 0.8888888888888888, + "noteOrder": 4441, + "time": 0.888888888888889, "position": { "x": 4, "y": 0 @@ -4341,9 +4433,9 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.893719806763285, "position": { "x": 4, @@ -4364,9 +4456,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4488, + "noteOrder": 4490, "time": 0.8985507246376812, "position": { "x": 6, @@ -4387,9 +4479,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4512, + "noteOrder": 4514, "time": 0.9033816425120773, "position": { "x": 6, @@ -4410,10 +4502,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4632, - "time": 0.9275362318840579, + "noteOrder": 4634, + "time": 0.927536231884058, "position": { "x": 4, "y": 0 @@ -4433,10 +4525,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4656, - "time": 0.932367149758454, + "noteOrder": 4659, + "time": 0.9323671497584541, "position": { "x": 4, "y": 0 @@ -4456,10 +4548,10 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4681, - "time": 0.9371980676328502, + "noteOrder": 4683, + "time": 0.9371980676328503, "position": { "x": 6, "y": 0 @@ -4479,9 +4571,9 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4705, + "noteOrder": 4707, "time": 0.9420289855072463, "position": { "x": 6, diff --git a/tracks/Broadway Walk CHARLESTON EDITION/info.json b/tracks/Broadway Walk CHARLESTON EDITION/info.json index 1bd90e38..2a0d3a26 100644 --- a/tracks/Broadway Walk CHARLESTON EDITION/info.json +++ b/tracks/Broadway Walk CHARLESTON EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Broadway Walk CHARLESTON EDITION", - "SongLength": "116.715102", + "SongLength": "106.762449", "SongAuthorName": "Dirty Androids", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/CHAPTER II(Ready Go)/187_difficulty_1a.json b/tracks/CHAPTER II(Ready Go)/187_difficulty_1a.json index 71870cff..6031fbec 100644 --- a/tracks/CHAPTER II(Ready Go)/187_difficulty_1a.json +++ b/tracks/CHAPTER II(Ready Go)/187_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.014816529690936452, + "time": 0.01481652969093645, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 192, - "time": 0.029633059381872905, + "time": 0.0296330593818729, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 384, - "time": 0.05926611876374581, + "time": 0.0592661187637458, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.09260331056835283, + "noteOrder": 601, + "time": 0.09260331056835282, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.09630744299108693, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.10001157541382105, + "noteOrder": 649, + "time": 0.10001157541382104, "position": { "x": 5, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.10741984025928927, "position": { "x": 8, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.1148281051047575, "position": { "x": 2, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.11853223752749162, + "noteOrder": 769, + "time": 0.1185322375274916, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.12223636995022573, + "noteOrder": 793, + "time": 0.12223636995022572, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12594050237295984, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12594050237295984, "position": { "x": 6, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.12964463479569396, + "noteOrder": 841, + "time": 0.12964463479569394, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.12964463479569396, + "noteOrder": 841, + "time": 0.12964463479569394, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 865, "time": 0.13334876721842806, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 888, - "time": 0.13705289964116218, + "noteOrder": 889, + "time": 0.13705289964116216, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 961, "time": 0.14816529690936453, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 985, "time": 0.15186942933209863, "position": { "x": 7, @@ -774,7 +774,7 @@ }, { "noteOrder": 1129, - "time": 0.17409422386850332, + "time": 0.1740942238685033, "position": { "x": 7, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1201, - "time": 0.18520662113670566, + "time": 0.18520662113670563, "position": { "x": 6, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1585, - "time": 0.24447273990045146, + "time": 0.24447273990045143, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.27410579928232437, + "noteOrder": 1778, + "time": 0.2741057992823243, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.2778099317050585, + "noteOrder": 1802, + "time": 0.27780993170505847, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.2926264613959949, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.30373885866419725, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1981, + "noteOrder": 1982, "time": 0.30559092487556433, "position": { "x": 5, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.30744299108693135, + "noteOrder": 1994, + "time": 0.3074429910869314, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.30744299108693135, + "noteOrder": 1994, + "time": 0.3074429910869314, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.3111471235096655, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3148512559323996, + "noteOrder": 2042, + "time": 0.31485125593239954, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3185553883551337, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.32225952077786785, + "noteOrder": 2090, + "time": 0.3222595207778678, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.3259636532006019, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.32966778562333604, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.3333719180460702, + "noteOrder": 2162, + "time": 0.33337191804607014, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2185, + "noteOrder": 2186, "time": 0.33707605046880423, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3407801828915384, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.34448431531427254, + "noteOrder": 2234, + "time": 0.3444843153142725, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.34818844773700663, + "noteOrder": 2258, + "time": 0.3481884477370066, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.35189258015974073, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.3704132422734113, + "noteOrder": 2402, + "time": 0.37041324227341127, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.37411737469614537, + "noteOrder": 2426, + "time": 0.3741173746961454, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3778215071188795, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.38152563954161367, + "noteOrder": 2474, + "time": 0.3815256395416136, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2497, + "noteOrder": 2498, "time": 0.3852297719643477, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2521, - "time": 0.38893390438708186, + "noteOrder": 2522, + "time": 0.3889339043870818, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.39263803680981596, + "noteOrder": 2546, + "time": 0.3926380368098159, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.39263803680981596, + "noteOrder": 2546, + "time": 0.3926380368098159, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.39634216923255006, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.39634216923255006, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2593, - "time": 0.4000463016552842, + "noteOrder": 2594, + "time": 0.40004630165528415, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.4037504340780183, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.40745456650075246, + "noteOrder": 2642, + "time": 0.4074545665007524, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.4111586989234865, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.425975228614423, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.425975228614423, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2785, + "noteOrder": 2786, "time": 0.4296793610371571, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2809, + "noteOrder": 2810, "time": 0.4333834934598912, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2833, + "noteOrder": 2834, "time": 0.43708762588262534, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2857, + "noteOrder": 2858, "time": 0.44079175830535944, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2881, + "noteOrder": 2882, "time": 0.44449589072809353, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2905, + "noteOrder": 2907, "time": 0.4482000231508277, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2929, - "time": 0.4519041555735618, + "noteOrder": 2931, + "time": 0.4519041555735617, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2953, - "time": 0.4556082879962959, + "noteOrder": 2955, + "time": 0.4556082879962958, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2977, + "noteOrder": 2979, "time": 0.45931242041903, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3001, - "time": 0.46301655284176413, + "noteOrder": 3003, + "time": 0.4630165528417641, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3025, - "time": 0.4667206852644983, + "noteOrder": 3027, + "time": 0.46672068526449817, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3049, + "noteOrder": 3051, "time": 0.4704248176872323, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.48153721495543467, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.48153721495543467, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4852413473781688, + "noteOrder": 3147, + "time": 0.48524134737816876, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4852413473781688, + "noteOrder": 3147, + "time": 0.48524134737816876, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.4889454798009029, + "noteOrder": 3171, + "time": 0.48894547980090286, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.492649612223637, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.4963537446463711, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.5000578770691052, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3267, "time": 0.5037620094918394, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3291, "time": 0.5074661419145735, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.5111702743373076, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3338, - "time": 0.5148744067600417, + "noteOrder": 3339, + "time": 0.5148744067600416, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5185785391827759, + "noteOrder": 3363, + "time": 0.5185785391827757, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.5222826716055099, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3410, - "time": 0.525986804028244, + "noteOrder": 3411, + "time": 0.5259868040282439, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.5296909364509782, + "noteOrder": 3435, + "time": 0.5296909364509781, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3459, "time": 0.5333950688737122, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3459, "time": 0.5333950688737122, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.5370992012964464, + "noteOrder": 3483, + "time": 0.5370992012964463, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.5370992012964464, + "noteOrder": 3483, + "time": 0.5370992012964463, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3650, + "noteOrder": 3651, "time": 0.5630281282555851, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.5667322606783193, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3699, "time": 0.5704363931010534, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3722, - "time": 0.5741405255237876, + "noteOrder": 3723, + "time": 0.5741405255237875, "position": { "x": 4, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3842, + "noteOrder": 3843, "time": 0.5926611876374581, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3867, "time": 0.5963653200601922, "position": { "x": 6, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3890, + "noteOrder": 3891, "time": 0.6000694524829263, "position": { "x": 3, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.6037735849056604, + "noteOrder": 3915, + "time": 0.6037735849056605, "position": { "x": 4, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4058, - "time": 0.6259983794420652, + "noteOrder": 4060, + "time": 0.625998379442065, "position": { "x": 5, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.6334066442875332, "position": { "x": 5, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.6371107767102674, "position": { "x": 7, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.6408149091330015, + "noteOrder": 4156, + "time": 0.6408149091330014, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6445190415557357, + "noteOrder": 4180, + "time": 0.6445190415557356, "position": { "x": 6, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6445190415557357, + "noteOrder": 4180, + "time": 0.6445190415557356, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6482231739784698, + "noteOrder": 4204, + "time": 0.6482231739784697, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6482231739784698, + "noteOrder": 4204, + "time": 0.6482231739784697, "position": { "x": 3, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4346, + "noteOrder": 4348, "time": 0.6704479685148744, "position": { "x": 8, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.6778562333603426, "position": { "x": 2, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.6852644982058109, + "noteOrder": 4444, + "time": 0.6852644982058108, "position": { "x": 8, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.6926727630512791, "position": { "x": 2, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4612, "time": 0.7111934251649497, "position": { "x": 3, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4622, - "time": 0.7130454913763168, + "noteOrder": 4624, + "time": 0.7130454913763167, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.718601690010418, + "noteOrder": 4660, + "time": 0.7186016900104178, "position": { "x": 8, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4682, + "noteOrder": 4684, "time": 0.722305822433152, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.7445306169695568, + "noteOrder": 4828, + "time": 0.7445306169695567, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.7482347493922907, + "noteOrder": 4852, + "time": 0.7482347493922908, "position": { "x": 4, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4876, "time": 0.7519388818150249, "position": { "x": 3, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7741636763514296, + "noteOrder": 5020, + "time": 0.7741636763514295, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5042, - "time": 0.7778678087741637, + "noteOrder": 5044, + "time": 0.7778678087741636, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.7815719411968979, + "noteOrder": 5068, + "time": 0.7815719411968978, "position": { "x": 7, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5187, - "time": 0.8000926033105684, + "noteOrder": 5188, + "time": 0.8000926033105683, "position": { "x": 3, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5199, + "noteOrder": 5200, "time": 0.8019446695219354, "position": { "x": 5, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5212, "time": 0.8037967357333025, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8075008681560366, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.8112050005787708, + "noteOrder": 5261, + "time": 0.8112050005787707, "position": { "x": 7, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.818613265424239, "position": { "x": 3, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.818613265424239, "position": { "x": 7, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.822317397846973, "position": { "x": 3, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5343, + "noteOrder": 5345, "time": 0.8241694640583401, "position": { "x": 5, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.8260215302697071, "position": { "x": 7, @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.8408380599606435, + "noteOrder": 5453, + "time": 0.8408380599606436, "position": { "x": 7, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5499, + "noteOrder": 5501, "time": 0.8482463248061118, "position": { "x": 3, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.851950457228846, "position": { "x": 5, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5571, + "noteOrder": 5573, "time": 0.8593587220743142, "position": { "x": 5, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5595, - "time": 0.8630628544970482, + "noteOrder": 5597, + "time": 0.8630628544970483, "position": { "x": 7, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5691, - "time": 0.8778793841879848, + "noteOrder": 5693, + "time": 0.8778793841879847, "position": { "x": 4, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5739, + "noteOrder": 5741, "time": 0.885287649033453, "position": { "x": 6, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5811, + "noteOrder": 5813, "time": 0.8964000463016554, "position": { "x": 6, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5835, + "noteOrder": 5837, "time": 0.9001041787243894, "position": { "x": 7, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5955, + "noteOrder": 5957, "time": 0.91862484083806, "position": { "x": 7, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5967, + "noteOrder": 5969, "time": 0.9204769070494271, "position": { "x": 5, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6003, - "time": 0.9260331056835283, + "noteOrder": 6005, + "time": 0.9260331056835281, "position": { "x": 3, "y": 0 @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6015, + "noteOrder": 6017, "time": 0.9278851718948953, "position": { "x": 5, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6123, - "time": 0.9445537677971988, + "noteOrder": 6125, + "time": 0.9445537677971987, "position": { "x": 3, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6171, - "time": 0.9519620326426671, + "noteOrder": 6173, + "time": 0.951962032642667, "position": { "x": 7, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.9556661650654011, + "noteOrder": 6197, + "time": 0.955666165065401, "position": { "x": 7, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6219, + "noteOrder": 6221, "time": 0.9593702974881352, "position": { "x": 2, @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6243, + "noteOrder": 6245, "time": 0.9630744299108693, "position": { "x": 7, @@ -3456,7 +3456,7 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04444958907280935, @@ -3479,7 +3479,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, "time": 0.048153721495543464, @@ -3502,7 +3502,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, "time": 0.05185785391827758, @@ -3525,7 +3525,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 360, "time": 0.05556198634101169, @@ -3548,7 +3548,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.07408264845468227, @@ -3571,7 +3571,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 576, "time": 0.0888991781456187, @@ -3594,7 +3594,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 576, "time": 0.0888991781456187, @@ -3617,9 +3617,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10371570783655516, "position": { "x": 3, @@ -3640,9 +3640,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10371570783655516, "position": { "x": 6, @@ -3663,9 +3663,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 696, + "noteOrder": 697, "time": 0.10741984025928927, "position": { "x": 6, @@ -3686,9 +3686,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.11112397268202338, "position": { "x": 4, @@ -3709,9 +3709,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 744, + "noteOrder": 745, "time": 0.1148281051047575, "position": { "x": 4, @@ -3732,9 +3732,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 912, + "noteOrder": 913, "time": 0.14075703206389628, "position": { "x": 7, @@ -3755,9 +3755,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 936, + "noteOrder": 937, "time": 0.1444611644866304, "position": { "x": 7, @@ -3778,9 +3778,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 924, + "noteOrder": 925, "time": 0.14260909827526336, "position": { "x": 3, @@ -3801,9 +3801,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 936, + "noteOrder": 937, "time": 0.1444611644866304, "position": { "x": 3, @@ -3824,9 +3824,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1008, + "noteOrder": 1009, "time": 0.15557356175483275, "position": { "x": 3, @@ -3847,9 +3847,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1032, + "noteOrder": 1033, "time": 0.15927769417756685, "position": { "x": 3, @@ -3870,10 +3870,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1020, - "time": 0.1574256279661998, + "noteOrder": 1021, + "time": 0.15742562796619977, "position": { "x": 7, "y": 0 @@ -3893,9 +3893,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1032, + "noteOrder": 1033, "time": 0.15927769417756685, "position": { "x": 7, @@ -3916,7 +3916,7 @@ }, { "lineGroupId": 46, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1057, "time": 0.16298182660030094, @@ -3939,10 +3939,10 @@ }, { "lineGroupId": 46, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1081, - "time": 0.1666859590230351, + "time": 0.16668595902303507, "position": { "x": 5, "y": 0 @@ -3962,10 +3962,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1081, - "time": 0.1666859590230351, + "time": 0.16668595902303507, "position": { "x": 3, "y": 0 @@ -3985,7 +3985,7 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1105, "time": 0.1703900914457692, @@ -4008,10 +4008,10 @@ }, { "lineGroupId": 48, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1129, - "time": 0.17409422386850332, + "time": 0.1740942238685033, "position": { "x": 5, "y": 0 @@ -4031,7 +4031,7 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1153, "time": 0.1777983562912374, @@ -4054,10 +4054,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1165, - "time": 0.1796504225026045, + "time": 0.17965042250260446, "position": { "x": 7, "y": 0 @@ -4077,7 +4077,7 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1177, "time": 0.18150248871397154, @@ -4100,7 +4100,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1189, "time": 0.1833545549253386, @@ -4123,7 +4123,7 @@ }, { "lineGroupId": 52, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1225, "time": 0.18891075355943976, @@ -4146,7 +4146,7 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, "time": 0.19261488598217386, @@ -4168,11 +4168,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.19631901840490798, + "noteOrder": 1261, + "time": 0.1944669521935409, "position": { "x": 7, "y": 0 @@ -4186,18 +4186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, - "time": 0.2000231508276421, + "noteOrder": 1261, + "time": 0.1944669521935409, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4214,13 +4214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, - "time": 0.20372728325037623, + "noteOrder": 1273, + "time": 0.19631901840490795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4232,18 +4232,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1345, - "time": 0.20743141567311033, + "noteOrder": 1273, + "time": 0.19631901840490795, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4260,11 +4260,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.21113554809584442, + "noteOrder": 1273, + "time": 0.19631901840490795, "position": { "x": 7, "y": 0 @@ -4278,18 +4278,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 56, "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, - "time": 0.22224794536404677, + "noteOrder": 1285, + "time": 0.19817108461627503, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4301,18 +4301,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1441, - "time": 0.22224794536404677, + "noteOrder": 1285, + "time": 0.19817108461627503, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4329,13 +4329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1465, - "time": 0.2259520777867809, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4347,18 +4347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1489, - "time": 0.229656210209515, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4375,13 +4375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1513, - "time": 0.23336034263224914, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4398,13 +4398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, - "time": 0.23706447505498324, + "noteOrder": 1309, + "time": 0.20187521703900915, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4416,18 +4416,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1561, - "time": 0.24076860747771733, + "noteOrder": 1309, + "time": 0.20187521703900915, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4439,16 +4439,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 2, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1633, - "time": 0.2518810047459197, + "noteOrder": 1321, + "time": 0.2037272832503762, "position": { "x": 6, "y": 0 @@ -4462,18 +4462,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1633, - "time": 0.2518810047459197, + "noteOrder": 1321, + "time": 0.2037272832503762, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4490,13 +4490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1657, - "time": 0.2555851371686538, + "noteOrder": 1321, + "time": 0.2037272832503762, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4513,11 +4513,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2592892695913879, + "noteOrder": 1333, + "time": 0.20557934946174325, "position": { "x": 7, "y": 0 @@ -4531,18 +4531,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1705, - "time": 0.262993402014122, + "noteOrder": 1333, + "time": 0.20557934946174325, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4559,13 +4559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1729, - "time": 0.2666975344368561, + "noteOrder": 1345, + "time": 0.20743141567311033, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4577,18 +4577,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1753, - "time": 0.2704016668595902, + "noteOrder": 1345, + "time": 0.20743141567311033, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4600,18 +4600,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1753, - "time": 0.2704016668595902, + "noteOrder": 1345, + "time": 0.20743141567311033, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4623,18 +4623,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1777, - "time": 0.27410579928232437, + "noteOrder": 1369, + "time": 0.21113554809584442, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4646,18 +4646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 2, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1801, - "time": 0.2778099317050585, + "noteOrder": 1441, + "time": 0.22224794536404677, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4669,18 +4669,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.28151406412779256, + "noteOrder": 1441, + "time": 0.22224794536404677, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4692,18 +4692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1849, - "time": 0.2852181965505267, + "noteOrder": 1453, + "time": 0.22410001157541384, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4720,13 +4720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1873, - "time": 0.2889223289732608, + "noteOrder": 1453, + "time": 0.22410001157541384, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4738,18 +4738,3284 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1921, + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1465, + "time": 0.22595207778678086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1465, + "time": 0.22595207778678086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1465, + "time": 0.22595207778678086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1477, + "time": 0.2278041439981479, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1477, + "time": 0.2278041439981479, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1489, + "time": 0.229656210209515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1489, + "time": 0.229656210209515, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1489, + "time": 0.229656210209515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1501, + "time": 0.23150827642088204, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1501, + "time": 0.23150827642088204, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1513, + "time": 0.23336034263224908, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1513, + "time": 0.23336034263224908, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1513, + "time": 0.23336034263224908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1525, + "time": 0.23521240884361616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1525, + "time": 0.23521240884361616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1537, + "time": 0.2370644750549832, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1537, + "time": 0.2370644750549832, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1537, + "time": 0.2370644750549832, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1561, + "time": 0.24076860747771733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1633, + "time": 0.2518810047459197, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1633, + "time": 0.2518810047459197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1645, + "time": 0.25373307095728675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1645, + "time": 0.25373307095728675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1657, + "time": 0.2555851371686538, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1669, + "time": 0.2574372033800208, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1669, + "time": 0.2574372033800208, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1681, + "time": 0.25928926959138787, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1693, + "time": 0.26114133580275495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1693, + "time": 0.26114133580275495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1705, + "time": 0.26299340201412197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1717, + "time": 0.26484546822548904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1717, + "time": 0.26484546822548904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1729, + "time": 0.2666975344368561, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2704016668595902, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2704016668595902, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1778, + "time": 0.2741057992823243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1802, + "time": 0.27780993170505847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.28151406412779256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1838, + "time": 0.28336613033915964, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1838, + "time": 0.28336613033915964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2852181965505267, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2852181965505267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2852181965505267, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1862, + "time": 0.28707026276189374, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1862, + "time": 0.28707026276189374, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1874, + "time": 0.2889223289732608, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1874, + "time": 0.2889223289732608, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.2889223289732608, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.2907743951846279, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1886, + "time": 0.2907743951846279, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1898, + "time": 0.2926264613959949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1898, + "time": 0.2926264613959949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, "time": 0.29633059381872906, "position": { - "x": 7, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1934, + "time": 0.2981826600300961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1934, + "time": 0.2981826600300961, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1946, + "time": 0.30003472624146316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1958, + "time": 0.30188679245283023, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1958, + "time": 0.30188679245283023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3555967125824748, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2318, + "time": 0.3574487787938419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.3593008450052089, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2342, + "time": 0.361152911216576, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2354, + "time": 0.3630049774279431, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2366, + "time": 0.3648570436393101, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3667091098506772, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3555967125824748, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2318, + "time": 0.3574487787938419, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.3593008450052089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2342, + "time": 0.361152911216576, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2354, + "time": 0.3630049774279431, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2366, + "time": 0.3648570436393101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3667091098506772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.41486283134622065, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2738, + "time": 0.42227109619168884, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.41486283134622065, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2738, + "time": 0.42227109619168884, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4741289501099664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.4778330825327005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4741289501099664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.4778330825327005, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5408033337191804, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3531, + "time": 0.5445074661419146, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5408033337191804, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3531, + "time": 0.5445074661419146, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5482115985646486, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3603, + "time": 0.5556198634101169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3603, + "time": 0.5556198634101169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3651, + "time": 0.5630281282555851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3747, + "time": 0.5778446579465216, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3795, + "time": 0.5852529227919898, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3795, + "time": 0.5852529227919898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3843, + "time": 0.5926611876374581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3939, + "time": 0.6074777173283945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3987, + "time": 0.6148859821738628, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3987, + "time": 0.6148859821738628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4035, + "time": 0.622294247019331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4035, + "time": 0.622294247019331, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4060, + "time": 0.625998379442065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4084, + "time": 0.6297025118647991, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4108, + "time": 0.6334066442875332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.6667438360921403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4348, + "time": 0.6704479685148744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4372, + "time": 0.6741521009376085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4396, + "time": 0.6778562333603426, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4420, + "time": 0.6815603657830768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4444, + "time": 0.6852644982058108, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4468, + "time": 0.688968630628545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4492, + "time": 0.6926727630512791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4516, + "time": 0.6963768954740132, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4540, + "time": 0.7000810278967473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4564, + "time": 0.7037851603194815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4588, + "time": 0.7074892927422155, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4636, + "time": 0.7148975575876838, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4684, + "time": 0.722305822433152, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7260099548558862, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4720, + "time": 0.7278620210672532, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4720, + "time": 0.7278620210672532, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7297140872786202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7297140872786202, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7297140872786202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4744, + "time": 0.7315661534899872, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4744, + "time": 0.7315661534899872, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4768, + "time": 0.7352702859127214, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4768, + "time": 0.7352702859127214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7371223521240885, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7371223521240885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7371223521240885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4792, + "time": 0.7389744183354555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4792, + "time": 0.7389744183354555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7408264845468225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7408264845468225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7408264845468225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4828, + "time": 0.7445306169695567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4900, + "time": 0.755643014237759, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4900, + "time": 0.755643014237759, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4912, + "time": 0.7574950804491261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4912, + "time": 0.7574950804491261, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7593471466604932, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7593471466604932, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7593471466604932, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4766,11 +8032,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1945, - "time": 0.30003472624146316, + "noteOrder": 4936, + "time": 0.7611992128718602, "position": { "x": 3, "y": 0 @@ -4784,16 +8050,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.3555967125824748, + "noteOrder": 4936, + "time": 0.7611992128718602, "position": { "x": 4, "y": 0 @@ -4807,16 +8073,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2317, - "time": 0.3574487787938419, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { "x": 4, "y": 0 @@ -4830,18 +8096,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2329, - "time": 0.359300845005209, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4853,16 +8119,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 3, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2341, - "time": 0.361152911216576, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { "x": 3, "y": 0 @@ -4881,13 +8147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 4, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2353, - "time": 0.3630049774279431, + "noteOrder": 4960, + "time": 0.7649033452945943, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4904,11 +8170,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 5, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2365, - "time": 0.3648570436393101, + "noteOrder": 4960, + "time": 0.7649033452945943, "position": { "x": 4, "y": 0 @@ -4927,13 +8193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 6, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2377, - "time": 0.3667091098506772, + "noteOrder": 4972, + "time": 0.7667554115059613, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4950,13 +8216,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2305, - "time": 0.3555967125824748, + "noteOrder": 4972, + "time": 0.7667554115059613, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4968,18 +8234,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 2317, - "time": 0.3574487787938419, + "noteOrder": 4972, + "time": 0.7667554115059613, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4996,13 +8262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 210, "indexInLine": 2, "isSliding": false, - "noteOrder": 2329, - "time": 0.359300845005209, + "noteOrder": 4984, + "time": 0.7686074777173284, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5019,13 +8285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 210, "indexInLine": 3, "isSliding": false, - "noteOrder": 2341, - "time": 0.361152911216576, + "noteOrder": 4984, + "time": 0.7686074777173284, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5042,13 +8308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 210, "indexInLine": 4, "isSliding": false, - "noteOrder": 2353, - "time": 0.3630049774279431, + "noteOrder": 4996, + "time": 0.7704595439286954, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5065,13 +8331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 210, "indexInLine": 5, "isSliding": false, - "noteOrder": 2365, - "time": 0.3648570436393101, + "noteOrder": 4996, + "time": 0.7704595439286954, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5088,13 +8354,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 6, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2377, - "time": 0.3667091098506772, + "noteOrder": 4996, + "time": 0.7704595439286954, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5106,18 +8372,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2689, - "time": 0.41486283134622065, + "noteOrder": 5020, + "time": 0.7741636763514295, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5129,16 +8395,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2737, - "time": 0.42227109619168884, + "noteOrder": 5092, + "time": 0.7852760736196318, "position": { "x": 6, "y": 0 @@ -5152,18 +8418,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.41486283134622065, + "noteOrder": 5092, + "time": 0.7852760736196318, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5175,18 +8441,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2737, - "time": 0.42227109619168884, + "noteOrder": 5104, + "time": 0.7871281398309989, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5198,16 +8464,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3073, - "time": 0.4741289501099665, + "noteOrder": 5104, + "time": 0.7871281398309989, "position": { "x": 6, "y": 0 @@ -5226,13 +8492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 3097, - "time": 0.47783308253270057, + "noteOrder": 5116, + "time": 0.788980206042366, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5244,18 +8510,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3073, - "time": 0.4741289501099665, + "noteOrder": 5128, + "time": 0.7908322722537331, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5272,11 +8538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3097, - "time": 0.47783308253270057, + "noteOrder": 5128, + "time": 0.7908322722537331, "position": { "x": 4, "y": 0 @@ -5295,11 +8561,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.5408033337191804, + "noteOrder": 5140, + "time": 0.7926843384651001, "position": { "x": 7, "y": 0 @@ -5318,11 +8584,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, - "time": 0.5445074661419146, + "noteOrder": 5152, + "time": 0.7945364046764672, "position": { "x": 7, "y": 0 @@ -5341,11 +8607,34 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3506, - "time": 0.5408033337191804, + "noteOrder": 5152, + "time": 0.7945364046764672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5164, + "time": 0.7963884708878343, "position": { "x": 3, "y": 0 @@ -5364,11 +8653,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, - "time": 0.5445074661419146, + "noteOrder": 5176, + "time": 0.7982405370992013, "position": { "x": 3, "y": 0 @@ -5387,13 +8676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3554, - "time": 0.5482115985646487, + "noteOrder": 5176, + "time": 0.7982405370992013, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5405,18 +8694,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 3602, - "time": 0.555619863410117, + "noteOrder": 5381, + "time": 0.8297256626924413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5393, + "time": 0.8315777289038083, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5428,18 +8740,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3602, - "time": 0.555619863410117, + "noteOrder": 5393, + "time": 0.8315777289038083, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5456,13 +8768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.5630281282555851, + "noteOrder": 5405, + "time": 0.8334297951151753, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5474,16 +8786,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.5778446579465216, + "noteOrder": 5417, + "time": 0.8352818613265424, "position": { "x": 7, "y": 0 @@ -5502,13 +8814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3794, - "time": 0.5852529227919898, + "noteOrder": 5417, + "time": 0.8352818613265424, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5525,11 +8837,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3794, - "time": 0.5852529227919898, + "noteOrder": 5429, + "time": 0.8371339275379095, "position": { "x": 3, "y": 0 @@ -5548,11 +8860,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, - "time": 0.5926611876374581, + "noteOrder": 5441, + "time": 0.8389859937492765, "position": { "x": 3, "y": 0 @@ -5571,13 +8883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3938, - "time": 0.6074777173283945, + "noteOrder": 5441, + "time": 0.8389859937492765, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5589,18 +8901,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3986, - "time": 0.6148859821738627, + "noteOrder": 5453, + "time": 0.8408380599606436, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5612,16 +8924,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3986, - "time": 0.6148859821738627, + "noteOrder": 5453, + "time": 0.8408380599606436, "position": { "x": 3, "y": 0 @@ -5640,13 +8952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.622294247019331, + "noteOrder": 5501, + "time": 0.8482463248061118, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5658,16 +8970,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.622294247019331, + "noteOrder": 5525, + "time": 0.851950457228846, "position": { "x": 7, "y": 0 @@ -5686,13 +8998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4058, - "time": 0.6259983794420652, + "noteOrder": 5549, + "time": 0.85565458965158, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5709,11 +9021,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4082, - "time": 0.6297025118647992, + "noteOrder": 5549, + "time": 0.85565458965158, "position": { "x": 3, "y": 0 @@ -5732,11 +9044,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4106, - "time": 0.6334066442875332, + "noteOrder": 5573, + "time": 0.8593587220743142, "position": { "x": 3, "y": 0 @@ -5755,13 +9067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4322, - "time": 0.6667438360921404, + "noteOrder": 5597, + "time": 0.8630628544970483, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5773,18 +9085,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.6704479685148744, + "noteOrder": 5621, + "time": 0.8667669869197824, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5801,13 +9113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.6741521009376085, + "noteOrder": 5633, + "time": 0.8686190531311494, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5819,18 +9131,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4394, - "time": 0.6778562333603426, + "noteOrder": 5633, + "time": 0.8686190531311494, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5842,18 +9154,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4418, - "time": 0.6815603657830768, + "noteOrder": 5645, + "time": 0.8704711193425165, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5865,18 +9177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4442, - "time": 0.6852644982058109, + "noteOrder": 5657, + "time": 0.8723231855538836, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5888,16 +9200,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4466, - "time": 0.6889686306285451, + "noteOrder": 5657, + "time": 0.8723231855538836, "position": { "x": 4, "y": 0 @@ -5916,13 +9228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 4490, - "time": 0.6926727630512791, + "noteOrder": 5669, + "time": 0.8741752517652507, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5934,18 +9246,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, - "time": 0.6963768954740133, + "noteOrder": 5693, + "time": 0.8778793841879847, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5962,13 +9274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 4538, - "time": 0.7000810278967473, + "noteOrder": 5717, + "time": 0.8815835166107189, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5980,18 +9292,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4562, - "time": 0.7037851603194815, + "noteOrder": 5741, + "time": 0.885287649033453, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6008,13 +9320,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 247, "indexInLine": 1, "isSliding": false, - "noteOrder": 4586, - "time": 0.7074892927422156, + "noteOrder": 5765, + "time": 0.8889917814561871, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6026,18 +9338,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4634, - "time": 0.7148975575876838, + "noteOrder": 5789, + "time": 0.8926959138789212, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6054,13 +9366,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, + "lineGroupId": 248, "indexInLine": 1, "isSliding": false, - "noteOrder": 4682, - "time": 0.722305822433152, + "noteOrder": 5789, + "time": 0.8926959138789212, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6072,18 +9384,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4706, - "time": 0.7260099548558862, + "noteOrder": 5813, + "time": 0.8964000463016554, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6095,18 +9407,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4730, - "time": 0.7297140872786202, + "noteOrder": 5837, + "time": 0.9001041787243894, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6123,11 +9435,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4754, - "time": 0.7334182197013543, + "noteOrder": 5861, + "time": 0.9038083111471235, "position": { "x": 7, "y": 0 @@ -6146,11 +9458,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4778, - "time": 0.7371223521240885, + "noteOrder": 5873, + "time": 0.9056603773584906, "position": { "x": 7, "y": 0 @@ -6164,18 +9476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4802, - "time": 0.7408264845468227, + "noteOrder": 5873, + "time": 0.9056603773584906, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6192,13 +9504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 251, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4826, - "time": 0.7445306169695568, + "noteOrder": 5885, + "time": 0.9075124435698576, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6215,13 +9527,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 2, + "lineGroupId": 251, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4898, - "time": 0.755643014237759, + "noteOrder": 5885, + "time": 0.9075124435698576, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6238,13 +9550,36 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4898, - "time": 0.755643014237759, + "noteOrder": 5885, + "time": 0.9075124435698576, "position": { - "x": 3, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5897, + "time": 0.9093645097812247, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -6261,13 +9596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4922, - "time": 0.7593471466604932, + "noteOrder": 5897, + "time": 0.9093645097812247, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6279,18 +9614,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4946, - "time": 0.7630512790832273, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6307,13 +9642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4970, - "time": 0.7667554115059614, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6325,18 +9660,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4994, - "time": 0.7704595439286954, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6348,18 +9683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 253, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5018, - "time": 0.7741636763514296, + "noteOrder": 5921, + "time": 0.9130686422039588, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6371,16 +9706,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 2, + "lineGroupId": 253, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5090, - "time": 0.7852760736196319, + "noteOrder": 5921, + "time": 0.9130686422039588, "position": { "x": 6, "y": 0 @@ -6394,18 +9729,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5090, - "time": 0.7852760736196319, + "noteOrder": 5933, + "time": 0.9149207084153258, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6422,13 +9757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5114, - "time": 0.7889802060423661, + "noteOrder": 5933, + "time": 0.9149207084153258, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6440,16 +9775,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5138, - "time": 0.7926843384651001, + "noteOrder": 5933, + "time": 0.9149207084153258, "position": { "x": 7, "y": 0 @@ -6463,18 +9798,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5162, - "time": 0.7963884708878343, + "noteOrder": 5945, + "time": 0.9167727746266929, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6491,13 +9826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5379, - "time": 0.8297256626924413, + "noteOrder": 5945, + "time": 0.9167727746266929, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6514,13 +9849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5403, - "time": 0.8334297951151755, + "noteOrder": 5981, + "time": 0.922328973260794, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6537,11 +9872,11 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5427, - "time": 0.8371339275379096, + "noteOrder": 5993, + "time": 0.9241810394721611, "position": { "x": 3, "y": 0 @@ -6555,18 +9890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5499, - "time": 0.8482463248061118, + "noteOrder": 5993, + "time": 0.9241810394721611, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6583,11 +9918,11 @@ "isPlayAudio": false }, { - "lineGroupId": 236, + "lineGroupId": 260, "indexInLine": 1, "isSliding": false, - "noteOrder": 5523, - "time": 0.851950457228846, + "noteOrder": 6029, + "time": 0.9297372381062623, "position": { "x": 7, "y": 0 @@ -6601,18 +9936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, + "lineGroupId": 260, "indexInLine": 2, "isSliding": false, - "noteOrder": 5547, - "time": 0.8556545896515801, + "noteOrder": 6041, + "time": 0.9315893043176294, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6624,18 +9959,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5547, - "time": 0.8556545896515801, + "noteOrder": 6041, + "time": 0.9315893043176294, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6652,13 +9987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 260, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5571, - "time": 0.8593587220743142, + "noteOrder": 6053, + "time": 0.9334413705289963, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6675,11 +10010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 2, + "lineGroupId": 260, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5595, - "time": 0.8630628544970482, + "noteOrder": 6053, + "time": 0.9334413705289963, "position": { "x": 5, "y": 0 @@ -6698,11 +10033,11 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5619, - "time": 0.8667669869197824, + "noteOrder": 6053, + "time": 0.9334413705289963, "position": { "x": 7, "y": 0 @@ -6721,13 +10056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5643, - "time": 0.8704711193425165, + "noteOrder": 6065, + "time": 0.9352934367403635, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6739,18 +10074,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5667, - "time": 0.8741752517652507, + "noteOrder": 6065, + "time": 0.9352934367403635, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6767,11 +10102,11 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 1, + "lineGroupId": 261, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5691, - "time": 0.8778793841879848, + "noteOrder": 6077, + "time": 0.9371455029517305, "position": { "x": 6, "y": 0 @@ -6790,11 +10125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5715, - "time": 0.8815835166107189, + "noteOrder": 6077, + "time": 0.9371455029517305, "position": { "x": 5, "y": 0 @@ -6808,18 +10143,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 262, "indexInLine": 1, "isSliding": false, - "noteOrder": 5739, - "time": 0.885287649033453, + "noteOrder": 6077, + "time": 0.9371455029517305, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6836,13 +10171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5763, - "time": 0.8889917814561871, + "noteOrder": 6089, + "time": 0.9389975691630976, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6854,16 +10189,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5787, - "time": 0.8926959138789212, + "noteOrder": 6089, + "time": 0.9389975691630976, "position": { "x": 6, "y": 0 @@ -6877,41 +10212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 248, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5787, - "time": 0.8926959138789212, - "position": { - "x": 5, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5811, - "time": 0.8964000463016554, + "noteOrder": 6101, + "time": 0.9408496353744646, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6928,13 +10240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 2, + "lineGroupId": 262, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5835, - "time": 0.9001041787243894, + "noteOrder": 6101, + "time": 0.9408496353744646, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6951,11 +10263,11 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5859, - "time": 0.9038083111471236, + "noteOrder": 6101, + "time": 0.9408496353744646, "position": { "x": 7, "y": 0 @@ -6974,11 +10286,11 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5883, - "time": 0.9075124435698577, + "noteOrder": 6113, + "time": 0.9427017015858318, "position": { "x": 7, "y": 0 @@ -6992,18 +10304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5907, - "time": 0.9112165759925918, + "noteOrder": 6113, + "time": 0.9427017015858318, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7020,13 +10332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5931, - "time": 0.9149207084153259, + "noteOrder": 6125, + "time": 0.9445537677971987, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7038,18 +10350,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 257, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5979, - "time": 0.9223289732607941, + "noteOrder": 6125, + "time": 0.9445537677971987, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7066,13 +10378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6027, - "time": 0.9297372381062624, + "noteOrder": 6149, + "time": 0.9482579002199328, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7089,13 +10401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6051, - "time": 0.9334413705289966, + "noteOrder": 6161, + "time": 0.9501099664313, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7107,18 +10419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6075, - "time": 0.9371455029517305, + "noteOrder": 6161, + "time": 0.9501099664313, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7135,13 +10447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6099, - "time": 0.9408496353744646, + "noteOrder": 6173, + "time": 0.951962032642667, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7153,16 +10465,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6147, - "time": 0.948257900219933, + "noteOrder": 6173, + "time": 0.951962032642667, "position": { "x": 4, "y": 0 @@ -7182,9 +10494,9 @@ }, { "lineGroupId": 265, - "indexInLine": 3, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6243, + "noteOrder": 6245, "time": 0.9630744299108693, "position": { "x": 4, diff --git a/tracks/CHAPTER II(Ready Go)/187_difficulty_1b.json b/tracks/CHAPTER II(Ready Go)/187_difficulty_1b.json index 63e8af0d..0f2fa59d 100644 --- a/tracks/CHAPTER II(Ready Go)/187_difficulty_1b.json +++ b/tracks/CHAPTER II(Ready Go)/187_difficulty_1b.json @@ -134,7 +134,7 @@ }, { "noteOrder": 384, - "time": 0.05926611876374581, + "time": 0.0592661187637458, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.09630744299108693, "position": { "x": 5, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.11853223752749162, + "noteOrder": 769, + "time": 0.1185322375274916, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.12223636995022573, + "noteOrder": 793, + "time": 0.12223636995022572, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12594050237295984, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12594050237295984, "position": { "x": 4, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.12964463479569396, + "noteOrder": 841, + "time": 0.12964463479569394, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.12964463479569396, + "noteOrder": 841, + "time": 0.12964463479569394, "position": { "x": 3, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 865, "time": 0.13334876721842806, "position": { "x": 7, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 888, - "time": 0.13705289964116218, + "noteOrder": 889, + "time": 0.13705289964116216, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 913, "time": 0.14075703206389628, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 924, + "noteOrder": 925, "time": 0.14260909827526336, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 961, "time": 0.14816529690936453, "position": { "x": 3, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 985, "time": 0.15186942933209863, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1009, "time": 0.15557356175483275, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1020, - "time": 0.1574256279661998, + "noteOrder": 1021, + "time": 0.15742562796619977, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1081, - "time": 0.1666859590230351, + "time": 0.16668595902303507, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1129, - "time": 0.17409422386850332, + "time": 0.1740942238685033, "position": { "x": 6, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1201, - "time": 0.18520662113670566, + "time": 0.18520662113670563, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1537, - "time": 0.23706447505498324, + "time": 0.2370644750549832, "position": { "x": 3, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1585, - "time": 0.24447273990045146, + "time": 0.24447273990045143, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1753, + "noteOrder": 1754, "time": 0.2704016668595902, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.2778099317050585, + "noteOrder": 1802, + "time": 0.27780993170505847, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.29633059381872906, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1945, + "noteOrder": 1946, "time": 0.30003472624146316, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.30373885866419725, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1981, + "noteOrder": 1982, "time": 0.30559092487556433, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.30744299108693135, + "noteOrder": 1994, + "time": 0.3074429910869314, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3185553883551337, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.3333719180460702, + "noteOrder": 2162, + "time": 0.33337191804607014, "position": { "x": 5, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3407801828915384, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.34448431531427254, + "noteOrder": 2234, + "time": 0.3444843153142725, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.34818844773700663, + "noteOrder": 2258, + "time": 0.3481884477370066, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.35189258015974073, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3778215071188795, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.39263803680981596, + "noteOrder": 2546, + "time": 0.3926380368098159, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2593, - "time": 0.4000463016552842, + "noteOrder": 2594, + "time": 0.40004630165528415, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.4037504340780183, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.40745456650075246, + "noteOrder": 2642, + "time": 0.4074545665007524, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.4111586989234865, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.42227109619168884, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.425975228614423, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2977, + "noteOrder": 2979, "time": 0.45931242041903, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3001, - "time": 0.46301655284176413, + "noteOrder": 3003, + "time": 0.4630165528417641, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3025, - "time": 0.4667206852644983, + "noteOrder": 3027, + "time": 0.46672068526449817, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3049, + "noteOrder": 3051, "time": 0.4704248176872323, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.48153721495543467, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4852413473781688, + "noteOrder": 3147, + "time": 0.48524134737816876, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5185785391827759, + "noteOrder": 3363, + "time": 0.5185785391827757, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.5222826716055099, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3410, - "time": 0.525986804028244, + "noteOrder": 3411, + "time": 0.5259868040282439, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.5296909364509782, + "noteOrder": 3435, + "time": 0.5296909364509781, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3459, "time": 0.5333950688737122, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.5370992012964464, + "noteOrder": 3483, + "time": 0.5370992012964463, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3506, + "noteOrder": 3507, "time": 0.5408033337191804, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3506, + "noteOrder": 3507, "time": 0.5408033337191804, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3554, - "time": 0.5482115985646487, + "noteOrder": 3555, + "time": 0.5482115985646486, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.555619863410117, + "noteOrder": 3603, + "time": 0.5556198634101169, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3650, + "noteOrder": 3651, "time": 0.5630281282555851, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.5667322606783193, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3699, "time": 0.5704363931010534, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3722, - "time": 0.5741405255237876, + "noteOrder": 3723, + "time": 0.5741405255237875, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3747, "time": 0.5778446579465216, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3795, "time": 0.5852529227919898, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3842, + "noteOrder": 3843, "time": 0.5926611876374581, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3867, "time": 0.5963653200601922, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3890, + "noteOrder": 3891, "time": 0.6000694524829263, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.6037735849056604, + "noteOrder": 3915, + "time": 0.6037735849056605, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3938, + "noteOrder": 3939, "time": 0.6074777173283945, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3986, - "time": 0.6148859821738627, + "noteOrder": 3987, + "time": 0.6148859821738628, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4034, + "noteOrder": 4035, "time": 0.622294247019331, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4058, - "time": 0.6259983794420652, + "noteOrder": 4060, + "time": 0.625998379442065, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.6297025118647992, + "noteOrder": 4084, + "time": 0.6297025118647991, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.6334066442875332, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4322, - "time": 0.6667438360921404, + "noteOrder": 4324, + "time": 0.6667438360921403, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4346, + "noteOrder": 4348, "time": 0.6704479685148744, "position": { "x": 8, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4372, "time": 0.6741521009376085, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.6778562333603426, "position": { "x": 2, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.6815603657830768, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.6852644982058109, + "noteOrder": 4444, + "time": 0.6852644982058108, "position": { "x": 8, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.6889686306285451, + "noteOrder": 4468, + "time": 0.688968630628545, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.6926727630512791, "position": { "x": 2, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4612, "time": 0.7111934251649497, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4634, + "noteOrder": 4636, "time": 0.7148975575876838, "position": { "x": 5, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.718601690010418, + "noteOrder": 4660, + "time": 0.7186016900104178, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4682, + "noteOrder": 4684, "time": 0.722305822433152, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4802, - "time": 0.7408264845468227, + "noteOrder": 4804, + "time": 0.7408264845468225, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.7445306169695568, + "noteOrder": 4828, + "time": 0.7445306169695567, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.7482347493922907, + "noteOrder": 4852, + "time": 0.7482347493922908, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4876, "time": 0.7519388818150249, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4996, "time": 0.7704595439286954, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7741636763514296, + "noteOrder": 5020, + "time": 0.7741636763514295, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5042, - "time": 0.7778678087741637, + "noteOrder": 5044, + "time": 0.7778678087741636, "position": { "x": 5, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.7815719411968979, + "noteOrder": 5068, + "time": 0.7815719411968978, "position": { "x": 6, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5187, - "time": 0.8000926033105684, + "noteOrder": 5188, + "time": 0.8000926033105683, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5212, "time": 0.8037967357333025, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8075008681560366, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.8112050005787708, + "noteOrder": 5261, + "time": 0.8112050005787707, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.818613265424239, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.8260215302697071, "position": { "x": 5, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.8297256626924413, "position": { "x": 7, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.8334297951151755, + "noteOrder": 5405, + "time": 0.8334297951151753, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5427, - "time": 0.8371339275379096, + "noteOrder": 5429, + "time": 0.8371339275379095, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.8408380599606435, + "noteOrder": 5453, + "time": 0.8408380599606436, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5499, + "noteOrder": 5501, "time": 0.8482463248061118, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.851950457228846, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5571, + "noteOrder": 5573, "time": 0.8593587220743142, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5595, - "time": 0.8630628544970482, + "noteOrder": 5597, + "time": 0.8630628544970483, "position": { "x": 6, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5621, "time": 0.8667669869197824, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5645, "time": 0.8704711193425165, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5691, - "time": 0.8778793841879848, + "noteOrder": 5693, + "time": 0.8778793841879847, "position": { "x": 4, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5739, + "noteOrder": 5741, "time": 0.885287649033453, "position": { "x": 6, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5811, + "noteOrder": 5813, "time": 0.8964000463016554, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5835, + "noteOrder": 5837, "time": 0.9001041787243894, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5955, + "noteOrder": 5957, "time": 0.91862484083806, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5979, - "time": 0.9223289732607941, + "noteOrder": 5981, + "time": 0.922328973260794, "position": { "x": 5, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6003, - "time": 0.9260331056835283, + "noteOrder": 6005, + "time": 0.9260331056835281, "position": { "x": 3, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6027, - "time": 0.9297372381062624, + "noteOrder": 6029, + "time": 0.9297372381062623, "position": { "x": 5, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6099, + "noteOrder": 6101, "time": 0.9408496353744646, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.948257900219933, + "noteOrder": 6149, + "time": 0.9482579002199328, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.9556661650654011, + "noteOrder": 6197, + "time": 0.955666165065401, "position": { "x": 6, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6219, + "noteOrder": 6221, "time": 0.9593702974881352, "position": { "x": 2, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6243, + "noteOrder": 6245, "time": 0.9630744299108693, "position": { "x": 7, @@ -2856,10 +2856,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.014816529690936452, + "time": 0.01481652969093645, "position": { "x": 7, "y": 0 @@ -2879,10 +2879,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.029633059381872905, + "time": 0.0296330593818729, "position": { "x": 7, "y": 0 @@ -2902,10 +2902,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.029633059381872905, + "time": 0.0296330593818729, "position": { "x": 3, "y": 0 @@ -2925,7 +2925,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.04444958907280935, @@ -2948,7 +2948,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.07408264845468227, @@ -2971,7 +2971,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 576, "time": 0.0888991781456187, @@ -2994,7 +2994,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 576, "time": 0.0888991781456187, @@ -3017,9 +3017,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10371570783655516, "position": { "x": 3, @@ -3040,9 +3040,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10371570783655516, "position": { "x": 7, @@ -3063,9 +3063,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.11112397268202338, "position": { "x": 7, @@ -3086,9 +3086,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.11112397268202338, "position": { "x": 3, @@ -3109,10 +3109,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 768, - "time": 0.11853223752749162, + "noteOrder": 769, + "time": 0.1185322375274916, "position": { "x": 3, "y": 0 @@ -3132,7 +3132,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, "time": 0.16298182660030094, @@ -3155,10 +3155,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1081, - "time": 0.1666859590230351, + "time": 0.16668595902303507, "position": { "x": 6, "y": 0 @@ -3178,7 +3178,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1105, "time": 0.1703900914457692, @@ -3201,10 +3201,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1129, - "time": 0.17409422386850332, + "time": 0.1740942238685033, "position": { "x": 4, "y": 0 @@ -3224,7 +3224,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, "time": 0.19261488598217386, @@ -3246,11 +3246,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.2000231508276421, + "noteOrder": 1273, + "time": 0.19631901840490795, "position": { "x": 7, "y": 0 @@ -3264,18 +3264,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1441, - "time": 0.22224794536404677, + "noteOrder": 1273, + "time": 0.19631901840490795, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3287,18 +3287,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1489, - "time": 0.229656210209515, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3315,13 +3315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1633, - "time": 0.2518810047459197, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3338,13 +3338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.2592892695913879, + "noteOrder": 1297, + "time": 0.20002315082764208, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3361,11 +3361,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.2666975344368561, + "noteOrder": 1321, + "time": 0.2037272832503762, "position": { "x": 7, "y": 0 @@ -3379,18 +3379,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1753, - "time": 0.2704016668595902, + "noteOrder": 1321, + "time": 0.2037272832503762, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3402,18 +3402,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1777, - "time": 0.27410579928232437, + "noteOrder": 1345, + "time": 0.20743141567311033, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3430,13 +3430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1801, - "time": 0.2778099317050585, + "noteOrder": 1345, + "time": 0.20743141567311033, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3453,13 +3453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.28151406412779256, + "noteOrder": 1441, + "time": 0.22224794536404677, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3471,18 +3471,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1873, - "time": 0.2889223289732608, + "noteOrder": 1465, + "time": 0.22595207778678086, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3499,13 +3499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.3111471235096655, + "noteOrder": 1465, + "time": 0.22595207778678086, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3522,13 +3522,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2113, - "time": 0.3259636532006019, + "noteOrder": 1489, + "time": 0.229656210209515, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3545,13 +3545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2113, - "time": 0.3259636532006019, + "noteOrder": 1489, + "time": 0.229656210209515, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3563,18 +3563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.3407801828915384, + "noteOrder": 1489, + "time": 0.229656210209515, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3591,13 +3591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, - "time": 0.3555967125824748, + "noteOrder": 1513, + "time": 0.23336034263224908, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3609,16 +3609,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2377, - "time": 0.3667091098506772, + "noteOrder": 1513, + "time": 0.23336034263224908, "position": { "x": 4, "y": 0 @@ -3632,18 +3632,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2305, - "time": 0.3555967125824748, + "noteOrder": 1537, + "time": 0.2370644750549832, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3660,13 +3660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2377, - "time": 0.3667091098506772, + "noteOrder": 1537, + "time": 0.2370644750549832, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3683,11 +3683,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.3704132422734113, + "noteOrder": 1633, + "time": 0.2518810047459197, "position": { "x": 7, "y": 0 @@ -3706,11 +3706,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2497, - "time": 0.3852297719643477, + "noteOrder": 1657, + "time": 0.2555851371686538, "position": { "x": 7, "y": 0 @@ -3729,13 +3729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2497, - "time": 0.3852297719643477, + "noteOrder": 1657, + "time": 0.2555851371686538, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3747,16 +3747,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 2593, - "time": 0.4000463016552842, + "noteOrder": 1681, + "time": 0.25928926959138787, "position": { "x": 3, "y": 0 @@ -3775,13 +3775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2689, - "time": 0.41486283134622065, + "noteOrder": 1705, + "time": 0.26299340201412197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3798,11 +3798,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2713, - "time": 0.4185669637689548, + "noteOrder": 1705, + "time": 0.26299340201412197, "position": { "x": 4, "y": 0 @@ -3821,13 +3821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.41486283134622065, + "noteOrder": 1729, + "time": 0.2666975344368561, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3844,13 +3844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2713, - "time": 0.4185669637689548, + "noteOrder": 1754, + "time": 0.2704016668595902, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3867,13 +3867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, - "time": 0.4296793610371571, + "noteOrder": 1778, + "time": 0.2741057992823243, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3885,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2833, - "time": 0.43708762588262534, + "noteOrder": 1802, + "time": 0.27780993170505847, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3908,18 +3908,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2833, - "time": 0.43708762588262534, + "noteOrder": 1826, + "time": 0.28151406412779256, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3931,18 +3931,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2881, - "time": 0.44449589072809353, + "noteOrder": 1850, + "time": 0.2852181965505267, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3954,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2881, - "time": 0.44449589072809353, + "noteOrder": 1850, + "time": 0.2852181965505267, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3982,13 +3982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2929, - "time": 0.4519041555735618, + "noteOrder": 1874, + "time": 0.2889223289732608, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4005,13 +4005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2929, - "time": 0.4519041555735618, + "noteOrder": 1874, + "time": 0.2889223289732608, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4023,18 +4023,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2977, - "time": 0.45931242041903, + "noteOrder": 1874, + "time": 0.2889223289732608, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4051,13 +4051,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3073, - "time": 0.4741289501099665, + "noteOrder": 1898, + "time": 0.2926264613959949, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4074,13 +4074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3097, - "time": 0.47783308253270057, + "noteOrder": 1898, + "time": 0.2926264613959949, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4097,13 +4097,1347 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1922, + "time": 0.29633059381872906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1922, + "time": 0.29633059381872906, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.3111471235096655, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3259636532006019, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3259636532006019, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3407801828915384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3555967125824748, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3667091098506772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3555967125824748, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3667091098506772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.37041324227341127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2498, + "time": 0.3852297719643477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2498, + "time": 0.3852297719643477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2594, + "time": 0.40004630165528415, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.41486283134622065, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2714, + "time": 0.41856696376895475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.41486283134622065, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2714, + "time": 0.41856696376895475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2786, + "time": 0.4296793610371571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2834, + "time": 0.43708762588262534, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.43708762588262534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2882, + "time": 0.44449589072809353, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2882, + "time": 0.44449589072809353, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.4519041555735617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2931, + "time": 0.4519041555735617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2979, + "time": 0.45931242041903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4741289501099664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.4778330825327005, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4741289501099664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.4778330825327005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.48894547980090286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4963537446463711, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4963537446463711, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5037620094918394, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5037620094918394, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3315, + "time": 0.5111702743373076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3315, + "time": 0.5111702743373076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3363, + "time": 0.5185785391827757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4132, + "time": 0.6371107767102674, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4228, + "time": 0.6519273064012038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4180, + "time": 0.6445190415557356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4228, + "time": 0.6519273064012038, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4516, + "time": 0.6963768954740132, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4540, + "time": 0.7000810278967473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4564, + "time": 0.7037851603194815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4588, + "time": 0.7074892927422155, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7260099548558862, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7297140872786202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7297140872786202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7334182197013543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7371223521240885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7371223521240885, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7408264845468225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7408264845468225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4900, + "time": 0.755643014237759, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7593471466604932, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3073, - "time": 0.4741289501099665, + "noteOrder": 4924, + "time": 0.7593471466604932, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4115,18 +5449,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3097, - "time": 0.47783308253270057, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4138,18 +5472,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3170, - "time": 0.4889454798009029, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4166,11 +5500,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, - "time": 0.4963537446463711, + "noteOrder": 4948, + "time": 0.7630512790832272, "position": { "x": 3, "y": 0 @@ -4184,18 +5518,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.4963537446463711, + "noteOrder": 4972, + "time": 0.7667554115059613, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4212,13 +5546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.5037620094918394, + "noteOrder": 4972, + "time": 0.7667554115059613, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4235,13 +5569,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3266, - "time": 0.5037620094918394, + "noteOrder": 4996, + "time": 0.7704595439286954, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4253,18 +5587,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3314, - "time": 0.5111702743373076, + "noteOrder": 4996, + "time": 0.7704595439286954, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4276,16 +5610,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3314, - "time": 0.5111702743373076, + "noteOrder": 5092, + "time": 0.7852760736196318, "position": { "x": 7, "y": 0 @@ -4304,11 +5638,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.5185785391827759, + "noteOrder": 5116, + "time": 0.788980206042366, "position": { "x": 7, "y": 0 @@ -4327,13 +5661,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4130, - "time": 0.6371107767102674, + "noteOrder": 5116, + "time": 0.788980206042366, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4350,13 +5684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.6519273064012038, + "noteOrder": 5140, + "time": 0.7926843384651001, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4368,16 +5702,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4178, - "time": 0.6445190415557357, + "noteOrder": 5164, + "time": 0.7963884708878343, "position": { "x": 3, "y": 0 @@ -4396,13 +5730,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4226, - "time": 0.6519273064012038, + "noteOrder": 5164, + "time": 0.7963884708878343, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4419,11 +5753,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4514, - "time": 0.6963768954740133, + "noteOrder": 5285, + "time": 0.8149091330015048, "position": { "x": 7, "y": 0 @@ -4442,11 +5776,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4538, - "time": 0.7000810278967473, + "noteOrder": 5309, + "time": 0.818613265424239, "position": { "x": 7, "y": 0 @@ -4465,11 +5799,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4562, - "time": 0.7037851603194815, + "noteOrder": 5333, + "time": 0.822317397846973, "position": { "x": 3, "y": 0 @@ -4488,11 +5822,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4586, - "time": 0.7074892927422156, + "noteOrder": 5357, + "time": 0.8260215302697071, "position": { "x": 3, "y": 0 @@ -4511,11 +5845,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, - "time": 0.7260099548558862, + "noteOrder": 5501, + "time": 0.8482463248061118, "position": { "x": 7, "y": 0 @@ -4534,11 +5868,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4754, - "time": 0.7334182197013543, + "noteOrder": 5525, + "time": 0.851950457228846, "position": { "x": 7, "y": 0 @@ -4552,16 +5886,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4898, - "time": 0.755643014237759, + "noteOrder": 5549, + "time": 0.85565458965158, "position": { "x": 3, "y": 0 @@ -4580,11 +5914,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4946, - "time": 0.7630512790832273, + "noteOrder": 5573, + "time": 0.8593587220743142, "position": { "x": 3, "y": 0 @@ -4598,18 +5932,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5090, - "time": 0.7852760736196319, + "noteOrder": 5669, + "time": 0.8741752517652507, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4626,13 +5960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5138, - "time": 0.7926843384651001, + "noteOrder": 5693, + "time": 0.8778793841879847, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4644,18 +5978,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5283, - "time": 0.8149091330015049, + "noteOrder": 5717, + "time": 0.8815835166107189, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4667,18 +6001,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5307, - "time": 0.818613265424239, + "noteOrder": 5741, + "time": 0.885287649033453, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4690,18 +6024,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5331, - "time": 0.822317397846973, + "noteOrder": 5765, + "time": 0.8889917814561871, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4713,18 +6047,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5355, - "time": 0.8260215302697071, + "noteOrder": 5789, + "time": 0.8926959138789212, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4736,18 +6070,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5499, - "time": 0.8482463248061118, + "noteOrder": 5789, + "time": 0.8926959138789212, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4759,18 +6093,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5523, - "time": 0.851950457228846, + "noteOrder": 5837, + "time": 0.9001041787243894, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4782,18 +6116,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5547, - "time": 0.8556545896515801, + "noteOrder": 5861, + "time": 0.9038083111471235, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4805,18 +6139,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5571, - "time": 0.8593587220743142, + "noteOrder": 5885, + "time": 0.9075124435698576, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4828,16 +6162,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5667, - "time": 0.8741752517652507, + "noteOrder": 5885, + "time": 0.9075124435698576, "position": { "x": 6, "y": 0 @@ -4856,11 +6190,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5691, - "time": 0.8778793841879848, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { "x": 6, "y": 0 @@ -4879,13 +6213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5715, - "time": 0.8815835166107189, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4897,18 +6231,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 5739, - "time": 0.885287649033453, + "noteOrder": 5909, + "time": 0.9112165759925916, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4925,13 +6259,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5763, - "time": 0.8889917814561871, + "noteOrder": 5933, + "time": 0.9149207084153258, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4943,16 +6277,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5787, - "time": 0.8926959138789212, + "noteOrder": 5933, + "time": 0.9149207084153258, "position": { "x": 6, "y": 0 @@ -4966,18 +6300,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5787, - "time": 0.8926959138789212, + "noteOrder": 6053, + "time": 0.9334413705289963, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4989,18 +6323,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5835, - "time": 0.9001041787243894, + "noteOrder": 6077, + "time": 0.9371455029517305, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5012,18 +6346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5859, - "time": 0.9038083111471236, + "noteOrder": 6077, + "time": 0.9371455029517305, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5040,13 +6374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5907, - "time": 0.9112165759925918, + "noteOrder": 6101, + "time": 0.9408496353744646, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5058,16 +6392,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6051, - "time": 0.9334413705289966, + "noteOrder": 6101, + "time": 0.9408496353744646, "position": { "x": 7, "y": 0 @@ -5087,10 +6421,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6171, - "time": 0.9519620326426671, + "noteOrder": 6173, + "time": 0.951962032642667, "position": { "x": 4, "y": 0 @@ -5110,9 +6444,9 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6243, + "noteOrder": 6245, "time": 0.9630744299108693, "position": { "x": 4, diff --git a/tracks/CHAPTER II(Ready Go)/info.json b/tracks/CHAPTER II(Ready Go)/info.json index e6c326da..039e9b20 100644 --- a/tracks/CHAPTER II(Ready Go)/info.json +++ b/tracks/CHAPTER II(Ready Go)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "CHAPTER II(Ready Go)", - "SongLength": "134.661224", + "SongLength": "124.708571", "SongAuthorName": "kors k feat.\u798f\u5cf6\u862d\u4e16 with \u5449\u572d\u5d07", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Catastrophic Dance/362_difficulty_1a.json b/tracks/Catastrophic Dance/362_difficulty_1a.json index d7810ae8..542c6537 100644 --- a/tracks/Catastrophic Dance/362_difficulty_1a.json +++ b/tracks/Catastrophic Dance/362_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 484, - "time": 0.06993771172549447, + "time": 0.06993771172549448, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 580, - "time": 0.08392525407059337, + "time": 0.08392525407059338, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 629, - "time": 0.09091902524314281, + "time": 0.09091902524314284, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 701, - "time": 0.10140968200196698, + "time": 0.10140968200196701, "position": { "x": 4, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 749, + "noteOrder": 750, "time": 0.10840345317451644, "position": { "x": 6, @@ -134,7 +134,7 @@ }, { "noteOrder": 774, - "time": 0.11190033876079117, + "time": 0.11190033876079118, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 798, - "time": 0.11539722434706588, + "time": 0.1153972243470659, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 822, - "time": 0.1188941099333406, + "time": 0.11889410993334061, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 846, - "time": 0.12239099551961533, + "noteOrder": 847, + "time": 0.12239099551961535, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 895, - "time": 0.12938476669216478, + "time": 0.1293847666921648, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 943, - "time": 0.1363785378647142, + "time": 0.13637853786471424, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 991, - "time": 0.14337230903726367, + "noteOrder": 992, + "time": 0.1433723090372637, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1113, "time": 0.1608567369686373, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1136, + "noteOrder": 1137, "time": 0.16435362255491204, "position": { "x": 6, @@ -374,7 +374,7 @@ }, { "noteOrder": 1233, - "time": 0.1783411649000109, + "time": 0.17834116490001092, "position": { "x": 5, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1257, - "time": 0.18183805048628562, + "noteOrder": 1258, + "time": 0.18183805048628568, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1281, - "time": 0.18533493607256035, + "noteOrder": 1282, + "time": 0.18533493607256038, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1306, - "time": 0.18883182165883508, + "time": 0.1888318216588351, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1330, - "time": 0.1923287072451098, + "time": 0.19232870724510984, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1378, + "noteOrder": 1379, "time": 0.19932247841765927, "position": { "x": 5, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1426, - "time": 0.2063162495902087, + "noteOrder": 1427, + "time": 0.20631624959020872, "position": { "x": 5, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1451, - "time": 0.20981313517648342, + "time": 0.20981313517648345, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1451, - "time": 0.20981313517648342, + "time": 0.20981313517648345, "position": { "x": 4, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1499, + "noteOrder": 1500, "time": 0.21680690634903288, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1523, + "noteOrder": 1524, "time": 0.2203037919353076, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1547, - "time": 0.22380067752158234, + "noteOrder": 1548, + "time": 0.22380067752158236, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.22729756310785704, + "noteOrder": 1572, + "time": 0.22729756310785706, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.22729756310785704, + "noteOrder": 1572, + "time": 0.22729756310785706, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1765, + "noteOrder": 1766, "time": 0.25527264779805486, "position": { "x": 5, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1789, - "time": 0.25876953338432956, + "noteOrder": 1790, + "time": 0.2587695333843296, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1813, - "time": 0.26226641897060426, + "noteOrder": 1814, + "time": 0.2622664189706043, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1934, - "time": 0.2797508469019779, + "noteOrder": 1935, + "time": 0.27975084690197793, "position": { "x": 3, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1958, - "time": 0.28324773248825263, + "noteOrder": 1959, + "time": 0.2832477324882527, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1982, - "time": 0.28674461807452734, + "noteOrder": 1983, + "time": 0.2867446180745274, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2152, + "noteOrder": 2153, "time": 0.3112228171784504, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.31471970276472516, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.31821658835099986, + "noteOrder": 2201, + "time": 0.3182165883509999, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2345, - "time": 0.3391979018686482, + "noteOrder": 2346, + "time": 0.33919790186864823, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.34269478745492293, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2393, - "time": 0.34619167304119763, + "noteOrder": 2394, + "time": 0.3461916730411977, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2539, - "time": 0.367172986558846, + "noteOrder": 2540, + "time": 0.36717298655884606, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2587, - "time": 0.37416675773139546, + "noteOrder": 2588, + "time": 0.3741667577313955, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2635, + "noteOrder": 2636, "time": 0.3811605289039449, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2684, + "noteOrder": 2685, "time": 0.3881543000764944, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2780, - "time": 0.4021418424215932, + "noteOrder": 2781, + "time": 0.4021418424215933, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2829, - "time": 0.40913561359414263, + "noteOrder": 2830, + "time": 0.40913561359414274, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2853, - "time": 0.4126324991804174, + "noteOrder": 2854, + "time": 0.41263249918041744, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2877, - "time": 0.4161293847666921, + "noteOrder": 2878, + "time": 0.4161293847666922, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2901, - "time": 0.41962627035296685, + "noteOrder": 2902, + "time": 0.4196262703529669, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2925, - "time": 0.42312315593924155, + "noteOrder": 2927, + "time": 0.4231231559392416, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2950, - "time": 0.4266200415255163, + "noteOrder": 2951, + "time": 0.42662004152551636, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2974, - "time": 0.430116927111791, + "noteOrder": 2975, + "time": 0.43011692711179106, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.43711069828434046, + "noteOrder": 3023, + "time": 0.4371106982843405, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 3047, "time": 0.4406075838706152, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3070, + "noteOrder": 3072, "time": 0.4441044694568899, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3095, - "time": 0.4476013550431647, + "noteOrder": 3096, + "time": 0.44760135504316473, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3143, - "time": 0.4545951262157141, + "noteOrder": 3144, + "time": 0.45459512621571413, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3167, - "time": 0.45809201180198883, + "noteOrder": 3168, + "time": 0.4580920118019889, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.49655775325101076, + "noteOrder": 3434, + "time": 0.49655775325101087, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3457, + "noteOrder": 3459, "time": 0.5000546388372855, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.5210359523549338, + "noteOrder": 3604, + "time": 0.5210359523549339, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5245328379412085, + "noteOrder": 3628, + "time": 0.5245328379412086, "position": { "x": 5, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3651, - "time": 0.5280297235274832, + "noteOrder": 3652, + "time": 0.5280297235274833, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.531526609113758, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 3700, "time": 0.5350234947000327, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3723, + "noteOrder": 3725, "time": 0.5385203802863074, "position": { "x": 5, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.5420172658725821, + "noteOrder": 3749, + "time": 0.5420172658725823, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.5490110370451317, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.5560048082176811, + "noteOrder": 3846, + "time": 0.5560048082176812, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3942, "time": 0.56999235056278, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4160, "time": 0.6014643208392525, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4257, "time": 0.6154518631843514, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4303, + "noteOrder": 4305, "time": 0.6224456343569008, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4352, + "noteOrder": 4353, "time": 0.6294394055294503, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4376, + "noteOrder": 4378, "time": 0.632936291115725, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4400, - "time": 0.6364331767019997, + "noteOrder": 4402, + "time": 0.6364331767019998, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4424, + "noteOrder": 4426, "time": 0.6399300622882745, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4473, + "noteOrder": 4474, "time": 0.6469238334608239, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4521, - "time": 0.6539176046333732, + "noteOrder": 4523, + "time": 0.6539176046333733, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4547, "time": 0.6574144902196482, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4547, "time": 0.6574144902196482, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4594, - "time": 0.6644082613921974, + "noteOrder": 4595, + "time": 0.6644082613921976, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4618, - "time": 0.6679051469784721, + "noteOrder": 4620, + "time": 0.6679051469784723, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4642, - "time": 0.671402032564747, + "noteOrder": 4644, + "time": 0.6714020325647471, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4642, - "time": 0.671402032564747, + "noteOrder": 4644, + "time": 0.6714020325647471, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4666, + "noteOrder": 4668, "time": 0.6748989181510217, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4666, + "noteOrder": 4668, "time": 0.6748989181510217, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.6783958037372964, + "noteOrder": 4692, + "time": 0.6783958037372965, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.6783958037372964, + "noteOrder": 4692, + "time": 0.6783958037372965, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.7028740028412195, + "noteOrder": 4861, + "time": 0.7028740028412196, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4884, - "time": 0.7063708884274942, + "noteOrder": 4886, + "time": 0.7063708884274943, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.7098677740137689, + "noteOrder": 4910, + "time": 0.709867774013769, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5053, + "noteOrder": 5055, "time": 0.7308490875314173, "position": { "x": 5, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5077, - "time": 0.734345973117692, + "noteOrder": 5079, + "time": 0.7343459731176921, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5101, - "time": 0.7378428587039667, + "noteOrder": 5103, + "time": 0.7378428587039668, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5125, - "time": 0.7413397442902414, + "noteOrder": 5127, + "time": 0.7413397442902415, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.7448366298765162, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5174, - "time": 0.7483335154627909, + "noteOrder": 5176, + "time": 0.748333515462791, "position": { "x": 7, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5198, + "noteOrder": 5200, "time": 0.7518304010490656, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5319, - "time": 0.7693148289804392, + "noteOrder": 5321, + "time": 0.7693148289804393, "position": { "x": 5, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5343, - "time": 0.7728117145667139, + "noteOrder": 5345, + "time": 0.772811714566714, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5367, + "noteOrder": 5369, "time": 0.7763086001529887, "position": { "x": 5, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5391, - "time": 0.7798054857392634, + "noteOrder": 5393, + "time": 0.7798054857392636, "position": { "x": 3, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.7902961424980877, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5536, - "time": 0.8007867992569118, + "noteOrder": 5539, + "time": 0.8007867992569119, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5561, - "time": 0.8042836848431864, + "noteOrder": 5563, + "time": 0.8042836848431866, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5585, - "time": 0.8077805704294612, + "noteOrder": 5587, + "time": 0.8077805704294613, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5657, - "time": 0.8182712271882853, + "noteOrder": 5660, + "time": 0.8182712271882855, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5681, - "time": 0.8217681127745601, + "noteOrder": 5684, + "time": 0.8217681127745602, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5730, - "time": 0.8287618839471095, + "noteOrder": 5732, + "time": 0.8287618839471096, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5778, + "noteOrder": 5780, "time": 0.835755655119659, "position": { "x": 6, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5851, - "time": 0.8462463118784831, + "noteOrder": 5853, + "time": 0.8462463118784832, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6310, + "noteOrder": 6313, "time": 0.912687138017703, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6358, + "noteOrder": 6361, "time": 0.9196809091902524, "position": { "x": 7, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6455, - "time": 0.9336684515353513, + "noteOrder": 6458, + "time": 0.9336684515353514, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6479, - "time": 0.937165337121626, + "noteOrder": 6482, + "time": 0.9371653371216261, "position": { "x": 8, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6491, - "time": 0.9389137799147633, + "noteOrder": 6494, + "time": 0.9389137799147634, "position": { "x": 5, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6503, + "noteOrder": 6506, "time": 0.9406622227079008, "position": { "x": 3, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6516, - "time": 0.942410665501038, + "noteOrder": 6518, + "time": 0.9424106655010381, "position": { "x": 5, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6528, + "noteOrder": 6530, "time": 0.9441591082941755, "position": { "x": 8, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6540, - "time": 0.9459075510873127, + "noteOrder": 6542, + "time": 0.9459075510873128, "position": { "x": 5, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6552, - "time": 0.9476559938804502, + "noteOrder": 6554, + "time": 0.9476559938804503, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6564, - "time": 0.9494044366735875, + "noteOrder": 6566, + "time": 0.9494044366735876, "position": { "x": 5, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6576, - "time": 0.9511528794667248, + "noteOrder": 6579, + "time": 0.9511528794667249, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6600, - "time": 0.9546497650529995, + "noteOrder": 6603, + "time": 0.9546497650529997, "position": { "x": 4, "y": 0 @@ -2616,10 +2616,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.013987542345098896, + "time": 0.013987542345098898, "position": { "x": 3, "y": 0 @@ -2639,10 +2639,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, - "time": 0.020981313517648342, + "time": 0.020981313517648346, "position": { "x": 3, "y": 0 @@ -2662,10 +2662,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, - "time": 0.020981313517648342, + "time": 0.020981313517648346, "position": { "x": 5, "y": 0 @@ -2685,10 +2685,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, - "time": 0.027975084690197792, + "time": 0.027975084690197796, "position": { "x": 5, "y": 0 @@ -2708,10 +2708,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.027975084690197792, + "time": 0.027975084690197796, "position": { "x": 7, "y": 0 @@ -2731,10 +2731,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 242, - "time": 0.034968855862747235, + "time": 0.03496885586274724, "position": { "x": 7, "y": 0 @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, - "time": 0.034968855862747235, + "time": 0.03496885586274724, "position": { "x": 5, "y": 0 @@ -2777,10 +2777,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.041962627035296685, + "time": 0.04196262703529669, "position": { "x": 5, "y": 0 @@ -2800,10 +2800,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.041962627035296685, + "time": 0.04196262703529669, "position": { "x": 3, "y": 0 @@ -2823,9 +2823,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 338, + "noteOrder": 339, "time": 0.048956398207846134, "position": { "x": 3, @@ -2846,7 +2846,7 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 435, "time": 0.06294394055294503, @@ -2869,9 +2869,9 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 338, + "noteOrder": 339, "time": 0.048956398207846134, "position": { "x": 7, @@ -2892,10 +2892,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 387, - "time": 0.055950169380395584, + "time": 0.05595016938039559, "position": { "x": 7, "y": 0 @@ -2915,7 +2915,7 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 435, "time": 0.06294394055294503, @@ -2938,7 +2938,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 677, "time": 0.09791279641569227, @@ -2961,10 +2961,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 701, - "time": 0.10140968200196698, + "time": 0.10140968200196701, "position": { "x": 6, "y": 0 @@ -2984,10 +2984,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 725, - "time": 0.10490656758824171, + "noteOrder": 726, + "time": 0.10490656758824173, "position": { "x": 2, "y": 0 @@ -3007,9 +3007,9 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 749, + "noteOrder": 750, "time": 0.10840345317451644, "position": { "x": 4, @@ -3030,9 +3030,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 870, + "noteOrder": 871, "time": 0.12588788110589005, "position": { "x": 7, @@ -3053,10 +3053,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 895, - "time": 0.12938476669216478, + "time": 0.1293847666921648, "position": { "x": 7, "y": 0 @@ -3076,10 +3076,10 @@ }, { "lineGroupId": 21, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 943, - "time": 0.1363785378647142, + "time": 0.13637853786471424, "position": { "x": 5, "y": 0 @@ -3099,10 +3099,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 967, - "time": 0.13987542345098894, + "time": 0.13987542345098897, "position": { "x": 3, "y": 0 @@ -3122,10 +3122,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 979, - "time": 0.14162386624412632, + "noteOrder": 980, + "time": 0.14162386624412635, "position": { "x": 4, "y": 0 @@ -3145,10 +3145,10 @@ }, { "lineGroupId": 25, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 991, - "time": 0.14337230903726367, + "noteOrder": 992, + "time": 0.1433723090372637, "position": { "x": 3, "y": 0 @@ -3168,10 +3168,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1015, - "time": 0.1468691946235384, + "noteOrder": 1016, + "time": 0.14686919462353842, "position": { "x": 6, "y": 0 @@ -3191,9 +3191,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1027, + "noteOrder": 1028, "time": 0.14861763741667577, "position": { "x": 5, @@ -3214,7 +3214,7 @@ }, { "lineGroupId": 27, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1040, "time": 0.15036608020981312, @@ -3237,7 +3237,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1064, "time": 0.15386296579608785, @@ -3260,7 +3260,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1088, "time": 0.15735985138236258, @@ -3283,9 +3283,9 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1136, + "noteOrder": 1137, "time": 0.16435362255491204, "position": { "x": 5, @@ -3306,10 +3306,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1160, - "time": 0.16785050814118674, + "noteOrder": 1161, + "time": 0.16785050814118677, "position": { "x": 5, "y": 0 @@ -3329,7 +3329,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1185, "time": 0.17134739372746147, @@ -3352,7 +3352,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1185, "time": 0.17134739372746147, @@ -3375,7 +3375,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1209, "time": 0.1748442793137362, @@ -3398,7 +3398,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1209, "time": 0.1748442793137362, @@ -3421,10 +3421,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1233, - "time": 0.1783411649000109, + "time": 0.17834116490001092, "position": { "x": 5, "y": 0 @@ -3444,7 +3444,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1354, "time": 0.19582559283138454, @@ -3467,9 +3467,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1378, + "noteOrder": 1379, "time": 0.19932247841765927, "position": { "x": 7, @@ -3490,10 +3490,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1402, - "time": 0.20281936400393397, + "noteOrder": 1403, + "time": 0.20281936400393402, "position": { "x": 3, "y": 0 @@ -3513,10 +3513,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1426, - "time": 0.2063162495902087, + "noteOrder": 1427, + "time": 0.20631624959020872, "position": { "x": 3, "y": 0 @@ -3536,10 +3536,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1596, - "time": 0.23079444869413177, + "time": 0.2307944486941318, "position": { "x": 6, "y": 0 @@ -3559,10 +3559,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1620, - "time": 0.2342913342804065, + "time": 0.23429133428040652, "position": { "x": 6, "y": 0 @@ -3582,10 +3582,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1644, - "time": 0.2377882198666812, + "noteOrder": 1645, + "time": 0.23778821986668122, "position": { "x": 3, "y": 0 @@ -3605,10 +3605,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1596, - "time": 0.23079444869413177, + "time": 0.2307944486941318, "position": { "x": 4, "y": 0 @@ -3628,10 +3628,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1620, - "time": 0.2342913342804065, + "time": 0.23429133428040652, "position": { "x": 4, "y": 0 @@ -3651,10 +3651,10 @@ }, { "lineGroupId": 54, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1644, - "time": 0.2377882198666812, + "noteOrder": 1645, + "time": 0.23778821986668122, "position": { "x": 6, "y": 0 @@ -3674,10 +3674,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2031, - "time": 0.2937383892470768, + "noteOrder": 2032, + "time": 0.29373838924707685, "position": { "x": 7, "y": 0 @@ -3696,11 +3696,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2055, - "time": 0.29723527483335155, + "noteOrder": 2044, + "time": 0.29548683204021414, "position": { "x": 7, "y": 0 @@ -3714,18 +3714,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2079, - "time": 0.30073216041962625, + "noteOrder": 2044, + "time": 0.29548683204021414, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3742,13 +3742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2103, - "time": 0.30422904600590095, + "noteOrder": 2056, + "time": 0.29723527483335155, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3760,18 +3760,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2128, - "time": 0.3077259315921757, + "noteOrder": 2056, + "time": 0.29723527483335155, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3788,11 +3788,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 2152, - "time": 0.3112228171784504, + "noteOrder": 2056, + "time": 0.29723527483335155, "position": { "x": 7, "y": 0 @@ -3806,18 +3806,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 66, "indexInLine": 2, "isSliding": false, - "noteOrder": 2224, - "time": 0.3217134739372746, + "noteOrder": 2068, + "time": 0.29898371762648895, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3829,18 +3829,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2224, - "time": 0.3217134739372746, + "noteOrder": 2068, + "time": 0.29898371762648895, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3857,13 +3857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2248, - "time": 0.3252103595235493, + "noteOrder": 2080, + "time": 0.30073216041962625, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3875,18 +3875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2273, - "time": 0.3287072451098241, + "noteOrder": 2080, + "time": 0.30073216041962625, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3903,13 +3903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2297, - "time": 0.3322041306960987, + "noteOrder": 2080, + "time": 0.30073216041962625, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3926,13 +3926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2321, - "time": 0.3357010162823735, + "noteOrder": 2092, + "time": 0.30248060321276365, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3944,18 +3944,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2345, - "time": 0.3391979018686482, + "noteOrder": 2092, + "time": 0.30248060321276365, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3967,18 +3967,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2418, - "time": 0.3496885586274724, + "noteOrder": 2104, + "time": 0.304229046005901, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3990,18 +3990,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2418, - "time": 0.3496885586274724, + "noteOrder": 2104, + "time": 0.304229046005901, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4018,11 +4018,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2442, - "time": 0.3531854442137471, + "noteOrder": 2104, + "time": 0.304229046005901, "position": { "x": 7, "y": 0 @@ -4041,11 +4041,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2466, - "time": 0.3566823298000218, + "noteOrder": 2116, + "time": 0.30597748879903836, "position": { "x": 7, "y": 0 @@ -4059,18 +4059,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2490, - "time": 0.36017921538629655, + "noteOrder": 2116, + "time": 0.30597748879903836, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4087,13 +4087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2514, - "time": 0.36367610097257125, + "noteOrder": 2128, + "time": 0.3077259315921757, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4105,18 +4105,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2539, - "time": 0.367172986558846, + "noteOrder": 2128, + "time": 0.3077259315921757, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4128,18 +4128,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2563, - "time": 0.3706698721451207, + "noteOrder": 2128, + "time": 0.3077259315921757, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4151,18 +4151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2587, - "time": 0.37416675773139546, + "noteOrder": 2153, + "time": 0.3112228171784504, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4174,18 +4174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2708, - "time": 0.3916511856627691, + "noteOrder": 2225, + "time": 0.3217134739372746, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4202,13 +4202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 2720, - "time": 0.3933996284559064, + "noteOrder": 2225, + "time": 0.3217134739372746, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4220,18 +4220,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 73, "indexInLine": 2, "isSliding": false, - "noteOrder": 2732, - "time": 0.39514807124904383, + "noteOrder": 2237, + "time": 0.32346191673041197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4243,18 +4243,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2732, - "time": 0.39514807124904383, + "noteOrder": 2237, + "time": 0.32346191673041197, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4271,13 +4271,2612 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2744, - "time": 0.3968965140421812, + "noteOrder": 2249, + "time": 0.3252103595235494, "position": { - "x": 5, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3252103595235494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3252103595235494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2261, + "time": 0.32695880231668667, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2261, + "time": 0.32695880231668667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2273, + "time": 0.3287072451098241, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2273, + "time": 0.3287072451098241, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2273, + "time": 0.3287072451098241, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3304556879029614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3304556879029614, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2298, + "time": 0.3322041306960988, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2298, + "time": 0.3322041306960988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2298, + "time": 0.3322041306960988, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2310, + "time": 0.3339525734892361, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2310, + "time": 0.3339525734892361, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2322, + "time": 0.33570101628237353, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2322, + "time": 0.33570101628237353, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2322, + "time": 0.33570101628237353, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2346, + "time": 0.33919790186864823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2419, + "time": 0.3496885586274724, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.3496885586274724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2431, + "time": 0.3514370014206098, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2431, + "time": 0.3514370014206098, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2443, + "time": 0.35318544421374715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2443, + "time": 0.35318544421374715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2443, + "time": 0.35318544421374715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2455, + "time": 0.3549338870068845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2455, + "time": 0.3549338870068845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2467, + "time": 0.35668232980002185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2467, + "time": 0.35668232980002185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2467, + "time": 0.35668232980002185, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2479, + "time": 0.35843077259315925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2479, + "time": 0.35843077259315925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2491, + "time": 0.3601792153862966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2491, + "time": 0.3601792153862966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2491, + "time": 0.3601792153862966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2503, + "time": 0.36192765817943395, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2503, + "time": 0.36192765817943395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2515, + "time": 0.36367610097257136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2515, + "time": 0.36367610097257136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2515, + "time": 0.36367610097257136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2540, + "time": 0.36717298655884606, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2564, + "time": 0.37066987214512076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2588, + "time": 0.3741667577313955, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2709, + "time": 0.3916511856627691, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2721, + "time": 0.3933996284559065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2733, + "time": 0.39514807124904383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2733, + "time": 0.39514807124904383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2745, + "time": 0.3968965140421812, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2757, + "time": 0.39864495683531853, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2757, + "time": 0.39864495683531853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2769, + "time": 0.40039339962845594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2781, + "time": 0.4021418424215933, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2806, + "time": 0.40563872800786804, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2854, + "time": 0.41263249918041744, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2902, + "time": 0.4196262703529669, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2999, + "time": 0.43361381269806576, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3047, + "time": 0.4406075838706152, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3096, + "time": 0.44760135504316473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3193, + "time": 0.4615888973882636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4650857829745383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3289, + "time": 0.47557643973336244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3313, + "time": 0.4790733253196372, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3338, + "time": 0.4825702109059119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3362, + "time": 0.4860670964921867, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3241, + "time": 0.46858266856081304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3265, + "time": 0.47207955414708774, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3289, + "time": 0.47557643973336244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3313, + "time": 0.4790733253196372, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3338, + "time": 0.4825702109059119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3362, + "time": 0.4860670964921867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3386, + "time": 0.4895639820784614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3410, + "time": 0.4930608676647361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5000546388372855, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3483, + "time": 0.5035515244235602, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5052999672166977, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5052999672166977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3507, + "time": 0.507048410009835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3519, + "time": 0.5087968528029724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3519, + "time": 0.5087968528029724, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3531, + "time": 0.5105452955961097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3543, + "time": 0.5122937383892471, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3543, + "time": 0.5122937383892471, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5140421811823844, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3567, + "time": 0.5157906239755218, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3567, + "time": 0.5157906239755218, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3580, + "time": 0.5175390667686592, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.531526609113758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3773, + "time": 0.545514151458857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3797, + "time": 0.5490110370451317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3821, + "time": 0.5525079226314065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5560048082176812, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5595016938039559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3882, + "time": 0.5612501365970932, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3882, + "time": 0.5612501365970932, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5629985793902306, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3906, + "time": 0.5647470221833679, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3906, + "time": 0.5647470221833679, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3918, + "time": 0.5664954649765054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3930, + "time": 0.5682439077696427, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3930, + "time": 0.5682439077696427, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3942, + "time": 0.56999235056278, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3942, + "time": 0.56999235056278, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4450, + "time": 0.6434269478745492, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4474, + "time": 0.6469238334608239, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4499, + "time": 0.6504207190470987, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4523, + "time": 0.6539176046333733, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.6853895749098459, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4753, + "time": 0.6871380177029832, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4753, + "time": 0.6871380177029832, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4765, + "time": 0.6888864604961207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4765, + "time": 0.6888864604961207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4765, + "time": 0.6888864604961207, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4777, + "time": 0.690634903289258, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4289,18 +6888,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 2, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2756, - "time": 0.39864495683531853, + "noteOrder": 4777, + "time": 0.690634903289258, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4312,16 +6911,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2756, - "time": 0.39864495683531853, + "noteOrder": 4789, + "time": 0.6923833460823954, "position": { "x": 4, "y": 0 @@ -4340,13 +6939,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2768, - "time": 0.4003933996284559, + "noteOrder": 4789, + "time": 0.6923833460823954, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4363,13 +6962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2780, - "time": 0.4021418424215932, + "noteOrder": 4789, + "time": 0.6923833460823954, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4381,16 +6980,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2804, - "time": 0.40563872800786793, + "noteOrder": 4801, + "time": 0.6941317888755327, "position": { "x": 3, "y": 0 @@ -4409,13 +7008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2853, - "time": 0.4126324991804174, + "noteOrder": 4801, + "time": 0.6941317888755327, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4432,13 +7031,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 2, + "lineGroupId": 162, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2901, - "time": 0.41962627035296685, + "noteOrder": 4813, + "time": 0.6958802316686702, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4455,13 +7054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2998, - "time": 0.43361381269806576, + "noteOrder": 4813, + "time": 0.6958802316686702, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4473,18 +7072,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 3046, - "time": 0.4406075838706152, + "noteOrder": 4813, + "time": 0.6958802316686702, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4501,13 +7100,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 163, "indexInLine": 2, "isSliding": false, - "noteOrder": 3095, - "time": 0.4476013550431647, + "noteOrder": 4825, + "time": 0.6976286744618074, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4524,13 +7123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3191, - "time": 0.46158889738826353, + "noteOrder": 4825, + "time": 0.6976286744618074, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4547,13 +7146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3215, - "time": 0.4650857829745383, + "noteOrder": 4837, + "time": 0.6993771172549448, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4570,11 +7169,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3288, - "time": 0.4755764397333624, + "noteOrder": 4837, + "time": 0.6993771172549448, "position": { "x": 6, "y": 0 @@ -4593,11 +7192,57 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4837, + "time": 0.6993771172549448, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4861, + "time": 0.7028740028412196, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, "indexInLine": 3, "isSliding": false, - "noteOrder": 3312, - "time": 0.47907332531963714, + "noteOrder": 4934, + "time": 0.7133646596000437, "position": { "x": 5, "y": 0 @@ -4611,16 +7256,62 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4934, + "time": 0.7133646596000437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 4, + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4946, + "time": 0.7151131023931812, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3336, - "time": 0.48257021090591184, + "noteOrder": 4946, + "time": 0.7151131023931812, "position": { "x": 6, "y": 0 @@ -4639,13 +7330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 5, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3361, - "time": 0.4860670964921866, + "noteOrder": 4958, + "time": 0.7168615451863185, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4662,13 +7353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3240, - "time": 0.468582668560813, + "noteOrder": 4958, + "time": 0.7168615451863185, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4680,18 +7371,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 3264, - "time": 0.47207955414708774, + "noteOrder": 4958, + "time": 0.7168615451863185, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4708,13 +7399,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 3288, - "time": 0.4755764397333624, + "noteOrder": 4970, + "time": 0.7186099879794557, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4731,13 +7422,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 3, "isSliding": false, - "noteOrder": 3312, - "time": 0.47907332531963714, + "noteOrder": 4970, + "time": 0.7186099879794557, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4754,13 +7445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 4, "isSliding": false, - "noteOrder": 3336, - "time": 0.48257021090591184, + "noteOrder": 4982, + "time": 0.7203584307725932, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4777,13 +7468,59 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 5, "isSliding": false, - "noteOrder": 3361, - "time": 0.4860670964921866, + "noteOrder": 4982, + "time": 0.7203584307725932, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4982, + "time": 0.7203584307725932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4994, + "time": 0.7221068735657306, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4795,18 +7532,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3385, - "time": 0.4895639820784613, + "noteOrder": 4994, + "time": 0.7221068735657306, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4823,11 +7560,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3409, - "time": 0.49306086766473606, + "noteOrder": 5007, + "time": 0.7238553163588679, "position": { "x": 6, "y": 0 @@ -4846,13 +7583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3457, - "time": 0.5000546388372855, + "noteOrder": 5007, + "time": 0.7238553163588679, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4869,13 +7606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3481, - "time": 0.5035515244235602, + "noteOrder": 5007, + "time": 0.7238553163588679, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4892,13 +7629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, - "time": 0.5070484100098349, + "noteOrder": 5019, + "time": 0.7256037591520053, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4910,18 +7647,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3530, - "time": 0.5105452955961097, + "noteOrder": 5019, + "time": 0.7256037591520053, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4938,13 +7675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3554, - "time": 0.5140421811823843, + "noteOrder": 5031, + "time": 0.7273522019451427, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4956,18 +7693,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3578, - "time": 0.5175390667686591, + "noteOrder": 5031, + "time": 0.7273522019451427, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4984,13 +7721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3675, - "time": 0.531526609113758, + "noteOrder": 5031, + "time": 0.7273522019451427, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5002,18 +7739,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3772, - "time": 0.5455141514588568, + "noteOrder": 5055, + "time": 0.7308490875314173, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5025,18 +7762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3796, - "time": 0.5490110370451317, + "noteOrder": 5127, + "time": 0.7413397442902415, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5048,18 +7785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3820, - "time": 0.5525079226314064, + "noteOrder": 5224, + "time": 0.7553272866353404, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5076,13 +7813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3844, - "time": 0.5560048082176811, + "noteOrder": 5248, + "time": 0.7588241722216152, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5099,13 +7836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5595016938039558, + "noteOrder": 5248, + "time": 0.7588241722216152, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5122,13 +7859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, - "time": 0.5629985793902305, + "noteOrder": 5273, + "time": 0.7623210578078898, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5140,18 +7877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3917, - "time": 0.5664954649765053, + "noteOrder": 5273, + "time": 0.7623210578078898, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5163,18 +7900,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4448, - "time": 0.6434269478745492, + "noteOrder": 5297, + "time": 0.7658179433941646, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5186,18 +7923,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 183, "indexInLine": 1, "isSliding": false, - "noteOrder": 4473, - "time": 0.6469238334608239, + "noteOrder": 5297, + "time": 0.7658179433941646, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5214,13 +7951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4497, - "time": 0.6504207190470986, + "noteOrder": 5321, + "time": 0.7693148289804393, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5232,18 +7969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.6539176046333732, + "noteOrder": 5418, + "time": 0.7833023713255381, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5260,13 +7997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4739, - "time": 0.6853895749098459, + "noteOrder": 5430, + "time": 0.7850508141186756, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5278,18 +8015,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4763, - "time": 0.6888864604961206, + "noteOrder": 5442, + "time": 0.786799256911813, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5306,13 +8043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4787, - "time": 0.6923833460823953, + "noteOrder": 5442, + "time": 0.786799256911813, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5329,13 +8066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4811, - "time": 0.69588023166867, + "noteOrder": 5454, + "time": 0.7885476997049503, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5347,18 +8084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4835, - "time": 0.6993771172549448, + "noteOrder": 5466, + "time": 0.7902961424980877, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5375,13 +8112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 4859, - "time": 0.7028740028412195, + "noteOrder": 5514, + "time": 0.7972899136706371, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5393,16 +8130,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 192, "indexInLine": 2, "isSliding": false, - "noteOrder": 4932, - "time": 0.7133646596000436, + "noteOrder": 5587, + "time": 0.8077805704294613, "position": { "x": 5, "y": 0 @@ -5416,18 +8153,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4932, - "time": 0.7133646596000436, + "noteOrder": 5611, + "time": 0.8112774560157361, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5439,18 +8176,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4956, - "time": 0.7168615451863184, + "noteOrder": 5623, + "time": 0.8130258988088733, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5467,13 +8204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4980, - "time": 0.7203584307725931, + "noteOrder": 5623, + "time": 0.8130258988088733, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5485,18 +8222,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5005, - "time": 0.7238553163588678, + "noteOrder": 5635, + "time": 0.8147743416020107, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5508,18 +8245,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5029, - "time": 0.7273522019451425, + "noteOrder": 5647, + "time": 0.816522784395148, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5536,13 +8273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5053, - "time": 0.7308490875314173, + "noteOrder": 5647, + "time": 0.816522784395148, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5559,13 +8296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5125, - "time": 0.7413397442902414, + "noteOrder": 5708, + "time": 0.8252649983608349, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5582,13 +8319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5222, - "time": 0.7553272866353403, + "noteOrder": 5732, + "time": 0.8287618839471096, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5605,13 +8342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 5246, - "time": 0.758824172221615, + "noteOrder": 5756, + "time": 0.8322587695333844, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5623,18 +8360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5246, - "time": 0.758824172221615, + "noteOrder": 5780, + "time": 0.835755655119659, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5651,13 +8388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 5270, - "time": 0.7623210578078898, + "noteOrder": 5805, + "time": 0.8392525407059338, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5669,16 +8406,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5270, - "time": 0.7623210578078898, + "noteOrder": 5817, + "time": 0.8410009834990712, "position": { "x": 5, "y": 0 @@ -5697,13 +8434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5295, - "time": 0.7658179433941645, + "noteOrder": 5829, + "time": 0.8427494262922086, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5720,13 +8457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, - "time": 0.7658179433941645, + "noteOrder": 5829, + "time": 0.8427494262922086, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5743,11 +8480,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5319, - "time": 0.7693148289804392, + "noteOrder": 5841, + "time": 0.844497869085346, "position": { "x": 5, "y": 0 @@ -5766,11 +8503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5416, - "time": 0.7833023713255381, + "noteOrder": 5853, + "time": 0.8462463118784832, "position": { "x": 6, "y": 0 @@ -5784,18 +8521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 5428, - "time": 0.7850508141186755, + "noteOrder": 5877, + "time": 0.849743197464758, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5807,18 +8544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 207, "indexInLine": 2, "isSliding": false, - "noteOrder": 5440, - "time": 0.7867992569118128, + "noteOrder": 5901, + "time": 0.8532400830510327, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5830,18 +8567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5440, - "time": 0.7867992569118128, + "noteOrder": 5877, + "time": 0.849743197464758, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5853,18 +8590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5452, - "time": 0.7885476997049502, + "noteOrder": 5901, + "time": 0.8532400830510327, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5876,18 +8613,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 2, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5464, - "time": 0.7902961424980877, + "noteOrder": 5998, + "time": 0.8672276253961315, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5899,16 +8636,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5512, - "time": 0.7972899136706371, + "noteOrder": 6047, + "time": 0.874221396568681, "position": { "x": 7, "y": 0 @@ -5927,13 +8664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 211, "indexInLine": 1, "isSliding": false, - "noteOrder": 5585, - "time": 0.8077805704294612, + "noteOrder": 6095, + "time": 0.8812151677412304, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5945,16 +8682,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5609, - "time": 0.8112774560157359, + "noteOrder": 6143, + "time": 0.8882089389137798, "position": { "x": 3, "y": 0 @@ -5973,13 +8710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5633, - "time": 0.8147743416020106, + "noteOrder": 6192, + "time": 0.8952027100863295, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5996,13 +8733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5706, - "time": 0.8252649983608348, + "noteOrder": 6240, + "time": 0.9021964812588789, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6019,13 +8756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 5730, - "time": 0.8287618839471095, + "noteOrder": 6288, + "time": 0.9091902524314283, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6037,16 +8774,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5754, - "time": 0.8322587695333842, + "noteOrder": 6300, + "time": 0.9109386952245656, "position": { "x": 3, "y": 0 @@ -6065,11 +8802,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5778, - "time": 0.835755655119659, + "noteOrder": 6300, + "time": 0.9109386952245656, "position": { "x": 4, "y": 0 @@ -6088,11 +8825,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5802, - "time": 0.8392525407059337, + "noteOrder": 6313, + "time": 0.912687138017703, "position": { "x": 4, "y": 0 @@ -6106,18 +8843,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 214, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6313, + "time": 0.912687138017703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, "indexInLine": 1, "isSliding": false, - "noteOrder": 5814, - "time": 0.841000983499071, + "noteOrder": 6337, + "time": 0.9161840236039778, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6134,13 +8894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 218, "indexInLine": 2, "isSliding": false, - "noteOrder": 5827, - "time": 0.8427494262922084, + "noteOrder": 6349, + "time": 0.9179324663971151, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6157,11 +8917,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5827, - "time": 0.8427494262922084, + "noteOrder": 6349, + "time": 0.9179324663971151, "position": { "x": 6, "y": 0 @@ -6175,18 +8935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5839, - "time": 0.8444978690853459, + "noteOrder": 6361, + "time": 0.9196809091902524, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6198,18 +8958,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5851, - "time": 0.8462463118784831, + "noteOrder": 6361, + "time": 0.9196809091902524, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6221,18 +8981,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5875, - "time": 0.8497431974647579, + "noteOrder": 6385, + "time": 0.9231777947765272, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6249,13 +9009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.8532400830510326, + "noteOrder": 6397, + "time": 0.9249262375696645, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6272,13 +9032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5875, - "time": 0.8497431974647579, + "noteOrder": 6397, + "time": 0.9249262375696645, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6290,18 +9050,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5899, - "time": 0.8532400830510326, + "noteOrder": 6409, + "time": 0.9266746803628019, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6313,16 +9073,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5996, - "time": 0.8672276253961315, + "noteOrder": 6409, + "time": 0.9266746803628019, "position": { "x": 7, "y": 0 @@ -6336,18 +9096,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 6044, - "time": 0.8742213965686809, + "noteOrder": 6409, + "time": 0.9266746803628019, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6364,13 +9124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6092, - "time": 0.8812151677412304, + "noteOrder": 6421, + "time": 0.9284231231559393, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6382,18 +9142,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6141, - "time": 0.8882089389137798, + "noteOrder": 6421, + "time": 0.9284231231559393, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6405,16 +9165,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6189, - "time": 0.8952027100863293, + "noteOrder": 6433, + "time": 0.9301715659490766, "position": { "x": 5, "y": 0 @@ -6433,13 +9193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6238, - "time": 0.9021964812588787, + "noteOrder": 6433, + "time": 0.9301715659490766, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6456,13 +9216,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6286, - "time": 0.9091902524314281, + "noteOrder": 6433, + "time": 0.9301715659490766, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6479,13 +9239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6334, - "time": 0.9161840236039777, + "noteOrder": 6446, + "time": 0.9319200087422139, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6497,18 +9257,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6383, - "time": 0.9231777947765271, + "noteOrder": 6446, + "time": 0.9319200087422139, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6525,13 +9285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6407, - "time": 0.9266746803628019, + "noteOrder": 6458, + "time": 0.9336684515353514, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6543,18 +9303,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6431, - "time": 0.9301715659490766, + "noteOrder": 6458, + "time": 0.9336684515353514, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6572,10 +9332,10 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6624, - "time": 0.9581466506392743, + "noteOrder": 6627, + "time": 0.9581466506392744, "position": { "x": 4, "y": 0 @@ -6595,10 +9355,10 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6649, - "time": 0.961643536225549, + "noteOrder": 6651, + "time": 0.9616435362255491, "position": { "x": 4, "y": 0 @@ -6618,9 +9378,9 @@ }, { "lineGroupId": 240, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6661, + "noteOrder": 6663, "time": 0.9633919790186865, "position": { "x": 6, @@ -6641,10 +9401,10 @@ }, { "lineGroupId": 240, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6673, - "time": 0.9651404218118237, + "noteOrder": 6675, + "time": 0.9651404218118238, "position": { "x": 6, "y": 0 @@ -6664,10 +9424,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6624, - "time": 0.9581466506392743, + "noteOrder": 6627, + "time": 0.9581466506392744, "position": { "x": 6, "y": 0 @@ -6687,10 +9447,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6649, - "time": 0.961643536225549, + "noteOrder": 6651, + "time": 0.9616435362255491, "position": { "x": 6, "y": 0 @@ -6710,9 +9470,9 @@ }, { "lineGroupId": 241, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6661, + "noteOrder": 6663, "time": 0.9633919790186865, "position": { "x": 4, @@ -6733,10 +9493,10 @@ }, { "lineGroupId": 241, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6673, - "time": 0.9651404218118237, + "noteOrder": 6675, + "time": 0.9651404218118238, "position": { "x": 4, "y": 0 diff --git a/tracks/Catastrophic Dance/362_difficulty_1b.json b/tracks/Catastrophic Dance/362_difficulty_1b.json index c18c6f26..0a330b27 100644 --- a/tracks/Catastrophic Dance/362_difficulty_1b.json +++ b/tracks/Catastrophic Dance/362_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 484, - "time": 0.06993771172549447, + "time": 0.06993771172549448, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 580, - "time": 0.08392525407059337, + "time": 0.08392525407059338, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 629, - "time": 0.09091902524314281, + "time": 0.09091902524314284, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 725, - "time": 0.10490656758824171, + "noteOrder": 726, + "time": 0.10490656758824173, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 967, - "time": 0.13987542345098894, + "time": 0.13987542345098897, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1015, - "time": 0.1468691946235384, + "noteOrder": 1016, + "time": 0.14686919462353842, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1113, "time": 0.1608567369686373, "position": { "x": 6, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1160, - "time": 0.16785050814118674, + "noteOrder": 1161, + "time": 0.16785050814118677, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1233, - "time": 0.1783411649000109, + "time": 0.17834116490001092, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1306, - "time": 0.18883182165883508, + "time": 0.1888318216588351, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1402, - "time": 0.20281936400393397, + "noteOrder": 1403, + "time": 0.20281936400393402, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1499, + "noteOrder": 1500, "time": 0.21680690634903288, "position": { "x": 5, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1547, - "time": 0.22380067752158234, + "noteOrder": 1548, + "time": 0.22380067752158236, "position": { "x": 8, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1547, - "time": 0.22380067752158234, + "noteOrder": 1548, + "time": 0.22380067752158236, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.22729756310785704, + "noteOrder": 1572, + "time": 0.22729756310785706, "position": { "x": 2, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.22729756310785704, + "noteOrder": 1572, + "time": 0.22729756310785706, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1596, - "time": 0.23079444869413177, + "time": 0.2307944486941318, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1596, - "time": 0.23079444869413177, + "time": 0.2307944486941318, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1789, - "time": 0.25876953338432956, + "noteOrder": 1790, + "time": 0.2587695333843296, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1813, - "time": 0.26226641897060426, + "noteOrder": 1814, + "time": 0.2622664189706043, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1982, - "time": 0.28674461807452734, + "noteOrder": 1983, + "time": 0.2867446180745274, "position": { "x": 4, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.31471970276472516, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.34269478745492293, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2708, + "noteOrder": 2709, "time": 0.3916511856627691, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2732, + "noteOrder": 2733, "time": 0.39514807124904383, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2756, + "noteOrder": 2757, "time": 0.39864495683531853, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2780, - "time": 0.4021418424215932, + "noteOrder": 2781, + "time": 0.4021418424215933, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2853, - "time": 0.4126324991804174, + "noteOrder": 2854, + "time": 0.41263249918041744, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2901, - "time": 0.41962627035296685, + "noteOrder": 2902, + "time": 0.4196262703529669, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2950, - "time": 0.4266200415255163, + "noteOrder": 2951, + "time": 0.42662004152551636, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2974, - "time": 0.430116927111791, + "noteOrder": 2975, + "time": 0.43011692711179106, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 3047, "time": 0.4406075838706152, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3095, - "time": 0.4476013550431647, + "noteOrder": 3096, + "time": 0.44760135504316473, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3143, - "time": 0.4545951262157141, + "noteOrder": 3144, + "time": 0.45459512621571413, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3385, - "time": 0.4895639820784613, + "noteOrder": 3386, + "time": 0.4895639820784614, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.49655775325101076, + "noteOrder": 3434, + "time": 0.49655775325101087, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5245328379412085, + "noteOrder": 3628, + "time": 0.5245328379412086, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.531526609113758, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3723, + "noteOrder": 3725, "time": 0.5385203802863074, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4400, - "time": 0.6364331767019997, + "noteOrder": 4402, + "time": 0.6364331767019998, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4497, - "time": 0.6504207190470986, + "noteOrder": 4499, + "time": 0.6504207190470987, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4594, - "time": 0.6644082613921974, + "noteOrder": 4595, + "time": 0.6644082613921976, "position": { "x": 5, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4642, - "time": 0.671402032564747, + "noteOrder": 4644, + "time": 0.6714020325647471, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4642, - "time": 0.671402032564747, + "noteOrder": 4644, + "time": 0.6714020325647471, "position": { "x": 2, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4666, + "noteOrder": 4668, "time": 0.6748989181510217, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4666, + "noteOrder": 4668, "time": 0.6748989181510217, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.6783958037372964, + "noteOrder": 4692, + "time": 0.6783958037372965, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.6783958037372964, + "noteOrder": 4692, + "time": 0.6783958037372965, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4884, - "time": 0.7063708884274942, + "noteOrder": 4886, + "time": 0.7063708884274943, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.7098677740137689, + "noteOrder": 4910, + "time": 0.709867774013769, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5077, - "time": 0.734345973117692, + "noteOrder": 5079, + "time": 0.7343459731176921, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.7448366298765162, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5246, - "time": 0.758824172221615, + "noteOrder": 5248, + "time": 0.7588241722216152, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.7902961424980877, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5609, - "time": 0.8112774560157359, + "noteOrder": 5611, + "time": 0.8112774560157361, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5657, - "time": 0.8182712271882853, + "noteOrder": 5660, + "time": 0.8182712271882855, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5681, - "time": 0.8217681127745601, + "noteOrder": 5684, + "time": 0.8217681127745602, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5802, - "time": 0.8392525407059337, + "noteOrder": 5805, + "time": 0.8392525407059338, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6479, - "time": 0.937165337121626, + "noteOrder": 6482, + "time": 0.9371653371216261, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6503, + "noteOrder": 6506, "time": 0.9406622227079008, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6528, + "noteOrder": 6530, "time": 0.9441591082941755, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6552, - "time": 0.9476559938804502, + "noteOrder": 6554, + "time": 0.9476559938804503, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6576, - "time": 0.9511528794667248, + "noteOrder": 6579, + "time": 0.9511528794667249, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6576, - "time": 0.9511528794667248, + "noteOrder": 6579, + "time": 0.9511528794667249, "position": { "x": 2, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6600, - "time": 0.9546497650529995, + "noteOrder": 6603, + "time": 0.9546497650529997, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6600, - "time": 0.9546497650529995, + "noteOrder": 6603, + "time": 0.9546497650529997, "position": { "x": 8, "y": 0 @@ -1456,10 +1456,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.013987542345098896, + "time": 0.013987542345098898, "position": { "x": 6, "y": 0 @@ -1479,10 +1479,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, - "time": 0.020981313517648342, + "time": 0.020981313517648346, "position": { "x": 4, "y": 0 @@ -1502,10 +1502,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.027975084690197792, + "time": 0.027975084690197796, "position": { "x": 4, "y": 0 @@ -1525,10 +1525,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 242, - "time": 0.034968855862747235, + "time": 0.03496885586274724, "position": { "x": 6, "y": 0 @@ -1548,10 +1548,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.041962627035296685, + "time": 0.04196262703529669, "position": { "x": 7, "y": 0 @@ -1571,9 +1571,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 338, + "noteOrder": 339, "time": 0.048956398207846134, "position": { "x": 4, @@ -1594,10 +1594,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 387, - "time": 0.055950169380395584, + "time": 0.05595016938039559, "position": { "x": 3, "y": 0 @@ -1617,7 +1617,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 435, "time": 0.06294394055294503, @@ -1640,10 +1640,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.11190033876079117, + "time": 0.11190033876079118, "position": { "x": 3, "y": 0 @@ -1662,13 +1662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 822, - "time": 0.1188941099333406, + "noteOrder": 798, + "time": 0.1153972243470659, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1680,18 +1680,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1257, - "time": 0.18183805048628562, + "noteOrder": 798, + "time": 0.1153972243470659, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1703,18 +1703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, + "lineGroupId": 13, "indexInLine": 1, "isSliding": false, - "noteOrder": 1306, - "time": 0.18883182165883508, + "noteOrder": 822, + "time": 0.11889410993334061, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1731,13 +1731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1354, - "time": 0.19582559283138454, + "noteOrder": 847, + "time": 0.12239099551961535, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1749,18 +1749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1402, - "time": 0.20281936400393397, + "noteOrder": 847, + "time": 0.12239099551961535, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1772,18 +1772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, - "time": 0.2517757622117801, + "noteOrder": 1258, + "time": 0.18183805048628568, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1800,13 +1800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1813, - "time": 0.26226641897060426, + "noteOrder": 1306, + "time": 0.1888318216588351, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -1823,13 +1823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1934, - "time": 0.2797508469019779, + "noteOrder": 1354, + "time": 0.19582559283138454, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -1846,13 +1846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2007, - "time": 0.2902415036608021, + "noteOrder": 1403, + "time": 0.20281936400393402, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -1869,13 +1869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2031, - "time": 0.2937383892470768, + "noteOrder": 1741, + "time": 0.2517757622117801, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1892,13 +1892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2079, - "time": 0.30073216041962625, + "noteOrder": 1814, + "time": 0.2622664189706043, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1910,18 +1910,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2128, - "time": 0.3077259315921757, + "noteOrder": 1935, + "time": 0.27975084690197793, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1933,18 +1933,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2224, - "time": 0.3217134739372746, + "noteOrder": 2007, + "time": 0.2902415036608021, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1961,11 +1961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2273, - "time": 0.3287072451098241, + "noteOrder": 2032, + "time": 0.29373838924707685, "position": { "x": 3, "y": 0 @@ -1984,11 +1984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2321, - "time": 0.3357010162823735, + "noteOrder": 2056, + "time": 0.29723527483335155, "position": { "x": 3, "y": 0 @@ -2002,16 +2002,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2418, - "time": 0.3496885586274724, + "noteOrder": 2056, + "time": 0.29723527483335155, "position": { "x": 4, "y": 0 @@ -2030,13 +2030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 2466, - "time": 0.3566823298000218, + "noteOrder": 2080, + "time": 0.30073216041962625, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2048,18 +2048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2514, - "time": 0.36367610097257125, + "noteOrder": 2104, + "time": 0.304229046005901, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2076,13 +2076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2563, - "time": 0.3706698721451207, + "noteOrder": 2104, + "time": 0.304229046005901, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2099,13 +2099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2611, - "time": 0.37766364331767016, + "noteOrder": 2128, + "time": 0.3077259315921757, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2122,13 +2122,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2635, - "time": 0.3811605289039449, + "noteOrder": 2153, + "time": 0.3112228171784504, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2145,13 +2145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2659, - "time": 0.3846574144902196, + "noteOrder": 2153, + "time": 0.3112228171784504, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2163,16 +2163,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2684, - "time": 0.3881543000764944, + "noteOrder": 2225, + "time": 0.3217134739372746, "position": { "x": 3, "y": 0 @@ -2191,13 +2191,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2804, - "time": 0.40563872800786793, + "noteOrder": 2249, + "time": 0.3252103595235494, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2209,16 +2209,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2901, - "time": 0.41962627035296685, + "noteOrder": 2249, + "time": 0.3252103595235494, "position": { "x": 4, "y": 0 @@ -2232,18 +2232,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2998, - "time": 0.43361381269806576, + "noteOrder": 2273, + "time": 0.3287072451098241, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2255,18 +2255,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3095, - "time": 0.4476013550431647, + "noteOrder": 2298, + "time": 0.3322041306960988, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2278,18 +2278,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3191, - "time": 0.46158889738826353, + "noteOrder": 2298, + "time": 0.3322041306960988, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2306,13 +2306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 3240, - "time": 0.468582668560813, + "noteOrder": 2322, + "time": 0.33570101628237353, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2324,18 +2324,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 50, "indexInLine": 2, "isSliding": false, - "noteOrder": 3288, - "time": 0.4755764397333624, + "noteOrder": 2346, + "time": 0.33919790186864823, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2347,18 +2347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 50, "indexInLine": 3, "isSliding": false, - "noteOrder": 3312, - "time": 0.47907332531963714, + "noteOrder": 2346, + "time": 0.33919790186864823, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2370,18 +2370,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 4, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3336, - "time": 0.48257021090591184, + "noteOrder": 2419, + "time": 0.3496885586274724, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2398,13 +2398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3240, - "time": 0.468582668560813, + "noteOrder": 2467, + "time": 0.35668232980002185, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2416,18 +2416,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 3288, - "time": 0.4755764397333624, + "noteOrder": 2515, + "time": 0.36367610097257136, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2444,13 +2444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 53, "indexInLine": 2, "isSliding": false, - "noteOrder": 3312, - "time": 0.47907332531963714, + "noteOrder": 2564, + "time": 0.37066987214512076, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2467,13 +2467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 3, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3336, - "time": 0.48257021090591184, + "noteOrder": 2612, + "time": 0.3776636433176702, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2485,18 +2485,938 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2636, + "time": 0.3811605289039449, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2660, + "time": 0.3846574144902197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2685, + "time": 0.3881543000764944, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2806, + "time": 0.40563872800786804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2902, + "time": 0.4196262703529669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2999, + "time": 0.43361381269806576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3096, + "time": 0.44760135504316473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3193, + "time": 0.4615888973882636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3241, + "time": 0.46858266856081304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3289, + "time": 0.47557643973336244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3313, + "time": 0.4790733253196372, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3338, + "time": 0.4825702109059119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3241, + "time": 0.46858266856081304, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3289, + "time": 0.47557643973336244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3313, + "time": 0.4790733253196372, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3338, + "time": 0.4825702109059119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3483, + "time": 0.5035515244235602, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3507, + "time": 0.507048410009835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3507, + "time": 0.507048410009835, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3531, + "time": 0.5105452955961097, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5140421811823844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5140421811823844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3580, + "time": 0.5175390667686592, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3628, + "time": 0.5245328379412086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3676, + "time": 0.531526609113758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3773, + "time": 0.545514151458857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3797, + "time": 0.5490110370451317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3821, + "time": 0.5525079226314065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5560048082176812, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5595016938039559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.56999235056278, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5595016938039559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.56999235056278, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4353, + "time": 0.6294394055294503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4402, + "time": 0.6364331767019998, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4450, + "time": 0.6434269478745492, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4499, + "time": 0.6504207190470987, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.6853895749098459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4765, + "time": 0.6888864604961207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4765, + "time": 0.6888864604961207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3481, - "time": 0.5035515244235602, + "noteOrder": 4789, + "time": 0.6923833460823954, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2513,11 +3433,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, - "time": 0.5105452955961097, + "noteOrder": 4813, + "time": 0.6958802316686702, "position": { "x": 7, "y": 0 @@ -2531,18 +3451,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3578, - "time": 0.5175390667686591, + "noteOrder": 4813, + "time": 0.6958802316686702, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2559,13 +3479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 3626, - "time": 0.5245328379412085, + "noteOrder": 4837, + "time": 0.6993771172549448, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2577,18 +3497,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 98, "indexInLine": 2, "isSliding": false, - "noteOrder": 3675, - "time": 0.531526609113758, + "noteOrder": 4861, + "time": 0.7028740028412196, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2600,18 +3520,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3772, - "time": 0.5455141514588568, + "noteOrder": 4861, + "time": 0.7028740028412196, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2623,18 +3543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 3796, - "time": 0.5490110370451317, + "noteOrder": 4934, + "time": 0.7133646596000437, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2651,11 +3571,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3820, - "time": 0.5525079226314064, + "noteOrder": 4958, + "time": 0.7168615451863185, "position": { "x": 7, "y": 0 @@ -2669,16 +3589,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3844, - "time": 0.5560048082176811, + "noteOrder": 4958, + "time": 0.7168615451863185, "position": { "x": 6, "y": 0 @@ -2692,16 +3612,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5595016938039558, + "noteOrder": 4982, + "time": 0.7203584307725932, "position": { "x": 7, "y": 0 @@ -2720,11 +3640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, - "time": 0.56999235056278, + "noteOrder": 5007, + "time": 0.7238553163588679, "position": { "x": 7, "y": 0 @@ -2743,13 +3663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3868, - "time": 0.5595016938039558, + "noteOrder": 5007, + "time": 0.7238553163588679, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2761,18 +3681,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, - "time": 0.56999235056278, + "noteOrder": 5031, + "time": 0.7273522019451427, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2789,13 +3709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4352, - "time": 0.6294394055294503, + "noteOrder": 5055, + "time": 0.7308490875314173, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2812,13 +3732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4400, - "time": 0.6364331767019997, + "noteOrder": 5055, + "time": 0.7308490875314173, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2835,11 +3755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4448, - "time": 0.6434269478745492, + "noteOrder": 5127, + "time": 0.7413397442902415, "position": { "x": 7, "y": 0 @@ -2858,13 +3778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4497, - "time": 0.6504207190470986, + "noteOrder": 5152, + "time": 0.7448366298765162, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2881,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4739, - "time": 0.6853895749098459, + "noteOrder": 5176, + "time": 0.748333515462791, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2904,13 +3824,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4787, - "time": 0.6923833460823953, + "noteOrder": 5224, + "time": 0.7553272866353404, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2927,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, - "time": 0.6993771172549448, + "noteOrder": 5248, + "time": 0.7588241722216152, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2945,18 +3865,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4932, - "time": 0.7133646596000436, + "noteOrder": 5273, + "time": 0.7623210578078898, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2973,13 +3893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4980, - "time": 0.7203584307725931, + "noteOrder": 5321, + "time": 0.7693148289804393, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2996,13 +3916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5029, - "time": 0.7273522019451425, + "noteOrder": 5369, + "time": 0.7763086001529887, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3014,18 +3934,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5125, - "time": 0.7413397442902414, + "noteOrder": 5369, + "time": 0.7763086001529887, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3037,18 +3957,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5150, - "time": 0.7448366298765162, + "noteOrder": 5418, + "time": 0.7833023713255381, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3060,18 +3980,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5174, - "time": 0.7483335154627909, + "noteOrder": 5418, + "time": 0.7833023713255381, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3088,13 +4008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5222, - "time": 0.7553272866353403, + "noteOrder": 5466, + "time": 0.7902961424980877, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3106,18 +4026,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 113, "indexInLine": 1, "isSliding": false, - "noteOrder": 5246, - "time": 0.758824172221615, + "noteOrder": 5514, + "time": 0.7972899136706371, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3134,11 +4054,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 113, "indexInLine": 2, "isSliding": false, - "noteOrder": 5270, - "time": 0.7623210578078898, + "noteOrder": 5539, + "time": 0.8007867992569119, "position": { "x": 4, "y": 0 @@ -3157,11 +4077,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5319, - "time": 0.7693148289804392, + "noteOrder": 5539, + "time": 0.8007867992569119, "position": { "x": 4, "y": 0 @@ -3175,16 +4095,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 5367, - "time": 0.7763086001529887, + "noteOrder": 5563, + "time": 0.8042836848431866, "position": { "x": 4, "y": 0 @@ -3203,13 +4123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5367, - "time": 0.7763086001529887, + "noteOrder": 5587, + "time": 0.8077805704294613, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3221,18 +4141,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5416, - "time": 0.7833023713255381, + "noteOrder": 5587, + "time": 0.8077805704294613, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3244,18 +4164,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5416, - "time": 0.7833023713255381, + "noteOrder": 5708, + "time": 0.8252649983608349, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3272,13 +4192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5464, - "time": 0.7902961424980877, + "noteOrder": 5732, + "time": 0.8287618839471096, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3295,13 +4215,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5512, - "time": 0.7972899136706371, + "noteOrder": 5732, + "time": 0.8287618839471096, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3313,18 +4233,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5561, - "time": 0.8042836848431864, + "noteOrder": 5756, + "time": 0.8322587695333844, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3336,16 +4256,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5706, - "time": 0.8252649983608348, + "noteOrder": 5780, + "time": 0.835755655119659, "position": { "x": 7, "y": 0 @@ -3359,18 +4279,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5754, - "time": 0.8322587695333842, + "noteOrder": 5780, + "time": 0.835755655119659, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3388,10 +4308,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5827, - "time": 0.8427494262922084, + "noteOrder": 5829, + "time": 0.8427494262922086, "position": { "x": 4, "y": 0 @@ -3411,10 +4331,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.8532400830510326, + "noteOrder": 5901, + "time": 0.8532400830510327, "position": { "x": 4, "y": 0 @@ -3434,10 +4354,10 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5851, - "time": 0.8462463118784831, + "noteOrder": 5853, + "time": 0.8462463118784832, "position": { "x": 8, "y": 0 @@ -3457,10 +4377,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.8532400830510326, + "noteOrder": 5901, + "time": 0.8532400830510327, "position": { "x": 6, "y": 0 @@ -3480,9 +4400,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6092, + "noteOrder": 6095, "time": 0.8812151677412304, "position": { "x": 6, @@ -3503,9 +4423,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6141, + "noteOrder": 6143, "time": 0.8882089389137798, "position": { "x": 4, @@ -3526,10 +4446,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6189, - "time": 0.8952027100863293, + "noteOrder": 6192, + "time": 0.8952027100863295, "position": { "x": 4, "y": 0 @@ -3549,10 +4469,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6238, - "time": 0.9021964812588787, + "noteOrder": 6240, + "time": 0.9021964812588789, "position": { "x": 6, "y": 0 @@ -3572,10 +4492,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6624, - "time": 0.9581466506392743, + "noteOrder": 6627, + "time": 0.9581466506392744, "position": { "x": 7, "y": 0 @@ -3595,10 +4515,10 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6673, - "time": 0.9651404218118237, + "noteOrder": 6675, + "time": 0.9651404218118238, "position": { "x": 7, "y": 0 @@ -3618,10 +4538,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6624, - "time": 0.9581466506392743, + "noteOrder": 6627, + "time": 0.9581466506392744, "position": { "x": 3, "y": 0 @@ -3641,10 +4561,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6673, - "time": 0.9651404218118237, + "noteOrder": 6675, + "time": 0.9651404218118238, "position": { "x": 3, "y": 0 diff --git a/tracks/Catastrophic Dance/info.json b/tracks/Catastrophic Dance/info.json index f723556e..d96ff723 100644 --- a/tracks/Catastrophic Dance/info.json +++ b/tracks/Catastrophic Dance/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Catastrophic Dance", - "SongLength": "129.201633", + "SongLength": "119.248980", "SongAuthorName": "the wandering bard feat. \u5fd7\u65b9\u3042\u304d\u3053", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Ch4nge M4 Life/257_difficulty_1a.json b/tracks/Ch4nge M4 Life/257_difficulty_1a.json index 009c07e8..b2909497 100644 --- a/tracks/Ch4nge M4 Life/257_difficulty_1a.json +++ b/tracks/Ch4nge M4 Life/257_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 146, - "time": 0.025319794276671505, + "time": 0.0253197942766715, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 243, - "time": 0.042199657127785846, + "time": 0.04219965712778584, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 292, - "time": 0.05063958855334301, + "time": 0.050639588553343, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 316, - "time": 0.054859554266121595, + "time": 0.05485955426612159, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 340, + "noteOrder": 341, "time": 0.05907951997890017, "position": { "x": 4, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 340, + "noteOrder": 341, "time": 0.05907951997890017, "position": { "x": 6, @@ -174,7 +174,7 @@ }, { "noteOrder": 389, - "time": 0.06751945140445735, + "time": 0.06751945140445734, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 401, - "time": 0.06962943426084664, + "time": 0.06962943426084663, "position": { "x": 5, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 413, + "noteOrder": 414, "time": 0.07173941711723593, "position": { "x": 7, @@ -234,7 +234,7 @@ }, { "noteOrder": 438, - "time": 0.07595938283001452, + "time": 0.07595938283001451, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 535, - "time": 0.09283924568112885, + "time": 0.09283924568112883, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 632, - "time": 0.10971910853224319, + "noteOrder": 633, + "time": 0.10971910853224318, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 705, - "time": 0.12237900567057894, + "noteOrder": 706, + "time": 0.12237900567057892, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 754, - "time": 0.13081893709613612, + "time": 0.1308189370961361, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 754, - "time": 0.13081893709613612, + "time": 0.1308189370961361, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 778, - "time": 0.1350389028089147, + "noteOrder": 779, + "time": 0.13503890280891467, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 790, - "time": 0.13714888566530398, + "noteOrder": 791, + "time": 0.13714888566530395, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 802, - "time": 0.13925886852169328, + "noteOrder": 803, + "time": 0.13925886852169325, "position": { "x": 3, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 851, + "noteOrder": 852, "time": 0.14769879994725044, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 851, + "noteOrder": 852, "time": 0.14769879994725044, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 948, - "time": 0.16457866279836478, + "noteOrder": 949, + "time": 0.16457866279836475, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1046, - "time": 0.18145852564947912, + "time": 0.1814585256494791, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1094, + "noteOrder": 1095, "time": 0.18989845707503628, "position": { "x": 8, @@ -674,7 +674,7 @@ }, { "noteOrder": 1143, - "time": 0.19833838850059346, + "time": 0.19833838850059343, "position": { "x": 2, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1167, - "time": 0.20255835421337204, + "noteOrder": 1168, + "time": 0.202558354213372, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1192, - "time": 0.20677831992615062, + "time": 0.2067783199261506, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1216, - "time": 0.21099828563892922, + "time": 0.2109982856389292, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1216, - "time": 0.21099828563892922, + "time": 0.2109982856389292, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1240, - "time": 0.2152182513517078, + "noteOrder": 1241, + "time": 0.21521825135170775, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1240, - "time": 0.2152182513517078, + "noteOrder": 1241, + "time": 0.21521825135170775, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1337, - "time": 0.23209811420282211, + "noteOrder": 1338, + "time": 0.2320981142028221, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1386, - "time": 0.2405380456283793, + "noteOrder": 1387, + "time": 0.24053804562837927, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1435, - "time": 0.24897797705393646, + "time": 0.24897797705393643, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1459, + "noteOrder": 1460, "time": 0.25319794276671503, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1483, - "time": 0.25741790847949364, + "noteOrder": 1484, + "time": 0.2574179084794936, "position": { "x": 3, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1508, - "time": 0.26163787419227225, + "time": 0.2616378741922722, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1532, + "noteOrder": 1533, "time": 0.2658578399050508, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1556, - "time": 0.2700778056178294, + "noteOrder": 1557, + "time": 0.27007780561782935, "position": { "x": 7, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1581, - "time": 0.27429777133060795, + "time": 0.2742977713306079, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1605, - "time": 0.27851773704338656, + "noteOrder": 1606, + "time": 0.2785177370433865, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1629, + "noteOrder": 1630, "time": 0.2827377027561651, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1678, - "time": 0.2911776341817223, + "noteOrder": 1679, + "time": 0.29117763418172227, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1702, + "noteOrder": 1703, "time": 0.2953975998945009, "position": { "x": 4, @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1727, - "time": 0.2996175656072795, + "time": 0.2996175656072794, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1775, - "time": 0.30805749703283664, + "noteOrder": 1776, + "time": 0.3080574970328366, "position": { "x": 5, "y": 0 @@ -1134,7 +1134,7 @@ }, { "noteOrder": 1800, - "time": 0.31227746274561524, + "time": 0.3122774627456152, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 1825, "time": 0.3164974284583938, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1872, - "time": 0.32493735988395095, + "noteOrder": 1873, + "time": 0.3249373598839509, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.33337729130950816, + "noteOrder": 1922, + "time": 0.3333772913095081, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.34603718844784387, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2006, - "time": 0.3481471713042332, + "noteOrder": 2007, + "time": 0.34814717130423317, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.35869708558617963, + "noteOrder": 2068, + "time": 0.3586970855861796, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2116, - "time": 0.36713701701173684, + "noteOrder": 2117, + "time": 0.3671370170117368, "position": { "x": 8, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.375576948437294, + "noteOrder": 2165, + "time": 0.37557694843729394, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2213, - "time": 0.38401687986285116, + "noteOrder": 2214, + "time": 0.3840168798628511, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2409, "time": 0.4177766055650798, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2409, "time": 0.4177766055650798, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2456, + "noteOrder": 2457, "time": 0.426216536990637, "position": { "x": 2, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2480, - "time": 0.4304365027034156, + "noteOrder": 2482, + "time": 0.4304365027034155, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2505, - "time": 0.43465646841619415, + "noteOrder": 2506, + "time": 0.4346564684161941, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2553, - "time": 0.4430963998417513, + "noteOrder": 2555, + "time": 0.44309639984175125, "position": { "x": 8, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2578, + "noteOrder": 2579, "time": 0.44731636555452986, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2602, - "time": 0.4515363312673085, + "noteOrder": 2603, + "time": 0.45153633126730847, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2651, - "time": 0.4599762626928657, + "noteOrder": 2652, + "time": 0.45997626269286557, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2699, - "time": 0.46841619411842284, + "noteOrder": 2701, + "time": 0.4684161941184228, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2845, + "noteOrder": 2846, "time": 0.4937359883950943, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2894, + "noteOrder": 2895, "time": 0.5021759198206515, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2967, - "time": 0.5148358169589873, + "noteOrder": 2968, + "time": 0.5148358169589872, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2979, - "time": 0.5169457998153766, + "noteOrder": 2980, + "time": 0.5169457998153765, "position": { "x": 5, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2992, "time": 0.5190557826717658, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.527495714097323, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.5359356455228802, + "noteOrder": 3090, + "time": 0.5359356455228801, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5401556112356588, + "noteOrder": 3114, + "time": 0.5401556112356587, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5401556112356588, + "noteOrder": 3114, + "time": 0.5401556112356587, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.5443755769484373, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.5443755769484373, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3332, + "noteOrder": 3333, "time": 0.578135302650666, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3356, - "time": 0.5823552683634446, + "noteOrder": 3357, + "time": 0.5823552683634445, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3380, - "time": 0.5865752340762233, + "noteOrder": 3382, + "time": 0.5865752340762231, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3528, "time": 0.6118950283528947, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3550, - "time": 0.6161149940656733, + "noteOrder": 3552, + "time": 0.6161149940656732, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3575, - "time": 0.6203349597784519, + "noteOrder": 3576, + "time": 0.6203349597784518, "position": { "x": 7, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3623, + "noteOrder": 3625, "time": 0.628774891204009, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3672, - "time": 0.6372148226295663, + "noteOrder": 3674, + "time": 0.6372148226295662, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3745, - "time": 0.6498747197679019, + "noteOrder": 3747, + "time": 0.6498747197679018, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3769, - "time": 0.6540946854806805, + "noteOrder": 3771, + "time": 0.6540946854806804, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3818, - "time": 0.6625346169062377, + "noteOrder": 3820, + "time": 0.6625346169062376, "position": { "x": 7, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3867, + "noteOrder": 3868, "time": 0.6709745483317948, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4037, + "noteOrder": 4039, "time": 0.700514308321245, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4061, + "noteOrder": 4063, "time": 0.7047342740340236, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.7173941711723593, + "noteOrder": 4136, + "time": 0.7173941711723592, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4146, - "time": 0.7195041540287486, + "noteOrder": 4148, + "time": 0.7195041540287485, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7216141368851379, + "noteOrder": 4160, + "time": 0.7216141368851378, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4353, - "time": 0.7553738625873666, + "noteOrder": 4355, + "time": 0.7553738625873665, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4547, + "noteOrder": 4549, "time": 0.7891335882895952, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.822893313991824, + "noteOrder": 4744, + "time": 0.8228933139918239, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4864, - "time": 0.8439931425557169, + "noteOrder": 4866, + "time": 0.8439931425557168, "position": { "x": 7, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4888, + "noteOrder": 4890, "time": 0.8482131082684954, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4914, "time": 0.852433073981274, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4914, "time": 0.852433073981274, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5058, - "time": 0.8777528682579455, + "noteOrder": 5060, + "time": 0.8777528682579454, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5082, - "time": 0.8819728339707241, + "noteOrder": 5085, + "time": 0.881972833970724, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5107, - "time": 0.8861927996835026, + "noteOrder": 5109, + "time": 0.8861927996835025, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5131, - "time": 0.8904127653962812, + "noteOrder": 5133, + "time": 0.8904127653962811, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5301, - "time": 0.9199525253857314, + "noteOrder": 5304, + "time": 0.9199525253857311, "position": { "x": 3, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5326, - "time": 0.92417249109851, + "noteOrder": 5328, + "time": 0.9241724910985097, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5520, - "time": 0.9579322168007386, + "noteOrder": 5523, + "time": 0.9579322168007385, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5569, + "noteOrder": 5571, "time": 0.9663721482262957, "position": { "x": 7, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9705921139390744, + "noteOrder": 5596, + "time": 0.9705921139390743, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5617, + "noteOrder": 5620, "time": 0.9748120796518529, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5617, + "noteOrder": 5620, "time": 0.9748120796518529, "position": { "x": 6, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5642, - "time": 0.9790320453646315, + "noteOrder": 5644, + "time": 0.9790320453646314, "position": { "x": 7, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5642, - "time": 0.9790320453646315, + "noteOrder": 5644, + "time": 0.9790320453646314, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5666, - "time": 0.9832520110774101, + "noteOrder": 5669, + "time": 0.98325201107741, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5666, - "time": 0.9832520110774101, + "noteOrder": 5669, + "time": 0.98325201107741, "position": { "x": 4, "y": 0 @@ -2536,10 +2536,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.016879862851114338, + "time": 0.016879862851114334, "position": { "x": 7, "y": 0 @@ -2559,10 +2559,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.025319794276671505, + "time": 0.0253197942766715, "position": { "x": 7, "y": 0 @@ -2582,10 +2582,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, - "time": 0.033759725702228675, + "time": 0.03375972570222867, "position": { "x": 3, "y": 0 @@ -2605,10 +2605,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, - "time": 0.042199657127785846, + "time": 0.04219965712778584, "position": { "x": 3, "y": 0 @@ -2628,10 +2628,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 486, - "time": 0.08439931425557169, + "noteOrder": 487, + "time": 0.08439931425557168, "position": { "x": 3, "y": 0 @@ -2651,10 +2651,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 535, - "time": 0.09283924568112885, + "time": 0.09283924568112883, "position": { "x": 3, "y": 0 @@ -2674,10 +2674,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 584, - "time": 0.10127917710668602, + "time": 0.101279177106686, "position": { "x": 7, "y": 0 @@ -2697,10 +2697,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 632, - "time": 0.10971910853224319, + "noteOrder": 633, + "time": 0.10971910853224318, "position": { "x": 7, "y": 0 @@ -2720,10 +2720,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 973, - "time": 0.16879862851114338, + "time": 0.16879862851114336, "position": { "x": 7, "y": 0 @@ -2743,7 +2743,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 997, "time": 0.17301859422392193, @@ -2766,9 +2766,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1021, + "noteOrder": 1022, "time": 0.1772385599367005, "position": { "x": 3, @@ -2789,10 +2789,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1046, - "time": 0.18145852564947912, + "time": 0.1814585256494791, "position": { "x": 4, "y": 0 @@ -2812,10 +2812,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1070, - "time": 0.1856784913622577, + "time": 0.18567849136225767, "position": { "x": 7, "y": 0 @@ -2835,9 +2835,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1094, + "noteOrder": 1095, "time": 0.18989845707503628, "position": { "x": 7, @@ -2858,7 +2858,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1119, "time": 0.19411842278781485, @@ -2881,10 +2881,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1143, - "time": 0.19833838850059346, + "time": 0.19833838850059343, "position": { "x": 3, "y": 0 @@ -2904,10 +2904,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1265, - "time": 0.21943821706448638, + "time": 0.21943821706448635, "position": { "x": 6, "y": 0 @@ -2927,7 +2927,7 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1289, "time": 0.22365818277726493, @@ -2950,9 +2950,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1313, + "noteOrder": 1314, "time": 0.22787814849004354, "position": { "x": 4, @@ -2973,10 +2973,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1337, - "time": 0.23209811420282211, + "noteOrder": 1338, + "time": 0.2320981142028221, "position": { "x": 4, "y": 0 @@ -2996,7 +2996,7 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1362, "time": 0.2363180799156007, @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1386, - "time": 0.2405380456283793, + "noteOrder": 1387, + "time": 0.24053804562837927, "position": { "x": 7, "y": 0 @@ -3042,10 +3042,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1410, - "time": 0.24475801134115788, + "noteOrder": 1411, + "time": 0.24475801134115785, "position": { "x": 3, "y": 0 @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1435, - "time": 0.24897797705393646, + "time": 0.24897797705393643, "position": { "x": 3, "y": 0 @@ -3088,7 +3088,7 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1654, "time": 0.2869576684689437, @@ -3111,10 +3111,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1751, - "time": 0.3038375313200581, + "noteOrder": 1752, + "time": 0.30383753132005803, "position": { "x": 7, "y": 0 @@ -3134,10 +3134,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1751, - "time": 0.3038375313200581, + "noteOrder": 1752, + "time": 0.30383753132005803, "position": { "x": 3, "y": 0 @@ -3157,9 +3157,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1848, + "noteOrder": 1849, "time": 0.3207173941711724, "position": { "x": 3, @@ -3180,9 +3180,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1848, + "noteOrder": 1849, "time": 0.3207173941711724, "position": { "x": 7, @@ -3203,10 +3203,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1872, - "time": 0.32493735988395095, + "noteOrder": 1873, + "time": 0.3249373598839509, "position": { "x": 7, "y": 0 @@ -3226,10 +3226,10 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1897, - "time": 0.32915732559672956, + "noteOrder": 1898, + "time": 0.3291573255967295, "position": { "x": 3, "y": 0 @@ -3249,10 +3249,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.33337729130950816, + "noteOrder": 1922, + "time": 0.3333772913095081, "position": { "x": 3, "y": 0 @@ -3272,10 +3272,10 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1945, - "time": 0.33759725702228677, + "noteOrder": 1946, + "time": 0.3375972570222867, "position": { "x": 7, "y": 0 @@ -3294,13 +3294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.3418172227350653, + "noteOrder": 1958, + "time": 0.33970723987867596, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3312,18 +3312,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2018, - "time": 0.3502571541606225, + "noteOrder": 1958, + "time": 0.33970723987867596, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3340,13 +3340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.354477119873401, + "noteOrder": 1971, + "time": 0.34181722273506526, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3358,16 +3358,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2043, - "time": 0.354477119873401, + "noteOrder": 1983, + "time": 0.34392720559145457, "position": { "x": 3, "y": 0 @@ -3386,13 +3386,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2067, - "time": 0.35869708558617963, + "noteOrder": 1983, + "time": 0.34392720559145457, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3409,11 +3409,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2091, - "time": 0.36291705129895824, + "noteOrder": 2019, + "time": 0.3502571541606225, "position": { "x": 7, "y": 0 @@ -3432,11 +3432,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2116, - "time": 0.36713701701173684, + "noteOrder": 2044, + "time": 0.354477119873401, "position": { "x": 7, "y": 0 @@ -3455,11 +3455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2140, - "time": 0.3713569827245154, + "noteOrder": 2044, + "time": 0.354477119873401, "position": { "x": 3, "y": 0 @@ -3478,11 +3478,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2164, - "time": 0.375576948437294, + "noteOrder": 2068, + "time": 0.3586970855861796, "position": { "x": 3, "y": 0 @@ -3501,11 +3501,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2189, - "time": 0.37979691415007255, + "noteOrder": 2092, + "time": 0.3629170512989582, "position": { "x": 7, "y": 0 @@ -3524,11 +3524,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2213, - "time": 0.38401687986285116, + "noteOrder": 2117, + "time": 0.3671370170117368, "position": { "x": 7, "y": 0 @@ -3547,11 +3547,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2237, - "time": 0.3882368455756297, + "noteOrder": 2141, + "time": 0.37135698272451534, "position": { "x": 3, "y": 0 @@ -3570,13 +3570,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2262, - "time": 0.39245681128840837, + "noteOrder": 2165, + "time": 0.37557694843729394, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3588,18 +3588,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2286, - "time": 0.3966767770011869, + "noteOrder": 2190, + "time": 0.37979691415007255, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3611,16 +3611,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2310, - "time": 0.40089674271396547, + "noteOrder": 2214, + "time": 0.3840168798628511, "position": { "x": 7, "y": 0 @@ -3639,11 +3639,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2335, - "time": 0.4051167084267441, + "noteOrder": 2238, + "time": 0.3882368455756297, "position": { "x": 3, "y": 0 @@ -3662,11 +3662,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 3, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2383, - "time": 0.41355663985230123, + "noteOrder": 2250, + "time": 0.390346828432019, "position": { "x": 3, "y": 0 @@ -3685,13 +3685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2359, - "time": 0.4093366741395226, + "noteOrder": 2250, + "time": 0.390346828432019, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3703,16 +3703,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 2383, - "time": 0.41355663985230123, + "noteOrder": 2263, + "time": 0.3924568112884083, "position": { "x": 7, "y": 0 @@ -3731,13 +3731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2432, - "time": 0.42199657127785845, + "noteOrder": 2275, + "time": 0.3945667941447976, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3749,18 +3749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2456, - "time": 0.426216536990637, + "noteOrder": 2275, + "time": 0.3945667941447976, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3772,18 +3772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 2, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2529, - "time": 0.43887643412897276, + "noteOrder": 2287, + "time": 0.39667677700118686, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3800,13 +3800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2529, - "time": 0.43887643412897276, + "noteOrder": 2299, + "time": 0.3987867598575761, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3818,18 +3818,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2553, - "time": 0.4430963998417513, + "noteOrder": 2299, + "time": 0.3987867598575761, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3841,18 +3841,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 2, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2602, - "time": 0.4515363312673085, + "noteOrder": 2311, + "time": 0.4008967427139654, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3869,13 +3869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2626, - "time": 0.4557562969800871, + "noteOrder": 2323, + "time": 0.4030067255703547, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3887,18 +3887,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2651, - "time": 0.4599762626928657, + "noteOrder": 2323, + "time": 0.4030067255703547, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3910,16 +3910,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2675, - "time": 0.46419622840564423, + "noteOrder": 2336, + "time": 0.405116708426744, "position": { "x": 3, "y": 0 @@ -3933,18 +3933,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 99, "indexInLine": 2, "isSliding": false, - "noteOrder": 2699, - "time": 0.46841619411842284, + "noteOrder": 2348, + "time": 0.4072266912831333, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3956,18 +3956,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2724, - "time": 0.4726361598312014, + "noteOrder": 2348, + "time": 0.4072266912831333, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3984,13 +3984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2748, - "time": 0.47685612554398005, + "noteOrder": 2360, + "time": 0.4093366741395226, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4002,18 +4002,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 2, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2797, - "time": 0.4852960569695372, + "noteOrder": 2360, + "time": 0.4093366741395226, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4025,16 +4025,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2772, - "time": 0.4810760912567586, + "noteOrder": 2384, + "time": 0.4135566398523012, "position": { "x": 3, "y": 0 @@ -4053,13 +4053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 2797, - "time": 0.4852960569695372, + "noteOrder": 2360, + "time": 0.4093366741395226, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4071,16 +4071,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2821, - "time": 0.48951602268231575, + "noteOrder": 2384, + "time": 0.4135566398523012, "position": { "x": 7, "y": 0 @@ -4099,11 +4099,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2870, - "time": 0.4979559541078729, + "noteOrder": 2433, + "time": 0.4219965712778584, "position": { "x": 3, "y": 0 @@ -4122,13 +4122,4751 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2918, - "time": 0.5063958855334301, + "noteOrder": 2457, + "time": 0.426216536990637, "position": { - "x": 7, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2530, + "time": 0.4388764341289727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2530, + "time": 0.4388764341289727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2555, + "time": 0.44309639984175125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2603, + "time": 0.45153633126730847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2628, + "time": 0.4557562969800871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2640, + "time": 0.4578662798364764, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2640, + "time": 0.4578662798364764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2652, + "time": 0.45997626269286557, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2676, + "time": 0.4641962284056442, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2688, + "time": 0.4663062112620335, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2688, + "time": 0.4663062112620335, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2701, + "time": 0.4684161941184228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2725, + "time": 0.4726361598312014, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2737, + "time": 0.47474614268759063, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2737, + "time": 0.47474614268759063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2749, + "time": 0.47685612554397994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2749, + "time": 0.47685612554397994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2749, + "time": 0.47685612554397994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2761, + "time": 0.47896610840036924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2761, + "time": 0.47896610840036924, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2798, + "time": 0.48529605696953715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2773, + "time": 0.48107609125675854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2798, + "time": 0.48529605696953715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2822, + "time": 0.4895160226823157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2834, + "time": 0.491626005538705, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2834, + "time": 0.491626005538705, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2846, + "time": 0.4937359883950943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2846, + "time": 0.4937359883950943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2871, + "time": 0.49795595410787286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2883, + "time": 0.5000659369642622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2883, + "time": 0.5000659369642622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2895, + "time": 0.5021759198206515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2895, + "time": 0.5021759198206515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2919, + "time": 0.5063958855334301, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5085058683898194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2932, + "time": 0.5085058683898194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2944, + "time": 0.5106158512462087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2956, + "time": 0.512725834102598, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2956, + "time": 0.512725834102598, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3017, + "time": 0.5232757483845444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5253857312409337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5253857312409337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3041, + "time": 0.527495714097323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3041, + "time": 0.527495714097323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3065, + "time": 0.5317156798101016, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5338256626664908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5338256626664908, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5359356455228801, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5359356455228801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3163, + "time": 0.5485955426612158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5528155083739944, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3163, + "time": 0.5485955426612158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5528155083739944, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3211, + "time": 0.557035474086773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5591454569431623, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5591454569431623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5612554397995516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5612554397995516, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5612554397995516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3248, + "time": 0.5633654226559409, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3248, + "time": 0.5633654226559409, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3272, + "time": 0.5675853883687195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3272, + "time": 0.5675853883687195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5696953712251088, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5696953712251088, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5696953712251088, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3297, + "time": 0.5718053540814981, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3297, + "time": 0.5718053540814981, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3309, + "time": 0.5739153369378874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3309, + "time": 0.5739153369378874, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3309, + "time": 0.5739153369378874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3333, + "time": 0.578135302650666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3406, + "time": 0.5907951997890017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3406, + "time": 0.5907951997890017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3418, + "time": 0.592905182645391, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3418, + "time": 0.592905182645391, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3430, + "time": 0.5950151655017802, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3430, + "time": 0.5950151655017802, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3430, + "time": 0.5950151655017802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3443, + "time": 0.5971251483581695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3443, + "time": 0.5971251483581695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3467, + "time": 0.6013451140709482, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3467, + "time": 0.6013451140709482, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6034550969273375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6034550969273375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6034550969273375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3491, + "time": 0.6055650797837268, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3491, + "time": 0.6055650797837268, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6076750626401161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6076750626401161, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6076750626401161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3528, + "time": 0.6118950283528947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3601, + "time": 0.6245549254912304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3601, + "time": 0.6245549254912304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3613, + "time": 0.6266649083476197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3613, + "time": 0.6266649083476197, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3625, + "time": 0.628774891204009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3649, + "time": 0.6329948569167876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3661, + "time": 0.6351048397731769, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3661, + "time": 0.6351048397731769, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3674, + "time": 0.6372148226295662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3698, + "time": 0.6414347883423448, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3710, + "time": 0.6435447711987341, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3710, + "time": 0.6435447711987341, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3722, + "time": 0.6456547540551234, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3722, + "time": 0.6456547540551234, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3722, + "time": 0.6456547540551234, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3734, + "time": 0.6477647369115125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3734, + "time": 0.6477647369115125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3747, + "time": 0.6498747197679018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3747, + "time": 0.6498747197679018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3759, + "time": 0.6519847026242911, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3759, + "time": 0.6519847026242911, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3771, + "time": 0.6540946854806804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3771, + "time": 0.6540946854806804, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3795, + "time": 0.658314651193459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3807, + "time": 0.6604246340498483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3807, + "time": 0.6604246340498483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3820, + "time": 0.6625346169062376, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.6667545826190162, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3856, + "time": 0.6688645654754055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3856, + "time": 0.6688645654754055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3868, + "time": 0.6709745483317948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3893, + "time": 0.6751945140445734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3905, + "time": 0.6773044969009626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3905, + "time": 0.6773044969009626, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3917, + "time": 0.6794144797573519, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3917, + "time": 0.6794144797573519, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3917, + "time": 0.6794144797573519, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3929, + "time": 0.6815244626137412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3929, + "time": 0.6815244626137412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3966, + "time": 0.6878544111829091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3941, + "time": 0.6836344454701305, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3966, + "time": 0.6878544111829091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.6920743768956877, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4039, + "time": 0.700514308321245, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4087, + "time": 0.708954239746802, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4099, + "time": 0.7110642226031914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4099, + "time": 0.7110642226031914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7131742054595807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7152841883159698, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7152841883159698, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4209, + "time": 0.730054068310695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4221, + "time": 0.7321640511670843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4221, + "time": 0.7321640511670843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4245, + "time": 0.7363840168798628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4245, + "time": 0.7363840168798628, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7384939997362521, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7384939997362521, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7384939997362521, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4270, + "time": 0.7406039825926414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4270, + "time": 0.7406039825926414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4282, + "time": 0.7427139654490307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4294, + "time": 0.74482394830542, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4294, + "time": 0.74482394830542, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4318, + "time": 0.7490439140181986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4318, + "time": 0.7490439140181986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7532638797309772, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7532638797309772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7553738625873665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7553738625873665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4379, + "time": 0.7595938283001451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4404, + "time": 0.7638137940129237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4404, + "time": 0.7638137940129237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4428, + "time": 0.7680337597257022, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4428, + "time": 0.7680337597257022, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4452, + "time": 0.7722537254384808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4452, + "time": 0.7722537254384808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4477, + "time": 0.7764736911512594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4477, + "time": 0.7764736911512594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4489, + "time": 0.7785836740076487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4489, + "time": 0.7785836740076487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4501, + "time": 0.780693656864038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4513, + "time": 0.7828036397204273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4513, + "time": 0.7828036397204273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4525, + "time": 0.7849136225768166, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4537, + "time": 0.7870236054332059, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4537, + "time": 0.7870236054332059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4549, + "time": 0.7891335882895952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4549, + "time": 0.7891335882895952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4598, + "time": 0.7975735197151522, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4610, + "time": 0.7996835025715415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4610, + "time": 0.7996835025715415, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4635, + "time": 0.8039034682843201, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4635, + "time": 0.8039034682843201, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4647, + "time": 0.8060134511407094, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4647, + "time": 0.8060134511407094, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4647, + "time": 0.8060134511407094, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4145,11 +8883,57 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2942, - "time": 0.5106158512462087, + "noteOrder": 4659, + "time": 0.8081234339970987, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4659, + "time": 0.8081234339970987, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4671, + "time": 0.810233416853488, "position": { "x": 3, "y": 0 @@ -4168,11 +8952,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3015, - "time": 0.5232757483845445, + "noteOrder": 4683, + "time": 0.8123433997098773, "position": { "x": 3, "y": 0 @@ -4191,13 +8975,151 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4683, + "time": 0.8123433997098773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4708, + "time": 0.816563365422656, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4708, + "time": 0.816563365422656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3064, - "time": 0.5317156798101016, + "noteOrder": 4720, + "time": 0.8186733482790453, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4214,13 +9136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3161, - "time": 0.5485955426612159, + "noteOrder": 4720, + "time": 0.8186733482790453, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4237,13 +9159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3186, - "time": 0.5528155083739945, + "noteOrder": 4720, + "time": 0.8186733482790453, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4255,18 +9177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3161, - "time": 0.5485955426612159, + "noteOrder": 4732, + "time": 0.8207833311354346, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4283,11 +9205,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3186, - "time": 0.5528155083739945, + "noteOrder": 4732, + "time": 0.8207833311354346, "position": { "x": 4, "y": 0 @@ -4306,13 +9228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3210, - "time": 0.5570354740867731, + "noteOrder": 4744, + "time": 0.8228933139918239, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4324,18 +9246,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3234, - "time": 0.5612554397995517, + "noteOrder": 4744, + "time": 0.8228933139918239, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4352,13 +9274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3259, - "time": 0.5654754055123302, + "noteOrder": 4768, + "time": 0.8271132797046024, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4375,13 +9297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3283, - "time": 0.5696953712251088, + "noteOrder": 4793, + "time": 0.831333245417381, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4393,18 +9315,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3307, - "time": 0.5739153369378874, + "noteOrder": 4793, + "time": 0.831333245417381, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4416,18 +9338,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3332, - "time": 0.578135302650666, + "noteOrder": 4817, + "time": 0.8355532111301596, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4439,16 +9361,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 2, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3405, - "time": 0.5907951997890017, + "noteOrder": 4817, + "time": 0.8355532111301596, "position": { "x": 4, "y": 0 @@ -4467,13 +9389,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3405, - "time": 0.5907951997890017, + "noteOrder": 4841, + "time": 0.8397731768429382, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4485,18 +9407,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3429, - "time": 0.5950151655017804, + "noteOrder": 4841, + "time": 0.8397731768429382, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4508,18 +9430,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3453, - "time": 0.599235131214559, + "noteOrder": 4866, + "time": 0.8439931425557168, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4536,13 +9458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3477, - "time": 0.6034550969273376, + "noteOrder": 4939, + "time": 0.8566530396940524, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4559,13 +9481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3502, - "time": 0.6076750626401162, + "noteOrder": 4963, + "time": 0.860873005406831, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4577,16 +9499,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 211, "indexInLine": 1, "isSliding": false, - "noteOrder": 3526, - "time": 0.6118950283528947, + "noteOrder": 4939, + "time": 0.8566530396940524, "position": { "x": 3, "y": 0 @@ -4605,13 +9527,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 211, "indexInLine": 2, "isSliding": false, - "noteOrder": 3599, - "time": 0.6245549254912305, + "noteOrder": 4963, + "time": 0.860873005406831, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4628,11 +9550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3599, - "time": 0.6245549254912305, + "noteOrder": 4987, + "time": 0.8650929711196096, "position": { "x": 7, "y": 0 @@ -4651,13 +9573,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 213, "indexInLine": 2, "isSliding": false, - "noteOrder": 3623, - "time": 0.628774891204009, + "noteOrder": 5000, + "time": 0.8672029539759989, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4674,13 +9596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3648, - "time": 0.6329948569167876, + "noteOrder": 5000, + "time": 0.8672029539759989, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4692,16 +9614,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 2, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3672, - "time": 0.6372148226295663, + "noteOrder": 5012, + "time": 0.8693129368323882, "position": { "x": 6, "y": 0 @@ -4715,18 +9637,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3696, - "time": 0.6414347883423448, + "noteOrder": 5012, + "time": 0.8693129368323882, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4743,11 +9665,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3721, - "time": 0.6456547540551234, + "noteOrder": 5012, + "time": 0.8693129368323882, "position": { "x": 7, "y": 0 @@ -4766,11 +9688,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3794, - "time": 0.6583146511934591, + "noteOrder": 5024, + "time": 0.8714229196887775, "position": { "x": 7, "y": 0 @@ -4784,16 +9706,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 2, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3818, - "time": 0.6625346169062377, + "noteOrder": 5024, + "time": 0.8714229196887775, "position": { "x": 6, "y": 0 @@ -4807,18 +9729,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3842, - "time": 0.6667545826190163, + "noteOrder": 5036, + "time": 0.8735329025451668, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4835,13 +9757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 2, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3867, - "time": 0.6709745483317948, + "noteOrder": 5036, + "time": 0.8735329025451668, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4858,11 +9780,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3891, - "time": 0.6751945140445735, + "noteOrder": 5036, + "time": 0.8735329025451668, "position": { "x": 7, "y": 0 @@ -4881,11 +9803,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3915, - "time": 0.679414479757352, + "noteOrder": 5060, + "time": 0.8777528682579454, "position": { "x": 7, "y": 0 @@ -4899,18 +9821,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3964, - "time": 0.6878544111829091, + "noteOrder": 5133, + "time": 0.8904127653962811, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4922,16 +9844,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.6836344454701306, + "noteOrder": 5182, + "time": 0.8988526968218383, "position": { "x": 7, "y": 0 @@ -4950,13 +9872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3964, - "time": 0.6878544111829091, + "noteOrder": 5194, + "time": 0.9009626796782276, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4973,13 +9895,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3988, - "time": 0.6920743768956877, + "noteOrder": 5194, + "time": 0.9009626796782276, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4991,18 +9913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4037, - "time": 0.700514308321245, + "noteOrder": 5206, + "time": 0.9030726625346169, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5014,18 +9936,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4085, - "time": 0.708954239746802, + "noteOrder": 5206, + "time": 0.9030726625346169, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5042,13 +9964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4110, - "time": 0.7131742054595808, + "noteOrder": 5206, + "time": 0.9030726625346169, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5065,13 +9987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4207, - "time": 0.7300540683106951, + "noteOrder": 5219, + "time": 0.9051826453910062, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5088,13 +10010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4231, - "time": 0.7342740340234737, + "noteOrder": 5219, + "time": 0.9051826453910062, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5106,18 +10028,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4256, - "time": 0.7384939997362522, + "noteOrder": 5231, + "time": 0.9072926282473955, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5134,13 +10056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4280, - "time": 0.7427139654490308, + "noteOrder": 5231, + "time": 0.9072926282473955, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5152,16 +10074,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4304, - "time": 0.7469339311618093, + "noteOrder": 5231, + "time": 0.9072926282473955, "position": { "x": 7, "y": 0 @@ -5175,16 +10097,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4329, - "time": 0.751153896874588, + "noteOrder": 5243, + "time": 0.9094026111037848, "position": { "x": 7, "y": 0 @@ -5203,11 +10125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4377, - "time": 0.7595938283001451, + "noteOrder": 5243, + "time": 0.9094026111037848, "position": { "x": 6, "y": 0 @@ -5221,18 +10143,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4402, - "time": 0.7638137940129237, + "noteOrder": 5255, + "time": 0.9115125939601741, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5244,18 +10166,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4402, - "time": 0.7638137940129237, + "noteOrder": 5255, + "time": 0.9115125939601741, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5272,13 +10194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 4426, - "time": 0.7680337597257023, + "noteOrder": 5255, + "time": 0.9115125939601741, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5290,18 +10212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4426, - "time": 0.7680337597257023, + "noteOrder": 5267, + "time": 0.9136225768165634, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5318,13 +10240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4450, - "time": 0.7722537254384809, + "noteOrder": 5267, + "time": 0.9136225768165634, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5341,13 +10263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4450, - "time": 0.7722537254384809, + "noteOrder": 5279, + "time": 0.9157325596729528, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5359,16 +10281,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4475, - "time": 0.7764736911512594, + "noteOrder": 5279, + "time": 0.9157325596729528, "position": { "x": 5, "y": 0 @@ -5382,18 +10304,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4475, - "time": 0.7764736911512594, + "noteOrder": 5279, + "time": 0.9157325596729528, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5405,16 +10327,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4499, - "time": 0.780693656864038, + "noteOrder": 5292, + "time": 0.9178425425293418, "position": { "x": 7, "y": 0 @@ -5433,13 +10355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4523, - "time": 0.7849136225768167, + "noteOrder": 5292, + "time": 0.9178425425293418, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5451,18 +10373,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4596, - "time": 0.7975735197151523, + "noteOrder": 5304, + "time": 0.9199525253857311, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5479,11 +10401,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4620, - "time": 0.8017934854279309, + "noteOrder": 5304, + "time": 0.9199525253857311, "position": { "x": 7, "y": 0 @@ -5497,16 +10419,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4645, - "time": 0.8060134511407097, + "noteOrder": 5316, + "time": 0.9220625082421204, "position": { "x": 7, "y": 0 @@ -5525,13 +10447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4669, - "time": 0.8102334168534882, + "noteOrder": 5316, + "time": 0.9220625082421204, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5543,18 +10465,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4693, - "time": 0.8144533825662668, + "noteOrder": 5328, + "time": 0.9241724910985097, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5571,13 +10493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4718, - "time": 0.8186733482790453, + "noteOrder": 5328, + "time": 0.9241724910985097, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5589,18 +10511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4766, - "time": 0.8271132797046025, + "noteOrder": 5377, + "time": 0.932612422524067, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5612,18 +10534,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4791, - "time": 0.8313332454173811, + "noteOrder": 5389, + "time": 0.9347224053804563, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5635,18 +10557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4791, - "time": 0.8313332454173811, + "noteOrder": 5389, + "time": 0.9347224053804563, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5663,13 +10585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4815, - "time": 0.8355532111301596, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5686,13 +10608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4815, - "time": 0.8355532111301596, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5704,18 +10626,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 4839, - "time": 0.8397731768429382, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5732,13 +10654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4839, - "time": 0.8397731768429382, + "noteOrder": 5413, + "time": 0.9389423710932349, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5750,18 +10672,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4864, - "time": 0.8439931425557169, + "noteOrder": 5413, + "time": 0.9389423710932349, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5773,18 +10695,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4937, - "time": 0.8566530396940525, + "noteOrder": 5425, + "time": 0.9410523539496242, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5801,13 +10723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4961, - "time": 0.8608730054068312, + "noteOrder": 5425, + "time": 0.9410523539496242, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5824,11 +10746,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4937, - "time": 0.8566530396940525, + "noteOrder": 5425, + "time": 0.9410523539496242, "position": { "x": 3, "y": 0 @@ -5847,11 +10769,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4961, - "time": 0.8608730054068312, + "noteOrder": 5437, + "time": 0.9431623368060135, "position": { "x": 3, "y": 0 @@ -5870,13 +10792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4985, - "time": 0.8650929711196098, + "noteOrder": 5437, + "time": 0.9431623368060135, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5888,16 +10810,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5010, - "time": 0.8693129368323883, + "noteOrder": 5450, + "time": 0.9452723196624028, "position": { "x": 7, "y": 0 @@ -5911,16 +10833,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5034, - "time": 0.8735329025451669, + "noteOrder": 5462, + "time": 0.947382302518792, "position": { "x": 7, "y": 0 @@ -5939,13 +10861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5058, - "time": 0.8777528682579455, + "noteOrder": 5462, + "time": 0.947382302518792, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5962,13 +10884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 2, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5131, - "time": 0.8904127653962812, + "noteOrder": 5474, + "time": 0.9494922853751813, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5985,13 +10907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5180, - "time": 0.8988526968218384, + "noteOrder": 5474, + "time": 0.9494922853751813, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6008,11 +10930,11 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5204, - "time": 0.903072662534617, + "noteOrder": 5474, + "time": 0.9494922853751813, "position": { "x": 7, "y": 0 @@ -6031,11 +10953,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5228, - "time": 0.9072926282473955, + "noteOrder": 5486, + "time": 0.9516022682315706, "position": { "x": 7, "y": 0 @@ -6049,18 +10971,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5253, - "time": 0.9115125939601741, + "noteOrder": 5486, + "time": 0.9516022682315706, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6077,13 +10999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5277, - "time": 0.9157325596729528, + "noteOrder": 5498, + "time": 0.9537122510879599, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6095,18 +11017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5374, - "time": 0.9326124225240672, + "noteOrder": 5498, + "time": 0.9537122510879599, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6123,13 +11045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5399, - "time": 0.9368323882368457, + "noteOrder": 5498, + "time": 0.9537122510879599, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6146,13 +11068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5423, - "time": 0.9410523539496243, + "noteOrder": 5510, + "time": 0.9558222339443492, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6164,18 +11086,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5447, - "time": 0.9452723196624028, + "noteOrder": 5510, + "time": 0.9558222339443492, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6192,13 +11114,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5472, - "time": 0.9494922853751814, + "noteOrder": 5523, + "time": 0.9579322168007385, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6210,16 +11132,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5496, - "time": 0.9537122510879601, + "noteOrder": 5523, + "time": 0.9579322168007385, "position": { "x": 7, "y": 0 @@ -6239,9 +11161,9 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5690, + "noteOrder": 5693, "time": 0.9874719767901886, "position": { "x": 6, @@ -6262,10 +11184,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.9916919425029673, + "noteOrder": 5717, + "time": 0.9916919425029671, "position": { "x": 6, "y": 0 @@ -6285,9 +11207,9 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5690, + "noteOrder": 5693, "time": 0.9874719767901886, "position": { "x": 4, @@ -6308,10 +11230,10 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.9916919425029673, + "noteOrder": 5717, + "time": 0.9916919425029671, "position": { "x": 4, "y": 0 diff --git a/tracks/Ch4nge M4 Life/257_difficulty_1b.json b/tracks/Ch4nge M4 Life/257_difficulty_1b.json index 402737a0..53202668 100644 --- a/tracks/Ch4nge M4 Life/257_difficulty_1b.json +++ b/tracks/Ch4nge M4 Life/257_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 146, - "time": 0.025319794276671505, + "time": 0.0253197942766715, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 243, - "time": 0.042199657127785846, + "time": 0.04219965712778584, "position": { "x": 3, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 340, + "noteOrder": 341, "time": 0.05907951997890017, "position": { "x": 5, @@ -94,7 +94,7 @@ }, { "noteOrder": 438, - "time": 0.07595938283001452, + "time": 0.07595938283001451, "position": { "x": 5, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 535, - "time": 0.09283924568112885, + "time": 0.09283924568112883, "position": { "x": 3, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 632, - "time": 0.10971910853224319, + "noteOrder": 633, + "time": 0.10971910853224318, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 754, - "time": 0.13081893709613612, + "time": 0.1308189370961361, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 851, + "noteOrder": 852, "time": 0.14769879994725044, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 900, - "time": 0.15613873137280762, + "time": 0.1561387313728076, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 948, - "time": 0.16457866279836478, + "noteOrder": 949, + "time": 0.16457866279836475, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1046, - "time": 0.18145852564947912, + "time": 0.1814585256494791, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1094, + "noteOrder": 1095, "time": 0.18989845707503628, "position": { "x": 2, @@ -374,7 +374,7 @@ }, { "noteOrder": 1143, - "time": 0.19833838850059346, + "time": 0.19833838850059343, "position": { "x": 2, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1192, - "time": 0.20677831992615062, + "time": 0.2067783199261506, "position": { "x": 8, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1216, - "time": 0.21099828563892922, + "time": 0.2109982856389292, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1240, - "time": 0.2152182513517078, + "noteOrder": 1241, + "time": 0.21521825135170775, "position": { "x": 8, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1265, - "time": 0.21943821706448638, + "time": 0.21943821706448635, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1313, + "noteOrder": 1314, "time": 0.22787814849004354, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1313, + "noteOrder": 1314, "time": 0.22787814849004354, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1337, - "time": 0.23209811420282211, + "noteOrder": 1338, + "time": 0.2320981142028221, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1337, - "time": 0.23209811420282211, + "noteOrder": 1338, + "time": 0.2320981142028221, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1386, - "time": 0.2405380456283793, + "noteOrder": 1387, + "time": 0.24053804562837927, "position": { "x": 8, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1435, - "time": 0.24897797705393646, + "time": 0.24897797705393643, "position": { "x": 2, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1483, - "time": 0.25741790847949364, + "noteOrder": 1484, + "time": 0.2574179084794936, "position": { "x": 8, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1532, + "noteOrder": 1533, "time": 0.2658578399050508, "position": { "x": 2, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1556, - "time": 0.2700778056178294, + "noteOrder": 1557, + "time": 0.27007780561782935, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1581, - "time": 0.27429777133060795, + "time": 0.2742977713306079, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1605, - "time": 0.27851773704338656, + "noteOrder": 1606, + "time": 0.2785177370433865, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1605, - "time": 0.27851773704338656, + "noteOrder": 1606, + "time": 0.2785177370433865, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1629, + "noteOrder": 1630, "time": 0.2827377027561651, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1629, + "noteOrder": 1630, "time": 0.2827377027561651, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1678, - "time": 0.2911776341817223, + "noteOrder": 1679, + "time": 0.29117763418172227, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1702, + "noteOrder": 1703, "time": 0.2953975998945009, "position": { "x": 4, @@ -814,7 +814,7 @@ }, { "noteOrder": 1727, - "time": 0.2996175656072795, + "time": 0.2996175656072794, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1775, - "time": 0.30805749703283664, + "noteOrder": 1776, + "time": 0.3080574970328366, "position": { "x": 5, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1800, - "time": 0.31227746274561524, + "time": 0.3122774627456152, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 1825, "time": 0.3164974284583938, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 1849, "time": 0.3207173941711724, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1872, - "time": 0.32493735988395095, + "noteOrder": 1873, + "time": 0.3249373598839509, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1897, - "time": 0.32915732559672956, + "noteOrder": 1898, + "time": 0.3291573255967295, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.33337729130950816, + "noteOrder": 1922, + "time": 0.3333772913095081, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.33759725702228677, + "noteOrder": 1946, + "time": 0.3375972570222867, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1970, - "time": 0.3418172227350653, + "noteOrder": 1971, + "time": 0.34181722273506526, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.34603718844784387, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.34603718844784387, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.3502571541606225, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.3502571541606225, "position": { "x": 7, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.36291705129895824, + "noteOrder": 2092, + "time": 0.3629170512989582, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2189, + "noteOrder": 2190, "time": 0.37979691415007255, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2262, - "time": 0.39245681128840837, + "noteOrder": 2263, + "time": 0.3924568112884083, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2310, - "time": 0.40089674271396547, + "noteOrder": 2311, + "time": 0.4008967427139654, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2335, - "time": 0.4051167084267441, + "noteOrder": 2336, + "time": 0.405116708426744, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2360, "time": 0.4093366741395226, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2675, - "time": 0.46419622840564423, + "noteOrder": 2676, + "time": 0.4641962284056442, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2699, - "time": 0.46841619411842284, + "noteOrder": 2701, + "time": 0.4684161941184228, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.4726361598312014, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2748, - "time": 0.47685612554398005, + "noteOrder": 2749, + "time": 0.47685612554397994, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2772, - "time": 0.4810760912567586, + "noteOrder": 2773, + "time": 0.48107609125675854, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2797, - "time": 0.4852960569695372, + "noteOrder": 2798, + "time": 0.48529605696953715, "position": { "x": 6, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.5317156798101016, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.5359356455228802, + "noteOrder": 3090, + "time": 0.5359356455228801, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5401556112356588, + "noteOrder": 3114, + "time": 0.5401556112356587, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5401556112356588, + "noteOrder": 3114, + "time": 0.5401556112356587, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.5443755769484373, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.5443755769484373, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3309, "time": 0.5739153369378874, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3332, + "noteOrder": 3333, "time": 0.578135302650666, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3356, - "time": 0.5823552683634446, + "noteOrder": 3357, + "time": 0.5823552683634445, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3380, - "time": 0.5865752340762233, + "noteOrder": 3382, + "time": 0.5865752340762231, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3502, - "time": 0.6076750626401162, + "noteOrder": 3503, + "time": 0.6076750626401161, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3528, "time": 0.6118950283528947, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3550, - "time": 0.6161149940656733, + "noteOrder": 3552, + "time": 0.6161149940656732, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3575, - "time": 0.6203349597784519, + "noteOrder": 3576, + "time": 0.6203349597784518, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 3698, "time": 0.6414347883423448, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3721, + "noteOrder": 3722, "time": 0.6456547540551234, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3745, - "time": 0.6498747197679019, + "noteOrder": 3747, + "time": 0.6498747197679018, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3745, - "time": 0.6498747197679019, + "noteOrder": 3747, + "time": 0.6498747197679018, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3769, - "time": 0.6540946854806805, + "noteOrder": 3771, + "time": 0.6540946854806804, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3769, - "time": 0.6540946854806805, + "noteOrder": 3771, + "time": 0.6540946854806804, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.6751945140445735, + "noteOrder": 3893, + "time": 0.6751945140445734, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3915, - "time": 0.679414479757352, + "noteOrder": 3917, + "time": 0.6794144797573519, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3940, - "time": 0.6836344454701306, + "noteOrder": 3941, + "time": 0.6836344454701305, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3940, - "time": 0.6836344454701306, + "noteOrder": 3941, + "time": 0.6836344454701305, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3964, + "noteOrder": 3966, "time": 0.6878544111829091, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3964, + "noteOrder": 3966, "time": 0.6878544111829091, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.708954239746802, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4110, - "time": 0.7131742054595808, + "noteOrder": 4112, + "time": 0.7131742054595807, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.7173941711723593, + "noteOrder": 4136, + "time": 0.7173941711723592, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.7173941711723593, + "noteOrder": 4136, + "time": 0.7173941711723592, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7216141368851379, + "noteOrder": 4160, + "time": 0.7216141368851378, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7216141368851379, + "noteOrder": 4160, + "time": 0.7216141368851378, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4377, + "noteOrder": 4379, "time": 0.7595938283001451, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.7638137940129237, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4426, - "time": 0.7680337597257023, + "noteOrder": 4428, + "time": 0.7680337597257022, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.7722537254384809, + "noteOrder": 4452, + "time": 0.7722537254384808, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4766, - "time": 0.8271132797046025, + "noteOrder": 4768, + "time": 0.8271132797046024, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4791, - "time": 0.8313332454173811, + "noteOrder": 4793, + "time": 0.831333245417381, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 4817, "time": 0.8355532111301596, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4839, + "noteOrder": 4841, "time": 0.8397731768429382, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4864, - "time": 0.8439931425557169, + "noteOrder": 4866, + "time": 0.8439931425557168, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4888, + "noteOrder": 4890, "time": 0.8482131082684954, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4914, "time": 0.852433073981274, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4914, "time": 0.852433073981274, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4937, - "time": 0.8566530396940525, + "noteOrder": 4939, + "time": 0.8566530396940524, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4937, - "time": 0.8566530396940525, + "noteOrder": 4939, + "time": 0.8566530396940524, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5545, - "time": 0.9621521825135172, + "noteOrder": 5547, + "time": 0.9621521825135171, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5569, + "noteOrder": 5571, "time": 0.9663721482262957, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9705921139390744, + "noteOrder": 5596, + "time": 0.9705921139390743, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9705921139390744, + "noteOrder": 5596, + "time": 0.9705921139390743, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5617, + "noteOrder": 5620, "time": 0.9748120796518529, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5617, + "noteOrder": 5620, "time": 0.9748120796518529, "position": { "x": 7, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5642, - "time": 0.9790320453646315, + "noteOrder": 5644, + "time": 0.9790320453646314, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5666, - "time": 0.9832520110774101, + "noteOrder": 5669, + "time": 0.98325201107741, "position": { "x": 7, "y": 0 @@ -2416,10 +2416,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, - "time": 0.05063958855334301, + "time": 0.050639588553343, "position": { "x": 7, "y": 0 @@ -2439,7 +2439,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 365, "time": 0.06329948569167876, @@ -2462,10 +2462,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, - "time": 0.06751945140445735, + "time": 0.06751945140445734, "position": { "x": 3, "y": 0 @@ -2485,7 +2485,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 462, "time": 0.0801793485427931, @@ -2508,7 +2508,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 681, "time": 0.11815903995780035, @@ -2531,10 +2531,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 754, - "time": 0.13081893709613612, + "time": 0.1308189370961361, "position": { "x": 3, "y": 0 @@ -2554,10 +2554,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 778, - "time": 0.1350389028089147, + "noteOrder": 779, + "time": 0.13503890280891467, "position": { "x": 7, "y": 0 @@ -2577,9 +2577,9 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 851, + "noteOrder": 852, "time": 0.14769879994725044, "position": { "x": 7, @@ -2600,10 +2600,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 875, - "time": 0.15191876566002904, + "noteOrder": 876, + "time": 0.15191876566002901, "position": { "x": 3, "y": 0 @@ -2623,10 +2623,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 900, - "time": 0.15613873137280762, + "time": 0.1561387313728076, "position": { "x": 3, "y": 0 @@ -2646,7 +2646,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 924, "time": 0.1603586970855862, @@ -2669,10 +2669,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 948, - "time": 0.16457866279836478, + "noteOrder": 949, + "time": 0.16457866279836475, "position": { "x": 7, "y": 0 @@ -2692,10 +2692,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 973, - "time": 0.16879862851114338, + "time": 0.16879862851114336, "position": { "x": 3, "y": 0 @@ -2715,7 +2715,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 997, "time": 0.17301859422392193, @@ -2738,9 +2738,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1021, + "noteOrder": 1022, "time": 0.1772385599367005, "position": { "x": 7, @@ -2761,10 +2761,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1046, - "time": 0.18145852564947912, + "time": 0.1814585256494791, "position": { "x": 7, "y": 0 @@ -2784,10 +2784,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1070, - "time": 0.1856784913622577, + "time": 0.18567849136225767, "position": { "x": 4, "y": 0 @@ -2807,10 +2807,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1167, - "time": 0.20255835421337204, + "noteOrder": 1168, + "time": 0.202558354213372, "position": { "x": 4, "y": 0 @@ -2830,10 +2830,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1167, - "time": 0.20255835421337204, + "noteOrder": 1168, + "time": 0.202558354213372, "position": { "x": 6, "y": 0 @@ -2853,10 +2853,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1265, - "time": 0.21943821706448638, + "time": 0.21943821706448635, "position": { "x": 6, "y": 0 @@ -2876,7 +2876,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1362, "time": 0.2363180799156007, @@ -2899,10 +2899,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1386, - "time": 0.2405380456283793, + "noteOrder": 1387, + "time": 0.24053804562837927, "position": { "x": 6, "y": 0 @@ -2922,10 +2922,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1410, - "time": 0.24475801134115788, + "noteOrder": 1411, + "time": 0.24475801134115785, "position": { "x": 4, "y": 0 @@ -2945,10 +2945,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1435, - "time": 0.24897797705393646, + "time": 0.24897797705393643, "position": { "x": 4, "y": 0 @@ -2968,9 +2968,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1459, + "noteOrder": 1460, "time": 0.25319794276671503, "position": { "x": 6, @@ -2991,10 +2991,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1483, - "time": 0.25741790847949364, + "noteOrder": 1484, + "time": 0.2574179084794936, "position": { "x": 6, "y": 0 @@ -3014,10 +3014,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1508, - "time": 0.26163787419227225, + "time": 0.2616378741922722, "position": { "x": 4, "y": 0 @@ -3037,9 +3037,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1532, + "noteOrder": 1533, "time": 0.2658578399050508, "position": { "x": 4, @@ -3060,7 +3060,7 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1654, "time": 0.2869576684689437, @@ -3083,10 +3083,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1751, - "time": 0.3038375313200581, + "noteOrder": 1752, + "time": 0.30383753132005803, "position": { "x": 7, "y": 0 @@ -3106,10 +3106,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1751, - "time": 0.3038375313200581, + "noteOrder": 1752, + "time": 0.30383753132005803, "position": { "x": 3, "y": 0 @@ -3129,9 +3129,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1848, + "noteOrder": 1849, "time": 0.3207173941711724, "position": { "x": 3, @@ -3152,9 +3152,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.354477119873401, "position": { "x": 7, @@ -3175,10 +3175,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, - "time": 0.36291705129895824, + "noteOrder": 2092, + "time": 0.3629170512989582, "position": { "x": 7, "y": 0 @@ -3198,10 +3198,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2140, - "time": 0.3713569827245154, + "noteOrder": 2141, + "time": 0.37135698272451534, "position": { "x": 3, "y": 0 @@ -3221,9 +3221,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2189, + "noteOrder": 2190, "time": 0.37979691415007255, "position": { "x": 3, @@ -3244,9 +3244,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2237, + "noteOrder": 2238, "time": 0.3882368455756297, "position": { "x": 7, @@ -3267,10 +3267,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2262, - "time": 0.39245681128840837, + "noteOrder": 2263, + "time": 0.3924568112884083, "position": { "x": 7, "y": 0 @@ -3290,10 +3290,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2286, - "time": 0.3966767770011869, + "noteOrder": 2287, + "time": 0.39667677700118686, "position": { "x": 3, "y": 0 @@ -3313,10 +3313,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2310, - "time": 0.40089674271396547, + "noteOrder": 2311, + "time": 0.4008967427139654, "position": { "x": 3, "y": 0 @@ -3336,10 +3336,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2383, - "time": 0.41355663985230123, + "noteOrder": 2384, + "time": 0.4135566398523012, "position": { "x": 6, "y": 0 @@ -3359,9 +3359,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2407, + "noteOrder": 2409, "time": 0.4177766055650798, "position": { "x": 6, @@ -3382,10 +3382,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2383, - "time": 0.41355663985230123, + "noteOrder": 2384, + "time": 0.4135566398523012, "position": { "x": 4, "y": 0 @@ -3405,9 +3405,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2407, + "noteOrder": 2409, "time": 0.4177766055650798, "position": { "x": 4, @@ -3428,10 +3428,10 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2432, - "time": 0.42199657127785845, + "noteOrder": 2433, + "time": 0.4219965712778584, "position": { "x": 7, "y": 0 @@ -3450,11 +3450,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2480, - "time": 0.4304365027034156, + "noteOrder": 2457, + "time": 0.426216536990637, "position": { "x": 7, "y": 0 @@ -3468,18 +3468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2529, - "time": 0.43887643412897276, + "noteOrder": 2457, + "time": 0.426216536990637, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3496,13 +3496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2578, - "time": 0.44731636555452986, + "noteOrder": 2482, + "time": 0.4304365027034155, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3514,18 +3514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2626, - "time": 0.4557562969800871, + "noteOrder": 2482, + "time": 0.4304365027034155, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3542,13 +3542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2821, - "time": 0.48951602268231575, + "noteOrder": 2482, + "time": 0.4304365027034155, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3565,13 +3565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2870, - "time": 0.4979559541078729, + "noteOrder": 2506, + "time": 0.4346564684161941, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3583,18 +3583,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2918, - "time": 0.5063958855334301, + "noteOrder": 2506, + "time": 0.4346564684161941, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3611,13 +3611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2967, - "time": 0.5148358169589873, + "noteOrder": 2530, + "time": 0.4388764341289727, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3629,18 +3629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3015, - "time": 0.5232757483845445, + "noteOrder": 2530, + "time": 0.4388764341289727, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3657,13 +3657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3161, - "time": 0.5485955426612159, + "noteOrder": 2530, + "time": 0.4388764341289727, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3680,13 +3680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3186, - "time": 0.5528155083739945, + "noteOrder": 2555, + "time": 0.44309639984175125, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3703,13 +3703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3161, - "time": 0.5485955426612159, + "noteOrder": 2555, + "time": 0.44309639984175125, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3721,18 +3721,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3186, - "time": 0.5528155083739945, + "noteOrder": 2579, + "time": 0.44731636555452986, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3744,18 +3744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3210, - "time": 0.5570354740867731, + "noteOrder": 2579, + "time": 0.44731636555452986, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3767,18 +3767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3259, - "time": 0.5654754055123302, + "noteOrder": 2579, + "time": 0.44731636555452986, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3790,16 +3790,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3405, - "time": 0.5907951997890017, + "noteOrder": 2603, + "time": 0.45153633126730847, "position": { "x": 7, "y": 0 @@ -3813,18 +3813,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3453, - "time": 0.599235131214559, + "noteOrder": 2603, + "time": 0.45153633126730847, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3841,13 +3841,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3599, - "time": 0.6245549254912305, + "noteOrder": 2628, + "time": 0.4557562969800871, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3864,13 +3864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3648, - "time": 0.6329948569167876, + "noteOrder": 2628, + "time": 0.4557562969800871, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3882,16 +3882,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3794, - "time": 0.6583146511934591, + "noteOrder": 2628, + "time": 0.4557562969800871, "position": { "x": 7, "y": 0 @@ -3910,13 +3910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, - "time": 0.6667545826190163, + "noteOrder": 2652, + "time": 0.45997626269286557, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3928,18 +3928,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3988, - "time": 0.6920743768956877, + "noteOrder": 2652, + "time": 0.45997626269286557, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3951,18 +3951,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 4061, - "time": 0.7047342740340236, + "noteOrder": 2822, + "time": 0.4895160226823157, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3979,13 +3979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, - "time": 0.6920743768956877, + "noteOrder": 2846, + "time": 0.4937359883950943, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3997,18 +3997,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4061, - "time": 0.7047342740340236, + "noteOrder": 2846, + "time": 0.4937359883950943, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4020,18 +4020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4183, - "time": 0.7258341025979165, + "noteOrder": 2871, + "time": 0.49795595410787286, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4043,18 +4043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4231, - "time": 0.7342740340234737, + "noteOrder": 2871, + "time": 0.49795595410787286, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4071,13 +4071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4280, - "time": 0.7427139654490308, + "noteOrder": 2871, + "time": 0.49795595410787286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4094,13 +4094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4304, - "time": 0.7469339311618093, + "noteOrder": 2895, + "time": 0.5021759198206515, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4112,18 +4112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4329, - "time": 0.751153896874588, + "noteOrder": 2895, + "time": 0.5021759198206515, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4140,13 +4140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4353, - "time": 0.7553738625873666, + "noteOrder": 2919, + "time": 0.5063958855334301, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4158,18 +4158,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4475, - "time": 0.7764736911512594, + "noteOrder": 2919, + "time": 0.5063958855334301, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4181,18 +4181,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4523, - "time": 0.7849136225768167, + "noteOrder": 2919, + "time": 0.5063958855334301, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4204,16 +4204,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4572, - "time": 0.7933535540023738, + "noteOrder": 2944, + "time": 0.5106158512462087, "position": { "x": 3, "y": 0 @@ -4232,13 +4232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4620, - "time": 0.8017934854279309, + "noteOrder": 2944, + "time": 0.5106158512462087, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4250,18 +4250,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4669, - "time": 0.8102334168534882, + "noteOrder": 2968, + "time": 0.5148358169589872, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4278,13 +4278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4693, - "time": 0.8144533825662668, + "noteOrder": 2968, + "time": 0.5148358169589872, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4296,18 +4296,3514 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2968, + "time": 0.5148358169589872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2992, + "time": 0.5190557826717658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2992, + "time": 0.5190557826717658, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3017, + "time": 0.5232757483845444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3017, + "time": 0.5232757483845444, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3017, + "time": 0.5232757483845444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3041, + "time": 0.527495714097323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3041, + "time": 0.527495714097323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3163, + "time": 0.5485955426612158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5528155083739944, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3163, + "time": 0.5485955426612158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3187, + "time": 0.5528155083739944, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3211, + "time": 0.557035474086773, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5612554397995516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5612554397995516, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5654754055123302, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5696953712251088, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5696953712251088, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3309, + "time": 0.5739153369378874, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3309, + "time": 0.5739153369378874, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3406, + "time": 0.5907951997890017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3430, + "time": 0.5950151655017802, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3430, + "time": 0.5950151655017802, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3455, + "time": 0.5992351312145588, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6034550969273375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6034550969273375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6076750626401161, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3503, + "time": 0.6076750626401161, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3601, + "time": 0.6245549254912304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3625, + "time": 0.628774891204009, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3625, + "time": 0.628774891204009, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3649, + "time": 0.6329948569167876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3674, + "time": 0.6372148226295662, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3674, + "time": 0.6372148226295662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3795, + "time": 0.658314651193459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3820, + "time": 0.6625346169062376, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3820, + "time": 0.6625346169062376, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.6667545826190162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3868, + "time": 0.6709745483317948, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3868, + "time": 0.6709745483317948, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.6920743768956877, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.7047342740340236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.6920743768956877, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.7047342740340236, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4185, + "time": 0.7258341025979164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4209, + "time": 0.730054068310695, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4209, + "time": 0.730054068310695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4233, + "time": 0.7342740340234736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7384939997362521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7384939997362521, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4282, + "time": 0.7427139654490307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4282, + "time": 0.7427139654490307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4282, + "time": 0.7427139654490307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4294, + "time": 0.74482394830542, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4294, + "time": 0.74482394830542, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4306, + "time": 0.7469339311618093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4318, + "time": 0.7490439140181986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4318, + "time": 0.7490439140181986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7511538968745879, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7532638797309772, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7532638797309772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7553738625873665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7553738625873665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7553738625873665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4367, + "time": 0.7574838454437558, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4367, + "time": 0.7574838454437558, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4379, + "time": 0.7595938283001451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4379, + "time": 0.7595938283001451, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4477, + "time": 0.7764736911512594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4501, + "time": 0.780693656864038, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4501, + "time": 0.780693656864038, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4525, + "time": 0.7849136225768166, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4549, + "time": 0.7891335882895952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4549, + "time": 0.7891335882895952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4574, + "time": 0.7933535540023737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4598, + "time": 0.7975735197151522, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4598, + "time": 0.7975735197151522, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4622, + "time": 0.8017934854279308, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4647, + "time": 0.8060134511407094, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4647, + "time": 0.8060134511407094, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4671, + "time": 0.810233416853488, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4671, + "time": 0.810233416853488, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4671, + "time": 0.810233416853488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4683, + "time": 0.8123433997098773, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4683, + "time": 0.8123433997098773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4695, + "time": 0.8144533825662666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4708, + "time": 0.816563365422656, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4708, + "time": 0.816563365422656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4720, + "time": 0.8186733482790453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4720, + "time": 0.8186733482790453, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4720, + "time": 0.8186733482790453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4732, + "time": 0.8207833311354346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4732, + "time": 0.8207833311354346, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4744, + "time": 0.8228933139918239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4744, + "time": 0.8228933139918239, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4744, + "time": 0.8228933139918239, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4756, + "time": 0.8250032968482132, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4756, + "time": 0.8250032968482132, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4768, + "time": 0.8271132797046024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4768, + "time": 0.8271132797046024, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4963, + "time": 0.860873005406831, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4987, + "time": 0.8650929711196096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4987, + "time": 0.8650929711196096, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5012, + "time": 0.8693129368323882, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5012, + "time": 0.8693129368323882, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5012, + "time": 0.8693129368323882, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5036, + "time": 0.8735329025451668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5036, + "time": 0.8735329025451668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5060, + "time": 0.8777528682579454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5060, + "time": 0.8777528682579454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5060, + "time": 0.8777528682579454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5073, + "time": 0.8798628511143347, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5073, + "time": 0.8798628511143347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5085, + "time": 0.881972833970724, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5085, + "time": 0.881972833970724, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5085, + "time": 0.881972833970724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5097, + "time": 0.8840828168271133, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5097, + "time": 0.8840828168271133, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5109, + "time": 0.8861927996835025, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5109, + "time": 0.8861927996835025, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5109, + "time": 0.8861927996835025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5133, + "time": 0.8904127653962811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5133, + "time": 0.8904127653962811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5158, + "time": 0.8946327311090597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5182, + "time": 0.8988526968218383, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5182, + "time": 0.8988526968218383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5206, + "time": 0.9030726625346169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5231, + "time": 0.9072926282473955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5231, + "time": 0.9072926282473955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5255, + "time": 0.9115125939601741, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5267, + "time": 0.9136225768165634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5267, + "time": 0.9136225768165634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5279, + "time": 0.9157325596729528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5292, + "time": 0.9178425425293418, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5292, + "time": 0.9178425425293418, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5304, + "time": 0.9199525253857311, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5316, + "time": 0.9220625082421204, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5316, + "time": 0.9220625082421204, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4718, - "time": 0.8186733482790453, + "noteOrder": 5328, + "time": 0.9241724910985097, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4319,18 +7815,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4742, - "time": 0.822893313991824, + "noteOrder": 5340, + "time": 0.926282473954899, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4347,13 +7843,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4961, - "time": 0.8608730054068312, + "noteOrder": 5340, + "time": 0.926282473954899, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4370,13 +7866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5010, - "time": 0.8693129368323883, + "noteOrder": 5352, + "time": 0.9283924568112883, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4393,13 +7889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5058, - "time": 0.8777528682579455, + "noteOrder": 5377, + "time": 0.932612422524067, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4411,18 +7907,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5082, - "time": 0.8819728339707241, + "noteOrder": 5377, + "time": 0.932612422524067, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4439,13 +7935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5107, - "time": 0.8861927996835026, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4457,18 +7953,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5155, - "time": 0.8946327311090597, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4485,13 +7981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5204, - "time": 0.903072662534617, + "noteOrder": 5401, + "time": 0.9368323882368456, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4508,11 +8004,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5253, - "time": 0.9115125939601741, + "noteOrder": 5425, + "time": 0.9410523539496242, "position": { "x": 3, "y": 0 @@ -4526,18 +8022,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5277, - "time": 0.9157325596729528, + "noteOrder": 5425, + "time": 0.9410523539496242, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4554,13 +8050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5301, - "time": 0.9199525253857314, + "noteOrder": 5450, + "time": 0.9452723196624028, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4572,18 +8068,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5326, - "time": 0.92417249109851, + "noteOrder": 5450, + "time": 0.9452723196624028, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4600,11 +8096,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5350, - "time": 0.9283924568112885, + "noteOrder": 5450, + "time": 0.9452723196624028, "position": { "x": 3, "y": 0 @@ -4623,11 +8119,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5399, - "time": 0.9368323882368457, + "noteOrder": 5462, + "time": 0.947382302518792, "position": { "x": 3, "y": 0 @@ -4641,18 +8137,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5447, - "time": 0.9452723196624028, + "noteOrder": 5462, + "time": 0.947382302518792, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5474, + "time": 0.9494922853751813, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5474, + "time": 0.9494922853751813, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4670,10 +8212,33 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5474, + "time": 0.9494922853751813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5472, - "time": 0.9494922853751814, + "noteOrder": 5486, + "time": 0.9516022682315706, "position": { "x": 3, "y": 0 @@ -4691,12 +8256,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5486, + "time": 0.9516022682315706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5498, + "time": 0.9537122510879599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5498, + "time": 0.9537122510879599, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5498, + "time": 0.9537122510879599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5496, - "time": 0.9537122510879601, + "noteOrder": 5523, + "time": 0.9579322168007385, "position": { "x": 3, "y": 0 @@ -4714,11 +8371,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5523, + "time": 0.9579322168007385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5690, + "noteOrder": 5693, "time": 0.9874719767901886, "position": { "x": 6, @@ -4739,10 +8419,10 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.9916919425029673, + "noteOrder": 5717, + "time": 0.9916919425029671, "position": { "x": 6, "y": 0 @@ -4762,9 +8442,9 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5690, + "noteOrder": 5693, "time": 0.9874719767901886, "position": { "x": 4, @@ -4785,10 +8465,10 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.9916919425029673, + "noteOrder": 5717, + "time": 0.9916919425029671, "position": { "x": 4, "y": 0 diff --git a/tracks/Ch4nge M4 Life/info.json b/tracks/Ch4nge M4 Life/info.json index dc556f75..6e9fb142 100644 --- a/tracks/Ch4nge M4 Life/info.json +++ b/tracks/Ch4nge M4 Life/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Ch4nge M4 Life", - "SongLength": "116.715102", + "SongLength": "106.762449", "SongAuthorName": "LADY'S ONLY", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/Comin\342\200\231 Back/258_difficulty_1a.json" "b/tracks/Comin\342\200\231 Back/258_difficulty_1a.json" index 2dc0316c..4690f7fb 100644 --- "a/tracks/Comin\342\200\231 Back/258_difficulty_1a.json" +++ "b/tracks/Comin\342\200\231 Back/258_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.015137180700094606, + "time": 0.015137180700094607, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 192, - "time": 0.03027436140018921, + "time": 0.030274361400189215, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.03405865657521286, + "time": 0.03405865657521287, "position": { "x": 4, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.04919583727530747, + "noteOrder": 313, + "time": 0.04919583727530748, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 361, - "time": 0.056764427625354774, + "time": 0.05676442762535478, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 385, - "time": 0.06054872280037842, + "time": 0.06054872280037843, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 409, - "time": 0.06433301797540207, + "time": 0.06433301797540208, "position": { "x": 8, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 433, - "time": 0.06811731315042573, + "time": 0.06811731315042574, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 601, - "time": 0.09460737937559129, + "time": 0.0946073793755913, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 625, - "time": 0.09839167455061494, + "time": 0.09839167455061495, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 673, - "time": 0.10596026490066224, + "time": 0.10596026490066225, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 697, - "time": 0.10974456007568589, + "time": 0.1097445600756859, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 721, - "time": 0.11352885525070955, + "time": 0.11352885525070956, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 745, - "time": 0.11731315042573319, + "time": 0.11731315042573322, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 769, - "time": 0.12109744560075685, + "time": 0.12109744560075686, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 793, - "time": 0.1248817407757805, + "time": 0.12488174077578051, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 817, - "time": 0.12866603595080414, + "time": 0.12866603595080417, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1324503311258278, + "noteOrder": 842, + "time": 0.13245033112582782, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1400189214758751, + "noteOrder": 890, + "time": 0.14001892147587514, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.14380321665089876, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.14758751182592242, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.15137180700094607, "position": { "x": 8, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15515610217596973, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.15894039735099338, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.162724692526017, + "noteOrder": 1034, + "time": 0.16272469252601704, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1082, - "time": 0.17029328287606432, + "time": 0.17029328287606435, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1130, - "time": 0.17786187322611163, + "time": 0.17786187322611166, "position": { "x": 5, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1178, - "time": 0.18543046357615892, + "time": 0.18543046357615894, "position": { "x": 5, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1202, - "time": 0.18921475875118257, + "time": 0.1892147587511826, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1226, - "time": 0.19299905392620623, + "time": 0.19299905392620625, "position": { "x": 3, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1274, - "time": 0.20056764427625354, + "time": 0.20056764427625356, "position": { "x": 5, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1322, - "time": 0.20813623462630085, + "time": 0.20813623462630088, "position": { "x": 7, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1370, - "time": 0.21570482497634813, + "time": 0.2157048249763482, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.21948912015137179, + "noteOrder": 1395, + "time": 0.2194891201513718, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.22327341532639544, + "noteOrder": 1419, + "time": 0.22327341532639547, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.2270577105014191, + "noteOrder": 1443, + "time": 0.22705771050141912, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1466, - "time": 0.23084200567644275, + "noteOrder": 1467, + "time": 0.23084200567644278, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1538, - "time": 0.2421948912015137, + "noteOrder": 1539, + "time": 0.24219489120151372, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2573320719016083, + "noteOrder": 1635, + "time": 0.25733207190160834, "position": { "x": 8, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2573320719016083, + "noteOrder": 1635, + "time": 0.25733207190160834, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1730, - "time": 0.2724692526017029, + "noteOrder": 1731, + "time": 0.27246925260170296, "position": { "x": 8, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.30274361400189215, "position": { "x": 8, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.31788079470198677, "position": { "x": 8, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.325449385052034, + "noteOrder": 2068, + "time": 0.3254493850520341, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3292336802270577, + "noteOrder": 2092, + "time": 0.32923368022705773, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.33301797540208133, "position": { "x": 2, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.34815515610217596, "position": { "x": 2, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.3632923368022706, "position": { "x": 2, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.36707663197729423, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.37086092715231783, + "noteOrder": 2356, + "time": 0.3708609271523179, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.37464522232734154, + "noteOrder": 2380, + "time": 0.3746452223273416, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.37842951750236514, + "noteOrder": 2404, + "time": 0.3784295175023652, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.39356669820245976, + "noteOrder": 2501, + "time": 0.3935666982024598, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2596, + "noteOrder": 2597, "time": 0.4087038789025544, "position": { "x": 2, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.42384105960264895, + "noteOrder": 2693, + "time": 0.423841059602649, "position": { "x": 2, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.43897824030274357, + "noteOrder": 2789, + "time": 0.4389782403027436, "position": { "x": 2, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4465468306527909, + "noteOrder": 2837, + "time": 0.44654683065279094, "position": { "x": 5, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.45033112582781454, + "noteOrder": 2861, + "time": 0.4503311258278146, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.4541154210028382, + "noteOrder": 2885, + "time": 0.45411542100283825, "position": { "x": 8, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.46925260170293276, + "noteOrder": 2981, + "time": 0.46925260170293287, "position": { "x": 8, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.4843897824030274, + "noteOrder": 3078, + "time": 0.48438978240302744, "position": { "x": 8, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3100, - "time": 0.4881740775780511, + "noteOrder": 3102, + "time": 0.48817407757805115, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.4919583727530747, + "noteOrder": 3126, + "time": 0.4919583727530748, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.49574266792809835, + "noteOrder": 3150, + "time": 0.4957426679280984, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3172, - "time": 0.499526963103122, + "noteOrder": 3174, + "time": 0.49952696310312206, "position": { "x": 8, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.5146641438032166, + "noteOrder": 3270, + "time": 0.5146641438032167, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.5184484389782402, + "noteOrder": 3294, + "time": 0.5184484389782403, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5222327341532639, + "noteOrder": 3318, + "time": 0.522232734153264, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5260170293282875, + "noteOrder": 3342, + "time": 0.5260170293282876, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.5449385052034058, + "noteOrder": 3462, + "time": 0.5449385052034059, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3486, "time": 0.5487228003784295, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.5525070955534531, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.5562913907284769, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.575212866603595, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3677, + "noteOrder": 3679, "time": 0.5789971617786187, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3703, "time": 0.5827814569536424, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3727, "time": 0.586565752128666, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3845, + "noteOrder": 3847, "time": 0.6054872280037843, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3871, "time": 0.609271523178808, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.6130558183538315, + "noteOrder": 3895, + "time": 0.6130558183538316, "position": { "x": 7, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 3919, "time": 0.6168401135288553, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3943, "time": 0.6206244087038789, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.6244087038789025, + "noteOrder": 3967, + "time": 0.6244087038789026, "position": { "x": 8, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3990, - "time": 0.6281929990539261, + "noteOrder": 3991, + "time": 0.6281929990539262, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.6319772942289499, + "noteOrder": 4015, + "time": 0.63197729422895, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4038, + "noteOrder": 4039, "time": 0.6357615894039735, "position": { "x": 6, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.6395458845789971, + "noteOrder": 4063, + "time": 0.6395458845789972, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4086, - "time": 0.6433301797540207, + "noteOrder": 4087, + "time": 0.6433301797540208, "position": { "x": 6, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4111, "time": 0.6471144749290445, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.650898770104068, + "noteOrder": 4136, + "time": 0.6508987701040682, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.6546830652790917, + "noteOrder": 4160, + "time": 0.6546830652790918, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6584673604541154, + "noteOrder": 4184, + "time": 0.6584673604541155, "position": { "x": 6, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4208, "time": 0.662251655629139, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.6660359508041627, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.6698202459791863, + "noteOrder": 4256, + "time": 0.6698202459791864, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.67360454115421, + "noteOrder": 4280, + "time": 0.6736045411542101, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.6773888363292336, + "noteOrder": 4304, + "time": 0.6773888363292337, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.6811731315042573, + "noteOrder": 4328, + "time": 0.6811731315042574, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.684957426679281, + "noteOrder": 4352, + "time": 0.6849574266792811, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4374, - "time": 0.6887417218543045, + "noteOrder": 4376, + "time": 0.6887417218543047, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4400, "time": 0.6925260170293283, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.6963103122043519, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4446, + "noteOrder": 4448, "time": 0.7000946073793756, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4470, - "time": 0.7038789025543991, + "noteOrder": 4472, + "time": 0.7038789025543992, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.7076631977294229, + "noteOrder": 4496, + "time": 0.707663197729423, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4616, "time": 0.7265846736045412, "position": { "x": 6, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4711, - "time": 0.7417218543046357, + "noteOrder": 4713, + "time": 0.7417218543046358, "position": { "x": 8, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4711, - "time": 0.7417218543046357, + "noteOrder": 4713, + "time": 0.7417218543046358, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4735, - "time": 0.7455061494796593, + "noteOrder": 4737, + "time": 0.7455061494796595, "position": { "x": 8, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.7492904446546831, + "noteOrder": 4761, + "time": 0.7492904446546832, "position": { "x": 8, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.7530747398297067, "position": { "x": 8, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.7606433301797539, + "noteOrder": 4833, + "time": 0.760643330179754, "position": { "x": 5, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.7644276253547777, "position": { "x": 3, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.7682119205298013, + "noteOrder": 4881, + "time": 0.7682119205298014, "position": { "x": 2, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4975, - "time": 0.7833491012298959, + "noteOrder": 4977, + "time": 0.783349101229896, "position": { "x": 2, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.7984862819299905, + "noteOrder": 5073, + "time": 0.7984862819299906, "position": { "x": 2, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5119, - "time": 0.8060548722800378, + "noteOrder": 5121, + "time": 0.8060548722800379, "position": { "x": 5, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5143, + "noteOrder": 5145, "time": 0.8098391674550615, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.8136234626300851, "position": { "x": 8, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8287606433301797, + "noteOrder": 5266, + "time": 0.8287606433301798, "position": { "x": 8, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.8438978240302744, "position": { "x": 8, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.8476821192052979, + "noteOrder": 5386, + "time": 0.847682119205298, "position": { "x": 8, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5396, - "time": 0.8495742667928098, + "noteOrder": 5398, + "time": 0.8495742667928099, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.8514664143803216, + "noteOrder": 5410, + "time": 0.8514664143803217, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5420, - "time": 0.8533585619678334, + "noteOrder": 5422, + "time": 0.8533585619678336, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.8552507095553453, "position": { "x": 8, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5444, - "time": 0.8571428571428571, + "noteOrder": 5446, + "time": 0.8571428571428572, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5456, - "time": 0.8590350047303689, + "noteOrder": 5458, + "time": 0.8590350047303691, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5468, - "time": 0.8609271523178808, + "noteOrder": 5470, + "time": 0.8609271523178809, "position": { "x": 6, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5480, - "time": 0.8628192999053925, + "noteOrder": 5482, + "time": 0.8628192999053927, "position": { "x": 8, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5576, - "time": 0.8779564806054871, + "noteOrder": 5578, + "time": 0.8779564806054873, "position": { "x": 8, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5672, - "time": 0.8930936613055818, + "noteOrder": 5674, + "time": 0.8930936613055819, "position": { "x": 8, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5768, - "time": 0.9082308420056764, + "noteOrder": 5771, + "time": 0.9082308420056765, "position": { "x": 8, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5864, - "time": 0.923368022705771, + "noteOrder": 5867, + "time": 0.9233680227057711, "position": { "x": 8, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5912, + "noteOrder": 5915, "time": 0.9309366130558183, "position": { "x": 5, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5936, - "time": 0.934720908230842, + "noteOrder": 5939, + "time": 0.9347209082308421, "position": { "x": 3, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5960, - "time": 0.9385052034058655, + "noteOrder": 5963, + "time": 0.9385052034058657, "position": { "x": 2, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6057, - "time": 0.9536423841059601, + "noteOrder": 6059, + "time": 0.9536423841059604, "position": { "x": 2, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6249, - "time": 0.9839167455061494, + "noteOrder": 6251, + "time": 0.9839167455061496, "position": { "x": 2, "y": 0 @@ -3056,10 +3056,10 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.13623462630085145, + "noteOrder": 866, + "time": 0.13623462630085148, "position": { "x": 2, "y": 0 @@ -3079,9 +3079,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.15137180700094607, "position": { "x": 5, @@ -3102,9 +3102,9 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.16650898770104067, "position": { "x": 2, @@ -3125,9 +3125,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.16650898770104067, "position": { "x": 4, @@ -3148,7 +3148,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1154, "time": 0.1816461684011353, @@ -3171,10 +3171,10 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1250, - "time": 0.19678334910122988, + "time": 0.1967833491012299, "position": { "x": 4, "y": 0 @@ -3194,10 +3194,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.19678334910122988, + "time": 0.1967833491012299, "position": { "x": 2, "y": 0 @@ -3217,10 +3217,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1346, - "time": 0.21192052980132448, + "time": 0.2119205298013245, "position": { "x": 6, "y": 0 @@ -3240,10 +3240,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, - "time": 0.21192052980132448, + "time": 0.2119205298013245, "position": { "x": 8, "y": 0 @@ -3263,10 +3263,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.2270577105014191, + "noteOrder": 1443, + "time": 0.22705771050141912, "position": { "x": 4, "y": 0 @@ -3286,10 +3286,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.23462630085146638, + "noteOrder": 1491, + "time": 0.23462630085146643, "position": { "x": 3, "y": 0 @@ -3308,13 +3308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, - "time": 0.23841059602649003, + "noteOrder": 1503, + "time": 0.23651844843897826, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3326,18 +3326,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1658, - "time": 0.26111636707663194, + "noteOrder": 1503, + "time": 0.23651844843897826, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3349,18 +3349,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.2649006622516556, + "noteOrder": 1515, + "time": 0.2384105960264901, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3372,18 +3372,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1706, - "time": 0.26868495742667925, + "noteOrder": 1527, + "time": 0.2403027436140019, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3400,13 +3400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1754, - "time": 0.27625354777672656, + "noteOrder": 1527, + "time": 0.2403027436140019, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3418,16 +3418,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1779, - "time": 0.2800378429517502, + "noteOrder": 1659, + "time": 0.261116367076632, "position": { "x": 8, "y": 0 @@ -3446,11 +3446,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.28382213812677387, + "noteOrder": 1671, + "time": 0.2630085146641438, "position": { "x": 8, "y": 0 @@ -3464,18 +3464,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1851, - "time": 0.2913907284768212, + "noteOrder": 1671, + "time": 0.2630085146641438, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3492,13 +3492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1875, - "time": 0.29517502365184484, + "noteOrder": 1683, + "time": 0.26490066225165565, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3510,18 +3510,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1899, - "time": 0.29895931882686844, + "noteOrder": 1683, + "time": 0.26490066225165565, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3538,11 +3538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1947, - "time": 0.30652790917691575, + "noteOrder": 1683, + "time": 0.26490066225165565, "position": { "x": 8, "y": 0 @@ -3561,11 +3561,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.31031220435193946, + "noteOrder": 1695, + "time": 0.2667928098391675, "position": { "x": 8, "y": 0 @@ -3579,18 +3579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1995, - "time": 0.31409649952696306, + "noteOrder": 1695, + "time": 0.2667928098391675, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3607,13 +3607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2043, - "time": 0.32166508987701037, + "noteOrder": 1707, + "time": 0.2686849574266793, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3625,18 +3625,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2115, - "time": 0.33301797540208133, + "noteOrder": 1707, + "time": 0.2686849574266793, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3648,18 +3648,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2139, - "time": 0.336802270577105, + "noteOrder": 1707, + "time": 0.2686849574266793, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3671,18 +3671,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.34058656575212864, + "noteOrder": 1719, + "time": 0.27057710501419113, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3699,13 +3699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2187, - "time": 0.34437086092715224, + "noteOrder": 1719, + "time": 0.27057710501419113, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3717,18 +3717,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2235, - "time": 0.35193945127719956, + "noteOrder": 1731, + "time": 0.27246925260170296, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3745,13 +3745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2259, - "time": 0.35572374645222327, + "noteOrder": 1731, + "time": 0.27246925260170296, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3763,18 +3763,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2283, - "time": 0.35950804162724687, + "noteOrder": 1755, + "time": 0.27625354777672656, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3786,18 +3786,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.38221381267738885, + "noteOrder": 1767, + "time": 0.27814569536423844, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3814,13 +3814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2451, - "time": 0.38599810785241245, + "noteOrder": 1767, + "time": 0.27814569536423844, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3832,18 +3832,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2476, - "time": 0.38978240302743616, + "noteOrder": 1779, + "time": 0.28003784295175027, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3860,13 +3860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2524, - "time": 0.3973509933774834, + "noteOrder": 1779, + "time": 0.28003784295175027, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3878,18 +3878,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.4011352885525071, + "noteOrder": 1779, + "time": 0.28003784295175027, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3901,18 +3901,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2572, - "time": 0.40491958372753073, + "noteOrder": 1791, + "time": 0.2819299905392621, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3929,13 +3929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2620, - "time": 0.41248817407757804, + "noteOrder": 1791, + "time": 0.2819299905392621, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3947,18 +3947,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2644, - "time": 0.4162724692526017, + "noteOrder": 1803, + "time": 0.2838221381267739, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3975,13 +3975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2668, - "time": 0.42005676442762535, + "noteOrder": 1803, + "time": 0.2838221381267739, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3993,18 +3993,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2716, - "time": 0.42762535477767266, + "noteOrder": 1803, + "time": 0.2838221381267739, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4016,18 +4016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2740, - "time": 0.43140964995269626, + "noteOrder": 1815, + "time": 0.28571428571428575, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4044,13 +4044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2764, - "time": 0.43519394512771997, + "noteOrder": 1815, + "time": 0.28571428571428575, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4062,18 +4062,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2812, - "time": 0.4427625354777672, + "noteOrder": 1827, + "time": 0.2876064333017975, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4090,11 +4090,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2884, - "time": 0.4541154210028382, + "noteOrder": 1827, + "time": 0.2876064333017975, "position": { "x": 6, "y": 0 @@ -4113,11 +4113,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2908, - "time": 0.45789971617786185, + "noteOrder": 1851, + "time": 0.2913907284768212, "position": { "x": 8, "y": 0 @@ -4136,11 +4136,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2932, - "time": 0.4616840113528855, + "noteOrder": 1863, + "time": 0.293282876064333, "position": { "x": 8, "y": 0 @@ -4154,18 +4154,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2956, - "time": 0.46546830652790916, + "noteOrder": 1863, + "time": 0.293282876064333, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4182,13 +4182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3004, - "time": 0.47303689687795647, + "noteOrder": 1875, + "time": 0.29517502365184484, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4200,18 +4200,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3028, - "time": 0.47682119205298007, + "noteOrder": 1875, + "time": 0.29517502365184484, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4228,11 +4228,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3052, - "time": 0.4806054872280038, + "noteOrder": 1875, + "time": 0.29517502365184484, "position": { "x": 8, "y": 0 @@ -4251,13 +4251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, - "time": 0.5070955534531694, + "noteOrder": 1887, + "time": 0.2970671712393567, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4274,13 +4274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3269, - "time": 0.5146641438032166, + "noteOrder": 1887, + "time": 0.2970671712393567, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4297,11 +4297,57 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1899, + "time": 0.29895931882686855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1899, + "time": 0.29895931882686855, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.5298013245033112, + "noteOrder": 1899, + "time": 0.29895931882686855, "position": { "x": 8, "y": 0 @@ -4320,11 +4366,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3413, - "time": 0.5373699148533585, + "noteOrder": 1911, + "time": 0.3008514664143804, "position": { "x": 8, "y": 0 @@ -4343,13 +4389,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3413, - "time": 0.5373699148533585, + "noteOrder": 1911, + "time": 0.3008514664143804, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4361,18 +4407,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3461, - "time": 0.5449385052034058, + "noteOrder": 1924, + "time": 0.30274361400189215, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4384,18 +4430,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3557, - "time": 0.5600756859035004, + "noteOrder": 1924, + "time": 0.30274361400189215, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4412,13 +4458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 78, "indexInLine": 1, "isSliding": false, - "noteOrder": 3605, - "time": 0.5676442762535477, + "noteOrder": 1948, + "time": 0.3065279091769158, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4430,18 +4476,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.5676442762535477, + "noteOrder": 1960, + "time": 0.30842005676442763, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4458,13 +4504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3653, - "time": 0.575212866603595, + "noteOrder": 1960, + "time": 0.30842005676442763, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4481,11 +4527,34 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3749, - "time": 0.5903500473036897, + "noteOrder": 1972, + "time": 0.31031220435193946, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1972, + "time": 0.31031220435193946, "position": { "x": 6, "y": 0 @@ -4499,16 +4568,108 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 3797, - "time": 0.5979186376537369, + "noteOrder": 1972, + "time": 0.31031220435193946, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3122043519394513, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3122043519394513, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3140964995269631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3140964995269631, "position": { "x": 6, "y": 0 @@ -4522,18 +4683,6389 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3140964995269631, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2008, + "time": 0.315988647114475, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2008, + "time": 0.315988647114475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2020, + "time": 0.31788079470198677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2020, + "time": 0.31788079470198677, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.3216650898770104, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2116, + "time": 0.33301797540208133, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2140, + "time": 0.33680227057710505, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3386944181646169, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3386944181646169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3405865657521287, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3405865657521287, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3405865657521287, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2176, + "time": 0.34247871333964053, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2176, + "time": 0.34247871333964053, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2188, + "time": 0.34437086092715236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2188, + "time": 0.34437086092715236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2188, + "time": 0.34437086092715236, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2200, + "time": 0.34626300851466413, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2200, + "time": 0.34626300851466413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2212, + "time": 0.34815515610217596, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2212, + "time": 0.34815515610217596, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3519394512771996, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3538315988647115, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3538315988647115, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3557237464522233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3557237464522233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3557237464522233, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2272, + "time": 0.35761589403973515, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2272, + "time": 0.35761589403973515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2284, + "time": 0.359508041627247, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2284, + "time": 0.359508041627247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2284, + "time": 0.359508041627247, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2296, + "time": 0.36140018921475875, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2296, + "time": 0.36140018921475875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3632923368022706, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3632923368022706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.38221381267738885, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3841059602649007, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3841059602649007, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2452, + "time": 0.3859981078524125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2452, + "time": 0.3859981078524125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2452, + "time": 0.3859981078524125, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2464, + "time": 0.38789025543992434, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2464, + "time": 0.38789025543992434, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.3897824030274361, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.3897824030274361, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2477, + "time": 0.3897824030274361, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2489, + "time": 0.391674550614948, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2489, + "time": 0.391674550614948, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2501, + "time": 0.3935666982024598, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2501, + "time": 0.3935666982024598, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2525, + "time": 0.3973509933774835, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2537, + "time": 0.3992431409649953, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2537, + "time": 0.3992431409649953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2549, + "time": 0.40113528855250713, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2549, + "time": 0.40113528855250713, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2549, + "time": 0.40113528855250713, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2561, + "time": 0.40302743614001896, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2561, + "time": 0.40302743614001896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2573, + "time": 0.40491958372753073, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2573, + "time": 0.40491958372753073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2573, + "time": 0.40491958372753073, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2585, + "time": 0.40681173131504256, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2585, + "time": 0.40681173131504256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4087038789025544, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4087038789025544, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4124881740775781, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2633, + "time": 0.4143803216650899, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2633, + "time": 0.4143803216650899, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2645, + "time": 0.41627246925260175, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2645, + "time": 0.41627246925260175, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.41627246925260175, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2657, + "time": 0.4181646168401136, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2657, + "time": 0.4181646168401136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42005676442762535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42005676442762535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42005676442762535, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4219489120151372, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4219489120151372, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2693, + "time": 0.423841059602649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2693, + "time": 0.423841059602649, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2717, + "time": 0.42762535477767266, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.42951750236518454, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.42951750236518454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4314096499526964, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4314096499526964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.4314096499526964, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4333017975402082, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4333017975402082, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2765, + "time": 0.43519394512771997, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2765, + "time": 0.43519394512771997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2765, + "time": 0.43519394512771997, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4370860927152318, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4370860927152318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2789, + "time": 0.4389782403027436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2789, + "time": 0.4389782403027436, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4427625354777673, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.45411542100283825, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2909, + "time": 0.4578997161778619, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2921, + "time": 0.45979186376537373, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2921, + "time": 0.45979186376537373, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2933, + "time": 0.46168401135288556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2933, + "time": 0.46168401135288556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2933, + "time": 0.46168401135288556, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2945, + "time": 0.46357615894039733, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2945, + "time": 0.46357615894039733, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2957, + "time": 0.46546830652790916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2957, + "time": 0.46546830652790916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2957, + "time": 0.46546830652790916, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2969, + "time": 0.46736045411542104, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2969, + "time": 0.46736045411542104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2981, + "time": 0.46925260170293287, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2981, + "time": 0.46925260170293287, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.4730368968779565, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3017, + "time": 0.47492904446546835, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3017, + "time": 0.47492904446546835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3030, + "time": 0.4768211920529802, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3030, + "time": 0.4768211920529802, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.4768211920529802, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3042, + "time": 0.47871333964049195, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3042, + "time": 0.47871333964049195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3054, + "time": 0.4806054872280038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3054, + "time": 0.4806054872280038, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3054, + "time": 0.4806054872280038, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3066, + "time": 0.4824976348155156, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3066, + "time": 0.4824976348155156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3078, + "time": 0.48438978240302744, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3078, + "time": 0.48438978240302744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5070955534531694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5146641438032167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5298013245033113, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3414, + "time": 0.5373699148533586, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3414, + "time": 0.5373699148533586, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5449385052034059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5600756859035005, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3607, + "time": 0.5676442762535479, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.5676442762535479, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.575212866603595, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5903500473036897, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3799, + "time": 0.5979186376537371, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3799, + "time": 0.5979186376537371, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6054872280037843, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7114474929044466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4532, + "time": 0.7133396404919584, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4532, + "time": 0.7133396404919584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7152317880794703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7171239356669821, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7171239356669821, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4568, + "time": 0.719016083254494, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7209082308420056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7209082308420056, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7228003784295175, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7246925260170294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7246925260170294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.7568590350047304, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4881, + "time": 0.7682119205298014, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4905, + "time": 0.771996215704825, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7738883632923369, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7738883632923369, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4929, + "time": 0.7757805108798487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4929, + "time": 0.7757805108798487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4929, + "time": 0.7757805108798487, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4941, + "time": 0.7776726584673606, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4941, + "time": 0.7776726584673606, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4953, + "time": 0.7795648060548722, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4953, + "time": 0.7795648060548722, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4953, + "time": 0.7795648060548722, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4965, + "time": 0.7814569536423841, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4965, + "time": 0.7814569536423841, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4977, + "time": 0.783349101229896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4977, + "time": 0.783349101229896, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5001, + "time": 0.7871333964049196, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5013, + "time": 0.7890255439924314, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5013, + "time": 0.7890255439924314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5025, + "time": 0.7909176915799433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5025, + "time": 0.7909176915799433, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5025, + "time": 0.7909176915799433, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5037, + "time": 0.7928098391674551, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5037, + "time": 0.7928098391674551, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5049, + "time": 0.794701986754967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5049, + "time": 0.794701986754967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5049, + "time": 0.794701986754967, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5061, + "time": 0.7965941343424787, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5061, + "time": 0.7965941343424787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5073, + "time": 0.7984862819299906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5073, + "time": 0.7984862819299906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5097, + "time": 0.8022705771050143, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5169, + "time": 0.8136234626300851, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5193, + "time": 0.8174077578051088, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5205, + "time": 0.8192999053926207, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5205, + "time": 0.8192999053926207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5217, + "time": 0.8211920529801325, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5217, + "time": 0.8211920529801325, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5217, + "time": 0.8211920529801325, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5230, + "time": 0.8230842005676443, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5230, + "time": 0.8230842005676443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5242, + "time": 0.8249763481551562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5242, + "time": 0.8249763481551562, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5242, + "time": 0.8249763481551562, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5254, + "time": 0.826868495742668, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5254, + "time": 0.826868495742668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5266, + "time": 0.8287606433301798, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5266, + "time": 0.8287606433301798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5290, + "time": 0.8325449385052035, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5302, + "time": 0.8344370860927153, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5302, + "time": 0.8344370860927153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5314, + "time": 0.8363292336802272, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5314, + "time": 0.8363292336802272, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5314, + "time": 0.8363292336802272, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5326, + "time": 0.8382213812677388, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5326, + "time": 0.8382213812677388, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5338, + "time": 0.8401135288552507, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5338, + "time": 0.8401135288552507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5338, + "time": 0.8401135288552507, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5350, + "time": 0.8420056764427626, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5350, + "time": 0.8420056764427626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5362, + "time": 0.8438978240302744, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5362, + "time": 0.8438978240302744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5506, + "time": 0.8666035950804164, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5518, + "time": 0.8684957426679281, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5518, + "time": 0.8684957426679281, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5530, + "time": 0.8703878902554399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5530, + "time": 0.8703878902554399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5530, + "time": 0.8703878902554399, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5542, + "time": 0.8722800378429517, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5542, + "time": 0.8722800378429517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5554, + "time": 0.8741721854304636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5554, + "time": 0.8741721854304636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5554, + "time": 0.8741721854304636, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5566, + "time": 0.8760643330179754, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5566, + "time": 0.8760643330179754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5578, + "time": 0.8779564806054873, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5578, + "time": 0.8779564806054873, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5602, + "time": 0.8817407757805109, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5614, + "time": 0.8836329233680228, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5614, + "time": 0.8836329233680228, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5626, + "time": 0.8855250709555346, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5626, + "time": 0.8855250709555346, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5626, + "time": 0.8855250709555346, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5638, + "time": 0.8874172185430464, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5638, + "time": 0.8874172185430464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5650, + "time": 0.8893093661305582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5650, + "time": 0.8893093661305582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5650, + "time": 0.8893093661305582, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5662, + "time": 0.8912015137180701, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5662, + "time": 0.8912015137180701, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8930936613055819, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8930936613055819, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5698, + "time": 0.8968779564806056, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5710, + "time": 0.8987701040681173, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5710, + "time": 0.8987701040681173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5722, + "time": 0.9006622516556292, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5722, + "time": 0.9006622516556292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5722, + "time": 0.9006622516556292, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5734, + "time": 0.902554399243141, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5734, + "time": 0.902554399243141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5746, + "time": 0.9044465468306528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5746, + "time": 0.9044465468306528, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5746, + "time": 0.9044465468306528, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5758, + "time": 0.9063386944181646, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5758, + "time": 0.9063386944181646, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5771, + "time": 0.9082308420056765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5771, + "time": 0.9082308420056765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5795, + "time": 0.9120151371807002, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5807, + "time": 0.9139072847682119, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5807, + "time": 0.9139072847682119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5819, + "time": 0.9157994323557238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5819, + "time": 0.9157994323557238, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5819, + "time": 0.9157994323557238, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5831, + "time": 0.9176915799432357, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5831, + "time": 0.9176915799432357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5843, + "time": 0.9195837275307475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5843, + "time": 0.9195837275307475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5843, + "time": 0.9195837275307475, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5855, + "time": 0.9214758751182593, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5855, + "time": 0.9214758751182593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3797, - "time": 0.5979186376537369, + "noteOrder": 5867, + "time": 0.9233680227057711, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4550,13 +11082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3845, - "time": 0.6054872280037843, + "noteOrder": 5867, + "time": 0.9233680227057711, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4573,13 +11105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4518, - "time": 0.7114474929044465, + "noteOrder": 5891, + "time": 0.9271523178807947, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4596,13 +11128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4542, - "time": 0.7152317880794701, + "noteOrder": 5963, + "time": 0.9385052034058657, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4614,18 +11146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4566, - "time": 0.7190160832544937, + "noteOrder": 5987, + "time": 0.9422894985808894, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4637,18 +11169,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4590, - "time": 0.7228003784295175, + "noteOrder": 5999, + "time": 0.9441816461684012, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4665,13 +11197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4807, - "time": 0.7568590350047303, + "noteOrder": 5999, + "time": 0.9441816461684012, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4683,18 +11215,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4879, - "time": 0.7682119205298013, + "noteOrder": 6011, + "time": 0.946073793755913, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4706,18 +11238,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4903, - "time": 0.7719962157048249, + "noteOrder": 6011, + "time": 0.946073793755913, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4734,11 +11266,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4927, - "time": 0.7757805108798486, + "noteOrder": 6011, + "time": 0.946073793755913, "position": { "x": 2, "y": 0 @@ -4757,11 +11289,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4951, - "time": 0.7795648060548723, + "noteOrder": 6023, + "time": 0.9479659413434248, "position": { "x": 2, "y": 0 @@ -4775,18 +11307,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4999, - "time": 0.7871333964049195, + "noteOrder": 6023, + "time": 0.9479659413434248, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4803,13 +11335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5023, - "time": 0.7909176915799432, + "noteOrder": 6035, + "time": 0.9498580889309367, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4821,18 +11353,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5047, - "time": 0.7947019867549668, + "noteOrder": 6035, + "time": 0.9498580889309367, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4849,11 +11381,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5095, - "time": 0.8022705771050141, + "noteOrder": 6035, + "time": 0.9498580889309367, "position": { "x": 2, "y": 0 @@ -4872,13 +11404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5167, - "time": 0.8136234626300851, + "noteOrder": 6047, + "time": 0.9517502365184485, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4895,13 +11427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5191, - "time": 0.8174077578051088, + "noteOrder": 6047, + "time": 0.9517502365184485, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4913,18 +11445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5215, - "time": 0.8211920529801323, + "noteOrder": 6059, + "time": 0.9536423841059604, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4941,13 +11473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5239, - "time": 0.8249763481551561, + "noteOrder": 6059, + "time": 0.9536423841059604, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4959,18 +11491,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, - "time": 0.8325449385052034, + "noteOrder": 6083, + "time": 0.9574266792809839, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4982,18 +11514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, - "time": 0.8363292336802269, + "noteOrder": 6095, + "time": 0.9593188268684958, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5010,13 +11542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5336, - "time": 0.8401135288552507, + "noteOrder": 6095, + "time": 0.9593188268684958, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5028,18 +11560,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5504, - "time": 0.8666035950804162, + "noteOrder": 6107, + "time": 0.9612109744560076, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5056,13 +11588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5528, - "time": 0.8703878902554399, + "noteOrder": 6107, + "time": 0.9612109744560076, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5074,18 +11606,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5552, - "time": 0.8741721854304635, + "noteOrder": 6107, + "time": 0.9612109744560076, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5097,18 +11629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5600, - "time": 0.8817407757805108, + "noteOrder": 6119, + "time": 0.9631031220435194, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5125,13 +11657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5624, - "time": 0.8855250709555345, + "noteOrder": 6119, + "time": 0.9631031220435194, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5143,18 +11675,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5648, - "time": 0.8893093661305581, + "noteOrder": 6131, + "time": 0.9649952696310312, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5171,13 +11703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5696, - "time": 0.8968779564806055, + "noteOrder": 6131, + "time": 0.9649952696310312, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5189,18 +11721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5720, - "time": 0.9006622516556291, + "noteOrder": 6131, + "time": 0.9649952696310312, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5212,18 +11744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5744, - "time": 0.9044465468306527, + "noteOrder": 6143, + "time": 0.9668874172185431, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5240,13 +11772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5792, - "time": 0.9120151371806999, + "noteOrder": 6143, + "time": 0.9668874172185431, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5258,18 +11790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5816, - "time": 0.9157994323557237, + "noteOrder": 6155, + "time": 0.9687795648060549, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5286,13 +11818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5840, - "time": 0.9195837275307474, + "noteOrder": 6155, + "time": 0.9687795648060549, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5304,18 +11836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5888, - "time": 0.9271523178807947, + "noteOrder": 6155, + "time": 0.9687795648060549, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5327,18 +11859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5960, - "time": 0.9385052034058655, + "noteOrder": 6167, + "time": 0.9706717123935668, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5350,18 +11882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5984, - "time": 0.9422894985808893, + "noteOrder": 6167, + "time": 0.9706717123935668, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5378,13 +11910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6009, - "time": 0.9460737937559129, + "noteOrder": 6179, + "time": 0.9725638599810786, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5401,13 +11933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6033, - "time": 0.9498580889309366, + "noteOrder": 6191, + "time": 0.9744560075685904, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5419,18 +11951,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6081, - "time": 0.9574266792809839, + "noteOrder": 6191, + "time": 0.9744560075685904, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5447,11 +11979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6105, - "time": 0.9612109744560076, + "noteOrder": 6203, + "time": 0.9763481551561023, "position": { "x": 2, "y": 0 @@ -5470,11 +12002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6129, - "time": 0.9649952696310311, + "noteOrder": 6215, + "time": 0.9782403027436141, "position": { "x": 2, "y": 0 @@ -5488,18 +12020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6153, - "time": 0.9687795648060548, + "noteOrder": 6215, + "time": 0.9782403027436141, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5516,11 +12048,11 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6177, - "time": 0.9725638599810785, + "noteOrder": 6227, + "time": 0.980132450331126, "position": { "x": 6, "y": 0 @@ -5539,13 +12071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6201, - "time": 0.9763481551561022, + "noteOrder": 6239, + "time": 0.9820245979186377, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5557,18 +12089,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6225, - "time": 0.9801324503311257, + "noteOrder": 6239, + "time": 0.9820245979186377, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { diff --git "a/tracks/Comin\342\200\231 Back/258_difficulty_1b.json" "b/tracks/Comin\342\200\231 Back/258_difficulty_1b.json" index 559b1ab5..198b8b45 100644 --- "a/tracks/Comin\342\200\231 Back/258_difficulty_1b.json" +++ "b/tracks/Comin\342\200\231 Back/258_difficulty_1b.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 433, - "time": 0.06811731315042573, + "time": 0.06811731315042574, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 625, - "time": 0.09839167455061494, + "time": 0.09839167455061495, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 817, - "time": 0.12866603595080414, + "time": 0.12866603595080417, "position": { "x": 6, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1324503311258278, + "noteOrder": 842, + "time": 0.13245033112582782, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.13623462630085145, + "noteOrder": 866, + "time": 0.13623462630085148, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1400189214758751, + "noteOrder": 890, + "time": 0.14001892147587514, "position": { "x": 7, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.14380321665089876, "position": { "x": 7, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.14758751182592242, "position": { "x": 7, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.15137180700094607, "position": { "x": 5, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15515610217596973, "position": { "x": 4, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.15894039735099338, "position": { "x": 4, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.162724692526017, + "noteOrder": 1034, + "time": 0.16272469252601704, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.16650898770104067, "position": { "x": 7, @@ -354,7 +354,7 @@ }, { "noteOrder": 1082, - "time": 0.17029328287606432, + "time": 0.17029328287606435, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1130, - "time": 0.17786187322611163, + "time": 0.17786187322611166, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1178, - "time": 0.18543046357615892, + "time": 0.18543046357615894, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1202, - "time": 0.18921475875118257, + "time": 0.1892147587511826, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1226, - "time": 0.19299905392620623, + "time": 0.19299905392620625, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1250, - "time": 0.19678334910122988, + "time": 0.1967833491012299, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1274, - "time": 0.20056764427625354, + "time": 0.20056764427625356, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1322, - "time": 0.20813623462630085, + "time": 0.20813623462630088, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1346, - "time": 0.21192052980132448, + "time": 0.2119205298013245, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1370, - "time": 0.21570482497634813, + "time": 0.2157048249763482, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.21948912015137179, + "noteOrder": 1395, + "time": 0.2194891201513718, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.22327341532639544, + "noteOrder": 1419, + "time": 0.22327341532639547, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.26111636707663194, + "noteOrder": 1659, + "time": 0.261116367076632, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.26868495742667925, + "noteOrder": 1707, + "time": 0.2686849574266793, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1803, - "time": 0.28382213812677387, + "time": 0.2838221381267739, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1899, - "time": 0.29895931882686844, + "time": 0.29895931882686855, "position": { "x": 8, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.31031220435193946, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.31409649952696306, + "noteOrder": 1996, + "time": 0.3140964995269631, "position": { "x": 2, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3292336802270577, + "noteOrder": 2092, + "time": 0.32923368022705773, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.336802270577105, + "noteOrder": 2140, + "time": 0.33680227057710505, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.34058656575212864, + "noteOrder": 2164, + "time": 0.3405865657521287, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.34437086092715224, + "noteOrder": 2188, + "time": 0.34437086092715236, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.34815515610217596, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.35950804162724687, + "noteOrder": 2284, + "time": 0.359508041627247, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.36707663197729423, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.37086092715231783, + "noteOrder": 2356, + "time": 0.3708609271523179, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.37464522232734154, + "noteOrder": 2380, + "time": 0.3746452223273416, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2427, + "noteOrder": 2428, "time": 0.38221381267738885, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2427, + "noteOrder": 2428, "time": 0.38221381267738885, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.38599810785241245, + "noteOrder": 2452, + "time": 0.3859981078524125, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.38978240302743616, + "noteOrder": 2477, + "time": 0.3897824030274361, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.39356669820245976, + "noteOrder": 2501, + "time": 0.3935666982024598, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.3973509933774834, + "noteOrder": 2525, + "time": 0.3973509933774835, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4011352885525071, + "noteOrder": 2549, + "time": 0.40113528855250713, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.40491958372753073, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.41248817407757804, + "noteOrder": 2621, + "time": 0.4124881740775781, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2644, - "time": 0.4162724692526017, + "noteOrder": 2645, + "time": 0.41627246925260175, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.42005676442762535, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.42384105960264895, + "noteOrder": 2693, + "time": 0.423841059602649, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.42762535477767266, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.43140964995269626, + "noteOrder": 2741, + "time": 0.4314096499526964, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.43519394512771997, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.43897824030274357, + "noteOrder": 2789, + "time": 0.4389782403027436, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4465468306527909, + "noteOrder": 2837, + "time": 0.44654683065279094, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.45033112582781454, + "noteOrder": 2861, + "time": 0.4503311258278146, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.4541154210028382, + "noteOrder": 2885, + "time": 0.45411542100283825, "position": { "x": 2, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.45789971617786185, + "noteOrder": 2909, + "time": 0.4578997161778619, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.4616840113528855, + "noteOrder": 2933, + "time": 0.46168401135288556, "position": { "x": 2, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2957, "time": 0.46546830652790916, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.46925260170293276, + "noteOrder": 2981, + "time": 0.46925260170293287, "position": { "x": 2, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3028, - "time": 0.47682119205298007, + "noteOrder": 3030, + "time": 0.4768211920529802, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3054, "time": 0.4806054872280038, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.4843897824030274, + "noteOrder": 3078, + "time": 0.48438978240302744, "position": { "x": 8, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3100, - "time": 0.4881740775780511, + "noteOrder": 3102, + "time": 0.48817407757805115, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.4919583727530747, + "noteOrder": 3126, + "time": 0.4919583727530748, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.49574266792809835, + "noteOrder": 3150, + "time": 0.4957426679280984, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3172, - "time": 0.499526963103122, + "noteOrder": 3174, + "time": 0.49952696310312206, "position": { "x": 8, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5070955534531694, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.5146641438032166, + "noteOrder": 3270, + "time": 0.5146641438032167, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5222327341532639, + "noteOrder": 3318, + "time": 0.522232734153264, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5298013245033112, + "noteOrder": 3366, + "time": 0.5298013245033113, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5373699148533585, + "noteOrder": 3414, + "time": 0.5373699148533586, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.5449385052034058, + "noteOrder": 3462, + "time": 0.5449385052034059, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.5525070955534531, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3557, - "time": 0.5600756859035004, + "noteOrder": 3558, + "time": 0.5600756859035005, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.5676442762535477, + "noteOrder": 3607, + "time": 0.5676442762535479, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.575212866603595, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3677, + "noteOrder": 3679, "time": 0.5789971617786187, "position": { "x": 8, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3703, "time": 0.5827814569536424, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3727, "time": 0.586565752128666, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3751, "time": 0.5903500473036897, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3797, - "time": 0.5979186376537369, + "noteOrder": 3799, + "time": 0.5979186376537371, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3845, + "noteOrder": 3847, "time": 0.6054872280037843, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.6130558183538315, + "noteOrder": 3895, + "time": 0.6130558183538316, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3943, "time": 0.6206244087038789, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.6244087038789025, + "noteOrder": 3967, + "time": 0.6244087038789026, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3990, - "time": 0.6281929990539261, + "noteOrder": 3991, + "time": 0.6281929990539262, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.6319772942289499, + "noteOrder": 4015, + "time": 0.63197729422895, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4038, + "noteOrder": 4039, "time": 0.6357615894039735, "position": { "x": 5, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.6395458845789971, + "noteOrder": 4063, + "time": 0.6395458845789972, "position": { "x": 8, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4086, - "time": 0.6433301797540207, + "noteOrder": 4087, + "time": 0.6433301797540208, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4111, "time": 0.6471144749290445, "position": { "x": 8, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.650898770104068, + "noteOrder": 4136, + "time": 0.6508987701040682, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6584673604541154, + "noteOrder": 4184, + "time": 0.6584673604541155, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.6660359508041627, "position": { "x": 6, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.6698202459791863, + "noteOrder": 4256, + "time": 0.6698202459791864, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.67360454115421, + "noteOrder": 4280, + "time": 0.6736045411542101, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.6773888363292336, + "noteOrder": 4304, + "time": 0.6773888363292337, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.6811731315042573, + "noteOrder": 4328, + "time": 0.6811731315042574, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.6963103122043519, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4518, - "time": 0.7114474929044465, + "noteOrder": 4520, + "time": 0.7114474929044466, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.7152317880794701, + "noteOrder": 4544, + "time": 0.7152317880794703, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7190160832544937, + "noteOrder": 4568, + "time": 0.719016083254494, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.7228003784295175, "position": { "x": 4, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4735, - "time": 0.7455061494796593, + "noteOrder": 4737, + "time": 0.7455061494796595, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.7606433301797539, + "noteOrder": 4833, + "time": 0.760643330179754, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.7644276253547777, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.7682119205298013, + "noteOrder": 4881, + "time": 0.7682119205298014, "position": { "x": 2, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.7795648060548723, + "noteOrder": 4953, + "time": 0.7795648060548722, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4975, - "time": 0.7833491012298959, + "noteOrder": 4977, + "time": 0.783349101229896, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5023, - "time": 0.7909176915799432, + "noteOrder": 5025, + "time": 0.7909176915799433, "position": { "x": 6, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.7947019867549668, + "noteOrder": 5049, + "time": 0.794701986754967, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.7984862819299905, + "noteOrder": 5073, + "time": 0.7984862819299906, "position": { "x": 8, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5095, - "time": 0.8022705771050141, + "noteOrder": 5097, + "time": 0.8022705771050143, "position": { "x": 8, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.8136234626300851, "position": { "x": 7, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.8211920529801323, + "noteOrder": 5217, + "time": 0.8211920529801325, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5239, - "time": 0.8249763481551561, + "noteOrder": 5242, + "time": 0.8249763481551562, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8287606433301797, + "noteOrder": 5266, + "time": 0.8287606433301798, "position": { "x": 2, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5287, - "time": 0.8325449385052034, + "noteOrder": 5290, + "time": 0.8325449385052035, "position": { "x": 2, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.8438978240302744, "position": { "x": 3, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5504, - "time": 0.8666035950804162, + "noteOrder": 5506, + "time": 0.8666035950804164, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5552, - "time": 0.8741721854304635, + "noteOrder": 5554, + "time": 0.8741721854304636, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5648, - "time": 0.8893093661305581, + "noteOrder": 5650, + "time": 0.8893093661305582, "position": { "x": 3, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5720, - "time": 0.9006622516556291, + "noteOrder": 5722, + "time": 0.9006622516556292, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5744, - "time": 0.9044465468306527, + "noteOrder": 5746, + "time": 0.9044465468306528, "position": { "x": 8, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5816, - "time": 0.9157994323557237, + "noteOrder": 5819, + "time": 0.9157994323557238, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5840, - "time": 0.9195837275307474, + "noteOrder": 5843, + "time": 0.9195837275307475, "position": { "x": 2, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5936, - "time": 0.934720908230842, + "noteOrder": 5939, + "time": 0.9347209082308421, "position": { "x": 3, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5984, - "time": 0.9422894985808893, + "noteOrder": 5987, + "time": 0.9422894985808894, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6009, - "time": 0.9460737937559129, + "noteOrder": 6011, + "time": 0.946073793755913, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6033, - "time": 0.9498580889309366, + "noteOrder": 6035, + "time": 0.9498580889309367, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6057, - "time": 0.9536423841059601, + "noteOrder": 6059, + "time": 0.9536423841059604, "position": { "x": 7, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6105, + "noteOrder": 6107, "time": 0.9612109744560076, "position": { "x": 4, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6129, - "time": 0.9649952696310311, + "noteOrder": 6131, + "time": 0.9649952696310312, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6249, - "time": 0.9839167455061494, + "noteOrder": 6251, + "time": 0.9839167455061496, "position": { "x": 5, "y": 0 @@ -2936,7 +2936,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 120, "time": 0.01892147587511826, @@ -2959,7 +2959,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.02270577105014191, @@ -2982,10 +2982,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 168, - "time": 0.02649006622516556, + "time": 0.026490066225165563, "position": { "x": 4, "y": 0 @@ -3005,10 +3005,10 @@ }, { "lineGroupId": 2, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 192, - "time": 0.03027436140018921, + "time": 0.030274361400189215, "position": { "x": 7, "y": 0 @@ -3028,10 +3028,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 312, - "time": 0.04919583727530747, + "noteOrder": 313, + "time": 0.04919583727530748, "position": { "x": 4, "y": 0 @@ -3051,10 +3051,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 336, - "time": 0.05298013245033112, + "noteOrder": 337, + "time": 0.052980132450331126, "position": { "x": 6, "y": 0 @@ -3074,10 +3074,10 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 361, - "time": 0.056764427625354774, + "time": 0.05676442762535478, "position": { "x": 6, "y": 0 @@ -3097,10 +3097,10 @@ }, { "lineGroupId": 6, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 385, - "time": 0.06054872280037842, + "time": 0.06054872280037843, "position": { "x": 3, "y": 0 @@ -3120,7 +3120,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.07568590350047304, @@ -3143,7 +3143,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.08325449385052033, @@ -3166,7 +3166,7 @@ }, { "lineGroupId": 9, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 553, "time": 0.08703878902554399, @@ -3189,7 +3189,7 @@ }, { "lineGroupId": 9, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 577, "time": 0.09082308420056764, @@ -3212,10 +3212,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.10596026490066224, + "time": 0.10596026490066225, "position": { "x": 4, "y": 0 @@ -3235,10 +3235,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, - "time": 0.11352885525070955, + "time": 0.11352885525070956, "position": { "x": 3, "y": 0 @@ -3258,10 +3258,10 @@ }, { "lineGroupId": 12, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 745, - "time": 0.11731315042573319, + "time": 0.11731315042573322, "position": { "x": 3, "y": 0 @@ -3281,10 +3281,10 @@ }, { "lineGroupId": 12, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 769, - "time": 0.12109744560075685, + "time": 0.12109744560075686, "position": { "x": 4, "y": 0 @@ -3304,10 +3304,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2270577105014191, + "noteOrder": 1443, + "time": 0.22705771050141912, "position": { "x": 7, "y": 0 @@ -3326,34 +3326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1490, - "time": 0.23462630085146638, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, - "time": 0.26111636707663194, + "noteOrder": 1467, + "time": 0.23084200567644278, "position": { "x": 7, "y": 0 @@ -3372,13 +3349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.2649006622516556, + "noteOrder": 1467, + "time": 0.23084200567644278, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3390,16 +3367,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, - "time": 0.27625354777672656, + "noteOrder": 1491, + "time": 0.23462630085146643, "position": { "x": 3, "y": 0 @@ -3418,11 +3395,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.2800378429517502, + "noteOrder": 1515, + "time": 0.2384105960264901, "position": { "x": 3, "y": 0 @@ -3436,18 +3413,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1851, - "time": 0.2913907284768212, + "noteOrder": 1515, + "time": 0.2384105960264901, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3464,13 +3441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 1899, - "time": 0.29895931882686844, + "noteOrder": 1659, + "time": 0.261116367076632, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3482,16 +3459,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1947, - "time": 0.30652790917691575, + "noteOrder": 1671, + "time": 0.2630085146641438, "position": { "x": 7, "y": 0 @@ -3510,13 +3487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1995, - "time": 0.31409649952696306, + "noteOrder": 1671, + "time": 0.2630085146641438, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3533,13 +3510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.32166508987701037, + "noteOrder": 1683, + "time": 0.26490066225165565, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3556,13 +3533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.325449385052034, + "noteOrder": 1695, + "time": 0.2667928098391675, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3574,18 +3551,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2115, - "time": 0.33301797540208133, + "noteOrder": 1695, + "time": 0.2667928098391675, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3602,13 +3579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.34058656575212864, + "noteOrder": 1755, + "time": 0.27625354777672656, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3625,13 +3602,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.35193945127719956, + "noteOrder": 1767, + "time": 0.27814569536423844, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3643,18 +3620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.35572374645222327, + "noteOrder": 1767, + "time": 0.27814569536423844, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3671,13 +3648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.3632923368022706, + "noteOrder": 1779, + "time": 0.28003784295175027, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3694,13 +3671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2355, - "time": 0.37086092715231783, + "noteOrder": 1791, + "time": 0.2819299905392621, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3717,13 +3694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.4427625354777672, + "noteOrder": 1791, + "time": 0.2819299905392621, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3740,13 +3717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.4541154210028382, + "noteOrder": 1851, + "time": 0.2913907284768212, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3758,18 +3735,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3004, - "time": 0.47303689687795647, + "noteOrder": 1899, + "time": 0.29895931882686855, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3786,13 +3763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 3076, - "time": 0.4843897824030274, + "noteOrder": 1948, + "time": 0.3065279091769158, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3804,18 +3781,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4735, - "time": 0.7455061494796593, + "noteOrder": 1996, + "time": 0.3140964995269631, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3832,13 +3809,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 4759, - "time": 0.7492904446546831, + "noteOrder": 2044, + "time": 0.3216650898770104, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3850,18 +3827,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 60, "indexInLine": 2, "isSliding": false, - "noteOrder": 4783, - "time": 0.7530747398297067, + "noteOrder": 2056, + "time": 0.32355723746452225, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3873,18 +3850,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4807, - "time": 0.7568590350047303, + "noteOrder": 2056, + "time": 0.32355723746452225, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3896,18 +3873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 4879, - "time": 0.7682119205298013, + "noteOrder": 2068, + "time": 0.3254493850520341, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3924,11 +3901,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.7719962157048249, + "noteOrder": 2080, + "time": 0.3273415326395459, "position": { "x": 3, "y": 0 @@ -3942,18 +3919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4927, - "time": 0.7757805108798486, + "noteOrder": 2080, + "time": 0.3273415326395459, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3970,11 +3947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, - "time": 0.7871333964049195, + "noteOrder": 2116, + "time": 0.33301797540208133, "position": { "x": 3, "y": 0 @@ -3993,13 +3970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5071, - "time": 0.7984862819299905, + "noteOrder": 2164, + "time": 0.3405865657521287, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4016,11 +3993,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5119, - "time": 0.8060548722800378, + "noteOrder": 2236, + "time": 0.3519394512771996, "position": { "x": 7, "y": 0 @@ -4039,11 +4016,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5143, - "time": 0.8098391674550615, + "noteOrder": 2248, + "time": 0.3538315988647115, "position": { "x": 7, "y": 0 @@ -4057,18 +4034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5191, - "time": 0.8174077578051088, + "noteOrder": 2248, + "time": 0.3538315988647115, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4085,13 +4062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 5263, - "time": 0.8287606433301797, + "noteOrder": 2260, + "time": 0.3557237464522233, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4103,18 +4080,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, - "time": 0.8363292336802269, + "noteOrder": 2272, + "time": 0.35761589403973515, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4131,13 +4108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5336, - "time": 0.8401135288552507, + "noteOrder": 2272, + "time": 0.35761589403973515, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4149,18 +4126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.8476821192052979, + "noteOrder": 2308, + "time": 0.3632923368022706, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4172,16 +4149,982 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5432, - "time": 0.8552507095553453, + "noteOrder": 2356, + "time": 0.3708609271523179, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4427625354777673, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.45411542100283825, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.4730368968779565, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.48438978240302744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7455061494796595, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7492904446546832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4785, + "time": 0.7530747398297067, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.7568590350047304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4881, + "time": 0.7682119205298014, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4905, + "time": 0.771996215704825, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7738883632923369, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7738883632923369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4929, + "time": 0.7757805108798487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4941, + "time": 0.7776726584673606, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4941, + "time": 0.7776726584673606, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5001, + "time": 0.7871333964049196, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5073, + "time": 0.7984862819299906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5121, + "time": 0.8060548722800379, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5133, + "time": 0.8079470198675498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5133, + "time": 0.8079470198675498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5145, + "time": 0.8098391674550615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5157, + "time": 0.8117313150425733, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5157, + "time": 0.8117313150425733, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5193, + "time": 0.8174077578051088, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5266, + "time": 0.8287606433301798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5314, + "time": 0.8363292336802272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5326, + "time": 0.8382213812677388, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5326, + "time": 0.8382213812677388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5338, + "time": 0.8401135288552507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5350, + "time": 0.8420056764427626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5350, + "time": 0.8420056764427626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5386, + "time": 0.847682119205298, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5410, + "time": 0.8514664143803217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5410, + "time": 0.8514664143803217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5434, + "time": 0.8552507095553453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5458, + "time": 0.8590350047303691, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5458, + "time": 0.8590350047303691, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5506, + "time": 0.8666035950804164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5518, + "time": 0.8684957426679281, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5518, + "time": 0.8684957426679281, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5530, + "time": 0.8703878902554399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5542, + "time": 0.8722800378429517, "position": { "x": 7, "y": 0 @@ -4195,18 +5138,156 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5542, + "time": 0.8722800378429517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5602, + "time": 0.8817407757805109, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5614, + "time": 0.8836329233680228, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5614, + "time": 0.8836329233680228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5626, + "time": 0.8855250709555346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5638, + "time": 0.8874172185430464, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5504, - "time": 0.8666035950804162, + "noteOrder": 5638, + "time": 0.8874172185430464, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4223,13 +5304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5528, - "time": 0.8703878902554399, + "noteOrder": 5698, + "time": 0.8968779564806056, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4246,13 +5327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5600, - "time": 0.8817407757805108, + "noteOrder": 5746, + "time": 0.9044465468306528, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4269,13 +5350,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5624, - "time": 0.8855250709555345, + "noteOrder": 5795, + "time": 0.9120151371807002, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4292,11 +5373,34 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5843, + "time": 0.9195837275307475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5696, - "time": 0.8968779564806055, + "noteOrder": 5891, + "time": 0.9271523178807947, "position": { "x": 3, "y": 0 @@ -4315,13 +5419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5744, - "time": 0.9044465468306527, + "noteOrder": 5903, + "time": 0.9290444654683065, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4338,13 +5442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5792, - "time": 0.9120151371806999, + "noteOrder": 5903, + "time": 0.9290444654683065, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4356,18 +5460,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 5840, - "time": 0.9195837275307474, + "noteOrder": 5915, + "time": 0.9309366130558183, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4384,11 +5488,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5888, - "time": 0.9271523178807947, + "noteOrder": 5927, + "time": 0.9328287606433302, "position": { "x": 3, "y": 0 @@ -4402,18 +5506,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5912, - "time": 0.9309366130558183, + "noteOrder": 5927, + "time": 0.9328287606433302, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4431,10 +5535,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5960, - "time": 0.9385052034058655, + "noteOrder": 5963, + "time": 0.9385052034058657, "position": { "x": 3, "y": 0 @@ -4454,10 +5558,10 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6009, - "time": 0.9460737937559129, + "noteOrder": 6011, + "time": 0.946073793755913, "position": { "x": 5, "y": 0 @@ -4477,9 +5581,9 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6081, + "noteOrder": 6083, "time": 0.9574266792809839, "position": { "x": 7, @@ -4500,10 +5604,10 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6129, - "time": 0.9649952696310311, + "noteOrder": 6131, + "time": 0.9649952696310312, "position": { "x": 4, "y": 0 @@ -4523,10 +5627,33 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6155, + "time": 0.9687795648060549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6153, - "time": 0.9687795648060548, + "noteOrder": 6167, + "time": 0.9706717123935668, "position": { "x": 3, "y": 0 @@ -4544,12 +5671,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6167, + "time": 0.9706717123935668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6179, + "time": 0.9725638599810786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6191, + "time": 0.9744560075685904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6177, - "time": 0.9725638599810785, + "noteOrder": 6191, + "time": 0.9744560075685904, "position": { "x": 6, "y": 0 @@ -4569,10 +5765,33 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6203, + "time": 0.9763481551561023, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6201, - "time": 0.9763481551561022, + "noteOrder": 6215, + "time": 0.9782403027436141, "position": { "x": 3, "y": 0 @@ -4590,12 +5809,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6215, + "time": 0.9782403027436141, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6227, + "time": 0.980132450331126, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6239, + "time": 0.9820245979186377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6225, - "time": 0.9801324503311257, + "noteOrder": 6239, + "time": 0.9820245979186377, "position": { "x": 6, "y": 0 diff --git "a/tracks/Comin\342\200\231 Back/info.json" "b/tracks/Comin\342\200\231 Back/info.json" index 1f192379..2815413d 100644 --- "a/tracks/Comin\342\200\231 Back/info.json" +++ "b/tracks/Comin\342\200\231 Back/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Comin\u2019 Back", - "SongLength": "126.746122", + "SongLength": "116.793469", "SongAuthorName": "TEMPLIME", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Crystal Clear/304_difficulty_1a.json b/tracks/Crystal Clear/304_difficulty_1a.json index 869ec986..e1e5b3bd 100644 --- a/tracks/Crystal Clear/304_difficulty_1a.json +++ b/tracks/Crystal Clear/304_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.029692470837751856, + "time": 0.029692470837751853, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 266, - "time": 0.04665959703075291, + "time": 0.04665959703075292, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 266, - "time": 0.04665959703075291, + "time": 0.04665959703075292, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 314, - "time": 0.05514316012725345, + "time": 0.05514316012725344, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 362, - "time": 0.06362672322375397, + "time": 0.06362672322375398, "position": { "x": 6, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 410, + "noteOrder": 411, "time": 0.0721102863202545, "position": { "x": 7, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 579, + "noteOrder": 580, "time": 0.10180275715800637, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 603, + "noteOrder": 604, "time": 0.10604453870625663, "position": { "x": 6, @@ -294,7 +294,7 @@ }, { "noteOrder": 628, - "time": 0.1102863202545069, + "time": 0.11028632025450688, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 652, - "time": 0.11452810180275716, + "time": 0.11452810180275715, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 773, "time": 0.13573700954400847, "position": { "x": 3, @@ -394,7 +394,7 @@ }, { "noteOrder": 845, - "time": 0.14846235418875925, + "time": 0.14846235418875928, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 893, - "time": 0.15694591728525978, + "noteOrder": 894, + "time": 0.1569459172852598, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 918, "time": 0.16118769883351006, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 941, - "time": 0.1654294803817603, + "noteOrder": 942, + "time": 0.16542948038176034, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1014, - "time": 0.17815482502651112, + "time": 0.17815482502651114, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1038, - "time": 0.18239660657476137, + "time": 0.1823966065747614, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1086, - "time": 0.1908801696712619, + "noteOrder": 1087, + "time": 0.19088016967126192, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1111, "time": 0.1951219512195122, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1231, - "time": 0.2163308589607635, + "noteOrder": 1232, + "time": 0.21633085896076354, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1231, - "time": 0.2163308589607635, + "noteOrder": 1232, + "time": 0.21633085896076354, "position": { "x": 7, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1279, + "noteOrder": 1280, "time": 0.22481442205726404, "position": { "x": 4, @@ -714,7 +714,7 @@ }, { "noteOrder": 1304, - "time": 0.22905620360551432, + "time": 0.2290562036055143, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1376, + "noteOrder": 1377, "time": 0.2417815482502651, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1400, - "time": 0.24602332979851538, + "noteOrder": 1401, + "time": 0.24602332979851535, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1424, + "noteOrder": 1425, "time": 0.25026511134676566, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.25874867444326616, "position": { "x": 4, @@ -834,7 +834,7 @@ }, { "noteOrder": 1521, - "time": 0.2672322375397667, + "time": 0.26723223753976666, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1617, - "time": 0.2841993637327677, + "noteOrder": 1618, + "time": 0.2841993637327678, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1714, - "time": 0.3011664899257688, + "noteOrder": 1715, + "time": 0.30116648992576883, "position": { "x": 7, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1859, - "time": 0.3266171792152704, + "time": 0.32661717921527045, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1907, - "time": 0.3351007423117709, + "noteOrder": 1908, + "time": 0.33510074231177095, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2052, + "noteOrder": 2053, "time": 0.3605514316012725, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2100, + "noteOrder": 2101, "time": 0.369034994697773, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2197, + "noteOrder": 2198, "time": 0.38600212089077407, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2245, - "time": 0.3944856839872747, + "noteOrder": 2246, + "time": 0.3944856839872746, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2293, + "noteOrder": 2294, "time": 0.4029692470837752, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2390, + "noteOrder": 2391, "time": 0.41993637327677624, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2583, + "noteOrder": 2584, "time": 0.45387062566277836, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2777, "time": 0.4878048780487805, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2824, + "noteOrder": 2825, "time": 0.49628844114528103, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2873, - "time": 0.5047720042417816, + "noteOrder": 2874, + "time": 0.5047720042417815, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2945, + "noteOrder": 2946, "time": 0.5174973488865323, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3017, + "noteOrder": 3019, "time": 0.5302226935312832, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3066, + "noteOrder": 3067, "time": 0.5387062566277837, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3164, "time": 0.5556733828207847, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3211, - "time": 0.5641569459172852, + "noteOrder": 3212, + "time": 0.5641569459172853, "position": { "x": 8, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3235, - "time": 0.5683987274655354, + "noteOrder": 3236, + "time": 0.5683987274655355, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3259, - "time": 0.5726405090137857, + "noteOrder": 3260, + "time": 0.5726405090137858, "position": { "x": 5, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3308, "time": 0.5811240721102863, "position": { "x": 2, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3331, + "noteOrder": 3333, "time": 0.5853658536585366, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3355, + "noteOrder": 3357, "time": 0.5896076352067868, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3404, - "time": 0.5980911983032873, + "noteOrder": 3405, + "time": 0.5980911983032874, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3452, - "time": 0.6065747613997878, + "noteOrder": 3453, + "time": 0.6065747613997879, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3476, + "noteOrder": 3477, "time": 0.6108165429480381, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3500, + "noteOrder": 3502, "time": 0.6150583244962884, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3526, "time": 0.6193001060445387, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3526, "time": 0.6193001060445387, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.623541887592789, + "noteOrder": 3550, + "time": 0.6235418875927891, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.623541887592789, + "noteOrder": 3550, + "time": 0.6235418875927891, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3573, - "time": 0.6277836691410391, + "noteOrder": 3574, + "time": 0.6277836691410392, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3597, - "time": 0.6320254506892894, + "noteOrder": 3598, + "time": 0.6320254506892895, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3621, - "time": 0.6362672322375397, + "noteOrder": 3622, + "time": 0.6362672322375398, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3647, "time": 0.64050901378579, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3669, + "noteOrder": 3671, "time": 0.6447507953340402, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3693, + "noteOrder": 3695, "time": 0.6489925768822905, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3717, - "time": 0.6532343584305408, + "noteOrder": 3719, + "time": 0.6532343584305409, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3742, + "noteOrder": 3743, "time": 0.6574761399787911, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3766, - "time": 0.6617179215270412, + "noteOrder": 3767, + "time": 0.6617179215270413, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3790, - "time": 0.6659597030752915, + "noteOrder": 3791, + "time": 0.6659597030752916, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3814, - "time": 0.6702014846235418, + "noteOrder": 3816, + "time": 0.6702014846235419, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3838, + "noteOrder": 3840, "time": 0.6744432661717921, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3862, + "noteOrder": 3864, "time": 0.6786850477200423, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3886, - "time": 0.6829268292682926, + "noteOrder": 3888, + "time": 0.6829268292682927, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3935, + "noteOrder": 3936, "time": 0.6914103923647932, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3935, + "noteOrder": 3936, "time": 0.6914103923647932, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4152, - "time": 0.7295864262990455, + "noteOrder": 4154, + "time": 0.7295864262990456, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4164, - "time": 0.7317073170731706, + "noteOrder": 4166, + "time": 0.7317073170731707, "position": { "x": 5, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4176, - "time": 0.7338282078472957, + "noteOrder": 4178, + "time": 0.7338282078472959, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4188, - "time": 0.7359490986214209, + "noteOrder": 4190, + "time": 0.735949098621421, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4202, "time": 0.738069989395546, "position": { "x": 7, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4212, - "time": 0.7401908801696712, + "noteOrder": 4214, + "time": 0.7401908801696713, "position": { "x": 5, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4226, "time": 0.7423117709437963, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4236, - "time": 0.7444326617179214, + "noteOrder": 4238, + "time": 0.7444326617179216, "position": { "x": 5, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4323, "time": 0.7592788971367974, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.7974549310710498, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4550, + "noteOrder": 4552, "time": 0.799575821845175, "position": { "x": 5, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4562, - "time": 0.8016967126193001, + "noteOrder": 4564, + "time": 0.8016967126193, "position": { "x": 7, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.8038176033934252, "position": { "x": 5, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4586, + "noteOrder": 4588, "time": 0.8059384941675504, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4599, + "noteOrder": 4600, "time": 0.8080593849416755, "position": { "x": 5, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.8101802757158006, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4623, - "time": 0.8123011664899258, + "noteOrder": 4625, + "time": 0.8123011664899257, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.8271474019088018, + "noteOrder": 4709, + "time": 0.8271474019088016, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.8356309650053022, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4804, + "noteOrder": 4806, "time": 0.8441145281018028, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4876, - "time": 0.8568398727465536, + "noteOrder": 4878, + "time": 0.8568398727465535, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.8610816542948039, + "noteOrder": 4902, + "time": 0.8610816542948038, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.865323435843054, + "noteOrder": 4926, + "time": 0.8653234358430542, "position": { "x": 7, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4949, + "noteOrder": 4951, "time": 0.8695652173913043, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.8738069989395546, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4997, + "noteOrder": 4999, "time": 0.8780487804878049, "position": { "x": 4, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5021, - "time": 0.8822905620360552, + "noteOrder": 5023, + "time": 0.882290562036055, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.8865323435843054, + "noteOrder": 5047, + "time": 0.8865323435843053, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.8907741251325557, + "noteOrder": 5071, + "time": 0.8907741251325556, "position": { "x": 6, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.895015906680806, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.895015906680806, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.9034994697773064, "position": { "x": 3, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.911983032873807, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5262, + "noteOrder": 5265, "time": 0.9247083775185578, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.9289501590668081, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.9374337221633086, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.9459172852598091, "position": { "x": 3, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.9501590668080594, + "noteOrder": 5409, + "time": 0.9501590668080593, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.9544008483563097, + "noteOrder": 5434, + "time": 0.9544008483563096, "position": { "x": 7, "y": 0 @@ -2616,7 +2616,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01696712619300106, @@ -2639,7 +2639,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, "time": 0.021208907741251323, @@ -2662,7 +2662,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, "time": 0.02545068928950159, @@ -2685,10 +2685,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.029692470837751856, + "time": 0.029692470837751853, "position": { "x": 3, "y": 0 @@ -2708,7 +2708,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, "time": 0.05090137857900318, @@ -2731,10 +2731,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 314, - "time": 0.05514316012725345, + "time": 0.05514316012725344, "position": { "x": 3, "y": 0 @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, - "time": 0.05938494167550371, + "time": 0.059384941675503705, "position": { "x": 7, "y": 0 @@ -2777,10 +2777,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, - "time": 0.06362672322375397, + "time": 0.06362672322375398, "position": { "x": 7, "y": 0 @@ -2800,7 +2800,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 435, "time": 0.07635206786850476, @@ -2823,7 +2823,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 459, "time": 0.08059384941675503, @@ -2846,7 +2846,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 435, "time": 0.07635206786850476, @@ -2869,7 +2869,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 459, "time": 0.08059384941675503, @@ -2892,7 +2892,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, "time": 0.0848356309650053, @@ -2915,10 +2915,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 495, - "time": 0.08695652173913042, + "time": 0.08695652173913043, "position": { "x": 6, "y": 0 @@ -2938,10 +2938,10 @@ }, { "lineGroupId": 20, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 507, - "time": 0.08907741251325556, + "time": 0.08907741251325557, "position": { "x": 6, "y": 0 @@ -2961,10 +2961,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 507, - "time": 0.08907741251325556, + "time": 0.08907741251325557, "position": { "x": 3, "y": 0 @@ -2984,10 +2984,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 519, - "time": 0.09119830328738068, + "time": 0.0911983032873807, "position": { "x": 4, "y": 0 @@ -3007,10 +3007,10 @@ }, { "lineGroupId": 21, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 531, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 4, "y": 0 @@ -3030,10 +3030,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 531, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 7, "y": 0 @@ -3053,10 +3053,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 543, - "time": 0.09544008483563095, + "time": 0.09544008483563096, "position": { "x": 6, "y": 0 @@ -3076,7 +3076,7 @@ }, { "lineGroupId": 22, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 555, "time": 0.0975609756097561, @@ -3099,7 +3099,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 555, "time": 0.0975609756097561, @@ -3122,9 +3122,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 567, + "noteOrder": 568, "time": 0.09968186638388123, "position": { "x": 4, @@ -3145,10 +3145,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 676, - "time": 0.11876988335100742, + "time": 0.11876988335100741, "position": { "x": 3, "y": 0 @@ -3168,7 +3168,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 688, "time": 0.12089077412513255, @@ -3191,10 +3191,10 @@ }, { "lineGroupId": 28, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 700, - "time": 0.12301166489925769, + "time": 0.12301166489925767, "position": { "x": 4, "y": 0 @@ -3214,10 +3214,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 700, - "time": 0.12301166489925769, + "time": 0.12301166489925767, "position": { "x": 7, "y": 0 @@ -3237,7 +3237,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 712, "time": 0.12513255567338283, @@ -3260,10 +3260,10 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 724, - "time": 0.12725344644750794, + "time": 0.12725344644750797, "position": { "x": 6, "y": 0 @@ -3283,10 +3283,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 724, - "time": 0.12725344644750794, + "time": 0.12725344644750797, "position": { "x": 3, "y": 0 @@ -3306,9 +3306,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 736, + "noteOrder": 737, "time": 0.12937433722163308, "position": { "x": 4, @@ -3329,9 +3329,9 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 748, + "noteOrder": 749, "time": 0.13149522799575822, "position": { "x": 4, @@ -3352,9 +3352,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 748, + "noteOrder": 749, "time": 0.13149522799575822, "position": { "x": 7, @@ -3375,10 +3375,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 760, - "time": 0.13361611876988336, + "noteOrder": 761, + "time": 0.13361611876988333, "position": { "x": 6, "y": 0 @@ -3398,7 +3398,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, "time": 0.15270413573700953, @@ -3421,7 +3421,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 966, "time": 0.1696712619300106, @@ -3444,7 +3444,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 966, "time": 0.1696712619300106, @@ -3465,12 +3465,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 978, + "time": 0.17179215270413575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 978, + "time": 0.17179215270413575, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 990, - "time": 0.17391304347826084, + "time": 0.17391304347826086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1002, + "time": 0.17603393425238598, "position": { "x": 3, "y": 0 @@ -3488,12 +3557,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1002, + "time": 0.17603393425238598, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1062, - "time": 0.18663838812301164, + "noteOrder": 1063, + "time": 0.18663838812301167, "position": { "x": 7, "y": 0 @@ -3513,7 +3605,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1159, "time": 0.20360551431601273, @@ -3536,10 +3628,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1255, - "time": 0.2205726405090138, + "noteOrder": 1256, + "time": 0.22057264050901376, "position": { "x": 3, "y": 0 @@ -3559,9 +3651,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1279, + "noteOrder": 1280, "time": 0.22481442205726404, "position": { "x": 3, @@ -3582,10 +3674,10 @@ }, { "lineGroupId": 54, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1352, - "time": 0.23753976670201485, + "time": 0.23753976670201482, "position": { "x": 6, "y": 0 @@ -3605,10 +3697,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1352, - "time": 0.23753976670201485, + "time": 0.23753976670201482, "position": { "x": 7, "y": 0 @@ -3628,9 +3720,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1376, + "noteOrder": 1377, "time": 0.2417815482502651, "position": { "x": 7, @@ -3651,10 +3743,10 @@ }, { "lineGroupId": 58, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1448, - "time": 0.2545068928950159, + "noteOrder": 1449, + "time": 0.25450689289501593, "position": { "x": 4, "y": 0 @@ -3674,10 +3766,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1448, - "time": 0.2545068928950159, + "noteOrder": 1449, + "time": 0.25450689289501593, "position": { "x": 3, "y": 0 @@ -3697,9 +3789,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.25874867444326616, "position": { "x": 3, @@ -3720,7 +3812,7 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1497, "time": 0.26299045599151644, @@ -3743,10 +3835,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1521, - "time": 0.2672322375397667, + "time": 0.26723223753976666, "position": { "x": 7, "y": 0 @@ -3766,9 +3858,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1545, + "noteOrder": 1546, "time": 0.27147401908801694, "position": { "x": 3, @@ -3788,13 +3880,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1569, - "time": 0.2757158006362672, + "noteOrder": 1558, + "time": 0.2735949098621421, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3806,18 +3898,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1593, - "time": 0.27995758218451744, + "noteOrder": 1558, + "time": 0.2735949098621421, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3834,11 +3926,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, - "time": 0.288441145281018, + "noteOrder": 1570, + "time": 0.2757158006362672, "position": { "x": 7, "y": 0 @@ -3857,11 +3949,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1690, - "time": 0.2969247083775185, + "noteOrder": 1582, + "time": 0.27783669141039236, "position": { "x": 7, "y": 0 @@ -3875,18 +3967,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1738, - "time": 0.30540827147401906, + "noteOrder": 1582, + "time": 0.27783669141039236, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3903,13 +3995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1762, - "time": 0.30965005302226933, + "noteOrder": 1594, + "time": 0.27995758218451744, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3926,13 +4018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 68, "indexInLine": 2, "isSliding": false, - "noteOrder": 1810, - "time": 0.31813361611876984, + "noteOrder": 1606, + "time": 0.28207847295864263, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3949,13 +4041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1786, - "time": 0.31389183457051956, + "noteOrder": 1606, + "time": 0.28207847295864263, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3967,18 +4059,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1810, - "time": 0.31813361611876984, + "noteOrder": 1618, + "time": 0.2841993637327678, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3990,16 +4082,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1835, - "time": 0.3223753976670201, + "noteOrder": 1618, + "time": 0.2841993637327678, "position": { "x": 3, "y": 0 @@ -4018,13 +4110,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1883, - "time": 0.3308589607635206, + "noteOrder": 1642, + "time": 0.288441145281018, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4041,13 +4133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1931, - "time": 0.3393425238600212, + "noteOrder": 1654, + "time": 0.29056203605514314, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4059,18 +4151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1955, - "time": 0.34358430540827145, + "noteOrder": 1654, + "time": 0.29056203605514314, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4087,13 +4179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2004, - "time": 0.35206786850477195, + "noteOrder": 1666, + "time": 0.2926829268292683, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4110,13 +4202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1979, - "time": 0.3478260869565217, + "noteOrder": 1666, + "time": 0.2926829268292683, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4128,18 +4220,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 2004, - "time": 0.35206786850477195, + "noteOrder": 1690, + "time": 0.29692470837751855, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4156,11 +4248,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2028, - "time": 0.35630965005302223, + "noteOrder": 1703, + "time": 0.2990455991516437, "position": { "x": 7, "y": 0 @@ -4174,18 +4266,5584 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1703, + "time": 0.2990455991516437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1715, + "time": 0.30116648992576883, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1715, + "time": 0.30116648992576883, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1739, + "time": 0.30540827147401906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1751, + "time": 0.3075291622481442, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1751, + "time": 0.3075291622481442, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1763, + "time": 0.30965005302226933, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1763, + "time": 0.30965005302226933, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1763, + "time": 0.30965005302226933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1775, + "time": 0.31177094379639453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1775, + "time": 0.31177094379639453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1811, + "time": 0.3181336161187699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1787, + "time": 0.3138918345705196, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1811, + "time": 0.3181336161187699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1835, + "time": 0.3223753976670201, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1847, + "time": 0.32449628844114525, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1847, + "time": 0.32449628844114525, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1859, + "time": 0.32661717921527045, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1859, + "time": 0.32661717921527045, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1884, + "time": 0.33085896076352067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1896, + "time": 0.3329798515376458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1896, + "time": 0.3329798515376458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1908, + "time": 0.33510074231177095, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1908, + "time": 0.33510074231177095, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1932, + "time": 0.3393425238600212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1944, + "time": 0.34146341463414637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1944, + "time": 0.34146341463414637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1956, + "time": 0.3435843054082715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1956, + "time": 0.3435843054082715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1956, + "time": 0.3435843054082715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1968, + "time": 0.3457051961823966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1968, + "time": 0.3457051961823966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2004, + "time": 0.35206786850477195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1980, + "time": 0.34782608695652173, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2004, + "time": 0.35206786850477195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2029, + "time": 0.3563096500530223, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2053, + "time": 0.3605514316012725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2077, + "time": 0.3647932131495228, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2101, + "time": 0.369034994697773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2125, + "time": 0.37327677624602335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3753976670201485, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3753976670201485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2149, + "time": 0.37751855779427357, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2161, + "time": 0.3796394485683987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2161, + "time": 0.3796394485683987, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2173, + "time": 0.38176033934252385, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2186, + "time": 0.383881230116649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2186, + "time": 0.383881230116649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2198, + "time": 0.38600212089077407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2198, + "time": 0.38600212089077407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3902439024390244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2246, + "time": 0.3944856839872746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2270, + "time": 0.3987274655355249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2294, + "time": 0.4029692470837752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2318, + "time": 0.40721102863202546, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2330, + "time": 0.40933191940615055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.40933191940615055, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2342, + "time": 0.4114528101802757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2355, + "time": 0.4135737009544008, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2355, + "time": 0.4135737009544008, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2367, + "time": 0.41569459172852596, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2379, + "time": 0.4178154825026511, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2379, + "time": 0.4178154825026511, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2391, + "time": 0.41993637327677624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2391, + "time": 0.41993637327677624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2415, + "time": 0.4241781548250265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2427, + "time": 0.4262990455991516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2427, + "time": 0.4262990455991516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2439, + "time": 0.42841993637327674, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2439, + "time": 0.42841993637327674, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2439, + "time": 0.42841993637327674, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2451, + "time": 0.4305408271474019, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2451, + "time": 0.4305408271474019, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2463, + "time": 0.4326617179215271, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2463, + "time": 0.4326617179215271, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2463, + "time": 0.4326617179215271, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2475, + "time": 0.43478260869565216, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2475, + "time": 0.43478260869565216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2487, + "time": 0.4369034994697773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2487, + "time": 0.4369034994697773, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2487, + "time": 0.4369034994697773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2499, + "time": 0.43902439024390244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2499, + "time": 0.43902439024390244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2512, + "time": 0.4411452810180275, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.4453870625662778, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2536, + "time": 0.4453870625662778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2560, + "time": 0.4496288441145281, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2560, + "time": 0.4496288441145281, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2572, + "time": 0.4517497348886532, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2572, + "time": 0.4517497348886532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2584, + "time": 0.45387062566277836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2584, + "time": 0.45387062566277836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4581124072110286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2620, + "time": 0.4602332979851537, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2620, + "time": 0.4602332979851537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4623541887592789, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4623541887592789, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4623541887592789, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2644, + "time": 0.46447507953340406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2644, + "time": 0.46447507953340406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2656, + "time": 0.46659597030752914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2656, + "time": 0.46659597030752914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2656, + "time": 0.46659597030752914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4687168610816543, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4687168610816543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4708377518557794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4708377518557794, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4708377518557794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2693, + "time": 0.47295864262990456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2693, + "time": 0.47295864262990456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2705, + "time": 0.47507953340402964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.47932131495228, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2729, + "time": 0.47932131495228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4835630965005302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2753, + "time": 0.4835630965005302, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2765, + "time": 0.48568398727465534, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2765, + "time": 0.48568398727465534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4878048780487805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4878048780487805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2801, + "time": 0.4920466595970307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4941675503711559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2813, + "time": 0.4941675503711559, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2825, + "time": 0.49628844114528103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2825, + "time": 0.49628844114528103, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2850, + "time": 0.5005302226935313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5026511134676563, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5026511134676563, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2874, + "time": 0.5047720042417815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2874, + "time": 0.5047720042417815, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2898, + "time": 0.5090137857900319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5111346765641569, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5111346765641569, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2922, + "time": 0.513255567338282, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2922, + "time": 0.513255567338282, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2922, + "time": 0.513255567338282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5153764581124072, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5153764581124072, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2946, + "time": 0.5174973488865323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2946, + "time": 0.5174973488865323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5196182396606575, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5196182396606575, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2970, + "time": 0.5217391304347826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2970, + "time": 0.5217391304347826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2970, + "time": 0.5217391304347826, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5238600212089077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5238600212089077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2995, + "time": 0.5259809119830329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3007, + "time": 0.528101802757158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3007, + "time": 0.528101802757158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3019, + "time": 0.5302226935312832, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3019, + "time": 0.5302226935312832, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5344644750795333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3055, + "time": 0.5365853658536585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3055, + "time": 0.5365853658536585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3067, + "time": 0.5387062566277837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3067, + "time": 0.5387062566277837, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3091, + "time": 0.5429480381760339, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3103, + "time": 0.545068928950159, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3103, + "time": 0.545068928950159, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3115, + "time": 0.5471898197242842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3115, + "time": 0.5471898197242842, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3115, + "time": 0.5471898197242842, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5493107104984093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5493107104984093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3139, + "time": 0.5514316012725344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3151, + "time": 0.5535524920466596, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3151, + "time": 0.5535524920466596, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3164, + "time": 0.5556733828207847, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3164, + "time": 0.5556733828207847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3188, + "time": 0.5599151643690349, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3284, + "time": 0.576882290562036, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3284, + "time": 0.576882290562036, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3381, + "time": 0.5938494167550371, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3381, + "time": 0.5938494167550371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5980911983032874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3429, + "time": 0.6023329798515377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3453, + "time": 0.6065747613997879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6956521739130435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3973, + "time": 0.6977730646871686, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3973, + "time": 0.6977730646871686, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3985, + "time": 0.6998939554612937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3985, + "time": 0.6998939554612937, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3985, + "time": 0.6998939554612937, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3997, + "time": 0.7020148462354189, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3997, + "time": 0.7020148462354189, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4021, + "time": 0.7062566277836692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4021, + "time": 0.7062566277836692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4033, + "time": 0.7083775185577942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4033, + "time": 0.7083775185577942, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4033, + "time": 0.7083775185577942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4045, + "time": 0.7104984093319194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4045, + "time": 0.7104984093319194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4069, + "time": 0.7147401908801696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4069, + "time": 0.7147401908801696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4081, + "time": 0.7168610816542949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4081, + "time": 0.7168610816542949, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4081, + "time": 0.7168610816542949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4093, + "time": 0.7189819724284199, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4093, + "time": 0.7189819724284199, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4117, + "time": 0.7232237539766702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4117, + "time": 0.7232237539766702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4130, + "time": 0.7253446447507953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4130, + "time": 0.7253446447507953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4130, + "time": 0.7253446447507953, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4142, + "time": 0.7274655355249205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4142, + "time": 0.7274655355249205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4250, + "time": 0.7465535524920467, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4262, + "time": 0.7486744432661717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4262, + "time": 0.7486744432661717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4274, + "time": 0.750795334040297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4286, + "time": 0.752916224814422, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4286, + "time": 0.752916224814422, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4299, + "time": 0.7550371155885471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4311, + "time": 0.7571580063626723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4311, + "time": 0.7571580063626723, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4323, + "time": 0.7592788971367974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4323, + "time": 0.7592788971367974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4347, + "time": 0.7635206786850477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4359, + "time": 0.7656415694591728, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4359, + "time": 0.7656415694591728, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4371, + "time": 0.767762460233298, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4371, + "time": 0.767762460233298, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4371, + "time": 0.767762460233298, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4383, + "time": 0.7698833510074231, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4383, + "time": 0.7698833510074231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4407, + "time": 0.7741251325556734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4407, + "time": 0.7741251325556734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4419, + "time": 0.7762460233297985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4419, + "time": 0.7762460233297985, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4419, + "time": 0.7762460233297985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2052, - "time": 0.3605514316012725, + "noteOrder": 4431, + "time": 0.7783669141039236, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4202,13 +9860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2076, - "time": 0.36479321314952273, + "noteOrder": 4431, + "time": 0.7783669141039236, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4220,16 +9878,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2100, - "time": 0.369034994697773, + "noteOrder": 4443, + "time": 0.7804878048780488, "position": { "x": 4, "y": 0 @@ -4243,18 +9901,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2124, - "time": 0.3732767762460233, + "noteOrder": 4443, + "time": 0.7804878048780488, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4271,11 +9929,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2148, - "time": 0.37751855779427357, + "noteOrder": 4443, + "time": 0.7804878048780488, "position": { "x": 3, "y": 0 @@ -4294,13 +9952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2173, - "time": 0.3817603393425238, + "noteOrder": 4456, + "time": 0.7826086956521738, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4312,18 +9970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2221, - "time": 0.3902439024390244, + "noteOrder": 4456, + "time": 0.7826086956521738, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4340,11 +9998,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2245, - "time": 0.3944856839872747, + "noteOrder": 4468, + "time": 0.7847295864262991, "position": { "x": 4, "y": 0 @@ -4363,13 +10021,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2269, - "time": 0.3987274655355249, + "noteOrder": 4468, + "time": 0.7847295864262991, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4381,18 +10039,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 2293, - "time": 0.4029692470837752, + "noteOrder": 4468, + "time": 0.7847295864262991, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4409,11 +10067,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2317, - "time": 0.40721102863202546, + "noteOrder": 4480, + "time": 0.7868504772004241, "position": { "x": 3, "y": 0 @@ -4427,18 +10085,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2342, - "time": 0.41145281018027574, + "noteOrder": 4480, + "time": 0.7868504772004241, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4455,13 +10113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2366, - "time": 0.41569459172852596, + "noteOrder": 4492, + "time": 0.7889713679745493, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4473,18 +10131,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2414, - "time": 0.4241781548250265, + "noteOrder": 4492, + "time": 0.7889713679745493, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4501,13 +10159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2438, - "time": 0.4284199363732768, + "noteOrder": 4492, + "time": 0.7889713679745493, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4524,13 +10182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2462, - "time": 0.432661717921527, + "noteOrder": 4504, + "time": 0.7910922587486745, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4542,18 +10200,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2486, - "time": 0.4369034994697773, + "noteOrder": 4504, + "time": 0.7910922587486745, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4570,11 +10228,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2510, - "time": 0.4411452810180276, + "noteOrder": 4516, + "time": 0.7932131495227995, "position": { "x": 4, "y": 0 @@ -4588,18 +10246,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4516, + "time": 0.7932131495227995, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 2535, - "time": 0.44538706256627786, + "noteOrder": 4516, + "time": 0.7932131495227995, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4616,13 +10297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2535, - "time": 0.44538706256627786, + "noteOrder": 4528, + "time": 0.7953340402969247, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4634,18 +10315,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4528, + "time": 0.7953340402969247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, "indexInLine": 1, "isSliding": false, - "noteOrder": 2559, - "time": 0.4496288441145281, + "noteOrder": 4637, + "time": 0.8144220572640509, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4662,11 +10366,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2559, - "time": 0.4496288441145281, + "noteOrder": 4649, + "time": 0.816542948038176, "position": { "x": 3, "y": 0 @@ -4680,18 +10384,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2607, - "time": 0.45811240721102864, + "noteOrder": 4649, + "time": 0.816542948038176, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4708,13 +10412,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2631, - "time": 0.4623541887592789, + "noteOrder": 4661, + "time": 0.8186638388123011, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4731,13 +10435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2655, - "time": 0.46659597030752914, + "noteOrder": 4673, + "time": 0.8207847295864263, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4749,18 +10453,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2679, - "time": 0.4708377518557794, + "noteOrder": 4673, + "time": 0.8207847295864263, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4777,13 +10481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2704, - "time": 0.4750795334040297, + "noteOrder": 4685, + "time": 0.8229056203605514, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4800,13 +10504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2728, - "time": 0.47932131495228, + "noteOrder": 4697, + "time": 0.8250265111346766, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4823,11 +10527,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2728, - "time": 0.47932131495228, + "noteOrder": 4697, + "time": 0.8250265111346766, "position": { "x": 4, "y": 0 @@ -4841,16 +10545,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2752, - "time": 0.4835630965005302, + "noteOrder": 4709, + "time": 0.8271474019088016, "position": { "x": 4, "y": 0 @@ -4864,18 +10568,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2752, - "time": 0.4835630965005302, + "noteOrder": 4709, + "time": 0.8271474019088016, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4892,11 +10596,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2800, - "time": 0.49204665959703076, + "noteOrder": 4733, + "time": 0.8313891834570519, "position": { "x": 7, "y": 0 @@ -4915,11 +10619,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2848, - "time": 0.5005302226935313, + "noteOrder": 4745, + "time": 0.8335100742311771, "position": { "x": 7, "y": 0 @@ -4933,18 +10637,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2897, - "time": 0.5090137857900318, + "noteOrder": 4745, + "time": 0.8335100742311771, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4961,13 +10665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2921, - "time": 0.513255567338282, + "noteOrder": 4757, + "time": 0.8356309650053022, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4979,18 +10683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2969, - "time": 0.5217391304347826, + "noteOrder": 4757, + "time": 0.8356309650053022, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5007,13 +10711,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2993, - "time": 0.5259809119830329, + "noteOrder": 4782, + "time": 0.8398727465535525, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5030,13 +10734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3042, - "time": 0.5344644750795334, + "noteOrder": 4794, + "time": 0.8419936373276775, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5048,18 +10752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3090, - "time": 0.5429480381760339, + "noteOrder": 4794, + "time": 0.8419936373276775, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5076,13 +10780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3114, - "time": 0.5471898197242842, + "noteOrder": 4806, + "time": 0.8441145281018028, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5094,18 +10798,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3138, - "time": 0.5514316012725344, + "noteOrder": 4806, + "time": 0.8441145281018028, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5122,13 +10826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3186, - "time": 0.5599151643690349, + "noteOrder": 4830, + "time": 0.848356309650053, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5145,13 +10849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3283, - "time": 0.576882290562036, + "noteOrder": 4842, + "time": 0.8504772004241782, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5168,13 +10872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3283, - "time": 0.576882290562036, + "noteOrder": 4842, + "time": 0.8504772004241782, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5186,18 +10890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3380, - "time": 0.593849416755037, + "noteOrder": 4854, + "time": 0.8525980911983032, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5209,18 +10913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3380, - "time": 0.593849416755037, + "noteOrder": 4854, + "time": 0.8525980911983032, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5237,11 +10941,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 3404, - "time": 0.5980911983032873, + "noteOrder": 4854, + "time": 0.8525980911983032, "position": { "x": 7, "y": 0 @@ -5255,18 +10959,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3428, - "time": 0.6023329798515376, + "noteOrder": 4866, + "time": 0.8547189819724285, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5283,13 +10987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3452, - "time": 0.6065747613997878, + "noteOrder": 4866, + "time": 0.8547189819724285, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5306,13 +11010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3959, - "time": 0.6956521739130433, + "noteOrder": 4878, + "time": 0.8568398727465535, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5324,16 +11028,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3983, - "time": 0.6998939554612936, + "noteOrder": 4878, + "time": 0.8568398727465535, "position": { "x": 7, "y": 0 @@ -5352,11 +11056,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4007, - "time": 0.7041357370095439, + "noteOrder": 4890, + "time": 0.8589607635206786, "position": { "x": 7, "y": 0 @@ -5370,18 +11074,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4031, - "time": 0.7083775185577942, + "noteOrder": 4890, + "time": 0.8589607635206786, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5398,13 +11102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4055, - "time": 0.7126193001060445, + "noteOrder": 4902, + "time": 0.8610816542948038, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5416,16 +11120,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4080, - "time": 0.7168610816542947, + "noteOrder": 4902, + "time": 0.8610816542948038, "position": { "x": 7, "y": 0 @@ -5444,13 +11148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4104, - "time": 0.721102863202545, + "noteOrder": 5120, + "time": 0.8992576882290562, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5462,18 +11166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4128, - "time": 0.7253446447507953, + "noteOrder": 5132, + "time": 0.9013785790031813, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5490,13 +11194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4249, - "time": 0.7465535524920466, + "noteOrder": 5132, + "time": 0.9013785790031813, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5508,18 +11212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4273, - "time": 0.7507953340402969, + "noteOrder": 5144, + "time": 0.9034994697773064, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5536,13 +11240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4297, - "time": 0.7550371155885471, + "noteOrder": 5144, + "time": 0.9034994697773064, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5554,16 +11258,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4345, - "time": 0.7635206786850476, + "noteOrder": 5168, + "time": 0.9077412513255567, "position": { "x": 3, "y": 0 @@ -5577,16 +11281,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4369, - "time": 0.7677624602332979, + "noteOrder": 5180, + "time": 0.9098621420996819, "position": { "x": 3, "y": 0 @@ -5605,13 +11309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4393, - "time": 0.7720042417815481, + "noteOrder": 5180, + "time": 0.9098621420996819, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5623,18 +11327,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4417, - "time": 0.7762460233297984, + "noteOrder": 5192, + "time": 0.911983032873807, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5651,13 +11355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4442, - "time": 0.7804878048780488, + "noteOrder": 5192, + "time": 0.911983032873807, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5669,16 +11373,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.7847295864262991, + "noteOrder": 5216, + "time": 0.9162248144220572, "position": { "x": 3, "y": 0 @@ -5692,16 +11396,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4490, - "time": 0.7889713679745494, + "noteOrder": 5228, + "time": 0.9183457051961824, "position": { "x": 3, "y": 0 @@ -5720,13 +11424,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4514, - "time": 0.7932131495227996, + "noteOrder": 5228, + "time": 0.9183457051961824, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5738,18 +11442,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4635, - "time": 0.8144220572640509, + "noteOrder": 5240, + "time": 0.9204665959703074, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5766,13 +11470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4659, - "time": 0.8186638388123012, + "noteOrder": 5240, + "time": 0.9204665959703074, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5784,16 +11488,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4683, - "time": 0.8229056203605515, + "noteOrder": 5240, + "time": 0.9204665959703074, "position": { "x": 3, "y": 0 @@ -5807,18 +11511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4731, - "time": 0.8313891834570519, + "noteOrder": 5252, + "time": 0.9225874867444327, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5835,13 +11539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4780, - "time": 0.8398727465535525, + "noteOrder": 5252, + "time": 0.9225874867444327, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5853,18 +11557,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4828, - "time": 0.848356309650053, + "noteOrder": 5265, + "time": 0.9247083775185578, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5881,13 +11585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4852, - "time": 0.8525980911983033, + "noteOrder": 5265, + "time": 0.9247083775185578, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5899,16 +11603,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5118, - "time": 0.8992576882290562, + "noteOrder": 5277, + "time": 0.9268292682926829, "position": { "x": 3, "y": 0 @@ -5922,18 +11626,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5166, - "time": 0.9077412513255567, + "noteOrder": 5277, + "time": 0.9268292682926829, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5950,13 +11654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5214, - "time": 0.9162248144220573, + "noteOrder": 5289, + "time": 0.9289501590668081, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5968,16 +11672,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5238, - "time": 0.9204665959703076, + "noteOrder": 5289, + "time": 0.9289501590668081, "position": { "x": 3, "y": 0 @@ -5997,9 +11701,9 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5311, + "noteOrder": 5313, "time": 0.9331919406150583, "position": { "x": 3, @@ -6020,9 +11724,9 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.9374337221633086, "position": { "x": 4, @@ -6043,9 +11747,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5359, + "noteOrder": 5361, "time": 0.9416755037115588, "position": { "x": 7, @@ -6066,9 +11770,9 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.9459172852598091, "position": { "x": 6, @@ -6089,9 +11793,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5455, + "noteOrder": 5458, "time": 0.95864262990456, "position": { "x": 6, @@ -6112,9 +11816,9 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9628844114528102, "position": { "x": 6, @@ -6135,9 +11839,9 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5455, + "noteOrder": 5458, "time": 0.95864262990456, "position": { "x": 4, @@ -6158,9 +11862,9 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9628844114528102, "position": { "x": 4, diff --git a/tracks/Crystal Clear/304_difficulty_1b.json b/tracks/Crystal Clear/304_difficulty_1b.json index 02a2d8fe..38c66ce2 100644 --- a/tracks/Crystal Clear/304_difficulty_1b.json +++ b/tracks/Crystal Clear/304_difficulty_1b.json @@ -114,7 +114,7 @@ }, { "noteOrder": 338, - "time": 0.05938494167550371, + "time": 0.059384941675503705, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 531, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 628, - "time": 0.1102863202545069, + "time": 0.11028632025450688, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 724, - "time": 0.12725344644750794, + "time": 0.12725344644750797, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 748, + "noteOrder": 749, "time": 0.13149522799575822, "position": { "x": 3, @@ -274,7 +274,7 @@ }, { "noteOrder": 845, - "time": 0.14846235418875925, + "time": 0.14846235418875928, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 990, - "time": 0.17391304347826084, + "time": 0.17391304347826086, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1014, - "time": 0.17815482502651112, + "time": 0.17815482502651114, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1014, - "time": 0.17815482502651112, + "time": 0.17815482502651114, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1279, + "noteOrder": 1280, "time": 0.22481442205726404, "position": { "x": 5, @@ -474,7 +474,7 @@ }, { "noteOrder": 1304, - "time": 0.22905620360551432, + "time": 0.2290562036055143, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1376, + "noteOrder": 1377, "time": 0.2417815482502651, "position": { "x": 5, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1400, - "time": 0.24602332979851538, + "noteOrder": 1401, + "time": 0.24602332979851535, "position": { "x": 5, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1424, + "noteOrder": 1425, "time": 0.25026511134676566, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1545, + "noteOrder": 1546, "time": 0.27147401908801694, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1569, + "noteOrder": 1570, "time": 0.2757158006362672, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27995758218451744, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1593, + "noteOrder": 1594, "time": 0.27995758218451744, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1617, - "time": 0.2841993637327677, + "noteOrder": 1618, + "time": 0.2841993637327678, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1617, - "time": 0.2841993637327677, + "noteOrder": 1618, + "time": 0.2841993637327678, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1883, - "time": 0.3308589607635206, + "noteOrder": 1884, + "time": 0.33085896076352067, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1931, + "noteOrder": 1932, "time": 0.3393425238600212, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1955, - "time": 0.34358430540827145, + "noteOrder": 1956, + "time": 0.3435843054082715, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1979, - "time": 0.3478260869565217, + "noteOrder": 1980, + "time": 0.34782608695652173, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1979, - "time": 0.3478260869565217, + "noteOrder": 1980, + "time": 0.34782608695652173, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2269, + "noteOrder": 2270, "time": 0.3987274655355249, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2318, "time": 0.40721102863202546, "position": { "x": 7, @@ -874,7 +874,7 @@ }, { "noteOrder": 2342, - "time": 0.41145281018027574, + "time": 0.4114528101802757, "position": { "x": 3, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.41569459172852596, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.41569459172852596, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2390, + "noteOrder": 2391, "time": 0.41993637327677624, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2390, + "noteOrder": 2391, "time": 0.41993637327677624, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2438, - "time": 0.4284199363732768, + "noteOrder": 2439, + "time": 0.42841993637327674, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2462, - "time": 0.432661717921527, + "noteOrder": 2463, + "time": 0.4326617179215271, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2486, + "noteOrder": 2487, "time": 0.4369034994697773, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2535, - "time": 0.44538706256627786, + "noteOrder": 2536, + "time": 0.4453870625662778, "position": { "x": 5, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.4496288441145281, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2583, + "noteOrder": 2584, "time": 0.45387062566277836, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2704, - "time": 0.4750795334040297, + "noteOrder": 2705, + "time": 0.47507953340402964, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.47932131495228, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2752, + "noteOrder": 2753, "time": 0.4835630965005302, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2777, "time": 0.4878048780487805, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2824, + "noteOrder": 2825, "time": 0.49628844114528103, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2850, "time": 0.5005302226935313, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2873, - "time": 0.5047720042417816, + "noteOrder": 2874, + "time": 0.5047720042417815, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2921, + "noteOrder": 2922, "time": 0.513255567338282, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2945, + "noteOrder": 2946, "time": 0.5174973488865323, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2969, + "noteOrder": 2970, "time": 0.5217391304347826, "position": { "x": 5, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3090, + "noteOrder": 3091, "time": 0.5429480381760339, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3114, + "noteOrder": 3115, "time": 0.5471898197242842, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3138, + "noteOrder": 3139, "time": 0.5514316012725344, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3162, + "noteOrder": 3164, "time": 0.5556733828207847, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3283, + "noteOrder": 3284, "time": 0.576882290562036, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3308, "time": 0.5811240721102863, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3331, + "noteOrder": 3333, "time": 0.5853658536585366, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3331, + "noteOrder": 3333, "time": 0.5853658536585366, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3476, + "noteOrder": 3477, "time": 0.6108165429480381, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3500, + "noteOrder": 3502, "time": 0.6150583244962884, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3526, "time": 0.6193001060445387, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3526, "time": 0.6193001060445387, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3621, - "time": 0.6362672322375397, + "noteOrder": 3622, + "time": 0.6362672322375398, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3647, "time": 0.64050901378579, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3717, - "time": 0.6532343584305408, + "noteOrder": 3719, + "time": 0.6532343584305409, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3742, + "noteOrder": 3743, "time": 0.6574761399787911, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3766, - "time": 0.6617179215270412, + "noteOrder": 3767, + "time": 0.6617179215270413, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3790, - "time": 0.6659597030752915, + "noteOrder": 3791, + "time": 0.6659597030752916, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3814, - "time": 0.6702014846235418, + "noteOrder": 3816, + "time": 0.6702014846235419, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3838, + "noteOrder": 3840, "time": 0.6744432661717921, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3862, + "noteOrder": 3864, "time": 0.6786850477200423, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3886, - "time": 0.6829268292682926, + "noteOrder": 3888, + "time": 0.6829268292682927, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3911, - "time": 0.6871686108165429, + "noteOrder": 3912, + "time": 0.687168610816543, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3911, - "time": 0.6871686108165429, + "noteOrder": 3912, + "time": 0.687168610816543, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4152, - "time": 0.7295864262990455, + "noteOrder": 4154, + "time": 0.7295864262990456, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4176, - "time": 0.7338282078472957, + "noteOrder": 4178, + "time": 0.7338282078472959, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4202, "time": 0.738069989395546, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4226, "time": 0.7423117709437963, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4226, "time": 0.7423117709437963, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4249, - "time": 0.7465535524920466, + "noteOrder": 4250, + "time": 0.7465535524920467, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4273, - "time": 0.7507953340402969, + "noteOrder": 4274, + "time": 0.750795334040297, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 4299, "time": 0.7550371155885471, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4323, "time": 0.7592788971367974, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4323, "time": 0.7592788971367974, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.7974549310710498, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4562, - "time": 0.8016967126193001, + "noteOrder": 4564, + "time": 0.8016967126193, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4586, + "noteOrder": 4588, "time": 0.8059384941675504, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.8101802757158006, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.8101802757158006, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.8144220572640509, "position": { "x": 3, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.8186638388123012, + "noteOrder": 4661, + "time": 0.8186638388123011, "position": { "x": 5, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4683, - "time": 0.8229056203605515, + "noteOrder": 4685, + "time": 0.8229056203605514, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.8271474019088018, + "noteOrder": 4709, + "time": 0.8271474019088016, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.8271474019088018, + "noteOrder": 4709, + "time": 0.8271474019088016, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4828, + "noteOrder": 4830, "time": 0.848356309650053, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4852, - "time": 0.8525980911983033, + "noteOrder": 4854, + "time": 0.8525980911983032, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4876, - "time": 0.8568398727465536, + "noteOrder": 4878, + "time": 0.8568398727465535, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4876, - "time": 0.8568398727465536, + "noteOrder": 4878, + "time": 0.8568398727465535, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.8610816542948039, + "noteOrder": 4902, + "time": 0.8610816542948038, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.8610816542948039, + "noteOrder": 4902, + "time": 0.8610816542948038, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5021, - "time": 0.8822905620360552, + "noteOrder": 5023, + "time": 0.882290562036055, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.8865323435843054, + "noteOrder": 5047, + "time": 0.8865323435843053, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.8907741251325557, + "noteOrder": 5071, + "time": 0.8907741251325556, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.895015906680806, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5214, - "time": 0.9162248144220573, + "noteOrder": 5216, + "time": 0.9162248144220572, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5238, - "time": 0.9204665959703076, + "noteOrder": 5240, + "time": 0.9204665959703074, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5262, + "noteOrder": 5265, "time": 0.9247083775185578, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5262, + "noteOrder": 5265, "time": 0.9247083775185578, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.9289501590668081, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.9289501590668081, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.9374337221633086, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.9459172852598091, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.9501590668080594, + "noteOrder": 5409, + "time": 0.9501590668080593, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.9544008483563097, + "noteOrder": 5434, + "time": 0.9544008483563096, "position": { "x": 7, "y": 0 @@ -2576,7 +2576,7 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, "time": 0.0848356309650053, @@ -2599,10 +2599,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, - "time": 0.09331919406150582, + "time": 0.09331919406150584, "position": { "x": 3, "y": 0 @@ -2622,9 +2622,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 579, + "noteOrder": 580, "time": 0.10180275715800637, "position": { "x": 7, @@ -2645,10 +2645,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 628, - "time": 0.1102863202545069, + "time": 0.11028632025450688, "position": { "x": 7, "y": 0 @@ -2668,10 +2668,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 676, - "time": 0.11876988335100742, + "time": 0.11876988335100741, "position": { "x": 3, "y": 0 @@ -2691,10 +2691,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 724, - "time": 0.12725344644750794, + "time": 0.12725344644750797, "position": { "x": 3, "y": 0 @@ -2714,9 +2714,9 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 772, + "noteOrder": 773, "time": 0.13573700954400847, "position": { "x": 7, @@ -2737,7 +2737,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 821, "time": 0.144220572640509, @@ -2760,7 +2760,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, "time": 0.15270413573700953, @@ -2783,10 +2783,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 893, - "time": 0.15694591728525978, + "noteOrder": 894, + "time": 0.1569459172852598, "position": { "x": 3, "y": 0 @@ -2806,9 +2806,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 917, + "noteOrder": 918, "time": 0.16118769883351006, "position": { "x": 7, @@ -2829,10 +2829,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 941, - "time": 0.1654294803817603, + "noteOrder": 942, + "time": 0.16542948038176034, "position": { "x": 7, "y": 0 @@ -2852,10 +2852,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1062, - "time": 0.18663838812301164, + "noteOrder": 1063, + "time": 0.18663838812301167, "position": { "x": 7, "y": 0 @@ -2875,10 +2875,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1086, - "time": 0.1908801696712619, + "noteOrder": 1087, + "time": 0.19088016967126192, "position": { "x": 7, "y": 0 @@ -2898,9 +2898,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1110, + "noteOrder": 1111, "time": 0.1951219512195122, "position": { "x": 3, @@ -2921,7 +2921,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1135, "time": 0.19936373276776245, @@ -2944,10 +2944,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1255, - "time": 0.2205726405090138, + "noteOrder": 1256, + "time": 0.22057264050901376, "position": { "x": 7, "y": 0 @@ -2967,7 +2967,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1328, "time": 0.23329798515376457, @@ -2990,10 +2990,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1352, - "time": 0.23753976670201485, + "time": 0.23753976670201482, "position": { "x": 3, "y": 0 @@ -3013,9 +3013,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1424, + "noteOrder": 1425, "time": 0.25026511134676566, "position": { "x": 3, @@ -3036,10 +3036,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1448, - "time": 0.2545068928950159, + "noteOrder": 1449, + "time": 0.25450689289501593, "position": { "x": 7, "y": 0 @@ -3059,9 +3059,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1472, + "noteOrder": 1473, "time": 0.25874867444326616, "position": { "x": 7, @@ -3082,7 +3082,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1497, "time": 0.26299045599151644, @@ -3105,10 +3105,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1521, - "time": 0.2672322375397667, + "time": 0.26723223753976666, "position": { "x": 3, "y": 0 @@ -3128,9 +3128,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, + "noteOrder": 1642, "time": 0.288441145281018, "position": { "x": 7, @@ -3150,11 +3150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1690, - "time": 0.2969247083775185, + "noteOrder": 1666, + "time": 0.2926829268292683, "position": { "x": 7, "y": 0 @@ -3168,18 +3168,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1738, - "time": 0.30540827147401906, + "noteOrder": 1666, + "time": 0.2926829268292683, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3196,13 +3196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1786, - "time": 0.31389183457051956, + "noteOrder": 1690, + "time": 0.29692470837751855, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3214,18 +3214,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1835, - "time": 0.3223753976670201, + "noteOrder": 1690, + "time": 0.29692470837751855, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3242,11 +3242,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1883, - "time": 0.3308589607635206, + "noteOrder": 1690, + "time": 0.29692470837751855, "position": { "x": 7, "y": 0 @@ -3260,18 +3260,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2028, - "time": 0.35630965005302223, + "noteOrder": 1715, + "time": 0.30116648992576883, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3288,13 +3288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2076, - "time": 0.36479321314952273, + "noteOrder": 1715, + "time": 0.30116648992576883, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3306,18 +3306,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2124, - "time": 0.3732767762460233, + "noteOrder": 1739, + "time": 0.30540827147401906, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3334,13 +3334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2173, - "time": 0.3817603393425238, + "noteOrder": 1739, + "time": 0.30540827147401906, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3352,18 +3352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2221, - "time": 0.3902439024390244, + "noteOrder": 1739, + "time": 0.30540827147401906, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3375,18 +3375,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2269, - "time": 0.3987274655355249, + "noteOrder": 1763, + "time": 0.30965005302226933, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3398,18 +3398,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2414, - "time": 0.4241781548250265, + "noteOrder": 1763, + "time": 0.30965005302226933, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3426,13 +3426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2510, - "time": 0.4411452810180276, + "noteOrder": 1787, + "time": 0.3138918345705196, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3449,13 +3449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2510, - "time": 0.4411452810180276, + "noteOrder": 1787, + "time": 0.3138918345705196, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3467,18 +3467,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 2607, - "time": 0.45811240721102864, + "noteOrder": 1787, + "time": 0.3138918345705196, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3495,11 +3495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2607, - "time": 0.45811240721102864, + "noteOrder": 1811, + "time": 0.3181336161187699, "position": { "x": 7, "y": 0 @@ -3513,16 +3513,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2631, - "time": 0.4623541887592789, + "noteOrder": 1811, + "time": 0.3181336161187699, "position": { "x": 6, "y": 0 @@ -3536,18 +3536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2631, - "time": 0.4623541887592789, + "noteOrder": 1835, + "time": 0.3223753976670201, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3564,13 +3564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2655, - "time": 0.46659597030752914, + "noteOrder": 1835, + "time": 0.3223753976670201, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3587,11 +3587,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2655, - "time": 0.46659597030752914, + "noteOrder": 1835, + "time": 0.3223753976670201, "position": { "x": 7, "y": 0 @@ -3610,13 +3610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2679, - "time": 0.4708377518557794, + "noteOrder": 1884, + "time": 0.33085896076352067, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3633,11 +3633,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2679, - "time": 0.4708377518557794, + "noteOrder": 2029, + "time": 0.3563096500530223, "position": { "x": 3, "y": 0 @@ -3656,13 +3656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2704, - "time": 0.4750795334040297, + "noteOrder": 2053, + "time": 0.3605514316012725, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3679,13 +3679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2800, - "time": 0.49204665959703076, + "noteOrder": 2053, + "time": 0.3605514316012725, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3702,13 +3702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2897, - "time": 0.5090137857900318, + "noteOrder": 2077, + "time": 0.3647932131495228, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3725,13 +3725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2897, - "time": 0.5090137857900318, + "noteOrder": 2077, + "time": 0.3647932131495228, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3743,18 +3743,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2993, - "time": 0.5259809119830329, + "noteOrder": 2077, + "time": 0.3647932131495228, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3771,11 +3771,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2993, - "time": 0.5259809119830329, + "noteOrder": 2101, + "time": 0.369034994697773, "position": { "x": 3, "y": 0 @@ -3789,16 +3789,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3017, - "time": 0.5302226935312832, + "noteOrder": 2101, + "time": 0.369034994697773, "position": { "x": 4, "y": 0 @@ -3812,18 +3812,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3017, - "time": 0.5302226935312832, + "noteOrder": 2125, + "time": 0.37327677624602335, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3840,13 +3840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3042, - "time": 0.5344644750795334, + "noteOrder": 2125, + "time": 0.37327677624602335, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3863,11 +3863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3042, - "time": 0.5344644750795334, + "noteOrder": 2125, + "time": 0.37327677624602335, "position": { "x": 3, "y": 0 @@ -3886,13 +3886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3066, - "time": 0.5387062566277837, + "noteOrder": 2149, + "time": 0.37751855779427357, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3909,13 +3909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3066, - "time": 0.5387062566277837, + "noteOrder": 2149, + "time": 0.37751855779427357, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3927,18 +3927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3090, - "time": 0.5429480381760339, + "noteOrder": 2173, + "time": 0.38176033934252385, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3950,18 +3950,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3186, - "time": 0.5599151643690349, + "noteOrder": 2173, + "time": 0.38176033934252385, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3978,11 +3978,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3211, - "time": 0.5641569459172852, + "noteOrder": 2173, + "time": 0.38176033934252385, "position": { "x": 3, "y": 0 @@ -3996,18 +3996,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3235, - "time": 0.5683987274655354, + "noteOrder": 2198, + "time": 0.38600212089077407, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4024,13 +4024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3259, - "time": 0.5726405090137857, + "noteOrder": 2198, + "time": 0.38600212089077407, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4047,13 +4047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3380, - "time": 0.593849416755037, + "noteOrder": 2222, + "time": 0.3902439024390244, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4070,13 +4070,1784 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3404, - "time": 0.5980911983032873, + "noteOrder": 2222, + "time": 0.3902439024390244, "position": { - "x": 7, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3902439024390244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2270, + "time": 0.3987274655355249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2415, + "time": 0.4241781548250265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2512, + "time": 0.4411452810180275, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2512, + "time": 0.4411452810180275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4581124072110286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4581124072110286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4623541887592789, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4623541887592789, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.46659597030752914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2656, + "time": 0.46659597030752914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4708377518557794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4708377518557794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2705, + "time": 0.47507953340402964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2801, + "time": 0.4920466595970307, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2898, + "time": 0.5090137857900319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2898, + "time": 0.5090137857900319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2995, + "time": 0.5259809119830329, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2995, + "time": 0.5259809119830329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3019, + "time": 0.5302226935312832, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3019, + "time": 0.5302226935312832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5344644750795333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3043, + "time": 0.5344644750795333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3067, + "time": 0.5387062566277837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3067, + "time": 0.5387062566277837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3091, + "time": 0.5429480381760339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3188, + "time": 0.5599151643690349, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3212, + "time": 0.5641569459172853, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3236, + "time": 0.5683987274655355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3260, + "time": 0.5726405090137858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3381, + "time": 0.5938494167550371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5980911983032874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3429, + "time": 0.6023329798515377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3453, + "time": 0.6065747613997879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3574, + "time": 0.6277836691410392, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3647, + "time": 0.64050901378579, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3671, + "time": 0.6447507953340402, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3743, + "time": 0.6574761399787911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6956521739130435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3985, + "time": 0.6998939554612937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3985, + "time": 0.6998939554612937, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4009, + "time": 0.7041357370095439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4033, + "time": 0.7083775185577942, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4033, + "time": 0.7083775185577942, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4057, + "time": 0.7126193001060446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4081, + "time": 0.7168610816542949, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4081, + "time": 0.7168610816542949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4105, + "time": 0.721102863202545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4130, + "time": 0.7253446447507953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4130, + "time": 0.7253446447507953, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4154, + "time": 0.7295864262990456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4154, + "time": 0.7295864262990456, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4347, + "time": 0.7635206786850477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4371, + "time": 0.767762460233298, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4371, + "time": 0.767762460233298, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7720042417815481, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4419, + "time": 0.7762460233297985, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4419, + "time": 0.7762460233297985, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4443, + "time": 0.7804878048780488, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4443, + "time": 0.7804878048780488, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4443, + "time": 0.7804878048780488, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4468, + "time": 0.7847295864262991, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4468, + "time": 0.7847295864262991, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4492, + "time": 0.7889713679745493, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4492, + "time": 0.7889713679745493, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4492, + "time": 0.7889713679745493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4516, + "time": 0.7932131495227995, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4516, + "time": 0.7932131495227995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4540, + "time": 0.7974549310710498, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -4088,18 +5859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3428, - "time": 0.6023329798515376, + "noteOrder": 4540, + "time": 0.7974549310710498, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4116,11 +5887,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 3452, - "time": 0.6065747613997878, + "noteOrder": 4733, + "time": 0.8313891834570519, "position": { "x": 3, "y": 0 @@ -4139,13 +5910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3573, - "time": 0.6277836691410391, + "noteOrder": 4757, + "time": 0.8356309650053022, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4157,18 +5928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3645, - "time": 0.64050901378579, + "noteOrder": 4757, + "time": 0.8356309650053022, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4180,18 +5951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3669, - "time": 0.6447507953340402, + "noteOrder": 4782, + "time": 0.8398727465535525, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4208,13 +5979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3742, - "time": 0.6574761399787911, + "noteOrder": 4782, + "time": 0.8398727465535525, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4231,11 +6002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3959, - "time": 0.6956521739130433, + "noteOrder": 4782, + "time": 0.8398727465535525, "position": { "x": 3, "y": 0 @@ -4249,16 +6020,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4007, - "time": 0.7041357370095439, + "noteOrder": 4806, + "time": 0.8441145281018028, "position": { "x": 3, "y": 0 @@ -4277,13 +6048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4055, - "time": 0.7126193001060445, + "noteOrder": 4806, + "time": 0.8441145281018028, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4295,18 +6066,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4104, - "time": 0.721102863202545, + "noteOrder": 4830, + "time": 0.848356309650053, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4323,13 +6094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4345, - "time": 0.7635206786850476, + "noteOrder": 4830, + "time": 0.848356309650053, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4346,11 +6117,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4393, - "time": 0.7720042417815481, + "noteOrder": 4926, + "time": 0.8653234358430542, "position": { "x": 7, "y": 0 @@ -4364,16 +6135,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4442, - "time": 0.7804878048780488, + "noteOrder": 4951, + "time": 0.8695652173913043, "position": { "x": 7, "y": 0 @@ -4392,13 +6163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4490, - "time": 0.7889713679745494, + "noteOrder": 4951, + "time": 0.8695652173913043, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4410,16 +6181,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4731, - "time": 0.8313891834570519, + "noteOrder": 4975, + "time": 0.8738069989395546, "position": { "x": 3, "y": 0 @@ -4438,11 +6209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4780, - "time": 0.8398727465535525, + "noteOrder": 4999, + "time": 0.8780487804878049, "position": { "x": 3, "y": 0 @@ -4456,16 +6227,62 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4999, + "time": 0.8780487804878049, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5120, + "time": 0.8992576882290562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4924, - "time": 0.865323435843054, + "noteOrder": 5144, + "time": 0.9034994697773064, "position": { "x": 7, "y": 0 @@ -4484,13 +6301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4973, - "time": 0.8738069989395546, + "noteOrder": 5144, + "time": 0.9034994697773064, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4502,18 +6319,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5118, - "time": 0.8992576882290562, + "noteOrder": 5168, + "time": 0.9077412513255567, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5168, + "time": 0.9077412513255567, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4531,9 +6371,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5166, + "noteOrder": 5168, "time": 0.9077412513255567, "position": { "x": 7, @@ -4552,11 +6392,103 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5192, + "time": 0.911983032873807, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5192, + "time": 0.911983032873807, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5216, + "time": 0.9162248144220572, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5216, + "time": 0.9162248144220572, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5311, + "noteOrder": 5313, "time": 0.9331919406150583, "position": { "x": 3, @@ -4577,9 +6509,9 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.9374337221633086, "position": { "x": 3, @@ -4600,9 +6532,9 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5359, + "noteOrder": 5361, "time": 0.9416755037115588, "position": { "x": 7, @@ -4623,9 +6555,9 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.9459172852598091, "position": { "x": 7, @@ -4646,9 +6578,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5455, + "noteOrder": 5458, "time": 0.95864262990456, "position": { "x": 4, @@ -4669,9 +6601,9 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9628844114528102, "position": { "x": 4, @@ -4692,9 +6624,9 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5455, + "noteOrder": 5458, "time": 0.95864262990456, "position": { "x": 6, @@ -4715,9 +6647,9 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9628844114528102, "position": { "x": 6, diff --git a/tracks/Crystal Clear/info.json b/tracks/Crystal Clear/info.json index d3494076..57e13d04 100644 --- a/tracks/Crystal Clear/info.json +++ b/tracks/Crystal Clear/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Crystal Clear", - "SongLength": "124.734694", + "SongLength": "114.782041", "SongAuthorName": "Stessie", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/DANCE ALL NIGHT/317_difficulty_1a.json b/tracks/DANCE ALL NIGHT/317_difficulty_1a.json index dea912a2..6e0208be 100644 --- a/tracks/DANCE ALL NIGHT/317_difficulty_1a.json +++ b/tracks/DANCE ALL NIGHT/317_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.03386641580432737, + "time": 0.03386641580432738, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 264, - "time": 0.04139228598306679, + "time": 0.041392285983066796, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.0451552210724365, "position": { "x": 7, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.04891815616180621, "position": { "x": 3, @@ -334,7 +334,7 @@ }, { "noteOrder": 529, - "time": 0.08278457196613358, + "time": 0.08278457196613359, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 601, - "time": 0.09407337723424272, + "time": 0.09407337723424271, "position": { "x": 4, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 649, - "time": 0.10159924741298214, + "time": 0.10159924741298212, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 697, - "time": 0.10912511759172155, + "time": 0.10912511759172154, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 745, - "time": 0.11665098777046097, + "time": 0.11665098777046096, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 745, - "time": 0.11665098777046097, + "time": 0.11665098777046096, "position": { "x": 3, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 793, - "time": 0.12417685794920039, + "time": 0.12417685794920037, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.1317027281279398, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.1354656632173095, + "noteOrder": 866, + "time": 0.13546566321730952, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.13922859830667922, "position": { "x": 3, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15428033866415805, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.21448730009407338, "position": { "x": 6, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.2182502351834431, + "noteOrder": 1395, + "time": 0.21825023518344308, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.22201317027281278, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2295390404515522, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.23330197554092194, + "noteOrder": 1491, + "time": 0.2333019755409219, "position": { "x": 2, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23706491063029161, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.24459078080903104, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2521166509877705, "position": { "x": 7, @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1707, - "time": 0.2671683913452493, + "time": 0.26716839134524933, "position": { "x": 3, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1755, - "time": 0.27469426152398874, + "time": 0.2746942615239887, "position": { "x": 3, "y": 0 @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1755, - "time": 0.27469426152398874, + "time": 0.2746942615239887, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.29727187206020694, + "noteOrder": 1900, + "time": 0.297271872060207, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.3160865475070555, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3198494825964252, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3236124176857949, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3236124176857949, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.33490122295390407, + "noteOrder": 2140, + "time": 0.334901222953904, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.33490122295390407, + "noteOrder": 2140, + "time": 0.334901222953904, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.33866415804327377, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.33866415804327377, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.34242709313264347, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.34242709313264347, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.34995296331138287, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.35747883349012227, + "noteOrder": 2284, + "time": 0.3574788334901223, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.361241768579492, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.36500470366886173, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.38005644402634053, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.38381937911571024, "position": { "x": 2, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.38758231420507994, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.3951081843838194, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.3988711194731891, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.4026340545625588, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.41015992474129825, + "noteOrder": 2621, + "time": 0.4101599247412982, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.4176857949200376, + "noteOrder": 2669, + "time": 0.41768579492003766, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2692, + "noteOrder": 2693, "time": 0.42144873000940736, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.42521166509877706, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.42897460018814676, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.43273753527751646, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.4365004703668862, + "noteOrder": 2789, + "time": 0.43650047036688616, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4402634054562559, + "noteOrder": 2813, + "time": 0.44026340545625586, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.44402634054562556, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.44402634054562556, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.44778927563499527, + "noteOrder": 2861, + "time": 0.4477892756349953, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.44778927563499527, + "noteOrder": 2861, + "time": 0.4477892756349953, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 2909, "time": 0.4553151458137347, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2934, "time": 0.4590780809031044, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2958, "time": 0.4628410159924741, "position": { "x": 4, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.4703668861712136, + "noteOrder": 3006, + "time": 0.4703668861712135, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.47789275634995293, + "noteOrder": 3054, + "time": 0.477892756349953, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.4816556914393227, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3102, "time": 0.4854186265286924, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.4891815616180621, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.4929444967074318, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3173, - "time": 0.49670743179680155, + "noteOrder": 3174, + "time": 0.4967074317968015, "position": { "x": 7, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5004703668861712, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.504233301975541, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.504233301975541, "position": { "x": 6, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.5079962370649106, + "noteOrder": 3246, + "time": 0.5079962370649107, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.5079962370649106, + "noteOrder": 3246, + "time": 0.5079962370649107, "position": { "x": 3, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3390, "time": 0.5305738476011289, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5343367826904986, + "noteOrder": 3414, + "time": 0.5343367826904987, "position": { "x": 2, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3438, "time": 0.5380997177798683, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3487, "time": 0.5456255879586077, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.5531514581373471, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.568203198494826, + "noteOrder": 3631, + "time": 0.5682031984948259, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.5907808090310441, + "noteOrder": 3775, + "time": 0.5907808090310442, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.5945437441204139, + "noteOrder": 3799, + "time": 0.594543744120414, "position": { "x": 8, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3823, "time": 0.5983066792097836, "position": { "x": 4, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3871, "time": 0.605832549388523, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 3919, "time": 0.6133584195672624, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6284101599247414, "position": { "x": 7, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4088, "time": 0.6396989651928504, "position": { "x": 7, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4110, - "time": 0.6434619002822201, + "noteOrder": 4112, + "time": 0.6434619002822202, "position": { "x": 3, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.6810912511759173, "position": { "x": 4, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4376, "time": 0.6848541862652869, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.6886171213546567, + "noteOrder": 4400, + "time": 0.6886171213546566, "position": { "x": 6, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4448, "time": 0.6961429915333961, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7036688617121354, + "noteOrder": 4496, + "time": 0.7036688617121355, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4521, "time": 0.7074317968015051, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7111947318908749, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7149576669802445, + "noteOrder": 4569, + "time": 0.7149576669802447, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7149576669802445, + "noteOrder": 4569, + "time": 0.7149576669802447, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.7187206020696143, "position": { "x": 3, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.7187206020696143, "position": { "x": 7, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4735, - "time": 0.7412982126058326, + "noteOrder": 4737, + "time": 0.7412982126058325, "position": { "x": 6, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.7450611476952023, "position": { "x": 5, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.748824082784572, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4831, + "noteOrder": 4833, "time": 0.7563499529633114, "position": { "x": 4, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.7638758231420507, + "noteOrder": 4881, + "time": 0.7638758231420508, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.7676387582314205, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 4929, "time": 0.7714016933207902, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.786453433678269, "position": { "x": 4, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5072, + "noteOrder": 5074, "time": 0.7939793038570084, "position": { "x": 6, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5120, + "noteOrder": 5122, "time": 0.801505174035748, "position": { "x": 4, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.8052681091251176, "position": { "x": 6, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5168, - "time": 0.8090310442144873, + "noteOrder": 5170, + "time": 0.8090310442144872, "position": { "x": 4, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.8278457196613358, "position": { "x": 7, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.8316086547507056, "position": { "x": 6, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8353715898400752, + "noteOrder": 5338, + "time": 0.8353715898400753, "position": { "x": 3, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.839134524929445, "position": { "x": 4, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5408, + "noteOrder": 5410, "time": 0.8466603951081844, "position": { "x": 6, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5458, "time": 0.8541862652869238, "position": { "x": 4, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5504, - "time": 0.8617121354656633, + "noteOrder": 5506, + "time": 0.8617121354656632, "position": { "x": 6, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5530, "time": 0.8654750705550329, "position": { "x": 4, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5552, + "noteOrder": 5554, "time": 0.8692380056444027, "position": { "x": 6, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5672, + "noteOrder": 5675, "time": 0.8880526810912511, "position": { "x": 3, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5696, + "noteOrder": 5699, "time": 0.8918156161806209, "position": { "x": 7, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.90310442144873, "position": { "x": 7, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.90310442144873, "position": { "x": 3, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5793, + "noteOrder": 5795, "time": 0.9068673565380997, "position": { "x": 6, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5793, + "noteOrder": 5795, "time": 0.9068673565380997, "position": { "x": 4, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5817, + "noteOrder": 5819, "time": 0.9106302916274694, "position": { "x": 7, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5817, + "noteOrder": 5819, "time": 0.9106302916274694, "position": { "x": 3, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5841, + "noteOrder": 5843, "time": 0.9143932267168391, "position": { "x": 6, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5841, + "noteOrder": 5843, "time": 0.9143932267168391, "position": { "x": 4, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5889, + "noteOrder": 5891, "time": 0.9219190968955786, "position": { "x": 5, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5937, + "noteOrder": 5939, "time": 0.929444967074318, "position": { "x": 4, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5985, + "noteOrder": 5987, "time": 0.9369708372530574, "position": { "x": 5, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6033, - "time": 0.9444967074317967, + "noteOrder": 6035, + "time": 0.9444967074317968, "position": { "x": 6, "y": 0 @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6057, + "noteOrder": 6059, "time": 0.9482596425211665, "position": { "x": 3, @@ -3393,7 +3393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6081, + "noteOrder": 6083, "time": 0.9520225776105362, "position": { "x": 7, @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6105, - "time": 0.9557855126999059, + "noteOrder": 6108, + "time": 0.955785512699906, "position": { "x": 4, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6105, - "time": 0.9557855126999059, + "noteOrder": 6108, + "time": 0.955785512699906, "position": { "x": 6, "y": 0 @@ -3456,7 +3456,7 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.02257761053621825, @@ -3479,7 +3479,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.02634054562558796, @@ -3502,7 +3502,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.02257761053621825, @@ -3525,7 +3525,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.02634054562558796, @@ -3548,7 +3548,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.060206961429915336, @@ -3571,7 +3571,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.06396989651928504, @@ -3594,10 +3594,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, - "time": 0.06773283160865474, + "time": 0.06773283160865476, "position": { "x": 3, "y": 0 @@ -3617,7 +3617,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, "time": 0.07149576669802446, @@ -3640,7 +3640,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.12041392285983067, @@ -3663,10 +3663,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 793, - "time": 0.12417685794920039, + "time": 0.12417685794920037, "position": { "x": 7, "y": 0 @@ -3686,9 +3686,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.1279397930385701, "position": { "x": 3, @@ -3709,9 +3709,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.1317027281279398, "position": { "x": 3, @@ -3732,9 +3732,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.14299153339604892, "position": { "x": 6, @@ -3755,9 +3755,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, + "noteOrder": 938, "time": 0.14675446848541862, "position": { "x": 6, @@ -3778,9 +3778,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.14299153339604892, "position": { "x": 4, @@ -3801,9 +3801,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, + "noteOrder": 938, "time": 0.14675446848541862, "position": { "x": 4, @@ -3824,9 +3824,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.15051740357478832, "position": { "x": 3, @@ -3847,9 +3847,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, + "noteOrder": 986, "time": 0.15428033866415805, "position": { "x": 3, @@ -3870,10 +3870,10 @@ }, { "lineGroupId": 44, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1058, - "time": 0.16556914393226715, + "time": 0.16556914393226718, "position": { "x": 6, "y": 0 @@ -3893,10 +3893,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.16556914393226715, + "time": 0.16556914393226718, "position": { "x": 7, "y": 0 @@ -3916,7 +3916,7 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1082, "time": 0.16933207902163688, @@ -3939,7 +3939,7 @@ }, { "lineGroupId": 48, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1154, "time": 0.180620884289746, @@ -3962,7 +3962,7 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, "time": 0.180620884289746, @@ -3985,7 +3985,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1178, "time": 0.18438381937911572, @@ -4008,10 +4008,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1202, - "time": 0.18814675446848544, + "time": 0.18814675446848542, "position": { "x": 7, "y": 0 @@ -4031,7 +4031,7 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1226, "time": 0.19190968955785512, @@ -4054,7 +4054,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, "time": 0.19567262464722485, @@ -4076,13 +4076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.19943555973659455, + "noteOrder": 1262, + "time": 0.1975540921919097, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4094,18 +4094,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1298, - "time": 0.20319849482596428, + "noteOrder": 1262, + "time": 0.1975540921919097, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4122,11 +4122,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.21072436500470368, + "noteOrder": 1274, + "time": 0.19943555973659455, "position": { "x": 7, "y": 0 @@ -4145,11 +4145,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.21448730009407338, + "noteOrder": 1286, + "time": 0.2013170272812794, "position": { "x": 7, "y": 0 @@ -4168,13 +4168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 2, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1442, - "time": 0.2257761053621825, + "noteOrder": 1286, + "time": 0.2013170272812794, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4191,11 +4191,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2257761053621825, + "noteOrder": 1298, + "time": 0.20319849482596425, "position": { "x": 3, "y": 0 @@ -4214,11 +4214,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.2295390404515522, + "noteOrder": 1310, + "time": 0.2050799623706491, "position": { "x": 3, "y": 0 @@ -4237,13 +4237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 2, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1538, - "time": 0.24082784571966134, + "noteOrder": 1310, + "time": 0.2050799623706491, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4260,13 +4260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1538, - "time": 0.24082784571966134, + "noteOrder": 1322, + "time": 0.20696142991533395, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4278,18 +4278,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1562, - "time": 0.24459078080903104, + "noteOrder": 1322, + "time": 0.20696142991533395, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4301,18 +4301,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.24835371589840077, + "noteOrder": 1347, + "time": 0.21072436500470368, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4324,18 +4324,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1610, - "time": 0.2521166509877705, + "noteOrder": 1371, + "time": 0.21448730009407338, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4347,18 +4347,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.2558795860771402, + "noteOrder": 1443, + "time": 0.2257761053621825, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4375,11 +4375,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1658, - "time": 0.2596425211665099, + "noteOrder": 1443, + "time": 0.2257761053621825, "position": { "x": 3, "y": 0 @@ -4398,13 +4398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.2634054562558796, + "noteOrder": 1467, + "time": 0.2295390404515522, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4416,18 +4416,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.28598306679209784, + "noteOrder": 1539, + "time": 0.24082784571966134, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4439,16 +4439,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 1851, - "time": 0.28974600188146754, + "noteOrder": 1539, + "time": 0.24082784571966134, "position": { "x": 7, "y": 0 @@ -4467,13 +4467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.29350893697083724, + "noteOrder": 1563, + "time": 0.24459078080903104, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4485,16 +4485,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 1899, - "time": 0.29727187206020694, + "noteOrder": 1587, + "time": 0.24835371589840075, "position": { "x": 3, "y": 0 @@ -4513,13 +4513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.30103480714957664, + "noteOrder": 1611, + "time": 0.2521166509877705, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4531,18 +4531,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1947, - "time": 0.3047977422389464, + "noteOrder": 1635, + "time": 0.2558795860771402, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4554,16 +4554,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.3085606773283161, + "noteOrder": 1647, + "time": 0.25776105362182505, "position": { "x": 7, "y": 0 @@ -4582,13 +4582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1995, - "time": 0.3123236124176858, + "noteOrder": 1647, + "time": 0.25776105362182505, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4600,18 +4600,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2091, - "time": 0.3273753527751646, + "noteOrder": 1659, + "time": 0.2596425211665099, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4623,18 +4623,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.3311382878645343, + "noteOrder": 1671, + "time": 0.26152398871119475, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4646,16 +4646,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2091, - "time": 0.3273753527751646, + "noteOrder": 1671, + "time": 0.26152398871119475, "position": { "x": 4, "y": 0 @@ -4674,13 +4674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.3311382878645343, + "noteOrder": 1683, + "time": 0.2634054562558796, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4692,18 +4692,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.34619002822201317, + "noteOrder": 1695, + "time": 0.26528692380056446, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4715,18 +4715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2235, - "time": 0.34995296331138287, + "noteOrder": 1695, + "time": 0.26528692380056446, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4738,18 +4738,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2259, - "time": 0.35371589840075257, + "noteOrder": 1707, + "time": 0.26716839134524933, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4766,11 +4766,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2283, - "time": 0.35747883349012227, + "noteOrder": 1707, + "time": 0.26716839134524933, "position": { "x": 7, "y": 0 @@ -4789,13 +4789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.3762935089369709, - "position": { - "x": 3, + "noteOrder": 1827, + "time": 0.28598306679209784, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4807,16 +4807,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28974600188146754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2428, - "time": 0.38005644402634053, + "noteOrder": 1876, + "time": 0.29350893697083724, "position": { "x": 3, "y": 0 @@ -4835,13 +4858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 85, "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.38758231420507994, + "noteOrder": 1900, + "time": 0.297271872060207, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4858,11 +4881,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.3913452492944497, + "noteOrder": 1924, + "time": 0.30103480714957664, "position": { "x": 7, "y": 0 @@ -4881,11 +4904,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.40639698965192855, + "noteOrder": 1936, + "time": 0.3029162746942615, "position": { "x": 7, "y": 0 @@ -4904,13 +4927,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2596, - "time": 0.40639698965192855, + "noteOrder": 1936, + "time": 0.3029162746942615, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4922,16 +4945,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.41015992474129825, + "noteOrder": 1948, + "time": 0.3047977422389464, "position": { "x": 3, "y": 0 @@ -4950,13 +4973,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2644, - "time": 0.4139228598306679, + "noteOrder": 1960, + "time": 0.3066792097836312, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4968,18 +4991,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2668, - "time": 0.4176857949200376, + "noteOrder": 1960, + "time": 0.3066792097836312, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4991,18 +5014,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.451552210724365, + "noteOrder": 1972, + "time": 0.3085606773283161, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5014,18 +5037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4666039510818439, + "noteOrder": 1984, + "time": 0.3104421448730009, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5037,18 +5060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2980, - "time": 0.4666039510818439, + "noteOrder": 1984, + "time": 0.3104421448730009, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5065,13 +5088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 3004, - "time": 0.4703668861712136, + "noteOrder": 1996, + "time": 0.3123236124176858, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5083,16 +5106,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3029, - "time": 0.47412982126058323, + "noteOrder": 2008, + "time": 0.3142050799623707, "position": { "x": 3, "y": 0 @@ -5111,13 +5134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3053, - "time": 0.47789275634995293, + "noteOrder": 2008, + "time": 0.3142050799623707, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5134,13 +5157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, - "time": 0.5117591721542804, + "noteOrder": 2092, + "time": 0.3273753527751646, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5157,13 +5180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.5192850423330198, + "noteOrder": 2116, + "time": 0.33113828786453436, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5175,18 +5198,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3341, - "time": 0.5230479774223895, + "noteOrder": 2092, + "time": 0.3273753527751646, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5198,18 +5221,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3365, - "time": 0.5268109125117592, + "noteOrder": 2116, + "time": 0.33113828786453436, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5226,11 +5249,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 3389, - "time": 0.5305738476011289, + "noteOrder": 2212, + "time": 0.34619002822201317, "position": { "x": 3, "y": 0 @@ -5249,13 +5272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 104, "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.541862652869238, + "noteOrder": 2236, + "time": 0.34995296331138287, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5272,11 +5295,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.541862652869238, + "noteOrder": 2260, + "time": 0.35371589840075257, "position": { "x": 7, "y": 0 @@ -5295,13 +5318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3485, - "time": 0.5456255879586077, + "noteOrder": 2284, + "time": 0.3574788334901223, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5318,11 +5341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3509, - "time": 0.5493885230479775, + "noteOrder": 2405, + "time": 0.37629350893697083, "position": { "x": 3, "y": 0 @@ -5341,13 +5364,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3533, - "time": 0.5531514581373471, + "noteOrder": 2429, + "time": 0.38005644402634053, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5364,13 +5387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3557, - "time": 0.5569143932267169, + "noteOrder": 2477, + "time": 0.38758231420507994, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5382,18 +5405,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3581, - "time": 0.5606773283160866, + "noteOrder": 2501, + "time": 0.3913452492944497, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5405,16 +5428,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.5644402634054563, + "noteOrder": 2597, + "time": 0.4063969896519285, "position": { "x": 7, "y": 0 @@ -5433,11 +5456,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.5719661335841957, + "noteOrder": 2597, + "time": 0.4063969896519285, "position": { "x": 3, "y": 0 @@ -5456,13 +5479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3702, - "time": 0.5794920037629351, + "noteOrder": 2621, + "time": 0.4101599247412982, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5474,16 +5497,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3726, - "time": 0.5832549388523047, + "noteOrder": 2645, + "time": 0.4139228598306679, "position": { "x": 7, "y": 0 @@ -5497,16 +5520,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.5870178739416745, + "noteOrder": 2669, + "time": 0.41768579492003766, "position": { "x": 7, "y": 0 @@ -5525,13 +5548,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 3774, - "time": 0.5907808090310441, + "noteOrder": 2885, + "time": 0.451552210724365, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5543,18 +5566,2111 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 134, "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.6020696142991533, + "noteOrder": 2982, + "time": 0.4666039510818438, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.4666039510818438, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3006, + "time": 0.4703668861712135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.47412982126058323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3054, + "time": 0.477892756349953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5117591721542804, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5155221072436501, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5155221072436501, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5192850423330198, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5211665098777046, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5211665098777046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5230479774223895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5230479774223895, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5230479774223895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5249294449670744, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5249294449670744, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5268109125117592, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5268109125117592, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5268109125117592, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3390, + "time": 0.5305738476011289, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5418626528692381, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5418626528692381, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3487, + "time": 0.5456255879586077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3511, + "time": 0.5493885230479774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3535, + "time": 0.5531514581373471, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.5569143932267169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3571, + "time": 0.5587958607714018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3571, + "time": 0.5587958607714018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3583, + "time": 0.5606773283160866, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3595, + "time": 0.5625587958607714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3595, + "time": 0.5625587958607714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.5644402634054563, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3619, + "time": 0.566321730950141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3619, + "time": 0.566321730950141, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3631, + "time": 0.5682031984948259, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3631, + "time": 0.5682031984948259, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.5719661335841957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3679, + "time": 0.5757290686735654, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3679, + "time": 0.5757290686735654, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3703, + "time": 0.5794920037629351, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3715, + "time": 0.58137347130762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3715, + "time": 0.58137347130762, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5832549388523047, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5832549388523047, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5832549388523047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3739, + "time": 0.5851364063969896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3739, + "time": 0.5851364063969896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5870178739416745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5870178739416745, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5870178739416745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3775, + "time": 0.5907808090310442, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6020696142991533, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6020696142991533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3871, + "time": 0.605832549388523, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6095954844778928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.6133584195672624, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.6171213546566322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3955, + "time": 0.619002822201317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3955, + "time": 0.619002822201317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6208842897460018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3980, + "time": 0.6227657572906867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3980, + "time": 0.6227657572906867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3992, + "time": 0.6246472248353716, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4004, + "time": 0.6265286923800565, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4004, + "time": 0.6265286923800565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4016, + "time": 0.6284101599247414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4016, + "time": 0.6284101599247414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.6547507055503292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.658513640639699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.6547507055503292, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.658513640639699, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.6622765757290687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4244, + "time": 0.6641580432737535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4244, + "time": 0.6641580432737535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4256, + "time": 0.6660395108184384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4256, + "time": 0.6660395108184384, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4256, + "time": 0.6660395108184384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4268, + "time": 0.6679209783631233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4268, + "time": 0.6679209783631233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4292, + "time": 0.6716839134524929, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4292, + "time": 0.6716839134524929, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4304, + "time": 0.6735653809971778, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4304, + "time": 0.6735653809971778, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4304, + "time": 0.6735653809971778, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4316, + "time": 0.6754468485418627, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4316, + "time": 0.6754468485418627, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5566,16 +7682,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.6020696142991533, + "noteOrder": 4352, + "time": 0.6810912511759173, "position": { "x": 3, "y": 0 @@ -5594,13 +7710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3870, - "time": 0.605832549388523, + "noteOrder": 4424, + "time": 0.6923800564440263, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5617,11 +7733,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.6095954844778928, + "noteOrder": 4424, + "time": 0.6923800564440263, "position": { "x": 7, "y": 0 @@ -5640,13 +7756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3918, - "time": 0.6133584195672624, + "noteOrder": 4448, + "time": 0.6961429915333961, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5663,11 +7779,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3942, - "time": 0.6171213546566322, + "noteOrder": 4472, + "time": 0.6999059266227657, "position": { "x": 3, "y": 0 @@ -5686,13 +7802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3966, - "time": 0.620884289746002, + "noteOrder": 4496, + "time": 0.7036688617121355, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5704,18 +7820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6246472248353716, + "noteOrder": 4617, + "time": 0.722483537158984, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5727,18 +7843,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4182, - "time": 0.6547507055503292, + "noteOrder": 4629, + "time": 0.7243650047036688, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5755,11 +7871,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4206, - "time": 0.658513640639699, + "noteOrder": 4629, + "time": 0.7243650047036688, "position": { "x": 6, "y": 0 @@ -5778,13 +7894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4182, - "time": 0.6547507055503292, + "noteOrder": 4641, + "time": 0.7262464722483537, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5796,18 +7912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4206, - "time": 0.658513640639699, + "noteOrder": 4641, + "time": 0.7262464722483537, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5819,18 +7935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4230, - "time": 0.6622765757290686, + "noteOrder": 4641, + "time": 0.7262464722483537, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5847,13 +7963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4254, - "time": 0.6660395108184384, + "noteOrder": 4653, + "time": 0.7281279397930386, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5865,18 +7981,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4278, - "time": 0.6698024459078081, + "noteOrder": 4653, + "time": 0.7281279397930386, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5893,13 +8009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4302, - "time": 0.6735653809971778, + "noteOrder": 4665, + "time": 0.7300094073377235, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5911,18 +8027,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4326, - "time": 0.6773283160865475, + "noteOrder": 4665, + "time": 0.7300094073377235, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5939,13 +8055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 4350, - "time": 0.6810912511759173, + "noteOrder": 4665, + "time": 0.7300094073377235, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5957,18 +8073,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 209, "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.6923800564440263, + "noteOrder": 4677, + "time": 0.7318908748824083, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5980,18 +8096,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.6923800564440263, + "noteOrder": 4677, + "time": 0.7318908748824083, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6008,13 +8124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4447, - "time": 0.6961429915333961, + "noteOrder": 4689, + "time": 0.7337723424270931, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6031,13 +8147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4471, - "time": 0.6999059266227657, + "noteOrder": 4689, + "time": 0.7337723424270931, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6049,18 +8165,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 4495, - "time": 0.7036688617121354, + "noteOrder": 4689, + "time": 0.7337723424270931, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6077,11 +8193,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4615, - "time": 0.722483537158984, + "noteOrder": 4701, + "time": 0.735653809971778, "position": { "x": 7, "y": 0 @@ -6095,18 +8211,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4639, - "time": 0.7262464722483537, + "noteOrder": 4701, + "time": 0.735653809971778, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6123,13 +8239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4663, - "time": 0.7300094073377235, + "noteOrder": 4713, + "time": 0.7375352775164629, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6141,18 +8257,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4687, - "time": 0.7337723424270931, + "noteOrder": 4713, + "time": 0.7375352775164629, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6170,9 +8286,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4711, + "noteOrder": 4713, "time": 0.7375352775164629, "position": { "x": 7, @@ -6193,10 +8309,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4735, - "time": 0.7412982126058326, + "noteOrder": 4737, + "time": 0.7412982126058325, "position": { "x": 7, "y": 0 @@ -6216,10 +8332,10 @@ }, { "lineGroupId": 211, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4807, - "time": 0.7525870178739418, + "noteOrder": 4809, + "time": 0.7525870178739417, "position": { "x": 4, "y": 0 @@ -6239,10 +8355,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.7525870178739418, + "noteOrder": 4809, + "time": 0.7525870178739417, "position": { "x": 3, "y": 0 @@ -6262,9 +8378,9 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4831, + "noteOrder": 4833, "time": 0.7563499529633114, "position": { "x": 3, @@ -6285,9 +8401,9 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.7601128880526811, "position": { "x": 7, @@ -6308,10 +8424,10 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4879, - "time": 0.7638758231420507, + "noteOrder": 4881, + "time": 0.7638758231420508, "position": { "x": 7, "y": 0 @@ -6331,9 +8447,9 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, + "noteOrder": 4953, "time": 0.7751646284101599, "position": { "x": 6, @@ -6354,9 +8470,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7789275634995296, "position": { "x": 6, @@ -6377,9 +8493,9 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, + "noteOrder": 4953, "time": 0.7751646284101599, "position": { "x": 4, @@ -6400,9 +8516,9 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7789275634995296, "position": { "x": 4, @@ -6423,9 +8539,9 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, + "noteOrder": 5001, "time": 0.7826904985888994, "position": { "x": 3, @@ -6446,9 +8562,9 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.786453433678269, "position": { "x": 3, @@ -6469,9 +8585,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5048, + "noteOrder": 5050, "time": 0.7902163687676388, "position": { "x": 7, @@ -6492,9 +8608,9 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5072, + "noteOrder": 5074, "time": 0.7939793038570084, "position": { "x": 7, @@ -6515,9 +8631,9 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, + "noteOrder": 5098, "time": 0.7977422389463782, "position": { "x": 3, @@ -6538,10 +8654,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5192, - "time": 0.8127939793038571, + "noteOrder": 5194, + "time": 0.812793979303857, "position": { "x": 3, "y": 0 @@ -6561,10 +8677,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.8127939793038571, + "noteOrder": 5194, + "time": 0.812793979303857, "position": { "x": 7, "y": 0 @@ -6584,9 +8700,9 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5204, + "noteOrder": 5206, "time": 0.8146754468485419, "position": { "x": 6, @@ -6607,9 +8723,9 @@ }, { "lineGroupId": 232, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.8165569143932268, "position": { "x": 6, @@ -6630,9 +8746,9 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.8165569143932268, "position": { "x": 3, @@ -6653,9 +8769,9 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5228, + "noteOrder": 5230, "time": 0.8184383819379116, "position": { "x": 4, @@ -6676,10 +8792,10 @@ }, { "lineGroupId": 233, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5240, - "time": 0.8203198494825965, + "noteOrder": 5242, + "time": 0.8203198494825964, "position": { "x": 4, "y": 0 @@ -6699,10 +8815,10 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, - "time": 0.8203198494825965, + "noteOrder": 5242, + "time": 0.8203198494825964, "position": { "x": 7, "y": 0 @@ -6722,9 +8838,9 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5252, + "noteOrder": 5254, "time": 0.8222013170272813, "position": { "x": 6, @@ -6745,10 +8861,10 @@ }, { "lineGroupId": 234, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5264, - "time": 0.824082784571966, + "noteOrder": 5266, + "time": 0.8240827845719662, "position": { "x": 6, "y": 0 @@ -6768,10 +8884,10 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5264, - "time": 0.824082784571966, + "noteOrder": 5266, + "time": 0.8240827845719662, "position": { "x": 3, "y": 0 @@ -6791,10 +8907,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5276, - "time": 0.8259642521166509, + "noteOrder": 5278, + "time": 0.825964252116651, "position": { "x": 4, "y": 0 @@ -6814,9 +8930,9 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.8428974600188147, "position": { "x": 7, @@ -6837,9 +8953,9 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5408, + "noteOrder": 5410, "time": 0.8466603951081844, "position": { "x": 7, @@ -6860,9 +8976,9 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.8504233301975541, "position": { "x": 3, @@ -6883,9 +8999,9 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5456, + "noteOrder": 5458, "time": 0.8541862652869238, "position": { "x": 3, @@ -6906,9 +9022,9 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.8579492003762935, "position": { "x": 7, @@ -6929,10 +9045,10 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5576, - "time": 0.8730009407337724, + "noteOrder": 5579, + "time": 0.8730009407337723, "position": { "x": 7, "y": 0 @@ -6952,10 +9068,10 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5576, - "time": 0.8730009407337724, + "noteOrder": 5579, + "time": 0.8730009407337723, "position": { "x": 3, "y": 0 @@ -6975,9 +9091,9 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5588, + "noteOrder": 5591, "time": 0.8748824082784572, "position": { "x": 4, @@ -6998,9 +9114,9 @@ }, { "lineGroupId": 248, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5600, + "noteOrder": 5603, "time": 0.8767638758231421, "position": { "x": 4, @@ -7021,9 +9137,9 @@ }, { "lineGroupId": 249, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5600, + "noteOrder": 5603, "time": 0.8767638758231421, "position": { "x": 7, @@ -7044,10 +9160,10 @@ }, { "lineGroupId": 249, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5612, - "time": 0.878645343367827, + "noteOrder": 5615, + "time": 0.8786453433678268, "position": { "x": 6, "y": 0 @@ -7067,10 +9183,10 @@ }, { "lineGroupId": 249, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5624, - "time": 0.8805268109125118, + "noteOrder": 5627, + "time": 0.8805268109125117, "position": { "x": 6, "y": 0 @@ -7090,10 +9206,10 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5624, - "time": 0.8805268109125118, + "noteOrder": 5627, + "time": 0.8805268109125117, "position": { "x": 3, "y": 0 @@ -7113,9 +9229,9 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5636, + "noteOrder": 5639, "time": 0.8824082784571966, "position": { "x": 4, @@ -7136,10 +9252,10 @@ }, { "lineGroupId": 250, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5648, - "time": 0.8842897460018814, + "noteOrder": 5651, + "time": 0.8842897460018815, "position": { "x": 4, "y": 0 @@ -7159,10 +9275,10 @@ }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5648, - "time": 0.8842897460018814, + "noteOrder": 5651, + "time": 0.8842897460018815, "position": { "x": 7, "y": 0 @@ -7182,10 +9298,10 @@ }, { "lineGroupId": 251, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5660, - "time": 0.8861712135465662, + "noteOrder": 5663, + "time": 0.8861712135465664, "position": { "x": 6, "y": 0 @@ -7205,10 +9321,10 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5721, - "time": 0.8955785512699905, + "noteOrder": 5723, + "time": 0.8955785512699906, "position": { "x": 6, "y": 0 @@ -7228,9 +9344,9 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.8993414863593603, "position": { "x": 6, @@ -7251,10 +9367,10 @@ }, { "lineGroupId": 255, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5721, - "time": 0.8955785512699905, + "noteOrder": 5723, + "time": 0.8955785512699906, "position": { "x": 4, "y": 0 @@ -7274,9 +9390,9 @@ }, { "lineGroupId": 255, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.8993414863593603, "position": { "x": 4, @@ -7297,9 +9413,9 @@ }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5865, + "noteOrder": 5867, "time": 0.9181561618062088, "position": { "x": 4, @@ -7320,9 +9436,9 @@ }, { "lineGroupId": 265, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5889, + "noteOrder": 5891, "time": 0.9219190968955786, "position": { "x": 4, @@ -7343,9 +9459,9 @@ }, { "lineGroupId": 267, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5913, + "noteOrder": 5915, "time": 0.9256820319849483, "position": { "x": 3, @@ -7366,9 +9482,9 @@ }, { "lineGroupId": 267, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5937, + "noteOrder": 5939, "time": 0.929444967074318, "position": { "x": 3, @@ -7389,10 +9505,10 @@ }, { "lineGroupId": 269, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5961, - "time": 0.9332079021636878, + "noteOrder": 5963, + "time": 0.9332079021636877, "position": { "x": 6, "y": 0 @@ -7412,9 +9528,9 @@ }, { "lineGroupId": 269, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5985, + "noteOrder": 5987, "time": 0.9369708372530574, "position": { "x": 6, @@ -7435,10 +9551,10 @@ }, { "lineGroupId": 271, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6009, - "time": 0.9407337723424272, + "noteOrder": 6011, + "time": 0.940733772342427, "position": { "x": 7, "y": 0 @@ -7458,10 +9574,10 @@ }, { "lineGroupId": 271, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6033, - "time": 0.9444967074317967, + "noteOrder": 6035, + "time": 0.9444967074317968, "position": { "x": 7, "y": 0 diff --git a/tracks/DANCE ALL NIGHT/317_difficulty_1b.json b/tracks/DANCE ALL NIGHT/317_difficulty_1b.json index 19b48646..81d5b2cf 100644 --- a/tracks/DANCE ALL NIGHT/317_difficulty_1b.json +++ b/tracks/DANCE ALL NIGHT/317_difficulty_1b.json @@ -134,7 +134,7 @@ }, { "noteOrder": 433, - "time": 0.06773283160865474, + "time": 0.06773283160865476, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 433, - "time": 0.06773283160865474, + "time": 0.06773283160865476, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 529, - "time": 0.08278457196613358, + "time": 0.08278457196613359, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 529, - "time": 0.08278457196613358, + "time": 0.08278457196613359, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 793, - "time": 0.12417685794920039, + "time": 0.12417685794920037, "position": { "x": 5, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.1354656632173095, + "noteOrder": 866, + "time": 0.13546566321730952, "position": { "x": 3, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.13922859830667922, "position": { "x": 5, @@ -494,7 +494,7 @@ }, { "noteOrder": 1202, - "time": 0.18814675446848544, + "time": 0.18814675446848542, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1298, - "time": 0.20319849482596428, + "time": 0.20319849482596425, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1298, - "time": 0.20319849482596428, + "time": 0.20319849482596425, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.2182502351834431, + "noteOrder": 1395, + "time": 0.21825023518344308, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.22201317027281278, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.23330197554092194, + "noteOrder": 1491, + "time": 0.2333019755409219, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23706491063029161, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.24082784571966134, "position": { "x": 7, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.24459078080903104, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1586, - "time": 0.24835371589840077, + "noteOrder": 1587, + "time": 0.24835371589840075, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2521166509877705, "position": { "x": 4, @@ -814,7 +814,7 @@ }, { "noteOrder": 1707, - "time": 0.2671683913452493, + "time": 0.26716839134524933, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1707, - "time": 0.2671683913452493, + "time": 0.26716839134524933, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.29350893697083724, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.29727187206020694, + "noteOrder": 1900, + "time": 0.297271872060207, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.3160865475070555, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3198494825964252, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3236124176857949, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3236124176857949, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.3273753527751646, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.3273753527751646, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.34242709313264347, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.34242709313264347, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.34619002822201317, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.34995296331138287, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.35371589840075257, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.35747883349012227, + "noteOrder": 2284, + "time": 0.3574788334901223, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.38005644402634053, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.38381937911571024, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.38758231420507994, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.3988711194731891, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.4139228598306679, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.4365004703668862, + "noteOrder": 2789, + "time": 0.43650047036688616, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4402634054562559, + "noteOrder": 2813, + "time": 0.44026340545625586, "position": { "x": 6, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.44402634054562556, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.44778927563499527, + "noteOrder": 2861, + "time": 0.4477892756349953, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2934, "time": 0.4590780809031044, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3030, "time": 0.47412982126058323, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3173, - "time": 0.49670743179680155, + "noteOrder": 3174, + "time": 0.4967074317968015, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5004703668861712, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.504233301975541, "position": { "x": 7, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.5079962370649106, + "noteOrder": 3246, + "time": 0.5079962370649107, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3366, "time": 0.5268109125117592, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3390, "time": 0.5305738476011289, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5343367826904986, + "noteOrder": 3414, + "time": 0.5343367826904987, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3438, "time": 0.5380997177798683, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.541862652869238, + "noteOrder": 3463, + "time": 0.5418626528692381, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3487, "time": 0.5456255879586077, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.5493885230479775, + "noteOrder": 3511, + "time": 0.5493885230479774, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.5531514581373471, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.5569143932267169, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.5569143932267169, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3583, "time": 0.5606773283160866, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3583, "time": 0.5606773283160866, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3607, "time": 0.5644402634054563, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3607, "time": 0.5644402634054563, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.568203198494826, + "noteOrder": 3631, + "time": 0.5682031984948259, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.568203198494826, + "noteOrder": 3631, + "time": 0.5682031984948259, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3751, "time": 0.5870178739416745, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.5907808090310441, + "noteOrder": 3775, + "time": 0.5907808090310442, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.5945437441204139, + "noteOrder": 3799, + "time": 0.594543744120414, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3823, "time": 0.5983066792097836, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3847, "time": 0.6020696142991533, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3871, "time": 0.605832549388523, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 3895, "time": 0.6095954844778928, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 3919, "time": 0.6133584195672624, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3943, "time": 0.6171213546566322, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3943, "time": 0.6171213546566322, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.620884289746002, + "noteOrder": 3967, + "time": 0.6208842897460018, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.620884289746002, + "noteOrder": 3967, + "time": 0.6208842897460018, "position": { "x": 6, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.6246472248353716, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.6246472248353716, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6284101599247414, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6284101599247414, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4423, + "noteOrder": 4424, "time": 0.6923800564440263, "position": { "x": 7, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4448, "time": 0.6961429915333961, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4472, "time": 0.6999059266227657, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7036688617121354, + "noteOrder": 4496, + "time": 0.7036688617121355, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7149576669802445, + "noteOrder": 4569, + "time": 0.7149576669802447, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.7187206020696143, "position": { "x": 6, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4807, - "time": 0.7525870178739418, + "noteOrder": 4809, + "time": 0.7525870178739417, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4831, + "noteOrder": 4833, "time": 0.7563499529633114, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.7601128880526811, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.7638758231420507, + "noteOrder": 4881, + "time": 0.7638758231420508, "position": { "x": 5, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 4953, "time": 0.7751646284101599, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7789275634995296, "position": { "x": 4, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5048, + "noteOrder": 5050, "time": 0.7902163687676388, "position": { "x": 6, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.8052681091251176, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.8278457196613358, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.8316086547507056, "position": { "x": 3, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8353715898400752, + "noteOrder": 5338, + "time": 0.8353715898400753, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8353715898400752, + "noteOrder": 5338, + "time": 0.8353715898400753, "position": { "x": 6, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.839134524929445, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.839134524929445, "position": { "x": 3, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.8504233301975541, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5530, "time": 0.8654750705550329, "position": { "x": 6, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5672, + "noteOrder": 5675, "time": 0.8880526810912511, "position": { "x": 3, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5696, + "noteOrder": 5699, "time": 0.8918156161806209, "position": { "x": 7, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5721, - "time": 0.8955785512699905, + "noteOrder": 5723, + "time": 0.8955785512699906, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5721, - "time": 0.8955785512699905, + "noteOrder": 5723, + "time": 0.8955785512699906, "position": { "x": 6, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.8993414863593603, "position": { "x": 7, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.8993414863593603, "position": { "x": 3, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.90310442144873, "position": { "x": 3, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5793, + "noteOrder": 5795, "time": 0.9068673565380997, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5817, + "noteOrder": 5819, "time": 0.9106302916274694, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5841, + "noteOrder": 5843, "time": 0.9143932267168391, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5865, + "noteOrder": 5867, "time": 0.9181561618062088, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5889, + "noteOrder": 5891, "time": 0.9219190968955786, "position": { "x": 6, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5913, + "noteOrder": 5915, "time": 0.9256820319849483, "position": { "x": 4, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5937, + "noteOrder": 5939, "time": 0.929444967074318, "position": { "x": 3, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5961, - "time": 0.9332079021636878, + "noteOrder": 5963, + "time": 0.9332079021636877, "position": { "x": 3, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5985, + "noteOrder": 5987, "time": 0.9369708372530574, "position": { "x": 4, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6009, - "time": 0.9407337723424272, + "noteOrder": 6011, + "time": 0.940733772342427, "position": { "x": 7, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6033, - "time": 0.9444967074317967, + "noteOrder": 6035, + "time": 0.9444967074317968, "position": { "x": 6, "y": 0 @@ -2956,7 +2956,7 @@ "lineNodes": [ { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.030103480714957668, @@ -2979,7 +2979,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.03762935089369708, @@ -3002,9 +3002,9 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, + "noteOrder": 289, "time": 0.0451552210724365, "position": { "x": 3, @@ -3025,7 +3025,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.05268109125117592, @@ -3048,7 +3048,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.090310442144873, @@ -3071,7 +3071,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, "time": 0.09783631232361242, @@ -3094,7 +3094,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.10536218250235184, @@ -3117,7 +3117,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, "time": 0.11288805268109126, @@ -3140,9 +3140,9 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.1279397930385701, "position": { "x": 3, @@ -3163,9 +3163,9 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.1317027281279398, "position": { "x": 3, @@ -3186,9 +3186,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.14299153339604892, "position": { "x": 7, @@ -3209,9 +3209,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, + "noteOrder": 938, "time": 0.14675446848541862, "position": { "x": 7, @@ -3232,9 +3232,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.15051740357478832, "position": { "x": 3, @@ -3255,7 +3255,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1034, "time": 0.16180620884289745, @@ -3278,10 +3278,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.16556914393226715, + "time": 0.16556914393226718, "position": { "x": 7, "y": 0 @@ -3301,7 +3301,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1130, "time": 0.17685794920037629, @@ -3324,7 +3324,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, "time": 0.19567262464722485, @@ -3347,7 +3347,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1274, "time": 0.19943555973659455, @@ -3370,7 +3370,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, "time": 0.19567262464722485, @@ -3393,7 +3393,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1274, "time": 0.19943555973659455, @@ -3416,9 +3416,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.21072436500470368, "position": { "x": 7, @@ -3439,9 +3439,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.22201317027281278, "position": { "x": 7, @@ -3462,9 +3462,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.2257761053621825, "position": { "x": 3, @@ -3485,9 +3485,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23706491063029161, "position": { "x": 3, @@ -3508,9 +3508,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.2558795860771402, "position": { "x": 3, @@ -3531,9 +3531,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2596425211665099, "position": { "x": 3, @@ -3554,9 +3554,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.2558795860771402, "position": { "x": 7, @@ -3577,9 +3577,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2596425211665099, "position": { "x": 7, @@ -3600,10 +3600,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1755, - "time": 0.27469426152398874, + "time": 0.2746942615239887, "position": { "x": 3, "y": 0 @@ -3623,7 +3623,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1779, "time": 0.27845719661335844, @@ -3646,10 +3646,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1755, - "time": 0.27469426152398874, + "time": 0.2746942615239887, "position": { "x": 7, "y": 0 @@ -3669,7 +3669,7 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1779, "time": 0.27845719661335844, @@ -3692,9 +3692,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.30103480714957664, "position": { "x": 7, @@ -3714,13 +3714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.3085606773283161, + "noteOrder": 1948, + "time": 0.3047977422389464, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3732,18 +3732,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2139, - "time": 0.33490122295390407, + "noteOrder": 1948, + "time": 0.3047977422389464, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3755,16 +3755,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.33866415804327377, + "noteOrder": 1972, + "time": 0.3085606773283161, "position": { "x": 3, "y": 0 @@ -3783,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.33490122295390407, + "noteOrder": 1996, + "time": 0.3123236124176858, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3801,18 +3801,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2163, - "time": 0.33866415804327377, + "noteOrder": 1996, + "time": 0.3123236124176858, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3824,16 +3824,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.361241768579492, + "noteOrder": 2140, + "time": 0.334901222953904, "position": { "x": 3, "y": 0 @@ -3852,34 +3852,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2356, - "time": 0.36876763875823143, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2404, - "time": 0.3762935089369709, + "noteOrder": 2164, + "time": 0.33866415804327377, "position": { "x": 3, "y": 0 @@ -3898,13 +3875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 2476, - "time": 0.38758231420507994, + "noteOrder": 2140, + "time": 0.334901222953904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3916,16 +3893,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.3913452492944497, + "noteOrder": 2164, + "time": 0.33866415804327377, "position": { "x": 7, "y": 0 @@ -3944,13 +3921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.3988711194731891, + "noteOrder": 2308, + "time": 0.361241768579492, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3962,16 +3939,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.40639698965192855, + "noteOrder": 2332, + "time": 0.36500470366886173, "position": { "x": 3, "y": 0 @@ -3990,13 +3967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2644, - "time": 0.4139228598306679, + "noteOrder": 2332, + "time": 0.36500470366886173, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4013,11 +3990,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.42144873000940736, + "noteOrder": 2356, + "time": 0.36876763875823143, "position": { "x": 7, "y": 0 @@ -4036,11 +4013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2716, - "time": 0.42521166509877706, + "noteOrder": 2380, + "time": 0.37253057384760113, "position": { "x": 7, "y": 0 @@ -4059,13 +4036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2740, - "time": 0.42897460018814676, + "noteOrder": 2380, + "time": 0.37253057384760113, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4077,16 +4054,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2764, - "time": 0.43273753527751646, + "noteOrder": 2405, + "time": 0.37629350893697083, "position": { "x": 3, "y": 0 @@ -4105,11 +4082,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.451552210724365, + "noteOrder": 2477, + "time": 0.38758231420507994, "position": { "x": 3, "y": 0 @@ -4128,13 +4105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.4590780809031044, + "noteOrder": 2501, + "time": 0.3913452492944497, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4146,16 +4123,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4666039510818439, + "noteOrder": 2549, + "time": 0.3988711194731891, "position": { "x": 7, "y": 0 @@ -4174,13 +4151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 3029, - "time": 0.47412982126058323, + "noteOrder": 2597, + "time": 0.4063969896519285, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4192,16 +4169,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3077, - "time": 0.4816556914393227, + "noteOrder": 2645, + "time": 0.4139228598306679, "position": { "x": 3, "y": 0 @@ -4220,13 +4197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 3101, - "time": 0.4854186265286924, + "noteOrder": 2693, + "time": 0.42144873000940736, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4238,16 +4215,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3125, - "time": 0.4891815616180621, + "noteOrder": 2717, + "time": 0.42521166509877706, "position": { "x": 7, "y": 0 @@ -4266,13 +4243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 95, "indexInLine": 1, "isSliding": false, - "noteOrder": 3149, - "time": 0.4929444967074318, + "noteOrder": 2741, + "time": 0.42897460018814676, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4284,18 +4261,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3269, - "time": 0.5117591721542804, + "noteOrder": 2765, + "time": 0.43273753527751646, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4307,16 +4284,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.5192850423330198, + "noteOrder": 2885, + "time": 0.451552210724365, "position": { "x": 3, "y": 0 @@ -4335,11 +4312,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3653, - "time": 0.5719661335841957, + "noteOrder": 2934, + "time": 0.4590780809031044, "position": { "x": 3, "y": 0 @@ -4358,11 +4335,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.5794920037629351, + "noteOrder": 2982, + "time": 0.4666039510818438, "position": { "x": 7, "y": 0 @@ -4381,11 +4358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, - "time": 0.6622765757290686, + "noteOrder": 3030, + "time": 0.47412982126058323, "position": { "x": 7, "y": 0 @@ -4404,13 +4381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4278, - "time": 0.6698024459078081, + "noteOrder": 3078, + "time": 0.4816556914393227, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4427,13 +4404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, - "time": 0.6773283160865475, + "noteOrder": 3102, + "time": 0.4854186265286924, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4445,16 +4422,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, - "time": 0.6848541862652869, + "noteOrder": 3126, + "time": 0.4891815616180621, "position": { "x": 7, "y": 0 @@ -4468,16 +4445,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4519, - "time": 0.7074317968015051, + "noteOrder": 3150, + "time": 0.4929444967074318, "position": { "x": 7, "y": 0 @@ -4496,11 +4473,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.7187206020696143, + "noteOrder": 3270, + "time": 0.5117591721542804, "position": { "x": 7, "y": 0 @@ -4519,13 +4496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4615, - "time": 0.722483537158984, + "noteOrder": 3294, + "time": 0.5155221072436501, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4537,18 +4514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4663, - "time": 0.7300094073377235, + "noteOrder": 3294, + "time": 0.5155221072436501, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4565,11 +4542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4711, - "time": 0.7375352775164629, + "noteOrder": 3318, + "time": 0.5192850423330198, "position": { "x": 3, "y": 0 @@ -4587,11 +4564,1046 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5230479774223895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5230479774223895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.5719661335841957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3679, + "time": 0.5757290686735654, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3679, + "time": 0.5757290686735654, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3703, + "time": 0.5794920037629351, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5832549388523047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5832549388523047, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.6622765757290687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4256, + "time": 0.6660395108184384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4256, + "time": 0.6660395108184384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4280, + "time": 0.669802445907808, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4304, + "time": 0.6735653809971778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4304, + "time": 0.6735653809971778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.6773283160865475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4352, + "time": 0.6810912511759173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4352, + "time": 0.6810912511759173, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4376, + "time": 0.6848541862652869, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4376, + "time": 0.6848541862652869, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4376, + "time": 0.6848541862652869, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4400, + "time": 0.6886171213546566, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4400, + "time": 0.6886171213546566, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4424, + "time": 0.6923800564440263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4424, + "time": 0.6923800564440263, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7074317968015051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7187206020696143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4617, + "time": 0.722483537158984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4641, + "time": 0.7262464722483537, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4641, + "time": 0.7262464722483537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7300094073377235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7300094073377235, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7300094073377235, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7337723424270931, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7337723424270931, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4713, + "time": 0.7375352775164629, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4713, + "time": 0.7375352775164629, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.7375352775164629, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7412982126058325, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7412982126058325, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7450611476952023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7450611476952023, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.7450611476952023, "position": { "x": 3, @@ -4610,11 +5622,103 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4785, + "time": 0.748824082784572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4785, + "time": 0.748824082784572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4809, + "time": 0.7525870178739417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4809, + "time": 0.7525870178739417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.7676387582314205, "position": { "x": 3, @@ -4635,9 +5739,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7789275634995296, "position": { "x": 3, @@ -4658,9 +5762,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, + "noteOrder": 5001, "time": 0.7826904985888994, "position": { "x": 7, @@ -4681,9 +5785,9 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5048, + "noteOrder": 5050, "time": 0.7902163687676388, "position": { "x": 7, @@ -4704,9 +5808,9 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, + "noteOrder": 5098, "time": 0.7977422389463782, "position": { "x": 3, @@ -4727,9 +5831,9 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.8052681091251176, "position": { "x": 3, @@ -4750,10 +5854,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.8127939793038571, + "noteOrder": 5194, + "time": 0.812793979303857, "position": { "x": 7, "y": 0 @@ -4773,9 +5877,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.8165569143932268, "position": { "x": 7, @@ -4796,10 +5900,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, - "time": 0.8203198494825965, + "noteOrder": 5242, + "time": 0.8203198494825964, "position": { "x": 3, "y": 0 @@ -4819,10 +5923,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, - "time": 0.824082784571966, + "noteOrder": 5266, + "time": 0.8240827845719662, "position": { "x": 3, "y": 0 @@ -4842,9 +5946,9 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.8428974600188147, "position": { "x": 3, @@ -4865,9 +5969,9 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.8504233301975541, "position": { "x": 3, @@ -4888,9 +5992,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.8579492003762935, "position": { "x": 7, @@ -4911,9 +6015,9 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5528, + "noteOrder": 5530, "time": 0.8654750705550329, "position": { "x": 7, @@ -4934,10 +6038,10 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5576, - "time": 0.8730009407337724, + "noteOrder": 5579, + "time": 0.8730009407337723, "position": { "x": 3, "y": 0 @@ -4957,9 +6061,9 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5600, + "noteOrder": 5603, "time": 0.8767638758231421, "position": { "x": 3, @@ -4980,10 +6084,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5624, - "time": 0.8805268109125118, + "noteOrder": 5627, + "time": 0.8805268109125117, "position": { "x": 7, "y": 0 @@ -5003,10 +6107,10 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5648, - "time": 0.8842897460018814, + "noteOrder": 5651, + "time": 0.8842897460018815, "position": { "x": 7, "y": 0 @@ -5026,9 +6130,9 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6057, + "noteOrder": 6059, "time": 0.9482596425211665, "position": { "x": 3, @@ -5049,9 +6153,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6129, + "noteOrder": 6132, "time": 0.9595484477892756, "position": { "x": 3, @@ -5072,10 +6176,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6105, - "time": 0.9557855126999059, + "noteOrder": 6108, + "time": 0.955785512699906, "position": { "x": 7, "y": 0 @@ -5095,9 +6199,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6129, + "noteOrder": 6132, "time": 0.9595484477892756, "position": { "x": 7, diff --git a/tracks/DANCE ALL NIGHT/info.json b/tracks/DANCE ALL NIGHT/info.json index 14ec1a8e..30fdf219 100644 --- a/tracks/DANCE ALL NIGHT/info.json +++ b/tracks/DANCE ALL NIGHT/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "DANCE ALL NIGHT", - "SongLength": "128.287347", + "SongLength": "118.334694", "SongAuthorName": "Sota Fujimori", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1a.json b/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1a.json index 0ee4d5c8..b1c1af74 100644 --- a/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1a.json +++ b/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1a.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 96, - "time": 0.017939733707077785, + "noteOrder": 97, + "time": 0.017939733707077788, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.02242466713384723, + "time": 0.022424667133847234, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 145, - "time": 0.026909600560616677, + "time": 0.02690960056061668, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 169, - "time": 0.03139453398738612, + "time": 0.031394533987386126, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 193, - "time": 0.03587946741415557, + "time": 0.035879467414155576, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 217, - "time": 0.04036440084092501, + "time": 0.040364400840925026, "position": { "x": 5, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 241, - "time": 0.04484933426769446, + "time": 0.04484933426769447, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 265, - "time": 0.04933426769446391, + "time": 0.04933426769446392, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 289, - "time": 0.053819201121233354, + "noteOrder": 290, + "time": 0.05381920112123336, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 338, - "time": 0.06278906797477224, + "time": 0.06278906797477225, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 386, - "time": 0.07175893482831114, + "time": 0.07175893482831115, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 410, - "time": 0.07624386825508057, + "time": 0.07624386825508059, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 434, - "time": 0.08072880168185002, + "time": 0.08072880168185005, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 555, - "time": 0.10315346881569726, + "time": 0.10315346881569727, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 603, - "time": 0.11212333566923614, + "time": 0.11212333566923616, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 651, + "noteOrder": 652, "time": 0.12109320252277506, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 675, - "time": 0.12557813594954448, + "noteOrder": 676, + "time": 0.1255781359495445, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 699, + "noteOrder": 700, "time": 0.13006306937631396, "position": { "x": 3, @@ -474,7 +474,7 @@ }, { "noteOrder": 748, - "time": 0.13903293622985283, + "time": 0.13903293622985285, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 892, - "time": 0.1659425367904695, + "noteOrder": 893, + "time": 0.16594253679046952, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 965, - "time": 0.17939733707077785, + "time": 0.17939733707077787, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1061, - "time": 0.19733707077785564, + "noteOrder": 1062, + "time": 0.19733707077785567, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.2018220042046251, "position": { "x": 4, @@ -594,7 +594,7 @@ }, { "noteOrder": 1110, - "time": 0.20630693763139452, + "time": 0.20630693763139454, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.22873160476524176, "position": { "x": 5, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1242, - "time": 0.23097407147862647, + "noteOrder": 1243, + "time": 0.2309740714786265, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1278, - "time": 0.23770147161878064, + "noteOrder": 1279, + "time": 0.2377014716187807, "position": { "x": 6, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1351, - "time": 0.25115627189908896, + "time": 0.251156271899089, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1375, - "time": 0.25564120532585843, + "time": 0.2556412053258585, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1447, + "noteOrder": 1448, "time": 0.2690960056061668, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1471, + "noteOrder": 1472, "time": 0.27358093903293623, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1495, - "time": 0.27806587245970565, + "noteOrder": 1496, + "time": 0.2780658724597057, "position": { "x": 3, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1520, - "time": 0.2825508058864751, + "time": 0.28255080588647513, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1532, - "time": 0.2847932725998598, + "time": 0.28479327259985987, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1593, "time": 0.29600560616678345, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1616, - "time": 0.3004905395935529, + "noteOrder": 1617, + "time": 0.30049053959355293, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1664, + "noteOrder": 1665, "time": 0.30946040644709183, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1688, + "noteOrder": 1689, "time": 0.31394533987386125, "position": { "x": 5, @@ -934,7 +934,7 @@ }, { "noteOrder": 1713, - "time": 0.3184302733006307, + "time": 0.31843027330063073, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.32740014015416957, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1785, - "time": 0.331885073580939, + "noteOrder": 1786, + "time": 0.33188507358093905, "position": { "x": 5, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1809, + "noteOrder": 1810, "time": 0.33637000700770847, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.34533987386124737, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1881, - "time": 0.3498248072880168, + "noteOrder": 1882, + "time": 0.34982480728801685, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1905, - "time": 0.3543097407147862, + "noteOrder": 1906, + "time": 0.35430974071478627, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2003, "time": 0.37224947442186407, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.3812193412754029, + "noteOrder": 2051, + "time": 0.38121934127540297, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.38570427470217233, + "noteOrder": 2075, + "time": 0.3857042747021724, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2098, - "time": 0.3901892081289418, + "noteOrder": 2099, + "time": 0.39018920812894187, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.3991590749824807, + "noteOrder": 2148, + "time": 0.39915907498248077, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.4036440084092502, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2195, + "noteOrder": 2196, "time": 0.4081289418360196, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2243, - "time": 0.41709880868955845, + "noteOrder": 2244, + "time": 0.4170988086895585, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.421583742116328, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2291, + "noteOrder": 2292, "time": 0.4260686755430974, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2303, - "time": 0.4283111422564821, + "noteOrder": 2304, + "time": 0.42831114225648215, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.43952347582340573, + "noteOrder": 2365, + "time": 0.4395234758234058, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2388, - "time": 0.44400840925017515, + "noteOrder": 2389, + "time": 0.4440084092501752, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2388, - "time": 0.44400840925017515, + "noteOrder": 2389, + "time": 0.4440084092501752, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 2437, "time": 0.4529782761037141, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2484, - "time": 0.46194814295725295, + "noteOrder": 2485, + "time": 0.461948142957253, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2533, - "time": 0.47091800981079185, + "noteOrder": 2534, + "time": 0.4709180098107919, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2581, - "time": 0.4798878766643308, + "noteOrder": 2582, + "time": 0.47988787666433075, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.48885774351786965, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2653, - "time": 0.49334267694463907, + "noteOrder": 2654, + "time": 0.4933426769446391, "position": { "x": 8, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2678, "time": 0.49782761037140855, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2726, - "time": 0.5067974772249474, + "noteOrder": 2727, + "time": 0.5067974772249475, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2750, - "time": 0.5112824106517169, + "noteOrder": 2751, + "time": 0.511282410651717, "position": { "x": 2, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2775, "time": 0.5157673440784863, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3184, + "noteOrder": 3185, "time": 0.5920112123335669, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3208, + "noteOrder": 3209, "time": 0.5964961457603364, "position": { "x": 4, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3232, - "time": 0.6009810791871057, + "noteOrder": 3233, + "time": 0.6009810791871059, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3258, "time": 0.6054660126138752, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3280, - "time": 0.6099509460406446, + "noteOrder": 3282, + "time": 0.6099509460406447, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3304, - "time": 0.6144358794674141, + "noteOrder": 3306, + "time": 0.6144358794674142, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3330, "time": 0.6189208128941837, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3353, - "time": 0.623405746320953, + "noteOrder": 3354, + "time": 0.6234057463209531, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3377, + "noteOrder": 3378, "time": 0.6278906797477225, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3401, - "time": 0.6323756131744919, + "noteOrder": 3402, + "time": 0.632375613174492, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3425, - "time": 0.6368605466012613, + "noteOrder": 3427, + "time": 0.6368605466012615, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3449, - "time": 0.6413454800280308, + "noteOrder": 3451, + "time": 0.6413454800280309, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.6548002803083391, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3547, "time": 0.6592852137351086, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3547, "time": 0.6592852137351086, "position": { "x": 8, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3642, - "time": 0.6772249474421863, + "noteOrder": 3644, + "time": 0.6772249474421864, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3654, + "noteOrder": 3656, "time": 0.6794674141555711, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3716, "time": 0.6906797477224947, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3739, - "time": 0.6951646811492641, + "noteOrder": 3740, + "time": 0.6951646811492642, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3835, + "noteOrder": 3837, "time": 0.713104414856342, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3847, - "time": 0.7153468815697267, + "noteOrder": 3849, + "time": 0.7153468815697268, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3980, - "time": 0.7400140154169585, + "noteOrder": 3982, + "time": 0.7400140154169587, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.7444989488437281, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4028, + "noteOrder": 4030, "time": 0.7489838822704975, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4052, + "noteOrder": 4054, "time": 0.753468815697267, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4076, + "noteOrder": 4078, "time": 0.7579537491240365, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4173, + "noteOrder": 4175, "time": 0.7758934828311143, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4197, - "time": 0.7803784162578836, + "noteOrder": 4199, + "time": 0.7803784162578837, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4221, - "time": 0.7848633496846531, + "noteOrder": 4223, + "time": 0.7848633496846532, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4245, - "time": 0.7893482831114226, + "noteOrder": 4247, + "time": 0.7893482831114227, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4269, - "time": 0.7938332165381919, + "noteOrder": 4271, + "time": 0.793833216538192, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4343, "time": 0.8072880168185004, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.8117729502452697, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8162578836720392, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.818500350385424, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4414, + "noteOrder": 4416, "time": 0.8207428170988087, "position": { "x": 7, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4462, + "noteOrder": 4464, "time": 0.8297126839523475, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4535, + "noteOrder": 4537, "time": 0.843167484232656, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4559, - "time": 0.8476524176594253, + "noteOrder": 4561, + "time": 0.8476524176594255, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4631, - "time": 0.8611072179397337, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { "x": 4, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4655, - "time": 0.865592151366503, + "noteOrder": 4657, + "time": 0.8655921513665032, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4679, - "time": 0.8700770847932726, + "noteOrder": 4681, + "time": 0.8700770847932727, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4703, + "noteOrder": 4705, "time": 0.8745620182200421, "position": { "x": 7, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4716, - "time": 0.8768044849334267, + "noteOrder": 4717, + "time": 0.8768044849334269, "position": { "x": 5, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 4802, "time": 0.8925017519271198, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4812, + "noteOrder": 4814, "time": 0.8947442186405046, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4850, "time": 0.9014716187806587, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.914926419060967, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4945, - "time": 0.9194113524877364, + "noteOrder": 4947, + "time": 0.9194113524877365, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5017, + "noteOrder": 5019, "time": 0.9328661527680449, "position": { "x": 6, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5041, + "noteOrder": 5043, "time": 0.9373510861948143, "position": { "x": 4, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5065, - "time": 0.9418360196215837, + "noteOrder": 5067, + "time": 0.9418360196215838, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5089, - "time": 0.9463209530483532, + "noteOrder": 5092, + "time": 0.9463209530483533, "position": { "x": 3, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5104, "time": 0.948563419761738, "position": { "x": 5, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5162, - "time": 0.9597757533286616, + "noteOrder": 5164, + "time": 0.9597757533286615, "position": { "x": 7, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5186, + "noteOrder": 5188, "time": 0.964260686755431, "position": { "x": 4, @@ -2696,10 +2696,10 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, - "time": 0.08969866853538892, + "noteOrder": 483, + "time": 0.08969866853538894, "position": { "x": 7, "y": 0 @@ -2719,10 +2719,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, - "time": 0.09866853538892782, + "time": 0.09866853538892784, "position": { "x": 7, "y": 0 @@ -2742,10 +2742,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 531, - "time": 0.09866853538892782, + "time": 0.09866853538892784, "position": { "x": 3, "y": 0 @@ -2765,10 +2765,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, - "time": 0.10763840224246671, + "time": 0.10763840224246672, "position": { "x": 3, "y": 0 @@ -2788,10 +2788,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, - "time": 0.10763840224246671, + "time": 0.10763840224246672, "position": { "x": 7, "y": 0 @@ -2811,7 +2811,7 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 627, "time": 0.1166082690960056, @@ -2834,7 +2834,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 627, "time": 0.1166082690960056, @@ -2857,10 +2857,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 675, - "time": 0.12557813594954448, + "noteOrder": 676, + "time": 0.1255781359495445, "position": { "x": 3, "y": 0 @@ -2880,10 +2880,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, - "time": 0.14351786965662228, + "time": 0.1435178696566223, "position": { "x": 7, "y": 0 @@ -2902,13 +2902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 796, - "time": 0.14800280308339173, + "noteOrder": 784, + "time": 0.145760336370007, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2920,18 +2920,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 917, - "time": 0.17042747021723897, + "noteOrder": 784, + "time": 0.145760336370007, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2948,13 +2948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 941, - "time": 0.1749124036440084, + "noteOrder": 796, + "time": 0.14800280308339173, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2971,13 +2971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1013, - "time": 0.18836720392431675, + "noteOrder": 808, + "time": 0.15024526979677646, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2989,18 +2989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1037, - "time": 0.19285213735108617, + "noteOrder": 808, + "time": 0.15024526979677646, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3017,13 +3017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1158, - "time": 0.21527680448493342, + "noteOrder": 917, + "time": 0.17042747021723897, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3035,18 +3035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1182, - "time": 0.21976173791170286, + "noteOrder": 929, + "time": 0.17266993693062369, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3063,13 +3063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1206, - "time": 0.2242466713384723, + "noteOrder": 929, + "time": 0.17266993693062369, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3081,18 +3081,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1302, - "time": 0.2421864050455501, + "noteOrder": 941, + "time": 0.17491240364400842, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3104,18 +3104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1327, - "time": 0.24667133847231953, + "noteOrder": 941, + "time": 0.17491240364400842, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3132,13 +3132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1399, - "time": 0.2601261387526279, + "noteOrder": 941, + "time": 0.17491240364400842, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3155,13 +3155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1423, - "time": 0.26461107217939733, + "noteOrder": 953, + "time": 0.17715487035739313, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3173,18 +3173,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1544, - "time": 0.28703573931324455, + "noteOrder": 953, + "time": 0.17715487035739313, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3196,16 +3196,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1568, - "time": 0.29152067274001403, + "noteOrder": 965, + "time": 0.17939733707077787, "position": { "x": 5, "y": 0 @@ -3224,13 +3224,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1640, - "time": 0.3049754730203223, + "noteOrder": 965, + "time": 0.17939733707077787, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3242,18 +3242,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1737, - "time": 0.3229152067274001, + "noteOrder": 1013, + "time": 0.18836720392431675, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3270,13 +3270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1737, - "time": 0.3229152067274001, + "noteOrder": 1026, + "time": 0.19060967063770148, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3288,16 +3288,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1833, - "time": 0.34085494043447795, + "noteOrder": 1026, + "time": 0.19060967063770148, "position": { "x": 5, "y": 0 @@ -3311,16 +3311,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1833, - "time": 0.34085494043447795, + "noteOrder": 1038, + "time": 0.1928521373510862, "position": { "x": 5, "y": 0 @@ -3339,13 +3339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1881, - "time": 0.3498248072880168, + "noteOrder": 1038, + "time": 0.1928521373510862, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3362,13 +3362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1930, - "time": 0.3587946741415557, + "noteOrder": 1038, + "time": 0.1928521373510862, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3380,18 +3380,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1954, - "time": 0.36327960756832517, + "noteOrder": 1050, + "time": 0.19509460406447093, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3408,13 +3408,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1978, - "time": 0.3677645409950946, + "noteOrder": 1050, + "time": 0.19509460406447093, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3426,16 +3426,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2026, - "time": 0.3767344078486335, + "noteOrder": 1062, + "time": 0.19733707077785567, "position": { "x": 5, "y": 0 @@ -3454,13 +3454,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2123, - "time": 0.3946741415557113, + "noteOrder": 1062, + "time": 0.19733707077785567, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3477,13 +3477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.3946741415557113, + "noteOrder": 1158, + "time": 0.21527680448493344, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3495,18 +3495,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2219, - "time": 0.41261387526278903, + "noteOrder": 1170, + "time": 0.21751927119831818, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3518,18 +3518,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2219, - "time": 0.41261387526278903, + "noteOrder": 1170, + "time": 0.21751927119831818, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3546,11 +3546,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 2267, - "time": 0.421583742116328, + "noteOrder": 1182, + "time": 0.2197617379117029, "position": { "x": 5, "y": 0 @@ -3564,18 +3564,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2316, - "time": 0.43055360896986683, + "noteOrder": 1194, + "time": 0.2220042046250876, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3587,18 +3587,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2340, - "time": 0.4350385423966363, + "noteOrder": 1194, + "time": 0.2220042046250876, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3615,13 +3615,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2412, - "time": 0.4484933426769446, + "noteOrder": 1207, + "time": 0.22424667133847231, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3638,13 +3638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.4664330763840224, + "noteOrder": 1219, + "time": 0.22648913805185705, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3661,13 +3661,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2509, - "time": 0.4664330763840224, + "noteOrder": 1219, + "time": 0.22648913805185705, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3679,18 +3679,3261 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 2605, - "time": 0.4843728100911002, + "noteOrder": 1303, + "time": 0.2421864050455501, "position": { - "x": 7, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1315, + "time": 0.24442887175893482, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1315, + "time": 0.24442887175893482, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1327, + "time": 0.24667133847231956, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1327, + "time": 0.24667133847231956, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1327, + "time": 0.24667133847231956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1339, + "time": 0.24891380518570427, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1339, + "time": 0.24891380518570427, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1351, + "time": 0.251156271899089, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1351, + "time": 0.251156271899089, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1400, + "time": 0.2601261387526279, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1412, + "time": 0.2623686054660126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1412, + "time": 0.2623686054660126, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1424, + "time": 0.26461107217939733, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1424, + "time": 0.26461107217939733, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1424, + "time": 0.26461107217939733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1436, + "time": 0.26685353889278207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1436, + "time": 0.26685353889278207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1448, + "time": 0.2690960056061668, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1448, + "time": 0.2690960056061668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.2870357393132446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2892782060266293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2892782060266293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1568, + "time": 0.291520672740014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1581, + "time": 0.2937631394533987, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1581, + "time": 0.2937631394533987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1641, + "time": 0.30497547302032235, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3229152067274002, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3229152067274002, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34085494043447795, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34085494043447795, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1882, + "time": 0.34982480728801685, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1930, + "time": 0.35879467414155575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1942, + "time": 0.3610371408549405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1942, + "time": 0.3610371408549405, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1955, + "time": 0.3632796075683252, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1967, + "time": 0.36552207428170985, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1967, + "time": 0.36552207428170985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1979, + "time": 0.3677645409950946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1991, + "time": 0.37000700770847933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1991, + "time": 0.37000700770847933, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2003, + "time": 0.37224947442186407, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2003, + "time": 0.37224947442186407, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2015, + "time": 0.37449194113524875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2015, + "time": 0.37449194113524875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3767344078486335, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2123, + "time": 0.39467414155571134, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2123, + "time": 0.39467414155571134, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4126138752627891, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4126138752627891, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2268, + "time": 0.421583742116328, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2317, + "time": 0.4305536089698669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2329, + "time": 0.4327960756832516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2329, + "time": 0.4327960756832516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2341, + "time": 0.43503854239663636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2353, + "time": 0.43728100911002105, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2353, + "time": 0.43728100911002105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2413, + "time": 0.44849334267694463, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2510, + "time": 0.4664330763840224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2510, + "time": 0.4664330763840224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2606, + "time": 0.4843728100911002, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.4843728100911002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2630, + "time": 0.48885774351786965, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2654, + "time": 0.4933426769446391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2678, + "time": 0.49782761037140855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2703, + "time": 0.502312543798178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2703, + "time": 0.502312543798178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2727, + "time": 0.5067974772249475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2751, + "time": 0.511282410651717, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2775, + "time": 0.5157673440784863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2799, + "time": 0.5202522775052558, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2823, + "time": 0.5247372109320252, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2847, + "time": 0.5292221443587947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2872, + "time": 0.5337070777855641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2896, + "time": 0.5381920112123336, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2920, + "time": 0.5426769446391031, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2944, + "time": 0.5471618780658725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2968, + "time": 0.5516468114926419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2799, + "time": 0.5202522775052558, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2823, + "time": 0.5247372109320252, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2847, + "time": 0.5292221443587947, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2872, + "time": 0.5337070777855641, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2896, + "time": 0.5381920112123336, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2920, + "time": 0.5426769446391031, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2944, + "time": 0.5471618780658725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2968, + "time": 0.5516468114926419, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2992, + "time": 0.5561317449194114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5606166783461808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3040, + "time": 0.5651016117729503, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3065, + "time": 0.5695865451997197, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3089, + "time": 0.5740714786264892, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 3113, + "time": 0.5785564120532586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 3137, + "time": 0.583041345480028, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 16, + "isSliding": false, + "noteOrder": 3161, + "time": 0.5875262789067974, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2992, + "time": 0.5561317449194114, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5606166783461808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3040, + "time": 0.5651016117729503, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3065, + "time": 0.5695865451997197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3089, + "time": 0.5740714786264892, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3113, + "time": 0.5785564120532586, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3137, + "time": 0.583041345480028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3161, + "time": 0.5875262789067974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3475, + "time": 0.6458304134548004, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3487, + "time": 0.6480728801681851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3487, + "time": 0.6480728801681851, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3499, + "time": 0.6503153468815698, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6525578135949545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6525578135949545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6548002803083391, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6548002803083391, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3571, + "time": 0.6637701471618781, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6660126138752628, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6660126138752628, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6682550805886475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6682550805886475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6682550805886475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6704975473020323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6704975473020323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3620, + "time": 0.6727400140154169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3620, + "time": 0.6727400140154169, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3620, + "time": 0.6727400140154169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3632, + "time": 0.6749824807288017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3632, + "time": 0.6749824807288017, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3644, + "time": 0.6772249474421864, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3644, + "time": 0.6772249474421864, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.6817098808689559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3680, + "time": 0.6839523475823406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3680, + "time": 0.6839523475823406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6861948142957254, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6861948142957254, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6861948142957254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.6884372810091101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3704, + "time": 0.6884372810091101, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3716, + "time": 0.6906797477224947, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3716, + "time": 0.6906797477224947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3764, + "time": 0.6996496145760337, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3776, + "time": 0.7018920812894184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3776, + "time": 0.7018920812894184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3788, + "time": 0.7041345480028032, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3788, + "time": 0.7041345480028032, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3788, + "time": 0.7041345480028032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3801, + "time": 0.7063770147161879, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -3707,13 +6950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2605, - "time": 0.4843728100911002, + "noteOrder": 3801, + "time": 0.7063770147161879, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3725,16 +6968,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2629, - "time": 0.48885774351786965, + "noteOrder": 3813, + "time": 0.7086194814295725, "position": { "x": 5, "y": 0 @@ -3748,16 +6991,62 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3813, + "time": 0.7086194814295725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3813, + "time": 0.7086194814295725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 167, "indexInLine": 2, "isSliding": false, - "noteOrder": 2653, - "time": 0.49334267694463907, + "noteOrder": 3825, + "time": 0.7108619481429573, "position": { "x": 6, "y": 0 @@ -3776,11 +7065,34 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 167, "indexInLine": 3, "isSliding": false, - "noteOrder": 2677, - "time": 0.49782761037140855, + "noteOrder": 3825, + "time": 0.7108619481429573, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3837, + "time": 0.713104414856342, "position": { "x": 5, "y": 0 @@ -3799,13 +7111,197 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 4, + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3837, + "time": 0.713104414856342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3861, + "time": 0.7175893482831115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3873, + "time": 0.7198318149964962, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3873, + "time": 0.7198318149964962, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3885, + "time": 0.722074281709881, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3885, + "time": 0.722074281709881, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3885, + "time": 0.722074281709881, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3897, + "time": 0.7243167484232657, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2701, - "time": 0.5023125437981779, + "noteOrder": 3897, + "time": 0.7243167484232657, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3822,13 +7318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2701, - "time": 0.5023125437981779, + "noteOrder": 3909, + "time": 0.7265592151366504, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3840,18 +7336,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2726, - "time": 0.5067974772249474, + "noteOrder": 3909, + "time": 0.7265592151366504, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3863,18 +7359,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 2, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2750, - "time": 0.5112824106517169, + "noteOrder": 3909, + "time": 0.7265592151366504, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3891,13 +7387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 3, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2774, - "time": 0.5157673440784863, + "noteOrder": 3933, + "time": 0.7310441485634197, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3914,13 +7410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 4, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2798, - "time": 0.5202522775052558, + "noteOrder": 3933, + "time": 0.7310441485634197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3932,16 +7428,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 5, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2822, - "time": 0.5247372109320252, + "noteOrder": 3957, + "time": 0.7355290819901892, "position": { "x": 4, "y": 0 @@ -3955,18 +7451,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 6, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2846, - "time": 0.5292221443587947, + "noteOrder": 3957, + "time": 0.7355290819901892, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3983,13 +7479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 7, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2870, - "time": 0.533707077785564, + "noteOrder": 4006, + "time": 0.7444989488437281, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4006,13 +7502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 8, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2894, - "time": 0.5381920112123336, + "noteOrder": 4054, + "time": 0.753468815697267, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4029,13 +7525,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 9, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2919, - "time": 0.542676944639103, + "noteOrder": 4102, + "time": 0.7624386825508059, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4047,16 +7543,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 10, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2943, - "time": 0.5471618780658725, + "noteOrder": 4126, + "time": 0.7669236159775754, "position": { "x": 4, "y": 0 @@ -4070,18 +7566,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 11, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2967, - "time": 0.5516468114926419, + "noteOrder": 4126, + "time": 0.7669236159775754, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4098,13 +7594,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2798, - "time": 0.5202522775052558, + "noteOrder": 4150, + "time": 0.7714085494043448, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4116,18 +7612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 2822, - "time": 0.5247372109320252, + "noteOrder": 4150, + "time": 0.7714085494043448, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4144,11 +7640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 182, "indexInLine": 2, "isSliding": false, - "noteOrder": 2846, - "time": 0.5292221443587947, + "noteOrder": 4199, + "time": 0.7803784162578837, "position": { "x": 5, "y": 0 @@ -4167,13 +7663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 182, "indexInLine": 3, "isSliding": false, - "noteOrder": 2870, - "time": 0.533707077785564, + "noteOrder": 4247, + "time": 0.7893482831114227, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4190,13 +7686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 4, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2894, - "time": 0.5381920112123336, + "noteOrder": 4295, + "time": 0.7983181499649615, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4213,13 +7709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 5, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2919, - "time": 0.542676944639103, + "noteOrder": 4307, + "time": 0.8005606166783462, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4236,13 +7732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 6, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2943, - "time": 0.5471618780658725, + "noteOrder": 4307, + "time": 0.8005606166783462, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4259,13 +7755,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 7, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2967, - "time": 0.5516468114926419, + "noteOrder": 4319, + "time": 0.802803083391731, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4277,18 +7773,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 8, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2991, - "time": 0.5561317449194113, + "noteOrder": 4331, + "time": 0.8050455501051157, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4300,18 +7796,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 9, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3015, - "time": 0.5606166783461808, + "noteOrder": 4331, + "time": 0.8050455501051157, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4323,18 +7819,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 10, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3039, - "time": 0.5651016117729502, + "noteOrder": 4488, + "time": 0.834197617379117, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4351,13 +7847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 11, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3063, - "time": 0.5695865451997196, + "noteOrder": 4500, + "time": 0.8364400840925018, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4374,13 +7870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 12, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3087, - "time": 0.5740714786264891, + "noteOrder": 4500, + "time": 0.8364400840925018, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4397,11 +7893,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 13, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3112, - "time": 0.5785564120532585, + "noteOrder": 4512, + "time": 0.8386825508058865, "position": { "x": 5, "y": 0 @@ -4420,13 +7916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 14, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3136, - "time": 0.5830413454800281, + "noteOrder": 4512, + "time": 0.8386825508058865, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4443,13 +7939,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 15, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3160, - "time": 0.5875262789067975, + "noteOrder": 4512, + "time": 0.8386825508058865, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4461,18 +7957,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2991, - "time": 0.5561317449194113, + "noteOrder": 4524, + "time": 0.8409250175192712, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4489,11 +7985,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3015, - "time": 0.5606166783461808, + "noteOrder": 4524, + "time": 0.8409250175192712, "position": { "x": 5, "y": 0 @@ -4512,11 +8008,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3039, - "time": 0.5651016117729502, + "noteOrder": 4537, + "time": 0.843167484232656, "position": { "x": 5, "y": 0 @@ -4535,11 +8031,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3063, - "time": 0.5695865451997196, + "noteOrder": 4537, + "time": 0.843167484232656, "position": { "x": 7, "y": 0 @@ -4558,13 +8054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 4, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3087, - "time": 0.5740714786264891, + "noteOrder": 4585, + "time": 0.8521373510861948, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4576,18 +8072,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 5, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3112, - "time": 0.5785564120532585, + "noteOrder": 4597, + "time": 0.8543798177995796, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4599,18 +8095,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 6, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3136, - "time": 0.5830413454800281, + "noteOrder": 4597, + "time": 0.8543798177995796, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4622,18 +8118,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 7, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3160, - "time": 0.5875262789067975, + "noteOrder": 4609, + "time": 0.8566222845129643, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4645,18 +8141,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3473, - "time": 0.6458304134548002, + "noteOrder": 4609, + "time": 0.8566222845129643, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4673,13 +8169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3497, - "time": 0.6503153468815698, + "noteOrder": 4609, + "time": 0.8566222845129643, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4696,13 +8192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3570, - "time": 0.663770147161878, + "noteOrder": 4621, + "time": 0.8588647512263491, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4714,18 +8210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3594, - "time": 0.6682550805886475, + "noteOrder": 4621, + "time": 0.8588647512263491, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4742,13 +8238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3618, - "time": 0.6727400140154169, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4760,16 +8256,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3666, - "time": 0.6817098808689559, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { "x": 7, "y": 0 @@ -4788,13 +8284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, - "time": 0.6861948142957253, + "noteOrder": 4730, + "time": 0.8790469516468116, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4806,18 +8302,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3763, - "time": 0.6996496145760336, + "noteOrder": 4742, + "time": 0.8812894183601964, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4829,18 +8325,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3787, - "time": 0.7041345480028031, + "noteOrder": 4742, + "time": 0.8812894183601964, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4857,13 +8353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.7086194814295724, + "noteOrder": 4754, + "time": 0.8835318850735809, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4880,13 +8376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.7175893482831114, + "noteOrder": 4766, + "time": 0.8857743517869656, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4898,18 +8394,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3883, - "time": 0.7220742817098809, + "noteOrder": 4766, + "time": 0.8857743517869656, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4926,13 +8422,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3907, - "time": 0.7265592151366503, + "noteOrder": 4778, + "time": 0.8880168185003504, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4949,13 +8445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3932, - "time": 0.7310441485634197, + "noteOrder": 4790, + "time": 0.8902592852137351, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4972,13 +8468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3932, - "time": 0.7310441485634197, + "noteOrder": 4790, + "time": 0.8902592852137351, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4990,18 +8486,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 215, "indexInLine": 1, "isSliding": false, - "noteOrder": 3956, - "time": 0.7355290819901892, + "noteOrder": 4874, + "time": 0.9059565522074282, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5013,18 +8509,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3956, - "time": 0.7355290819901892, + "noteOrder": 4886, + "time": 0.9081990189208129, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5041,11 +8537,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4004, - "time": 0.7444989488437281, + "noteOrder": 4886, + "time": 0.9081990189208129, "position": { "x": 5, "y": 0 @@ -5064,13 +8560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4052, - "time": 0.753468815697267, + "noteOrder": 4898, + "time": 0.9104414856341977, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5087,11 +8583,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4100, - "time": 0.7624386825508058, + "noteOrder": 4898, + "time": 0.9104414856341977, "position": { "x": 3, "y": 0 @@ -5105,18 +8601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4125, - "time": 0.7669236159775753, + "noteOrder": 4898, + "time": 0.9104414856341977, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5133,13 +8629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4125, - "time": 0.7669236159775753, + "noteOrder": 4911, + "time": 0.9126839523475824, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5151,18 +8647,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4149, - "time": 0.7714085494043447, + "noteOrder": 4911, + "time": 0.9126839523475824, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5174,18 +8670,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4149, - "time": 0.7714085494043447, + "noteOrder": 4923, + "time": 0.914926419060967, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5202,13 +8698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4197, - "time": 0.7803784162578836, + "noteOrder": 4923, + "time": 0.914926419060967, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5225,13 +8721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4245, - "time": 0.7893482831114226, + "noteOrder": 4971, + "time": 0.923896285914506, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5243,18 +8739,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4293, - "time": 0.7983181499649614, + "noteOrder": 4983, + "time": 0.9261387526278907, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5266,18 +8762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4318, - "time": 0.8028030833917308, + "noteOrder": 4983, + "time": 0.9261387526278907, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5294,13 +8790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4486, - "time": 0.8341976173791169, + "noteOrder": 4995, + "time": 0.9283812193412755, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5312,18 +8808,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4510, - "time": 0.8386825508058865, + "noteOrder": 4995, + "time": 0.9283812193412755, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5340,13 +8836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4583, - "time": 0.8521373510861948, + "noteOrder": 4995, + "time": 0.9283812193412755, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5363,13 +8859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4607, - "time": 0.8566222845129642, + "noteOrder": 5007, + "time": 0.9306236860546602, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5381,18 +8877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4728, - "time": 0.8790469516468115, + "noteOrder": 5007, + "time": 0.9306236860546602, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5404,16 +8900,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4752, - "time": 0.8835318850735809, + "noteOrder": 5019, + "time": 0.9328661527680449, "position": { "x": 5, "y": 0 @@ -5432,11 +8928,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4776, - "time": 0.8880168185003503, + "noteOrder": 5019, + "time": 0.9328661527680449, "position": { "x": 3, "y": 0 @@ -5450,18 +8946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4872, - "time": 0.9059565522074282, + "noteOrder": 5116, + "time": 0.9508058864751228, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5473,18 +8969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4896, - "time": 0.9104414856341976, + "noteOrder": 5128, + "time": 0.9530483531885074, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5501,11 +8997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4969, - "time": 0.9238962859145059, + "noteOrder": 5128, + "time": 0.9530483531885074, "position": { "x": 6, "y": 0 @@ -5519,18 +9015,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4993, - "time": 0.9283812193412753, + "noteOrder": 5140, + "time": 0.9552908199018921, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5542,18 +9038,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5113, - "time": 0.9508058864751225, + "noteOrder": 5152, + "time": 0.9575332866152769, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5565,18 +9061,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5138, - "time": 0.955290819901892, + "noteOrder": 5152, + "time": 0.9575332866152769, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { diff --git a/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1b.json b/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1b.json index 84bce1f6..a44ad7a4 100644 --- a/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1b.json +++ b/tracks/DEADLOCK (STARDOM Remix)/333_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 96, - "time": 0.017939733707077785, + "noteOrder": 97, + "time": 0.017939733707077788, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 193, - "time": 0.03587946741415557, + "time": 0.035879467414155576, "position": { "x": 3, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 289, - "time": 0.053819201121233354, + "noteOrder": 290, + "time": 0.05381920112123336, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 386, - "time": 0.07175893482831114, + "time": 0.07175893482831115, "position": { "x": 4, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 482, - "time": 0.08969866853538892, + "noteOrder": 483, + "time": 0.08969866853538894, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 531, - "time": 0.09866853538892782, + "time": 0.09866853538892784, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 579, - "time": 0.10763840224246671, + "time": 0.10763840224246672, "position": { "x": 3, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 675, - "time": 0.12557813594954448, + "noteOrder": 676, + "time": 0.1255781359495445, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 699, + "noteOrder": 700, "time": 0.13006306937631396, "position": { "x": 4, @@ -234,7 +234,7 @@ }, { "noteOrder": 748, - "time": 0.13903293622985283, + "time": 0.13903293622985285, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 772, - "time": 0.14351786965662228, + "time": 0.1435178696566223, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1182, - "time": 0.21976173791170286, + "time": 0.2197617379117029, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.22873160476524176, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.2332165381920112, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1278, - "time": 0.23770147161878064, + "noteOrder": 1279, + "time": 0.2377014716187807, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1568, - "time": 0.29152067274001403, + "time": 0.291520672740014, "position": { "x": 4, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1593, "time": 0.29600560616678345, "position": { "x": 4, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1616, - "time": 0.3004905395935529, + "noteOrder": 1617, + "time": 0.30049053959355293, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1688, + "noteOrder": 1689, "time": 0.31394533987386125, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1785, - "time": 0.331885073580939, + "noteOrder": 1786, + "time": 0.33188507358093905, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1881, - "time": 0.3498248072880168, + "noteOrder": 1882, + "time": 0.34982480728801685, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1905, - "time": 0.3543097407147862, + "noteOrder": 1906, + "time": 0.35430974071478627, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.38570427470217233, + "noteOrder": 2075, + "time": 0.3857042747021724, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.4036440084092502, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.421583742116328, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2291, + "noteOrder": 2292, "time": 0.4260686755430974, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.43952347582340573, + "noteOrder": 2365, + "time": 0.4395234758234058, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2388, - "time": 0.44400840925017515, + "noteOrder": 2389, + "time": 0.4440084092501752, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3377, + "noteOrder": 3378, "time": 0.6278906797477225, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3401, - "time": 0.6323756131744919, + "noteOrder": 3402, + "time": 0.632375613174492, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3425, - "time": 0.6368605466012613, + "noteOrder": 3427, + "time": 0.6368605466012615, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3449, - "time": 0.6413454800280308, + "noteOrder": 3451, + "time": 0.6413454800280309, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3473, - "time": 0.6458304134548002, + "noteOrder": 3475, + "time": 0.6458304134548004, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3497, + "noteOrder": 3499, "time": 0.6503153468815698, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3618, + "noteOrder": 3620, "time": 0.6727400140154169, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3642, - "time": 0.6772249474421863, + "noteOrder": 3644, + "time": 0.6772249474421864, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3811, - "time": 0.7086194814295724, + "noteOrder": 3813, + "time": 0.7086194814295725, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3835, + "noteOrder": 3837, "time": 0.713104414856342, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.7444989488437281, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4028, + "noteOrder": 4030, "time": 0.7489838822704975, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4197, - "time": 0.7803784162578836, + "noteOrder": 4199, + "time": 0.7803784162578837, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4221, - "time": 0.7848633496846531, + "noteOrder": 4223, + "time": 0.7848633496846532, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4245, - "time": 0.7893482831114226, + "noteOrder": 4247, + "time": 0.7893482831114227, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4269, - "time": 0.7938332165381919, + "noteOrder": 4271, + "time": 0.793833216538192, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8162578836720392, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.818500350385424, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4414, + "noteOrder": 4416, "time": 0.8207428170988087, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4754, "time": 0.8835318850735809, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 4802, "time": 0.8925017519271198, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4824, - "time": 0.8969866853538891, + "noteOrder": 4826, + "time": 0.8969866853538893, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4850, "time": 0.9014716187806587, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5162, - "time": 0.9597757533286616, + "noteOrder": 5164, + "time": 0.9597757533286615, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5186, + "noteOrder": 5188, "time": 0.964260686755431, "position": { "x": 6, @@ -1136,10 +1136,1896 @@ "lineNodes": [ { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 869, + "time": 0.1614576033637001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 893, + "time": 0.16594253679046952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 893, + "time": 0.16594253679046952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 917, + "time": 0.17042747021723897, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 917, + "time": 0.17042747021723897, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 917, + "time": 0.17042747021723897, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 941, + "time": 0.17491240364400842, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 941, + "time": 0.17491240364400842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 965, + "time": 0.17939733707077787, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 965, + "time": 0.17939733707077787, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 965, + "time": 0.17939733707077787, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 989, + "time": 0.1838822704975473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 989, + "time": 0.1838822704975473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1013, + "time": 0.18836720392431675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1013, + "time": 0.18836720392431675, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1013, + "time": 0.18836720392431675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1038, + "time": 0.1928521373510862, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1038, + "time": 0.1928521373510862, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1062, + "time": 0.19733707077785567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1062, + "time": 0.19733707077785567, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1062, + "time": 0.19733707077785567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1086, + "time": 0.2018220042046251, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1086, + "time": 0.2018220042046251, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1110, + "time": 0.20630693763139454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1110, + "time": 0.20630693763139454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1110, + "time": 0.20630693763139454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1134, + "time": 0.210791871058164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1134, + "time": 0.210791871058164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1158, + "time": 0.21527680448493344, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1182, + "time": 0.2197617379117029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1207, + "time": 0.22424667133847231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1231, + "time": 0.22873160476524176, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1303, + "time": 0.2421864050455501, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1327, + "time": 0.24667133847231956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1327, + "time": 0.24667133847231956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1351, + "time": 0.251156271899089, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1351, + "time": 0.251156271899089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1351, + "time": 0.251156271899089, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2556412053258585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2556412053258585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1400, + "time": 0.2601261387526279, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1400, + "time": 0.2601261387526279, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1400, + "time": 0.2601261387526279, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1424, + "time": 0.26461107217939733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1424, + "time": 0.26461107217939733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1448, + "time": 0.2690960056061668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1448, + "time": 0.2690960056061668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1448, + "time": 0.2690960056061668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1472, + "time": 0.27358093903293623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1472, + "time": 0.27358093903293623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1496, + "time": 0.2780658724597057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1496, + "time": 0.2780658724597057, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1496, + "time": 0.2780658724597057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1520, + "time": 0.28255080588647513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1520, + "time": 0.28255080588647513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.2870357393132446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1568, + "time": 0.291520672740014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1641, + "time": 0.30497547302032235, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3229152067274002, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3229152067274002, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34085494043447795, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34085494043447795, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1882, + "time": 0.34982480728801685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1930, + "time": 0.35879467414155575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1955, + "time": 0.3632796075683252, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1955, + "time": 0.3632796075683252, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1979, + "time": 0.3677645409950946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2003, + "time": 0.37224947442186407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2003, + "time": 0.37224947442186407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3767344078486335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2123, + "time": 0.39467414155571134, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2123, + "time": 0.39467414155571134, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4126138752627891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4126138752627891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2268, + "time": 0.421583742116328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2317, + "time": 0.4305536089698669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2341, + "time": 0.43503854239663636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2341, + "time": 0.43503854239663636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2413, + "time": 0.44849334267694463, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2510, + "time": 0.4664330763840224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2510, + "time": 0.4664330763840224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2606, + "time": 0.4843728100911002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, - "time": 0.16145760336370005, + "noteOrder": 2606, + "time": 0.4843728100911002, "position": { "x": 7, "y": 0 @@ -1158,11 +3044,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 917, - "time": 0.17042747021723897, + "noteOrder": 2654, + "time": 0.4933426769446391, "position": { "x": 7, "y": 0 @@ -1176,18 +3062,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 965, - "time": 0.17939733707077785, + "noteOrder": 2703, + "time": 0.502312543798178, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1204,13 +3090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1013, - "time": 0.18836720392431675, + "noteOrder": 2703, + "time": 0.502312543798178, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1227,13 +3113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1061, - "time": 0.19733707077785564, + "noteOrder": 2751, + "time": 0.511282410651717, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1245,18 +3131,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1110, - "time": 0.20630693763139452, + "noteOrder": 2799, + "time": 0.5202522775052558, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1273,13 +3159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1158, - "time": 0.21527680448493342, + "noteOrder": 2799, + "time": 0.5202522775052558, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1296,11 +3182,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1182, - "time": 0.21976173791170286, + "noteOrder": 2896, + "time": 0.5381920112123336, "position": { "x": 6, "y": 0 @@ -1319,13 +3205,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1206, - "time": 0.2242466713384723, + "noteOrder": 2847, + "time": 0.5292221443587947, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -1342,13 +3228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1230, - "time": 0.22873160476524176, + "noteOrder": 2896, + "time": 0.5381920112123336, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -1365,13 +3251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.2421864050455501, + "noteOrder": 2992, + "time": 0.5561317449194114, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -1388,11 +3274,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.25115627189908896, + "noteOrder": 2944, + "time": 0.5471618780658725, "position": { "x": 4, "y": 0 @@ -1411,13 +3297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, - "time": 0.2601261387526279, + "noteOrder": 2992, + "time": 0.5561317449194114, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1429,18 +3315,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.2690960056061668, + "noteOrder": 3089, + "time": 0.5740714786264892, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1457,11 +3343,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1495, - "time": 0.27806587245970565, + "noteOrder": 3137, + "time": 0.583041345480028, "position": { "x": 4, "y": 0 @@ -1475,16 +3361,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1544, - "time": 0.28703573931324455, + "noteOrder": 3185, + "time": 0.5920112123335669, "position": { "x": 6, "y": 0 @@ -1503,13 +3389,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 1568, - "time": 0.29152067274001403, + "noteOrder": 3040, + "time": 0.5651016117729503, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -1521,18 +3407,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1640, - "time": 0.3049754730203223, + "noteOrder": 3089, + "time": 0.5740714786264892, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -1549,11 +3435,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1737, - "time": 0.3229152067274001, + "noteOrder": 3185, + "time": 0.5920112123335669, "position": { "x": 5, "y": 0 @@ -1572,13 +3458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1737, - "time": 0.3229152067274001, + "noteOrder": 3571, + "time": 0.6637701471618781, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1590,16 +3476,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1833, - "time": 0.34085494043447795, + "noteOrder": 3620, + "time": 0.6727400140154169, "position": { "x": 4, "y": 0 @@ -1613,18 +3499,41 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.6817098808689559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1833, - "time": 0.34085494043447795, + "noteOrder": 3716, + "time": 0.6906797477224947, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1636,18 +3545,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 1881, - "time": 0.3498248072880168, + "noteOrder": 3716, + "time": 0.6906797477224947, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1664,11 +3573,34 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1930, - "time": 0.3587946741415557, + "noteOrder": 3740, + "time": 0.6951646811492642, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3740, + "time": 0.6951646811492642, "position": { "x": 7, "y": 0 @@ -1687,13 +3619,36 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1978, - "time": 0.3677645409950946, + "noteOrder": 3764, + "time": 0.6996496145760337, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3764, + "time": 0.6996496145760337, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -1710,13 +3665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2026, - "time": 0.3767344078486335, + "noteOrder": 3813, + "time": 0.7086194814295725, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1728,18 +3683,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.3946741415557113, + "noteOrder": 3861, + "time": 0.7175893482831115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3909, + "time": 0.7265592151366504, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1756,11 +3734,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.3946741415557113, + "noteOrder": 3909, + "time": 0.7265592151366504, "position": { "x": 4, "y": 0 @@ -1779,13 +3757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2219, - "time": 0.41261387526278903, + "noteOrder": 3933, + "time": 0.7310441485634197, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1802,11 +3780,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.41261387526278903, + "noteOrder": 3933, + "time": 0.7310441485634197, "position": { "x": 7, "y": 0 @@ -1825,13 +3803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2267, - "time": 0.421583742116328, + "noteOrder": 3957, + "time": 0.7355290819901892, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1848,13 +3826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2316, - "time": 0.43055360896986683, + "noteOrder": 3957, + "time": 0.7355290819901892, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1871,13 +3849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2412, - "time": 0.4484933426769446, + "noteOrder": 4054, + "time": 0.753468815697267, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1889,18 +3867,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 2509, - "time": 0.4664330763840224, + "noteOrder": 4054, + "time": 0.753468815697267, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1917,13 +3895,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.4664330763840224, + "noteOrder": 4102, + "time": 0.7624386825508059, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1935,16 +3913,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 2605, - "time": 0.4843728100911002, + "noteOrder": 4102, + "time": 0.7624386825508059, "position": { "x": 3, "y": 0 @@ -1963,13 +3941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2605, - "time": 0.4843728100911002, + "noteOrder": 4126, + "time": 0.7669236159775754, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1981,18 +3959,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 2653, - "time": 0.49334267694463907, + "noteOrder": 4126, + "time": 0.7669236159775754, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2009,13 +3987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 102, "indexInLine": 2, "isSliding": false, - "noteOrder": 2701, - "time": 0.5023125437981779, + "noteOrder": 4150, + "time": 0.7714085494043448, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2032,11 +4010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2701, - "time": 0.5023125437981779, + "noteOrder": 4150, + "time": 0.7714085494043448, "position": { "x": 3, "y": 0 @@ -2055,13 +4033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2750, - "time": 0.5112824106517169, + "noteOrder": 4247, + "time": 0.7893482831114227, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2078,13 +4056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 2, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2798, - "time": 0.5202522775052558, + "noteOrder": 4295, + "time": 0.7983181499649615, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2096,16 +4074,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2798, - "time": 0.5202522775052558, + "noteOrder": 4319, + "time": 0.802803083391731, "position": { "x": 6, "y": 0 @@ -2124,13 +4102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 109, "indexInLine": 1, "isSliding": false, - "noteOrder": 2894, - "time": 0.5381920112123336, + "noteOrder": 4319, + "time": 0.802803083391731, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2142,18 +4120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2846, - "time": 0.5292221443587947, + "noteOrder": 4343, + "time": 0.8072880168185004, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2170,13 +4148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 2894, - "time": 0.5381920112123336, + "noteOrder": 4343, + "time": 0.8072880168185004, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2188,18 +4166,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 110, "indexInLine": 2, "isSliding": false, - "noteOrder": 2991, - "time": 0.5561317449194113, + "noteOrder": 4368, + "time": 0.8117729502452697, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2211,18 +4189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2943, - "time": 0.5471618780658725, + "noteOrder": 4368, + "time": 0.8117729502452697, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2234,18 +4212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2991, - "time": 0.5561317449194113, + "noteOrder": 4392, + "time": 0.8162578836720392, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2257,18 +4235,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 2, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3087, - "time": 0.5740714786264891, + "noteOrder": 4440, + "time": 0.8252277505255782, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2280,18 +4258,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 3, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3136, - "time": 0.5830413454800281, + "noteOrder": 4464, + "time": 0.8297126839523475, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2303,18 +4281,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 4, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3184, - "time": 0.5920112123335669, + "noteOrder": 4464, + "time": 0.8297126839523475, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2326,18 +4304,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3039, - "time": 0.5651016117729502, + "noteOrder": 4488, + "time": 0.834197617379117, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2354,11 +4332,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3087, - "time": 0.5740714786264891, + "noteOrder": 4488, + "time": 0.834197617379117, "position": { "x": 5, "y": 0 @@ -2377,13 +4355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 2, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.5920112123335669, + "noteOrder": 4488, + "time": 0.834197617379117, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2395,18 +4373,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3570, - "time": 0.663770147161878, + "noteOrder": 4512, + "time": 0.8386825508058865, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2418,16 +4396,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3618, - "time": 0.6727400140154169, + "noteOrder": 4512, + "time": 0.8386825508058865, "position": { "x": 4, "y": 0 @@ -2441,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3666, - "time": 0.6817098808689559, + "noteOrder": 4537, + "time": 0.843167484232656, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2469,13 +4447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3715, - "time": 0.6906797477224947, + "noteOrder": 4537, + "time": 0.843167484232656, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2492,13 +4470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3715, - "time": 0.6906797477224947, + "noteOrder": 4537, + "time": 0.843167484232656, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2515,13 +4493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3739, - "time": 0.6951646811492641, + "noteOrder": 4561, + "time": 0.8476524176594255, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2538,13 +4516,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3739, - "time": 0.6951646811492641, + "noteOrder": 4561, + "time": 0.8476524176594255, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2556,18 +4534,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3763, - "time": 0.6996496145760336, + "noteOrder": 4585, + "time": 0.8521373510861948, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2579,18 +4557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3763, - "time": 0.6996496145760336, + "noteOrder": 4585, + "time": 0.8521373510861948, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2607,11 +4585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.7086194814295724, + "noteOrder": 4585, + "time": 0.8521373510861948, "position": { "x": 3, "y": 0 @@ -2625,18 +4603,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.7175893482831114, + "noteOrder": 4609, + "time": 0.8566222845129643, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2653,13 +4631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3907, - "time": 0.7265592151366503, + "noteOrder": 4609, + "time": 0.8566222845129643, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2676,11 +4654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3907, - "time": 0.7265592151366503, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { "x": 4, "y": 0 @@ -2694,18 +4672,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3932, - "time": 0.7310441485634197, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2717,18 +4695,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3932, - "time": 0.7310441485634197, + "noteOrder": 4633, + "time": 0.8611072179397338, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2740,18 +4718,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3956, - "time": 0.7355290819901892, + "noteOrder": 4657, + "time": 0.8655921513665032, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2763,18 +4741,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3956, - "time": 0.7355290819901892, + "noteOrder": 4657, + "time": 0.8655921513665032, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2791,13 +4769,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4052, - "time": 0.753468815697267, + "noteOrder": 4681, + "time": 0.8700770847932727, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2814,13 +4792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4052, - "time": 0.753468815697267, + "noteOrder": 4681, + "time": 0.8700770847932727, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2832,18 +4810,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 120, "indexInLine": 1, "isSliding": false, - "noteOrder": 4100, - "time": 0.7624386825508058, + "noteOrder": 4681, + "time": 0.8700770847932727, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2860,11 +4838,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4100, - "time": 0.7624386825508058, + "noteOrder": 4705, + "time": 0.8745620182200421, "position": { "x": 3, "y": 0 @@ -2878,16 +4856,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4125, - "time": 0.7669236159775753, + "noteOrder": 4705, + "time": 0.8745620182200421, "position": { "x": 4, "y": 0 @@ -2901,18 +4879,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4125, - "time": 0.7669236159775753, + "noteOrder": 4730, + "time": 0.8790469516468116, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2924,18 +4902,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4149, - "time": 0.7714085494043447, + "noteOrder": 4754, + "time": 0.8835318850735809, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2947,18 +4925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4149, - "time": 0.7714085494043447, + "noteOrder": 4778, + "time": 0.8880168185003504, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2970,18 +4948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4245, - "time": 0.7893482831114226, + "noteOrder": 4802, + "time": 0.8925017519271198, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2993,16 +4971,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4293, - "time": 0.7983181499649614, + "noteOrder": 4874, + "time": 0.9059565522074282, "position": { "x": 7, "y": 0 @@ -3021,13 +4999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.8028030833917308, + "noteOrder": 4898, + "time": 0.9104414856341977, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3044,13 +5022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4318, - "time": 0.8028030833917308, + "noteOrder": 4898, + "time": 0.9104414856341977, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3062,18 +5040,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4342, - "time": 0.8072880168185004, + "noteOrder": 4923, + "time": 0.914926419060967, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3085,18 +5063,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4342, - "time": 0.8072880168185004, + "noteOrder": 4923, + "time": 0.914926419060967, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3113,13 +5091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 4366, - "time": 0.8117729502452697, + "noteOrder": 4923, + "time": 0.914926419060967, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3131,18 +5109,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4366, - "time": 0.8117729502452697, + "noteOrder": 4947, + "time": 0.9194113524877365, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3159,13 +5137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4390, - "time": 0.8162578836720392, + "noteOrder": 4947, + "time": 0.9194113524877365, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3182,13 +5160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4438, - "time": 0.8252277505255781, + "noteOrder": 4971, + "time": 0.923896285914506, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3205,13 +5183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4486, - "time": 0.8341976173791169, + "noteOrder": 4971, + "time": 0.923896285914506, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3223,18 +5201,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, - "time": 0.843167484232656, + "noteOrder": 4971, + "time": 0.923896285914506, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3246,18 +5224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4583, - "time": 0.8521373510861948, + "noteOrder": 4995, + "time": 0.9283812193412755, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3274,13 +5252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4631, - "time": 0.8611072179397337, + "noteOrder": 4995, + "time": 0.9283812193412755, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3292,18 +5270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4679, - "time": 0.8700770847932726, + "noteOrder": 5019, + "time": 0.9328661527680449, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3320,13 +5298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4728, - "time": 0.8790469516468115, + "noteOrder": 5019, + "time": 0.9328661527680449, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3338,18 +5316,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 4752, - "time": 0.8835318850735809, + "noteOrder": 5019, + "time": 0.9328661527680449, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3366,13 +5344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4776, - "time": 0.8880168185003503, + "noteOrder": 5043, + "time": 0.9373510861948143, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3384,16 +5362,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4800, - "time": 0.8925017519271198, + "noteOrder": 5043, + "time": 0.9373510861948143, "position": { "x": 6, "y": 0 @@ -3407,18 +5385,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4872, - "time": 0.9059565522074282, + "noteOrder": 5067, + "time": 0.9418360196215838, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3430,18 +5408,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4921, - "time": 0.914926419060967, + "noteOrder": 5067, + "time": 0.9418360196215838, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3458,11 +5436,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4969, - "time": 0.9238962859145059, + "noteOrder": 5067, + "time": 0.9418360196215838, "position": { "x": 7, "y": 0 @@ -3481,11 +5459,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5017, - "time": 0.9328661527680449, + "noteOrder": 5092, + "time": 0.9463209530483533, "position": { "x": 7, "y": 0 @@ -3499,18 +5477,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5065, - "time": 0.9418360196215837, + "noteOrder": 5092, + "time": 0.9463209530483533, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3528,10 +5506,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5113, - "time": 0.9508058864751225, + "noteOrder": 5116, + "time": 0.9508058864751228, "position": { "x": 4, "y": 0 @@ -3551,10 +5529,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5138, - "time": 0.955290819901892, + "noteOrder": 5140, + "time": 0.9552908199018921, "position": { "x": 4, "y": 0 @@ -3574,10 +5552,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5138, - "time": 0.955290819901892, + "noteOrder": 5140, + "time": 0.9552908199018921, "position": { "x": 7, "y": 0 @@ -3597,10 +5575,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5162, - "time": 0.9597757533286616, + "noteOrder": 5164, + "time": 0.9597757533286615, "position": { "x": 6, "y": 0 diff --git a/tracks/DEADLOCK (STARDOM Remix)/info.json b/tracks/DEADLOCK (STARDOM Remix)/info.json index 9693a9e2..51e3a784 100644 --- a/tracks/DEADLOCK (STARDOM Remix)/info.json +++ b/tracks/DEADLOCK (STARDOM Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "DEADLOCK (STARDOM Remix)", - "SongLength": "122.984490", + "SongLength": "113.031837", "SongAuthorName": "RoughSketch", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/DUAL STRIKER/343_difficulty_1a.json b/tracks/DUAL STRIKER/343_difficulty_1a.json index f1cec547..0a79e30a 100644 --- a/tracks/DUAL STRIKER/343_difficulty_1a.json +++ b/tracks/DUAL STRIKER/343_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 373, - "time": 0.04015869160391872, + "time": 0.04015869160391871, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 759, - "time": 0.08161282487247996, + "time": 0.08161282487247995, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 783, - "time": 0.08420370820176505, + "time": 0.08420370820176504, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 795, - "time": 0.08549914986640758, + "time": 0.08549914986640757, "position": { "x": 7, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.13990769978139422, "position": { "x": 4, @@ -114,7 +114,7 @@ }, { "noteOrder": 1686, - "time": 0.18136183304995548, + "time": 0.18136183304995546, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 2529, - "time": 0.2720427495749332, + "time": 0.27204274957493324, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2553, + "noteOrder": 2554, "time": 0.27463363290421827, "position": { "x": 7, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2577, - "time": 0.2772245162335034, + "noteOrder": 2578, + "time": 0.27722451623350336, "position": { "x": 3, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2625, + "noteOrder": 2626, "time": 0.28240628289207353, "position": { "x": 5, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2649, - "time": 0.28499716622135857, + "noteOrder": 2650, + "time": 0.2849971662213586, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2673, - "time": 0.2875880495506437, + "noteOrder": 2674, + "time": 0.28758804955064365, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2721, + "noteOrder": 2722, "time": 0.29276981620921383, "position": { "x": 5, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.2953606995384989, "position": { "x": 7, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2769, + "noteOrder": 2770, "time": 0.297951582867784, "position": { "x": 4, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3347, - "time": 0.3601327827706259, + "noteOrder": 3349, + "time": 0.3601327827706258, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3371, - "time": 0.36272366609991097, + "noteOrder": 3373, + "time": 0.3627236660999109, "position": { "x": 3, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3395, - "time": 0.36531454942919606, + "noteOrder": 3397, + "time": 0.365314549429196, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3420, - "time": 0.36790543275848114, + "noteOrder": 3421, + "time": 0.36790543275848103, "position": { "x": 3, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.3704963160877662, + "noteOrder": 3445, + "time": 0.3704963160877661, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3540, - "time": 0.3808598494049065, + "noteOrder": 3541, + "time": 0.38085984940490647, "position": { "x": 3, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3564, + "noteOrder": 3565, "time": 0.38345073273419156, "position": { "x": 7, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3588, + "noteOrder": 3589, "time": 0.38604161606347664, "position": { "x": 3, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3612, - "time": 0.3886324993927618, + "noteOrder": 3614, + "time": 0.38863249939276173, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3636, + "noteOrder": 3638, "time": 0.3912233827220468, "position": { "x": 3, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3925, - "time": 0.42231398267346776, + "noteOrder": 3927, + "time": 0.4223139826734677, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3949, - "time": 0.42490486600275285, + "noteOrder": 3951, + "time": 0.4249048660027528, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.42749574933203793, + "noteOrder": 3975, + "time": 0.4274957493320379, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3997, + "noteOrder": 3999, "time": 0.43008663266132297, "position": { "x": 7, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.4352683993198932, + "noteOrder": 4047, + "time": 0.4352683993198931, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.4352683993198932, + "noteOrder": 4047, + "time": 0.4352683993198931, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4070, - "time": 0.4378592826491782, + "noteOrder": 4071, + "time": 0.43785928264917817, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4094, - "time": 0.4404501659784633, + "noteOrder": 4095, + "time": 0.44045016597846326, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4118, + "noteOrder": 4119, "time": 0.44304104930774835, "position": { "x": 5, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4142, - "time": 0.4456319326370335, + "noteOrder": 4143, + "time": 0.44563193263703343, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4166, - "time": 0.4482228159663186, + "noteOrder": 4168, + "time": 0.44822281596631847, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4190, - "time": 0.4508136992956036, + "noteOrder": 4192, + "time": 0.45081369929560355, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4214, - "time": 0.4534045826248887, + "noteOrder": 4216, + "time": 0.45340458262488864, "position": { "x": 5, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4238, - "time": 0.4559954659541738, + "noteOrder": 4240, + "time": 0.45599546595417373, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4262, - "time": 0.45858634928345887, + "noteOrder": 4264, + "time": 0.4585863492834588, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4286, - "time": 0.46117723261274396, + "noteOrder": 4288, + "time": 0.46117723261274385, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4311, - "time": 0.463768115942029, + "noteOrder": 4312, + "time": 0.46376811594202894, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4335, - "time": 0.46635899927131413, + "noteOrder": 4336, + "time": 0.466358999271314, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4359, - "time": 0.46894988260059917, + "noteOrder": 4360, + "time": 0.4689498826005991, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4383, - "time": 0.47154076592988425, + "noteOrder": 4384, + "time": 0.4715407659298842, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4407, - "time": 0.47413164925916934, + "noteOrder": 4408, + "time": 0.47413164925916923, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4455, - "time": 0.4793134159177395, + "noteOrder": 4457, + "time": 0.47931341591773946, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.48190429924702455, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4551, - "time": 0.4896769492348798, + "noteOrder": 4553, + "time": 0.48967694923487975, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4575, - "time": 0.4922678325641649, + "noteOrder": 4577, + "time": 0.49226783256416484, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4997, + "noteOrder": 4999, "time": 0.5376082908266537, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5382, - "time": 0.579062424095215, + "noteOrder": 5384, + "time": 0.5790624240952149, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5406, - "time": 0.5816533074245, + "noteOrder": 5408, + "time": 0.5816533074244999, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5418, - "time": 0.5829487490891425, + "noteOrder": 5420, + "time": 0.5829487490891426, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5442, + "noteOrder": 5444, "time": 0.5855396324184277, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5490, + "noteOrder": 5493, "time": 0.5907213990769978, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5539, + "noteOrder": 5541, "time": 0.595903165735568, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5563, + "noteOrder": 5565, "time": 0.598494049064853, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5924, + "noteOrder": 5926, "time": 0.6373572990041292, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5948, - "time": 0.6399481823334143, + "noteOrder": 5950, + "time": 0.6399481823334142, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6309, - "time": 0.6788114322726905, + "noteOrder": 6312, + "time": 0.6788114322726904, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6743, - "time": 0.7254473321998219, + "noteOrder": 6745, + "time": 0.7254473321998218, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6767, - "time": 0.728038215529107, + "noteOrder": 6769, + "time": 0.7280382155291069, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6791, - "time": 0.7306290988583921, + "noteOrder": 6793, + "time": 0.730629098858392, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6815, - "time": 0.7332199821876771, + "noteOrder": 6817, + "time": 0.733219982187677, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6839, - "time": 0.7358108655169623, + "noteOrder": 6842, + "time": 0.7358108655169621, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6863, - "time": 0.7384017488462473, + "noteOrder": 6866, + "time": 0.7384017488462472, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6887, - "time": 0.7409926321755324, + "noteOrder": 6890, + "time": 0.7409926321755322, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6911, + "noteOrder": 6914, "time": 0.7435835155048175, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 7537, - "time": 0.8109464820662295, + "noteOrder": 7540, + "time": 0.8109464820662294, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 7586, - "time": 0.8161282487247997, + "noteOrder": 7588, + "time": 0.8161282487247996, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 7634, + "noteOrder": 7637, "time": 0.8213100153833698, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 7682, - "time": 0.82649178204194, + "noteOrder": 7685, + "time": 0.8264917820419398, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 7730, - "time": 0.8316735487005101, + "noteOrder": 7733, + "time": 0.83167354870051, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 7778, - "time": 0.8368553153590803, + "noteOrder": 7781, + "time": 0.8368553153590802, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 8308, - "time": 0.893854748603352, + "noteOrder": 8311, + "time": 0.8938547486033519, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 8356, - "time": 0.8990365152619222, + "noteOrder": 8359, + "time": 0.8990365152619221, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 8404, - "time": 0.9042182819204924, + "noteOrder": 8407, + "time": 0.9042182819204923, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 8452, - "time": 0.9094000485790625, + "noteOrder": 8456, + "time": 0.9094000485790623, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 8549, - "time": 0.9197635818962028, + "noteOrder": 8552, + "time": 0.9197635818962027, "position": { "x": 3, "y": 0 @@ -1616,10 +1616,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.020727066634280627, + "time": 0.020727066634280623, "position": { "x": 7, "y": 0 @@ -1641,6 +1641,52 @@ "lineGroupId": 1, "indexInLine": 2, "isSliding": false, + "noteOrder": 241, + "time": 0.02590883329285078, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 241, + "time": 0.02590883329285078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 4, + "isSliding": false, "noteOrder": 289, "time": 0.03109059995142094, "position": { @@ -1662,10 +1708,10 @@ }, { "lineGroupId": 1, - "indexInLine": 3, + "indexInLine": 5, "isSliding": false, "noteOrder": 337, - "time": 0.0362723666099911, + "time": 0.03627236660999109, "position": { "x": 7, "y": 0 @@ -1685,7 +1731,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 205, "time": 0.022022508298923164, @@ -1708,10 +1754,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, - "time": 0.03886324993927618, + "time": 0.03886324993927617, "position": { "x": 3, "y": 0 @@ -1731,10 +1777,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 397, - "time": 0.04274957493320379, + "time": 0.042749574933203784, "position": { "x": 3, "y": 0 @@ -1754,10 +1800,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, - "time": 0.05181766658570157, + "time": 0.05181766658570156, "position": { "x": 3, "y": 0 @@ -1777,9 +1823,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 409, + "noteOrder": 410, "time": 0.04404501659784633, "position": { "x": 7, @@ -1800,10 +1846,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, - "time": 0.05181766658570157, + "time": 0.05181766658570156, "position": { "x": 7, "y": 0 @@ -1823,7 +1869,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.06218119990284188, @@ -1846,10 +1892,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 747, - "time": 0.08031738320783743, + "time": 0.08031738320783742, "position": { "x": 3, "y": 0 @@ -1869,10 +1915,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 590, - "time": 0.06347664156748442, + "time": 0.06347664156748441, "position": { "x": 7, "y": 0 @@ -1894,10 +1940,10 @@ "lineGroupId": 7, "indexInLine": 2, "isSliding": false, - "noteOrder": 674, - "time": 0.0725447332199822, + "noteOrder": 626, + "time": 0.06736296656141204, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1917,10 +1963,10 @@ "lineGroupId": 7, "indexInLine": 3, "isSliding": false, - "noteOrder": 722, - "time": 0.07772649987855236, + "noteOrder": 626, + "time": 0.06736296656141204, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1937,13 +1983,13 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 4, "isSliding": false, - "noteOrder": 963, - "time": 0.10363533317140314, + "noteOrder": 675, + "time": 0.07254473321998219, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -1960,13 +2006,13 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1011, - "time": 0.1088170998299733, + "noteOrder": 723, + "time": 0.07772649987855235, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -1978,16 +2024,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1060, - "time": 0.11399886648854345, + "noteOrder": 964, + "time": 0.10363533317140312, "position": { "x": 8, "y": 0 @@ -2006,11 +2052,11 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1108, - "time": 0.1191806331471136, + "noteOrder": 988, + "time": 0.1062262165006882, "position": { "x": 8, "y": 0 @@ -2024,18 +2070,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1156, - "time": 0.12436239980568375, + "noteOrder": 988, + "time": 0.1062262165006882, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2052,13 +2098,13 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 1, + "lineGroupId": 11, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1204, - "time": 0.1295441664642539, + "noteOrder": 1012, + "time": 0.10881709982997327, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2075,13 +2121,13 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1204, - "time": 0.1295441664642539, + "noteOrder": 1012, + "time": 0.10881709982997327, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2093,18 +2139,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 16, + "lineGroupId": 12, "indexInLine": 1, "isSliding": false, - "noteOrder": 1228, - "time": 0.13213504979353902, + "noteOrder": 1012, + "time": 0.10881709982997327, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2121,13 +2167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 16, + "lineGroupId": 12, "indexInLine": 2, "isSliding": false, - "noteOrder": 1252, - "time": 0.13472593312282408, + "noteOrder": 1036, + "time": 0.11140798315925836, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2144,11 +2190,11 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1252, - "time": 0.13472593312282408, + "noteOrder": 1036, + "time": 0.11140798315925836, "position": { "x": 6, "y": 0 @@ -2162,16 +2208,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 1, + "lineGroupId": 12, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1300, - "time": 0.13990769978139422, + "noteOrder": 1060, + "time": 0.11399886648854343, "position": { "x": 6, "y": 0 @@ -2185,18 +2231,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1349, - "time": 0.1450894664399644, + "noteOrder": 1060, + "time": 0.11399886648854343, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2213,13 +2259,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1397, - "time": 0.15027123309853455, + "noteOrder": 1060, + "time": 0.11399886648854343, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2236,13 +2282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1445, - "time": 0.15545299975710472, + "noteOrder": 1084, + "time": 0.1165897498178285, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2254,18 +2300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1493, - "time": 0.16063476641567487, + "noteOrder": 1084, + "time": 0.1165897498178285, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2282,13 +2328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1541, - "time": 0.16581653307424501, + "noteOrder": 1108, + "time": 0.11918063314711358, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2300,18 +2346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1589, - "time": 0.17099829973281516, + "noteOrder": 1108, + "time": 0.11918063314711358, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2323,18 +2369,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1589, - "time": 0.17099829973281516, + "noteOrder": 1108, + "time": 0.11918063314711358, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -2346,18 +2392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1613, - "time": 0.17358918306210025, + "noteOrder": 1132, + "time": 0.12177151647639867, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2369,18 +2415,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 2, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1638, - "time": 0.1761800663913853, + "noteOrder": 1132, + "time": 0.12177151647639867, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2392,18 +2438,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1638, - "time": 0.1761800663913853, + "noteOrder": 1156, + "time": 0.12436239980568375, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2420,11 +2466,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1686, - "time": 0.18136183304995548, + "noteOrder": 1156, + "time": 0.12436239980568375, "position": { "x": 4, "y": 0 @@ -2443,13 +2489,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2119, - "time": 0.2279977329770869, + "noteOrder": 1156, + "time": 0.12436239980568375, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2466,13 +2512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2167, - "time": 0.23317949963565707, + "noteOrder": 1205, + "time": 0.1295441664642539, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2489,13 +2535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2215, - "time": 0.2383612662942272, + "noteOrder": 1205, + "time": 0.1295441664642539, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2512,11 +2558,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 1, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2264, - "time": 0.24354303295279736, + "noteOrder": 1229, + "time": 0.13213504979353896, "position": { "x": 3, "y": 0 @@ -2535,13 +2581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2312, - "time": 0.2487247996113675, + "noteOrder": 1253, + "time": 0.13472593312282408, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2553,18 +2599,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 2360, - "time": 0.2539065662699377, + "noteOrder": 1253, + "time": 0.13472593312282408, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2581,13 +2627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2408, - "time": 0.2590883329285078, + "noteOrder": 1301, + "time": 0.13990769978139422, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2599,18 +2645,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, + "lineGroupId": 19, "indexInLine": 1, "isSliding": false, - "noteOrder": 2456, - "time": 0.26427009958707803, + "noteOrder": 1349, + "time": 0.14508946643996437, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2627,13 +2673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2890, - "time": 0.31090599951420944, + "noteOrder": 1373, + "time": 0.14768034976924946, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2645,18 +2691,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2938, - "time": 0.31608776617277956, + "noteOrder": 1373, + "time": 0.14768034976924946, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2673,13 +2719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2986, - "time": 0.32126953283134974, + "noteOrder": 1397, + "time": 0.15027123309853452, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2691,18 +2737,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3034, - "time": 0.32645129948991986, + "noteOrder": 1397, + "time": 0.15027123309853452, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2719,13 +2765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3082, - "time": 0.33163306614849003, + "noteOrder": 1397, + "time": 0.15027123309853452, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2742,13 +2788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3131, - "time": 0.3368148328070602, + "noteOrder": 1421, + "time": 0.1528621164278196, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2760,18 +2806,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3179, - "time": 0.3419965994656303, + "noteOrder": 1421, + "time": 0.1528621164278196, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2788,13 +2834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3227, - "time": 0.3471783661242005, + "noteOrder": 1445, + "time": 0.1554529997571047, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2806,18 +2852,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3769, - "time": 0.4054732410331148, + "noteOrder": 1445, + "time": 0.1554529997571047, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2829,18 +2875,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 21, "indexInLine": 1, "isSliding": false, - "noteOrder": 3853, - "time": 0.41454133268561255, + "noteOrder": 1445, + "time": 0.1554529997571047, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2857,13 +2903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3781, - "time": 0.4067686826977573, + "noteOrder": 1469, + "time": 0.15804388308638975, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2875,18 +2921,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3805, - "time": 0.4093595660270423, + "noteOrder": 1469, + "time": 0.15804388308638975, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2898,18 +2944,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 2, + "lineGroupId": 21, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3829, - "time": 0.41195044935632746, + "noteOrder": 1494, + "time": 0.16063476641567484, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2921,16 +2967,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 3, + "lineGroupId": 21, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3853, - "time": 0.41454133268561255, + "noteOrder": 1494, + "time": 0.16063476641567484, "position": { "x": 6, "y": 0 @@ -2944,18 +2990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4431, - "time": 0.4767225325884544, + "noteOrder": 1494, + "time": 0.16063476641567484, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2972,13 +3018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4479, - "time": 0.48190429924702455, + "noteOrder": 1518, + "time": 0.1632256497449599, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2995,13 +3041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4527, - "time": 0.4870860659055947, + "noteOrder": 1518, + "time": 0.1632256497449599, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3013,18 +3059,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4575, - "time": 0.4922678325641649, + "noteOrder": 1542, + "time": 0.165816533074245, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3036,18 +3082,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4816, - "time": 0.5181766658570156, + "noteOrder": 1542, + "time": 0.165816533074245, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3059,18 +3105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4913, - "time": 0.5285401991741561, + "noteOrder": 1542, + "time": 0.165816533074245, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3087,13 +3133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 3, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4961, - "time": 0.5337219658327261, + "noteOrder": 1590, + "time": 0.17099829973281513, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3110,13 +3156,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4828, - "time": 0.5194721075216582, + "noteOrder": 1590, + "time": 0.17099829973281513, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3133,11 +3179,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4985, - "time": 0.5363128491620112, + "noteOrder": 1614, + "time": 0.17358918306210022, "position": { "x": 7, "y": 0 @@ -3156,11 +3202,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5021, - "time": 0.5401991741559388, + "noteOrder": 1638, + "time": 0.1761800663913853, "position": { "x": 7, "y": 0 @@ -3179,13 +3225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 25, "indexInLine": 1, "isSliding": false, - "noteOrder": 5105, - "time": 0.5492672658084365, + "noteOrder": 1638, + "time": 0.1761800663913853, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3197,18 +3243,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5033, - "time": 0.5414946158205814, + "noteOrder": 1686, + "time": 0.18136183304995546, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3225,13 +3271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 5105, - "time": 0.5492672658084365, + "noteOrder": 2120, + "time": 0.22799773297708686, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3243,16 +3289,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5202, - "time": 0.5596307991255769, + "noteOrder": 2168, + "time": 0.233179499635657, "position": { "x": 7, "y": 0 @@ -3271,13 +3317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 32, "indexInLine": 1, "isSliding": false, - "noteOrder": 5370, - "time": 0.5777669824305725, + "noteOrder": 2216, + "time": 0.23836126629422716, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3289,16 +3335,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5214, - "time": 0.5609262407902195, + "noteOrder": 2264, + "time": 0.24354303295279733, "position": { "x": 3, "y": 0 @@ -3317,13 +3363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 2, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5298, - "time": 0.5699943324427171, + "noteOrder": 2313, + "time": 0.2487247996113675, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3335,18 +3381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 3, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5346, - "time": 0.5751760991012874, + "noteOrder": 2361, + "time": 0.25390656626993763, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3358,18 +3404,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5587, - "time": 0.6010849323941382, + "noteOrder": 2409, + "time": 0.2590883329285078, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3386,13 +3432,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5635, - "time": 0.6062666990527084, + "noteOrder": 2457, + "time": 0.2642700995870779, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3404,18 +3450,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5683, - "time": 0.6114484657112784, + "noteOrder": 2891, + "time": 0.3109059995142094, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3427,18 +3473,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5731, - "time": 0.6166302323698486, + "noteOrder": 2915, + "time": 0.3134968828434944, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3455,13 +3501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5779, - "time": 0.6218119990284189, + "noteOrder": 2915, + "time": 0.3134968828434944, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3473,18 +3519,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 5828, - "time": 0.626993765686989, + "noteOrder": 2939, + "time": 0.3160877661727795, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3501,13 +3547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5828, - "time": 0.626993765686989, + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2963, + "time": 0.3186786495020646, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3519,16 +3565,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2963, + "time": 0.3186786495020646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 5852, - "time": 0.6295846490162741, + "noteOrder": 2987, + "time": 0.3212695328313497, "position": { "x": 7, "y": 0 @@ -3547,11 +3616,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 51, "indexInLine": 2, "isSliding": false, - "noteOrder": 5876, - "time": 0.6321755323455591, + "noteOrder": 3011, + "time": 0.32386041616063477, "position": { "x": 7, "y": 0 @@ -3570,13 +3639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5876, - "time": 0.6321755323455591, + "noteOrder": 3011, + "time": 0.32386041616063477, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3588,18 +3657,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 5924, - "time": 0.6373572990041292, + "noteOrder": 3035, + "time": 0.3264512994899198, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3616,13 +3685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5972, - "time": 0.6425390656626995, + "noteOrder": 3059, + "time": 0.3290421828192049, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3634,18 +3703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6020, - "time": 0.6477208323212696, + "noteOrder": 3059, + "time": 0.3290421828192049, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3662,13 +3731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6068, - "time": 0.6529025989798397, + "noteOrder": 3084, + "time": 0.33163306614849, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3685,13 +3754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6117, - "time": 0.6580843656384099, + "noteOrder": 3108, + "time": 0.33422394947777506, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3703,18 +3772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6165, - "time": 0.6632661322969801, + "noteOrder": 3108, + "time": 0.33422394947777506, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3731,13 +3800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 6213, - "time": 0.6684478989555502, + "noteOrder": 3132, + "time": 0.33681483280706015, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3749,18 +3818,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6213, - "time": 0.6684478989555502, + "noteOrder": 3156, + "time": 0.3394057161363452, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3777,13 +3846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6237, - "time": 0.6710387822848353, + "noteOrder": 3156, + "time": 0.3394057161363452, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3800,13 +3869,36 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3180, + "time": 0.34199659946563027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, "indexInLine": 2, "isSliding": false, - "noteOrder": 6261, - "time": 0.6736296656141204, + "noteOrder": 3204, + "time": 0.34458748279491536, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3818,16 +3910,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6261, - "time": 0.6736296656141204, + "noteOrder": 3204, + "time": 0.34458748279491536, "position": { "x": 6, "y": 0 @@ -3846,13 +3938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 6309, - "time": 0.6788114322726905, + "noteOrder": 3228, + "time": 0.34717836612420044, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3864,16 +3956,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3252, + "time": 0.34976924945348553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6357, - "time": 0.6839931989312606, + "noteOrder": 3252, + "time": 0.34976924945348553, "position": { "x": 4, "y": 0 @@ -3892,11 +4007,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 6406, - "time": 0.6891749655898308, + "noteOrder": 3770, + "time": 0.4054732410331147, "position": { "x": 3, "y": 0 @@ -3915,13 +4030,3302 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3854, + "time": 0.4145413326856125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3782, + "time": 0.40676868269775723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3806, + "time": 0.4093595660270423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3830, + "time": 0.4119504493563274, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3854, + "time": 0.4145413326856125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4433, + "time": 0.4767225325884543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4481, + "time": 0.48190429924702455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4529, + "time": 0.48708606590559467, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4577, + "time": 0.49226783256416484, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4818, + "time": 0.5181766658570156, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4866, + "time": 0.5233584325155857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4866, + "time": 0.5233584325155857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4914, + "time": 0.5285401991741558, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4963, + "time": 0.5337219658327261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4830, + "time": 0.5194721075216582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4987, + "time": 0.5363128491620112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5023, + "time": 0.5401991741559388, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5107, + "time": 0.5492672658084365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5035, + "time": 0.5414946158205813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5107, + "time": 0.5492672658084365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5203, + "time": 0.5596307991255769, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5372, + "time": 0.5777669824305725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5216, + "time": 0.5609262407902194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5252, + "time": 0.5648125657841471, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5252, + "time": 0.5648125657841471, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5300, + "time": 0.5699943324427172, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5348, + "time": 0.5751760991012873, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5589, + "time": 0.6010849323941381, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5613, + "time": 0.6036758157234232, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5613, + "time": 0.6036758157234232, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5637, + "time": 0.6062666990527082, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5637, + "time": 0.6062666990527082, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5637, + "time": 0.6062666990527082, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5661, + "time": 0.6088575823819934, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5661, + "time": 0.6088575823819934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5685, + "time": 0.6114484657112784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5685, + "time": 0.6114484657112784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5685, + "time": 0.6114484657112784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5709, + "time": 0.6140393490405635, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5709, + "time": 0.6140393490405635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5733, + "time": 0.6166302323698486, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5733, + "time": 0.6166302323698486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5733, + "time": 0.6166302323698486, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5758, + "time": 0.6192211156991336, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5758, + "time": 0.6192211156991336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5782, + "time": 0.6218119990284188, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5782, + "time": 0.6218119990284188, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5782, + "time": 0.6218119990284188, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5830, + "time": 0.6269937656869888, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5830, + "time": 0.6269937656869888, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5854, + "time": 0.629584649016274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5878, + "time": 0.632175532345559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5878, + "time": 0.632175532345559, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5926, + "time": 0.6373572990041292, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5974, + "time": 0.6425390656626994, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5998, + "time": 0.6451299489919844, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5998, + "time": 0.6451299489919844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6477208323212695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6477208323212695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6477208323212695, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6047, + "time": 0.6503117156505546, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6047, + "time": 0.6503117156505546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6529025989798396, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6529025989798396, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6529025989798396, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6095, + "time": 0.6554934823091247, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6095, + "time": 0.6554934823091247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6119, + "time": 0.6580843656384098, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6119, + "time": 0.6580843656384098, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6119, + "time": 0.6580843656384098, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6606752489676949, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6606752489676949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6167, + "time": 0.66326613229698, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6167, + "time": 0.66326613229698, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6167, + "time": 0.66326613229698, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6215, + "time": 0.6684478989555501, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6215, + "time": 0.6684478989555501, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6239, + "time": 0.6710387822848352, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6263, + "time": 0.6736296656141203, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6263, + "time": 0.6736296656141203, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6312, + "time": 0.6788114322726904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6360, + "time": 0.6839931989312605, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6408, + "time": 0.6891749655898307, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6456, + "time": 0.6943567322484009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6504, + "time": 0.6995384989069711, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6553, + "time": 0.7047202655655412, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6601, + "time": 0.7099020322241113, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6649, + "time": 0.7150837988826815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6697, + "time": 0.7202655655412517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7046, + "time": 0.7578333738158853, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7107, + "time": 0.7643105821390981, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7058, + "time": 0.7591288154805279, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7107, + "time": 0.7643105821390981, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7131, + "time": 0.7669014654683831, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7155, + "time": 0.7694923487976683, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7155, + "time": 0.7694923487976683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7179, + "time": 0.7720832321269533, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7179, + "time": 0.7720832321269533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7179, + "time": 0.7720832321269533, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7203, + "time": 0.7746741154562383, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7203, + "time": 0.7746741154562383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7227, + "time": 0.7772649987855235, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7227, + "time": 0.7772649987855235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7227, + "time": 0.7772649987855235, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7251, + "time": 0.7798558821148085, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7251, + "time": 0.7798558821148085, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7275, + "time": 0.7824467654440936, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7275, + "time": 0.7824467654440936, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7275, + "time": 0.7824467654440936, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7299, + "time": 0.7850376487733787, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7299, + "time": 0.7850376487733787, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7323, + "time": 0.7876285321026637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7323, + "time": 0.7876285321026637, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7323, + "time": 0.7876285321026637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7347, + "time": 0.7902194154319488, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7347, + "time": 0.7902194154319488, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7372, + "time": 0.7928102987612339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7372, + "time": 0.7928102987612339, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7372, + "time": 0.7928102987612339, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7396, + "time": 0.795401182090519, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7396, + "time": 0.795401182090519, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7420, + "time": 0.797992065419804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7420, + "time": 0.797992065419804, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7420, + "time": 0.797992065419804, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7444, + "time": 0.8005829487490891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7444, + "time": 0.8005829487490891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7468, + "time": 0.8031738320783742, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7468, + "time": 0.8031738320783742, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7468, + "time": 0.8031738320783742, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7492, + "time": 0.8057647154076593, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7492, + "time": 0.8057647154076593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 7516, + "time": 0.8083555987369444, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 7516, + "time": 0.8083555987369444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7516, + "time": 0.8083555987369444, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7564, + "time": 0.8135373653955145, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7564, + "time": 0.8135373653955145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7612, + "time": 0.8187191320540846, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7612, + "time": 0.8187191320540846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7661, + "time": 0.8239008987126548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7661, + "time": 0.8239008987126548, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7709, + "time": 0.829082665371225, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7709, + "time": 0.829082665371225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7757, + "time": 0.8342644320297952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6454, - "time": 0.694356732248401, + "noteOrder": 7757, + "time": 0.8342644320297952, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3933,18 +7337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6502, - "time": 0.6995384989069712, + "noteOrder": 7805, + "time": 0.8394461986883652, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3956,18 +7360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6550, - "time": 0.7047202655655412, + "noteOrder": 7902, + "time": 0.8498097320055056, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3984,13 +7388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6598, - "time": 0.7099020322241115, + "noteOrder": 7926, + "time": 0.8524006153347906, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4007,13 +7411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6646, - "time": 0.7150837988826816, + "noteOrder": 7926, + "time": 0.8524006153347906, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4025,18 +7429,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6695, - "time": 0.7202655655412518, + "noteOrder": 7950, + "time": 0.8549914986640758, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4048,18 +7452,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7044, - "time": 0.7578333738158854, + "noteOrder": 7950, + "time": 0.8549914986640758, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4076,13 +7480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 7104, - "time": 0.7643105821390982, + "noteOrder": 7950, + "time": 0.8549914986640758, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4094,18 +7498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7056, - "time": 0.7591288154805279, + "noteOrder": 7974, + "time": 0.8575823819933608, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4122,13 +7526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7104, - "time": 0.7643105821390982, + "noteOrder": 7974, + "time": 0.8575823819933608, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4145,13 +7549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7128, - "time": 0.7669014654683831, + "noteOrder": 7998, + "time": 0.8601732653226459, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4168,13 +7572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7176, - "time": 0.7720832321269533, + "noteOrder": 7998, + "time": 0.8601732653226459, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4186,18 +7590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7224, - "time": 0.7772649987855236, + "noteOrder": 7998, + "time": 0.8601732653226459, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4209,18 +7613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7272, - "time": 0.7824467654440936, + "noteOrder": 8022, + "time": 0.862764148651931, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4237,11 +7641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7321, - "time": 0.7876285321026638, + "noteOrder": 8022, + "time": 0.862764148651931, "position": { "x": 4, "y": 0 @@ -4255,16 +7659,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7369, - "time": 0.7928102987612339, + "noteOrder": 8046, + "time": 0.865355031981216, "position": { "x": 4, "y": 0 @@ -4283,13 +7687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7417, - "time": 0.7979920654198042, + "noteOrder": 8046, + "time": 0.865355031981216, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4301,18 +7705,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7465, - "time": 0.8031738320783743, + "noteOrder": 8046, + "time": 0.865355031981216, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4324,18 +7728,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7513, - "time": 0.8083555987369444, + "noteOrder": 8070, + "time": 0.8679459153105011, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4352,13 +7756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7561, - "time": 0.8135373653955146, + "noteOrder": 8070, + "time": 0.8679459153105011, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4375,13 +7779,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7561, - "time": 0.8135373653955146, + "noteOrder": 8094, + "time": 0.8705367986397862, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4393,18 +7797,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 7610, - "time": 0.8187191320540846, + "noteOrder": 8094, + "time": 0.8705367986397862, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4421,13 +7825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7610, - "time": 0.8187191320540846, + "noteOrder": 8118, + "time": 0.8731276819690713, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4439,18 +7843,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7658, - "time": 0.8239008987126549, + "noteOrder": 8118, + "time": 0.8731276819690713, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4462,18 +7866,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7658, - "time": 0.8239008987126549, + "noteOrder": 8142, + "time": 0.8757185652983563, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4490,13 +7894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 7706, - "time": 0.8290826653712251, + "noteOrder": 8142, + "time": 0.8757185652983563, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4508,16 +7912,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7706, - "time": 0.8290826653712251, + "noteOrder": 8167, + "time": 0.8783094486276414, "position": { "x": 6, "y": 0 @@ -4536,13 +7940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7754, - "time": 0.8342644320297952, + "noteOrder": 8167, + "time": 0.8783094486276414, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4559,11 +7963,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7754, - "time": 0.8342644320297952, + "noteOrder": 8191, + "time": 0.8809003319569265, "position": { "x": 4, "y": 0 @@ -4577,18 +7981,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 7802, - "time": 0.8394461986883653, + "noteOrder": 8191, + "time": 0.8809003319569265, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4605,13 +8009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7899, - "time": 0.8498097320055057, + "noteOrder": 8215, + "time": 0.8834912152862116, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4628,13 +8032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7947, - "time": 0.8549914986640759, + "noteOrder": 8215, + "time": 0.8834912152862116, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4646,18 +8050,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7995, - "time": 0.8601732653226459, + "noteOrder": 8239, + "time": 0.8860820986154967, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4674,13 +8078,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8043, - "time": 0.8653550319812162, + "noteOrder": 8239, + "time": 0.8860820986154967, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4697,11 +8101,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8091, - "time": 0.8705367986397864, + "noteOrder": 8263, + "time": 0.8886729819447817, "position": { "x": 6, "y": 0 @@ -4715,18 +8119,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8139, - "time": 0.8757185652983565, + "noteOrder": 8263, + "time": 0.8886729819447817, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4743,13 +8147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8188, - "time": 0.8809003319569266, + "noteOrder": 8287, + "time": 0.8912638652740669, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4761,16 +8165,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 8236, - "time": 0.8860820986154967, + "noteOrder": 8287, + "time": 0.8912638652740669, "position": { "x": 6, "y": 0 @@ -4790,10 +8194,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8284, - "time": 0.891263865274067, + "noteOrder": 8287, + "time": 0.8912638652740669, "position": { "x": 2, "y": 0 @@ -4813,10 +8217,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8332, - "time": 0.8964456319326372, + "noteOrder": 8335, + "time": 0.8964456319326369, "position": { "x": 2, "y": 0 @@ -4836,10 +8240,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8332, - "time": 0.8964456319326372, + "noteOrder": 8335, + "time": 0.8964456319326369, "position": { "x": 7, "y": 0 @@ -4859,10 +8263,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8380, - "time": 0.9016273985912072, + "noteOrder": 8383, + "time": 0.9016273985912071, "position": { "x": 7, "y": 0 @@ -4882,10 +8286,10 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8380, - "time": 0.9016273985912072, + "noteOrder": 8383, + "time": 0.9016273985912071, "position": { "x": 3, "y": 0 @@ -4905,10 +8309,10 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8428, - "time": 0.9068091652497774, + "noteOrder": 8432, + "time": 0.9068091652497773, "position": { "x": 3, "y": 0 @@ -4928,10 +8332,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8428, - "time": 0.9068091652497774, + "noteOrder": 8432, + "time": 0.9068091652497773, "position": { "x": 8, "y": 0 @@ -4951,10 +8355,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8477, - "time": 0.9119909319083476, + "noteOrder": 8480, + "time": 0.9119909319083475, "position": { "x": 8, "y": 0 @@ -4974,9 +8378,9 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8585, + "noteOrder": 8588, "time": 0.9236499068901304, "position": { "x": 7, @@ -4997,10 +8401,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8669, - "time": 0.9327179985426283, + "noteOrder": 8672, + "time": 0.932717998542628, "position": { "x": 7, "y": 0 @@ -5020,10 +8424,10 @@ }, { "lineGroupId": 192, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8765, - "time": 0.9430815318597685, + "noteOrder": 8769, + "time": 0.9430815318597684, "position": { "x": 2, "y": 0 @@ -5043,10 +8447,10 @@ }, { "lineGroupId": 192, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8862, - "time": 0.9534450651769087, + "noteOrder": 8865, + "time": 0.9534450651769086, "position": { "x": 7, "y": 0 @@ -5066,10 +8470,10 @@ }, { "lineGroupId": 192, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 9054, - "time": 0.9741721318111894, + "noteOrder": 9058, + "time": 0.9741721318111893, "position": { "x": 7, "y": 0 @@ -5089,10 +8493,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8597, - "time": 0.924945348554773, + "noteOrder": 8600, + "time": 0.9249453485547728, "position": { "x": 3, "y": 0 @@ -5112,10 +8516,10 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8669, - "time": 0.9327179985426283, + "noteOrder": 8672, + "time": 0.932717998542628, "position": { "x": 3, "y": 0 @@ -5135,10 +8539,10 @@ }, { "lineGroupId": 193, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8862, - "time": 0.9534450651769087, + "noteOrder": 8865, + "time": 0.9534450651769086, "position": { "x": 3, "y": 0 @@ -5158,9 +8562,9 @@ }, { "lineGroupId": 193, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8958, + "noteOrder": 8962, "time": 0.9638085984940491, "position": { "x": 8, @@ -5181,10 +8585,10 @@ }, { "lineGroupId": 193, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 9054, - "time": 0.9741721318111894, + "noteOrder": 9058, + "time": 0.9741721318111893, "position": { "x": 3, "y": 0 diff --git a/tracks/DUAL STRIKER/343_difficulty_1b.json b/tracks/DUAL STRIKER/343_difficulty_1b.json index aad22125..abd52f5f 100644 --- a/tracks/DUAL STRIKER/343_difficulty_1b.json +++ b/tracks/DUAL STRIKER/343_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 2167, - "time": 0.23317949963565707, + "noteOrder": 2168, + "time": 0.233179499635657, "position": { "x": 4, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 2215, - "time": 0.2383612662942272, + "noteOrder": 2216, + "time": 0.23836126629422716, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 2264, - "time": 0.24354303295279736, + "time": 0.24354303295279733, "position": { "x": 4, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 2553, + "noteOrder": 2554, "time": 0.27463363290421827, "position": { "x": 6, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 2601, + "noteOrder": 2602, "time": 0.27981539956278845, "position": { "x": 4, @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2649, - "time": 0.28499716622135857, + "noteOrder": 2650, + "time": 0.2849971662213586, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.2953606995384989, "position": { "x": 4, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2793, - "time": 0.3005424661970691, + "noteOrder": 2794, + "time": 0.30054246619706904, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2842, + "noteOrder": 2843, "time": 0.3057242328556392, "position": { "x": 6, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3925, - "time": 0.42231398267346776, + "noteOrder": 3927, + "time": 0.4223139826734677, "position": { "x": 7, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3925, - "time": 0.42231398267346776, + "noteOrder": 3927, + "time": 0.4223139826734677, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.42749574933203793, + "noteOrder": 3975, + "time": 0.4274957493320379, "position": { "x": 7, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.42749574933203793, + "noteOrder": 3975, + "time": 0.4274957493320379, "position": { "x": 3, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4094, - "time": 0.4404501659784633, + "noteOrder": 4095, + "time": 0.44045016597846326, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4142, - "time": 0.4456319326370335, + "noteOrder": 4143, + "time": 0.44563193263703343, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4190, - "time": 0.4508136992956036, + "noteOrder": 4192, + "time": 0.45081369929560355, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4286, - "time": 0.46117723261274396, + "noteOrder": 4288, + "time": 0.46117723261274385, "position": { "x": 4, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4335, - "time": 0.46635899927131413, + "noteOrder": 4336, + "time": 0.466358999271314, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4383, - "time": 0.47154076592988425, + "noteOrder": 4384, + "time": 0.4715407659298842, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4527, - "time": 0.4870860659055947, + "noteOrder": 4529, + "time": 0.48708606590559467, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4575, - "time": 0.4922678325641649, + "noteOrder": 4577, + "time": 0.49226783256416484, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6791, - "time": 0.7306290988583921, + "noteOrder": 6793, + "time": 0.730629098858392, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6839, - "time": 0.7358108655169623, + "noteOrder": 6842, + "time": 0.7358108655169621, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6887, - "time": 0.7409926321755324, + "noteOrder": 6890, + "time": 0.7409926321755322, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 7176, + "noteOrder": 7179, "time": 0.7720832321269533, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 7224, - "time": 0.7772649987855236, + "noteOrder": 7227, + "time": 0.7772649987855235, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 7272, + "noteOrder": 7275, "time": 0.7824467654440936, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 7369, + "noteOrder": 7372, "time": 0.7928102987612339, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 7417, - "time": 0.7979920654198042, + "noteOrder": 7420, + "time": 0.797992065419804, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 7465, - "time": 0.8031738320783743, + "noteOrder": 7468, + "time": 0.8031738320783742, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 7561, - "time": 0.8135373653955146, + "noteOrder": 7564, + "time": 0.8135373653955145, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 7610, + "noteOrder": 7612, "time": 0.8187191320540846, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 7658, - "time": 0.8239008987126549, + "noteOrder": 7661, + "time": 0.8239008987126548, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 7754, + "noteOrder": 7757, "time": 0.8342644320297952, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 7802, - "time": 0.8394461986883653, + "noteOrder": 7805, + "time": 0.8394461986883652, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 8139, - "time": 0.8757185652983565, + "noteOrder": 8142, + "time": 0.8757185652983563, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 8188, - "time": 0.8809003319569266, + "noteOrder": 8191, + "time": 0.8809003319569265, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 8236, + "noteOrder": 8239, "time": 0.8860820986154967, "position": { "x": 6, @@ -776,10 +776,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.020727066634280627, + "time": 0.020727066634280623, "position": { "x": 3, "y": 0 @@ -799,7 +799,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.03109059995142094, @@ -822,10 +822,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 337, - "time": 0.0362723666099911, + "time": 0.03627236660999109, "position": { "x": 5, "y": 0 @@ -845,10 +845,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, - "time": 0.041454133268561254, + "time": 0.04145413326856125, "position": { "x": 7, "y": 0 @@ -868,10 +868,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, - "time": 0.05181766658570157, + "time": 0.05181766658570156, "position": { "x": 7, "y": 0 @@ -891,10 +891,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 530, - "time": 0.05699943324427172, + "time": 0.056999433244271716, "position": { "x": 5, "y": 0 @@ -914,7 +914,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.06218119990284188, @@ -937,10 +937,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 674, - "time": 0.0725447332199822, + "noteOrder": 675, + "time": 0.07254473321998219, "position": { "x": 4, "y": 0 @@ -960,10 +960,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 722, - "time": 0.07772649987855236, + "noteOrder": 723, + "time": 0.07772649987855235, "position": { "x": 3, "y": 0 @@ -983,10 +983,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, - "time": 0.08290826653712251, + "time": 0.0829082665371225, "position": { "x": 6, "y": 0 @@ -1006,7 +1006,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 867, "time": 0.09327179985426282, @@ -1029,10 +1029,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 915, - "time": 0.09845356651283298, + "time": 0.09845356651283296, "position": { "x": 7, "y": 0 @@ -1052,10 +1052,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 963, - "time": 0.10363533317140314, + "noteOrder": 964, + "time": 0.10363533317140312, "position": { "x": 8, "y": 0 @@ -1074,11 +1074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1011, - "time": 0.1088170998299733, + "noteOrder": 988, + "time": 0.1062262165006882, "position": { "x": 8, "y": 0 @@ -1092,18 +1092,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 7, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1060, - "time": 0.11399886648854345, + "noteOrder": 988, + "time": 0.1062262165006882, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -1120,11 +1120,11 @@ "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 6, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1108, - "time": 0.1191806331471136, + "noteOrder": 1012, + "time": 0.10881709982997327, "position": { "x": 8, "y": 0 @@ -1143,34 +1143,11 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1156, - "time": 0.12436239980568375, - "position": { - "x": 8, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 9, - "indexInLine": 1, + "lineGroupId": 6, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1204, - "time": 0.1295441664642539, + "noteOrder": 1036, + "time": 0.11140798315925836, "position": { "x": 8, "y": 0 @@ -1184,18 +1161,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 6, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1204, - "time": 0.1295441664642539, + "noteOrder": 1036, + "time": 0.11140798315925836, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1212,13 +1189,13 @@ "isPlayAudio": false }, { - "lineGroupId": 10, + "lineGroupId": 7, "indexInLine": 1, "isSliding": false, - "noteOrder": 1252, - "time": 0.13472593312282408, + "noteOrder": 1060, + "time": 0.11399886648854343, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -1230,18 +1207,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1349, - "time": 0.1450894664399644, + "noteOrder": 1084, + "time": 0.1165897498178285, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1253,18 +1230,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1397, - "time": 0.15027123309853455, + "noteOrder": 1084, + "time": 0.1165897498178285, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1281,13 +1258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1445, - "time": 0.15545299975710472, + "noteOrder": 1108, + "time": 0.11918063314711358, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1304,13 +1281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1493, - "time": 0.16063476641567487, + "noteOrder": 1132, + "time": 0.12177151647639867, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1322,18 +1299,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1541, - "time": 0.16581653307424501, + "noteOrder": 1132, + "time": 0.12177151647639867, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1350,13 +1327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, + "lineGroupId": 9, "indexInLine": 1, "isSliding": false, - "noteOrder": 1589, - "time": 0.17099829973281516, + "noteOrder": 1156, + "time": 0.12436239980568375, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1368,18 +1345,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1589, - "time": 0.17099829973281516, + "noteOrder": 1205, + "time": 0.1295441664642539, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -1396,13 +1373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, + "lineGroupId": 10, "indexInLine": 1, "isSliding": false, - "noteOrder": 1638, - "time": 0.1761800663913853, + "noteOrder": 1205, + "time": 0.1295441664642539, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1414,16 +1391,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1734, - "time": 0.18654359970852563, + "noteOrder": 1253, + "time": 0.13472593312282408, "position": { "x": 4, "y": 0 @@ -1442,13 +1419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, + "lineGroupId": 13, "indexInLine": 1, "isSliding": false, - "noteOrder": 1782, - "time": 0.19172536636709578, + "noteOrder": 1349, + "time": 0.14508946643996437, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1465,13 +1442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, + "lineGroupId": 13, "indexInLine": 2, "isSliding": false, - "noteOrder": 1830, - "time": 0.19690713302566595, + "noteOrder": 1373, + "time": 0.14768034976924946, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1488,13 +1465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1830, - "time": 0.19690713302566595, + "noteOrder": 1373, + "time": 0.14768034976924946, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1506,18 +1483,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, + "lineGroupId": 14, "indexInLine": 1, "isSliding": false, - "noteOrder": 1878, - "time": 0.2020888996842361, + "noteOrder": 1397, + "time": 0.15027123309853452, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1534,13 +1511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, + "lineGroupId": 14, "indexInLine": 2, "isSliding": false, - "noteOrder": 1926, - "time": 0.20727066634280628, + "noteOrder": 1421, + "time": 0.1528621164278196, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1557,11 +1534,11 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1926, - "time": 0.20727066634280628, + "noteOrder": 1421, + "time": 0.1528621164278196, "position": { "x": 4, "y": 0 @@ -1575,18 +1552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 15, "indexInLine": 1, "isSliding": false, - "noteOrder": 1975, - "time": 0.21245243300137642, + "noteOrder": 1445, + "time": 0.1554529997571047, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1603,13 +1580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 15, "indexInLine": 2, "isSliding": false, - "noteOrder": 2023, - "time": 0.2176341996599466, + "noteOrder": 1469, + "time": 0.15804388308638975, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1626,13 +1603,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2023, - "time": 0.2176341996599466, + "noteOrder": 1469, + "time": 0.15804388308638975, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1644,18 +1621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, + "lineGroupId": 16, "indexInLine": 1, "isSliding": false, - "noteOrder": 2071, - "time": 0.22281596631851674, + "noteOrder": 1494, + "time": 0.16063476641567484, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1672,13 +1649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, + "lineGroupId": 16, "indexInLine": 2, "isSliding": false, - "noteOrder": 2119, - "time": 0.2279977329770869, + "noteOrder": 1518, + "time": 0.1632256497449599, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1695,13 +1672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2312, - "time": 0.2487247996113675, + "noteOrder": 1518, + "time": 0.1632256497449599, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1718,13 +1695,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 2408, - "time": 0.2590883329285078, + "noteOrder": 1542, + "time": 0.165816533074245, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -1736,18 +1713,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2504, - "time": 0.26945186624564815, + "noteOrder": 1590, + "time": 0.17099829973281513, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -1759,18 +1736,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, + "lineGroupId": 18, "indexInLine": 1, "isSliding": false, - "noteOrder": 2649, - "time": 0.28499716622135857, + "noteOrder": 1590, + "time": 0.17099829973281513, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1787,13 +1764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2697, - "time": 0.2901789328799288, + "noteOrder": 1638, + "time": 0.1761800663913853, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1805,18 +1782,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, + "lineGroupId": 21, "indexInLine": 1, "isSliding": false, - "noteOrder": 2842, - "time": 0.3057242328556392, + "noteOrder": 1734, + "time": 0.18654359970852563, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -1833,13 +1810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2890, - "time": 0.31090599951420944, + "noteOrder": 1783, + "time": 0.19172536636709578, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1856,11 +1833,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2938, - "time": 0.31608776617277956, + "noteOrder": 1831, + "time": 0.19690713302566593, "position": { "x": 3, "y": 0 @@ -1879,13 +1856,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 2, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2986, - "time": 0.32126953283134974, + "noteOrder": 1831, + "time": 0.19690713302566593, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1897,18 +1874,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2986, - "time": 0.32126953283134974, + "noteOrder": 1879, + "time": 0.2020888996842361, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1925,11 +1902,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3034, - "time": 0.32645129948991986, + "noteOrder": 1927, + "time": 0.20727066634280625, "position": { "x": 7, "y": 0 @@ -1948,13 +1925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 2, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3082, - "time": 0.33163306614849003, + "noteOrder": 1927, + "time": 0.20727066634280625, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1966,18 +1943,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3082, - "time": 0.33163306614849003, + "noteOrder": 1975, + "time": 0.2124524330013764, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1994,11 +1971,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3131, - "time": 0.3368148328070602, + "noteOrder": 2024, + "time": 0.21763419965994654, "position": { "x": 3, "y": 0 @@ -2017,13 +1994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 2, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3179, - "time": 0.3419965994656303, + "noteOrder": 2024, + "time": 0.21763419965994654, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2035,18 +2012,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3179, - "time": 0.3419965994656303, + "noteOrder": 2072, + "time": 0.22281596631851672, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2063,11 +2040,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3227, - "time": 0.3471783661242005, + "noteOrder": 2120, + "time": 0.22799773297708686, "position": { "x": 7, "y": 0 @@ -2086,13 +2063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 2, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3275, - "time": 0.3523601327827706, + "noteOrder": 2313, + "time": 0.2487247996113675, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2109,13 +2086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3323, - "time": 0.3575418994413408, + "noteOrder": 2409, + "time": 0.2590883329285078, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2132,13 +2109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 3371, - "time": 0.36272366609991097, + "noteOrder": 2505, + "time": 0.26945186624564815, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2155,13 +2132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, + "lineGroupId": 31, "indexInLine": 2, "isSliding": false, - "noteOrder": 3420, - "time": 0.36790543275848114, + "noteOrder": 2650, + "time": 0.2849971662213586, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2178,13 +2155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 3, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3468, - "time": 0.37308719941705126, + "noteOrder": 2698, + "time": 0.29017893287992874, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2196,18 +2173,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 4, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3660, - "time": 0.3938142660513319, + "noteOrder": 2843, + "time": 0.3057242328556392, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2219,18 +2196,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3323, - "time": 0.3575418994413408, + "noteOrder": 2891, + "time": 0.3109059995142094, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2247,11 +2224,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3564, - "time": 0.38345073273419156, + "noteOrder": 2939, + "time": 0.3160877661727795, "position": { "x": 3, "y": 0 @@ -2270,13 +2247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3612, - "time": 0.3886324993927618, + "noteOrder": 2987, + "time": 0.3212695328313497, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2293,13 +2270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 3, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3660, - "time": 0.3938142660513319, + "noteOrder": 2987, + "time": 0.3212695328313497, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2311,18 +2288,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4046, - "time": 0.4352683993198932, + "noteOrder": 3035, + "time": 0.3264512994899198, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2339,13 +2316,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4190, - "time": 0.4508136992956036, + "noteOrder": 3084, + "time": 0.33163306614849, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2362,13 +2339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4238, - "time": 0.4559954659541738, + "noteOrder": 3084, + "time": 0.33163306614849, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2385,13 +2362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4383, - "time": 0.47154076592988425, + "noteOrder": 3132, + "time": 0.33681483280706015, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2408,13 +2385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4816, - "time": 0.5181766658570156, + "noteOrder": 3180, + "time": 0.34199659946563027, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2431,13 +2408,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 4913, - "time": 0.5285401991741561, + "noteOrder": 3180, + "time": 0.34199659946563027, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2449,18 +2426,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 42, "indexInLine": 2, "isSliding": false, - "noteOrder": 5009, - "time": 0.5389037324912963, + "noteOrder": 3228, + "time": 0.34717836612420044, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2472,18 +2449,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 42, "indexInLine": 3, "isSliding": false, - "noteOrder": 5105, - "time": 0.5492672658084365, + "noteOrder": 3276, + "time": 0.3523601327827706, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2495,18 +2472,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 4, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5153, - "time": 0.5544490324670068, + "noteOrder": 3324, + "time": 0.35754189944134074, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2518,18 +2495,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5202, - "time": 0.5596307991255769, + "noteOrder": 3373, + "time": 0.3627236660999109, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2546,13 +2523,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5298, - "time": 0.5699943324427171, + "noteOrder": 3421, + "time": 0.36790543275848103, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2569,13 +2546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5394, - "time": 0.5803578657598576, + "noteOrder": 3469, + "time": 0.37308719941705126, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2592,11 +2569,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 3, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5490, - "time": 0.5907213990769978, + "noteOrder": 3662, + "time": 0.39381426605133185, "position": { "x": 7, "y": 0 @@ -2615,13 +2592,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 4, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5539, - "time": 0.595903165735568, + "noteOrder": 3324, + "time": 0.35754189944134074, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2633,18 +2610,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5587, - "time": 0.6010849323941382, + "noteOrder": 3565, + "time": 0.38345073273419156, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2661,13 +2638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5635, - "time": 0.6062666990527084, + "noteOrder": 3614, + "time": 0.38863249939276173, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2679,18 +2656,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5683, - "time": 0.6114484657112784, + "noteOrder": 3662, + "time": 0.39381426605133185, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2707,13 +2684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5731, - "time": 0.6166302323698486, + "noteOrder": 4047, + "time": 0.4352683993198931, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2730,13 +2707,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5779, - "time": 0.6218119990284189, + "noteOrder": 4192, + "time": 0.45081369929560355, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2748,16 +2725,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 5828, - "time": 0.626993765686989, + "noteOrder": 4240, + "time": 0.45599546595417373, "position": { "x": 2, "y": 0 @@ -2776,13 +2753,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5828, - "time": 0.626993765686989, + "noteOrder": 4384, + "time": 0.4715407659298842, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2794,18 +2771,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 5876, - "time": 0.6321755323455591, + "noteOrder": 4818, + "time": 0.5181766658570156, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2817,18 +2794,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5972, - "time": 0.6425390656626995, + "noteOrder": 4914, + "time": 0.5285401991741558, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2840,18 +2817,961 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5011, + "time": 0.5389037324912963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5107, + "time": 0.5492672658084365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5155, + "time": 0.5544490324670067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5203, + "time": 0.5596307991255769, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5300, + "time": 0.5699943324427172, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5396, + "time": 0.5803578657598575, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5493, + "time": 0.5907213990769978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5541, + "time": 0.595903165735568, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5589, + "time": 0.6010849323941381, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5613, + "time": 0.6036758157234232, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5613, + "time": 0.6036758157234232, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5637, + "time": 0.6062666990527082, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5661, + "time": 0.6088575823819934, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5661, + "time": 0.6088575823819934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5685, + "time": 0.6114484657112784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5709, + "time": 0.6140393490405635, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5709, + "time": 0.6140393490405635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5733, + "time": 0.6166302323698486, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5758, + "time": 0.6192211156991336, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5758, + "time": 0.6192211156991336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5782, + "time": 0.6218119990284188, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5830, + "time": 0.6269937656869888, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5830, + "time": 0.6269937656869888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5878, + "time": 0.632175532345559, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5974, + "time": 0.6425390656626994, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5998, + "time": 0.6451299489919844, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5998, + "time": 0.6451299489919844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6477208323212695, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6047, + "time": 0.6503117156505546, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6047, + "time": 0.6503117156505546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6529025989798396, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6095, + "time": 0.6554934823091247, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6095, + "time": 0.6554934823091247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6119, + "time": 0.6580843656384098, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6606752489676949, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6606752489676949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6167, + "time": 0.66326613229698, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6215, + "time": 0.6684478989555501, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6215, + "time": 0.6684478989555501, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6263, + "time": 0.6736296656141203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6360, + "time": 0.6839931989312605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6020, - "time": 0.6477208323212696, + "noteOrder": 6408, + "time": 0.6891749655898307, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2863,18 +3783,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6068, - "time": 0.6529025989798397, + "noteOrder": 6456, + "time": 0.6943567322484009, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2891,13 +3811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6117, - "time": 0.6580843656384099, + "noteOrder": 6456, + "time": 0.6943567322484009, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2914,13 +3834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6165, - "time": 0.6632661322969801, + "noteOrder": 6504, + "time": 0.6995384989069711, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2932,18 +3852,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6213, - "time": 0.6684478989555502, + "noteOrder": 6553, + "time": 0.7047202655655412, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2955,18 +3875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6213, - "time": 0.6684478989555502, + "noteOrder": 6553, + "time": 0.7047202655655412, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2978,18 +3898,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6261, - "time": 0.6736296656141204, + "noteOrder": 6601, + "time": 0.7099020322241113, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3001,18 +3921,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6357, - "time": 0.6839931989312606, + "noteOrder": 6649, + "time": 0.7150837988826815, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3029,13 +3949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 6406, - "time": 0.6891749655898308, + "noteOrder": 6649, + "time": 0.7150837988826815, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3047,18 +3967,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 86, "indexInLine": 2, "isSliding": false, - "noteOrder": 6454, - "time": 0.694356732248401, + "noteOrder": 6697, + "time": 0.7202655655412517, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3070,18 +3990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6454, - "time": 0.694356732248401, + "noteOrder": 6745, + "time": 0.7254473321998218, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3098,13 +4018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 6502, - "time": 0.6995384989069712, + "noteOrder": 6938, + "time": 0.7461743988341025, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3121,13 +4041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 91, "indexInLine": 2, "isSliding": false, - "noteOrder": 6550, - "time": 0.7047202655655412, + "noteOrder": 7034, + "time": 0.7565379321512429, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3144,13 +4064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6550, - "time": 0.7047202655655412, + "noteOrder": 7131, + "time": 0.7669014654683831, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3162,18 +4082,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6598, - "time": 0.7099020322241115, + "noteOrder": 7275, + "time": 0.7824467654440936, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3185,18 +4105,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 2, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6646, - "time": 0.7150837988826816, + "noteOrder": 7323, + "time": 0.7876285321026637, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3213,13 +4133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6646, - "time": 0.7150837988826816, + "noteOrder": 7468, + "time": 0.8031738320783742, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3231,18 +4151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 6695, - "time": 0.7202655655412518, + "noteOrder": 7516, + "time": 0.8083555987369444, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3259,13 +4179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 101, "indexInLine": 2, "isSliding": false, - "noteOrder": 6743, - "time": 0.7254473321998219, + "noteOrder": 7661, + "time": 0.8239008987126548, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3282,13 +4202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6935, - "time": 0.7461743988341025, + "noteOrder": 7709, + "time": 0.829082665371225, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3300,18 +4220,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7032, - "time": 0.7565379321512429, + "noteOrder": 7805, + "time": 0.8394461986883652, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3323,16 +4243,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7128, - "time": 0.7669014654683831, + "noteOrder": 7902, + "time": 0.8498097320055056, "position": { "x": 2, "y": 0 @@ -3351,13 +4271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7272, - "time": 0.7824467654440936, + "noteOrder": 7926, + "time": 0.8524006153347906, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3374,13 +4294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7321, - "time": 0.7876285321026638, + "noteOrder": 7926, + "time": 0.8524006153347906, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3392,18 +4312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 111, "indexInLine": 1, "isSliding": false, - "noteOrder": 7465, - "time": 0.8031738320783743, + "noteOrder": 7950, + "time": 0.8549914986640758, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3420,11 +4340,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7513, - "time": 0.8083555987369444, + "noteOrder": 7974, + "time": 0.8575823819933608, "position": { "x": 2, "y": 0 @@ -3438,18 +4358,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7658, - "time": 0.8239008987126549, + "noteOrder": 7974, + "time": 0.8575823819933608, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3461,18 +4381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7706, - "time": 0.8290826653712251, + "noteOrder": 7998, + "time": 0.8601732653226459, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3484,18 +4404,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7802, - "time": 0.8394461986883653, + "noteOrder": 8022, + "time": 0.862764148651931, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3507,18 +4427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7899, - "time": 0.8498097320055057, + "noteOrder": 8022, + "time": 0.862764148651931, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3535,11 +4455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7947, - "time": 0.8549914986640759, + "noteOrder": 8046, + "time": 0.865355031981216, "position": { "x": 2, "y": 0 @@ -3558,11 +4478,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7995, - "time": 0.8601732653226459, + "noteOrder": 8070, + "time": 0.8679459153105011, "position": { "x": 2, "y": 0 @@ -3576,18 +4496,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8043, - "time": 0.8653550319812162, + "noteOrder": 8070, + "time": 0.8679459153105011, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3605,10 +4525,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8091, - "time": 0.8705367986397864, + "noteOrder": 8094, + "time": 0.8705367986397862, "position": { "x": 2, "y": 0 @@ -3628,9 +4548,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8236, + "noteOrder": 8239, "time": 0.8860820986154967, "position": { "x": 5, @@ -3651,10 +4571,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8284, - "time": 0.891263865274067, + "noteOrder": 8287, + "time": 0.8912638652740669, "position": { "x": 6, "y": 0 @@ -3674,10 +4594,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8332, - "time": 0.8964456319326372, + "noteOrder": 8335, + "time": 0.8964456319326369, "position": { "x": 7, "y": 0 @@ -3697,10 +4617,10 @@ }, { "lineGroupId": 118, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8380, - "time": 0.9016273985912072, + "noteOrder": 8383, + "time": 0.9016273985912071, "position": { "x": 7, "y": 0 @@ -3720,10 +4640,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8380, - "time": 0.9016273985912072, + "noteOrder": 8383, + "time": 0.9016273985912071, "position": { "x": 4, "y": 0 @@ -3743,10 +4663,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8428, - "time": 0.9068091652497774, + "noteOrder": 8432, + "time": 0.9068091652497773, "position": { "x": 3, "y": 0 @@ -3766,10 +4686,10 @@ }, { "lineGroupId": 119, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8477, - "time": 0.9119909319083476, + "noteOrder": 8480, + "time": 0.9119909319083475, "position": { "x": 3, "y": 0 @@ -3789,10 +4709,10 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8477, - "time": 0.9119909319083476, + "noteOrder": 8480, + "time": 0.9119909319083475, "position": { "x": 6, "y": 0 @@ -3812,10 +4732,10 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8525, - "time": 0.9171726985669177, + "noteOrder": 8528, + "time": 0.9171726985669176, "position": { "x": 7, "y": 0 @@ -3835,10 +4755,10 @@ }, { "lineGroupId": 120, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8549, - "time": 0.9197635818962028, + "noteOrder": 8552, + "time": 0.9197635818962027, "position": { "x": 7, "y": 0 @@ -3858,10 +4778,10 @@ }, { "lineGroupId": 120, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8597, - "time": 0.924945348554773, + "noteOrder": 8600, + "time": 0.9249453485547728, "position": { "x": 5, "y": 0 @@ -3881,10 +4801,10 @@ }, { "lineGroupId": 120, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 8669, - "time": 0.9327179985426283, + "noteOrder": 8672, + "time": 0.932717998542628, "position": { "x": 5, "y": 0 @@ -3904,10 +4824,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8669, - "time": 0.9327179985426283, + "noteOrder": 8672, + "time": 0.932717998542628, "position": { "x": 5, "y": 0 @@ -3927,10 +4847,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8717, - "time": 0.9378997652011983, + "noteOrder": 8721, + "time": 0.9378997652011982, "position": { "x": 4, "y": 0 @@ -3950,10 +4870,10 @@ }, { "lineGroupId": 123, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8765, - "time": 0.9430815318597685, + "noteOrder": 8769, + "time": 0.9430815318597684, "position": { "x": 2, "y": 0 @@ -3973,10 +4893,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8765, - "time": 0.9430815318597685, + "noteOrder": 8769, + "time": 0.9430815318597684, "position": { "x": 7, "y": 0 @@ -3996,10 +4916,10 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8790, - "time": 0.9456724151890537, + "noteOrder": 8793, + "time": 0.9456724151890534, "position": { "x": 6, "y": 0 @@ -4019,10 +4939,10 @@ }, { "lineGroupId": 124, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8814, - "time": 0.9482632985183387, + "noteOrder": 8817, + "time": 0.9482632985183385, "position": { "x": 5, "y": 0 @@ -4042,10 +4962,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8814, - "time": 0.9482632985183387, + "noteOrder": 8817, + "time": 0.9482632985183385, "position": { "x": 3, "y": 0 @@ -4065,10 +4985,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8838, - "time": 0.9508541818476237, + "noteOrder": 8841, + "time": 0.9508541818476236, "position": { "x": 4, "y": 0 @@ -4088,10 +5008,10 @@ }, { "lineGroupId": 125, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8862, - "time": 0.9534450651769087, + "noteOrder": 8865, + "time": 0.9534450651769086, "position": { "x": 4, "y": 0 @@ -4111,10 +5031,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8862, - "time": 0.9534450651769087, + "noteOrder": 8865, + "time": 0.9534450651769086, "position": { "x": 5, "y": 0 @@ -4134,10 +5054,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8910, - "time": 0.958626831835479, + "noteOrder": 8913, + "time": 0.9586268318354789, "position": { "x": 6, "y": 0 @@ -4157,9 +5077,9 @@ }, { "lineGroupId": 126, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8958, + "noteOrder": 8962, "time": 0.9638085984940491, "position": { "x": 8, @@ -4180,9 +5100,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8958, + "noteOrder": 8962, "time": 0.9638085984940491, "position": { "x": 3, @@ -4203,10 +5123,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8982, - "time": 0.9663994818233342, + "noteOrder": 8986, + "time": 0.9663994818233341, "position": { "x": 4, "y": 0 @@ -4226,9 +5146,9 @@ }, { "lineGroupId": 127, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9006, + "noteOrder": 9010, "time": 0.9689903651526193, "position": { "x": 4, @@ -4249,9 +5169,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9006, + "noteOrder": 9010, "time": 0.9689903651526193, "position": { "x": 6, @@ -4272,10 +5192,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9030, - "time": 0.9715812484819044, + "noteOrder": 9034, + "time": 0.9715812484819043, "position": { "x": 6, "y": 0 @@ -4295,10 +5215,10 @@ }, { "lineGroupId": 128, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9054, - "time": 0.9741721318111894, + "noteOrder": 9058, + "time": 0.9741721318111893, "position": { "x": 5, "y": 0 diff --git a/tracks/DUAL STRIKER/info.json b/tracks/DUAL STRIKER/info.json index 7c7d1d28..7ff13330 100644 --- a/tracks/DUAL STRIKER/info.json +++ b/tracks/DUAL STRIKER/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "DUAL STRIKER", - "SongLength": "135.601633", + "SongLength": "125.648980", "SongAuthorName": "Mayumi Morinaga,Fernweh by BEMANI Sound Team \"L.E.D. & Hu\u03a3eR\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Dance With The Dead/378_difficulty_1a.json b/tracks/Dance With The Dead/378_difficulty_1a.json index 0c8f6271..11de95b6 100644 --- a/tracks/Dance With The Dead/378_difficulty_1a.json +++ b/tracks/Dance With The Dead/378_difficulty_1a.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 492, - "time": 0.07221031253525893, + "noteOrder": 493, + "time": 0.07221031253525895, "position": { "x": 6, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 689, - "time": 0.10109443754936251, + "noteOrder": 690, + "time": 0.10109443754936254, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 1108, - "time": 0.16247320320433262, + "time": 0.16247320320433264, "position": { "x": 4, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 1157, - "time": 0.1696942344578585, + "noteOrder": 1158, + "time": 0.16969423445785856, "position": { "x": 6, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 1699, - "time": 0.24912557824664333, + "noteOrder": 1700, + "time": 0.2491255782466434, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 1724, - "time": 0.2527360938734063, + "time": 0.25273609387340634, "position": { "x": 8, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1748, + "noteOrder": 1749, "time": 0.25634660950016924, "position": { "x": 4, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1797, + "noteOrder": 1798, "time": 0.26356764075369515, "position": { "x": 6, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1822, - "time": 0.26717815638045805, + "noteOrder": 1823, + "time": 0.2671781563804581, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1847, - "time": 0.270788672007221, + "time": 0.27078867200722107, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1897, "time": 0.2780097032607469, "position": { "x": 4, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.2852307345142728, + "noteOrder": 1946, + "time": 0.28523073451427283, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.33577795328895405, + "noteOrder": 2291, + "time": 0.3357779532889541, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2339, - "time": 0.34299898454247996, + "noteOrder": 2340, + "time": 0.34299898454248, "position": { "x": 5, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2733, + "noteOrder": 2734, "time": 0.40076723457068714, "position": { "x": 6, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2782, - "time": 0.407988265824213, + "noteOrder": 2784, + "time": 0.40798826582421305, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2881, - "time": 0.42243032833126476, + "noteOrder": 2882, + "time": 0.42243032833126487, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.42965135958479067, + "noteOrder": 2931, + "time": 0.4296513595847907, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2979, - "time": 0.4368723908383166, + "noteOrder": 2981, + "time": 0.43687239083831664, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3644, - "time": 0.5343563127609161, + "noteOrder": 3646, + "time": 0.5343563127609162, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3669, - "time": 0.5379668283876791, + "noteOrder": 3670, + "time": 0.5379668283876792, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.5885140471623603, + "noteOrder": 4015, + "time": 0.5885140471623604, "position": { "x": 4, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4038, - "time": 0.5921245627891233, + "noteOrder": 4040, + "time": 0.5921245627891234, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.7112715784723005, + "noteOrder": 4853, + "time": 0.7112715784723006, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.7148820940990634, + "noteOrder": 4877, + "time": 0.7148820940990637, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.7184926097258264, + "noteOrder": 4902, + "time": 0.7184926097258265, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5072, - "time": 0.7437662191131671, + "noteOrder": 5074, + "time": 0.7437662191131672, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.7509872503666929, + "noteOrder": 5124, + "time": 0.7509872503666931, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5245, - "time": 0.7690398285005077, + "noteOrder": 5247, + "time": 0.7690398285005078, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5257, - "time": 0.7708450863138891, + "noteOrder": 5259, + "time": 0.7708450863138893, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5269, - "time": 0.7726503441272706, + "noteOrder": 5272, + "time": 0.7726503441272707, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5294, - "time": 0.7762608597540336, + "noteOrder": 5296, + "time": 0.7762608597540337, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5343, + "noteOrder": 5345, "time": 0.7834818910075595, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5392, - "time": 0.7907029222610854, + "noteOrder": 5395, + "time": 0.7907029222610855, "position": { "x": 3, "y": 0 @@ -696,10 +696,10 @@ "lineNodes": [ { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 886, - "time": 0.12997856256346607, + "noteOrder": 887, + "time": 0.1299785625634661, "position": { "x": 6, "y": 0 @@ -719,10 +719,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 911, - "time": 0.13358907819022903, + "time": 0.13358907819022905, "position": { "x": 6, "y": 0 @@ -742,10 +742,10 @@ }, { "lineGroupId": 12, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 936, - "time": 0.13719959381699198, + "time": 0.137199593816992, "position": { "x": 6, "y": 0 @@ -765,10 +765,10 @@ }, { "lineGroupId": 12, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 960, - "time": 0.14081010944375494, + "noteOrder": 961, + "time": 0.14081010944375497, "position": { "x": 6, "y": 0 @@ -788,10 +788,10 @@ }, { "lineGroupId": 12, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 985, - "time": 0.14442062507051787, + "time": 0.1444206250705179, "position": { "x": 6, "y": 0 @@ -811,10 +811,10 @@ }, { "lineGroupId": 12, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1010, - "time": 0.14803114069728082, + "time": 0.14803114069728085, "position": { "x": 7, "y": 0 @@ -834,10 +834,10 @@ }, { "lineGroupId": 12, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1034, - "time": 0.15164165632404375, + "noteOrder": 1035, + "time": 0.15164165632404378, "position": { "x": 6, "y": 0 @@ -857,10 +857,10 @@ }, { "lineGroupId": 12, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1059, - "time": 0.15525217195080673, + "time": 0.15525217195080676, "position": { "x": 7, "y": 0 @@ -880,10 +880,10 @@ }, { "lineGroupId": 12, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1083, - "time": 0.15886268757756966, + "noteOrder": 1084, + "time": 0.1588626875775697, "position": { "x": 6, "y": 0 @@ -903,10 +903,10 @@ }, { "lineGroupId": 12, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, "noteOrder": 1108, - "time": 0.16247320320433262, + "time": 0.16247320320433264, "position": { "x": 6, "y": 0 @@ -926,10 +926,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 886, - "time": 0.12997856256346607, + "noteOrder": 887, + "time": 0.1299785625634661, "position": { "x": 4, "y": 0 @@ -949,10 +949,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 911, - "time": 0.13358907819022903, + "time": 0.13358907819022905, "position": { "x": 3, "y": 0 @@ -972,10 +972,10 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 936, - "time": 0.13719959381699198, + "time": 0.137199593816992, "position": { "x": 4, "y": 0 @@ -995,10 +995,10 @@ }, { "lineGroupId": 13, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 960, - "time": 0.14081010944375494, + "noteOrder": 961, + "time": 0.14081010944375497, "position": { "x": 3, "y": 0 @@ -1018,10 +1018,10 @@ }, { "lineGroupId": 13, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 985, - "time": 0.14442062507051787, + "time": 0.1444206250705179, "position": { "x": 4, "y": 0 @@ -1041,10 +1041,10 @@ }, { "lineGroupId": 13, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1010, - "time": 0.14803114069728082, + "time": 0.14803114069728085, "position": { "x": 4, "y": 0 @@ -1064,10 +1064,10 @@ }, { "lineGroupId": 13, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1034, - "time": 0.15164165632404375, + "noteOrder": 1035, + "time": 0.15164165632404378, "position": { "x": 4, "y": 0 @@ -1087,10 +1087,10 @@ }, { "lineGroupId": 13, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1059, - "time": 0.15525217195080673, + "time": 0.15525217195080676, "position": { "x": 4, "y": 0 @@ -1110,10 +1110,10 @@ }, { "lineGroupId": 13, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1083, - "time": 0.15886268757756966, + "noteOrder": 1084, + "time": 0.1588626875775697, "position": { "x": 4, "y": 0 @@ -1133,10 +1133,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1133, - "time": 0.16608371883109554, + "time": 0.16608371883109557, "position": { "x": 4, "y": 0 @@ -1156,10 +1156,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1157, - "time": 0.1696942344578585, + "noteOrder": 1158, + "time": 0.16969423445785856, "position": { "x": 4, "y": 0 @@ -1179,10 +1179,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1182, - "time": 0.17330475008462146, + "time": 0.17330475008462148, "position": { "x": 6, "y": 0 @@ -1202,7 +1202,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1207, "time": 0.1769152657113844, @@ -1225,10 +1225,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1231, - "time": 0.18052578133814734, + "noteOrder": 1232, + "time": 0.18052578133814737, "position": { "x": 4, "y": 0 @@ -1248,7 +1248,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1256, "time": 0.1841362969649103, @@ -1271,10 +1271,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1280, - "time": 0.18774681259167322, + "noteOrder": 1281, + "time": 0.18774681259167328, "position": { "x": 5, "y": 0 @@ -1294,9 +1294,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1305, + "noteOrder": 1306, "time": 0.1913573282184362, "position": { "x": 5, @@ -1317,10 +1317,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1330, - "time": 0.19496784384519913, + "time": 0.19496784384519916, "position": { "x": 7, "y": 0 @@ -1340,10 +1340,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1354, - "time": 0.19857835947196206, + "noteOrder": 1355, + "time": 0.1985783594719621, "position": { "x": 7, "y": 0 @@ -1363,10 +1363,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1330, - "time": 0.19496784384519913, + "time": 0.19496784384519916, "position": { "x": 3, "y": 0 @@ -1386,10 +1386,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1354, - "time": 0.19857835947196206, + "noteOrder": 1355, + "time": 0.1985783594719621, "position": { "x": 3, "y": 0 @@ -1409,10 +1409,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1379, - "time": 0.20218887509872502, + "time": 0.20218887509872507, "position": { "x": 6, "y": 0 @@ -1432,10 +1432,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1404, - "time": 0.20579939072548795, + "time": 0.205799390725488, "position": { "x": 6, "y": 0 @@ -1455,10 +1455,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1379, - "time": 0.20218887509872502, + "time": 0.20218887509872507, "position": { "x": 4, "y": 0 @@ -1478,10 +1478,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1404, - "time": 0.20579939072548795, + "time": 0.205799390725488, "position": { "x": 4, "y": 0 @@ -1501,10 +1501,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1428, - "time": 0.20940990635225093, + "noteOrder": 1429, + "time": 0.20940990635225096, "position": { "x": 6, "y": 0 @@ -1524,10 +1524,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1477, - "time": 0.2166309376057768, + "noteOrder": 1478, + "time": 0.21663093760577684, "position": { "x": 6, "y": 0 @@ -1547,10 +1547,10 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1490, - "time": 0.2184361954191583, + "time": 0.21843619541915832, "position": { "x": 7, "y": 0 @@ -1570,10 +1570,10 @@ }, { "lineGroupId": 29, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1502, - "time": 0.22024145323253974, + "noteOrder": 1503, + "time": 0.2202414532325398, "position": { "x": 6, "y": 0 @@ -1593,9 +1593,9 @@ }, { "lineGroupId": 29, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.22204671104592125, "position": { "x": 7, @@ -1616,10 +1616,10 @@ }, { "lineGroupId": 29, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1527, - "time": 0.2238519688593027, + "time": 0.22385196885930272, "position": { "x": 6, "y": 0 @@ -1639,10 +1639,10 @@ }, { "lineGroupId": 29, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1539, - "time": 0.22565722667268417, + "noteOrder": 1540, + "time": 0.22565722667268423, "position": { "x": 7, "y": 0 @@ -1662,10 +1662,10 @@ }, { "lineGroupId": 29, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1551, - "time": 0.22746248448606565, + "noteOrder": 1552, + "time": 0.22746248448606568, "position": { "x": 6, "y": 0 @@ -1685,10 +1685,10 @@ }, { "lineGroupId": 29, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 1564, - "time": 0.22926774229944713, + "time": 0.22926774229944716, "position": { "x": 7, "y": 0 @@ -1708,10 +1708,10 @@ }, { "lineGroupId": 29, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1576, - "time": 0.2310730001128286, + "noteOrder": 1577, + "time": 0.23107300011282864, "position": { "x": 6, "y": 0 @@ -1731,10 +1731,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1428, - "time": 0.20940990635225093, + "noteOrder": 1429, + "time": 0.20940990635225096, "position": { "x": 4, "y": 0 @@ -1754,10 +1754,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1477, - "time": 0.2166309376057768, + "noteOrder": 1478, + "time": 0.21663093760577684, "position": { "x": 4, "y": 0 @@ -1777,10 +1777,10 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1490, - "time": 0.2184361954191583, + "time": 0.21843619541915832, "position": { "x": 3, "y": 0 @@ -1800,10 +1800,10 @@ }, { "lineGroupId": 30, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1502, - "time": 0.22024145323253974, + "noteOrder": 1503, + "time": 0.2202414532325398, "position": { "x": 4, "y": 0 @@ -1823,9 +1823,9 @@ }, { "lineGroupId": 30, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.22204671104592125, "position": { "x": 3, @@ -1846,10 +1846,10 @@ }, { "lineGroupId": 30, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1527, - "time": 0.2238519688593027, + "time": 0.22385196885930272, "position": { "x": 4, "y": 0 @@ -1869,10 +1869,10 @@ }, { "lineGroupId": 30, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1539, - "time": 0.22565722667268417, + "noteOrder": 1540, + "time": 0.22565722667268423, "position": { "x": 3, "y": 0 @@ -1892,10 +1892,10 @@ }, { "lineGroupId": 30, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1551, - "time": 0.22746248448606565, + "noteOrder": 1552, + "time": 0.22746248448606568, "position": { "x": 4, "y": 0 @@ -1915,10 +1915,10 @@ }, { "lineGroupId": 30, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 1564, - "time": 0.22926774229944713, + "time": 0.22926774229944716, "position": { "x": 3, "y": 0 @@ -1938,10 +1938,10 @@ }, { "lineGroupId": 30, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1576, - "time": 0.2310730001128286, + "noteOrder": 1577, + "time": 0.23107300011282864, "position": { "x": 4, "y": 0 @@ -1961,10 +1961,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1674, - "time": 0.2455150626198804, + "noteOrder": 1675, + "time": 0.24551506261988043, "position": { "x": 6, "y": 0 @@ -1984,10 +1984,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1724, - "time": 0.2527360938734063, + "time": 0.25273609387340634, "position": { "x": 6, "y": 0 @@ -2007,9 +2007,9 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1736, + "noteOrder": 1737, "time": 0.25454135168678776, "position": { "x": 6, @@ -2030,9 +2030,9 @@ }, { "lineGroupId": 32, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1748, + "noteOrder": 1749, "time": 0.25634660950016924, "position": { "x": 6, @@ -2053,7 +2053,7 @@ }, { "lineGroupId": 32, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1761, "time": 0.2581518673135507, @@ -2076,10 +2076,10 @@ }, { "lineGroupId": 32, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1773, - "time": 0.25995712512693214, + "noteOrder": 1774, + "time": 0.2599571251269322, "position": { "x": 6, "y": 0 @@ -2099,10 +2099,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1773, - "time": 0.25995712512693214, + "noteOrder": 1774, + "time": 0.2599571251269322, "position": { "x": 4, "y": 0 @@ -2122,10 +2122,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1785, - "time": 0.2617623829403136, + "noteOrder": 1786, + "time": 0.2617623829403137, "position": { "x": 4, "y": 0 @@ -2145,9 +2145,9 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1797, + "noteOrder": 1798, "time": 0.26356764075369515, "position": { "x": 4, @@ -2168,10 +2168,10 @@ }, { "lineGroupId": 37, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1810, - "time": 0.2653728985670766, + "noteOrder": 1811, + "time": 0.26537289856707663, "position": { "x": 4, "y": 0 @@ -2191,10 +2191,10 @@ }, { "lineGroupId": 37, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1822, - "time": 0.26717815638045805, + "noteOrder": 1823, + "time": 0.2671781563804581, "position": { "x": 4, "y": 0 @@ -2214,10 +2214,10 @@ }, { "lineGroupId": 37, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1834, - "time": 0.26898341419383953, + "noteOrder": 1835, + "time": 0.2689834141938396, "position": { "x": 4, "y": 0 @@ -2237,10 +2237,10 @@ }, { "lineGroupId": 37, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1847, - "time": 0.270788672007221, + "time": 0.27078867200722107, "position": { "x": 4, "y": 0 @@ -2260,10 +2260,10 @@ }, { "lineGroupId": 37, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1859, - "time": 0.2725939298206025, + "noteOrder": 1860, + "time": 0.27259392982060254, "position": { "x": 4, "y": 0 @@ -2283,10 +2283,10 @@ }, { "lineGroupId": 37, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1871, - "time": 0.27439918763398397, + "noteOrder": 1872, + "time": 0.274399187633984, "position": { "x": 4, "y": 0 @@ -2306,10 +2306,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1871, - "time": 0.27439918763398397, + "noteOrder": 1872, + "time": 0.274399187633984, "position": { "x": 6, "y": 0 @@ -2329,9 +2329,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1896, + "noteOrder": 1897, "time": 0.2780097032607469, "position": { "x": 7, @@ -2352,10 +2352,10 @@ }, { "lineGroupId": 42, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1921, - "time": 0.2816202188875099, + "time": 0.28162021888750993, "position": { "x": 7, "y": 0 @@ -2375,10 +2375,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1921, - "time": 0.2816202188875099, + "time": 0.28162021888750993, "position": { "x": 4, "y": 0 @@ -2398,10 +2398,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1945, - "time": 0.2852307345142728, + "noteOrder": 1946, + "time": 0.28523073451427283, "position": { "x": 4, "y": 0 @@ -2421,10 +2421,10 @@ }, { "lineGroupId": 44, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1970, - "time": 0.28884125014103573, + "noteOrder": 1971, + "time": 0.2888412501410358, "position": { "x": 4, "y": 0 @@ -2444,10 +2444,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1970, - "time": 0.28884125014103573, + "noteOrder": 1971, + "time": 0.2888412501410358, "position": { "x": 7, "y": 0 @@ -2465,11 +2465,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.29064650795441727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1983, + "time": 0.29064650795441727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.29245176576779874, "position": { "x": 3, @@ -2488,12 +2534,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2008, + "time": 0.2942570235811802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2008, + "time": 0.2942570235811802, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.2960622813945617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.29606228139456164, + "noteOrder": 2032, + "time": 0.2978675392079431, "position": { "x": 7, "y": 0 @@ -2511,12 +2626,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2032, + "time": 0.2978675392079431, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2044, - "time": 0.2996727970213246, + "noteOrder": 2045, + "time": 0.29967279702132466, "position": { "x": 3, "y": 0 @@ -2535,11 +2673,34 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2118, - "time": 0.31050434390161347, + "noteOrder": 2057, + "time": 0.30147805483470613, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2057, + "time": 0.30147805483470613, "position": { "x": 5, "y": 0 @@ -2561,8 +2722,8 @@ "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2216, - "time": 0.32494640640866523, + "noteOrder": 2118, + "time": 0.3105043439016135, "position": { "x": 5, "y": 0 @@ -2584,10 +2745,10 @@ "lineGroupId": 52, "indexInLine": 2, "isSliding": false, - "noteOrder": 2228, - "time": 0.32675166422204666, + "noteOrder": 2217, + "time": 0.3249464064086653, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2607,10 +2768,10 @@ "lineGroupId": 52, "indexInLine": 3, "isSliding": false, - "noteOrder": 2241, - "time": 0.3285569220354282, + "noteOrder": 2229, + "time": 0.3267516642220467, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2630,10 +2791,10 @@ "lineGroupId": 52, "indexInLine": 4, "isSliding": false, - "noteOrder": 2253, - "time": 0.33036217984880967, + "noteOrder": 2242, + "time": 0.32855692203542824, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2653,10 +2814,10 @@ "lineGroupId": 52, "indexInLine": 5, "isSliding": false, - "noteOrder": 2265, - "time": 0.3321674376621911, + "noteOrder": 2254, + "time": 0.33036217984880967, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2676,8 +2837,8 @@ "lineGroupId": 52, "indexInLine": 6, "isSliding": false, - "noteOrder": 2315, - "time": 0.339388468915717, + "noteOrder": 2266, + "time": 0.33216743766219115, "position": { "x": 5, "y": 0 @@ -2696,13 +2857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2118, - "time": 0.31050434390161347, + "noteOrder": 2316, + "time": 0.3393884689157171, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2714,7 +2875,7 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, @@ -2722,8 +2883,8 @@ "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2216, - "time": 0.32494640640866523, + "noteOrder": 2118, + "time": 0.3105043439016135, "position": { "x": 7, "y": 0 @@ -2745,8 +2906,8 @@ "lineGroupId": 53, "indexInLine": 2, "isSliding": false, - "noteOrder": 2228, - "time": 0.32675166422204666, + "noteOrder": 2217, + "time": 0.3249464064086653, "position": { "x": 7, "y": 0 @@ -2768,8 +2929,8 @@ "lineGroupId": 53, "indexInLine": 3, "isSliding": false, - "noteOrder": 2241, - "time": 0.3285569220354282, + "noteOrder": 2229, + "time": 0.3267516642220467, "position": { "x": 7, "y": 0 @@ -2791,8 +2952,8 @@ "lineGroupId": 53, "indexInLine": 4, "isSliding": false, - "noteOrder": 2253, - "time": 0.33036217984880967, + "noteOrder": 2242, + "time": 0.32855692203542824, "position": { "x": 7, "y": 0 @@ -2814,8 +2975,8 @@ "lineGroupId": 53, "indexInLine": 5, "isSliding": false, - "noteOrder": 2265, - "time": 0.3321674376621911, + "noteOrder": 2254, + "time": 0.33036217984880967, "position": { "x": 7, "y": 0 @@ -2834,11 +2995,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2315, - "time": 0.339388468915717, + "noteOrder": 2266, + "time": 0.33216743766219115, "position": { "x": 7, "y": 0 @@ -2860,8 +3021,8 @@ "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2364, - "time": 0.3466095001692429, + "noteOrder": 2316, + "time": 0.3393884689157171, "position": { "x": 7, "y": 0 @@ -2880,13 +3041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2462, - "time": 0.3610515626762947, + "noteOrder": 2365, + "time": 0.34660950016924297, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2898,7 +3059,7 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, @@ -2906,8 +3067,8 @@ "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 2487, - "time": 0.36466207830305764, + "noteOrder": 2463, + "time": 0.36105156267629473, "position": { "x": 4, "y": 0 @@ -2929,8 +3090,8 @@ "lineGroupId": 63, "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.3664673361164391, + "noteOrder": 2488, + "time": 0.3646620783030577, "position": { "x": 4, "y": 0 @@ -2952,8 +3113,8 @@ "lineGroupId": 63, "indexInLine": 3, "isSliding": false, - "noteOrder": 2512, - "time": 0.3682725939298206, + "noteOrder": 2500, + "time": 0.36646733611643917, "position": { "x": 4, "y": 0 @@ -2972,13 +3133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2512, + "noteOrder": 2513, "time": 0.3682725939298206, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2990,7 +3151,7 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, @@ -2998,8 +3159,8 @@ "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 2524, - "time": 0.37007785174320207, + "noteOrder": 2513, + "time": 0.3682725939298206, "position": { "x": 6, "y": 0 @@ -3021,8 +3182,8 @@ "lineGroupId": 65, "indexInLine": 2, "isSliding": false, - "noteOrder": 2536, - "time": 0.37188310955658355, + "noteOrder": 2525, + "time": 0.3700778517432021, "position": { "x": 6, "y": 0 @@ -3044,8 +3205,8 @@ "lineGroupId": 65, "indexInLine": 3, "isSliding": false, - "noteOrder": 2548, - "time": 0.37368836736996497, + "noteOrder": 2537, + "time": 0.3718831095565836, "position": { "x": 6, "y": 0 @@ -3067,8 +3228,8 @@ "lineGroupId": 65, "indexInLine": 4, "isSliding": false, - "noteOrder": 2561, - "time": 0.37549362518334645, + "noteOrder": 2550, + "time": 0.373688367369965, "position": { "x": 6, "y": 0 @@ -3090,10 +3251,10 @@ "lineGroupId": 65, "indexInLine": 5, "isSliding": false, - "noteOrder": 2585, - "time": 0.3791041408101094, + "noteOrder": 2562, + "time": 0.37549362518334656, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3113,7 +3274,30 @@ "lineGroupId": 65, "indexInLine": 6, "isSliding": false, - "noteOrder": 2610, + "noteOrder": 2586, + "time": 0.37910414081010946, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2611, "time": 0.3827146564368724, "position": { "x": 8, @@ -3134,10 +3318,10 @@ }, { "lineGroupId": 65, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2635, - "time": 0.3863251720636353, + "noteOrder": 2636, + "time": 0.38632517206363537, "position": { "x": 7, "y": 0 @@ -3157,10 +3341,10 @@ }, { "lineGroupId": 65, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2659, - "time": 0.38993568769039827, + "noteOrder": 2660, + "time": 0.3899356876903983, "position": { "x": 6, "y": 0 @@ -3180,10 +3364,10 @@ }, { "lineGroupId": 65, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 2709, - "time": 0.3971567189439241, + "noteOrder": 2710, + "time": 0.3971567189439242, "position": { "x": 6, "y": 0 @@ -3203,10 +3387,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2561, - "time": 0.37549362518334645, + "noteOrder": 2562, + "time": 0.37549362518334656, "position": { "x": 4, "y": 0 @@ -3226,10 +3410,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2585, - "time": 0.3791041408101094, + "noteOrder": 2586, + "time": 0.37910414081010946, "position": { "x": 5, "y": 0 @@ -3249,9 +3433,9 @@ }, { "lineGroupId": 66, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2610, + "noteOrder": 2611, "time": 0.3827146564368724, "position": { "x": 5, @@ -3272,10 +3456,10 @@ }, { "lineGroupId": 66, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2635, - "time": 0.3863251720636353, + "noteOrder": 2636, + "time": 0.38632517206363537, "position": { "x": 5, "y": 0 @@ -3295,10 +3479,10 @@ }, { "lineGroupId": 66, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2659, - "time": 0.38993568769039827, + "noteOrder": 2660, + "time": 0.3899356876903983, "position": { "x": 4, "y": 0 @@ -3318,10 +3502,10 @@ }, { "lineGroupId": 66, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2709, - "time": 0.3971567189439241, + "noteOrder": 2710, + "time": 0.3971567189439242, "position": { "x": 4, "y": 0 @@ -3341,10 +3525,10 @@ }, { "lineGroupId": 66, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2721, - "time": 0.3989619767573056, + "noteOrder": 2722, + "time": 0.3989619767573057, "position": { "x": 3, "y": 0 @@ -3364,9 +3548,9 @@ }, { "lineGroupId": 66, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2733, + "noteOrder": 2734, "time": 0.40076723457068714, "position": { "x": 4, @@ -3387,10 +3571,10 @@ }, { "lineGroupId": 66, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2745, - "time": 0.40257249238406856, + "noteOrder": 2747, + "time": 0.4025724923840686, "position": { "x": 3, "y": 0 @@ -3410,10 +3594,10 @@ }, { "lineGroupId": 66, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 2758, - "time": 0.40437775019745004, + "noteOrder": 2759, + "time": 0.40437775019745015, "position": { "x": 4, "y": 0 @@ -3433,10 +3617,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2758, - "time": 0.40437775019745004, + "noteOrder": 2759, + "time": 0.40437775019745015, "position": { "x": 6, "y": 0 @@ -3456,9 +3640,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2770, + "noteOrder": 2771, "time": 0.40618300801083157, "position": { "x": 7, @@ -3479,10 +3663,10 @@ }, { "lineGroupId": 71, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2782, - "time": 0.407988265824213, + "noteOrder": 2784, + "time": 0.40798826582421305, "position": { "x": 6, "y": 0 @@ -3502,10 +3686,10 @@ }, { "lineGroupId": 71, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2795, - "time": 0.40979352363759447, + "noteOrder": 2796, + "time": 0.4097935236375945, "position": { "x": 7, "y": 0 @@ -3525,10 +3709,10 @@ }, { "lineGroupId": 71, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2856, - "time": 0.41881981270450186, + "noteOrder": 2857, + "time": 0.4188198127045019, "position": { "x": 5, "y": 0 @@ -3548,10 +3732,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2856, - "time": 0.41881981270450186, + "noteOrder": 2857, + "time": 0.4188198127045019, "position": { "x": 4, "y": 0 @@ -3571,10 +3755,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2881, - "time": 0.42243032833126476, + "noteOrder": 2882, + "time": 0.42243032833126487, "position": { "x": 4, "y": 0 @@ -3594,9 +3778,9 @@ }, { "lineGroupId": 75, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2893, + "noteOrder": 2894, "time": 0.4242355861446463, "position": { "x": 4, @@ -3617,10 +3801,10 @@ }, { "lineGroupId": 75, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2906, - "time": 0.4260408439580277, + "noteOrder": 2907, + "time": 0.42604084395802777, "position": { "x": 4, "y": 0 @@ -3640,10 +3824,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2906, - "time": 0.4260408439580277, + "noteOrder": 2907, + "time": 0.42604084395802777, "position": { "x": 6, "y": 0 @@ -3663,10 +3847,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2930, - "time": 0.42965135958479067, + "noteOrder": 2931, + "time": 0.4296513595847907, "position": { "x": 6, "y": 0 @@ -3686,10 +3870,10 @@ }, { "lineGroupId": 78, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2942, - "time": 0.43145661739817215, + "noteOrder": 2944, + "time": 0.4314566173981722, "position": { "x": 6, "y": 0 @@ -3709,10 +3893,10 @@ }, { "lineGroupId": 78, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2955, - "time": 0.4332618752115536, + "noteOrder": 2956, + "time": 0.4332618752115537, "position": { "x": 6, "y": 0 @@ -3732,10 +3916,10 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2955, - "time": 0.4332618752115536, + "noteOrder": 2956, + "time": 0.4332618752115537, "position": { "x": 4, "y": 0 @@ -3755,10 +3939,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2979, - "time": 0.4368723908383166, + "noteOrder": 2981, + "time": 0.43687239083831664, "position": { "x": 4, "y": 0 @@ -3778,10 +3962,10 @@ }, { "lineGroupId": 80, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2992, - "time": 0.43867764865169806, + "noteOrder": 2993, + "time": 0.4386776486516981, "position": { "x": 4, "y": 0 @@ -3801,10 +3985,10 @@ }, { "lineGroupId": 80, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3004, - "time": 0.4404829064650795, + "noteOrder": 3005, + "time": 0.4404829064650796, "position": { "x": 4, "y": 0 @@ -3824,10 +4008,10 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3004, - "time": 0.4404829064650795, + "noteOrder": 3005, + "time": 0.4404829064650796, "position": { "x": 6, "y": 0 @@ -3847,10 +4031,10 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3016, - "time": 0.442288164278461, + "noteOrder": 3018, + "time": 0.44228816427846107, "position": { "x": 5, "y": 0 @@ -3870,10 +4054,10 @@ }, { "lineGroupId": 82, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3041, - "time": 0.4458986799052239, + "noteOrder": 3042, + "time": 0.445898679905224, "position": { "x": 5, "y": 0 @@ -3893,10 +4077,10 @@ }, { "lineGroupId": 82, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3053, - "time": 0.4477039377186054, + "noteOrder": 3055, + "time": 0.44770393771860545, "position": { "x": 6, "y": 0 @@ -3916,10 +4100,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3103, - "time": 0.4549249689721313, + "noteOrder": 3104, + "time": 0.45492496897213136, "position": { "x": 5, "y": 0 @@ -3939,10 +4123,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3250, - "time": 0.476588062732709, + "noteOrder": 3252, + "time": 0.47658806273270904, "position": { "x": 5, "y": 0 @@ -3962,10 +4146,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3121, - "time": 0.4576328556922035, + "noteOrder": 3122, + "time": 0.4576328556922036, "position": { "x": 4, "y": 0 @@ -3985,10 +4169,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3152, - "time": 0.4621460002256572, + "noteOrder": 3153, + "time": 0.46214600022565727, "position": { "x": 7, "y": 0 @@ -4008,10 +4192,10 @@ }, { "lineGroupId": 85, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3176, - "time": 0.4657565158524201, + "noteOrder": 3178, + "time": 0.4657565158524202, "position": { "x": 7, "y": 0 @@ -4031,10 +4215,10 @@ }, { "lineGroupId": 85, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3201, - "time": 0.46936703147918307, + "noteOrder": 3202, + "time": 0.4693670314791832, "position": { "x": 3, "y": 0 @@ -4054,10 +4238,10 @@ }, { "lineGroupId": 85, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3250, - "time": 0.476588062732709, + "noteOrder": 3252, + "time": 0.47658806273270904, "position": { "x": 3, "y": 0 @@ -4077,10 +4261,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, - "time": 0.5993455940426492, + "noteOrder": 4089, + "time": 0.5993455940426493, "position": { "x": 5, "y": 0 @@ -4100,10 +4284,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4112, - "time": 0.6029561096694122, + "noteOrder": 4114, + "time": 0.6029561096694123, "position": { "x": 5, "y": 0 @@ -4123,10 +4307,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4137, - "time": 0.606566625296175, + "noteOrder": 4138, + "time": 0.6065666252961751, "position": { "x": 5, "y": 0 @@ -4146,10 +4330,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4161, - "time": 0.6101771409229381, + "noteOrder": 4163, + "time": 0.6101771409229382, "position": { "x": 5, "y": 0 @@ -4169,10 +4353,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4186, - "time": 0.6137876565497009, + "noteOrder": 4188, + "time": 0.613787656549701, "position": { "x": 7, "y": 0 @@ -4192,10 +4376,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4334, - "time": 0.6354507503102786, + "noteOrder": 4335, + "time": 0.6354507503102788, "position": { "x": 7, "y": 0 @@ -4215,10 +4399,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4186, - "time": 0.6137876565497009, + "noteOrder": 4188, + "time": 0.613787656549701, "position": { "x": 3, "y": 0 @@ -4238,10 +4422,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4334, - "time": 0.6354507503102786, + "noteOrder": 4335, + "time": 0.6354507503102788, "position": { "x": 3, "y": 0 @@ -4261,10 +4445,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.678776937831434, + "noteOrder": 4631, + "time": 0.6787769378314342, "position": { "x": 6, "y": 0 @@ -4284,10 +4468,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4641, - "time": 0.6805821956448155, + "noteOrder": 4643, + "time": 0.6805821956448156, "position": { "x": 6, "y": 0 @@ -4307,10 +4491,10 @@ }, { "lineGroupId": 117, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4654, - "time": 0.682387453458197, + "noteOrder": 4656, + "time": 0.6823874534581971, "position": { "x": 6, "y": 0 @@ -4330,10 +4514,10 @@ }, { "lineGroupId": 117, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4666, - "time": 0.6841927112715784, + "noteOrder": 4668, + "time": 0.6841927112715785, "position": { "x": 6, "y": 0 @@ -4353,10 +4537,10 @@ }, { "lineGroupId": 117, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4678, - "time": 0.6859979690849599, + "noteOrder": 4680, + "time": 0.68599796908496, "position": { "x": 6, "y": 0 @@ -4376,10 +4560,10 @@ }, { "lineGroupId": 117, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4691, - "time": 0.6878032268983414, + "noteOrder": 4693, + "time": 0.6878032268983415, "position": { "x": 6, "y": 0 @@ -4399,10 +4583,10 @@ }, { "lineGroupId": 117, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4703, - "time": 0.6896084847117228, + "noteOrder": 4705, + "time": 0.6896084847117229, "position": { "x": 6, "y": 0 @@ -4422,10 +4606,10 @@ }, { "lineGroupId": 117, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4715, - "time": 0.6914137425251043, + "noteOrder": 4717, + "time": 0.6914137425251045, "position": { "x": 6, "y": 0 @@ -4445,10 +4629,10 @@ }, { "lineGroupId": 117, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4728, - "time": 0.6932190003384858, + "noteOrder": 4730, + "time": 0.6932190003384859, "position": { "x": 6, "y": 0 @@ -4468,10 +4652,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4678, - "time": 0.6859979690849599, + "noteOrder": 4680, + "time": 0.68599796908496, "position": { "x": 4, "y": 0 @@ -4491,10 +4675,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4691, - "time": 0.6878032268983414, + "noteOrder": 4693, + "time": 0.6878032268983415, "position": { "x": 3, "y": 0 @@ -4514,10 +4698,10 @@ }, { "lineGroupId": 118, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4703, - "time": 0.6896084847117228, + "noteOrder": 4705, + "time": 0.6896084847117229, "position": { "x": 4, "y": 0 @@ -4537,10 +4721,10 @@ }, { "lineGroupId": 118, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4715, - "time": 0.6914137425251043, + "noteOrder": 4717, + "time": 0.6914137425251045, "position": { "x": 3, "y": 0 @@ -4560,10 +4744,10 @@ }, { "lineGroupId": 118, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4728, - "time": 0.6932190003384858, + "noteOrder": 4730, + "time": 0.6932190003384859, "position": { "x": 4, "y": 0 @@ -4583,9 +4767,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4826, + "noteOrder": 4828, "time": 0.7076610628455376, "position": { "x": 4, @@ -4606,10 +4790,10 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4851, - "time": 0.7112715784723005, + "noteOrder": 4853, + "time": 0.7112715784723006, "position": { "x": 4, "y": 0 @@ -4629,9 +4813,9 @@ }, { "lineGroupId": 120, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4863, + "noteOrder": 4865, "time": 0.7130768362856821, "position": { "x": 4, @@ -4652,10 +4836,10 @@ }, { "lineGroupId": 120, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4875, - "time": 0.7148820940990634, + "noteOrder": 4877, + "time": 0.7148820940990637, "position": { "x": 4, "y": 0 @@ -4675,10 +4859,10 @@ }, { "lineGroupId": 120, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4900, - "time": 0.7184926097258264, + "noteOrder": 4902, + "time": 0.7184926097258265, "position": { "x": 4, "y": 0 @@ -4698,10 +4882,10 @@ }, { "lineGroupId": 120, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4912, - "time": 0.7202978675392079, + "noteOrder": 4914, + "time": 0.720297867539208, "position": { "x": 4, "y": 0 @@ -4721,10 +4905,10 @@ }, { "lineGroupId": 120, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4925, - "time": 0.7221031253525894, + "noteOrder": 4927, + "time": 0.7221031253525895, "position": { "x": 4, "y": 0 @@ -4744,10 +4928,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4925, - "time": 0.7221031253525894, + "noteOrder": 4927, + "time": 0.7221031253525895, "position": { "x": 7, "y": 0 @@ -4767,9 +4951,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4949, + "noteOrder": 4951, "time": 0.7257136409793523, "position": { "x": 7, @@ -4790,10 +4974,10 @@ }, { "lineGroupId": 124, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4962, - "time": 0.7275188987927338, + "noteOrder": 4964, + "time": 0.7275188987927339, "position": { "x": 5, "y": 0 @@ -4813,10 +4997,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4974, - "time": 0.7293241566061153, + "noteOrder": 4976, + "time": 0.7293241566061154, "position": { "x": 3, "y": 0 @@ -4836,10 +5020,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.7329346722328782, + "noteOrder": 5001, + "time": 0.7329346722328783, "position": { "x": 3, "y": 0 @@ -4859,10 +5043,10 @@ }, { "lineGroupId": 126, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5011, - "time": 0.7347399300462597, + "noteOrder": 5013, + "time": 0.7347399300462598, "position": { "x": 4, "y": 0 @@ -4882,9 +5066,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.7365451878596412, "position": { "x": 7, @@ -4905,10 +5089,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5035, - "time": 0.7383504456730227, + "noteOrder": 5038, + "time": 0.7383504456730228, "position": { "x": 6, "y": 0 @@ -4928,10 +5112,10 @@ }, { "lineGroupId": 127, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5048, - "time": 0.7401557034864041, + "noteOrder": 5050, + "time": 0.7401557034864042, "position": { "x": 7, "y": 0 @@ -4951,10 +5135,10 @@ }, { "lineGroupId": 127, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5072, - "time": 0.7437662191131671, + "noteOrder": 5074, + "time": 0.7437662191131672, "position": { "x": 6, "y": 0 @@ -4974,10 +5158,10 @@ }, { "lineGroupId": 127, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5085, - "time": 0.7455714769265485, + "noteOrder": 5087, + "time": 0.7455714769265486, "position": { "x": 7, "y": 0 @@ -4997,10 +5181,10 @@ }, { "lineGroupId": 127, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5097, - "time": 0.7473767347399299, + "noteOrder": 5099, + "time": 0.74737673473993, "position": { "x": 6, "y": 0 @@ -5020,10 +5204,10 @@ }, { "lineGroupId": 127, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5122, - "time": 0.7509872503666929, + "noteOrder": 5124, + "time": 0.7509872503666931, "position": { "x": 7, "y": 0 @@ -5043,10 +5227,10 @@ }, { "lineGroupId": 127, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5134, - "time": 0.7527925081800744, + "noteOrder": 5136, + "time": 0.7527925081800746, "position": { "x": 6, "y": 0 @@ -5066,9 +5250,9 @@ }, { "lineGroupId": 127, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5146, + "noteOrder": 5148, "time": 0.754597765993456, "position": { "x": 7, @@ -5089,10 +5273,10 @@ }, { "lineGroupId": 127, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5171, - "time": 0.7582082816202188, + "noteOrder": 5173, + "time": 0.7582082816202189, "position": { "x": 6, "y": 0 @@ -5112,10 +5296,10 @@ }, { "lineGroupId": 127, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5195, - "time": 0.7618187972469818, + "noteOrder": 5198, + "time": 0.761818797246982, "position": { "x": 7, "y": 0 @@ -5135,10 +5319,10 @@ }, { "lineGroupId": 127, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5208, - "time": 0.7636240550603632, + "noteOrder": 5210, + "time": 0.7636240550603633, "position": { "x": 6, "y": 0 @@ -5158,9 +5342,9 @@ }, { "lineGroupId": 127, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.7654293128737448, "position": { "x": 7, @@ -5181,10 +5365,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5319, - "time": 0.7798713753807965, + "noteOrder": 5321, + "time": 0.7798713753807966, "position": { "x": 4, "y": 0 @@ -5204,10 +5388,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5368, - "time": 0.7870924066343223, + "noteOrder": 5370, + "time": 0.7870924066343226, "position": { "x": 5, "y": 0 @@ -5227,10 +5411,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5368, - "time": 0.7870924066343223, + "noteOrder": 5370, + "time": 0.7870924066343226, "position": { "x": 6, "y": 0 @@ -5250,10 +5434,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5417, - "time": 0.7943134378878483, + "noteOrder": 5419, + "time": 0.7943134378878484, "position": { "x": 4, "y": 0 @@ -5273,10 +5457,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5614, - "time": 0.8231975629019518, + "noteOrder": 5616, + "time": 0.823197562901952, "position": { "x": 6, "y": 0 @@ -5296,10 +5480,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5663, - "time": 0.8304185941554778, + "noteOrder": 5666, + "time": 0.8304185941554779, "position": { "x": 6, "y": 0 @@ -5319,10 +5503,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5663, - "time": 0.8304185941554778, + "noteOrder": 5666, + "time": 0.8304185941554779, "position": { "x": 4, "y": 0 @@ -5342,10 +5526,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5700, - "time": 0.8358343675956222, + "noteOrder": 5703, + "time": 0.8358343675956224, "position": { "x": 4, "y": 0 @@ -5365,10 +5549,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5700, - "time": 0.8358343675956222, + "noteOrder": 5703, + "time": 0.8358343675956224, "position": { "x": 6, "y": 0 @@ -5388,9 +5572,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5737, + "noteOrder": 5740, "time": 0.8412501410357667, "position": { "x": 6, @@ -5411,9 +5595,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5737, + "noteOrder": 5740, "time": 0.8412501410357667, "position": { "x": 4, @@ -5434,10 +5618,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5762, - "time": 0.8448606566625295, + "noteOrder": 5764, + "time": 0.8448606566625297, "position": { "x": 4, "y": 0 @@ -5457,10 +5641,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5762, - "time": 0.8448606566625295, + "noteOrder": 5764, + "time": 0.8448606566625297, "position": { "x": 6, "y": 0 @@ -5480,10 +5664,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5811, - "time": 0.8520816879160554, + "noteOrder": 5813, + "time": 0.8520816879160555, "position": { "x": 6, "y": 0 @@ -5503,10 +5687,10 @@ }, { "lineGroupId": 150, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5836, - "time": 0.8556922035428184, + "noteOrder": 5838, + "time": 0.8556922035428186, "position": { "x": 6, "y": 0 @@ -5526,10 +5710,10 @@ }, { "lineGroupId": 150, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5860, - "time": 0.8593027191695813, + "noteOrder": 5863, + "time": 0.8593027191695815, "position": { "x": 6, "y": 0 @@ -5549,10 +5733,10 @@ }, { "lineGroupId": 150, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5885, - "time": 0.8629132347963443, + "noteOrder": 5887, + "time": 0.8629132347963444, "position": { "x": 7, "y": 0 @@ -5572,10 +5756,10 @@ }, { "lineGroupId": 150, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5910, - "time": 0.8665237504231073, + "noteOrder": 5912, + "time": 0.8665237504231074, "position": { "x": 6, "y": 0 @@ -5595,10 +5779,10 @@ }, { "lineGroupId": 150, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5922, - "time": 0.8683290082364887, + "noteOrder": 5924, + "time": 0.8683290082364888, "position": { "x": 7, "y": 0 @@ -5618,10 +5802,10 @@ }, { "lineGroupId": 150, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5934, - "time": 0.8701342660498701, + "noteOrder": 5937, + "time": 0.8701342660498703, "position": { "x": 6, "y": 0 @@ -5641,10 +5825,10 @@ }, { "lineGroupId": 150, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5946, - "time": 0.8719395238632517, + "noteOrder": 5949, + "time": 0.8719395238632518, "position": { "x": 7, "y": 0 @@ -5664,10 +5848,10 @@ }, { "lineGroupId": 150, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5959, - "time": 0.8737447816766332, + "noteOrder": 5961, + "time": 0.8737447816766333, "position": { "x": 6, "y": 0 @@ -5687,10 +5871,10 @@ }, { "lineGroupId": 150, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5971, - "time": 0.8755500394900145, + "noteOrder": 5974, + "time": 0.8755500394900146, "position": { "x": 7, "y": 0 @@ -5710,10 +5894,10 @@ }, { "lineGroupId": 150, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5983, - "time": 0.8773552973033961, + "noteOrder": 5986, + "time": 0.8773552973033962, "position": { "x": 6, "y": 0 @@ -5733,10 +5917,10 @@ }, { "lineGroupId": 150, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 5996, - "time": 0.8791605551167776, + "noteOrder": 5998, + "time": 0.8791605551167777, "position": { "x": 7, "y": 0 @@ -5756,10 +5940,10 @@ }, { "lineGroupId": 150, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 6008, - "time": 0.880965812930159, + "noteOrder": 6011, + "time": 0.8809658129301592, "position": { "x": 6, "y": 0 @@ -5779,10 +5963,10 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5811, - "time": 0.8520816879160554, + "noteOrder": 5813, + "time": 0.8520816879160555, "position": { "x": 4, "y": 0 @@ -5802,10 +5986,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5836, - "time": 0.8556922035428184, + "noteOrder": 5838, + "time": 0.8556922035428186, "position": { "x": 3, "y": 0 @@ -5825,10 +6009,10 @@ }, { "lineGroupId": 152, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5860, - "time": 0.8593027191695813, + "noteOrder": 5863, + "time": 0.8593027191695815, "position": { "x": 4, "y": 0 @@ -5848,10 +6032,10 @@ }, { "lineGroupId": 152, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5885, - "time": 0.8629132347963443, + "noteOrder": 5887, + "time": 0.8629132347963444, "position": { "x": 4, "y": 0 @@ -5871,10 +6055,10 @@ }, { "lineGroupId": 152, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5910, - "time": 0.8665237504231073, + "noteOrder": 5912, + "time": 0.8665237504231074, "position": { "x": 4, "y": 0 @@ -5894,10 +6078,10 @@ }, { "lineGroupId": 152, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5922, - "time": 0.8683290082364887, + "noteOrder": 5924, + "time": 0.8683290082364888, "position": { "x": 3, "y": 0 @@ -5917,10 +6101,10 @@ }, { "lineGroupId": 152, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5934, - "time": 0.8701342660498701, + "noteOrder": 5937, + "time": 0.8701342660498703, "position": { "x": 4, "y": 0 @@ -5940,10 +6124,10 @@ }, { "lineGroupId": 152, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5946, - "time": 0.8719395238632517, + "noteOrder": 5949, + "time": 0.8719395238632518, "position": { "x": 3, "y": 0 @@ -5963,10 +6147,10 @@ }, { "lineGroupId": 152, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5959, - "time": 0.8737447816766332, + "noteOrder": 5961, + "time": 0.8737447816766333, "position": { "x": 4, "y": 0 @@ -5986,10 +6170,10 @@ }, { "lineGroupId": 152, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5971, - "time": 0.8755500394900145, + "noteOrder": 5974, + "time": 0.8755500394900146, "position": { "x": 3, "y": 0 @@ -6009,10 +6193,10 @@ }, { "lineGroupId": 152, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5983, - "time": 0.8773552973033961, + "noteOrder": 5986, + "time": 0.8773552973033962, "position": { "x": 4, "y": 0 @@ -6032,10 +6216,10 @@ }, { "lineGroupId": 152, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5996, - "time": 0.8791605551167776, + "noteOrder": 5998, + "time": 0.8791605551167777, "position": { "x": 3, "y": 0 @@ -6055,10 +6239,10 @@ }, { "lineGroupId": 152, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 6008, - "time": 0.880965812930159, + "noteOrder": 6011, + "time": 0.8809658129301592, "position": { "x": 4, "y": 0 @@ -6078,9 +6262,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6057, + "noteOrder": 6060, "time": 0.888186844183685, "position": { "x": 6, @@ -6101,10 +6285,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6094, - "time": 0.8936026176238294, + "noteOrder": 6097, + "time": 0.8936026176238295, "position": { "x": 6, "y": 0 @@ -6124,10 +6308,10 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6094, - "time": 0.8936026176238294, + "noteOrder": 6097, + "time": 0.8936026176238295, "position": { "x": 4, "y": 0 @@ -6147,10 +6331,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6131, - "time": 0.8990183910639737, + "noteOrder": 6134, + "time": 0.8990183910639739, "position": { "x": 4, "y": 0 @@ -6170,10 +6354,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6131, - "time": 0.8990183910639737, + "noteOrder": 6134, + "time": 0.8990183910639739, "position": { "x": 6, "y": 0 @@ -6193,10 +6377,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6156, - "time": 0.9026289066907367, + "noteOrder": 6158, + "time": 0.9026289066907369, "position": { "x": 6, "y": 0 @@ -6216,10 +6400,10 @@ }, { "lineGroupId": 158, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6168, - "time": 0.9044341645041182, + "noteOrder": 6171, + "time": 0.9044341645041183, "position": { "x": 6, "y": 0 @@ -6239,10 +6423,10 @@ }, { "lineGroupId": 158, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6180, - "time": 0.9062394223174997, + "noteOrder": 6183, + "time": 0.9062394223174998, "position": { "x": 6, "y": 0 @@ -6262,10 +6446,10 @@ }, { "lineGroupId": 158, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6193, - "time": 0.9080446801308811, + "noteOrder": 6195, + "time": 0.9080446801308812, "position": { "x": 6, "y": 0 @@ -6285,10 +6469,10 @@ }, { "lineGroupId": 158, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6205, - "time": 0.9098499379442626, + "noteOrder": 6208, + "time": 0.9098499379442627, "position": { "x": 6, "y": 0 @@ -6308,10 +6492,10 @@ }, { "lineGroupId": 158, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6217, - "time": 0.9116551957576441, + "noteOrder": 6220, + "time": 0.9116551957576443, "position": { "x": 7, "y": 0 @@ -6331,10 +6515,10 @@ }, { "lineGroupId": 158, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 6230, - "time": 0.9134604535710256, + "noteOrder": 6232, + "time": 0.9134604535710257, "position": { "x": 7, "y": 0 @@ -6354,10 +6538,10 @@ }, { "lineGroupId": 158, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 6242, - "time": 0.915265711384407, + "noteOrder": 6245, + "time": 0.9152657113844072, "position": { "x": 6, "y": 0 @@ -6377,10 +6561,10 @@ }, { "lineGroupId": 158, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 6254, - "time": 0.9170709691977885, + "noteOrder": 6257, + "time": 0.9170709691977886, "position": { "x": 6, "y": 0 @@ -6400,10 +6584,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6254, - "time": 0.9170709691977885, + "noteOrder": 6257, + "time": 0.9170709691977886, "position": { "x": 4, "y": 0 @@ -6423,10 +6607,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6267, - "time": 0.91887622701117, + "noteOrder": 6269, + "time": 0.9188762270111701, "position": { "x": 4, "y": 0 @@ -6446,10 +6630,10 @@ }, { "lineGroupId": 160, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6279, - "time": 0.9206814848245515, + "noteOrder": 6281, + "time": 0.9206814848245516, "position": { "x": 4, "y": 0 @@ -6469,10 +6653,10 @@ }, { "lineGroupId": 160, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6291, - "time": 0.9224867426379328, + "noteOrder": 6294, + "time": 0.922486742637933, "position": { "x": 4, "y": 0 @@ -6492,10 +6676,10 @@ }, { "lineGroupId": 160, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6304, - "time": 0.9242920004513144, + "noteOrder": 6306, + "time": 0.9242920004513145, "position": { "x": 4, "y": 0 @@ -6515,10 +6699,10 @@ }, { "lineGroupId": 160, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6316, - "time": 0.9260972582646958, + "noteOrder": 6318, + "time": 0.926097258264696, "position": { "x": 4, "y": 0 @@ -6538,10 +6722,10 @@ }, { "lineGroupId": 160, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6328, - "time": 0.9279025160780773, + "noteOrder": 6331, + "time": 0.9279025160780775, "position": { "x": 4, "y": 0 @@ -6561,10 +6745,10 @@ }, { "lineGroupId": 160, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 6340, - "time": 0.9297077738914589, + "noteOrder": 6343, + "time": 0.929707773891459, "position": { "x": 4, "y": 0 @@ -6584,10 +6768,10 @@ }, { "lineGroupId": 160, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 6353, - "time": 0.9315130317048402, + "noteOrder": 6355, + "time": 0.9315130317048405, "position": { "x": 4, "y": 0 @@ -6607,10 +6791,10 @@ }, { "lineGroupId": 160, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 6365, - "time": 0.9333182895182217, + "noteOrder": 6368, + "time": 0.9333182895182218, "position": { "x": 4, "y": 0 @@ -6630,10 +6814,10 @@ }, { "lineGroupId": 160, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 6377, - "time": 0.9351235473316033, + "noteOrder": 6380, + "time": 0.9351235473316034, "position": { "x": 4, "y": 0 @@ -6653,10 +6837,10 @@ }, { "lineGroupId": 160, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 6402, - "time": 0.9387340629583661, + "noteOrder": 6405, + "time": 0.9387340629583664, "position": { "x": 5, "y": 0 @@ -6676,10 +6860,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6402, - "time": 0.9387340629583661, + "noteOrder": 6405, + "time": 0.9387340629583664, "position": { "x": 7, "y": 0 @@ -6699,10 +6883,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6500, - "time": 0.953176125465418, + "noteOrder": 6503, + "time": 0.9531761254654181, "position": { "x": 7, "y": 0 @@ -6722,10 +6906,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6500, - "time": 0.953176125465418, + "noteOrder": 6503, + "time": 0.9531761254654181, "position": { "x": 5, "y": 0 @@ -6745,10 +6929,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6599, - "time": 0.9676181879724697, + "noteOrder": 6602, + "time": 0.9676181879724699, "position": { "x": 5, "y": 0 diff --git a/tracks/Dance With The Dead/378_difficulty_1b.json b/tracks/Dance With The Dead/378_difficulty_1b.json index bfeeb148..2667e7d8 100644 --- a/tracks/Dance With The Dead/378_difficulty_1b.json +++ b/tracks/Dance With The Dead/378_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 936, - "time": 0.13719959381699198, + "time": 0.137199593816992, "position": { "x": 4, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 1034, - "time": 0.15164165632404375, + "noteOrder": 1035, + "time": 0.15164165632404378, "position": { "x": 6, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 1280, - "time": 0.18774681259167322, + "noteOrder": 1281, + "time": 0.18774681259167328, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 1330, - "time": 0.19496784384519913, + "time": 0.19496784384519916, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 1379, - "time": 0.20218887509872502, + "time": 0.20218887509872507, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1428, - "time": 0.20940990635225093, + "noteOrder": 1429, + "time": 0.20940990635225096, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1724, - "time": 0.2527360938734063, + "time": 0.25273609387340634, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1773, - "time": 0.25995712512693214, + "noteOrder": 1774, + "time": 0.2599571251269322, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1822, - "time": 0.26717815638045805, + "noteOrder": 1823, + "time": 0.2671781563804581, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1921, - "time": 0.2816202188875099, + "time": 0.28162021888750993, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1970, - "time": 0.28884125014103573, + "noteOrder": 1971, + "time": 0.2888412501410358, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.29606228139456164, + "noteOrder": 2020, + "time": 0.2960622813945617, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2068, - "time": 0.3032833126480875, + "noteOrder": 2069, + "time": 0.30328331264808756, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2315, - "time": 0.339388468915717, + "noteOrder": 2316, + "time": 0.3393884689157171, "position": { "x": 5, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2413, + "noteOrder": 2414, "time": 0.3538305314227688, "position": { "x": 5, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2512, + "noteOrder": 2513, "time": 0.3682725939298206, "position": { "x": 6, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.37549362518334645, + "noteOrder": 2562, + "time": 0.37549362518334656, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2610, + "noteOrder": 2611, "time": 0.3827146564368724, "position": { "x": 6, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2709, - "time": 0.3971567189439241, + "noteOrder": 2710, + "time": 0.3971567189439242, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2758, - "time": 0.40437775019745004, + "noteOrder": 2759, + "time": 0.40437775019745015, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2807, - "time": 0.4115987814509759, + "noteOrder": 2808, + "time": 0.411598781450976, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3103, - "time": 0.4549249689721313, + "noteOrder": 3104, + "time": 0.45492496897213136, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3201, - "time": 0.46936703147918307, + "noteOrder": 3202, + "time": 0.4693670314791832, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.7148820940990634, + "noteOrder": 4877, + "time": 0.7148820940990637, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4974, - "time": 0.7293241566061153, + "noteOrder": 4976, + "time": 0.7293241566061154, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.7365451878596412, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.7509872503666929, + "noteOrder": 5124, + "time": 0.7509872503666931, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5663, - "time": 0.8304185941554778, + "noteOrder": 5666, + "time": 0.8304185941554779, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5762, - "time": 0.8448606566625295, + "noteOrder": 5764, + "time": 0.8448606566625297, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6156, - "time": 0.9026289066907367, + "noteOrder": 6158, + "time": 0.9026289066907369, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6254, - "time": 0.9170709691977885, + "noteOrder": 6257, + "time": 0.9170709691977886, "position": { "x": 4, "y": 0 @@ -636,10 +636,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 886, - "time": 0.12997856256346607, + "noteOrder": 887, + "time": 0.1299785625634661, "position": { "x": 6, "y": 0 @@ -659,10 +659,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 985, - "time": 0.14442062507051787, + "time": 0.1444206250705179, "position": { "x": 6, "y": 0 @@ -682,10 +682,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 985, - "time": 0.14442062507051787, + "time": 0.1444206250705179, "position": { "x": 4, "y": 0 @@ -705,10 +705,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1083, - "time": 0.15886268757756966, + "noteOrder": 1084, + "time": 0.1588626875775697, "position": { "x": 4, "y": 0 @@ -728,10 +728,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1083, - "time": 0.15886268757756966, + "noteOrder": 1084, + "time": 0.1588626875775697, "position": { "x": 6, "y": 0 @@ -751,10 +751,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1182, - "time": 0.17330475008462146, + "time": 0.17330475008462148, "position": { "x": 6, "y": 0 @@ -774,10 +774,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1182, - "time": 0.17330475008462146, + "time": 0.17330475008462148, "position": { "x": 4, "y": 0 @@ -797,10 +797,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1280, - "time": 0.18774681259167322, + "noteOrder": 1281, + "time": 0.18774681259167328, "position": { "x": 4, "y": 0 @@ -820,10 +820,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1477, - "time": 0.2166309376057768, + "noteOrder": 1478, + "time": 0.21663093760577684, "position": { "x": 6, "y": 0 @@ -843,10 +843,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1576, - "time": 0.2310730001128286, + "noteOrder": 1577, + "time": 0.23107300011282864, "position": { "x": 6, "y": 0 @@ -866,10 +866,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1674, - "time": 0.2455150626198804, + "noteOrder": 1675, + "time": 0.24551506261988043, "position": { "x": 6, "y": 0 @@ -889,10 +889,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1871, - "time": 0.27439918763398397, + "noteOrder": 1872, + "time": 0.274399187633984, "position": { "x": 6, "y": 0 @@ -912,10 +912,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1871, - "time": 0.27439918763398397, + "noteOrder": 1872, + "time": 0.274399187633984, "position": { "x": 4, "y": 0 @@ -935,10 +935,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2068, - "time": 0.3032833126480875, + "noteOrder": 2069, + "time": 0.30328331264808756, "position": { "x": 4, "y": 0 @@ -958,10 +958,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3053, - "time": 0.4477039377186054, + "noteOrder": 3055, + "time": 0.44770393771860545, "position": { "x": 5, "y": 0 @@ -981,10 +981,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3152, - "time": 0.4621460002256572, + "noteOrder": 3153, + "time": 0.46214600022565727, "position": { "x": 5, "y": 0 @@ -1004,10 +1004,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3152, - "time": 0.4621460002256572, + "noteOrder": 3153, + "time": 0.46214600022565727, "position": { "x": 5, "y": 0 @@ -1027,10 +1027,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3250, - "time": 0.476588062732709, + "noteOrder": 3252, + "time": 0.47658806273270904, "position": { "x": 5, "y": 0 @@ -1050,10 +1050,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4038, - "time": 0.5921245627891233, + "noteOrder": 4040, + "time": 0.5921245627891234, "position": { "x": 6, "y": 0 @@ -1073,10 +1073,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4087, - "time": 0.5993455940426492, + "noteOrder": 4089, + "time": 0.5993455940426493, "position": { "x": 6, "y": 0 @@ -1096,10 +1096,10 @@ }, { "lineGroupId": 65, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4137, - "time": 0.606566625296175, + "noteOrder": 4138, + "time": 0.6065666252961751, "position": { "x": 5, "y": 0 @@ -1119,10 +1119,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4137, - "time": 0.606566625296175, + "noteOrder": 4138, + "time": 0.6065666252961751, "position": { "x": 4, "y": 0 @@ -1142,10 +1142,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4186, - "time": 0.6137876565497009, + "noteOrder": 4188, + "time": 0.613787656549701, "position": { "x": 4, "y": 0 @@ -1165,10 +1165,10 @@ }, { "lineGroupId": 67, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4235, - "time": 0.6210086878032269, + "noteOrder": 4237, + "time": 0.621008687803227, "position": { "x": 5, "y": 0 @@ -1188,10 +1188,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4432, - "time": 0.6498928128173305, + "noteOrder": 4434, + "time": 0.6498928128173306, "position": { "x": 4, "y": 0 @@ -1211,10 +1211,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4531, - "time": 0.6643348753243822, + "noteOrder": 4533, + "time": 0.6643348753243823, "position": { "x": 4, "y": 0 @@ -1234,10 +1234,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4531, - "time": 0.6643348753243822, + "noteOrder": 4533, + "time": 0.6643348753243823, "position": { "x": 6, "y": 0 @@ -1257,10 +1257,10 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4629, - "time": 0.678776937831434, + "noteOrder": 4631, + "time": 0.6787769378314342, "position": { "x": 6, "y": 0 @@ -1280,9 +1280,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4826, + "noteOrder": 4828, "time": 0.7076610628455376, "position": { "x": 5, @@ -1303,10 +1303,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4925, - "time": 0.7221031253525894, + "noteOrder": 4927, + "time": 0.7221031253525895, "position": { "x": 5, "y": 0 @@ -1326,10 +1326,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4925, - "time": 0.7221031253525894, + "noteOrder": 4927, + "time": 0.7221031253525895, "position": { "x": 5, "y": 0 @@ -1349,9 +1349,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.7365451878596412, "position": { "x": 5, @@ -1372,10 +1372,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5417, - "time": 0.7943134378878483, + "noteOrder": 5419, + "time": 0.7943134378878484, "position": { "x": 5, "y": 0 @@ -1395,10 +1395,10 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5516, - "time": 0.8087555003949001, + "noteOrder": 5518, + "time": 0.8087555003949003, "position": { "x": 5, "y": 0 @@ -1418,10 +1418,10 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5516, - "time": 0.8087555003949001, + "noteOrder": 5518, + "time": 0.8087555003949003, "position": { "x": 5, "y": 0 @@ -1441,10 +1441,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5614, - "time": 0.8231975629019518, + "noteOrder": 5616, + "time": 0.823197562901952, "position": { "x": 5, "y": 0 @@ -1464,10 +1464,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5860, - "time": 0.8593027191695813, + "noteOrder": 5863, + "time": 0.8593027191695815, "position": { "x": 4, "y": 0 @@ -1487,10 +1487,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6008, - "time": 0.880965812930159, + "noteOrder": 6011, + "time": 0.8809658129301592, "position": { "x": 4, "y": 0 @@ -1510,10 +1510,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5860, - "time": 0.8593027191695813, + "noteOrder": 5863, + "time": 0.8593027191695815, "position": { "x": 6, "y": 0 @@ -1533,10 +1533,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6107, - "time": 0.8954078754372108, + "noteOrder": 6109, + "time": 0.8954078754372109, "position": { "x": 6, "y": 0 @@ -1556,10 +1556,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6107, - "time": 0.8954078754372108, + "noteOrder": 6109, + "time": 0.8954078754372109, "position": { "x": 4, "y": 0 @@ -1579,10 +1579,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6205, - "time": 0.9098499379442626, + "noteOrder": 6208, + "time": 0.9098499379442627, "position": { "x": 4, "y": 0 @@ -1602,10 +1602,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6205, - "time": 0.9098499379442626, + "noteOrder": 6208, + "time": 0.9098499379442627, "position": { "x": 6, "y": 0 @@ -1625,10 +1625,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6304, - "time": 0.9242920004513144, + "noteOrder": 6306, + "time": 0.9242920004513145, "position": { "x": 6, "y": 0 diff --git a/tracks/Dance With The Dead/info.json b/tracks/Dance With The Dead/info.json index eb7ad2f2..024d713e 100644 --- a/tracks/Dance With The Dead/info.json +++ b/tracks/Dance With The Dead/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Dance With The Dead", - "SongLength": "123.663673", + "SongLength": "113.711020", "SongAuthorName": "BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1a.json b/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1a.json index 83f0ea49..6df69737 100644 --- a/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1a.json +++ b/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1a.json @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.07357449417535254, "position": { "x": 4, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.09809932556713673, + "noteOrder": 481, + "time": 0.09809932556713674, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 553, - "time": 0.11281422440220724, + "time": 0.11281422440220723, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 649, - "time": 0.13243408951563457, + "time": 0.1324340895156346, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 697, - "time": 0.14224402207234824, + "time": 0.14224402207234826, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.22072348252605764, "position": { "x": 8, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.2305334150827713, "position": { "x": 2, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.23543838136112813, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.24034334763948498, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.24524831391784183, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.24524831391784183, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.25015328019619865, "position": { "x": 3, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.25015328019619865, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.2795830778663397, "position": { "x": 6, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.2844880441446965, + "noteOrder": 1394, + "time": 0.28448804414469653, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.2893930104230533, + "noteOrder": 1418, + "time": 0.2893930104230534, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1514, - "time": 0.30901287553648066, + "time": 0.3090128755364807, "position": { "x": 2, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.35806253832004903, + "noteOrder": 1755, + "time": 0.3580625383200491, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.36296750459840593, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.3678724708767627, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.3776824034334764, "position": { "x": 2, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1898, - "time": 0.3874923359901901, + "noteOrder": 1899, + "time": 0.38749233599019006, "position": { "x": 8, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.4169221336603311, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.4267320662170448, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.43654199877375843, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2186, - "time": 0.4463519313304721, + "noteOrder": 2187, + "time": 0.44635193133047213, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.45616186388718577, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.46597179644389947, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.4757817290006131, + "noteOrder": 2331, + "time": 0.47578172900061316, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2378, + "noteOrder": 2380, "time": 0.4855916615573268, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.49540159411404044, + "noteOrder": 2428, + "time": 0.4954015941140405, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.5052115266707541, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.5150214592274678, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.5248313917841815, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.5297363580625383, + "noteOrder": 2596, + "time": 0.5297363580625384, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.5321888412017167, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.5346413243408952, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2631, + "noteOrder": 2632, "time": 0.5370938074800735, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2859, + "noteOrder": 2860, "time": 0.5836909871244635, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.6082158185162477, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3003, - "time": 0.6131207847946044, + "noteOrder": 3004, + "time": 0.6131207847946045, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3027, - "time": 0.6180257510729613, + "noteOrder": 3028, + "time": 0.6180257510729614, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3027, - "time": 0.6180257510729613, + "noteOrder": 3028, + "time": 0.6180257510729614, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3053, "time": 0.6229307173513182, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3053, "time": 0.6229307173513182, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3243, - "time": 0.6621704475781728, + "noteOrder": 3245, + "time": 0.6621704475781729, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3363, - "time": 0.6866952789699571, + "noteOrder": 3365, + "time": 0.6866952789699572, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3388, + "noteOrder": 3389, "time": 0.691600245248314, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.6965052115266707, + "noteOrder": 3413, + "time": 0.6965052115266708, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.6965052115266707, + "noteOrder": 3413, + "time": 0.6965052115266708, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3436, + "noteOrder": 3437, "time": 0.7014101778050276, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3436, + "noteOrder": 3437, "time": 0.7014101778050276, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.7308399754751685, + "noteOrder": 3581, + "time": 0.7308399754751687, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3604, + "noteOrder": 3605, "time": 0.7357449417535254, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3628, - "time": 0.7406499080318824, + "noteOrder": 3629, + "time": 0.7406499080318822, "position": { "x": 8, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.745554874310239, "position": { "x": 7, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.7504598405885959, + "noteOrder": 3677, + "time": 0.750459840588596, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3701, "time": 0.7553648068669528, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.7602697731453095, + "noteOrder": 3726, + "time": 0.7602697731453096, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.7749846719803802, + "noteOrder": 3798, + "time": 0.7749846719803801, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3822, "time": 0.7798896382587369, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.8093194359288779, + "noteOrder": 3966, + "time": 0.809319435928878, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3988, - "time": 0.8142244022072348, + "noteOrder": 3990, + "time": 0.8142244022072349, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4014, "time": 0.8191293684855917, "position": { "x": 2, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4038, "time": 0.8240343347639485, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.8289393010423053, + "noteOrder": 4062, + "time": 0.8289393010423054, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.8338442673206622, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4108, - "time": 0.8387492335990191, + "noteOrder": 4110, + "time": 0.838749233599019, "position": { "x": 5, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.8534641324340896, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4204, - "time": 0.8583690987124463, + "noteOrder": 4206, + "time": 0.8583690987124464, "position": { "x": 7, "y": 0 @@ -1656,7 +1656,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.019619865113427348, @@ -1679,7 +1679,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.034334763948497854, @@ -1702,7 +1702,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.039239730226854695, @@ -1725,7 +1725,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, "time": 0.0539546290619252, @@ -1748,9 +1748,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.07847946045370939, "position": { "x": 2, @@ -1771,9 +1771,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 456, + "noteOrder": 457, "time": 0.09319435928877988, "position": { "x": 4, @@ -1794,7 +1794,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.15695892090741878, @@ -1817,7 +1817,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 781, "time": 0.15941140404659718, @@ -1840,7 +1840,7 @@ }, { "lineGroupId": 22, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 793, "time": 0.16186388718577557, @@ -1863,7 +1863,7 @@ }, { "lineGroupId": 22, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 805, "time": 0.16431637032495403, @@ -1886,10 +1886,10 @@ }, { "lineGroupId": 22, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 817, - "time": 0.16676885346413242, + "time": 0.16676885346413245, "position": { "x": 4, "y": 0 @@ -1909,10 +1909,10 @@ }, { "lineGroupId": 22, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 829, - "time": 0.16922133660331087, + "time": 0.16922133660331085, "position": { "x": 4, "y": 0 @@ -1932,10 +1932,10 @@ }, { "lineGroupId": 22, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 841, - "time": 0.17167381974248927, + "time": 0.1716738197424893, "position": { "x": 3, "y": 0 @@ -1955,7 +1955,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.15695892090741878, @@ -1978,7 +1978,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 781, "time": 0.15941140404659718, @@ -2001,7 +2001,7 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 793, "time": 0.16186388718577557, @@ -2024,7 +2024,7 @@ }, { "lineGroupId": 23, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 805, "time": 0.16431637032495403, @@ -2047,10 +2047,10 @@ }, { "lineGroupId": 23, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 817, - "time": 0.16676885346413242, + "time": 0.16676885346413245, "position": { "x": 6, "y": 0 @@ -2070,10 +2070,10 @@ }, { "lineGroupId": 23, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 829, - "time": 0.16922133660331087, + "time": 0.16922133660331085, "position": { "x": 6, "y": 0 @@ -2093,10 +2093,10 @@ }, { "lineGroupId": 23, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 841, - "time": 0.17167381974248927, + "time": 0.1716738197424893, "position": { "x": 6, "y": 0 @@ -2116,10 +2116,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, - "time": 0.17657878602084612, + "time": 0.1765787860208461, "position": { "x": 8, "y": 0 @@ -2139,7 +2139,7 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, "time": 0.18148375229920297, @@ -2162,7 +2162,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 913, "time": 0.18638871857755976, @@ -2185,7 +2185,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 937, "time": 0.1912936848559166, @@ -2208,10 +2208,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.19619865113427346, + "time": 0.19619865113427348, "position": { "x": 4, "y": 0 @@ -2231,10 +2231,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 973, - "time": 0.19865113427345185, + "time": 0.19865113427345188, "position": { "x": 4, "y": 0 @@ -2254,10 +2254,10 @@ }, { "lineGroupId": 26, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 985, - "time": 0.2011036174126303, + "time": 0.20110361741263028, "position": { "x": 3, "y": 0 @@ -2277,10 +2277,10 @@ }, { "lineGroupId": 26, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 997, - "time": 0.2035561005518087, + "time": 0.20355610055180873, "position": { "x": 3, "y": 0 @@ -2300,7 +2300,7 @@ }, { "lineGroupId": 26, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1009, "time": 0.20600858369098712, @@ -2323,9 +2323,9 @@ }, { "lineGroupId": 26, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1021, + "noteOrder": 1022, "time": 0.20846106683016555, "position": { "x": 4, @@ -2346,9 +2346,9 @@ }, { "lineGroupId": 26, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.21091354996934394, "position": { "x": 3, @@ -2369,10 +2369,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.19619865113427346, + "time": 0.19619865113427348, "position": { "x": 6, "y": 0 @@ -2392,10 +2392,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 973, - "time": 0.19865113427345185, + "time": 0.19865113427345188, "position": { "x": 6, "y": 0 @@ -2415,10 +2415,10 @@ }, { "lineGroupId": 27, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 985, - "time": 0.2011036174126303, + "time": 0.20110361741263028, "position": { "x": 6, "y": 0 @@ -2438,10 +2438,10 @@ }, { "lineGroupId": 27, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 997, - "time": 0.2035561005518087, + "time": 0.20355610055180873, "position": { "x": 6, "y": 0 @@ -2461,7 +2461,7 @@ }, { "lineGroupId": 27, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1009, "time": 0.20600858369098712, @@ -2484,9 +2484,9 @@ }, { "lineGroupId": 27, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1021, + "noteOrder": 1022, "time": 0.20846106683016555, "position": { "x": 6, @@ -2507,9 +2507,9 @@ }, { "lineGroupId": 27, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.21091354996934394, "position": { "x": 6, @@ -2530,9 +2530,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.2158185162477008, "position": { "x": 6, @@ -2553,10 +2553,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.2256284488044145, + "noteOrder": 1106, + "time": 0.22562844880441446, "position": { "x": 6, "y": 0 @@ -2576,10 +2576,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.2256284488044145, + "noteOrder": 1106, + "time": 0.22562844880441446, "position": { "x": 4, "y": 0 @@ -2599,9 +2599,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.23543838136112813, "position": { "x": 4, @@ -2622,9 +2622,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.2550582464745555, "position": { "x": 6, @@ -2645,9 +2645,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1285, + "noteOrder": 1286, "time": 0.26241569589209074, "position": { "x": 6, @@ -2668,10 +2668,10 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, - "time": 0.26486817903126914, + "noteOrder": 1298, + "time": 0.2648681790312692, "position": { "x": 6, "y": 0 @@ -2691,9 +2691,9 @@ }, { "lineGroupId": 38, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.2673206621704476, "position": { "x": 6, @@ -2714,9 +2714,9 @@ }, { "lineGroupId": 38, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.269773145309626, "position": { "x": 6, @@ -2737,10 +2737,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1273, - "time": 0.2599632127529123, + "noteOrder": 1274, + "time": 0.25996321275291234, "position": { "x": 4, "y": 0 @@ -2760,9 +2760,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1285, + "noteOrder": 1286, "time": 0.26241569589209074, "position": { "x": 4, @@ -2783,10 +2783,10 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, - "time": 0.26486817903126914, + "noteOrder": 1298, + "time": 0.2648681790312692, "position": { "x": 3, "y": 0 @@ -2806,9 +2806,9 @@ }, { "lineGroupId": 39, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.2673206621704476, "position": { "x": 3, @@ -2829,9 +2829,9 @@ }, { "lineGroupId": 39, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.269773145309626, "position": { "x": 4, @@ -2852,9 +2852,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.27467811158798283, "position": { "x": 4, @@ -2875,9 +2875,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.2795830778663397, "position": { "x": 4, @@ -2898,9 +2898,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.29429797670141017, "position": { "x": 6, @@ -2921,7 +2921,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1466, "time": 0.299202942979767, @@ -2944,7 +2944,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1490, "time": 0.30410790925812387, @@ -2967,10 +2967,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1514, - "time": 0.30901287553648066, + "time": 0.3090128755364807, "position": { "x": 4, "y": 0 @@ -2990,7 +2990,7 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1538, "time": 0.31391784181483756, @@ -3013,10 +3013,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1550, - "time": 0.3163703249540159, + "time": 0.31637032495401596, "position": { "x": 6, "y": 0 @@ -3036,7 +3036,7 @@ }, { "lineGroupId": 48, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1562, "time": 0.31882280809319435, @@ -3059,10 +3059,10 @@ }, { "lineGroupId": 48, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1574, - "time": 0.3212752912323728, + "time": 0.32127529123237275, "position": { "x": 7, "y": 0 @@ -3082,7 +3082,7 @@ }, { "lineGroupId": 48, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1586, "time": 0.32372777437155115, @@ -3105,10 +3105,10 @@ }, { "lineGroupId": 48, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1598, - "time": 0.3261802575107296, + "time": 0.32618025751072965, "position": { "x": 6, "y": 0 @@ -3128,7 +3128,7 @@ }, { "lineGroupId": 48, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1610, "time": 0.32863274064990805, @@ -3151,7 +3151,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1538, "time": 0.31391784181483756, @@ -3174,10 +3174,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1550, - "time": 0.3163703249540159, + "time": 0.31637032495401596, "position": { "x": 4, "y": 0 @@ -3197,7 +3197,7 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1562, "time": 0.31882280809319435, @@ -3220,10 +3220,10 @@ }, { "lineGroupId": 49, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1574, - "time": 0.3212752912323728, + "time": 0.32127529123237275, "position": { "x": 4, "y": 0 @@ -3243,7 +3243,7 @@ }, { "lineGroupId": 49, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1586, "time": 0.32372777437155115, @@ -3266,10 +3266,10 @@ }, { "lineGroupId": 49, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1598, - "time": 0.3261802575107296, + "time": 0.32618025751072965, "position": { "x": 4, "y": 0 @@ -3289,7 +3289,7 @@ }, { "lineGroupId": 49, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1610, "time": 0.32863274064990805, @@ -3312,10 +3312,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1634, - "time": 0.33353770692826484, + "time": 0.3335377069282649, "position": { "x": 4, "y": 0 @@ -3335,10 +3335,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1670, - "time": 0.3408951563458001, + "time": 0.34089515634580014, "position": { "x": 4, "y": 0 @@ -3358,10 +3358,10 @@ }, { "lineGroupId": 51, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1682, - "time": 0.34334763948497854, + "time": 0.3433476394849786, "position": { "x": 4, "y": 0 @@ -3381,9 +3381,9 @@ }, { "lineGroupId": 51, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1694, + "noteOrder": 1695, "time": 0.345800122624157, "position": { "x": 4, @@ -3404,10 +3404,10 @@ }, { "lineGroupId": 51, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1706, - "time": 0.34825260576333533, + "noteOrder": 1707, + "time": 0.3482526057633354, "position": { "x": 4, "y": 0 @@ -3427,10 +3427,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1658, - "time": 0.33844267320662175, + "time": 0.3384426732066217, "position": { "x": 6, "y": 0 @@ -3450,10 +3450,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1670, - "time": 0.3408951563458001, + "time": 0.34089515634580014, "position": { "x": 6, "y": 0 @@ -3473,10 +3473,10 @@ }, { "lineGroupId": 52, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1682, - "time": 0.34334763948497854, + "time": 0.3433476394849786, "position": { "x": 7, "y": 0 @@ -3496,9 +3496,9 @@ }, { "lineGroupId": 52, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1694, + "noteOrder": 1695, "time": 0.345800122624157, "position": { "x": 7, @@ -3519,10 +3519,10 @@ }, { "lineGroupId": 52, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1706, - "time": 0.34825260576333533, + "noteOrder": 1707, + "time": 0.3482526057633354, "position": { "x": 6, "y": 0 @@ -3542,10 +3542,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.35315757204169224, + "noteOrder": 1731, + "time": 0.3531575720416922, "position": { "x": 6, "y": 0 @@ -3565,10 +3565,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1754, - "time": 0.35806253832004903, + "noteOrder": 1755, + "time": 0.3580625383200491, "position": { "x": 6, "y": 0 @@ -3588,9 +3588,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3727774371551195, "position": { "x": 4, @@ -3611,9 +3611,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.3776824034334764, "position": { "x": 4, @@ -3634,9 +3634,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.3825873697118332, "position": { "x": 6, @@ -3657,10 +3657,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1898, - "time": 0.3874923359901901, + "noteOrder": 1899, + "time": 0.38749233599019006, "position": { "x": 6, "y": 0 @@ -3680,10 +3680,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.3923973022685469, + "noteOrder": 1923, + "time": 0.39239730226854697, "position": { "x": 6, "y": 0 @@ -3703,9 +3703,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.39484978540772536, "position": { "x": 6, @@ -3726,10 +3726,10 @@ }, { "lineGroupId": 61, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1946, - "time": 0.3973022685469037, + "noteOrder": 1947, + "time": 0.39730226854690376, "position": { "x": 6, "y": 0 @@ -3749,9 +3749,9 @@ }, { "lineGroupId": 61, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1958, + "noteOrder": 1959, "time": 0.39975475168608215, "position": { "x": 6, @@ -3772,10 +3772,10 @@ }, { "lineGroupId": 61, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1970, - "time": 0.4022072348252606, + "noteOrder": 1971, + "time": 0.40220723482526055, "position": { "x": 6, "y": 0 @@ -3795,10 +3795,10 @@ }, { "lineGroupId": 61, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1982, - "time": 0.40465971796443895, + "noteOrder": 1983, + "time": 0.404659717964439, "position": { "x": 6, "y": 0 @@ -3818,10 +3818,10 @@ }, { "lineGroupId": 61, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1994, - "time": 0.4071122011036174, + "noteOrder": 1995, + "time": 0.40711220110361745, "position": { "x": 6, "y": 0 @@ -3841,10 +3841,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.3923973022685469, + "noteOrder": 1923, + "time": 0.39239730226854697, "position": { "x": 4, "y": 0 @@ -3864,9 +3864,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.39484978540772536, "position": { "x": 4, @@ -3887,10 +3887,10 @@ }, { "lineGroupId": 62, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1946, - "time": 0.3973022685469037, + "noteOrder": 1947, + "time": 0.39730226854690376, "position": { "x": 3, "y": 0 @@ -3910,9 +3910,9 @@ }, { "lineGroupId": 62, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1958, + "noteOrder": 1959, "time": 0.39975475168608215, "position": { "x": 3, @@ -3933,10 +3933,10 @@ }, { "lineGroupId": 62, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1970, - "time": 0.4022072348252606, + "noteOrder": 1971, + "time": 0.40220723482526055, "position": { "x": 4, "y": 0 @@ -3956,10 +3956,10 @@ }, { "lineGroupId": 62, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1982, - "time": 0.40465971796443895, + "noteOrder": 1983, + "time": 0.404659717964439, "position": { "x": 4, "y": 0 @@ -3979,10 +3979,10 @@ }, { "lineGroupId": 62, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1994, - "time": 0.4071122011036174, + "noteOrder": 1995, + "time": 0.40711220110361745, "position": { "x": 3, "y": 0 @@ -4002,9 +4002,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.41201716738197425, "position": { "x": 7, @@ -4025,9 +4025,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.4218270999386879, "position": { "x": 7, @@ -4048,9 +4048,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.4218270999386879, "position": { "x": 3, @@ -4071,9 +4071,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.4316370324954016, "position": { "x": 3, @@ -4094,9 +4094,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.4316370324954016, "position": { "x": 7, @@ -4117,9 +4117,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.4414469650521153, "position": { "x": 7, @@ -4140,9 +4140,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.4414469650521153, "position": { "x": 3, @@ -4163,10 +4163,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.451256897608829, + "noteOrder": 2211, + "time": 0.4512568976088289, "position": { "x": 3, "y": 0 @@ -4186,10 +4186,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.451256897608829, + "noteOrder": 2211, + "time": 0.4512568976088289, "position": { "x": 7, "y": 0 @@ -4209,9 +4209,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.4610668301655426, "position": { "x": 7, @@ -4232,9 +4232,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.4610668301655426, "position": { "x": 3, @@ -4255,9 +4255,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.47087676272225626, "position": { "x": 3, @@ -4278,9 +4278,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.47087676272225626, "position": { "x": 7, @@ -4301,9 +4301,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2354, + "noteOrder": 2355, "time": 0.48068669527896996, "position": { "x": 7, @@ -4324,9 +4324,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, + "noteOrder": 2355, "time": 0.48068669527896996, "position": { "x": 3, @@ -4347,9 +4347,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2402, + "noteOrder": 2404, "time": 0.49049662783568365, "position": { "x": 3, @@ -4370,9 +4370,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, + "noteOrder": 2404, "time": 0.49049662783568365, "position": { "x": 7, @@ -4393,10 +4393,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.49540159411404044, + "noteOrder": 2428, + "time": 0.4954015941140405, "position": { "x": 7, "y": 0 @@ -4416,9 +4416,9 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.5003065603923973, "position": { "x": 3, @@ -4439,9 +4439,9 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.5052115266707541, "position": { "x": 3, @@ -4462,9 +4462,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.510116492949111, "position": { "x": 7, @@ -4485,9 +4485,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.5150214592274678, "position": { "x": 7, @@ -4508,10 +4508,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2547, - "time": 0.5199264255058246, + "noteOrder": 2548, + "time": 0.5199264255058247, "position": { "x": 3, "y": 0 @@ -4531,9 +4531,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.5248313917841815, "position": { "x": 3, @@ -4554,9 +4554,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.539546290619252, "position": { "x": 7, @@ -4576,13 +4576,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2667, - "time": 0.5444512568976088, + "noteOrder": 2656, + "time": 0.5419987737584304, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4594,18 +4594,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2691, - "time": 0.5493562231759657, + "noteOrder": 2656, + "time": 0.5419987737584304, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4622,13 +4622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 97, "indexInLine": 1, "isSliding": false, - "noteOrder": 2715, - "time": 0.5542611894543225, + "noteOrder": 2668, + "time": 0.5444512568976089, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4640,18 +4640,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 97, "indexInLine": 2, "isSliding": false, - "noteOrder": 2763, - "time": 0.5640711220110362, + "noteOrder": 2680, + "time": 0.5469037400367873, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4663,18 +4663,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2739, - "time": 0.5591661557326794, + "noteOrder": 2680, + "time": 0.5469037400367873, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4691,13 +4691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 2763, - "time": 0.5640711220110362, + "noteOrder": 2692, + "time": 0.5493562231759657, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4709,18 +4709,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, - "time": 0.568976088289393, + "noteOrder": 2716, + "time": 0.5542611894543225, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4737,13 +4737,565 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2764, + "time": 0.5640711220110362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2740, + "time": 0.5591661557326794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2764, + "time": 0.5640711220110362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.5689760882893931, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2800, + "time": 0.5714285714285714, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2800, + "time": 0.5714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2812, + "time": 0.5738810545677498, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2824, + "time": 0.5763335377069283, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2824, + "time": 0.5763335377069283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2836, + "time": 0.5787860208461068, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2860, + "time": 0.5836909871244635, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.5885959534028203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5935009196811772, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2908, + "time": 0.5935009196811772, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2920, + "time": 0.5959534028203556, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2932, + "time": 0.598405885959534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2944, + "time": 0.6008583690987125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2944, + "time": 0.6008583690987125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2956, + "time": 0.6033108522378908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2968, + "time": 0.6057633353770694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2968, + "time": 0.6057633353770694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.6278356836296751, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3089, + "time": 0.6302881667688535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3101, + "time": 0.6327406499080319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2811, - "time": 0.5738810545677498, + "noteOrder": 3113, + "time": 0.6351931330472104, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4760,13 +5312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2835, - "time": 0.5787860208461066, + "noteOrder": 3125, + "time": 0.6376456161863887, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4778,18 +5330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2859, - "time": 0.5836909871244635, + "noteOrder": 3137, + "time": 0.6400980993255672, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4801,18 +5353,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2883, - "time": 0.5885959534028203, + "noteOrder": 3149, + "time": 0.6425505824647455, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4829,13 +5381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 2907, - "time": 0.5935009196811771, + "noteOrder": 3077, + "time": 0.6278356836296751, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4847,18 +5399,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2907, - "time": 0.5935009196811771, + "noteOrder": 3089, + "time": 0.6302881667688535, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4875,13 +5427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2919, - "time": 0.5959534028203556, + "noteOrder": 3101, + "time": 0.6327406499080319, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4898,13 +5450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2931, - "time": 0.598405885959534, + "noteOrder": 3113, + "time": 0.6351931330472104, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4916,18 +5468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2955, - "time": 0.6033108522378908, + "noteOrder": 3125, + "time": 0.6376456161863887, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4944,13 +5496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3075, - "time": 0.6278356836296751, + "noteOrder": 3137, + "time": 0.6400980993255672, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4962,18 +5514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3087, - "time": 0.6302881667688535, + "noteOrder": 3149, + "time": 0.6425505824647455, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4985,18 +5537,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3099, - "time": 0.6327406499080318, + "noteOrder": 3173, + "time": 0.6474555487431023, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5013,13 +5565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 3, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3111, - "time": 0.6351931330472104, + "noteOrder": 3185, + "time": 0.6499080318822809, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5036,11 +5588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 4, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3123, - "time": 0.6376456161863887, + "noteOrder": 3185, + "time": 0.6499080318822809, "position": { "x": 4, "y": 0 @@ -5059,13 +5611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 5, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.640098099325567, + "noteOrder": 3197, + "time": 0.6523605150214593, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5077,18 +5629,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 6, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3147, - "time": 0.6425505824647456, + "noteOrder": 3209, + "time": 0.6548129981606376, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5100,18 +5652,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3075, - "time": 0.6278356836296751, + "noteOrder": 3209, + "time": 0.6548129981606376, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5128,13 +5680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 3087, - "time": 0.6302881667688535, + "noteOrder": 3221, + "time": 0.6572654812998161, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5146,18 +5698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 119, "indexInLine": 2, "isSliding": false, - "noteOrder": 3099, - "time": 0.6327406499080318, + "noteOrder": 3245, + "time": 0.6621704475781729, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5169,18 +5721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 3, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3111, - "time": 0.6351931330472104, + "noteOrder": 3269, + "time": 0.6670754138565298, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5197,13 +5749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 4, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, - "time": 0.6376456161863887, + "noteOrder": 3293, + "time": 0.6719803801348866, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5220,13 +5772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 5, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.640098099325567, + "noteOrder": 3293, + "time": 0.6719803801348866, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5238,18 +5790,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 6, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3147, - "time": 0.6425505824647456, + "noteOrder": 3305, + "time": 0.674432863274065, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5261,18 +5813,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, - "time": 0.6474555487431023, + "noteOrder": 3317, + "time": 0.6768853464132434, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5284,18 +5836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3195, - "time": 0.6523605150214592, + "noteOrder": 3329, + "time": 0.6793378295524218, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5312,13 +5864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3219, - "time": 0.6572654812998161, + "noteOrder": 3329, + "time": 0.6793378295524218, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5330,18 +5882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 124, "indexInLine": 1, "isSliding": false, - "noteOrder": 3243, - "time": 0.6621704475781728, + "noteOrder": 3341, + "time": 0.6817903126916003, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5358,13 +5910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3267, - "time": 0.6670754138565297, + "noteOrder": 3353, + "time": 0.6842427958307786, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5376,18 +5928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3291, - "time": 0.6719803801348866, + "noteOrder": 3353, + "time": 0.6842427958307786, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5399,18 +5951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3291, - "time": 0.6719803801348866, + "noteOrder": 3461, + "time": 0.7063151440833844, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5422,18 +5974,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3303, - "time": 0.6744328632740649, + "noteOrder": 3473, + "time": 0.7087676272225629, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5445,16 +5997,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3315, - "time": 0.6768853464132435, + "noteOrder": 3485, + "time": 0.7112201103617413, "position": { "x": 7, "y": 0 @@ -5473,13 +6025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3339, - "time": 0.6817903126916002, + "noteOrder": 3497, + "time": 0.7136725935009197, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5491,16 +6043,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3460, - "time": 0.7063151440833845, + "noteOrder": 3509, + "time": 0.7161250766400982, "position": { "x": 6, "y": 0 @@ -5520,10 +6072,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3472, - "time": 0.7087676272225628, + "noteOrder": 3521, + "time": 0.7185775597792765, "position": { "x": 6, "y": 0 @@ -5543,10 +6095,10 @@ }, { "lineGroupId": 131, - "indexInLine": 2, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3484, - "time": 0.7112201103617412, + "noteOrder": 3533, + "time": 0.721030042918455, "position": { "x": 7, "y": 0 @@ -5565,13 +6117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 3, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3496, - "time": 0.7136725935009197, + "noteOrder": 3461, + "time": 0.7063151440833844, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5583,18 +6135,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 4, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, - "time": 0.7161250766400981, + "noteOrder": 3473, + "time": 0.7087676272225629, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5606,18 +6158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 5, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3520, - "time": 0.7185775597792766, + "noteOrder": 3485, + "time": 0.7112201103617413, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5629,18 +6181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 6, + "lineGroupId": 132, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3532, - "time": 0.721030042918455, + "noteOrder": 3497, + "time": 0.7136725935009197, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5652,16 +6204,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3460, - "time": 0.7063151440833845, + "noteOrder": 3509, + "time": 0.7161250766400982, "position": { "x": 4, "y": 0 @@ -5681,10 +6233,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3472, - "time": 0.7087676272225628, + "noteOrder": 3521, + "time": 0.7185775597792765, "position": { "x": 4, "y": 0 @@ -5704,10 +6256,10 @@ }, { "lineGroupId": 132, - "indexInLine": 2, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3484, - "time": 0.7112201103617412, + "noteOrder": 3533, + "time": 0.721030042918455, "position": { "x": 4, "y": 0 @@ -5726,13 +6278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 3, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3496, - "time": 0.7136725935009197, + "noteOrder": 3557, + "time": 0.7259350091968119, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5749,13 +6301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 4, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, - "time": 0.7161250766400981, + "noteOrder": 3629, + "time": 0.7406499080318822, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5772,11 +6324,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 5, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3520, - "time": 0.7185775597792766, + "noteOrder": 3726, + "time": 0.7602697731453096, "position": { "x": 4, "y": 0 @@ -5795,13 +6347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 6, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3532, - "time": 0.721030042918455, + "noteOrder": 3750, + "time": 0.7651747394236664, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5813,18 +6365,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3556, - "time": 0.7259350091968119, + "noteOrder": 3762, + "time": 0.767627222562845, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5836,16 +6388,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3628, - "time": 0.7406499080318824, + "noteOrder": 3762, + "time": 0.767627222562845, "position": { "x": 6, "y": 0 @@ -5859,18 +6411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 2, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3724, - "time": 0.7602697731453095, + "noteOrder": 3774, + "time": 0.7700797057020233, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5887,13 +6439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3748, - "time": 0.7651747394236664, + "noteOrder": 3786, + "time": 0.7725321888412018, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5905,18 +6457,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3772, - "time": 0.7700797057020233, + "noteOrder": 3786, + "time": 0.7725321888412018, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5934,10 +6486,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.7847946045370938, + "noteOrder": 3846, + "time": 0.7847946045370939, "position": { "x": 6, "y": 0 @@ -5957,10 +6509,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3856, - "time": 0.7872470876762722, + "noteOrder": 3858, + "time": 0.7872470876762723, "position": { "x": 6, "y": 0 @@ -5980,9 +6532,9 @@ }, { "lineGroupId": 145, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7896995708154507, "position": { "x": 6, @@ -6003,9 +6555,9 @@ }, { "lineGroupId": 145, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3880, + "noteOrder": 3882, "time": 0.7921520539546291, "position": { "x": 6, @@ -6026,10 +6578,10 @@ }, { "lineGroupId": 145, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3892, - "time": 0.7946045370938074, + "noteOrder": 3894, + "time": 0.7946045370938075, "position": { "x": 6, "y": 0 @@ -6049,10 +6601,10 @@ }, { "lineGroupId": 145, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3904, - "time": 0.797057020232986, + "noteOrder": 3906, + "time": 0.7970570202329859, "position": { "x": 6, "y": 0 @@ -6072,9 +6624,9 @@ }, { "lineGroupId": 145, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7995095033721643, "position": { "x": 6, @@ -6095,10 +6647,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.7847946045370938, + "noteOrder": 3846, + "time": 0.7847946045370939, "position": { "x": 4, "y": 0 @@ -6118,10 +6670,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3856, - "time": 0.7872470876762722, + "noteOrder": 3858, + "time": 0.7872470876762723, "position": { "x": 4, "y": 0 @@ -6141,9 +6693,9 @@ }, { "lineGroupId": 146, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7896995708154507, "position": { "x": 3, @@ -6164,9 +6716,9 @@ }, { "lineGroupId": 146, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3880, + "noteOrder": 3882, "time": 0.7921520539546291, "position": { "x": 3, @@ -6187,10 +6739,10 @@ }, { "lineGroupId": 146, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3892, - "time": 0.7946045370938074, + "noteOrder": 3894, + "time": 0.7946045370938075, "position": { "x": 4, "y": 0 @@ -6210,10 +6762,10 @@ }, { "lineGroupId": 146, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3904, - "time": 0.797057020232986, + "noteOrder": 3906, + "time": 0.7970570202329859, "position": { "x": 4, "y": 0 @@ -6233,9 +6785,9 @@ }, { "lineGroupId": 146, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7995095033721643, "position": { "x": 3, @@ -6256,10 +6808,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.8044144696505212, + "noteOrder": 3942, + "time": 0.8044144696505211, "position": { "x": 7, "y": 0 @@ -6279,9 +6831,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4012, + "noteOrder": 4014, "time": 0.8191293684855917, "position": { "x": 4, @@ -6302,10 +6854,10 @@ }, { "lineGroupId": 147, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4108, - "time": 0.8387492335990191, + "noteOrder": 4110, + "time": 0.838749233599019, "position": { "x": 6, "y": 0 @@ -6325,9 +6877,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.8436541998773758, "position": { "x": 3, @@ -6346,12 +6898,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4146, + "time": 0.8461066830165543, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4146, + "time": 0.8461066830165543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4158, + "time": 0.8485591661557328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4156, - "time": 0.8485591661557327, + "noteOrder": 4170, + "time": 0.8510116492949111, "position": { "x": 7, "y": 0 @@ -6369,11 +6990,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4170, + "time": 0.8510116492949111, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.8632740649908032, "position": { "x": 4, @@ -6394,10 +7038,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4240, - "time": 0.8657265481299816, + "noteOrder": 4242, + "time": 0.8657265481299817, "position": { "x": 4, "y": 0 @@ -6417,9 +7061,9 @@ }, { "lineGroupId": 159, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4252, + "noteOrder": 4254, "time": 0.8681790312691601, "position": { "x": 4, @@ -6440,10 +7084,10 @@ }, { "lineGroupId": 159, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4264, - "time": 0.8706315144083384, + "noteOrder": 4266, + "time": 0.8706315144083385, "position": { "x": 4, "y": 0 @@ -6463,9 +7107,9 @@ }, { "lineGroupId": 159, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.8730839975475169, "position": { "x": 4, @@ -6486,9 +7130,9 @@ }, { "lineGroupId": 159, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.8755364806866953, "position": { "x": 4, @@ -6509,9 +7153,9 @@ }, { "lineGroupId": 159, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8779889638258737, "position": { "x": 4, @@ -6532,9 +7176,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.8632740649908032, "position": { "x": 6, @@ -6555,10 +7199,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4240, - "time": 0.8657265481299816, + "noteOrder": 4242, + "time": 0.8657265481299817, "position": { "x": 6, "y": 0 @@ -6578,9 +7222,9 @@ }, { "lineGroupId": 160, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4252, + "noteOrder": 4254, "time": 0.8681790312691601, "position": { "x": 7, @@ -6601,10 +7245,10 @@ }, { "lineGroupId": 160, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4264, - "time": 0.8706315144083384, + "noteOrder": 4266, + "time": 0.8706315144083385, "position": { "x": 7, "y": 0 @@ -6624,9 +7268,9 @@ }, { "lineGroupId": 160, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.8730839975475169, "position": { "x": 6, @@ -6647,9 +7291,9 @@ }, { "lineGroupId": 160, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.8755364806866953, "position": { "x": 6, @@ -6670,9 +7314,9 @@ }, { "lineGroupId": 160, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8779889638258737, "position": { "x": 7, @@ -6693,9 +7337,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.8828939301042306, "position": { "x": 2, @@ -6716,10 +7360,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4421, - "time": 0.902513795217658, + "noteOrder": 4423, + "time": 0.9025137952176578, "position": { "x": 2, "y": 0 @@ -6739,10 +7383,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.8927038626609441, + "noteOrder": 4374, + "time": 0.8927038626609443, "position": { "x": 7, "y": 0 @@ -6762,10 +7406,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4421, - "time": 0.902513795217658, + "noteOrder": 4423, + "time": 0.9025137952176578, "position": { "x": 7, "y": 0 @@ -6785,9 +7429,9 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.9123237277743715, "position": { "x": 8, @@ -6808,9 +7452,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.9319435928877989, "position": { "x": 8, @@ -6831,9 +7475,9 @@ }, { "lineGroupId": 164, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.9613733905579399, "position": { "x": 8, @@ -6854,9 +7498,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.9221336603310852, "position": { "x": 3, @@ -6877,9 +7521,9 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.9417535254445125, "position": { "x": 3, @@ -6900,9 +7544,9 @@ }, { "lineGroupId": 165, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.9613733905579399, "position": { "x": 5, diff --git a/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1b.json b/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1b.json index 1e7d2a97..713fec5a 100644 --- a/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1b.json +++ b/tracks/December in Strasbourg CRAB STEP EDITION/367_difficulty_1b.json @@ -114,7 +114,7 @@ }, { "noteOrder": 985, - "time": 0.2011036174126303, + "time": 0.20110361741263028, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.21091354996934394, "position": { "x": 6, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.22072348252605764, "position": { "x": 8, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.2305334150827713, "position": { "x": 2, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.26486817903126914, + "noteOrder": 1298, + "time": 0.2648681790312692, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.269773145309626, "position": { "x": 7, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.2844880441446965, + "noteOrder": 1394, + "time": 0.28448804414469653, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.2893930104230533, + "noteOrder": 1418, + "time": 0.2893930104230534, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1682, - "time": 0.34334763948497854, + "time": 0.3433476394849786, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.34825260576333533, + "noteOrder": 1707, + "time": 0.3482526057633354, "position": { "x": 3, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.36296750459840593, "position": { "x": 4, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.3678724708767627, "position": { "x": 7, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.4218270999386879, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.4267320662170448, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.4414469650521153, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2186, - "time": 0.4463519313304721, + "noteOrder": 2187, + "time": 0.44635193133047213, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.45616186388718577, "position": { "x": 8, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.4610668301655426, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.46597179644389947, "position": { "x": 8, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.4757817290006131, + "noteOrder": 2331, + "time": 0.47578172900061316, "position": { "x": 2, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2354, + "noteOrder": 2355, "time": 0.48068669527896996, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2378, + "noteOrder": 2380, "time": 0.4855916615573268, "position": { "x": 2, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2404, "time": 0.49049662783568365, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.5003065603923973, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.510116492949111, "position": { "x": 6, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.5199264255058246, + "noteOrder": 2548, + "time": 0.5199264255058247, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.5885959534028203, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2907, - "time": 0.5935009196811771, + "noteOrder": 2908, + "time": 0.5935009196811772, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.598405885959534, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2955, + "noteOrder": 2956, "time": 0.6033108522378908, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3267, - "time": 0.6670754138565297, + "noteOrder": 3269, + "time": 0.6670754138565298, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3293, "time": 0.6719803801348866, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.6768853464132435, + "noteOrder": 3317, + "time": 0.6768853464132434, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3339, - "time": 0.6817903126916002, + "noteOrder": 3341, + "time": 0.6817903126916003, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.7308399754751685, + "noteOrder": 3581, + "time": 0.7308399754751687, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3604, + "noteOrder": 3605, "time": 0.7357449417535254, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3628, - "time": 0.7406499080318824, + "noteOrder": 3629, + "time": 0.7406499080318822, "position": { "x": 2, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.7504598405885959, + "noteOrder": 3677, + "time": 0.750459840588596, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3701, "time": 0.7553648068669528, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.7602697731453095, + "noteOrder": 3726, + "time": 0.7602697731453096, "position": { "x": 8, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.7651747394236664, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.7749846719803802, + "noteOrder": 3798, + "time": 0.7749846719803801, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.8093194359288779, + "noteOrder": 3966, + "time": 0.809319435928878, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3988, - "time": 0.8142244022072348, + "noteOrder": 3990, + "time": 0.8142244022072349, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4014, "time": 0.8191293684855917, "position": { "x": 2, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.8289393010423053, + "noteOrder": 4062, + "time": 0.8289393010423054, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.8338442673206622, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4108, - "time": 0.8387492335990191, + "noteOrder": 4110, + "time": 0.838749233599019, "position": { "x": 8, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4156, - "time": 0.8485591661557327, + "noteOrder": 4158, + "time": 0.8485591661557328, "position": { "x": 2, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4204, - "time": 0.8583690987124463, + "noteOrder": 4206, + "time": 0.8583690987124464, "position": { "x": 8, "y": 0 @@ -1136,7 +1136,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.019619865113427348, @@ -1159,7 +1159,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.039239730226854695, @@ -1182,7 +1182,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 264, "time": 0.0539546290619252, @@ -1205,7 +1205,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.05885959534028203, @@ -1228,9 +1228,9 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.07847946045370939, "position": { "x": 5, @@ -1251,9 +1251,9 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 456, + "noteOrder": 457, "time": 0.09319435928877988, "position": { "x": 5, @@ -1274,10 +1274,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.09809932556713673, + "noteOrder": 481, + "time": 0.09809932556713674, "position": { "x": 6, "y": 0 @@ -1297,7 +1297,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.1079092581238504, @@ -1320,7 +1320,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.11771919068056406, @@ -1343,7 +1343,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, "time": 0.12752912323727775, @@ -1366,7 +1366,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.13733905579399142, @@ -1389,10 +1389,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, - "time": 0.14224402207234824, + "time": 0.14224402207234826, "position": { "x": 7, "y": 0 @@ -1412,7 +1412,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 721, "time": 0.14714898835070508, @@ -1435,7 +1435,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 745, "time": 0.15205395462906193, @@ -1458,7 +1458,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.15695892090741878, @@ -1481,10 +1481,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, - "time": 0.17167381974248927, + "time": 0.1716738197424893, "position": { "x": 4, "y": 0 @@ -1504,7 +1504,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.15695892090741878, @@ -1527,10 +1527,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, - "time": 0.17167381974248927, + "time": 0.1716738197424893, "position": { "x": 7, "y": 0 @@ -1550,10 +1550,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, - "time": 0.17657878602084612, + "time": 0.1765787860208461, "position": { "x": 6, "y": 0 @@ -1573,10 +1573,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 961, - "time": 0.19619865113427346, + "time": 0.19619865113427348, "position": { "x": 6, "y": 0 @@ -1596,10 +1596,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.19619865113427346, + "time": 0.19619865113427348, "position": { "x": 4, "y": 0 @@ -1619,9 +1619,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.2158185162477008, "position": { "x": 4, @@ -1642,9 +1642,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.2158185162477008, "position": { "x": 6, @@ -1665,10 +1665,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.2256284488044145, + "noteOrder": 1106, + "time": 0.22562844880441446, "position": { "x": 6, "y": 0 @@ -1688,10 +1688,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.2256284488044145, + "noteOrder": 1106, + "time": 0.22562844880441446, "position": { "x": 4, "y": 0 @@ -1711,9 +1711,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.23543838136112813, "position": { "x": 4, @@ -1734,9 +1734,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.23543838136112813, "position": { "x": 8, @@ -1757,9 +1757,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.24524831391784183, "position": { "x": 6, @@ -1780,9 +1780,9 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.25015328019619865, "position": { "x": 6, @@ -1803,9 +1803,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.2550582464745555, "position": { "x": 3, @@ -1826,10 +1826,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.26486817903126914, + "noteOrder": 1298, + "time": 0.2648681790312692, "position": { "x": 3, "y": 0 @@ -1849,9 +1849,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.27467811158798283, "position": { "x": 7, @@ -1872,10 +1872,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.2844880441446965, + "noteOrder": 1394, + "time": 0.28448804414469653, "position": { "x": 7, "y": 0 @@ -1895,9 +1895,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.29429797670141017, "position": { "x": 2, @@ -1918,7 +1918,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1538, "time": 0.31391784181483756, @@ -1941,7 +1941,7 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1610, "time": 0.32863274064990805, @@ -1964,7 +1964,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1490, "time": 0.30410790925812387, @@ -1987,7 +1987,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1538, "time": 0.31391784181483756, @@ -2010,7 +2010,7 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1610, "time": 0.32863274064990805, @@ -2033,10 +2033,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1634, - "time": 0.33353770692826484, + "time": 0.3335377069282649, "position": { "x": 7, "y": 0 @@ -2056,10 +2056,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1682, - "time": 0.34334763948497854, + "time": 0.3433476394849786, "position": { "x": 7, "y": 0 @@ -2079,10 +2079,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.35315757204169224, + "noteOrder": 1731, + "time": 0.3531575720416922, "position": { "x": 3, "y": 0 @@ -2102,9 +2102,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.36296750459840593, "position": { "x": 3, @@ -2125,9 +2125,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3727774371551195, "position": { "x": 8, @@ -2148,10 +2148,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.3923973022685469, + "noteOrder": 1923, + "time": 0.39239730226854697, "position": { "x": 8, "y": 0 @@ -2171,10 +2171,10 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1994, - "time": 0.4071122011036174, + "noteOrder": 1995, + "time": 0.40711220110361745, "position": { "x": 6, "y": 0 @@ -2194,9 +2194,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.3825873697118332, "position": { "x": 4, @@ -2217,10 +2217,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.3923973022685469, + "noteOrder": 1923, + "time": 0.39239730226854697, "position": { "x": 4, "y": 0 @@ -2240,10 +2240,10 @@ }, { "lineGroupId": 40, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1994, - "time": 0.4071122011036174, + "noteOrder": 1995, + "time": 0.40711220110361745, "position": { "x": 3, "y": 0 @@ -2263,9 +2263,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.41201716738197425, "position": { "x": 6, @@ -2286,9 +2286,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.4316370324954016, "position": { "x": 6, @@ -2309,9 +2309,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.4316370324954016, "position": { "x": 4, @@ -2332,10 +2332,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.451256897608829, + "noteOrder": 2211, + "time": 0.4512568976088289, "position": { "x": 4, "y": 0 @@ -2355,10 +2355,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.451256897608829, + "noteOrder": 2211, + "time": 0.4512568976088289, "position": { "x": 6, "y": 0 @@ -2378,9 +2378,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.47087676272225626, "position": { "x": 6, @@ -2401,9 +2401,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.47087676272225626, "position": { "x": 4, @@ -2424,9 +2424,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2402, + "noteOrder": 2404, "time": 0.49049662783568365, "position": { "x": 4, @@ -2447,9 +2447,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.5493562231759657, "position": { "x": 6, @@ -2470,9 +2470,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.5542611894543225, "position": { "x": 7, @@ -2493,9 +2493,9 @@ }, { "lineGroupId": 67, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.5591661557326794, "position": { "x": 7, @@ -2516,9 +2516,9 @@ }, { "lineGroupId": 67, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.5640711220110362, "position": { "x": 6, @@ -2539,9 +2539,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.5493562231759657, "position": { "x": 4, @@ -2562,9 +2562,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.5542611894543225, "position": { "x": 4, @@ -2585,9 +2585,9 @@ }, { "lineGroupId": 68, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.5591661557326794, "position": { "x": 4, @@ -2608,9 +2608,9 @@ }, { "lineGroupId": 68, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.5640711220110362, "position": { "x": 3, @@ -2631,10 +2631,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.568976088289393, + "noteOrder": 2788, + "time": 0.5689760882893931, "position": { "x": 7, "y": 0 @@ -2652,12 +2652,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2812, + "time": 0.5738810545677498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2812, + "time": 0.5738810545677498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2835, - "time": 0.5787860208461066, + "noteOrder": 2836, + "time": 0.5787860208461068, "position": { "x": 7, "y": 0 @@ -2675,11 +2721,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2860, + "time": 0.5836909871244635, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2860, + "time": 0.5836909871244635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.6082158185162477, "position": { "x": 6, @@ -2700,9 +2792,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, + "noteOrder": 3077, "time": 0.6278356836296751, "position": { "x": 6, @@ -2723,10 +2815,10 @@ }, { "lineGroupId": 75, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3099, - "time": 0.6327406499080318, + "noteOrder": 3101, + "time": 0.6327406499080319, "position": { "x": 6, "y": 0 @@ -2746,9 +2838,9 @@ }, { "lineGroupId": 75, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3123, + "noteOrder": 3125, "time": 0.6376456161863887, "position": { "x": 6, @@ -2769,10 +2861,10 @@ }, { "lineGroupId": 75, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3147, - "time": 0.6425505824647456, + "noteOrder": 3149, + "time": 0.6425505824647455, "position": { "x": 6, "y": 0 @@ -2792,10 +2884,10 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, - "time": 0.6180257510729613, + "noteOrder": 3028, + "time": 0.6180257510729614, "position": { "x": 4, "y": 0 @@ -2815,9 +2907,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, + "noteOrder": 3077, "time": 0.6278356836296751, "position": { "x": 4, @@ -2838,10 +2930,10 @@ }, { "lineGroupId": 76, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3099, - "time": 0.6327406499080318, + "noteOrder": 3101, + "time": 0.6327406499080319, "position": { "x": 3, "y": 0 @@ -2861,9 +2953,9 @@ }, { "lineGroupId": 76, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3123, + "noteOrder": 3125, "time": 0.6376456161863887, "position": { "x": 3, @@ -2884,10 +2976,10 @@ }, { "lineGroupId": 76, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3147, - "time": 0.6425505824647456, + "noteOrder": 3149, + "time": 0.6425505824647455, "position": { "x": 4, "y": 0 @@ -2907,9 +2999,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.6474555487431023, "position": { "x": 3, @@ -2928,11 +3020,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3197, + "time": 0.6523605150214593, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3197, + "time": 0.6523605150214593, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3221, "time": 0.6572654812998161, "position": { "x": 3, @@ -2952,11 +3090,34 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.6621704475781729, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3363, - "time": 0.6866952789699571, + "noteOrder": 3245, + "time": 0.6621704475781729, "position": { "x": 4, "y": 0 @@ -2970,7 +3131,7 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, @@ -2978,8 +3139,8 @@ "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, - "time": 0.7063151440833845, + "noteOrder": 3365, + "time": 0.6866952789699572, "position": { "x": 4, "y": 0 @@ -3001,8 +3162,8 @@ "lineGroupId": 83, "indexInLine": 2, "isSliding": false, - "noteOrder": 3484, - "time": 0.7112201103617412, + "noteOrder": 3461, + "time": 0.7063151440833844, "position": { "x": 4, "y": 0 @@ -3024,8 +3185,8 @@ "lineGroupId": 83, "indexInLine": 3, "isSliding": false, - "noteOrder": 3508, - "time": 0.7161250766400981, + "noteOrder": 3485, + "time": 0.7112201103617413, "position": { "x": 4, "y": 0 @@ -3047,7 +3208,30 @@ "lineGroupId": 83, "indexInLine": 4, "isSliding": false, - "noteOrder": 3532, + "noteOrder": 3509, + "time": 0.7161250766400982, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3533, "time": 0.721030042918455, "position": { "x": 4, @@ -3068,10 +3252,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3412, - "time": 0.6965052115266707, + "noteOrder": 3413, + "time": 0.6965052115266708, "position": { "x": 6, "y": 0 @@ -3091,10 +3275,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3460, - "time": 0.7063151440833845, + "noteOrder": 3461, + "time": 0.7063151440833844, "position": { "x": 6, "y": 0 @@ -3114,10 +3298,10 @@ }, { "lineGroupId": 84, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3484, - "time": 0.7112201103617412, + "noteOrder": 3485, + "time": 0.7112201103617413, "position": { "x": 7, "y": 0 @@ -3137,10 +3321,10 @@ }, { "lineGroupId": 84, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3508, - "time": 0.7161250766400981, + "noteOrder": 3509, + "time": 0.7161250766400982, "position": { "x": 7, "y": 0 @@ -3160,9 +3344,9 @@ }, { "lineGroupId": 84, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3532, + "noteOrder": 3533, "time": 0.721030042918455, "position": { "x": 6, @@ -3183,9 +3367,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3556, + "noteOrder": 3557, "time": 0.7259350091968119, "position": { "x": 7, @@ -3206,10 +3390,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.7406499080318824, + "noteOrder": 3629, + "time": 0.7406499080318822, "position": { "x": 5, "y": 0 @@ -3229,9 +3413,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.745554874310239, "position": { "x": 3, @@ -3252,10 +3436,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3724, - "time": 0.7602697731453095, + "noteOrder": 3726, + "time": 0.7602697731453096, "position": { "x": 5, "y": 0 @@ -3275,10 +3459,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.7847946045370938, + "noteOrder": 3846, + "time": 0.7847946045370939, "position": { "x": 6, "y": 0 @@ -3298,9 +3482,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7896995708154507, "position": { "x": 7, @@ -3321,10 +3505,10 @@ }, { "lineGroupId": 97, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3892, - "time": 0.7946045370938074, + "noteOrder": 3894, + "time": 0.7946045370938075, "position": { "x": 7, "y": 0 @@ -3344,9 +3528,9 @@ }, { "lineGroupId": 97, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7995095033721643, "position": { "x": 6, @@ -3367,10 +3551,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.7847946045370938, + "noteOrder": 3846, + "time": 0.7847946045370939, "position": { "x": 4, "y": 0 @@ -3390,9 +3574,9 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.7896995708154507, "position": { "x": 4, @@ -3413,10 +3597,10 @@ }, { "lineGroupId": 98, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3892, - "time": 0.7946045370938074, + "noteOrder": 3894, + "time": 0.7946045370938075, "position": { "x": 4, "y": 0 @@ -3436,9 +3620,9 @@ }, { "lineGroupId": 98, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7995095033721643, "position": { "x": 4, @@ -3459,10 +3643,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.8044144696505212, + "noteOrder": 3942, + "time": 0.8044144696505211, "position": { "x": 7, "y": 0 @@ -3482,9 +3666,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4012, + "noteOrder": 4014, "time": 0.8191293684855917, "position": { "x": 5, @@ -3505,9 +3689,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4036, + "noteOrder": 4038, "time": 0.8240343347639485, "position": { "x": 3, @@ -3528,10 +3712,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4108, - "time": 0.8387492335990191, + "noteOrder": 4110, + "time": 0.838749233599019, "position": { "x": 5, "y": 0 @@ -3551,9 +3735,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.8436541998773758, "position": { "x": 4, @@ -3574,10 +3758,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4156, - "time": 0.8485591661557327, + "noteOrder": 4158, + "time": 0.8485591661557328, "position": { "x": 4, "y": 0 @@ -3597,9 +3781,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.8534641324340896, "position": { "x": 6, @@ -3620,10 +3804,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4204, - "time": 0.8583690987124463, + "noteOrder": 4206, + "time": 0.8583690987124464, "position": { "x": 6, "y": 0 @@ -3643,9 +3827,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.8632740649908032, "position": { "x": 4, @@ -3666,9 +3850,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4252, + "noteOrder": 4254, "time": 0.8681790312691601, "position": { "x": 3, @@ -3689,9 +3873,9 @@ }, { "lineGroupId": 111, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.8730839975475169, "position": { "x": 3, @@ -3712,9 +3896,9 @@ }, { "lineGroupId": 111, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8779889638258737, "position": { "x": 4, @@ -3735,9 +3919,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.8632740649908032, "position": { "x": 6, @@ -3758,9 +3942,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4252, + "noteOrder": 4254, "time": 0.8681790312691601, "position": { "x": 6, @@ -3781,9 +3965,9 @@ }, { "lineGroupId": 112, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.8730839975475169, "position": { "x": 6, @@ -3804,9 +3988,9 @@ }, { "lineGroupId": 112, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8779889638258737, "position": { "x": 6, @@ -3827,10 +4011,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.8927038626609441, + "noteOrder": 4374, + "time": 0.8927038626609443, "position": { "x": 6, "y": 0 @@ -3850,9 +4034,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.9221336603310852, "position": { "x": 6, @@ -3873,10 +4057,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.902513795217658, + "noteOrder": 4423, + "time": 0.9025137952176578, "position": { "x": 4, "y": 0 @@ -3896,9 +4080,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.9221336603310852, "position": { "x": 4, @@ -3919,9 +4103,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.9319435928877989, "position": { "x": 7, @@ -3942,9 +4126,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.9613733905579399, "position": { "x": 7, @@ -3965,9 +4149,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.9417535254445125, "position": { "x": 3, @@ -3988,9 +4172,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.9613733905579399, "position": { "x": 3, diff --git a/tracks/December in Strasbourg CRAB STEP EDITION/info.json b/tracks/December in Strasbourg CRAB STEP EDITION/info.json index 6751d6dd..9a603740 100644 --- a/tracks/December in Strasbourg CRAB STEP EDITION/info.json +++ b/tracks/December in Strasbourg CRAB STEP EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "December in Strasbourg CRAB STEP EDITION", - "SongLength": "116.480000", + "SongLength": "106.527347", "SongAuthorName": "nana(Sevencolors) feat. mana", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Do It!/277_difficulty_1a.json b/tracks/Do It!/277_difficulty_1a.json index b6cc8ea5..62a975d6 100644 --- a/tracks/Do It!/277_difficulty_1a.json +++ b/tracks/Do It!/277_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.018399264029438825, + "time": 0.01839926402943882, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 132, - "time": 0.020239190432382707, + "time": 0.020239190432382703, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 204, - "time": 0.031278748850046, + "time": 0.031278748850045994, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 228, - "time": 0.034958601655933765, + "time": 0.03495860165593376, "position": { "x": 8, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 264, - "time": 0.04047838086476541, + "time": 0.040478380864765406, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.04783808647654094, "position": { "x": 3, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 324, - "time": 0.04967801287948482, + "noteOrder": 325, + "time": 0.04967801287948481, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 409, - "time": 0.062557497700092, + "time": 0.06255749770009199, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 457, - "time": 0.06991720331186753, + "time": 0.06991720331186752, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 481, - "time": 0.0735970561177553, + "time": 0.07359705611775529, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 505, - "time": 0.07727690892364306, + "time": 0.07727690892364304, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 517, - "time": 0.07911683532658695, + "time": 0.07911683532658693, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 529, - "time": 0.08095676172953083, + "time": 0.08095676172953081, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 565, - "time": 0.08647654093836248, + "time": 0.08647654093836246, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 589, - "time": 0.09015639374425023, + "time": 0.09015639374425022, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 613, - "time": 0.093836246550138, + "time": 0.09383624655013799, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 673, - "time": 0.10303587856485741, + "time": 0.1030358785648574, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 805, - "time": 0.12327506899724011, + "time": 0.1232750689972401, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.13615455381784727, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 913, - "time": 0.13983440662373506, + "noteOrder": 914, + "time": 0.13983440662373503, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.14351425942962281, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15087396504139836, "position": { "x": 5, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1009, - "time": 0.1545538178472861, + "noteOrder": 1010, + "time": 0.15455381784728608, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.1582336706531739, + "noteOrder": 1034, + "time": 0.15823367065317387, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.1655933762649494, + "noteOrder": 1082, + "time": 0.16559337626494938, "position": { "x": 8, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.16927322907083717, "position": { "x": 7, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.17295308187672495, + "noteOrder": 1130, + "time": 0.17295308187672492, "position": { "x": 6, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1178, - "time": 0.18031278748850046, + "time": 0.18031278748850044, "position": { "x": 2, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1226, - "time": 0.187672493100276, + "time": 0.18767249310027598, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.23551057957681693, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1550, + "noteOrder": 1551, "time": 0.2373505059797608, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.23919043238270468, "position": { "x": 8, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1574, - "time": 0.24103035878564855, + "noteOrder": 1575, + "time": 0.24103035878564857, "position": { "x": 8, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.24287028518859247, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1598, - "time": 0.24471021159153636, + "noteOrder": 1599, + "time": 0.24471021159153633, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1610, - "time": 0.24655013799448022, + "noteOrder": 1611, + "time": 0.2465501379944802, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1706, + "noteOrder": 1707, "time": 0.26126954921803125, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.27230910763569455, "position": { "x": 8, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1790, + "noteOrder": 1791, "time": 0.27414903403863844, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.27598896044158233, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.2907083716651334, "position": { "x": 6, @@ -1074,7 +1074,7 @@ }, { "noteOrder": 2019, - "time": 0.3091076356945722, + "time": 0.30910763569457217, "position": { "x": 7, "y": 0 @@ -1094,7 +1094,7 @@ }, { "noteOrder": 2019, - "time": 0.3091076356945722, + "time": 0.30910763569457217, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3201471941122355, + "noteOrder": 2092, + "time": 0.32014719411223547, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.32750689972401104, "position": { "x": 5, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.3311867525298988, + "noteOrder": 2164, + "time": 0.33118675252989876, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.33486660533578655, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.33854645814167433, "position": { "x": 2, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.3459061637534499, + "noteOrder": 2260, + "time": 0.34590616375344985, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.34958601655933763, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.3532658693652254, + "noteOrder": 2308, + "time": 0.35326586936522536, "position": { "x": 8, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2319, + "noteOrder": 2320, "time": 0.35510579576816925, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.35694572217111314, + "noteOrder": 2332, + "time": 0.3569457221711131, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.36798528058877644, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2427, + "noteOrder": 2428, "time": 0.37166513339466417, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.375344986200552, + "noteOrder": 2452, + "time": 0.37534498620055196, "position": { "x": 8, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.37902483900643974, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.38638454461821525, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39006439742410304, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.39374425022999077, + "noteOrder": 2572, + "time": 0.3937442502299908, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.39742410303587855, + "noteOrder": 2596, + "time": 0.3974241030358785, "position": { "x": 2, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2667, - "time": 0.40846366145354185, + "noteOrder": 2669, + "time": 0.4084636614535418, "position": { "x": 2, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2691, - "time": 0.41214351425942963, + "noteOrder": 2693, + "time": 0.4121435142594296, "position": { "x": 2, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2703, + "noteOrder": 2705, "time": 0.41398344066237347, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.4231830726770929, "position": { "x": 8, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2776, - "time": 0.4250229990800368, + "noteOrder": 2777, + "time": 0.42502299908003677, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.43054277828886844, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.43422263109475623, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2860, + "noteOrder": 2861, "time": 0.43790248390064396, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 2909, "time": 0.44526218951241947, "position": { "x": 8, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.44894204231830726, + "noteOrder": 2933, + "time": 0.4489420423183072, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2957, "time": 0.452621895124195, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3196, - "time": 0.4894204231830727, + "noteOrder": 3197, + "time": 0.48942042318307266, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3220, - "time": 0.49310027598896045, + "noteOrder": 3221, + "time": 0.4931002759889604, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.49678012879484823, + "noteOrder": 3246, + "time": 0.4967801287948482, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3388, - "time": 0.5188592456301748, + "noteOrder": 3390, + "time": 0.5188592456301747, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3412, + "noteOrder": 3414, "time": 0.5225390984360625, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3436, - "time": 0.5262189512419504, + "noteOrder": 3438, + "time": 0.5262189512419503, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.5372585096596136, + "noteOrder": 3510, + "time": 0.5372585096596135, "position": { "x": 2, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3533, - "time": 0.5409383624655014, + "noteOrder": 3534, + "time": 0.5409383624655013, "position": { "x": 2, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3582, "time": 0.5482980680772769, "position": { "x": 2, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.5519779208831647, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3630, "time": 0.5556577736890524, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.563017479300828, + "noteOrder": 3678, + "time": 0.5630174793008279, "position": { "x": 8, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3702, "time": 0.5666973321067157, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3726, "time": 0.5703771849126035, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3821, + "noteOrder": 3823, "time": 0.5850965961361545, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.5869365225390983, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.6071757129714812, + "noteOrder": 3967, + "time": 0.6071757129714811, "position": { "x": 7, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3977, + "noteOrder": 3979, "time": 0.609015639374425, "position": { "x": 5, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4049, - "time": 0.6200551977920884, + "noteOrder": 4051, + "time": 0.6200551977920883, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4061, - "time": 0.6218951241950322, + "noteOrder": 4063, + "time": 0.6218951241950321, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4073, + "noteOrder": 4075, "time": 0.6237350505979761, "position": { "x": 8, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.6292548298068077, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.6310947562097516, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4157, - "time": 0.6366145354185833, + "noteOrder": 4159, + "time": 0.6366145354185831, "position": { "x": 3, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4169, + "noteOrder": 4171, "time": 0.6384544618215271, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4241, + "noteOrder": 4243, "time": 0.6494940202391905, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4255, "time": 0.6513339466421343, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4265, + "noteOrder": 4267, "time": 0.6531738730450782, "position": { "x": 2, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.6586936522539097, + "noteOrder": 4303, + "time": 0.6586936522539099, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4314, - "time": 0.6605335786568538, + "noteOrder": 4315, + "time": 0.6605335786568536, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.6623735050597976, + "noteOrder": 4327, + "time": 0.6623735050597975, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.6660533578656854, + "noteOrder": 4351, + "time": 0.6660533578656853, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.6678932842686293, + "noteOrder": 4363, + "time": 0.6678932842686292, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4375, "time": 0.6697332106715731, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4399, "time": 0.6734130634774609, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4410, - "time": 0.6752529898804048, + "noteOrder": 4412, + "time": 0.6752529898804047, "position": { "x": 6, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.6770929162833487, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4446, + "noteOrder": 4448, "time": 0.6807727690892365, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4458, + "noteOrder": 4460, "time": 0.6826126954921803, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4470, - "time": 0.6844526218951241, + "noteOrder": 4472, + "time": 0.6844526218951242, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.7028518859245629, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4626, + "noteOrder": 4628, "time": 0.7083716651333947, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4638, + "noteOrder": 4640, "time": 0.7102115915363385, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7359705611775529, "position": { "x": 8, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.7396504139834407, + "noteOrder": 4832, + "time": 0.7396504139834406, "position": { "x": 8, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.7433302667893283, "position": { "x": 8, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4878, - "time": 0.7470101195952162, + "noteOrder": 4880, + "time": 0.7470101195952161, "position": { "x": 8, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4926, + "noteOrder": 4928, "time": 0.7543698252069917, "position": { "x": 8, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.7580496780128795, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.7617295308187673, "position": { "x": 6, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.7764489420423184, + "noteOrder": 5073, + "time": 0.7764489420423183, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5083, - "time": 0.7782888684452622, + "noteOrder": 5085, + "time": 0.7782888684452621, "position": { "x": 4, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5121, "time": 0.7838086476540939, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5143, - "time": 0.7874885004599815, + "noteOrder": 5145, + "time": 0.7874885004599816, "position": { "x": 4, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7911683532658694, "position": { "x": 5, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.7985280588776449, + "noteOrder": 5217, + "time": 0.7985280588776448, "position": { "x": 7, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5239, + "noteOrder": 5241, "time": 0.8022079116835326, "position": { "x": 6, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8058877644894205, + "noteOrder": 5265, + "time": 0.8058877644894203, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5287, - "time": 0.8095676172953082, + "noteOrder": 5289, + "time": 0.8095676172953081, "position": { "x": 4, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5311, + "noteOrder": 5313, "time": 0.8132474701011959, "position": { "x": 6, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5335, - "time": 0.8169273229070837, + "noteOrder": 5337, + "time": 0.8169273229070836, "position": { "x": 7, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.8206071757129715, + "noteOrder": 5361, + "time": 0.8206071757129714, "position": { "x": 8, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5395, + "noteOrder": 5397, "time": 0.8261269549218031, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5407, + "noteOrder": 5409, "time": 0.8279668813247469, "position": { "x": 4, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.8426862925482981, "position": { "x": 5, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.8463661453541858, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.8500459981600736, + "noteOrder": 5553, + "time": 0.8500459981600735, "position": { "x": 3, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.8574057037718491, "position": { "x": 5, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5626, "time": 0.8610855565777369, "position": { "x": 6, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5647, + "noteOrder": 5650, "time": 0.8647654093836247, "position": { "x": 7, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.8721251149954001, "position": { "x": 8, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.8758049678012879, "position": { "x": 7, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.8794848206071757, "position": { "x": 6, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5791, - "time": 0.8868445262189513, + "noteOrder": 5794, + "time": 0.8868445262189512, "position": { "x": 2, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8905243790248389, "position": { "x": 3, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5839, - "time": 0.8942042318307268, + "noteOrder": 5842, + "time": 0.8942042318307266, "position": { "x": 4, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5864, - "time": 0.8978840846366145, + "noteOrder": 5866, + "time": 0.8978840846366144, "position": { "x": 8, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5912, + "noteOrder": 5914, "time": 0.90524379024839, "position": { "x": 2, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5960, - "time": 0.9126034958601656, + "noteOrder": 5962, + "time": 0.9126034958601655, "position": { "x": 8, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6008, + "noteOrder": 6010, "time": 0.9199632014719411, "position": { "x": 2, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6056, - "time": 0.9273229070837167, + "noteOrder": 6058, + "time": 0.9273229070837166, "position": { "x": 3, "y": 0 @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6068, + "noteOrder": 6070, "time": 0.9291628334866605, "position": { "x": 5, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6080, + "noteOrder": 6082, "time": 0.9310027598896043, "position": { "x": 7, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6092, + "noteOrder": 6094, "time": 0.9328426862925483, "position": { "x": 5, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.9346826126954921, "position": { "x": 3, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6116, - "time": 0.9365225390984361, + "noteOrder": 6118, + "time": 0.936522539098436, "position": { "x": 5, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6128, - "time": 0.93836246550138, + "noteOrder": 6130, + "time": 0.9383624655013799, "position": { "x": 7, "y": 0 @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6164, + "noteOrder": 6166, "time": 0.9438822447102115, "position": { "x": 7, @@ -3456,7 +3456,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.014719411223551058, @@ -3479,7 +3479,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 108, "time": 0.01655933762649494, @@ -3502,10 +3502,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.02207911683532659, + "time": 0.022079116835326585, "position": { "x": 3, "y": 0 @@ -3524,11 +3524,11 @@ "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 2, "isSliding": false, - "noteOrder": 180, - "time": 0.027598896044158234, + "noteOrder": 168, + "time": 0.02575896964121435, "position": { "x": 3, "y": 0 @@ -3542,18 +3542,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 1, + "lineGroupId": 4, + "indexInLine": 3, "isSliding": false, - "noteOrder": 192, - "time": 0.029438822447102116, + "noteOrder": 168, + "time": 0.02575896964121435, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3565,18 +3565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.04415823367065318, + "noteOrder": 180, + "time": 0.027598896044158234, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3588,18 +3588,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 1, + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 300, - "time": 0.045998160073597055, + "noteOrder": 192, + "time": 0.029438822447102116, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3611,16 +3611,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, - "time": 0.051517939282428704, + "noteOrder": 288, + "time": 0.04415823367065317, "position": { "x": 7, "y": 0 @@ -3634,16 +3634,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 372, - "time": 0.05703771849126035, + "noteOrder": 301, + "time": 0.045998160073597055, "position": { "x": 7, "y": 0 @@ -3662,11 +3662,11 @@ "isPlayAudio": false }, { - "lineGroupId": 16, + "lineGroupId": 15, "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.05887764489420423, + "noteOrder": 337, + "time": 0.0515179392824287, "position": { "x": 7, "y": 0 @@ -3680,16 +3680,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 649, - "time": 0.09935602575896964, + "noteOrder": 361, + "time": 0.05519779208831647, "position": { "x": 7, "y": 0 @@ -3703,18 +3703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 697, - "time": 0.10671573137074516, + "noteOrder": 361, + "time": 0.05519779208831647, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3731,13 +3731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.13247470101195952, + "noteOrder": 373, + "time": 0.057037718491260346, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3754,11 +3754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.13615455381784727, + "noteOrder": 385, + "time": 0.05887764489420423, "position": { "x": 7, "y": 0 @@ -3777,13 +3777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 2, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, - "time": 0.13983440662373506, + "noteOrder": 649, + "time": 0.09935602575896962, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3800,13 +3800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 3, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.14351425942962281, + "noteOrder": 661, + "time": 0.10119595216191352, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3823,13 +3823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 961, - "time": 0.1471941122355106, + "noteOrder": 661, + "time": 0.10119595216191352, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3841,16 +3841,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 37, "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.15087396504139836, + "noteOrder": 697, + "time": 0.10671573137074516, "position": { "x": 3, "y": 0 @@ -3869,13 +3869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 37, "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, - "time": 0.1545538178472861, + "noteOrder": 709, + "time": 0.10855565777368906, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3892,13 +3892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 37, "indexInLine": 3, "isSliding": false, - "noteOrder": 1033, - "time": 0.1582336706531739, + "noteOrder": 709, + "time": 0.10855565777368906, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3915,11 +3915,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.16191352345906165, + "noteOrder": 865, + "time": 0.13247470101195952, "position": { "x": 8, "y": 0 @@ -3938,11 +3938,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.1655933762649494, + "noteOrder": 890, + "time": 0.13615455381784727, "position": { "x": 7, "y": 0 @@ -3961,11 +3961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.16927322907083717, + "noteOrder": 914, + "time": 0.13983440662373503, "position": { "x": 6, "y": 0 @@ -3984,11 +3984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 3, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1129, - "time": 0.17295308187672495, + "noteOrder": 938, + "time": 0.14351425942962281, "position": { "x": 5, "y": 0 @@ -4007,13 +4007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1153, - "time": 0.1766329346826127, + "noteOrder": 962, + "time": 0.14719411223551057, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4025,18 +4025,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1178, - "time": 0.18031278748850046, + "noteOrder": 962, + "time": 0.14719411223551057, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4048,18 +4048,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1202, - "time": 0.18399264029438822, + "noteOrder": 962, + "time": 0.14719411223551057, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4076,13 +4076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 3, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1226, - "time": 0.187672493100276, + "noteOrder": 986, + "time": 0.15087396504139836, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4099,13 +4099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1250, - "time": 0.19135234590616376, + "noteOrder": 1010, + "time": 0.15455381784728608, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4117,18 +4117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1274, - "time": 0.19503219871205152, + "noteOrder": 1034, + "time": 0.15823367065317387, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4145,13 +4145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1298, - "time": 0.19871205151793928, + "noteOrder": 1058, + "time": 0.16191352345906163, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4163,18 +4163,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1322, - "time": 0.20239190432382706, + "noteOrder": 1058, + "time": 0.16191352345906163, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4191,13 +4191,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.20607175712971482, + "noteOrder": 1058, + "time": 0.16191352345906163, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4214,13 +4214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.20975160993560257, + "noteOrder": 1082, + "time": 0.16559337626494938, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4232,18 +4232,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, - "time": 0.21343146274149033, + "noteOrder": 1106, + "time": 0.16927322907083717, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4260,13 +4260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1418, - "time": 0.21711131554737811, + "noteOrder": 1130, + "time": 0.17295308187672492, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4278,18 +4278,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1442, - "time": 0.22079116835326587, + "noteOrder": 1154, + "time": 0.17663293468261268, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4306,13 +4306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1466, - "time": 0.22447102115915363, + "noteOrder": 1154, + "time": 0.17663293468261268, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4324,18 +4324,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.2281508739650414, + "noteOrder": 1154, + "time": 0.17663293468261268, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4347,16 +4347,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, - "time": 0.23183072677092917, + "noteOrder": 1178, + "time": 0.18031278748850044, "position": { "x": 3, "y": 0 @@ -4375,13 +4375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.250229990800368, + "noteOrder": 1202, + "time": 0.18399264029438822, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4393,18 +4393,4480 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1226, + "time": 0.18767249310027598, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1250, + "time": 0.19135234590616376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1250, + "time": 0.19135234590616376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1250, + "time": 0.19135234590616376, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1262, + "time": 0.19319227230910763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1262, + "time": 0.19319227230910763, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1274, + "time": 0.19503219871205152, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1286, + "time": 0.1968721251149954, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1286, + "time": 0.1968721251149954, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1298, + "time": 0.19871205151793925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1310, + "time": 0.20055197792088314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1310, + "time": 0.20055197792088314, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1322, + "time": 0.20239190432382703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1334, + "time": 0.2042318307267709, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1334, + "time": 0.2042318307267709, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1346, + "time": 0.2060717571297148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1358, + "time": 0.20791168353265868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1358, + "time": 0.20791168353265868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1370, + "time": 0.20975160993560257, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1382, + "time": 0.21159153633854644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1382, + "time": 0.21159153633854644, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1394, + "time": 0.21343146274149033, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1406, + "time": 0.21527138914443422, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1406, + "time": 0.21527138914443422, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1418, + "time": 0.21711131554737811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1430, + "time": 0.21895124195032198, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1430, + "time": 0.21895124195032198, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1442, + "time": 0.22079116835326587, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1454, + "time": 0.22263109475620974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1454, + "time": 0.22263109475620974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1466, + "time": 0.2244710211591536, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.2263109475620975, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.2263109475620975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.22815087396504138, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.22999080036798528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.22999080036798528, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.23183072677092914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1527, + "time": 0.23367065317387303, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1527, + "time": 0.23367065317387303, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.25022999080036795, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1647, + "time": 0.25206991720331184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1647, + "time": 0.25206991720331184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25390984360625574, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25390984360625574, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25390984360625574, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1671, + "time": 0.25574977000919963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1671, + "time": 0.25574977000919963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2575896964121435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2575896964121435, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2575896964121435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1695, + "time": 0.25942962281508736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1695, + "time": 0.25942962281508736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26126954921803125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26126954921803125, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26494940202391903, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1743, + "time": 0.2667893284268629, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1743, + "time": 0.2667893284268629, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26862925482980676, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26862925482980676, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26862925482980676, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1767, + "time": 0.27046918123275066, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1767, + "time": 0.27046918123275066, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1779, + "time": 0.27230910763569455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1779, + "time": 0.27230910763569455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.27966881324747006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1839, + "time": 0.28150873965041395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1839, + "time": 0.28150873965041395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28334866605335784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28334866605335784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28518859245630174, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28518859245630174, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1875, + "time": 0.28702851885924563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1875, + "time": 0.28702851885924563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1887, + "time": 0.2888684452621895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1887, + "time": 0.2888684452621895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2907083716651334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.29438822447102114, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1935, + "time": 0.29622815087396503, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1935, + "time": 0.29622815087396503, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2980680772769089, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2980680772769089, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2980680772769089, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.2999080036798528, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1959, + "time": 0.2999080036798528, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1971, + "time": 0.3017479300827967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1971, + "time": 0.3017479300827967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2043, + "time": 0.31278748850045995, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31462741490340385, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31462741490340385, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.31646734130634774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3183072677092916, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3183072677092916, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.32382704691812325, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2140, + "time": 0.32750689972401104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2164, + "time": 0.33118675252989876, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2188, + "time": 0.33486660533578655, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2212, + "time": 0.33854645814167433, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2212, + "time": 0.33854645814167433, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3422263109475621, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.344066237350506, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2284, + "time": 0.34958601655933763, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2344, + "time": 0.358785648574057, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2404, + "time": 0.36798528058877644, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2452, + "time": 0.37534498620055196, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2500, + "time": 0.3827046918123275, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.3827046918123275, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2548, + "time": 0.39006439742410304, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2596, + "time": 0.3974241030358785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.4011039558417663, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2632, + "time": 0.40294388224471017, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2632, + "time": 0.40294388224471017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2645, + "time": 0.40478380864765406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2645, + "time": 0.40478380864765406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.40478380864765406, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2657, + "time": 0.40662373505059796, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2657, + "time": 0.40662373505059796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2669, + "time": 0.4084636614535418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2669, + "time": 0.4084636614535418, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2717, + "time": 0.41582336706531736, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.41766329346826125, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.41766329346826125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.41950321987120515, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2741, + "time": 0.41950321987120515, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.41950321987120515, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.42134314627414904, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.42134314627414904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4231830726770929, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4231830726770929, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.42686292548298066, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.43422263109475623, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2885, + "time": 0.44158233670653174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.44158233670653174, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2957, + "time": 0.452621895124195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.45630174793008277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2993, + "time": 0.45814167433302666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2993, + "time": 0.45814167433302666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.45998160073597055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4618215271389144, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4618215271389144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3029, + "time": 0.4636614535418583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3041, + "time": 0.4655013799448022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3041, + "time": 0.4655013799448022, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3053, + "time": 0.46734130634774607, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3065, + "time": 0.46918123275068996, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3065, + "time": 0.46918123275068996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.48574057037718493, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3185, + "time": 0.48758049678012877, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5004599816007359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5004599816007359, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5022999080036799, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5022999080036799, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5041398344066237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5041398344066237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5041398344066237, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5059797608095675, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5059797608095675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5078196872125115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5078196872125115, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5078196872125115, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5096596136154553, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5096596136154553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5114995400183993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5114995400183993, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5114995400183993, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5133394664213431, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5133394664213431, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3366, + "time": 0.515179392824287, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3366, + "time": 0.515179392824287, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.515179392824287, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5170193192272309, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5298988040478381, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5298988040478381, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3474, + "time": 0.531738730450782, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3474, + "time": 0.531738730450782, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3486, + "time": 0.5335786568537259, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3486, + "time": 0.5335786568537259, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3486, + "time": 0.5335786568537259, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3498, + "time": 0.5354185832566697, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3498, + "time": 0.5354185832566697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3510, + "time": 0.5372585096596135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3510, + "time": 0.5372585096596135, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3522, + "time": 0.5390984360625575, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3522, + "time": 0.5390984360625575, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5409383624655013, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5409383624655013, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3546, + "time": 0.5427782888684453, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3546, + "time": 0.5427782888684453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5446182152713891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5446182152713891, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5446182152713891, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5593376264949401, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5593376264949401, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5740570377184913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5740570377184913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, - "time": 0.25390984360625574, + "noteOrder": 3762, + "time": 0.5758969641214351, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4421,13 +8883,36 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.2575896964121435, + "noteOrder": 3762, + "time": 0.5758969641214351, "position": { - "x": 6, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3774, + "time": 0.577736890524379, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4444,13 +8929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.26494940202391903, + "noteOrder": 3786, + "time": 0.5795768169273229, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4467,13 +8952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1754, - "time": 0.2686292548298068, + "noteOrder": 3786, + "time": 0.5795768169273229, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4485,18 +8970,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2796688132474701, + "noteOrder": 3798, + "time": 0.5814167433302668, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4513,13 +8998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1850, - "time": 0.28334866605335784, + "noteOrder": 3810, + "time": 0.5832566697332106, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4531,16 +9016,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.28702851885924563, + "noteOrder": 3810, + "time": 0.5832566697332106, "position": { "x": 4, "y": 0 @@ -4559,13 +9044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.2943882244710212, + "noteOrder": 3943, + "time": 0.6034958601655934, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4582,13 +9067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1946, - "time": 0.2980680772769089, + "noteOrder": 3955, + "time": 0.6053357865685373, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4600,18 +9085,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.31278748850045995, + "noteOrder": 3991, + "time": 0.6108555657773688, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4628,11 +9113,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.3164673413063478, + "noteOrder": 4015, + "time": 0.6145354185832566, "position": { "x": 3, "y": 0 @@ -4646,18 +9131,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2115, - "time": 0.3238270469181233, + "noteOrder": 4015, + "time": 0.6145354185832566, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4674,13 +9159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 2139, - "time": 0.32750689972401104, + "noteOrder": 4027, + "time": 0.6163753449862005, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4692,18 +9177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 192, "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.3311867525298988, + "noteOrder": 4039, + "time": 0.6182152713891443, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4715,18 +9200,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.33486660533578655, + "noteOrder": 4135, + "time": 0.6329346826126955, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4743,13 +9228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.34222631094756206, + "noteOrder": 4147, + "time": 0.6347746090156394, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4761,18 +9246,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 2247, - "time": 0.34406623735050595, + "noteOrder": 4183, + "time": 0.6402943882244709, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4789,13 +9274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 201, "indexInLine": 2, "isSliding": false, - "noteOrder": 2283, - "time": 0.34958601655933763, + "noteOrder": 4207, + "time": 0.6439742410303587, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4812,13 +9297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2343, - "time": 0.358785648574057, + "noteOrder": 4207, + "time": 0.6439742410303587, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4835,13 +9320,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.36798528058877644, + "noteOrder": 4219, + "time": 0.6458141674333027, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4853,18 +9338,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 202, "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.375344986200552, + "noteOrder": 4231, + "time": 0.6476540938362465, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4876,18 +9361,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 3, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.3827046918123275, + "noteOrder": 4520, + "time": 0.6918123275068997, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4899,18 +9384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.3827046918123275, + "noteOrder": 4532, + "time": 0.6936522539098435, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4927,13 +9412,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2547, - "time": 0.39006439742410304, + "noteOrder": 4532, + "time": 0.6936522539098435, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4950,13 +9435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.39742410303587855, + "noteOrder": 4544, + "time": 0.6954921803127875, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4968,18 +9453,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2619, - "time": 0.4011039558417663, + "noteOrder": 4556, + "time": 0.6973321067157313, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4996,13 +9481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2643, - "time": 0.4047838086476541, + "noteOrder": 4556, + "time": 0.6973321067157313, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5014,18 +9499,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2715, - "time": 0.41582336706531736, + "noteOrder": 4568, + "time": 0.6991720331186753, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5037,18 +9522,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2740, - "time": 0.41950321987120515, + "noteOrder": 4580, + "time": 0.7010119595216191, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5065,11 +9550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2788, - "time": 0.42686292548298066, + "noteOrder": 4580, + "time": 0.7010119595216191, "position": { "x": 6, "y": 0 @@ -5083,18 +9568,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 229, "indexInLine": 1, "isSliding": false, - "noteOrder": 2836, - "time": 0.43422263109475623, + "noteOrder": 4652, + "time": 0.7120515179392825, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5106,18 +9591,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 229, "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.44158233670653174, + "noteOrder": 4676, + "time": 0.7157313707451701, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5129,16 +9614,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.44158233670653174, + "noteOrder": 4688, + "time": 0.717571297148114, "position": { "x": 8, "y": 0 @@ -5157,13 +9642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 2956, - "time": 0.452621895124195, + "noteOrder": 4712, + "time": 0.7212511499540017, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5180,13 +9665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4563017479300828, + "noteOrder": 4724, + "time": 0.7230910763569457, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5198,18 +9683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3004, - "time": 0.45998160073597055, + "noteOrder": 4724, + "time": 0.7230910763569457, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5226,13 +9711,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3028, - "time": 0.46366145354185834, + "noteOrder": 4736, + "time": 0.7249310027598895, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5244,18 +9729,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3052, - "time": 0.46734130634774607, + "noteOrder": 4736, + "time": 0.7249310027598895, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5272,13 +9757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3172, - "time": 0.48574057037718493, + "noteOrder": 4736, + "time": 0.7249310027598895, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5295,13 +9780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3184, - "time": 0.48758049678012877, + "noteOrder": 4748, + "time": 0.7267709291628335, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5318,11 +9803,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 2, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3268, - "time": 0.500459981600736, + "noteOrder": 4748, + "time": 0.7267709291628335, "position": { "x": 6, "y": 0 @@ -5341,13 +9826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3268, - "time": 0.500459981600736, + "noteOrder": 4760, + "time": 0.7286108555657773, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5359,18 +9844,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3292, - "time": 0.5041398344066238, + "noteOrder": 4760, + "time": 0.7286108555657773, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5387,11 +9872,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3316, - "time": 0.5078196872125115, + "noteOrder": 4760, + "time": 0.7286108555657773, "position": { "x": 8, "y": 0 @@ -5410,11 +9895,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3340, - "time": 0.5114995400183993, + "noteOrder": 4772, + "time": 0.7304507819687213, "position": { "x": 8, "y": 0 @@ -5428,18 +9913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3364, - "time": 0.515179392824287, + "noteOrder": 4772, + "time": 0.7304507819687213, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5456,13 +9941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3376, - "time": 0.5170193192272309, + "noteOrder": 4784, + "time": 0.7322907083716651, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5479,13 +9964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3460, - "time": 0.5298988040478381, + "noteOrder": 4784, + "time": 0.7322907083716651, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5502,13 +9987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, - "time": 0.5298988040478381, + "noteOrder": 4784, + "time": 0.7322907083716651, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5525,13 +10010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3484, - "time": 0.5335786568537259, + "noteOrder": 4796, + "time": 0.734130634774609, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5543,18 +10028,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3557, - "time": 0.5446182152713891, + "noteOrder": 4796, + "time": 0.734130634774609, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5571,11 +10056,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3653, - "time": 0.5593376264949402, + "noteOrder": 4808, + "time": 0.7359705611775529, "position": { "x": 6, "y": 0 @@ -5594,13 +10079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3653, - "time": 0.5593376264949402, + "noteOrder": 4808, + "time": 0.7359705611775529, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5612,18 +10097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3749, - "time": 0.5740570377184913, + "noteOrder": 4820, + "time": 0.7378104875804968, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5635,18 +10120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3749, - "time": 0.5740570377184913, + "noteOrder": 4820, + "time": 0.7378104875804968, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5663,13 +10148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3773, - "time": 0.577736890524379, + "noteOrder": 4832, + "time": 0.7396504139834406, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5681,18 +10166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3797, - "time": 0.5814167433302668, + "noteOrder": 4832, + "time": 0.7396504139834406, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5709,13 +10194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 10, "isSliding": false, - "noteOrder": 3941, - "time": 0.6034958601655934, + "noteOrder": 4844, + "time": 0.7414903403863845, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5732,13 +10217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 11, "isSliding": false, - "noteOrder": 3953, - "time": 0.6053357865685373, + "noteOrder": 4844, + "time": 0.7414903403863845, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5755,13 +10240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 12, "isSliding": false, - "noteOrder": 3989, - "time": 0.6108555657773689, + "noteOrder": 4856, + "time": 0.7433302667893283, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5773,18 +10258,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4025, - "time": 0.6163753449862006, + "noteOrder": 4856, + "time": 0.7433302667893283, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5801,13 +10286,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4037, - "time": 0.6182152713891444, + "noteOrder": 4868, + "time": 0.7451701931922723, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5824,13 +10309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4133, - "time": 0.6329346826126956, + "noteOrder": 4868, + "time": 0.7451701931922723, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5842,18 +10327,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4145, - "time": 0.6347746090156394, + "noteOrder": 4880, + "time": 0.7470101195952161, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5865,18 +10350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 17, "isSliding": false, - "noteOrder": 4181, - "time": 0.640294388224471, + "noteOrder": 4880, + "time": 0.7470101195952161, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5893,13 +10378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 18, "isSliding": false, - "noteOrder": 4217, - "time": 0.6458141674333028, + "noteOrder": 4892, + "time": 0.74885004599816, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5911,18 +10396,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 19, "isSliding": false, - "noteOrder": 4229, - "time": 0.6476540938362466, + "noteOrder": 4892, + "time": 0.74885004599816, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5934,18 +10419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 20, "isSliding": false, - "noteOrder": 4518, - "time": 0.6918123275068998, + "noteOrder": 4904, + "time": 0.7506899724011039, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5957,18 +10442,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 21, "isSliding": false, - "noteOrder": 4542, - "time": 0.6954921803127875, + "noteOrder": 4904, + "time": 0.7506899724011039, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5985,13 +10470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4566, - "time": 0.6991720331186753, + "noteOrder": 4904, + "time": 0.7506899724011039, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -6008,13 +10493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4650, - "time": 0.7120515179392825, + "noteOrder": 4928, + "time": 0.7543698252069917, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6031,13 +10516,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4674, - "time": 0.7157313707451701, + "noteOrder": 4976, + "time": 0.7617295308187673, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6054,13 +10539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 2, + "lineGroupId": 238, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4686, - "time": 0.717571297148114, + "noteOrder": 5001, + "time": 0.765409383624655, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6077,13 +10562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4710, - "time": 0.7212511499540019, + "noteOrder": 5001, + "time": 0.765409383624655, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -6100,13 +10585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4734, - "time": 0.7249310027598896, + "noteOrder": 5001, + "time": 0.765409383624655, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6123,13 +10608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, - "time": 0.7286108555657773, + "noteOrder": 5013, + "time": 0.7672493100275988, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6141,18 +10626,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4782, - "time": 0.7322907083716652, + "noteOrder": 5013, + "time": 0.7672493100275988, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6169,13 +10654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, - "time": 0.750689972401104, + "noteOrder": 5025, + "time": 0.7690892364305427, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6192,11 +10677,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4926, - "time": 0.7543698252069917, + "noteOrder": 5037, + "time": 0.7709291628334866, "position": { "x": 7, "y": 0 @@ -6215,13 +10700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 2, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4974, - "time": 0.7617295308187673, + "noteOrder": 5037, + "time": 0.7709291628334866, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6238,11 +10723,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4998, - "time": 0.765409383624655, + "noteOrder": 5049, + "time": 0.7727690892364305, "position": { "x": 2, "y": 0 @@ -6261,13 +10746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5022, - "time": 0.7690892364305427, + "noteOrder": 5061, + "time": 0.7746090156393743, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -6279,18 +10764,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5046, - "time": 0.7727690892364305, + "noteOrder": 5061, + "time": 0.7746090156393743, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6308,9 +10793,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5095, + "noteOrder": 5097, "time": 0.7801287948482061, "position": { "x": 3, @@ -6331,9 +10816,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5107, + "noteOrder": 5109, "time": 0.7819687212511499, "position": { "x": 3, @@ -6354,10 +10839,10 @@ }, { "lineGroupId": 247, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5191, - "time": 0.7948482060717571, + "noteOrder": 5193, + "time": 0.794848206071757, "position": { "x": 7, "y": 0 @@ -6377,10 +10862,10 @@ }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, - "time": 0.7948482060717571, + "noteOrder": 5193, + "time": 0.794848206071757, "position": { "x": 7, "y": 0 @@ -6400,10 +10885,10 @@ }, { "lineGroupId": 251, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5203, - "time": 0.796688132474701, + "noteOrder": 5205, + "time": 0.7966881324747009, "position": { "x": 7, "y": 0 @@ -6423,10 +10908,10 @@ }, { "lineGroupId": 251, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5287, - "time": 0.8095676172953082, + "noteOrder": 5289, + "time": 0.8095676172953081, "position": { "x": 3, "y": 0 @@ -6446,10 +10931,10 @@ }, { "lineGroupId": 251, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5359, - "time": 0.8206071757129715, + "noteOrder": 5361, + "time": 0.8206071757129714, "position": { "x": 6, "y": 0 @@ -6469,10 +10954,10 @@ }, { "lineGroupId": 259, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5371, - "time": 0.8224471021159154, + "noteOrder": 5373, + "time": 0.8224471021159153, "position": { "x": 4, "y": 0 @@ -6492,10 +10977,10 @@ }, { "lineGroupId": 259, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5383, - "time": 0.8242870285188593, + "noteOrder": 5385, + "time": 0.8242870285188592, "position": { "x": 4, "y": 0 @@ -6515,9 +11000,9 @@ }, { "lineGroupId": 263, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5419, + "noteOrder": 5421, "time": 0.8298068077276909, "position": { "x": 8, @@ -6538,10 +11023,10 @@ }, { "lineGroupId": 263, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5455, - "time": 0.8353265869365226, + "noteOrder": 5457, + "time": 0.8353265869365225, "position": { "x": 6, "y": 0 @@ -6561,9 +11046,9 @@ }, { "lineGroupId": 264, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8390064397424103, "position": { "x": 8, @@ -6584,9 +11069,9 @@ }, { "lineGroupId": 264, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.8426862925482981, "position": { "x": 7, @@ -6607,9 +11092,9 @@ }, { "lineGroupId": 264, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.8463661453541858, "position": { "x": 6, @@ -6630,10 +11115,33 @@ }, { "lineGroupId": 264, - "indexInLine": 3, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5553, + "time": 0.8500459981600735, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5551, - "time": 0.8500459981600736, + "noteOrder": 5577, + "time": 0.8537258509659613, "position": { "x": 5, "y": 0 @@ -6651,11 +11159,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 264, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5577, + "time": 0.8537258509659613, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 268, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.8537258509659613, "position": { "x": 2, @@ -6676,9 +11207,9 @@ }, { "lineGroupId": 268, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.8574057037718491, "position": { "x": 3, @@ -6699,9 +11230,9 @@ }, { "lineGroupId": 268, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5623, + "noteOrder": 5626, "time": 0.8610855565777369, "position": { "x": 4, @@ -6722,9 +11253,9 @@ }, { "lineGroupId": 268, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5647, + "noteOrder": 5650, "time": 0.8647654093836247, "position": { "x": 5, @@ -6743,11 +11274,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 268, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8684452621895125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8684452621895125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 272, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, + "noteOrder": 5674, "time": 0.8684452621895125, "position": { "x": 8, @@ -6768,9 +11345,9 @@ }, { "lineGroupId": 272, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.8721251149954001, "position": { "x": 7, @@ -6791,9 +11368,9 @@ }, { "lineGroupId": 272, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.8758049678012879, "position": { "x": 6, @@ -6814,9 +11391,9 @@ }, { "lineGroupId": 272, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.8794848206071757, "position": { "x": 5, @@ -6835,11 +11412,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 272, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5770, + "time": 0.8831646734130635, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5770, + "time": 0.8831646734130635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 276, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5767, + "noteOrder": 5770, "time": 0.8831646734130635, "position": { "x": 2, @@ -6860,10 +11483,10 @@ }, { "lineGroupId": 276, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5791, - "time": 0.8868445262189513, + "noteOrder": 5794, + "time": 0.8868445262189512, "position": { "x": 3, "y": 0 @@ -6883,9 +11506,9 @@ }, { "lineGroupId": 276, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8905243790248389, "position": { "x": 4, @@ -6906,10 +11529,33 @@ }, { "lineGroupId": 276, - "indexInLine": 3, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5842, + "time": 0.8942042318307266, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5839, - "time": 0.8942042318307268, + "noteOrder": 5866, + "time": 0.8978840846366144, "position": { "x": 5, "y": 0 @@ -6927,12 +11573,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 276, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5866, + "time": 0.8978840846366144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 291, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6032, - "time": 0.9236430542778289, + "noteOrder": 6034, + "time": 0.9236430542778288, "position": { "x": 5, "y": 0 @@ -6952,10 +11621,10 @@ }, { "lineGroupId": 291, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6056, - "time": 0.9273229070837167, + "noteOrder": 6058, + "time": 0.9273229070837166, "position": { "x": 5, "y": 0 @@ -6975,10 +11644,10 @@ }, { "lineGroupId": 299, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6140, - "time": 0.9402023919043239, + "noteOrder": 6142, + "time": 0.9402023919043238, "position": { "x": 3, "y": 0 @@ -6998,9 +11667,9 @@ }, { "lineGroupId": 299, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6164, + "noteOrder": 6166, "time": 0.9438822447102115, "position": { "x": 3, @@ -7021,9 +11690,9 @@ }, { "lineGroupId": 301, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6176, + "noteOrder": 6179, "time": 0.9457221711131555, "position": { "x": 3, @@ -7044,10 +11713,10 @@ }, { "lineGroupId": 301, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6188, - "time": 0.9475620975160993, + "noteOrder": 6191, + "time": 0.9475620975160992, "position": { "x": 3, "y": 0 @@ -7067,10 +11736,10 @@ }, { "lineGroupId": 301, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6224, - "time": 0.953081876724931, + "noteOrder": 6227, + "time": 0.9530818767249309, "position": { "x": 8, "y": 0 @@ -7090,9 +11759,9 @@ }, { "lineGroupId": 301, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9567617295308187, "position": { "x": 8, diff --git a/tracks/Do It!/277_difficulty_1b.json b/tracks/Do It!/277_difficulty_1b.json index fb2ecaaf..764950ff 100644 --- a/tracks/Do It!/277_difficulty_1b.json +++ b/tracks/Do It!/277_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.018399264029438825, + "time": 0.01839926402943882, "position": { "x": 8, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 240, - "time": 0.03679852805887765, + "time": 0.03679852805887764, "position": { "x": 4, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.04783808647654094, "position": { "x": 5, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 385, "time": 0.05887764489420423, "position": { "x": 4, @@ -134,7 +134,7 @@ }, { "noteOrder": 409, - "time": 0.062557497700092, + "time": 0.06255749770009199, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 505, - "time": 0.07727690892364306, + "time": 0.07727690892364304, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 577, - "time": 0.08831646734130635, + "time": 0.08831646734130634, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 817, - "time": 0.125114995400184, + "time": 0.12511499540018398, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.13615455381784727, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 913, - "time": 0.13983440662373506, + "noteOrder": 914, + "time": 0.13983440662373503, "position": { "x": 2, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15087396504139836, "position": { "x": 6, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1009, - "time": 0.1545538178472861, + "noteOrder": 1010, + "time": 0.15455381784728608, "position": { "x": 8, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.1655933762649494, + "noteOrder": 1082, + "time": 0.16559337626494938, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.16927322907083717, "position": { "x": 6, @@ -454,7 +454,7 @@ }, { "noteOrder": 1178, - "time": 0.18031278748850046, + "time": 0.18031278748850044, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1298, - "time": 0.19871205151793928, + "time": 0.19871205151793925, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1322, - "time": 0.20239190432382706, + "time": 0.20239190432382703, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.25390984360625574, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2575896964121435, "position": { "x": 2, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.2686292548298068, + "noteOrder": 1755, + "time": 0.26862925482980676, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.27230910763569455, "position": { "x": 8, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.28702851885924563, "position": { "x": 8, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1946, + "noteOrder": 1947, "time": 0.2980680772769089, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.3164673413063478, + "noteOrder": 2068, + "time": 0.31646734130634774, "position": { "x": 2, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.32750689972401104, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.3311867525298988, + "noteOrder": 2164, + "time": 0.33118675252989876, "position": { "x": 8, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2235, - "time": 0.34222631094756206, + "noteOrder": 2236, + "time": 0.3422263109475621, "position": { "x": 4, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.3459061637534499, + "noteOrder": 2260, + "time": 0.34590616375344985, "position": { "x": 2, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.375344986200552, + "noteOrder": 2452, + "time": 0.37534498620055196, "position": { "x": 2, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39006439742410304, "position": { "x": 2, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.4011039558417663, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2643, - "time": 0.4047838086476541, + "noteOrder": 2645, + "time": 0.40478380864765406, "position": { "x": 8, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2715, + "noteOrder": 2717, "time": 0.41582336706531736, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.41950321987120515, "position": { "x": 2, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.43054277828886844, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.43422263109475623, "position": { "x": 8, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.44894204231830726, + "noteOrder": 2933, + "time": 0.4489420423183072, "position": { "x": 8, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3028, - "time": 0.46366145354185834, + "noteOrder": 3029, + "time": 0.4636614535418583, "position": { "x": 8, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.4747010119595216, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.47838086476540936, "position": { "x": 2, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.4820607175712971, + "noteOrder": 3149, + "time": 0.48206071757129715, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3220, - "time": 0.49310027598896045, + "noteOrder": 3221, + "time": 0.4931002759889604, "position": { "x": 2, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3292, - "time": 0.5041398344066238, + "noteOrder": 3294, + "time": 0.5041398344066237, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3318, "time": 0.5078196872125115, "position": { "x": 8, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3412, + "noteOrder": 3414, "time": 0.5225390984360625, "position": { "x": 8, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3484, + "noteOrder": 3486, "time": 0.5335786568537259, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.5372585096596136, + "noteOrder": 3510, + "time": 0.5372585096596135, "position": { "x": 2, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.5519779208831647, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3702, "time": 0.5666973321067157, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3845, - "time": 0.5887764489420424, + "noteOrder": 3847, + "time": 0.5887764489420423, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.6034958601655934, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.6034958601655934, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6108555657773689, + "noteOrder": 3991, + "time": 0.6108555657773688, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4037, - "time": 0.6182152713891444, + "noteOrder": 4039, + "time": 0.6182152713891443, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.6255749770009199, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4133, - "time": 0.6329346826126956, + "noteOrder": 4135, + "time": 0.6329346826126955, "position": { "x": 5, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4181, - "time": 0.640294388224471, + "noteOrder": 4183, + "time": 0.6402943882244709, "position": { "x": 2, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4229, - "time": 0.6476540938362466, + "noteOrder": 4231, + "time": 0.6476540938362465, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4279, "time": 0.6550137994480221, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.6623735050597976, + "noteOrder": 4327, + "time": 0.6623735050597975, "position": { "x": 2, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.6660533578656854, + "noteOrder": 4351, + "time": 0.6660533578656853, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4375, "time": 0.6697332106715731, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4399, "time": 0.6734130634774609, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.6770929162833487, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4446, + "noteOrder": 4448, "time": 0.6807727690892365, "position": { "x": 8, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4470, - "time": 0.6844526218951241, + "noteOrder": 4472, + "time": 0.6844526218951242, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.6881324747010119, + "noteOrder": 4496, + "time": 0.688132474701012, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4518, - "time": 0.6918123275068998, + "noteOrder": 4520, + "time": 0.6918123275068997, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4542, + "noteOrder": 4544, "time": 0.6954921803127875, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4566, + "noteOrder": 4568, "time": 0.6991720331186753, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.7028518859245629, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4614, - "time": 0.7065317387304508, + "noteOrder": 4616, + "time": 0.7065317387304507, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7359705611775529, "position": { "x": 2, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.7396504139834407, + "noteOrder": 4832, + "time": 0.7396504139834406, "position": { "x": 2, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.7433302667893283, "position": { "x": 2, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4878, - "time": 0.7470101195952162, + "noteOrder": 4880, + "time": 0.7470101195952161, "position": { "x": 2, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4926, + "noteOrder": 4928, "time": 0.7543698252069917, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.7580496780128795, "position": { "x": 8, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.7617295308187673, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4998, + "noteOrder": 5001, "time": 0.765409383624655, "position": { "x": 8, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5022, + "noteOrder": 5025, "time": 0.7690892364305427, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5046, + "noteOrder": 5049, "time": 0.7727690892364305, "position": { "x": 8, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.7764489420423184, + "noteOrder": 5073, + "time": 0.7764489420423183, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5191, - "time": 0.7948482060717571, + "noteOrder": 5193, + "time": 0.794848206071757, "position": { "x": 8, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.7985280588776449, + "noteOrder": 5217, + "time": 0.7985280588776448, "position": { "x": 8, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5239, + "noteOrder": 5241, "time": 0.8022079116835326, "position": { "x": 8, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8058877644894205, + "noteOrder": 5265, + "time": 0.8058877644894203, "position": { "x": 8, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5311, + "noteOrder": 5313, "time": 0.8132474701011959, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5335, - "time": 0.8169273229070837, + "noteOrder": 5337, + "time": 0.8169273229070836, "position": { "x": 2, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.8206071757129715, + "noteOrder": 5361, + "time": 0.8206071757129714, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.8426862925482981, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.8463661453541858, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.8574057037718491, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5626, "time": 0.8610855565777369, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.8721251149954001, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.8758049678012879, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5791, - "time": 0.8868445262189513, + "noteOrder": 5794, + "time": 0.8868445262189512, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8905243790248389, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5888, - "time": 0.9015639374425023, + "noteOrder": 5890, + "time": 0.9015639374425022, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5936, - "time": 0.9089236430542779, + "noteOrder": 5938, + "time": 0.9089236430542778, "position": { "x": 7, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.9162833486660533, "position": { "x": 3, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9236430542778289, + "noteOrder": 6034, + "time": 0.9236430542778288, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6080, + "noteOrder": 6082, "time": 0.9310027598896043, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6128, - "time": 0.93836246550138, + "noteOrder": 6130, + "time": 0.9383624655013799, "position": { "x": 7, "y": 0 @@ -2376,7 +2376,7 @@ "lineNodes": [ { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.13247470101195952, @@ -2399,10 +2399,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 913, - "time": 0.13983440662373506, + "noteOrder": 914, + "time": 0.13983440662373503, "position": { "x": 4, "y": 0 @@ -2422,10 +2422,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1471941122355106, + "noteOrder": 962, + "time": 0.14719411223551057, "position": { "x": 3, "y": 0 @@ -2445,10 +2445,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, - "time": 0.1545538178472861, + "noteOrder": 1010, + "time": 0.15455381784728608, "position": { "x": 6, "y": 0 @@ -2468,10 +2468,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.16191352345906165, + "noteOrder": 1058, + "time": 0.16191352345906163, "position": { "x": 8, "y": 0 @@ -2491,10 +2491,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.1655933762649494, + "noteOrder": 1082, + "time": 0.16559337626494938, "position": { "x": 6, "y": 0 @@ -2514,9 +2514,9 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.16927322907083717, "position": { "x": 8, @@ -2537,10 +2537,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.1766329346826127, + "noteOrder": 1154, + "time": 0.17663293468261268, "position": { "x": 6, "y": 0 @@ -2560,10 +2560,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1178, - "time": 0.18031278748850046, + "time": 0.18031278748850044, "position": { "x": 4, "y": 0 @@ -2583,7 +2583,7 @@ }, { "lineGroupId": 34, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1202, "time": 0.18399264029438822, @@ -2606,9 +2606,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.23551057957681693, "position": { "x": 3, @@ -2629,9 +2629,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.24287028518859247, "position": { "x": 3, @@ -2652,9 +2652,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.23551057957681693, "position": { "x": 7, @@ -2675,9 +2675,9 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.24287028518859247, "position": { "x": 7, @@ -2698,10 +2698,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.250229990800368, + "noteOrder": 1635, + "time": 0.25022999080036795, "position": { "x": 7, "y": 0 @@ -2721,9 +2721,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2575896964121435, "position": { "x": 4, @@ -2744,9 +2744,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.26494940202391903, "position": { "x": 3, @@ -2767,9 +2767,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.27230910763569455, "position": { "x": 6, @@ -2790,10 +2790,33 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.27966881324747006, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, - "time": 0.2796688132474701, + "noteOrder": 1839, + "time": 0.28150873965041395, "position": { "x": 8, "y": 0 @@ -2811,11 +2834,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1839, + "time": 0.28150873965041395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.28334866605335784, "position": { "x": 8, @@ -2834,12 +2880,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28518859245630174, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28518859245630174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.2943882244710212, + "noteOrder": 1923, + "time": 0.29438822447102114, "position": { "x": 7, "y": 0 @@ -2859,7 +2951,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1971, "time": 0.3017479300827967, @@ -2882,10 +2974,33 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2019, - "time": 0.3091076356945722, + "time": 0.30910763569457217, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2031, + "time": 0.31094756209751606, "position": { "x": 2, "y": 0 @@ -2903,9 +3018,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2031, + "time": 0.31094756209751606, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2043, "time": 0.31278748850045995, @@ -2926,12 +3064,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31462741490340385, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31462741490340385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.3238270469181233, + "noteOrder": 2116, + "time": 0.32382704691812325, "position": { "x": 3, "y": 0 @@ -2951,10 +3135,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.3311867525298988, + "noteOrder": 2164, + "time": 0.33118675252989876, "position": { "x": 6, "y": 0 @@ -2974,9 +3158,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.33854645814167433, "position": { "x": 7, @@ -2997,10 +3181,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.3459061637534499, + "noteOrder": 2260, + "time": 0.34590616375344985, "position": { "x": 4, "y": 0 @@ -3020,9 +3204,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.36798528058877644, "position": { "x": 2, @@ -3041,11 +3225,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3698252069917203, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3698252069917203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2427, + "noteOrder": 2428, "time": 0.37166513339466417, "position": { "x": 2, @@ -3065,11 +3295,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.3827046918123275, + "noteOrder": 2440, + "time": 0.37350505979760806, "position": { "x": 2, "y": 0 @@ -3083,18 +3313,1260 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2440, + "time": 0.37350505979760806, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.3827046918123275, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2512, + "time": 0.38454461821527136, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2512, + "time": 0.38454461821527136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2524, + "time": 0.38638454461821525, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.38822447102115915, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2536, + "time": 0.38822447102115915, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.3974241030358785, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2645, + "time": 0.40478380864765406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.4121435142594296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2741, + "time": 0.41950321987120515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.42686292548298066, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.43422263109475623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.44158233670653174, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2897, + "time": 0.4434222631094756, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2897, + "time": 0.4434222631094756, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2909, + "time": 0.44526218951241947, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2921, + "time": 0.4471021159153633, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2921, + "time": 0.4471021159153633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.45630174793008277, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2993, + "time": 0.45814167433302666, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2993, + "time": 0.45814167433302666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.45998160073597055, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4618215271389144, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4618215271389144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.48574057037718493, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3185, + "time": 0.48758049678012877, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3185, + "time": 0.48758049678012877, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3197, + "time": 0.48942042318307266, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3209, + "time": 0.4912603495860165, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3209, + "time": 0.4912603495860165, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5004599816007359, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5078196872125115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.515179392824287, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5170193192272309, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5170193192272309, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3390, + "time": 0.5188592456301747, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3402, + "time": 0.5206991720331187, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3402, + "time": 0.5206991720331187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5298988040478381, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3510, + "time": 0.5372585096596135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5446182152713891, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5464581416743329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5464581416743329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5482980680772769, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3594, + "time": 0.5501379944802207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3594, + "time": 0.5501379944802207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5593376264949401, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3666, + "time": 0.5611775528978841, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3666, + "time": 0.5611775528978841, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5630174793008279, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3690, + "time": 0.5648574057037719, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3690, + "time": 0.5648574057037719, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5740570377184913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, - "time": 0.38638454461821525, + "noteOrder": 3762, + "time": 0.5758969641214351, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3106,18 +4578,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2595, - "time": 0.39742410303587855, + "noteOrder": 3762, + "time": 0.5758969641214351, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3134,13 +4606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.4047838086476541, + "noteOrder": 3774, + "time": 0.577736890524379, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3152,16 +4624,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2691, - "time": 0.41214351425942963, + "noteOrder": 3786, + "time": 0.5795768169273229, "position": { "x": 7, "y": 0 @@ -3180,13 +4652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2740, - "time": 0.41950321987120515, + "noteOrder": 3786, + "time": 0.5795768169273229, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3203,11 +4675,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.42686292548298066, + "noteOrder": 3798, + "time": 0.5814167433302668, "position": { "x": 3, "y": 0 @@ -3226,13 +4698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.43422263109475623, + "noteOrder": 3810, + "time": 0.5832566697332106, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3249,13 +4721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.44158233670653174, + "noteOrder": 3810, + "time": 0.5832566697332106, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3267,18 +4739,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2908, - "time": 0.44526218951241947, + "noteOrder": 3823, + "time": 0.5850965961361545, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3290,18 +4762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4563017479300828, + "noteOrder": 3835, + "time": 0.5869365225390983, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3318,13 +4790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3004, - "time": 0.45998160073597055, + "noteOrder": 3835, + "time": 0.5869365225390983, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3336,16 +4808,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3172, - "time": 0.48574057037718493, + "noteOrder": 4712, + "time": 0.7212511499540017, "position": { "x": 2, "y": 0 @@ -3364,11 +4836,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3196, - "time": 0.4894204231830727, + "noteOrder": 4724, + "time": 0.7230910763569457, "position": { "x": 2, "y": 0 @@ -3382,18 +4854,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3268, - "time": 0.500459981600736, + "noteOrder": 4724, + "time": 0.7230910763569457, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3410,13 +4882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 3316, - "time": 0.5078196872125115, + "noteOrder": 4736, + "time": 0.7249310027598895, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3428,18 +4900,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.515179392824287, + "noteOrder": 4748, + "time": 0.7267709291628335, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3456,13 +4928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3388, - "time": 0.5188592456301748, + "noteOrder": 4748, + "time": 0.7267709291628335, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3474,18 +4946,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, - "time": 0.5298988040478381, + "noteOrder": 4760, + "time": 0.7286108555657773, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3497,18 +4969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, - "time": 0.5372585096596136, + "noteOrder": 4772, + "time": 0.7304507819687213, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3520,18 +4992,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3557, - "time": 0.5446182152713891, + "noteOrder": 4772, + "time": 0.7304507819687213, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3548,13 +5020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3581, - "time": 0.5482980680772769, + "noteOrder": 4784, + "time": 0.7322907083716651, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3571,13 +5043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3653, - "time": 0.5593376264949402, + "noteOrder": 4796, + "time": 0.734130634774609, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3594,13 +5066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3677, - "time": 0.563017479300828, + "noteOrder": 4796, + "time": 0.734130634774609, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3612,16 +5084,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3749, - "time": 0.5740570377184913, + "noteOrder": 4904, + "time": 0.7506899724011039, "position": { "x": 3, "y": 0 @@ -3640,13 +5112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3773, - "time": 0.577736890524379, + "noteOrder": 4952, + "time": 0.7580496780128795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3658,18 +5130,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3797, - "time": 0.5814167433302668, + "noteOrder": 5097, + "time": 0.7801287948482061, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3681,18 +5153,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3821, - "time": 0.5850965961361545, + "noteOrder": 5109, + "time": 0.7819687212511499, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3709,13 +5181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4710, - "time": 0.7212511499540019, + "noteOrder": 5109, + "time": 0.7819687212511499, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3727,18 +5199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4734, - "time": 0.7249310027598896, + "noteOrder": 5121, + "time": 0.7838086476540939, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3750,18 +5222,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, - "time": 0.7286108555657773, + "noteOrder": 5133, + "time": 0.7856485740570377, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3778,13 +5250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4782, - "time": 0.7322907083716652, + "noteOrder": 5133, + "time": 0.7856485740570377, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3796,18 +5268,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, - "time": 0.750689972401104, + "noteOrder": 5145, + "time": 0.7874885004599816, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3819,18 +5291,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4950, - "time": 0.7580496780128795, + "noteOrder": 5157, + "time": 0.7893284268629255, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3842,18 +5314,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5095, - "time": 0.7801287948482061, + "noteOrder": 5157, + "time": 0.7893284268629255, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3870,11 +5342,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5119, - "time": 0.7838086476540939, + "noteOrder": 5169, + "time": 0.7911683532658694, "position": { "x": 8, "y": 0 @@ -3893,11 +5365,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5143, - "time": 0.7874885004599815, + "noteOrder": 5181, + "time": 0.7930082796688132, "position": { "x": 8, "y": 0 @@ -3911,18 +5383,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5167, - "time": 0.7911683532658694, + "noteOrder": 5181, + "time": 0.7930082796688132, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3940,10 +5412,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, - "time": 0.8095676172953082, + "noteOrder": 5289, + "time": 0.8095676172953081, "position": { "x": 7, "y": 0 @@ -3963,10 +5435,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5335, - "time": 0.8169273229070837, + "noteOrder": 5337, + "time": 0.8169273229070836, "position": { "x": 4, "y": 0 @@ -3986,9 +5458,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8390064397424103, "position": { "x": 4, @@ -4009,9 +5481,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.8426862925482981, "position": { "x": 5, @@ -4032,9 +5504,9 @@ }, { "lineGroupId": 174, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.8463661453541858, "position": { "x": 4, @@ -4055,9 +5527,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.8537258509659613, "position": { "x": 4, @@ -4078,9 +5550,9 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.8574057037718491, "position": { "x": 5, @@ -4101,9 +5573,9 @@ }, { "lineGroupId": 177, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5623, + "noteOrder": 5626, "time": 0.8610855565777369, "position": { "x": 4, @@ -4124,9 +5596,9 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, + "noteOrder": 5674, "time": 0.8684452621895125, "position": { "x": 6, @@ -4147,9 +5619,9 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.8721251149954001, "position": { "x": 5, @@ -4170,9 +5642,9 @@ }, { "lineGroupId": 180, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.8758049678012879, "position": { "x": 6, @@ -4193,9 +5665,9 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5767, + "noteOrder": 5770, "time": 0.8831646734130635, "position": { "x": 6, @@ -4216,10 +5688,10 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5791, - "time": 0.8868445262189513, + "noteOrder": 5794, + "time": 0.8868445262189512, "position": { "x": 5, "y": 0 @@ -4239,9 +5711,9 @@ }, { "lineGroupId": 183, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8905243790248389, "position": { "x": 6, @@ -4262,10 +5734,10 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6056, - "time": 0.9273229070837167, + "noteOrder": 6058, + "time": 0.9273229070837166, "position": { "x": 4, "y": 0 @@ -4285,9 +5757,9 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.9346826126954921, "position": { "x": 4, @@ -4308,9 +5780,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.9346826126954921, "position": { "x": 6, @@ -4331,9 +5803,9 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6152, + "noteOrder": 6154, "time": 0.9420423183072677, "position": { "x": 6, @@ -4354,9 +5826,9 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6152, + "noteOrder": 6154, "time": 0.9420423183072677, "position": { "x": 4, @@ -4377,9 +5849,9 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9567617295308187, "position": { "x": 4, diff --git a/tracks/Do It!/info.json b/tracks/Do It!/info.json index 34c0fb68..b3181bdc 100644 --- a/tracks/Do It!/info.json +++ b/tracks/Do It!/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Do It!", - "SongLength": "122.592653", + "SongLength": "112.640000", "SongAuthorName": "MK", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/EZ DO DANCE/322_difficulty_1a.json b/tracks/EZ DO DANCE/322_difficulty_1a.json index d7e94445..e1f50671 100644 --- a/tracks/EZ DO DANCE/322_difficulty_1a.json +++ b/tracks/EZ DO DANCE/322_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.013617021276595745, + "time": 0.013617021276595746, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.01702127659574468, + "time": 0.017021276595744685, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 145, - "time": 0.020425531914893616, + "time": 0.02042553191489362, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 169, - "time": 0.023829787234042554, + "time": 0.023829787234042558, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 194, - "time": 0.02723404255319149, + "time": 0.027234042553191493, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 218, - "time": 0.030638297872340424, + "time": 0.030638297872340427, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 242, - "time": 0.03404255319148936, + "time": 0.03404255319148937, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 314, + "noteOrder": 315, "time": 0.04425531914893617, "position": { "x": 6, @@ -194,7 +194,7 @@ }, { "noteOrder": 363, - "time": 0.05106382978723404, + "time": 0.05106382978723405, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 411, - "time": 0.05787234042553191, + "time": 0.05787234042553192, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 508, - "time": 0.07148936170212765, + "time": 0.07148936170212766, "position": { "x": 5, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 556, - "time": 0.07829787234042553, + "noteOrder": 557, + "time": 0.07829787234042554, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 581, - "time": 0.08170212765957446, + "time": 0.08170212765957448, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 605, - "time": 0.0851063829787234, + "time": 0.08510638297872342, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 653, - "time": 0.09191489361702126, + "time": 0.09191489361702128, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 702, - "time": 0.09872340425531914, + "time": 0.09872340425531916, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 726, - "time": 0.10212765957446808, + "time": 0.1021276595744681, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 750, - "time": 0.10553191489361702, + "time": 0.10553191489361703, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 774, - "time": 0.10893617021276596, + "time": 0.10893617021276597, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 798, - "time": 0.11234042553191488, + "noteOrder": 799, + "time": 0.11234042553191491, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 895, - "time": 0.12595744680851062, + "time": 0.12595744680851065, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 943, - "time": 0.1327659574468085, + "noteOrder": 944, + "time": 0.13276595744680852, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 968, - "time": 0.13617021276595745, + "time": 0.13617021276595748, "position": { "x": 5, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 992, - "time": 0.13957446808510637, + "time": 0.1395744680851064, "position": { "x": 5, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1210, - "time": 0.1702127659574468, + "time": 0.17021276595744683, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1282, - "time": 0.1804255319148936, + "noteOrder": 1283, + "time": 0.18042553191489363, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1331, - "time": 0.18723404255319148, + "time": 0.1872340425531915, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1379, - "time": 0.19404255319148936, + "time": 0.1940425531914894, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1427, + "noteOrder": 1428, "time": 0.20085106382978724, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1669, - "time": 0.2348936170212766, + "noteOrder": 1670, + "time": 0.23489361702127662, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1693, - "time": 0.23829787234042554, + "noteOrder": 1694, + "time": 0.23829787234042557, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1718, - "time": 0.24170212765957447, + "time": 0.2417021276595745, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1766, - "time": 0.24851063829787232, + "noteOrder": 1767, + "time": 0.24851063829787237, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1814, - "time": 0.2553191489361702, + "noteOrder": 1815, + "time": 0.25531914893617025, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1887, - "time": 0.265531914893617, + "noteOrder": 1888, + "time": 0.26553191489361705, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.26893617021276595, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2056, + "noteOrder": 2057, "time": 0.2893617021276596, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2080, - "time": 0.2927659574468085, + "noteOrder": 2081, + "time": 0.29276595744680856, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2153, - "time": 0.3029787234042553, + "noteOrder": 2154, + "time": 0.30297872340425536, "position": { "x": 3, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2201, + "noteOrder": 2202, "time": 0.3097872340425532, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2250, + "noteOrder": 2251, "time": 0.31659574468085105, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2274, - "time": 0.31999999999999995, + "noteOrder": 2275, + "time": 0.32, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2298, - "time": 0.3234042553191489, + "noteOrder": 2299, + "time": 0.323404255319149, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2443, + "noteOrder": 2444, "time": 0.34382978723404256, "position": { "x": 4, @@ -994,7 +994,7 @@ }, { "noteOrder": 2468, - "time": 0.34723404255319146, + "time": 0.3472340425531915, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2492, - "time": 0.3506382978723404, + "noteOrder": 2493, + "time": 0.35063829787234047, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2540, - "time": 0.35744680851063826, + "noteOrder": 2541, + "time": 0.3574468085106383, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.3608510638297872, + "noteOrder": 2565, + "time": 0.36085106382978727, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2588, + "noteOrder": 2590, "time": 0.36425531914893616, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2637, - "time": 0.371063829787234, + "noteOrder": 2638, + "time": 0.3710638297872341, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2685, - "time": 0.3778723404255319, + "noteOrder": 2686, + "time": 0.37787234042553197, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2709, - "time": 0.38127659574468087, + "noteOrder": 2711, + "time": 0.3812765957446809, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2734, - "time": 0.38468085106382977, + "noteOrder": 2735, + "time": 0.3846808510638298, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.3982978723404255, + "noteOrder": 2832, + "time": 0.3982978723404256, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2855, + "noteOrder": 2856, "time": 0.40170212765957447, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2879, - "time": 0.40510638297872337, + "noteOrder": 2880, + "time": 0.4051063829787234, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2927, - "time": 0.4119148936170212, + "noteOrder": 2928, + "time": 0.41191489361702127, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2951, - "time": 0.41531914893617017, + "noteOrder": 2953, + "time": 0.4153191489361702, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2976, - "time": 0.4187234042553191, + "noteOrder": 2977, + "time": 0.4187234042553192, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3024, - "time": 0.425531914893617, + "noteOrder": 3025, + "time": 0.4255319148936171, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3072, - "time": 0.4323404255319149, + "noteOrder": 3074, + "time": 0.43234042553191493, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3096, - "time": 0.4357446808510638, + "noteOrder": 3098, + "time": 0.4357446808510639, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3121, - "time": 0.4391489361702128, + "noteOrder": 3122, + "time": 0.43914893617021283, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3193, - "time": 0.4493617021276595, + "noteOrder": 3195, + "time": 0.44936170212765963, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3217, - "time": 0.4527659574468085, + "noteOrder": 3219, + "time": 0.45276595744680853, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.45617021276595743, + "noteOrder": 3243, + "time": 0.4561702127659575, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3290, - "time": 0.4629787234042553, + "noteOrder": 3291, + "time": 0.46297872340425533, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.4663829787234043, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3338, - "time": 0.4697872340425532, + "noteOrder": 3340, + "time": 0.46978723404255324, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3411, - "time": 0.48, + "noteOrder": 3412, + "time": 0.48000000000000004, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.48680851063829783, + "noteOrder": 3461, + "time": 0.48680851063829794, "position": { "x": 5, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3677, + "noteOrder": 3679, "time": 0.5174468085106383, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3701, - "time": 0.5208510638297872, + "noteOrder": 3703, + "time": 0.5208510638297873, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.531063829787234, + "noteOrder": 3775, + "time": 0.5310638297872341, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3800, "time": 0.534468085106383, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.5378723404255319, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.5412765957446809, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4354, + "noteOrder": 4356, "time": 0.6127659574468085, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4379, - "time": 0.6161702127659574, + "noteOrder": 4380, + "time": 0.6161702127659575, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4403, + "noteOrder": 4405, "time": 0.6195744680851064, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4427, - "time": 0.6229787234042553, + "noteOrder": 4429, + "time": 0.6229787234042554, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4475, + "noteOrder": 4477, "time": 0.6297872340425532, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4524, + "noteOrder": 4526, "time": 0.6365957446808511, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4572, - "time": 0.6434042553191489, + "noteOrder": 4574, + "time": 0.643404255319149, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4596, - "time": 0.6468085106382978, + "noteOrder": 4598, + "time": 0.646808510638298, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4622, "time": 0.6502127659574468, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4645, - "time": 0.6536170212765957, + "noteOrder": 4647, + "time": 0.6536170212765958, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4645, - "time": 0.6536170212765957, + "noteOrder": 4647, + "time": 0.6536170212765958, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.6672340425531915, + "noteOrder": 4743, + "time": 0.6672340425531916, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.6706382978723404, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4790, + "noteOrder": 4792, "time": 0.6740425531914894, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4814, - "time": 0.6774468085106382, + "noteOrder": 4816, + "time": 0.6774468085106383, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4862, - "time": 0.6842553191489361, + "noteOrder": 4864, + "time": 0.6842553191489362, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4911, + "noteOrder": 4913, "time": 0.691063829787234, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4959, - "time": 0.6978723404255318, + "noteOrder": 4961, + "time": 0.697872340425532, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4983, - "time": 0.7012765957446808, + "noteOrder": 4985, + "time": 0.7012765957446809, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5008, - "time": 0.7046808510638297, + "noteOrder": 5010, + "time": 0.7046808510638299, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5032, + "noteOrder": 5034, "time": 0.7080851063829787, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5032, + "noteOrder": 5034, "time": 0.7080851063829787, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5177, + "noteOrder": 5179, "time": 0.7285106382978723, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5274, - "time": 0.742127659574468, + "noteOrder": 5276, + "time": 0.7421276595744682, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5322, - "time": 0.7489361702127659, + "noteOrder": 5324, + "time": 0.748936170212766, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5346, - "time": 0.7523404255319148, + "noteOrder": 5348, + "time": 0.7523404255319149, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5370, - "time": 0.7557446808510638, + "noteOrder": 5373, + "time": 0.7557446808510639, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5395, - "time": 0.7591489361702127, + "noteOrder": 5397, + "time": 0.7591489361702128, "position": { "x": 5, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5419, - "time": 0.7625531914893617, + "noteOrder": 5421, + "time": 0.7625531914893618, "position": { "x": 7, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5564, - "time": 0.7829787234042553, + "noteOrder": 5566, + "time": 0.7829787234042555, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5661, - "time": 0.796595744680851, + "noteOrder": 5663, + "time": 0.7965957446808511, "position": { "x": 3, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5709, + "noteOrder": 5711, "time": 0.8034042553191489, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5733, - "time": 0.8068085106382978, + "noteOrder": 5736, + "time": 0.806808510638298, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5758, - "time": 0.8102127659574467, + "noteOrder": 5760, + "time": 0.8102127659574468, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5782, - "time": 0.8136170212765957, + "noteOrder": 5784, + "time": 0.8136170212765959, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5806, - "time": 0.8170212765957446, + "noteOrder": 5808, + "time": 0.8170212765957447, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5903, - "time": 0.8306382978723403, + "noteOrder": 5905, + "time": 0.8306382978723404, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5927, - "time": 0.8340425531914893, + "noteOrder": 5929, + "time": 0.8340425531914895, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5951, - "time": 0.8374468085106382, + "noteOrder": 5953, + "time": 0.8374468085106384, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5975, - "time": 0.8408510638297872, + "noteOrder": 5978, + "time": 0.8408510638297874, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6024, - "time": 0.847659574468085, + "noteOrder": 6026, + "time": 0.8476595744680852, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6072, - "time": 0.854468085106383, + "noteOrder": 6074, + "time": 0.8544680851063831, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6096, - "time": 0.857872340425532, + "noteOrder": 6099, + "time": 0.8578723404255321, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6120, - "time": 0.8612765957446807, + "noteOrder": 6123, + "time": 0.8612765957446809, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6145, - "time": 0.8646808510638297, + "noteOrder": 6147, + "time": 0.8646808510638299, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6169, - "time": 0.8680851063829786, + "noteOrder": 6171, + "time": 0.8680851063829788, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6193, - "time": 0.8714893617021277, + "noteOrder": 6195, + "time": 0.8714893617021278, "position": { "x": 4, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6217, - "time": 0.8748936170212765, + "noteOrder": 6220, + "time": 0.8748936170212767, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6290, - "time": 0.8851063829787233, + "noteOrder": 6292, + "time": 0.8851063829787235, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6314, + "noteOrder": 6316, "time": 0.8885106382978724, "position": { "x": 7, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6338, - "time": 0.8919148936170213, + "noteOrder": 6341, + "time": 0.8919148936170214, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6362, - "time": 0.8953191489361703, + "noteOrder": 6365, + "time": 0.8953191489361704, "position": { "x": 3, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6411, - "time": 0.902127659574468, + "noteOrder": 6413, + "time": 0.9021276595744682, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6459, - "time": 0.908936170212766, + "noteOrder": 6462, + "time": 0.9089361702127661, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6580, - "time": 0.9259574468085106, + "noteOrder": 6583, + "time": 0.9259574468085107, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6604, - "time": 0.9293617021276596, + "noteOrder": 6607, + "time": 0.9293617021276597, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6628, + "noteOrder": 6631, "time": 0.9327659574468086, "position": { "x": 4, @@ -2796,10 +2796,10 @@ "lineNodes": [ { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, - "time": 0.06808510638297872, + "time": 0.06808510638297874, "position": { "x": 7, "y": 0 @@ -2819,10 +2819,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 508, - "time": 0.07148936170212765, + "time": 0.07148936170212766, "position": { "x": 7, "y": 0 @@ -2842,10 +2842,10 @@ }, { "lineGroupId": 16, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 556, - "time": 0.07829787234042553, + "noteOrder": 557, + "time": 0.07829787234042554, "position": { "x": 6, "y": 0 @@ -2865,10 +2865,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 677, - "time": 0.09531914893617022, + "noteOrder": 678, + "time": 0.09531914893617023, "position": { "x": 3, "y": 0 @@ -2888,10 +2888,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 702, - "time": 0.09872340425531914, + "time": 0.09872340425531916, "position": { "x": 3, "y": 0 @@ -2911,10 +2911,10 @@ }, { "lineGroupId": 24, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 750, - "time": 0.10553191489361702, + "time": 0.10553191489361703, "position": { "x": 4, "y": 0 @@ -2934,10 +2934,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 871, - "time": 0.1225531914893617, + "time": 0.12255319148936171, "position": { "x": 7, "y": 0 @@ -2957,10 +2957,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 895, - "time": 0.12595744680851062, + "time": 0.12595744680851065, "position": { "x": 7, "y": 0 @@ -2980,9 +2980,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 919, + "noteOrder": 920, "time": 0.12936170212765957, "position": { "x": 3, @@ -3003,10 +3003,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 943, - "time": 0.1327659574468085, + "noteOrder": 944, + "time": 0.13276595744680852, "position": { "x": 3, "y": 0 @@ -3026,9 +3026,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1064, + "noteOrder": 1065, "time": 0.1497872340425532, "position": { "x": 3, @@ -3049,10 +3049,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1137, - "time": 0.15999999999999998, + "time": 0.16, "position": { "x": 3, "y": 0 @@ -3072,10 +3072,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1113, - "time": 0.15659574468085105, + "time": 0.15659574468085108, "position": { "x": 7, "y": 0 @@ -3095,10 +3095,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1137, - "time": 0.15999999999999998, + "time": 0.16, "position": { "x": 5, "y": 0 @@ -3118,10 +3118,33 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1162, + "time": 0.16340425531914896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1161, - "time": 0.16340425531914893, + "noteOrder": 1174, + "time": 0.16510638297872343, "position": { "x": 7, "y": 0 @@ -3139,12 +3162,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1174, + "time": 0.16510638297872343, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1186, + "time": 0.1668085106382979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1185, - "time": 0.16680851063829788, + "noteOrder": 1198, + "time": 0.16851063829787236, "position": { "x": 3, "y": 0 @@ -3162,9 +3231,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1198, + "time": 0.16851063829787236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1258, "time": 0.17702127659574468, @@ -3187,10 +3279,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1282, - "time": 0.1804255319148936, + "noteOrder": 1283, + "time": 0.18042553191489363, "position": { "x": 3, "y": 0 @@ -3210,10 +3302,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1306, - "time": 0.18382978723404253, + "noteOrder": 1307, + "time": 0.18382978723404256, "position": { "x": 7, "y": 0 @@ -3233,10 +3325,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1331, - "time": 0.18723404255319148, + "time": 0.1872340425531915, "position": { "x": 7, "y": 0 @@ -3256,10 +3348,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1355, - "time": 0.19063829787234043, + "time": 0.19063829787234046, "position": { "x": 3, "y": 0 @@ -3279,10 +3371,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1379, - "time": 0.19404255319148936, + "time": 0.1940425531914894, "position": { "x": 4, "y": 0 @@ -3302,10 +3394,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1403, - "time": 0.19744680851063828, + "noteOrder": 1404, + "time": 0.1974468085106383, "position": { "x": 7, "y": 0 @@ -3325,9 +3417,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1427, + "noteOrder": 1428, "time": 0.20085106382978724, "position": { "x": 6, @@ -3348,10 +3440,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1451, - "time": 0.20425531914893616, + "noteOrder": 1452, + "time": 0.2042553191489362, "position": { "x": 7, "y": 0 @@ -3371,10 +3463,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1524, - "time": 0.214468085106383, + "noteOrder": 1525, + "time": 0.21446808510638302, "position": { "x": 7, "y": 0 @@ -3394,10 +3486,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1500, - "time": 0.21106382978723404, + "time": 0.21106382978723406, "position": { "x": 3, "y": 0 @@ -3417,10 +3509,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1524, - "time": 0.214468085106383, + "noteOrder": 1525, + "time": 0.21446808510638302, "position": { "x": 5, "y": 0 @@ -3440,10 +3532,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.2178723404255319, + "noteOrder": 1549, + "time": 0.21787234042553194, "position": { "x": 7, "y": 0 @@ -3463,10 +3555,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1572, - "time": 0.22127659574468084, + "noteOrder": 1573, + "time": 0.22127659574468087, "position": { "x": 7, "y": 0 @@ -3486,10 +3578,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1597, - "time": 0.22468085106382976, + "time": 0.22468085106382982, "position": { "x": 3, "y": 0 @@ -3509,10 +3601,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.2178723404255319, + "noteOrder": 1549, + "time": 0.21787234042553194, "position": { "x": 3, "y": 0 @@ -3532,10 +3624,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1572, - "time": 0.22127659574468084, + "noteOrder": 1573, + "time": 0.22127659574468087, "position": { "x": 3, "y": 0 @@ -3555,10 +3647,10 @@ }, { "lineGroupId": 54, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1597, - "time": 0.22468085106382976, + "time": 0.22468085106382982, "position": { "x": 7, "y": 0 @@ -3578,10 +3670,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1645, - "time": 0.23148936170212764, + "noteOrder": 1646, + "time": 0.23148936170212767, "position": { "x": 4, "y": 0 @@ -3601,10 +3693,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1718, - "time": 0.24170212765957447, + "time": 0.2417021276595745, "position": { "x": 4, "y": 0 @@ -3624,10 +3716,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1742, - "time": 0.2451063829787234, + "time": 0.24510638297872342, "position": { "x": 6, "y": 0 @@ -3647,10 +3739,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1766, - "time": 0.24851063829787232, + "noteOrder": 1767, + "time": 0.24851063829787237, "position": { "x": 6, "y": 0 @@ -3670,10 +3762,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.25191489361702124, + "noteOrder": 1791, + "time": 0.2519148936170213, "position": { "x": 4, "y": 0 @@ -3693,10 +3785,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1814, - "time": 0.2553191489361702, + "noteOrder": 1815, + "time": 0.25531914893617025, "position": { "x": 4, "y": 0 @@ -3716,7 +3808,7 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1839, "time": 0.25872340425531914, @@ -3739,9 +3831,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.26893617021276595, "position": { "x": 6, @@ -3762,10 +3854,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1935, - "time": 0.2723404255319149, + "noteOrder": 1936, + "time": 0.27234042553191495, "position": { "x": 3, "y": 0 @@ -3785,10 +3877,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1984, - "time": 0.27914893617021275, + "time": 0.2791489361702128, "position": { "x": 3, "y": 0 @@ -3808,10 +3900,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1960, - "time": 0.2757446808510638, + "time": 0.2757446808510639, "position": { "x": 7, "y": 0 @@ -3831,10 +3923,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1984, - "time": 0.27914893617021275, + "time": 0.2791489361702128, "position": { "x": 4, "y": 0 @@ -3854,10 +3946,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2032, - "time": 0.2859574468085106, + "noteOrder": 2033, + "time": 0.28595744680851065, "position": { "x": 6, "y": 0 @@ -3877,7 +3969,7 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2105, "time": 0.29617021276595745, @@ -3900,9 +3992,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2129, + "noteOrder": 2130, "time": 0.2995744680851064, "position": { "x": 4, @@ -3923,10 +4015,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2153, - "time": 0.3029787234042553, + "noteOrder": 2154, + "time": 0.30297872340425536, "position": { "x": 4, "y": 0 @@ -3946,9 +4038,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2177, + "noteOrder": 2178, "time": 0.30638297872340425, "position": { "x": 6, @@ -3969,9 +4061,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2201, + "noteOrder": 2202, "time": 0.3097872340425532, "position": { "x": 6, @@ -3992,10 +4084,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2226, - "time": 0.3131914893617021, + "time": 0.31319148936170216, "position": { "x": 4, "y": 0 @@ -4015,10 +4107,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2298, - "time": 0.3234042553191489, + "noteOrder": 2299, + "time": 0.323404255319149, "position": { "x": 4, "y": 0 @@ -4038,10 +4130,10 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2322, - "time": 0.32680851063829786, + "noteOrder": 2323, + "time": 0.3268085106382979, "position": { "x": 7, "y": 0 @@ -4061,10 +4153,10 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2371, - "time": 0.33361702127659576, + "noteOrder": 2372, + "time": 0.3336170212765958, "position": { "x": 7, "y": 0 @@ -4084,10 +4176,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2347, - "time": 0.33021276595744675, + "time": 0.33021276595744686, "position": { "x": 3, "y": 0 @@ -4107,10 +4199,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2371, - "time": 0.33361702127659576, + "noteOrder": 2372, + "time": 0.3336170212765958, "position": { "x": 6, "y": 0 @@ -4130,10 +4222,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2419, - "time": 0.3404255319148936, + "noteOrder": 2420, + "time": 0.34042553191489366, "position": { "x": 6, "y": 0 @@ -4153,10 +4245,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2492, - "time": 0.3506382978723404, + "noteOrder": 2493, + "time": 0.35063829787234047, "position": { "x": 4, "y": 0 @@ -4176,9 +4268,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2516, + "noteOrder": 2517, "time": 0.35404255319148936, "position": { "x": 2, @@ -4199,9 +4291,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2588, + "noteOrder": 2590, "time": 0.36425531914893616, "position": { "x": 4, @@ -4222,10 +4314,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2613, - "time": 0.36765957446808506, + "noteOrder": 2614, + "time": 0.3676595744680851, "position": { "x": 6, "y": 0 @@ -4245,10 +4337,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2637, - "time": 0.371063829787234, + "noteOrder": 2638, + "time": 0.3710638297872341, "position": { "x": 5, "y": 0 @@ -4268,10 +4360,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2661, - "time": 0.37446808510638296, + "noteOrder": 2662, + "time": 0.374468085106383, "position": { "x": 4, "y": 0 @@ -4291,10 +4383,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2685, - "time": 0.3778723404255319, + "noteOrder": 2686, + "time": 0.37787234042553197, "position": { "x": 5, "y": 0 @@ -4314,10 +4406,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2806, - "time": 0.39489361702127657, + "noteOrder": 2807, + "time": 0.3948936170212766, "position": { "x": 4, "y": 0 @@ -4337,10 +4429,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2879, - "time": 0.40510638297872337, + "noteOrder": 2880, + "time": 0.4051063829787234, "position": { "x": 6, "y": 0 @@ -4360,10 +4452,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2903, - "time": 0.4085106382978723, + "noteOrder": 2904, + "time": 0.4085106382978724, "position": { "x": 8, "y": 0 @@ -4383,10 +4475,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2976, - "time": 0.4187234042553191, + "noteOrder": 2977, + "time": 0.4187234042553192, "position": { "x": 6, "y": 0 @@ -4406,10 +4498,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3000, - "time": 0.4221276595744681, + "noteOrder": 3001, + "time": 0.42212765957446813, "position": { "x": 4, "y": 0 @@ -4429,10 +4521,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3024, - "time": 0.425531914893617, + "noteOrder": 3025, + "time": 0.4255319148936171, "position": { "x": 5, "y": 0 @@ -4452,10 +4544,10 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3048, - "time": 0.428936170212766, + "noteOrder": 3049, + "time": 0.42893617021276603, "position": { "x": 6, "y": 0 @@ -4475,10 +4567,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3072, - "time": 0.4323404255319149, + "noteOrder": 3074, + "time": 0.43234042553191493, "position": { "x": 5, "y": 0 @@ -4498,10 +4590,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3580, - "time": 0.5038297872340425, + "noteOrder": 3582, + "time": 0.5038297872340426, "position": { "x": 7, "y": 0 @@ -4520,13 +4612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3629, - "time": 0.5106382978723404, + "noteOrder": 3606, + "time": 0.5072340425531915, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4538,18 +4630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3871, - "time": 0.5446808510638298, + "noteOrder": 3606, + "time": 0.5072340425531915, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4561,16 +4653,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 131, "indexInLine": 1, "isSliding": false, - "noteOrder": 3919, - "time": 0.5514893617021276, + "noteOrder": 3630, + "time": 0.5106382978723405, "position": { "x": 3, "y": 0 @@ -4589,13 +4681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3871, - "time": 0.5446808510638298, + "noteOrder": 3654, + "time": 0.5140425531914894, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4607,18 +4699,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3919, - "time": 0.5514893617021276, + "noteOrder": 3654, + "time": 0.5140425531914894, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4630,18 +4722,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3967, - "time": 0.5582978723404255, + "noteOrder": 3872, + "time": 0.5446808510638299, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4653,18 +4745,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4040, - "time": 0.5685106382978723, + "noteOrder": 3921, + "time": 0.5514893617021278, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4676,18 +4768,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4064, - "time": 0.5719148936170212, + "noteOrder": 3872, + "time": 0.5446808510638299, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4699,18 +4791,87 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4137, - "time": 0.5821276595744681, + "noteOrder": 3921, + "time": 0.5514893617021278, "position": { - "x": 4, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3969, + "time": 0.5582978723404256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4042, + "time": 0.5685106382978724, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4066, + "time": 0.5719148936170213, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -4727,13 +4888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4161, - "time": 0.585531914893617, + "noteOrder": 4138, + "time": 0.5821276595744681, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4753,8 +4914,8 @@ "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 4185, - "time": 0.5889361702127659, + "noteOrder": 4163, + "time": 0.5855319148936171, "position": { "x": 3, "y": 0 @@ -4776,7 +4937,30 @@ "lineGroupId": 146, "indexInLine": 2, "isSliding": false, - "noteOrder": 4209, + "noteOrder": 4187, + "time": 0.588936170212766, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4211, "time": 0.5923404255319149, "position": { "x": 4, @@ -4797,10 +4981,10 @@ }, { "lineGroupId": 146, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4233, - "time": 0.5957446808510638, + "noteOrder": 4235, + "time": 0.5957446808510639, "position": { "x": 4, "y": 0 @@ -4820,10 +5004,33 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4163, + "time": 0.5855319148936171, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4161, - "time": 0.585531914893617, + "noteOrder": 4187, + "time": 0.588936170212766, "position": { "x": 7, "y": 0 @@ -4843,12 +5050,725 @@ }, { "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4211, + "time": 0.5923404255319149, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4235, + "time": 0.5957446808510639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4259, + "time": 0.5991489361702128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4284, + "time": 0.6025531914893618, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4308, + "time": 0.6059574468085107, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 4185, - "time": 0.5889361702127659, + "noteOrder": 4259, + "time": 0.5991489361702128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4284, + "time": 0.6025531914893618, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4308, + "time": 0.6059574468085107, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4453, + "time": 0.6263829787234043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4477, + "time": 0.6297872340425532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4501, + "time": 0.6331914893617021, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4526, + "time": 0.6365957446808511, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4550, + "time": 0.64, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4622, + "time": 0.6502127659574468, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4671, + "time": 0.6570212765957447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4719, + "time": 0.6638297872340426, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4671, + "time": 0.6570212765957447, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4719, + "time": 0.6638297872340426, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4840, + "time": 0.6808510638297873, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4864, + "time": 0.6842553191489362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4889, + "time": 0.6876595744680851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4913, + "time": 0.691063829787234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4937, + "time": 0.694468085106383, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5010, + "time": 0.7046808510638299, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5058, + "time": 0.7114893617021277, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7182978723404256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5058, + "time": 0.7114893617021277, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7182978723404256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7217021276595745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5143, + "time": 0.723404255319149, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5143, + "time": 0.723404255319149, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7251063829787235, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4865,13 +5785,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4209, - "time": 0.5923404255319149, + "noteOrder": 5155, + "time": 0.7251063829787235, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4888,13 +5808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 3, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4233, - "time": 0.5957446808510638, + "noteOrder": 5155, + "time": 0.7251063829787235, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4906,16 +5826,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4258, - "time": 0.5991489361702128, + "noteOrder": 5167, + "time": 0.726808510638298, "position": { "x": 7, "y": 0 @@ -4934,13 +5854,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4282, - "time": 0.6025531914893616, + "noteOrder": 5167, + "time": 0.726808510638298, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4957,13 +5877,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 2, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4306, - "time": 0.6059574468085106, + "noteOrder": 5179, + "time": 0.7285106382978723, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4980,13 +5900,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4258, - "time": 0.5991489361702128, + "noteOrder": 5179, + "time": 0.7285106382978723, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4998,18 +5918,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 189, "indexInLine": 1, "isSliding": false, - "noteOrder": 4282, - "time": 0.6025531914893616, + "noteOrder": 5227, + "time": 0.7353191489361702, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5026,11 +5946,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 189, "indexInLine": 2, "isSliding": false, - "noteOrder": 4306, - "time": 0.6059574468085106, + "noteOrder": 5240, + "time": 0.7370212765957447, "position": { "x": 7, "y": 0 @@ -5049,13 +5969,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4451, - "time": 0.6263829787234042, + "noteOrder": 5240, + "time": 0.7370212765957447, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5067,18 +5987,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4475, - "time": 0.6297872340425532, + "noteOrder": 5252, + "time": 0.7387234042553192, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5090,18 +6010,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4500, - "time": 0.6331914893617021, + "noteOrder": 5252, + "time": 0.7387234042553192, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5118,13 +6038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 4524, - "time": 0.6365957446808511, + "noteOrder": 5252, + "time": 0.7387234042553192, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5136,18 +6056,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4548, - "time": 0.6399999999999999, + "noteOrder": 5264, + "time": 0.7404255319148937, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5164,13 +6084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4621, - "time": 0.6502127659574468, + "noteOrder": 5264, + "time": 0.7404255319148937, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5187,11 +6107,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4669, - "time": 0.6570212765957447, + "noteOrder": 5276, + "time": 0.7421276595744682, "position": { "x": 6, "y": 0 @@ -5205,18 +6125,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4717, - "time": 0.6638297872340425, + "noteOrder": 5276, + "time": 0.7421276595744682, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5228,16 +6148,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4669, - "time": 0.6570212765957447, + "noteOrder": 5445, + "time": 0.7659574468085106, "position": { "x": 4, "y": 0 @@ -5256,11 +6176,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4717, - "time": 0.6638297872340425, + "noteOrder": 5494, + "time": 0.7727659574468085, "position": { "x": 4, "y": 0 @@ -5279,13 +6199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4838, - "time": 0.6808510638297872, + "noteOrder": 5445, + "time": 0.7659574468085106, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5302,11 +6222,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4862, - "time": 0.6842553191489361, + "noteOrder": 5494, + "time": 0.7727659574468085, "position": { "x": 6, "y": 0 @@ -5325,11 +6245,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4887, - "time": 0.6876595744680851, + "noteOrder": 5518, + "time": 0.7761702127659575, "position": { "x": 3, "y": 0 @@ -5348,13 +6268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4911, - "time": 0.691063829787234, + "noteOrder": 5530, + "time": 0.777872340425532, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5371,13 +6291,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4935, - "time": 0.6944680851063829, + "noteOrder": 5530, + "time": 0.777872340425532, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5389,18 +6309,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5008, - "time": 0.7046808510638297, + "noteOrder": 5542, + "time": 0.7795744680851064, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5412,18 +6332,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5056, - "time": 0.7114893617021277, + "noteOrder": 5542, + "time": 0.7795744680851064, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5440,13 +6360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 5104, - "time": 0.7182978723404255, + "noteOrder": 5542, + "time": 0.7795744680851064, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5458,18 +6378,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5056, - "time": 0.7114893617021277, + "noteOrder": 5554, + "time": 0.7812765957446809, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5486,13 +6406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5104, - "time": 0.7182978723404255, + "noteOrder": 5554, + "time": 0.7812765957446809, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5509,13 +6429,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5129, - "time": 0.7217021276595744, + "noteOrder": 5566, + "time": 0.7829787234042555, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5532,13 +6452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5153, - "time": 0.7251063829787234, + "noteOrder": 5566, + "time": 0.7829787234042555, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5550,18 +6470,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5225, - "time": 0.7353191489361701, + "noteOrder": 5615, + "time": 0.7897872340425532, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5573,18 +6493,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5250, - "time": 0.7387234042553191, + "noteOrder": 5627, + "time": 0.7914893617021278, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5601,11 +6521,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5443, - "time": 0.7659574468085106, + "noteOrder": 5627, + "time": 0.7914893617021278, "position": { "x": 4, "y": 0 @@ -5624,11 +6544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5491, - "time": 0.7727659574468084, + "noteOrder": 5639, + "time": 0.7931914893617023, "position": { "x": 4, "y": 0 @@ -5647,13 +6567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5443, - "time": 0.7659574468085106, + "noteOrder": 5639, + "time": 0.7931914893617023, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5665,18 +6585,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 5491, - "time": 0.7727659574468084, + "noteOrder": 5639, + "time": 0.7931914893617023, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5693,11 +6613,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5516, - "time": 0.7761702127659574, + "noteOrder": 5651, + "time": 0.7948936170212766, "position": { "x": 3, "y": 0 @@ -5711,18 +6631,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5540, - "time": 0.7795744680851063, + "noteOrder": 5651, + "time": 0.7948936170212766, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5739,13 +6659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5612, - "time": 0.7897872340425531, + "noteOrder": 5663, + "time": 0.7965957446808511, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5757,18 +6677,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5637, - "time": 0.793191489361702, + "noteOrder": 5663, + "time": 0.7965957446808511, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5786,10 +6706,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5830, - "time": 0.8204255319148936, + "noteOrder": 5832, + "time": 0.8204255319148938, "position": { "x": 4, "y": 0 @@ -5809,10 +6729,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.8272340425531914, + "noteOrder": 5881, + "time": 0.8272340425531916, "position": { "x": 4, "y": 0 @@ -5832,10 +6752,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5830, - "time": 0.8204255319148936, + "noteOrder": 5832, + "time": 0.8204255319148938, "position": { "x": 6, "y": 0 @@ -5855,10 +6775,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.8272340425531914, + "noteOrder": 5881, + "time": 0.8272340425531916, "position": { "x": 6, "y": 0 @@ -5878,10 +6798,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5999, - "time": 0.8442553191489361, + "noteOrder": 6002, + "time": 0.8442553191489363, "position": { "x": 4, "y": 0 @@ -5901,10 +6821,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6024, - "time": 0.847659574468085, + "noteOrder": 6026, + "time": 0.8476595744680852, "position": { "x": 4, "y": 0 @@ -5924,10 +6844,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6048, - "time": 0.851063829787234, + "noteOrder": 6050, + "time": 0.8510638297872342, "position": { "x": 6, "y": 0 @@ -5947,10 +6867,10 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6072, - "time": 0.854468085106383, + "noteOrder": 6074, + "time": 0.8544680851063831, "position": { "x": 6, "y": 0 @@ -5970,10 +6890,10 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6387, - "time": 0.898723404255319, + "noteOrder": 6389, + "time": 0.8987234042553193, "position": { "x": 6, "y": 0 @@ -5993,10 +6913,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6411, - "time": 0.902127659574468, + "noteOrder": 6413, + "time": 0.9021276595744682, "position": { "x": 6, "y": 0 @@ -6016,10 +6936,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6435, - "time": 0.905531914893617, + "noteOrder": 6437, + "time": 0.9055319148936171, "position": { "x": 4, "y": 0 @@ -6039,10 +6959,10 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6459, - "time": 0.908936170212766, + "noteOrder": 6462, + "time": 0.9089361702127661, "position": { "x": 4, "y": 0 @@ -6062,10 +6982,10 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6483, - "time": 0.9123404255319149, + "noteOrder": 6486, + "time": 0.912340425531915, "position": { "x": 7, "y": 0 @@ -6085,10 +7005,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6556, - "time": 0.9225531914893617, + "noteOrder": 6558, + "time": 0.9225531914893618, "position": { "x": 7, "y": 0 @@ -6108,10 +7028,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6507, - "time": 0.9157446808510639, + "noteOrder": 6510, + "time": 0.915744680851064, "position": { "x": 3, "y": 0 @@ -6131,10 +7051,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6532, - "time": 0.9191489361702126, + "noteOrder": 6534, + "time": 0.9191489361702128, "position": { "x": 3, "y": 0 @@ -6154,10 +7074,10 @@ }, { "lineGroupId": 239, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6556, - "time": 0.9225531914893617, + "noteOrder": 6558, + "time": 0.9225531914893618, "position": { "x": 6, "y": 0 @@ -6177,10 +7097,10 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6677, - "time": 0.9395744680851064, + "noteOrder": 6679, + "time": 0.9395744680851065, "position": { "x": 7, "y": 0 @@ -6200,10 +7120,10 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6870, - "time": 0.9668085106382979, + "noteOrder": 6873, + "time": 0.966808510638298, "position": { "x": 7, "y": 0 @@ -6223,10 +7143,10 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6677, - "time": 0.9395744680851064, + "noteOrder": 6679, + "time": 0.9395744680851065, "position": { "x": 3, "y": 0 @@ -6246,10 +7166,10 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6870, - "time": 0.9668085106382979, + "noteOrder": 6873, + "time": 0.966808510638298, "position": { "x": 3, "y": 0 diff --git a/tracks/EZ DO DANCE/322_difficulty_1b.json b/tracks/EZ DO DANCE/322_difficulty_1b.json index 3236d6c6..c9ca892d 100644 --- a/tracks/EZ DO DANCE/322_difficulty_1b.json +++ b/tracks/EZ DO DANCE/322_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.013617021276595745, + "time": 0.013617021276595746, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.020425531914893616, + "time": 0.02042553191489362, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 194, - "time": 0.02723404255319149, + "time": 0.027234042553191493, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 242, - "time": 0.03404255319148936, + "time": 0.03404255319148937, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 484, - "time": 0.06808510638297872, + "time": 0.06808510638297874, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 508, - "time": 0.07148936170212765, + "time": 0.07148936170212766, "position": { "x": 7, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 556, - "time": 0.07829787234042553, + "noteOrder": 557, + "time": 0.07829787234042554, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 581, - "time": 0.08170212765957446, + "time": 0.08170212765957448, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 677, - "time": 0.09531914893617022, + "noteOrder": 678, + "time": 0.09531914893617023, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 702, - "time": 0.09872340425531914, + "time": 0.09872340425531916, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 726, - "time": 0.10212765957446808, + "time": 0.1021276595744681, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 750, - "time": 0.10553191489361702, + "time": 0.10553191489361703, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 968, - "time": 0.13617021276595745, + "time": 0.13617021276595748, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 992, - "time": 0.13957446808510637, + "time": 0.1395744680851064, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1016, - "time": 0.1429787234042553, + "time": 0.14297872340425533, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1161, - "time": 0.16340425531914893, + "noteOrder": 1162, + "time": 0.16340425531914896, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1161, - "time": 0.16340425531914893, + "noteOrder": 1162, + "time": 0.16340425531914896, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1185, - "time": 0.16680851063829788, + "noteOrder": 1186, + "time": 0.1668085106382979, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1185, - "time": 0.16680851063829788, + "noteOrder": 1186, + "time": 0.1668085106382979, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1210, - "time": 0.1702127659574468, + "time": 0.17021276595744683, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1210, - "time": 0.1702127659574468, + "time": 0.17021276595744683, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1355, - "time": 0.19063829787234043, + "time": 0.19063829787234046, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1379, - "time": 0.19404255319148936, + "time": 0.1940425531914894, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1403, - "time": 0.19744680851063828, + "noteOrder": 1404, + "time": 0.1974468085106383, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1645, - "time": 0.23148936170212764, + "noteOrder": 1646, + "time": 0.23148936170212767, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1669, - "time": 0.2348936170212766, + "noteOrder": 1670, + "time": 0.23489361702127662, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1693, - "time": 0.23829787234042554, + "noteOrder": 1694, + "time": 0.23829787234042557, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1887, - "time": 0.265531914893617, + "noteOrder": 1888, + "time": 0.26553191489361705, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2032, - "time": 0.2859574468085106, + "noteOrder": 2033, + "time": 0.28595744680851065, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2056, + "noteOrder": 2057, "time": 0.2893617021276596, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2080, - "time": 0.2927659574468085, + "noteOrder": 2081, + "time": 0.29276595744680856, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 2226, - "time": 0.3131914893617021, + "time": 0.31319148936170216, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2250, + "noteOrder": 2251, "time": 0.31659574468085105, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2274, - "time": 0.31999999999999995, + "noteOrder": 2275, + "time": 0.32, "position": { "x": 6, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 2468, - "time": 0.34723404255319146, + "time": 0.3472340425531915, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2492, - "time": 0.3506382978723404, + "noteOrder": 2493, + "time": 0.35063829787234047, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.3608510638297872, + "noteOrder": 2565, + "time": 0.36085106382978727, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2588, + "noteOrder": 2590, "time": 0.36425531914893616, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2855, + "noteOrder": 2856, "time": 0.40170212765957447, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2879, - "time": 0.40510638297872337, + "noteOrder": 2880, + "time": 0.4051063829787234, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2951, - "time": 0.41531914893617017, + "noteOrder": 2953, + "time": 0.4153191489361702, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2976, - "time": 0.4187234042553191, + "noteOrder": 2977, + "time": 0.4187234042553192, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3193, - "time": 0.4493617021276595, + "noteOrder": 3195, + "time": 0.44936170212765963, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3217, - "time": 0.4527659574468085, + "noteOrder": 3219, + "time": 0.45276595744680853, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.45617021276595743, + "noteOrder": 3243, + "time": 0.4561702127659575, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3290, - "time": 0.4629787234042553, + "noteOrder": 3291, + "time": 0.46297872340425533, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.4663829787234043, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3338, - "time": 0.4697872340425532, + "noteOrder": 3340, + "time": 0.46978723404255324, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.4902127659574468, + "noteOrder": 3485, + "time": 0.49021276595744684, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.4902127659574468, + "noteOrder": 3485, + "time": 0.49021276595744684, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.49361702127659574, + "noteOrder": 3509, + "time": 0.4936170212765958, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.49361702127659574, + "noteOrder": 3509, + "time": 0.4936170212765958, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.49702127659574463, + "noteOrder": 3533, + "time": 0.49702127659574474, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.49702127659574463, + "noteOrder": 3533, + "time": 0.49702127659574474, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.531063829787234, + "noteOrder": 3775, + "time": 0.5310638297872341, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3800, "time": 0.534468085106383, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.5378723404255319, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.5412765957446809, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4354, + "noteOrder": 4356, "time": 0.6127659574468085, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4379, - "time": 0.6161702127659574, + "noteOrder": 4380, + "time": 0.6161702127659575, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4572, - "time": 0.6434042553191489, + "noteOrder": 4574, + "time": 0.643404255319149, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4622, "time": 0.6502127659574468, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4645, - "time": 0.6536170212765957, + "noteOrder": 4647, + "time": 0.6536170212765958, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.6672340425531915, + "noteOrder": 4743, + "time": 0.6672340425531916, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.6706382978723404, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4959, - "time": 0.6978723404255318, + "noteOrder": 4961, + "time": 0.697872340425532, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5008, - "time": 0.7046808510638297, + "noteOrder": 5010, + "time": 0.7046808510638299, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5129, - "time": 0.7217021276595744, + "noteOrder": 5131, + "time": 0.7217021276595745, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5153, - "time": 0.7251063829787234, + "noteOrder": 5155, + "time": 0.7251063829787235, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5177, + "noteOrder": 5179, "time": 0.7285106382978723, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5225, - "time": 0.7353191489361701, + "noteOrder": 5227, + "time": 0.7353191489361702, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5250, - "time": 0.7387234042553191, + "noteOrder": 5252, + "time": 0.7387234042553192, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5274, - "time": 0.742127659574468, + "noteOrder": 5276, + "time": 0.7421276595744682, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5322, - "time": 0.7489361702127659, + "noteOrder": 5324, + "time": 0.748936170212766, "position": { "x": 7, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5346, - "time": 0.7523404255319148, + "noteOrder": 5348, + "time": 0.7523404255319149, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5370, - "time": 0.7557446808510638, + "noteOrder": 5373, + "time": 0.7557446808510639, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5395, - "time": 0.7591489361702127, + "noteOrder": 5397, + "time": 0.7591489361702128, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5516, - "time": 0.7761702127659574, + "noteOrder": 5518, + "time": 0.7761702127659575, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5540, - "time": 0.7795744680851063, + "noteOrder": 5542, + "time": 0.7795744680851064, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5564, - "time": 0.7829787234042553, + "noteOrder": 5566, + "time": 0.7829787234042555, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5612, - "time": 0.7897872340425531, + "noteOrder": 5615, + "time": 0.7897872340425532, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5637, - "time": 0.793191489361702, + "noteOrder": 5639, + "time": 0.7931914893617023, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5661, - "time": 0.796595744680851, + "noteOrder": 5663, + "time": 0.7965957446808511, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5709, + "noteOrder": 5711, "time": 0.8034042553191489, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5733, - "time": 0.8068085106382978, + "noteOrder": 5736, + "time": 0.806808510638298, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5758, - "time": 0.8102127659574467, + "noteOrder": 5760, + "time": 0.8102127659574468, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5782, - "time": 0.8136170212765957, + "noteOrder": 5784, + "time": 0.8136170212765959, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5903, - "time": 0.8306382978723403, + "noteOrder": 5905, + "time": 0.8306382978723404, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5927, - "time": 0.8340425531914893, + "noteOrder": 5929, + "time": 0.8340425531914895, "position": { "x": 4, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5951, - "time": 0.8374468085106382, + "noteOrder": 5953, + "time": 0.8374468085106384, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5975, - "time": 0.8408510638297872, + "noteOrder": 5978, + "time": 0.8408510638297874, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6096, - "time": 0.857872340425532, + "noteOrder": 6099, + "time": 0.8578723404255321, "position": { "x": 3, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6120, - "time": 0.8612765957446807, + "noteOrder": 6123, + "time": 0.8612765957446809, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6145, - "time": 0.8646808510638297, + "noteOrder": 6147, + "time": 0.8646808510638299, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6169, - "time": 0.8680851063829786, + "noteOrder": 6171, + "time": 0.8680851063829788, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6290, - "time": 0.8851063829787233, + "noteOrder": 6292, + "time": 0.8851063829787235, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6314, + "noteOrder": 6316, "time": 0.8885106382978724, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6338, - "time": 0.8919148936170213, + "noteOrder": 6341, + "time": 0.8919148936170214, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6362, - "time": 0.8953191489361703, + "noteOrder": 6365, + "time": 0.8953191489361704, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6483, - "time": 0.9123404255319149, + "noteOrder": 6486, + "time": 0.912340425531915, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6507, - "time": 0.9157446808510639, + "noteOrder": 6510, + "time": 0.915744680851064, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6532, - "time": 0.9191489361702126, + "noteOrder": 6534, + "time": 0.9191489361702128, "position": { "x": 6, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6556, - "time": 0.9225531914893617, + "noteOrder": 6558, + "time": 0.9225531914893618, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6580, - "time": 0.9259574468085106, + "noteOrder": 6583, + "time": 0.9259574468085107, "position": { "x": 6, "y": 0 @@ -2156,10 +2156,10 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.10893617021276596, + "time": 0.10893617021276597, "position": { "x": 6, "y": 0 @@ -2179,10 +2179,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 823, - "time": 0.11574468085106382, + "time": 0.11574468085106383, "position": { "x": 6, "y": 0 @@ -2202,10 +2202,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.10893617021276596, + "time": 0.10893617021276597, "position": { "x": 4, "y": 0 @@ -2225,10 +2225,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 823, - "time": 0.11574468085106382, + "time": 0.11574468085106383, "position": { "x": 4, "y": 0 @@ -2248,10 +2248,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 871, - "time": 0.1225531914893617, + "time": 0.12255319148936171, "position": { "x": 5, "y": 0 @@ -2271,10 +2271,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 895, - "time": 0.12595744680851062, + "time": 0.12595744680851065, "position": { "x": 5, "y": 0 @@ -2294,9 +2294,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 919, + "noteOrder": 920, "time": 0.12936170212765957, "position": { "x": 6, @@ -2317,10 +2317,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 943, - "time": 0.1327659574468085, + "noteOrder": 944, + "time": 0.13276595744680852, "position": { "x": 6, "y": 0 @@ -2340,7 +2340,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1258, "time": 0.17702127659574468, @@ -2363,10 +2363,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1282, - "time": 0.1804255319148936, + "noteOrder": 1283, + "time": 0.18042553191489363, "position": { "x": 5, "y": 0 @@ -2386,10 +2386,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1306, - "time": 0.18382978723404253, + "noteOrder": 1307, + "time": 0.18382978723404256, "position": { "x": 4, "y": 0 @@ -2409,10 +2409,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1331, - "time": 0.18723404255319148, + "time": 0.1872340425531915, "position": { "x": 4, "y": 0 @@ -2432,10 +2432,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.2178723404255319, + "noteOrder": 1549, + "time": 0.21787234042553194, "position": { "x": 4, "y": 0 @@ -2455,10 +2455,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1597, - "time": 0.22468085106382976, + "time": 0.22468085106382982, "position": { "x": 4, "y": 0 @@ -2478,10 +2478,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.2178723404255319, + "noteOrder": 1549, + "time": 0.21787234042553194, "position": { "x": 6, "y": 0 @@ -2501,10 +2501,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1597, - "time": 0.22468085106382976, + "time": 0.22468085106382982, "position": { "x": 6, "y": 0 @@ -2524,10 +2524,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1742, - "time": 0.2451063829787234, + "time": 0.24510638297872342, "position": { "x": 3, "y": 0 @@ -2547,10 +2547,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1766, - "time": 0.24851063829787232, + "noteOrder": 1767, + "time": 0.24851063829787237, "position": { "x": 4, "y": 0 @@ -2570,10 +2570,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.25191489361702124, + "noteOrder": 1791, + "time": 0.2519148936170213, "position": { "x": 7, "y": 0 @@ -2593,10 +2593,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1814, - "time": 0.2553191489361702, + "noteOrder": 1815, + "time": 0.25531914893617025, "position": { "x": 6, "y": 0 @@ -2616,9 +2616,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2129, + "noteOrder": 2130, "time": 0.2995744680851064, "position": { "x": 7, @@ -2639,10 +2639,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2153, - "time": 0.3029787234042553, + "noteOrder": 2154, + "time": 0.30297872340425536, "position": { "x": 6, "y": 0 @@ -2662,9 +2662,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2177, + "noteOrder": 2178, "time": 0.30638297872340425, "position": { "x": 3, @@ -2685,9 +2685,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2201, + "noteOrder": 2202, "time": 0.3097872340425532, "position": { "x": 4, @@ -2708,10 +2708,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2419, - "time": 0.3404255319148936, + "noteOrder": 2420, + "time": 0.34042553191489366, "position": { "x": 7, "y": 0 @@ -2731,9 +2731,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2443, + "noteOrder": 2444, "time": 0.34382978723404256, "position": { "x": 6, @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 65, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2492, - "time": 0.3506382978723404, + "noteOrder": 2493, + "time": 0.35063829787234047, "position": { "x": 6, "y": 0 @@ -2777,9 +2777,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2516, + "noteOrder": 2517, "time": 0.35404255319148936, "position": { "x": 3, @@ -2800,10 +2800,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2540, - "time": 0.35744680851063826, + "noteOrder": 2541, + "time": 0.3574468085106383, "position": { "x": 4, "y": 0 @@ -2823,9 +2823,9 @@ }, { "lineGroupId": 68, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2588, + "noteOrder": 2590, "time": 0.36425531914893616, "position": { "x": 4, @@ -2846,10 +2846,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2613, - "time": 0.36765957446808506, + "noteOrder": 2614, + "time": 0.3676595744680851, "position": { "x": 6, "y": 0 @@ -2869,10 +2869,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2637, - "time": 0.371063829787234, + "noteOrder": 2638, + "time": 0.3710638297872341, "position": { "x": 6, "y": 0 @@ -2892,10 +2892,10 @@ }, { "lineGroupId": 71, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2685, - "time": 0.3778723404255319, + "noteOrder": 2686, + "time": 0.37787234042553197, "position": { "x": 6, "y": 0 @@ -2915,10 +2915,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2661, - "time": 0.37446808510638296, + "noteOrder": 2662, + "time": 0.374468085106383, "position": { "x": 7, "y": 0 @@ -2938,10 +2938,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2685, - "time": 0.3778723404255319, + "noteOrder": 2686, + "time": 0.37787234042553197, "position": { "x": 4, "y": 0 @@ -2961,10 +2961,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2806, - "time": 0.39489361702127657, + "noteOrder": 2807, + "time": 0.3948936170212766, "position": { "x": 3, "y": 0 @@ -2984,10 +2984,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2830, - "time": 0.3982978723404255, + "noteOrder": 2832, + "time": 0.3982978723404256, "position": { "x": 4, "y": 0 @@ -3007,10 +3007,10 @@ }, { "lineGroupId": 75, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2879, - "time": 0.40510638297872337, + "noteOrder": 2880, + "time": 0.4051063829787234, "position": { "x": 4, "y": 0 @@ -3030,10 +3030,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2903, - "time": 0.4085106382978723, + "noteOrder": 2904, + "time": 0.4085106382978724, "position": { "x": 7, "y": 0 @@ -3053,10 +3053,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2927, - "time": 0.4119148936170212, + "noteOrder": 2928, + "time": 0.41191489361702127, "position": { "x": 6, "y": 0 @@ -3076,10 +3076,10 @@ }, { "lineGroupId": 78, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2976, - "time": 0.4187234042553191, + "noteOrder": 2977, + "time": 0.4187234042553192, "position": { "x": 6, "y": 0 @@ -3099,10 +3099,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3000, - "time": 0.4221276595744681, + "noteOrder": 3001, + "time": 0.42212765957446813, "position": { "x": 4, "y": 0 @@ -3122,10 +3122,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3024, - "time": 0.425531914893617, + "noteOrder": 3025, + "time": 0.4255319148936171, "position": { "x": 4, "y": 0 @@ -3145,10 +3145,10 @@ }, { "lineGroupId": 81, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3072, - "time": 0.4323404255319149, + "noteOrder": 3074, + "time": 0.43234042553191493, "position": { "x": 4, "y": 0 @@ -3168,10 +3168,10 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3048, - "time": 0.428936170212766, + "noteOrder": 3049, + "time": 0.42893617021276603, "position": { "x": 3, "y": 0 @@ -3191,10 +3191,10 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3072, - "time": 0.4323404255319149, + "noteOrder": 3074, + "time": 0.43234042553191493, "position": { "x": 6, "y": 0 @@ -3214,10 +3214,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3580, - "time": 0.5038297872340425, + "noteOrder": 3582, + "time": 0.5038297872340426, "position": { "x": 6, "y": 0 @@ -3237,9 +3237,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.5072340425531915, "position": { "x": 6, @@ -3260,10 +3260,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3629, - "time": 0.5106382978723404, + "noteOrder": 3630, + "time": 0.5106382978723405, "position": { "x": 4, "y": 0 @@ -3283,9 +3283,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3653, + "noteOrder": 3654, "time": 0.5140425531914894, "position": { "x": 4, @@ -3306,9 +3306,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3677, + "noteOrder": 3679, "time": 0.5174468085106383, "position": { "x": 6, @@ -3329,10 +3329,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3701, - "time": 0.5208510638297872, + "noteOrder": 3703, + "time": 0.5208510638297873, "position": { "x": 6, "y": 0 @@ -3352,10 +3352,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3871, - "time": 0.5446808510638298, + "noteOrder": 3872, + "time": 0.5446808510638299, "position": { "x": 4, "y": 0 @@ -3375,10 +3375,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3895, - "time": 0.5480851063829787, + "noteOrder": 3896, + "time": 0.5480851063829788, "position": { "x": 4, "y": 0 @@ -3398,10 +3398,10 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3871, - "time": 0.5446808510638298, + "noteOrder": 3872, + "time": 0.5446808510638299, "position": { "x": 6, "y": 0 @@ -3421,10 +3421,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3895, - "time": 0.5480851063829787, + "noteOrder": 3896, + "time": 0.5480851063829788, "position": { "x": 6, "y": 0 @@ -3444,10 +3444,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3919, - "time": 0.5514893617021276, + "noteOrder": 3921, + "time": 0.5514893617021278, "position": { "x": 7, "y": 0 @@ -3467,9 +3467,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3943, + "noteOrder": 3945, "time": 0.5548936170212766, "position": { "x": 7, @@ -3490,10 +3490,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3919, - "time": 0.5514893617021276, + "noteOrder": 3921, + "time": 0.5514893617021278, "position": { "x": 3, "y": 0 @@ -3513,9 +3513,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3943, + "noteOrder": 3945, "time": 0.5548936170212766, "position": { "x": 3, @@ -3536,9 +3536,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4258, + "noteOrder": 4259, "time": 0.5991489361702128, "position": { "x": 6, @@ -3559,10 +3559,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4306, - "time": 0.6059574468085106, + "noteOrder": 4308, + "time": 0.6059574468085107, "position": { "x": 6, "y": 0 @@ -3582,9 +3582,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4258, + "noteOrder": 4259, "time": 0.5991489361702128, "position": { "x": 4, @@ -3605,10 +3605,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4306, - "time": 0.6059574468085106, + "noteOrder": 4308, + "time": 0.6059574468085107, "position": { "x": 4, "y": 0 @@ -3628,9 +3628,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4403, + "noteOrder": 4405, "time": 0.6195744680851064, "position": { "x": 6, @@ -3651,10 +3651,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4427, - "time": 0.6229787234042553, + "noteOrder": 4429, + "time": 0.6229787234042554, "position": { "x": 6, "y": 0 @@ -3674,10 +3674,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4451, - "time": 0.6263829787234042, + "noteOrder": 4453, + "time": 0.6263829787234043, "position": { "x": 3, "y": 0 @@ -3697,9 +3697,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4475, + "noteOrder": 4477, "time": 0.6297872340425532, "position": { "x": 4, @@ -3720,9 +3720,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4500, + "noteOrder": 4501, "time": 0.6331914893617021, "position": { "x": 7, @@ -3743,9 +3743,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4524, + "noteOrder": 4526, "time": 0.6365957446808511, "position": { "x": 6, @@ -3766,10 +3766,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4548, - "time": 0.6399999999999999, + "noteOrder": 4550, + "time": 0.64, "position": { "x": 4, "y": 0 @@ -3789,10 +3789,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4572, - "time": 0.6434042553191489, + "noteOrder": 4574, + "time": 0.643404255319149, "position": { "x": 4, "y": 0 @@ -3812,10 +3812,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4596, - "time": 0.6468085106382978, + "noteOrder": 4598, + "time": 0.646808510638298, "position": { "x": 6, "y": 0 @@ -3835,9 +3835,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4621, + "noteOrder": 4622, "time": 0.6502127659574468, "position": { "x": 6, @@ -3858,9 +3858,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.6570212765957447, "position": { "x": 6, @@ -3881,10 +3881,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4693, - "time": 0.6604255319148935, + "noteOrder": 4695, + "time": 0.6604255319148937, "position": { "x": 6, "y": 0 @@ -3904,9 +3904,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.6570212765957447, "position": { "x": 4, @@ -3927,10 +3927,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4693, - "time": 0.6604255319148935, + "noteOrder": 4695, + "time": 0.6604255319148937, "position": { "x": 4, "y": 0 @@ -3950,9 +3950,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4790, + "noteOrder": 4792, "time": 0.6740425531914894, "position": { "x": 4, @@ -3973,10 +3973,10 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4814, - "time": 0.6774468085106382, + "noteOrder": 4816, + "time": 0.6774468085106383, "position": { "x": 4, "y": 0 @@ -3996,10 +3996,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4838, - "time": 0.6808510638297872, + "noteOrder": 4840, + "time": 0.6808510638297873, "position": { "x": 7, "y": 0 @@ -4019,10 +4019,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4862, - "time": 0.6842553191489361, + "noteOrder": 4864, + "time": 0.6842553191489362, "position": { "x": 6, "y": 0 @@ -4042,9 +4042,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4887, + "noteOrder": 4889, "time": 0.6876595744680851, "position": { "x": 3, @@ -4065,9 +4065,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4911, + "noteOrder": 4913, "time": 0.691063829787234, "position": { "x": 4, @@ -4088,10 +4088,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4935, - "time": 0.6944680851063829, + "noteOrder": 4937, + "time": 0.694468085106383, "position": { "x": 6, "y": 0 @@ -4111,10 +4111,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4959, - "time": 0.6978723404255318, + "noteOrder": 4961, + "time": 0.697872340425532, "position": { "x": 6, "y": 0 @@ -4134,10 +4134,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4983, - "time": 0.7012765957446808, + "noteOrder": 4985, + "time": 0.7012765957446809, "position": { "x": 4, "y": 0 @@ -4157,10 +4157,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5008, - "time": 0.7046808510638297, + "noteOrder": 5010, + "time": 0.7046808510638299, "position": { "x": 4, "y": 0 @@ -4180,9 +4180,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5032, + "noteOrder": 5034, "time": 0.7080851063829787, "position": { "x": 7, @@ -4203,10 +4203,10 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5080, - "time": 0.7148936170212765, + "noteOrder": 5082, + "time": 0.7148936170212766, "position": { "x": 7, "y": 0 @@ -4226,9 +4226,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5056, + "noteOrder": 5058, "time": 0.7114893617021277, "position": { "x": 3, @@ -4249,10 +4249,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5080, - "time": 0.7148936170212765, + "noteOrder": 5082, + "time": 0.7148936170212766, "position": { "x": 3, "y": 0 @@ -4272,10 +4272,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5419, - "time": 0.7625531914893617, + "noteOrder": 5421, + "time": 0.7625531914893618, "position": { "x": 3, "y": 0 @@ -4295,10 +4295,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5467, - "time": 0.7693617021276595, + "noteOrder": 5469, + "time": 0.7693617021276596, "position": { "x": 3, "y": 0 @@ -4318,9 +4318,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5443, + "noteOrder": 5445, "time": 0.7659574468085106, "position": { "x": 7, @@ -4341,10 +4341,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5467, - "time": 0.7693617021276595, + "noteOrder": 5469, + "time": 0.7693617021276596, "position": { "x": 7, "y": 0 @@ -4364,10 +4364,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5806, - "time": 0.8170212765957446, + "noteOrder": 5808, + "time": 0.8170212765957447, "position": { "x": 7, "y": 0 @@ -4387,10 +4387,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5854, - "time": 0.8238297872340424, + "noteOrder": 5857, + "time": 0.8238297872340425, "position": { "x": 7, "y": 0 @@ -4410,10 +4410,10 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5830, - "time": 0.8204255319148936, + "noteOrder": 5832, + "time": 0.8204255319148938, "position": { "x": 3, "y": 0 @@ -4433,10 +4433,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5854, - "time": 0.8238297872340424, + "noteOrder": 5857, + "time": 0.8238297872340425, "position": { "x": 3, "y": 0 @@ -4456,10 +4456,10 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6677, - "time": 0.9395744680851064, + "noteOrder": 6679, + "time": 0.9395744680851065, "position": { "x": 4, "y": 0 @@ -4479,10 +4479,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6870, - "time": 0.9668085106382979, + "noteOrder": 6873, + "time": 0.966808510638298, "position": { "x": 4, "y": 0 @@ -4502,10 +4502,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6677, - "time": 0.9395744680851064, + "noteOrder": 6679, + "time": 0.9395744680851065, "position": { "x": 6, "y": 0 @@ -4525,10 +4525,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6870, - "time": 0.9668085106382979, + "noteOrder": 6873, + "time": 0.966808510638298, "position": { "x": 6, "y": 0 diff --git a/tracks/EZ DO DANCE/info.json b/tracks/EZ DO DANCE/info.json index e2571ee3..b539829f 100644 --- a/tracks/EZ DO DANCE/info.json +++ b/tracks/EZ DO DANCE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "EZ DO DANCE", - "SongLength": "130.037551", + "SongLength": "120.084898", "SongAuthorName": null, "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Easy Peasy/345_difficulty_1a.json b/tracks/Easy Peasy/345_difficulty_1a.json index 987e1051..1d6f02ce 100644 --- a/tracks/Easy Peasy/345_difficulty_1a.json +++ b/tracks/Easy Peasy/345_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 240, - "time": 0.042394962065341234, + "time": 0.04239496206534123, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 433, "time": 0.07631093171761422, "position": { "x": 6, @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 457, "time": 0.08055042792414835, "position": { "x": 4, @@ -94,7 +94,7 @@ }, { "noteOrder": 481, - "time": 0.08478992413068247, + "time": 0.08478992413068245, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 505, - "time": 0.0890294203372166, + "time": 0.08902942033721659, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 601, - "time": 0.10598740516335309, + "time": 0.10598740516335307, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 697, - "time": 0.12294538998948958, + "time": 0.12294538998948959, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 961, - "time": 0.16957984826136493, + "time": 0.1695798482613649, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.17381934446789907, "position": { "x": 4, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1009, - "time": 0.1780588406744332, + "noteOrder": 1010, + "time": 0.17805884067443317, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.1822983368809673, "position": { "x": 3, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.20349581791363794, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.20773531412017204, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.21197481032670618, + "noteOrder": 1202, + "time": 0.21197481032670615, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.2162143065332403, "position": { "x": 2, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1273, - "time": 0.22469329894630855, + "noteOrder": 1274, + "time": 0.22469329894630852, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.22893279515284268, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.23317229135937678, "position": { "x": 8, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2925252382508545, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.29676473445738866, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1706, + "noteOrder": 1707, "time": 0.30100423066392273, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.32644120790312753, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1874, - "time": 0.33068070410966166, + "noteOrder": 1875, + "time": 0.3306807041096616, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1898, - "time": 0.3349202003161958, + "noteOrder": 1899, + "time": 0.33492020031619574, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2018, - "time": 0.3561176813488664, + "noteOrder": 2019, + "time": 0.35611768134886634, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.36035717755540053, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2138, - "time": 0.377315162381537, + "noteOrder": 2139, + "time": 0.37731516238153695, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2162, - "time": 0.38155465858807114, + "noteOrder": 2163, + "time": 0.3815546585880711, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2187, "time": 0.38579415479460527, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.41123113203381, + "noteOrder": 2332, + "time": 0.41123113203380995, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.4154706282403441, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.4536260940991512, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.48754206375142417, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2787, - "time": 0.4917815599579583, + "noteOrder": 2788, + "time": 0.49178155995795836, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.49602105616449244, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.5002605523710265, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.5087395447840948, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.512979040990629, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2933, "time": 0.517218537197163, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 2981, "time": 0.5256975296102313, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3003, + "noteOrder": 3005, "time": 0.5299370258167654, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3029, "time": 0.5341765220232996, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3053, "time": 0.5384160182298336, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3268, + "noteOrder": 3269, "time": 0.5765714840886408, "position": { "x": 2, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 3293, "time": 0.5808109802951749, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.585050476501709, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3341, "time": 0.5892899727082431, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.6104874537409137, "position": { "x": 8, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.6147269499474479, + "noteOrder": 3485, + "time": 0.6147269499474478, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.618966446153982, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3533, "time": 0.6232059423605161, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.6316849347735844, + "noteOrder": 3582, + "time": 0.6316849347735843, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3604, - "time": 0.6359244309801185, + "noteOrder": 3606, + "time": 0.6359244309801184, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3630, "time": 0.6401639271866527, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3774, "time": 0.6656009044258574, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.6698404006323916, + "noteOrder": 3798, + "time": 0.6698404006323915, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3820, - "time": 0.6740798968389257, + "noteOrder": 3822, + "time": 0.6740798968389256, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3892, + "noteOrder": 3894, "time": 0.686798385458528, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3916, - "time": 0.6910378816650622, + "noteOrder": 3918, + "time": 0.6910378816650621, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.6995168740781305, + "noteOrder": 3966, + "time": 0.6995168740781303, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.7164748589042669, + "noteOrder": 4062, + "time": 0.7164748589042668, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4158, "time": 0.7334328437304034, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4255, "time": 0.7503908285565398, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4325, - "time": 0.7631093171761423, + "noteOrder": 4327, + "time": 0.7631093171761422, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4349, - "time": 0.7673488133826764, + "noteOrder": 4351, + "time": 0.7673488133826762, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4421, + "noteOrder": 4423, "time": 0.7800673020022787, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4445, + "noteOrder": 4447, "time": 0.7843067982088129, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4517, - "time": 0.7970252868284152, + "noteOrder": 4519, + "time": 0.7970252868284151, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4543, "time": 0.8012647830349493, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4637, + "noteOrder": 4639, "time": 0.8182227678610858, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4661, - "time": 0.82246226406762, + "noteOrder": 4663, + "time": 0.8224622640676199, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8267017602741541, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8267017602741541, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.9072521881983024, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5166, + "noteOrder": 5168, "time": 0.9114916844048365, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 5240, "time": 0.9242101730244389, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5262, - "time": 0.928449669230973, + "noteOrder": 5264, + "time": 0.9284496692309729, "position": { "x": 2, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5334, - "time": 0.9411681578505754, + "noteOrder": 5336, + "time": 0.9411681578505753, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.9454076540571096, "position": { "x": 5, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9581261426767119, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5454, + "noteOrder": 5456, "time": 0.962365638883246, "position": { "x": 5, @@ -1876,10 +1876,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.016957984826136495, + "time": 0.01695798482613649, "position": { "x": 7, "y": 0 @@ -1899,7 +1899,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.025436977239204742, @@ -1922,7 +1922,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.025436977239204742, @@ -1945,10 +1945,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.03391596965227299, + "time": 0.03391596965227298, "position": { "x": 5, "y": 0 @@ -1968,10 +1968,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03391596965227299, + "time": 0.03391596965227298, "position": { "x": 7, "y": 0 @@ -1991,10 +1991,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.042394962065341234, + "time": 0.04239496206534123, "position": { "x": 7, "y": 0 @@ -2014,7 +2014,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.050873954478409485, @@ -2037,9 +2037,9 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.05935294689147773, "position": { "x": 3, @@ -2060,9 +2060,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.05935294689147773, "position": { "x": 5, @@ -2083,10 +2083,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, - "time": 0.06783193930454598, + "noteOrder": 385, + "time": 0.06783193930454597, "position": { "x": 5, "y": 0 @@ -2106,10 +2106,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.06783193930454598, + "noteOrder": 385, + "time": 0.06783193930454597, "position": { "x": 3, "y": 0 @@ -2129,9 +2129,9 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.07631093171761422, "position": { "x": 3, @@ -2152,7 +2152,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.15262186343522843, @@ -2174,11 +2174,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.15686135964176257, + "noteOrder": 877, + "time": 0.1547416115384955, "position": { "x": 7, "y": 0 @@ -2192,18 +2192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.1611008558482967, + "noteOrder": 877, + "time": 0.1547416115384955, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2220,11 +2220,11 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 937, - "time": 0.16534035205483083, + "noteOrder": 889, + "time": 0.15686135964176257, "position": { "x": 7, "y": 0 @@ -2243,13 +2243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653783308750144, + "noteOrder": 901, + "time": 0.1589811077450296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2266,13 +2266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.19501682550056967, + "noteOrder": 901, + "time": 0.1589811077450296, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2284,18 +2284,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1129, - "time": 0.1992563217071038, + "noteOrder": 913, + "time": 0.1611008558482967, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2307,18 +2307,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.2204538027397744, + "noteOrder": 925, + "time": 0.16322060395156376, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2330,18 +2330,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1321, - "time": 0.23317229135937678, + "noteOrder": 925, + "time": 0.16322060395156376, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2353,16 +2353,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.23741178756591091, + "noteOrder": 937, + "time": 0.1653403520548308, "position": { "x": 7, "y": 0 @@ -2376,16 +2376,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.24589077997897915, + "noteOrder": 949, + "time": 0.16746010015809787, "position": { "x": 7, "y": 0 @@ -2404,13 +2404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1418, - "time": 0.25013027618551326, + "noteOrder": 949, + "time": 0.16746010015809787, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2422,16 +2422,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2543697723920474, + "noteOrder": 1058, + "time": 0.18653783308750144, "position": { "x": 3, "y": 0 @@ -2450,13 +2450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.26284876480511565, + "noteOrder": 1082, + "time": 0.19077732929403554, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2473,13 +2473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.2882857420443204, + "noteOrder": 1082, + "time": 0.19077732929403554, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2491,18 +2491,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.29676473445738866, + "noteOrder": 1106, + "time": 0.19501682550056967, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2519,11 +2519,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.30524372687045687, + "noteOrder": 1118, + "time": 0.19713657360383674, "position": { "x": 3, "y": 0 @@ -2537,18 +2537,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1754, - "time": 0.309483223076991, + "noteOrder": 1118, + "time": 0.19713657360383674, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2565,11 +2565,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, - "time": 0.31372271928352513, + "noteOrder": 1130, + "time": 0.19925632170710378, "position": { "x": 3, "y": 0 @@ -2588,11 +2588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1802, - "time": 0.31796221549005926, + "noteOrder": 1142, + "time": 0.20137606981037084, "position": { "x": 3, "y": 0 @@ -2606,18 +2606,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1826, - "time": 0.3222017116965934, + "noteOrder": 1142, + "time": 0.20137606981037084, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2634,13 +2634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, - "time": 0.33068070410966166, + "noteOrder": 1250, + "time": 0.2204538027397744, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2657,11 +2657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.33915969652272987, + "noteOrder": 1322, + "time": 0.23317229135937678, "position": { "x": 7, "y": 0 @@ -2675,16 +2675,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1946, - "time": 0.343399192729264, + "noteOrder": 1346, + "time": 0.23741178756591091, "position": { "x": 7, "y": 0 @@ -2698,16 +2698,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.34763868893579813, + "noteOrder": 1370, + "time": 0.24165128377244502, "position": { "x": 7, "y": 0 @@ -2726,13 +2726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1994, - "time": 0.35187818514233227, + "noteOrder": 1370, + "time": 0.24165128377244502, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2744,16 +2744,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2066, - "time": 0.3645966737619346, + "noteOrder": 1394, + "time": 0.24589077997897918, "position": { "x": 7, "y": 0 @@ -2767,16 +2767,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2090, - "time": 0.36883616996846874, + "noteOrder": 1406, + "time": 0.24801052808224622, "position": { "x": 7, "y": 0 @@ -2795,13 +2795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2114, - "time": 0.3730756661750029, + "noteOrder": 1406, + "time": 0.24801052808224622, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2813,18 +2813,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 2162, - "time": 0.38155465858807114, + "noteOrder": 1418, + "time": 0.25013027618551326, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2841,13 +2841,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.39003365100113935, + "noteOrder": 1430, + "time": 0.25225002428878035, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2859,18 +2859,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2234, - "time": 0.3942731472076735, + "noteOrder": 1430, + "time": 0.25225002428878035, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2887,11 +2887,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2258, - "time": 0.3985126434142076, + "noteOrder": 1442, + "time": 0.2543697723920474, "position": { "x": 3, "y": 0 @@ -2910,13 +2910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2282, - "time": 0.40275213962074174, + "noteOrder": 1490, + "time": 0.26284876480511565, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2928,18 +2928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, - "time": 0.4069916358272759, + "noteOrder": 1635, + "time": 0.2882857420443204, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2951,18 +2951,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2355, - "time": 0.4154706282403441, + "noteOrder": 1683, + "time": 0.29676473445738866, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2974,16 +2974,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.42394962065341235, + "noteOrder": 1731, + "time": 0.30524372687045687, "position": { "x": 3, "y": 0 @@ -3002,11 +3002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.4324286130664806, + "noteOrder": 1743, + "time": 0.3073634749737239, "position": { "x": 3, "y": 0 @@ -3025,13 +3025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2451, - "time": 0.4324286130664806, + "noteOrder": 1743, + "time": 0.3073634749737239, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3043,18 +3043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.4409076054795488, + "noteOrder": 1755, + "time": 0.309483223076991, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3071,11 +3071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.4409076054795488, + "noteOrder": 1767, + "time": 0.31160297118025804, "position": { "x": 3, "y": 0 @@ -3089,18 +3089,2088 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2547, - "time": 0.4493865978926171, + "noteOrder": 1767, + "time": 0.31160297118025804, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.31372271928352513, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1791, + "time": 0.31584246738679217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1791, + "time": 0.31584246738679217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.3179622154900592, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1815, + "time": 0.32008196359332636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1815, + "time": 0.32008196359332636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.3222017116965934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1875, + "time": 0.3306807041096616, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.3391596965227298, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1935, + "time": 0.34127944462599696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1935, + "time": 0.34127944462599696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.343399192729264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.34551894083253104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1959, + "time": 0.34551894083253104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1971, + "time": 0.34763868893579813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.3497584370390652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1983, + "time": 0.3497584370390652, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3518781851423322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2007, + "time": 0.3539979332455993, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2007, + "time": 0.3539979332455993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.3645966737619346, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2079, + "time": 0.3667164218652017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2079, + "time": 0.3667164218652017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2091, + "time": 0.36883616996846874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2103, + "time": 0.3709559180717358, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2103, + "time": 0.3709559180717358, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2115, + "time": 0.3730756661750029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3815546585880711, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.39003365100113935, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2223, + "time": 0.39215339910440644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2223, + "time": 0.39215339910440644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3942731472076735, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3963928953109405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3963928953109405, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.39851264341420756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2271, + "time": 0.40063239151747465, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2271, + "time": 0.40063239151747465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2284, + "time": 0.4027521396207417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2296, + "time": 0.4048718877240087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2296, + "time": 0.4048718877240087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.4069916358272759, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2356, + "time": 0.4154706282403441, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.4239496206534123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2452, + "time": 0.4324286130664806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2452, + "time": 0.4324286130664806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2500, + "time": 0.4409076054795488, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.4409076054795488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2548, + "time": 0.44938659789261703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2548, + "time": 0.44938659789261703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2596, + "time": 0.45786559030568535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.45786559030568535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2644, + "time": 0.46634458271875356, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.46634458271875356, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2692, + "time": 0.47482357513182183, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.47482357513182183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2740, + "time": 0.48330256754489004, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2740, + "time": 0.48330256754489004, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2788, + "time": 0.49178155995795836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.5596134992625043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3185, + "time": 0.5617332473657713, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3185, + "time": 0.5617332473657713, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5638529954690384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3209, + "time": 0.5659727435723054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3209, + "time": 0.5659727435723054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3221, + "time": 0.5680924916755725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3233, + "time": 0.5702122397788396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3233, + "time": 0.5702122397788396, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5723319878821067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3257, + "time": 0.5744517359853737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3257, + "time": 0.5744517359853737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3365, + "time": 0.5935294689147773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3377, + "time": 0.5956492170180443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3377, + "time": 0.5956492170180443, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3389, + "time": 0.5977689651213114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3401, + "time": 0.5998887132245785, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3401, + "time": 0.5998887132245785, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3413, + "time": 0.6020084613278455, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3425, + "time": 0.6041282094311126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3425, + "time": 0.6041282094311126, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3437, + "time": 0.6062479575343797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3449, + "time": 0.6083677056376466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3449, + "time": 0.6083677056376466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3557, + "time": 0.6274454385670503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3606, + "time": 0.6359244309801184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3654, + "time": 0.6444034233931868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6465231714964538, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6465231714964538, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3678, + "time": 0.6486429195997209, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3690, + "time": 0.6507626677029879, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3690, + "time": 0.6507626677029879, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3117,11 +5187,57 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3702, + "time": 0.6528824158062551, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3714, + "time": 0.6550021639095222, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2547, - "time": 0.4493865978926171, + "noteOrder": 3714, + "time": 0.6550021639095222, "position": { "x": 6, "y": 0 @@ -3140,11 +5256,57 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.45786559030568535, + "noteOrder": 3726, + "time": 0.6571219120127891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3738, + "time": 0.6592416601160562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3738, + "time": 0.6592416601160562, "position": { "x": 6, "y": 0 @@ -3158,18 +5320,41 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.6613614082193232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.45786559030568535, + "noteOrder": 3798, + "time": 0.6698404006323915, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3181,18 +5366,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.46634458271875356, + "noteOrder": 3942, + "time": 0.6952773778715963, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3209,13 +5394,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2643, - "time": 0.46634458271875356, + "noteOrder": 3966, + "time": 0.6995168740781303, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3227,18 +5412,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 144, "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, - "time": 0.47482357513182183, + "noteOrder": 3990, + "time": 0.7037563702846644, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3255,13 +5440,128 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4002, + "time": 0.7058761183879316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4002, + "time": 0.7058761183879316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4014, + "time": 0.7079958664911986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4026, + "time": 0.7101156145944657, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4026, + "time": 0.7101156145944657, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, - "time": 0.47482357513182183, + "noteOrder": 4038, + "time": 0.7122353626977327, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3273,18 +5573,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2739, - "time": 0.4833025675448901, + "noteOrder": 4062, + "time": 0.7164748589042668, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3296,18 +5596,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2739, - "time": 0.4833025675448901, + "noteOrder": 4086, + "time": 0.7207143551108011, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3319,18 +5619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, - "time": 0.4917815599579583, + "noteOrder": 4098, + "time": 0.722834103214068, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3342,18 +5642,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3171, - "time": 0.5596134992625043, + "noteOrder": 4098, + "time": 0.722834103214068, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3370,13 +5670,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3195, - "time": 0.5638529954690384, + "noteOrder": 4110, + "time": 0.7249538513173351, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3393,13 +5693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, - "time": 0.5680924916755725, + "noteOrder": 4122, + "time": 0.7270735994206021, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3411,18 +5711,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3244, - "time": 0.5723319878821066, + "noteOrder": 4122, + "time": 0.7270735994206021, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3439,13 +5739,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.5935294689147773, + "noteOrder": 4134, + "time": 0.7291933475238692, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3457,18 +5757,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3388, - "time": 0.5977689651213114, + "noteOrder": 4158, + "time": 0.7334328437304034, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3485,11 +5785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3412, - "time": 0.6020084613278455, + "noteOrder": 4182, + "time": 0.7376723399369375, "position": { "x": 7, "y": 0 @@ -3508,11 +5808,11 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3436, - "time": 0.6062479575343797, + "noteOrder": 4194, + "time": 0.7397920880402045, "position": { "x": 7, "y": 0 @@ -3526,18 +5826,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3556, - "time": 0.6274454385670503, + "noteOrder": 4194, + "time": 0.7397920880402045, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3549,18 +5849,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.6359244309801185, + "noteOrder": 4206, + "time": 0.7419118361434716, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3577,13 +5877,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3652, - "time": 0.6444034233931868, + "noteOrder": 4218, + "time": 0.7440315842467385, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3595,18 +5895,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3676, - "time": 0.648642919599721, + "noteOrder": 4218, + "time": 0.7440315842467385, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3623,11 +5923,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3700, - "time": 0.6528824158062551, + "noteOrder": 4231, + "time": 0.7461513323500057, "position": { "x": 7, "y": 0 @@ -3646,11 +5946,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3724, - "time": 0.6571219120127891, + "noteOrder": 4255, + "time": 0.7503908285565398, "position": { "x": 7, "y": 0 @@ -3664,16 +5964,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.6613614082193233, + "noteOrder": 4279, + "time": 0.7546303247630739, "position": { "x": 7, "y": 0 @@ -3692,13 +5992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, - "time": 0.6698404006323916, + "noteOrder": 4291, + "time": 0.756750072866341, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3715,13 +6015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3940, - "time": 0.6952773778715963, + "noteOrder": 4291, + "time": 0.756750072866341, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3733,18 +6033,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 3964, - "time": 0.6995168740781305, + "noteOrder": 4303, + "time": 0.7588698209696081, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3761,13 +6061,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, - "time": 0.7037563702846645, + "noteOrder": 4315, + "time": 0.7609895690728752, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3779,18 +6079,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4012, - "time": 0.7079958664911986, + "noteOrder": 4315, + "time": 0.7609895690728752, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3807,13 +6107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4036, - "time": 0.7122353626977328, + "noteOrder": 4375, + "time": 0.7715883095892105, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3830,13 +6130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4060, - "time": 0.7164748589042669, + "noteOrder": 4387, + "time": 0.7737080576924775, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3853,11 +6153,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4084, - "time": 0.7207143551108011, + "noteOrder": 4387, + "time": 0.7737080576924775, "position": { "x": 4, "y": 0 @@ -3871,18 +6171,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4108, - "time": 0.7249538513173351, + "noteOrder": 4399, + "time": 0.7758278057957446, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3894,16 +6194,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4132, - "time": 0.7291933475238692, + "noteOrder": 4411, + "time": 0.7779475538990116, "position": { "x": 3, "y": 0 @@ -3922,13 +6222,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4156, - "time": 0.7334328437304034, + "noteOrder": 4411, + "time": 0.7779475538990116, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3945,11 +6245,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4181, - "time": 0.7376723399369375, + "noteOrder": 4471, + "time": 0.788546294415347, "position": { "x": 7, "y": 0 @@ -3968,13 +6268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4205, - "time": 0.7419118361434717, + "noteOrder": 4483, + "time": 0.790666042518614, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3986,18 +6286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4229, - "time": 0.7461513323500057, + "noteOrder": 4483, + "time": 0.790666042518614, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4014,11 +6314,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 4253, - "time": 0.7503908285565398, + "noteOrder": 4495, + "time": 0.792785790621881, "position": { "x": 7, "y": 0 @@ -4032,16 +6332,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4277, - "time": 0.754630324763074, + "noteOrder": 4507, + "time": 0.7949055387251481, "position": { "x": 7, "y": 0 @@ -4055,18 +6355,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4301, - "time": 0.7588698209696081, + "noteOrder": 4507, + "time": 0.7949055387251481, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4083,13 +6383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.7715883095892105, + "noteOrder": 4567, + "time": 0.8055042792414834, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4106,13 +6406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4397, - "time": 0.7758278057957446, + "noteOrder": 4579, + "time": 0.8076240273447505, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4124,18 +6424,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4469, - "time": 0.788546294415347, + "noteOrder": 4579, + "time": 0.8076240273447505, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4152,11 +6452,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4493, - "time": 0.7927857906218811, + "noteOrder": 4591, + "time": 0.8097437754480175, "position": { "x": 7, "y": 0 @@ -4175,11 +6475,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, - "time": 0.8055042792414835, + "noteOrder": 4603, + "time": 0.8118635235512847, "position": { "x": 7, "y": 0 @@ -4193,18 +6493,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4589, - "time": 0.8097437754480176, + "noteOrder": 4603, + "time": 0.8118635235512847, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4222,9 +6522,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.8139832716545518, "position": { "x": 7, @@ -4245,10 +6545,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4661, - "time": 0.82246226406762, + "noteOrder": 4663, + "time": 0.8224622640676199, "position": { "x": 4, "y": 0 @@ -4268,9 +6568,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.8309412564806882, "position": { "x": 7, @@ -4291,9 +6591,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4757, + "noteOrder": 4759, "time": 0.8394202488937564, "position": { "x": 7, @@ -4314,9 +6614,9 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4757, + "noteOrder": 4759, "time": 0.8394202488937564, "position": { "x": 5, @@ -4337,10 +6637,10 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4805, - "time": 0.8478992413068247, + "noteOrder": 4807, + "time": 0.8478992413068246, "position": { "x": 5, "y": 0 @@ -4360,10 +6660,10 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4805, - "time": 0.8478992413068247, + "noteOrder": 4807, + "time": 0.8478992413068246, "position": { "x": 7, "y": 0 @@ -4383,9 +6683,9 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.856378233719893, "position": { "x": 7, @@ -4406,9 +6706,9 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.856378233719893, "position": { "x": 4, @@ -4429,9 +6729,9 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4904, "time": 0.8648572261329612, "position": { "x": 4, @@ -4452,9 +6752,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4904, "time": 0.8648572261329612, "position": { "x": 5, @@ -4475,9 +6775,9 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4949, + "noteOrder": 4952, "time": 0.8733362185460294, "position": { "x": 5, @@ -4498,9 +6798,9 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4949, + "noteOrder": 4952, "time": 0.8733362185460294, "position": { "x": 2, @@ -4521,9 +6821,9 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4997, + "noteOrder": 5000, "time": 0.8818152109590977, "position": { "x": 2, @@ -4544,9 +6844,9 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, + "noteOrder": 5000, "time": 0.8818152109590977, "position": { "x": 4, @@ -4567,9 +6867,9 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5045, + "noteOrder": 5048, "time": 0.8902942033721659, "position": { "x": 4, @@ -4590,9 +6890,9 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5045, + "noteOrder": 5048, "time": 0.8902942033721659, "position": { "x": 3, @@ -4613,10 +6913,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.8987731957852342, + "noteOrder": 5096, + "time": 0.8987731957852341, "position": { "x": 3, "y": 0 @@ -4636,10 +6936,10 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5094, - "time": 0.8987731957852342, + "noteOrder": 5096, + "time": 0.8987731957852341, "position": { "x": 7, "y": 0 @@ -4659,9 +6959,9 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.9072521881983024, "position": { "x": 7, @@ -4682,9 +6982,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.9157311806113707, "position": { "x": 3, @@ -4705,9 +7005,9 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5238, + "noteOrder": 5240, "time": 0.9242101730244389, "position": { "x": 3, @@ -4728,9 +7028,9 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, + "noteOrder": 5288, "time": 0.9326891654375071, "position": { "x": 7, @@ -4751,10 +7051,10 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5334, - "time": 0.9411681578505754, + "noteOrder": 5336, + "time": 0.9411681578505753, "position": { "x": 7, "y": 0 @@ -4774,9 +7074,9 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.9496471502636437, "position": { "x": 3, @@ -4797,9 +7097,9 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9581261426767119, "position": { "x": 3, diff --git a/tracks/Easy Peasy/345_difficulty_1b.json b/tracks/Easy Peasy/345_difficulty_1b.json index 8e6df1a3..b7708a96 100644 --- a/tracks/Easy Peasy/345_difficulty_1b.json +++ b/tracks/Easy Peasy/345_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 961, - "time": 0.16957984826136493, + "time": 0.1695798482613649, "position": { "x": 6, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 1009, - "time": 0.1780588406744332, + "noteOrder": 1010, + "time": 0.17805884067443317, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.20349581791363794, "position": { "x": 4, @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.21197481032670618, + "noteOrder": 1202, + "time": 0.21197481032670615, "position": { "x": 6, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.22893279515284268, "position": { "x": 4, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.23741178756591091, "position": { "x": 4, @@ -134,7 +134,7 @@ }, { "noteOrder": 1394, - "time": 0.24589077997897915, + "time": 0.24589077997897918, "position": { "x": 2, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 1538, - "time": 0.2713277572181839, + "time": 0.27132775721818386, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2787, - "time": 0.4917815599579583, + "noteOrder": 2788, + "time": 0.49178155995795836, "position": { "x": 6, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.5002605523710265, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.5087395447840948, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2933, "time": 0.517218537197163, "position": { "x": 3, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 2981, "time": 0.5256975296102313, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3029, "time": 0.5341765220232996, "position": { "x": 6, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3075, - "time": 0.5426555144363678, + "noteOrder": 3077, + "time": 0.5426555144363677, "position": { "x": 4, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3123, - "time": 0.551134506849436, + "noteOrder": 3125, + "time": 0.5511345068494361, "position": { "x": 4, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3268, + "noteOrder": 3269, "time": 0.5765714840886408, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.585050476501709, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.6104874537409137, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.618966446153982, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3604, - "time": 0.6359244309801185, + "noteOrder": 3606, + "time": 0.6359244309801184, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3654, "time": 0.6444034233931868, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.6528824158062551, "position": { "x": 8, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.6698404006323916, + "noteOrder": 3798, + "time": 0.6698404006323915, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.6783193930454597, + "noteOrder": 3846, + "time": 0.6783193930454596, "position": { "x": 4, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3892, + "noteOrder": 3894, "time": 0.686798385458528, "position": { "x": 2, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5094, - "time": 0.8987731957852342, + "noteOrder": 5096, + "time": 0.8987731957852341, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.9072521881983024, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.9157311806113707, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 5240, "time": 0.9242101730244389, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5286, + "noteOrder": 5288, "time": 0.9326891654375071, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5334, - "time": 0.9411681578505754, + "noteOrder": 5336, + "time": 0.9411681578505753, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.9496471502636437, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.9581261426767119, "position": { "x": 6, @@ -736,10 +736,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.016957984826136495, + "time": 0.01695798482613649, "position": { "x": 7, "y": 0 @@ -759,7 +759,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.025436977239204742, @@ -782,10 +782,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03391596965227299, + "time": 0.03391596965227298, "position": { "x": 3, "y": 0 @@ -805,10 +805,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.042394962065341234, + "time": 0.04239496206534123, "position": { "x": 3, "y": 0 @@ -828,7 +828,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.050873954478409485, @@ -851,9 +851,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.05935294689147773, "position": { "x": 6, @@ -874,10 +874,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.06783193930454598, + "noteOrder": 385, + "time": 0.06783193930454597, "position": { "x": 4, "y": 0 @@ -897,9 +897,9 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.07631093171761422, "position": { "x": 4, @@ -920,10 +920,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08478992413068247, + "time": 0.08478992413068245, "position": { "x": 7, "y": 0 @@ -943,7 +943,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, "time": 0.10174790895681897, @@ -966,7 +966,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.10174790895681897, @@ -989,7 +989,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.11870589378295546, @@ -1012,7 +1012,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.11870589378295546, @@ -1035,7 +1035,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, "time": 0.1271848861960237, @@ -1058,7 +1058,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 721, "time": 0.1271848861960237, @@ -1081,10 +1081,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.13566387860909196, + "time": 0.13566387860909193, "position": { "x": 4, "y": 0 @@ -1104,7 +1104,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.15262186343522843, @@ -1126,11 +1126,11 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 913, - "time": 0.1611008558482967, + "noteOrder": 889, + "time": 0.15686135964176257, "position": { "x": 7, "y": 0 @@ -1144,18 +1144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.18653783308750144, + "noteOrder": 889, + "time": 0.15686135964176257, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1167,18 +1167,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.19501682550056967, + "noteOrder": 913, + "time": 0.1611008558482967, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1190,16 +1190,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.2204538027397744, + "noteOrder": 937, + "time": 0.1653403520548308, "position": { "x": 7, "y": 0 @@ -1213,18 +1213,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 1, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, - "time": 0.24589077997897915, + "noteOrder": 937, + "time": 0.1653403520548308, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1236,16 +1236,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2543697723920474, + "noteOrder": 1058, + "time": 0.18653783308750144, "position": { "x": 3, "y": 0 @@ -1264,13 +1264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, - "time": 0.2798067496312521, + "noteOrder": 1082, + "time": 0.19077732929403554, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -1287,13 +1287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.2882857420443204, + "noteOrder": 1082, + "time": 0.19077732929403554, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1305,18 +1305,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.29676473445738866, + "noteOrder": 1106, + "time": 0.19501682550056967, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1328,18 +1328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.30524372687045687, + "noteOrder": 1130, + "time": 0.19925632170710378, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1356,13 +1356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1778, - "time": 0.31372271928352513, + "noteOrder": 1130, + "time": 0.19925632170710378, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1374,16 +1374,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.3222017116965934, + "noteOrder": 1250, + "time": 0.2204538027397744, "position": { "x": 7, "y": 0 @@ -1402,13 +1402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 1, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, - "time": 0.33068070410966166, + "noteOrder": 1394, + "time": 0.24589077997897918, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1425,11 +1425,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.33915969652272987, + "noteOrder": 1442, + "time": 0.2543697723920474, "position": { "x": 3, "y": 0 @@ -1448,13 +1448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.34763868893579813, + "noteOrder": 1586, + "time": 0.2798067496312521, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1471,13 +1471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, - "time": 0.3561176813488664, + "noteOrder": 1635, + "time": 0.2882857420443204, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1489,18 +1489,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, - "time": 0.3645966737619346, + "noteOrder": 1659, + "time": 0.2925252382508545, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1517,13 +1517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2114, - "time": 0.3730756661750029, + "noteOrder": 1659, + "time": 0.2925252382508545, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1535,18 +1535,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2162, - "time": 0.38155465858807114, + "noteOrder": 1683, + "time": 0.29676473445738866, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1558,18 +1558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.39003365100113935, + "noteOrder": 1707, + "time": 0.30100423066392273, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1586,13 +1586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2258, - "time": 0.3985126434142076, + "noteOrder": 1707, + "time": 0.30100423066392273, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1609,11 +1609,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, - "time": 0.4069916358272759, + "noteOrder": 1731, + "time": 0.30524372687045687, "position": { "x": 7, "y": 0 @@ -1632,11 +1632,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2355, - "time": 0.4154706282403441, + "noteOrder": 1755, + "time": 0.309483223076991, "position": { "x": 7, "y": 0 @@ -1655,13 +1655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2403, - "time": 0.42394962065341235, + "noteOrder": 1755, + "time": 0.309483223076991, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1678,11 +1678,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.4409076054795488, + "noteOrder": 1779, + "time": 0.31372271928352513, "position": { "x": 7, "y": 0 @@ -1696,18 +1696,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.4409076054795488, + "noteOrder": 1803, + "time": 0.3179622154900592, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1724,13 +1724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2595, - "time": 0.45786559030568535, + "noteOrder": 1803, + "time": 0.3179622154900592, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1747,13 +1747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.45786559030568535, + "noteOrder": 1827, + "time": 0.3222017116965934, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1770,13 +1770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2691, - "time": 0.47482357513182183, + "noteOrder": 1875, + "time": 0.3306807041096616, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1793,13 +1793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, - "time": 0.47482357513182183, + "noteOrder": 1923, + "time": 0.3391596965227298, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1816,13 +1816,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, - "time": 0.4917815599579583, + "noteOrder": 1971, + "time": 0.34763868893579813, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1839,11 +1839,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, - "time": 0.5596134992625043, + "noteOrder": 2019, + "time": 0.35611768134886634, "position": { "x": 3, "y": 0 @@ -1862,11 +1862,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, - "time": 0.5680924916755725, + "noteOrder": 2043, + "time": 0.36035717755540053, "position": { "x": 3, "y": 0 @@ -1880,18 +1880,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3364, - "time": 0.5935294689147773, + "noteOrder": 2043, + "time": 0.36035717755540053, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1903,18 +1903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3412, - "time": 0.6020084613278455, + "noteOrder": 2067, + "time": 0.3645966737619346, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1926,16 +1926,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3556, - "time": 0.6274454385670503, + "noteOrder": 2091, + "time": 0.36883616996846874, "position": { "x": 3, "y": 0 @@ -1949,18 +1949,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3700, - "time": 0.6528824158062551, + "noteOrder": 2091, + "time": 0.36883616996846874, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1972,18 +1972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.6613614082193233, + "noteOrder": 2115, + "time": 0.3730756661750029, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1995,16 +1995,890 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2139, + "time": 0.37731516238153695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2139, + "time": 0.37731516238153695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3815546585880711, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2187, + "time": 0.38579415479460527, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2187, + "time": 0.38579415479460527, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.39003365100113935, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2259, + "time": 0.39851264341420756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.4069916358272759, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2356, + "time": 0.4154706282403441, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.4239496206534123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2500, + "time": 0.4409076054795488, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.4409076054795488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2596, + "time": 0.45786559030568535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.45786559030568535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2692, + "time": 0.47482357513182183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.47482357513182183, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2788, + "time": 0.49178155995795836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.5596134992625043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5638529954690384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5638529954690384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3221, + "time": 0.5680924916755725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5723319878821067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5723319878821067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3365, + "time": 0.5935294689147773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3389, + "time": 0.5977689651213114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3389, + "time": 0.5977689651213114, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3413, + "time": 0.6020084613278455, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3437, + "time": 0.6062479575343797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3437, + "time": 0.6062479575343797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3557, + "time": 0.6274454385670503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3702, + "time": 0.6528824158062551, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.6613614082193232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3894, + "time": 0.686798385458528, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3942, + "time": 0.6952773778715963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3966, + "time": 0.6995168740781303, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3966, + "time": 0.6995168740781303, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.7037563702846644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, - "time": 0.686798385458528, + "noteOrder": 4014, + "time": 0.7079958664911986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4014, + "time": 0.7079958664911986, "position": { "x": 4, "y": 0 @@ -2023,11 +2897,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.6952773778715963, + "noteOrder": 4038, + "time": 0.7122353626977327, "position": { "x": 3, "y": 0 @@ -2046,11 +2920,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, - "time": 0.7037563702846645, + "noteOrder": 4062, + "time": 0.7164748589042668, "position": { "x": 3, "y": 0 @@ -2064,18 +2938,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4036, - "time": 0.7122353626977328, + "noteOrder": 4062, + "time": 0.7164748589042668, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2093,9 +2967,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.7207143551108011, "position": { "x": 3, @@ -2114,11 +2988,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7249538513173351, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4110, + "time": 0.7249538513173351, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.7291933475238692, "position": { "x": 3, @@ -2139,9 +3059,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4181, + "noteOrder": 4182, "time": 0.7376723399369375, "position": { "x": 3, @@ -2162,9 +3082,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, + "noteOrder": 4231, "time": 0.7461513323500057, "position": { "x": 7, @@ -2185,10 +3105,33 @@ }, { "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4279, + "time": 0.7546303247630739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.754630324763074, + "noteOrder": 4327, + "time": 0.7631093171761422, "position": { "x": 7, "y": 0 @@ -2208,10 +3151,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4325, - "time": 0.7631093171761423, + "noteOrder": 4351, + "time": 0.7673488133826762, "position": { "x": 7, "y": 0 @@ -2229,11 +3172,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4351, + "time": 0.7673488133826762, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, + "noteOrder": 4375, "time": 0.7715883095892105, "position": { "x": 7, @@ -2252,11 +3218,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7758278057957446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4399, + "time": 0.7758278057957446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, + "noteOrder": 4423, "time": 0.7800673020022787, "position": { "x": 7, @@ -2275,11 +3287,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4447, + "time": 0.7843067982088129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4447, + "time": 0.7843067982088129, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.788546294415347, "position": { "x": 7, @@ -2298,12 +3356,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4495, + "time": 0.792785790621881, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4495, + "time": 0.792785790621881, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.7970252868284152, + "noteOrder": 4519, + "time": 0.7970252868284151, "position": { "x": 7, "y": 0 @@ -2323,10 +3427,10 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, - "time": 0.8055042792414835, + "noteOrder": 4567, + "time": 0.8055042792414834, "position": { "x": 7, "y": 0 @@ -2346,9 +3450,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.8139832716545518, "position": { "x": 3, @@ -2369,10 +3473,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4661, - "time": 0.82246226406762, + "noteOrder": 4663, + "time": 0.8224622640676199, "position": { "x": 3, "y": 0 @@ -2392,9 +3496,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.8309412564806882, "position": { "x": 3, @@ -2415,10 +3519,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4805, - "time": 0.8478992413068247, + "noteOrder": 4807, + "time": 0.8478992413068246, "position": { "x": 3, "y": 0 @@ -2438,10 +3542,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4805, - "time": 0.8478992413068247, + "noteOrder": 4807, + "time": 0.8478992413068246, "position": { "x": 7, "y": 0 @@ -2461,9 +3565,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4904, "time": 0.8648572261329612, "position": { "x": 7, @@ -2484,9 +3588,9 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4904, "time": 0.8648572261329612, "position": { "x": 4, @@ -2507,9 +3611,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4997, + "noteOrder": 5000, "time": 0.8818152109590977, "position": { "x": 4, @@ -2530,9 +3634,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, + "noteOrder": 5000, "time": 0.8818152109590977, "position": { "x": 6, @@ -2553,10 +3657,10 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.8987731957852342, + "noteOrder": 5096, + "time": 0.8987731957852341, "position": { "x": 6, "y": 0 diff --git a/tracks/Easy Peasy/info.json b/tracks/Easy Peasy/info.json index 89e847f1..9e8b8535 100644 --- a/tracks/Easy Peasy/info.json +++ b/tracks/Easy Peasy/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Easy Peasy", - "SongLength": "112.666122", + "SongLength": "102.713469", "SongAuthorName": "BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/FUTURE is Dead/295_difficulty_1a.json b/tracks/FUTURE is Dead/295_difficulty_1a.json index 856aecfd..73d0a766 100644 --- a/tracks/FUTURE is Dead/295_difficulty_1a.json +++ b/tracks/FUTURE is Dead/295_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 146, - "time": 0.027554535017221587, + "time": 0.027554535017221583, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 218, - "time": 0.04133180252583237, + "time": 0.04133180252583238, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 291, - "time": 0.055109070034443174, + "time": 0.05510907003444317, "position": { "x": 7, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 412, + "noteOrder": 413, "time": 0.0780711825487945, "position": { "x": 7, @@ -214,7 +214,7 @@ }, { "noteOrder": 437, - "time": 0.08266360505166474, + "time": 0.08266360505166476, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 461, - "time": 0.08725602755453502, + "time": 0.08725602755453503, "position": { "x": 4, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 509, - "time": 0.09644087256027555, + "noteOrder": 510, + "time": 0.09644087256027556, "position": { "x": 8, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 558, - "time": 0.10562571756601608, + "time": 0.10562571756601609, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 606, - "time": 0.11481056257175659, + "noteOrder": 607, + "time": 0.1148105625717566, "position": { "x": 2, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 703, - "time": 0.13318025258323765, + "noteOrder": 704, + "time": 0.13318025258323768, "position": { "x": 8, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 800, - "time": 0.15154994259471874, + "noteOrder": 801, + "time": 0.1515499425947187, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 873, - "time": 0.16532721010332949, + "noteOrder": 874, + "time": 0.1653272101033295, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 897, + "noteOrder": 898, "time": 0.16991963260619977, "position": { "x": 6, @@ -574,7 +574,7 @@ }, { "noteOrder": 922, - "time": 0.17451205510907003, + "time": 0.17451205510907006, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 970, + "noteOrder": 971, "time": 0.18369690011481057, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 994, + "noteOrder": 995, "time": 0.18828932261768083, "position": { "x": 3, @@ -654,7 +654,7 @@ }, { "noteOrder": 1019, - "time": 0.1928817451205511, + "time": 0.19288174512055112, "position": { "x": 4, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1019, - "time": 0.1928817451205511, + "time": 0.19288174512055112, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1043, - "time": 0.19747416762342135, + "time": 0.19747416762342138, "position": { "x": 3, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1043, - "time": 0.19747416762342135, + "time": 0.19747416762342138, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1237, - "time": 0.23421354764638347, + "noteOrder": 1238, + "time": 0.2342135476463835, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1286, - "time": 0.24339839265212398, + "time": 0.243398392652124, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1334, - "time": 0.2525832376578645, + "noteOrder": 1335, + "time": 0.25258323765786456, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1431, + "noteOrder": 1432, "time": 0.2709529276693456, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1529, "time": 0.2893226176808267, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1625, + "noteOrder": 1626, "time": 0.3076923076923077, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1698, + "noteOrder": 1699, "time": 0.32146957520091846, "position": { "x": 8, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1722, - "time": 0.32606199770378874, + "noteOrder": 1723, + "time": 0.3260619977037888, "position": { "x": 4, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1771, - "time": 0.33524684270952926, + "time": 0.3352468427095293, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1795, + "noteOrder": 1796, "time": 0.33983926521239954, "position": { "x": 2, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1819, - "time": 0.3444316877152698, + "noteOrder": 1820, + "time": 0.34443168771526983, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1916, - "time": 0.36280137772675086, + "noteOrder": 1917, + "time": 0.3628013777267509, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1940, + "noteOrder": 1941, "time": 0.36739380022962115, "position": { "x": 7, @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1965, - "time": 0.3719862227324914, + "time": 0.37198622273249143, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1989, + "noteOrder": 1990, "time": 0.37657864523536166, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1989, + "noteOrder": 1990, "time": 0.37657864523536166, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2013, + "noteOrder": 2014, "time": 0.3811710677382319, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2013, + "noteOrder": 2014, "time": 0.3811710677382319, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 2257, "time": 0.4270952927669346, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2281, "time": 0.4316877152698049, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2305, "time": 0.4362801377726751, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.4454649827784157, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.45005740528128585, + "noteOrder": 2378, + "time": 0.4500574052812859, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.45464982778415614, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2426, - "time": 0.45924225028702637, + "noteOrder": 2427, + "time": 0.4592422502870264, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.46383467278989665, + "noteOrder": 2451, + "time": 0.4638346727898967, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.46842709529276694, + "noteOrder": 2475, + "time": 0.468427095292767, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.47301951779563717, + "noteOrder": 2499, + "time": 0.4730195177956372, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.47761194029850745, "position": { "x": 7, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.48220436280137774, + "noteOrder": 2548, + "time": 0.4822043628013778, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.48679678530424797, + "noteOrder": 2572, + "time": 0.486796785304248, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.49138920780711826, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2741, + "noteOrder": 2742, "time": 0.5189437428243399, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5235361653272101, "position": { "x": 8, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2789, - "time": 0.5281285878300804, + "noteOrder": 2790, + "time": 0.5281285878300803, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2935, + "noteOrder": 2936, "time": 0.5556831228473019, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2959, + "noteOrder": 2960, "time": 0.5602755453501722, "position": { "x": 2, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2983, + "noteOrder": 2985, "time": 0.5648679678530425, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3032, + "noteOrder": 3033, "time": 0.5740528128587831, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3080, - "time": 0.5832376578645235, + "noteOrder": 3082, + "time": 0.5832376578645236, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3130, "time": 0.5924225028702641, "position": { "x": 8, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.6016073478760047, + "noteOrder": 3179, + "time": 0.6016073478760046, "position": { "x": 2, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3202, - "time": 0.606199770378875, + "noteOrder": 3203, + "time": 0.6061997703788748, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3226, - "time": 0.6107921928817451, + "noteOrder": 3227, + "time": 0.6107921928817452, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3323, - "time": 0.6291618828932263, + "noteOrder": 3324, + "time": 0.6291618828932262, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3323, - "time": 0.6291618828932263, + "noteOrder": 3324, + "time": 0.6291618828932262, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3517, - "time": 0.6659012629161882, + "noteOrder": 3518, + "time": 0.6659012629161883, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3541, - "time": 0.6704936854190585, + "noteOrder": 3543, + "time": 0.6704936854190586, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.6750861079219288, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3711, + "noteOrder": 3713, "time": 0.7026406429391504, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3735, + "noteOrder": 3737, "time": 0.7072330654420207, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3760, - "time": 0.7118254879448909, + "noteOrder": 3761, + "time": 0.711825487944891, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3784, + "noteOrder": 3785, "time": 0.7164179104477612, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3810, "time": 0.7210103329506314, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.7256027554535017, + "noteOrder": 3834, + "time": 0.7256027554535018, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.7256027554535017, + "noteOrder": 3834, + "time": 0.7256027554535018, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3857, - "time": 0.730195177956372, + "noteOrder": 3858, + "time": 0.7301951779563721, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3857, - "time": 0.730195177956372, + "noteOrder": 3858, + "time": 0.7301951779563721, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4004, "time": 0.7577497129735936, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4028, "time": 0.7623421354764638, "position": { "x": 6, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4051, - "time": 0.7669345579793341, + "noteOrder": 4052, + "time": 0.7669345579793342, "position": { "x": 7, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4148, + "noteOrder": 4149, "time": 0.7853042479908152, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4196, + "noteOrder": 4198, "time": 0.7944890929965557, "position": { "x": 2, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4220, + "noteOrder": 4222, "time": 0.799081515499426, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4245, - "time": 0.8036739380022963, + "noteOrder": 4246, + "time": 0.8036739380022964, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4293, + "noteOrder": 4295, "time": 0.8128587830080368, "position": { "x": 8, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4317, - "time": 0.817451205510907, + "noteOrder": 4319, + "time": 0.8174512055109071, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4343, "time": 0.8220436280137773, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.8266360505166476, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8312284730195179, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8358208955223881, + "noteOrder": 4416, + "time": 0.835820895522388, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8358208955223881, + "noteOrder": 4416, + "time": 0.835820895522388, "position": { "x": 6, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4439, + "noteOrder": 4441, "time": 0.8404133180252583, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4439, + "noteOrder": 4441, "time": 0.8404133180252583, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4562, "time": 0.8633754305396097, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4572, + "noteOrder": 4574, "time": 0.8656716417910448, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.8679678530424799, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 4598, "time": 0.8702640642939151, "position": { "x": 5, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4635, "time": 0.8771526980482205, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4730, + "noteOrder": 4732, "time": 0.8955223880597015, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.8978185993111366, + "noteOrder": 4744, + "time": 0.8978185993111367, "position": { "x": 5, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4827, + "noteOrder": 4829, "time": 0.9138920780711826, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4839, + "noteOrder": 4841, "time": 0.9161882893226176, "position": { "x": 5, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.923076923076923, + "noteOrder": 4877, + "time": 0.9230769230769231, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.9276693455797933, + "noteOrder": 4902, + "time": 0.9276693455797934, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.9276693455797933, + "noteOrder": 4902, + "time": 0.9276693455797934, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.9322617680826636, + "noteOrder": 4926, + "time": 0.9322617680826637, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.9322617680826636, + "noteOrder": 4926, + "time": 0.9322617680826637, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4948, - "time": 0.9368541905855339, + "noteOrder": 4950, + "time": 0.936854190585534, "position": { "x": 7, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4960, - "time": 0.939150401836969, + "noteOrder": 4962, + "time": 0.9391504018369691, "position": { "x": 6, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 4974, "time": 0.9414466130884042, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4985, - "time": 0.9437428243398392, + "noteOrder": 4986, + "time": 0.9437428243398394, "position": { "x": 3, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4997, - "time": 0.9460390355912743, + "noteOrder": 4999, + "time": 0.9460390355912744, "position": { "x": 4, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5009, + "noteOrder": 5011, "time": 0.9483352468427095, "position": { "x": 6, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5118, - "time": 0.9690011481056257, + "noteOrder": 5120, + "time": 0.9690011481056258, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5118, - "time": 0.9690011481056257, + "noteOrder": 5120, + "time": 0.9690011481056258, "position": { "x": 6, "y": 0 @@ -2716,7 +2716,7 @@ "lineNodes": [ { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03673938002296211, @@ -2739,10 +2739,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 218, - "time": 0.04133180252583237, + "time": 0.04133180252583238, "position": { "x": 7, "y": 0 @@ -2762,7 +2762,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 243, "time": 0.045924225028702644, @@ -2785,7 +2785,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, "time": 0.05051664753157291, @@ -2808,7 +2808,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 485, "time": 0.09184845005740529, @@ -2831,10 +2831,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 558, - "time": 0.10562571756601608, + "time": 0.10562571756601609, "position": { "x": 6, "y": 0 @@ -2854,10 +2854,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 582, - "time": 0.11021814006888635, + "time": 0.11021814006888633, "position": { "x": 4, "y": 0 @@ -2877,7 +2877,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 655, "time": 0.12399540757749714, @@ -2900,7 +2900,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 679, "time": 0.1285878300803674, @@ -2923,10 +2923,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 703, - "time": 0.13318025258323765, + "noteOrder": 704, + "time": 0.13318025258323768, "position": { "x": 6, "y": 0 @@ -2946,7 +2946,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 728, "time": 0.13777267508610794, @@ -2969,7 +2969,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 752, "time": 0.1423650975889782, @@ -2992,9 +2992,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.20206659012629163, "position": { "x": 3, @@ -3014,13 +3014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1116, - "time": 0.21125143513203215, + "noteOrder": 1092, + "time": 0.2066590126291619, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3032,18 +3032,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1164, - "time": 0.2204362801377727, + "noteOrder": 1092, + "time": 0.2066590126291619, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3060,11 +3060,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1189, - "time": 0.22502870264064292, + "noteOrder": 1116, + "time": 0.21125143513203218, "position": { "x": 7, "y": 0 @@ -3083,13 +3083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1213, - "time": 0.22962112514351318, + "noteOrder": 1140, + "time": 0.21584385763490244, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3101,18 +3101,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1261, - "time": 0.23880597014925373, + "noteOrder": 1140, + "time": 0.21584385763490244, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3129,13 +3129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1310, - "time": 0.24799081515499427, + "noteOrder": 1165, + "time": 0.22043628013777267, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3152,13 +3152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1358, - "time": 0.2571756601607348, + "noteOrder": 1177, + "time": 0.22273249138920784, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3170,18 +3170,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1383, - "time": 0.2617680826636051, + "noteOrder": 1177, + "time": 0.22273249138920784, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3198,11 +3198,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1407, - "time": 0.2663605051664753, + "noteOrder": 1189, + "time": 0.22502870264064295, "position": { "x": 7, "y": 0 @@ -3221,13 +3221,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1455, - "time": 0.2755453501722159, + "noteOrder": 1201, + "time": 0.22732491389207807, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3239,18 +3239,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1504, - "time": 0.2847301951779564, + "noteOrder": 1201, + "time": 0.22732491389207807, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3267,11 +3267,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1552, - "time": 0.2939150401836969, + "noteOrder": 1213, + "time": 0.2296211251435132, "position": { "x": 3, "y": 0 @@ -3290,11 +3290,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1577, - "time": 0.2985074626865672, + "noteOrder": 1225, + "time": 0.23191733639494835, "position": { "x": 3, "y": 0 @@ -3308,18 +3308,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1601, - "time": 0.3030998851894375, + "noteOrder": 1225, + "time": 0.23191733639494835, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3336,13 +3336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1649, - "time": 0.312284730195178, + "noteOrder": 1238, + "time": 0.2342135476463835, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3354,18 +3354,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1674, - "time": 0.3168771526980482, + "noteOrder": 1238, + "time": 0.2342135476463835, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3377,18 +3377,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 2, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1746, - "time": 0.33065442020665897, + "noteOrder": 1262, + "time": 0.23880597014925373, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3405,13 +3405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1746, - "time": 0.33065442020665897, + "noteOrder": 1274, + "time": 0.2411021814006889, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3423,18 +3423,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1771, - "time": 0.33524684270952926, + "noteOrder": 1274, + "time": 0.2411021814006889, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3446,16 +3446,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 2, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1843, - "time": 0.34902411021814006, + "noteOrder": 1286, + "time": 0.243398392652124, "position": { "x": 6, "y": 0 @@ -3469,18 +3469,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1843, - "time": 0.34902411021814006, + "noteOrder": 1286, + "time": 0.243398392652124, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3497,11 +3497,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1868, - "time": 0.35361653272101035, + "noteOrder": 1310, + "time": 0.24799081515499427, "position": { "x": 7, "y": 0 @@ -3515,18 +3515,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1892, - "time": 0.3582089552238806, + "noteOrder": 1322, + "time": 0.2502870264064294, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3543,13 +3543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1916, - "time": 0.36280137772675086, + "noteOrder": 1322, + "time": 0.2502870264064294, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3566,11 +3566,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2037, - "time": 0.3857634902411022, + "noteOrder": 1335, + "time": 0.25258323765786456, "position": { "x": 6, "y": 0 @@ -3584,18 +3584,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2207, - "time": 0.41791044776119407, + "noteOrder": 1335, + "time": 0.25258323765786456, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3607,18 +3607,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2037, - "time": 0.3857634902411022, + "noteOrder": 1359, + "time": 0.2571756601607348, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3630,18 +3630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2207, - "time": 0.41791044776119407, + "noteOrder": 1371, + "time": 0.25947187141216993, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3653,18 +3653,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2232, - "time": 0.4225028702640643, + "noteOrder": 1371, + "time": 0.25947187141216993, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3681,13 +3681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2329, - "time": 0.4408725602755454, + "noteOrder": 1383, + "time": 0.2617680826636051, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3704,13 +3704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2329, - "time": 0.4408725602755454, + "noteOrder": 1383, + "time": 0.2617680826636051, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3722,18 +3722,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 2426, - "time": 0.45924225028702637, + "noteOrder": 1383, + "time": 0.2617680826636051, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3750,11 +3750,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.49598163030998854, + "noteOrder": 1395, + "time": 0.26406429391504016, "position": { "x": 7, "y": 0 @@ -3768,18 +3768,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2644, - "time": 0.5005740528128588, + "noteOrder": 1395, + "time": 0.26406429391504016, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3796,13 +3796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2668, - "time": 0.505166475315729, + "noteOrder": 1407, + "time": 0.26636050516647536, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3814,18 +3814,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2692, - "time": 0.5097588978185993, + "noteOrder": 1407, + "time": 0.26636050516647536, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3842,13 +3842,3578 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2717, - "time": 0.5143513203214696, + "noteOrder": 1407, + "time": 0.26636050516647536, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1420, + "time": 0.2686567164179105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1420, + "time": 0.2686567164179105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1432, + "time": 0.2709529276693456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1432, + "time": 0.2709529276693456, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1456, + "time": 0.2755453501722159, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1468, + "time": 0.27784156142365096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1468, + "time": 0.27784156142365096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2801377726750861, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2801377726750861, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2847301951779564, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1517, + "time": 0.28702640642939153, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1517, + "time": 0.28702640642939153, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1529, + "time": 0.2893226176808267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1529, + "time": 0.2893226176808267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1553, + "time": 0.2939150401836969, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1565, + "time": 0.29621125143513205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1565, + "time": 0.29621125143513205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1577, + "time": 0.2985074626865672, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1577, + "time": 0.2985074626865672, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1577, + "time": 0.2985074626865672, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1589, + "time": 0.3008036739380023, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1589, + "time": 0.3008036739380023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1601, + "time": 0.3030998851894374, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1601, + "time": 0.3030998851894374, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1601, + "time": 0.3030998851894374, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1614, + "time": 0.3053960964408726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1614, + "time": 0.3053960964408726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1626, + "time": 0.3076923076923077, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1626, + "time": 0.3076923076923077, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1650, + "time": 0.312284730195178, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1674, + "time": 0.3168771526980482, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1747, + "time": 0.330654420206659, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1747, + "time": 0.330654420206659, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1771, + "time": 0.3352468427095293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1844, + "time": 0.3490241102181401, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1844, + "time": 0.3490241102181401, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1868, + "time": 0.35361653272101035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1893, + "time": 0.3582089552238806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1917, + "time": 0.3628013777267509, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2038, + "time": 0.38576349024110224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2208, + "time": 0.417910447761194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2038, + "time": 0.38576349024110224, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2208, + "time": 0.417910447761194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2232, + "time": 0.42250287026406436, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2329, + "time": 0.44087256027554533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2329, + "time": 0.44087256027554533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2427, + "time": 0.4592422502870264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.49598163030998854, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2633, + "time": 0.4982778415614237, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2633, + "time": 0.4982778415614237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.5005740528128588, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2657, + "time": 0.5028702640642939, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2657, + "time": 0.5028702640642939, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.5051664753157291, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2681, + "time": 0.5074626865671642, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2681, + "time": 0.5074626865671642, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.5097588978185994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2706, + "time": 0.5120551090700345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2706, + "time": 0.5120551090700345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2718, + "time": 0.5143513203214696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2742, + "time": 0.5189437428243399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2815, + "time": 0.5327210103329507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2815, + "time": 0.5327210103329507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2827, + "time": 0.5350172215843858, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2827, + "time": 0.5350172215843858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2839, + "time": 0.537313432835821, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2851, + "time": 0.5396096440872561, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2851, + "time": 0.5396096440872561, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2863, + "time": 0.5419058553386912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2875, + "time": 0.5442020665901264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2875, + "time": 0.5442020665901264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2888, + "time": 0.5464982778415615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2900, + "time": 0.5487944890929966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2900, + "time": 0.5487944890929966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2912, + "time": 0.5510907003444317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2936, + "time": 0.5556831228473019, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3009, + "time": 0.5694603903559128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3009, + "time": 0.5694603903559128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3033, + "time": 0.5740528128587831, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3057, + "time": 0.5786452353616534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5832376578645236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3106, + "time": 0.5878300803673938, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3130, + "time": 0.5924225028702641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3154, + "time": 0.5970149253731344, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3179, + "time": 0.6016073478760046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3252, + "time": 0.6153846153846154, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3300, + "time": 0.624569460390356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3276, + "time": 0.6199770378874857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3300, + "time": 0.624569460390356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3349, + "time": 0.6337543053960965, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3373, + "time": 0.6383467278989667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3349, + "time": 0.6337543053960965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3373, + "time": 0.6383467278989667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3397, + "time": 0.6429391504018369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3409, + "time": 0.6452353616532721, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3409, + "time": 0.6452353616532721, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3421, + "time": 0.6475315729047073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3421, + "time": 0.6475315729047073, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3421, + "time": 0.6475315729047073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3434, + "time": 0.6498277841561424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3434, + "time": 0.6498277841561424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3446, + "time": 0.6521239954075776, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3446, + "time": 0.6521239954075776, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3446, + "time": 0.6521239954075776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3458, + "time": 0.6544202066590127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3458, + "time": 0.6544202066590127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3470, + "time": 0.6567164179104479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3470, + "time": 0.6567164179104479, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3470, + "time": 0.6567164179104479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3482, + "time": 0.659012629161883, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3482, + "time": 0.659012629161883, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3494, + "time": 0.661308840413318, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3494, + "time": 0.661308840413318, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3494, + "time": 0.661308840413318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3518, + "time": 0.6659012629161883, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3591, + "time": 0.6796785304247991, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3591, + "time": 0.6796785304247991, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3603, + "time": 0.6819747416762342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3603, + "time": 0.6819747416762342, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3616, + "time": 0.6842709529276694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3616, + "time": 0.6842709529276694, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3616, + "time": 0.6842709529276694, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3628, + "time": 0.6865671641791046, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3628, + "time": 0.6865671641791046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6888633754305397, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6888633754305397, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6888633754305397, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3652, + "time": 0.6911595866819749, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3652, + "time": 0.6911595866819749, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3664, + "time": 0.69345579793341, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3664, + "time": 0.69345579793341, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3664, + "time": 0.69345579793341, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.695752009184845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3676, + "time": 0.695752009184845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3688, + "time": 0.6980482204362802, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3688, + "time": 0.6980482204362802, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3688, + "time": 0.6980482204362802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3713, + "time": 0.7026406429391504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3785, + "time": 0.7164179104477612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3882, + "time": 0.7347876004592423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3895, + "time": 0.7370838117106775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3895, + "time": 0.7370838117106775, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3907, + "time": 0.7393800229621126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3907, + "time": 0.7393800229621126, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3907, + "time": 0.7393800229621126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.7416762342135477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3919, + "time": 0.7416762342135477, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3931, + "time": 0.7439724454649829, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3931, + "time": 0.7439724454649829, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3931, + "time": 0.7439724454649829, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3943, + "time": 0.746268656716418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3943, + "time": 0.746268656716418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3955, + "time": 0.748564867967853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3955, + "time": 0.748564867967853, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3955, + "time": 0.748564867967853, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3865,13 +7430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2741, - "time": 0.5189437428243399, + "noteOrder": 3967, + "time": 0.7508610792192882, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3888,11 +7453,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 2, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2814, - "time": 0.5327210103329506, + "noteOrder": 3967, + "time": 0.7508610792192882, "position": { "x": 4, "y": 0 @@ -3911,13 +7476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2814, - "time": 0.5327210103329506, + "noteOrder": 3979, + "time": 0.7531572904707233, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3929,18 +7494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2838, - "time": 0.5373134328358209, + "noteOrder": 3979, + "time": 0.7531572904707233, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3957,11 +7522,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2862, - "time": 0.5419058553386912, + "noteOrder": 3979, + "time": 0.7531572904707233, "position": { "x": 3, "y": 0 @@ -3980,13 +7545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2886, - "time": 0.5464982778415615, + "noteOrder": 4004, + "time": 0.7577497129735936, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3998,18 +7563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2911, - "time": 0.5510907003444317, + "noteOrder": 4077, + "time": 0.7715269804822045, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4026,13 +7591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 2935, - "time": 0.5556831228473019, + "noteOrder": 4077, + "time": 0.7715269804822045, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4044,16 +7609,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 3008, - "time": 0.5694603903559128, + "noteOrder": 4089, + "time": 0.7738231917336396, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4089, + "time": 0.7738231917336396, "position": { "x": 6, "y": 0 @@ -4067,18 +7655,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3008, - "time": 0.5694603903559128, + "noteOrder": 4101, + "time": 0.7761194029850746, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4095,13 +7683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3032, - "time": 0.5740528128587831, + "noteOrder": 4101, + "time": 0.7761194029850746, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4118,13 +7706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3056, - "time": 0.5786452353616534, + "noteOrder": 4101, + "time": 0.7761194029850746, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4141,13 +7729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3080, - "time": 0.5832376578645235, + "noteOrder": 4113, + "time": 0.7784156142365098, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4164,11 +7752,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3105, - "time": 0.5878300803673938, + "noteOrder": 4113, + "time": 0.7784156142365098, "position": { "x": 6, "y": 0 @@ -4182,16 +7770,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3129, - "time": 0.5924225028702641, + "noteOrder": 4125, + "time": 0.7807118254879449, "position": { "x": 6, "y": 0 @@ -4205,18 +7793,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3153, - "time": 0.5970149253731344, + "noteOrder": 4125, + "time": 0.7807118254879449, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4233,13 +7821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, - "time": 0.6016073478760047, + "noteOrder": 4125, + "time": 0.7807118254879449, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4251,16 +7839,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3250, - "time": 0.6153846153846154, + "noteOrder": 4137, + "time": 0.78300803673938, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4137, + "time": 0.78300803673938, "position": { "x": 6, "y": 0 @@ -4279,11 +7890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3299, - "time": 0.624569460390356, + "noteOrder": 4149, + "time": 0.7853042479908152, "position": { "x": 6, "y": 0 @@ -4302,11 +7913,34 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3275, - "time": 0.6199770378874857, + "noteOrder": 4149, + "time": 0.7853042479908152, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4174, + "time": 0.7898966704936855, "position": { "x": 4, "y": 0 @@ -4325,11 +7959,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3299, - "time": 0.624569460390356, + "noteOrder": 4198, + "time": 0.7944890929965557, "position": { "x": 4, "y": 0 @@ -4348,11 +7982,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3347, - "time": 0.6337543053960965, + "noteOrder": 4271, + "time": 0.8082663605051665, "position": { "x": 6, "y": 0 @@ -4366,16 +8000,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3372, - "time": 0.6383467278989667, + "noteOrder": 4271, + "time": 0.8082663605051665, "position": { "x": 6, "y": 0 @@ -4394,13 +8028,59 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4295, + "time": 0.8128587830080368, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4368, + "time": 0.8266360505166476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3347, - "time": 0.6337543053960965, + "noteOrder": 4465, + "time": 0.8450057405281287, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4412,18 +8092,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3372, - "time": 0.6383467278989667, + "noteOrder": 4477, + "time": 0.8473019517795638, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4435,18 +8115,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3396, - "time": 0.6429391504018369, + "noteOrder": 4477, + "time": 0.8473019517795638, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4463,13 +8143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3420, - "time": 0.6475315729047072, + "noteOrder": 4489, + "time": 0.8495981630309989, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4486,13 +8166,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3444, - "time": 0.6521239954075775, + "noteOrder": 4501, + "time": 0.8518943742824341, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4504,18 +8184,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3469, - "time": 0.6567164179104478, + "noteOrder": 4501, + "time": 0.8518943742824341, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4532,11 +8212,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3493, - "time": 0.6613088404133179, + "noteOrder": 4513, + "time": 0.8541905855338692, "position": { "x": 7, "y": 0 @@ -4555,11 +8235,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3517, - "time": 0.6659012629161882, + "noteOrder": 4525, + "time": 0.8564867967853044, "position": { "x": 7, "y": 0 @@ -4578,13 +8258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 2, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3590, - "time": 0.6796785304247991, + "noteOrder": 4525, + "time": 0.8564867967853044, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4601,11 +8281,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3590, - "time": 0.6796785304247991, + "noteOrder": 4538, + "time": 0.8587830080367395, "position": { "x": 3, "y": 0 @@ -4624,11 +8304,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3614, - "time": 0.6842709529276693, + "noteOrder": 4550, + "time": 0.8610792192881745, "position": { "x": 3, "y": 0 @@ -4642,18 +8322,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3638, - "time": 0.6888633754305395, + "noteOrder": 4550, + "time": 0.8610792192881745, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4670,11 +8350,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3663, - "time": 0.6934557979334098, + "noteOrder": 4610, + "time": 0.8725602755453502, "position": { "x": 3, "y": 0 @@ -4693,11 +8373,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3687, - "time": 0.6980482204362801, + "noteOrder": 4623, + "time": 0.8748564867967853, "position": { "x": 3, "y": 0 @@ -4711,18 +8391,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3711, - "time": 0.7026406429391504, + "noteOrder": 4623, + "time": 0.8748564867967853, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4734,18 +8414,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3784, - "time": 0.7164179104477612, + "noteOrder": 4635, + "time": 0.8771526980482205, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4757,16 +8437,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3881, - "time": 0.7347876004592423, + "noteOrder": 4635, + "time": 0.8771526980482205, "position": { "x": 3, "y": 0 @@ -4780,16 +8460,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3905, - "time": 0.7393800229621125, + "noteOrder": 4659, + "time": 0.8817451205510907, "position": { "x": 3, "y": 0 @@ -4803,16 +8483,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3929, - "time": 0.7439724454649828, + "noteOrder": 4671, + "time": 0.884041331802526, "position": { "x": 3, "y": 0 @@ -4831,13 +8511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3954, - "time": 0.748564867967853, + "noteOrder": 4671, + "time": 0.884041331802526, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4849,18 +8529,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3978, - "time": 0.7531572904707233, + "noteOrder": 4683, + "time": 0.8863375430539611, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4877,13 +8557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4002, - "time": 0.7577497129735936, + "noteOrder": 4683, + "time": 0.8863375430539611, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4900,13 +8580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4075, - "time": 0.7715269804822044, + "noteOrder": 4683, + "time": 0.8863375430539611, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4918,18 +8598,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4075, - "time": 0.7715269804822044, + "noteOrder": 4695, + "time": 0.8886337543053962, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4946,13 +8626,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4099, - "time": 0.7761194029850746, + "noteOrder": 4695, + "time": 0.8886337543053962, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4964,18 +8644,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4123, - "time": 0.7807118254879449, + "noteOrder": 4707, + "time": 0.8909299655568313, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4992,13 +8672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4172, - "time": 0.7898966704936854, + "noteOrder": 4707, + "time": 0.8909299655568313, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5010,18 +8690,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 4196, - "time": 0.7944890929965557, + "noteOrder": 4707, + "time": 0.8909299655568313, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5038,13 +8718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 199, "indexInLine": 2, "isSliding": false, - "noteOrder": 4269, - "time": 0.8082663605051665, + "noteOrder": 4720, + "time": 0.8932261768082664, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5061,13 +8741,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4269, - "time": 0.8082663605051665, + "noteOrder": 4720, + "time": 0.8932261768082664, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5079,18 +8759,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 4293, - "time": 0.8128587830080368, + "noteOrder": 4756, + "time": 0.9001148105625718, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5107,13 +8787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, + "lineGroupId": 202, "indexInLine": 2, "isSliding": false, - "noteOrder": 4366, - "time": 0.8266360505166476, + "noteOrder": 4768, + "time": 0.9024110218140069, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5130,13 +8810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4463, - "time": 0.8450057405281286, + "noteOrder": 4768, + "time": 0.9024110218140069, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5153,13 +8833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4487, - "time": 0.8495981630309989, + "noteOrder": 4780, + "time": 0.9047072330654421, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5171,18 +8851,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4512, - "time": 0.8541905855338692, + "noteOrder": 4780, + "time": 0.9047072330654421, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5199,13 +8879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4536, - "time": 0.8587830080367395, + "noteOrder": 4780, + "time": 0.9047072330654421, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5222,13 +8902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4609, - "time": 0.8725602755453502, + "noteOrder": 4792, + "time": 0.9070034443168772, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5240,18 +8920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4657, - "time": 0.8817451205510908, + "noteOrder": 4792, + "time": 0.9070034443168772, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5268,13 +8948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4681, - "time": 0.8863375430539611, + "noteOrder": 4804, + "time": 0.9092996555683123, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5286,18 +8966,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4706, - "time": 0.8909299655568313, + "noteOrder": 4804, + "time": 0.9092996555683123, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5314,11 +8994,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4754, - "time": 0.9001148105625717, + "noteOrder": 4804, + "time": 0.9092996555683123, "position": { "x": 7, "y": 0 @@ -5337,11 +9017,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4778, - "time": 0.904707233065442, + "noteOrder": 4817, + "time": 0.9115958668197475, "position": { "x": 7, "y": 0 @@ -5355,18 +9035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4803, - "time": 0.9092996555683123, + "noteOrder": 4817, + "time": 0.9115958668197475, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5384,10 +9064,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4851, - "time": 0.9184845005740527, + "noteOrder": 4853, + "time": 0.9184845005740528, "position": { "x": 3, "y": 0 @@ -5407,10 +9087,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.923076923076923, + "noteOrder": 4877, + "time": 0.9230769230769231, "position": { "x": 3, "y": 0 @@ -5430,10 +9110,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5021, - "time": 0.9506314580941446, + "noteOrder": 5023, + "time": 0.9506314580941447, "position": { "x": 7, "y": 0 @@ -5453,10 +9133,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.9644087256027555, + "noteOrder": 5096, + "time": 0.9644087256027556, "position": { "x": 7, "y": 0 @@ -5476,9 +9156,9 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.9552238805970149, "position": { "x": 3, @@ -5499,10 +9179,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.9644087256027555, + "noteOrder": 5096, + "time": 0.9644087256027556, "position": { "x": 3, "y": 0 diff --git a/tracks/FUTURE is Dead/295_difficulty_1b.json b/tracks/FUTURE is Dead/295_difficulty_1b.json index 11f04890..dfb0b400 100644 --- a/tracks/FUTURE is Dead/295_difficulty_1b.json +++ b/tracks/FUTURE is Dead/295_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 146, - "time": 0.027554535017221587, + "time": 0.027554535017221583, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 437, - "time": 0.08266360505166474, + "time": 0.08266360505166476, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 582, - "time": 0.11021814006888635, + "time": 0.11021814006888633, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 922, - "time": 0.17451205510907003, + "time": 0.17451205510907006, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1019, - "time": 0.1928817451205511, + "time": 0.19288174512055112, "position": { "x": 5, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.20206659012629163, "position": { "x": 7, @@ -374,7 +374,7 @@ }, { "noteOrder": 1116, - "time": 0.21125143513203215, + "time": 0.21125143513203218, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1164, - "time": 0.2204362801377727, + "noteOrder": 1165, + "time": 0.22043628013777267, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1189, - "time": 0.22502870264064292, + "time": 0.22502870264064295, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1213, - "time": 0.22962112514351318, + "time": 0.2296211251435132, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1213, - "time": 0.22962112514351318, + "time": 0.2296211251435132, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1237, - "time": 0.23421354764638347, + "noteOrder": 1238, + "time": 0.2342135476463835, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1237, - "time": 0.23421354764638347, + "noteOrder": 1238, + "time": 0.2342135476463835, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1407, - "time": 0.2663605051664753, + "time": 0.26636050516647536, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1529, "time": 0.2893226176808267, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 1601, - "time": 0.3030998851894375, + "time": 0.3030998851894374, "position": { "x": 7, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1625, + "noteOrder": 1626, "time": 0.3076923076923077, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1649, + "noteOrder": 1650, "time": 0.312284730195178, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1698, + "noteOrder": 1699, "time": 0.32146957520091846, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1722, - "time": 0.32606199770378874, + "noteOrder": 1723, + "time": 0.3260619977037888, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1746, - "time": 0.33065442020665897, + "noteOrder": 1747, + "time": 0.330654420206659, "position": { "x": 3, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1771, - "time": 0.33524684270952926, + "time": 0.3352468427095293, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1795, + "noteOrder": 1796, "time": 0.33983926521239954, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1819, - "time": 0.3444316877152698, + "noteOrder": 1820, + "time": 0.34443168771526983, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1893, "time": 0.3582089552238806, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1916, - "time": 0.36280137772675086, + "noteOrder": 1917, + "time": 0.3628013777267509, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1989, + "noteOrder": 1990, "time": 0.37657864523536166, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2013, + "noteOrder": 2014, "time": 0.3811710677382319, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2281, "time": 0.4316877152698049, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2305, "time": 0.4362801377726751, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.45005740528128585, + "noteOrder": 2378, + "time": 0.4500574052812859, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.45464982778415614, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2426, - "time": 0.45924225028702637, + "noteOrder": 2427, + "time": 0.4592422502870264, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.46383467278989665, + "noteOrder": 2451, + "time": 0.4638346727898967, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.46842709529276694, + "noteOrder": 2475, + "time": 0.468427095292767, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.47301951779563717, + "noteOrder": 2499, + "time": 0.4730195177956372, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.47761194029850745, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.48220436280137774, + "noteOrder": 2548, + "time": 0.4822043628013778, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.48679678530424797, + "noteOrder": 2572, + "time": 0.486796785304248, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.48679678530424797, + "noteOrder": 2572, + "time": 0.486796785304248, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.49138920780711826, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.49138920780711826, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.49598163030998854, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.5005740528128588, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.505166475315729, + "noteOrder": 2669, + "time": 0.5051664753157291, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.5097588978185993, + "noteOrder": 2693, + "time": 0.5097588978185994, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2717, + "noteOrder": 2718, "time": 0.5143513203214696, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2741, + "noteOrder": 2742, "time": 0.5189437428243399, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5235361653272101, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2789, - "time": 0.5281285878300804, + "noteOrder": 2790, + "time": 0.5281285878300803, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2814, - "time": 0.5327210103329506, + "noteOrder": 2815, + "time": 0.5327210103329507, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2838, - "time": 0.5373134328358209, + "noteOrder": 2839, + "time": 0.537313432835821, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.5419058553386912, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.5419058553386912, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2886, + "noteOrder": 2888, "time": 0.5464982778415615, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2886, + "noteOrder": 2888, "time": 0.5464982778415615, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3008, + "noteOrder": 3009, "time": 0.5694603903559128, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3056, + "noteOrder": 3057, "time": 0.5786452353616534, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3106, "time": 0.5878300803673938, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3153, + "noteOrder": 3154, "time": 0.5970149253731344, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3420, - "time": 0.6475315729047072, + "noteOrder": 3421, + "time": 0.6475315729047073, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.6521239954075775, + "noteOrder": 3446, + "time": 0.6521239954075776, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3469, - "time": 0.6567164179104478, + "noteOrder": 3470, + "time": 0.6567164179104479, "position": { "x": 5, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3517, - "time": 0.6659012629161882, + "noteOrder": 3518, + "time": 0.6659012629161883, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3541, - "time": 0.6704936854190585, + "noteOrder": 3543, + "time": 0.6704936854190586, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.6750861079219288, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3614, - "time": 0.6842709529276693, + "noteOrder": 3616, + "time": 0.6842709529276694, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3663, - "time": 0.6934557979334098, + "noteOrder": 3664, + "time": 0.69345579793341, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3711, + "noteOrder": 3713, "time": 0.7026406429391504, "position": { "x": 8, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3760, - "time": 0.7118254879448909, + "noteOrder": 3761, + "time": 0.711825487944891, "position": { "x": 2, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3784, + "noteOrder": 3785, "time": 0.7164179104477612, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3784, + "noteOrder": 3785, "time": 0.7164179104477612, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3810, "time": 0.7210103329506314, "position": { "x": 6, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3810, "time": 0.7210103329506314, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.7256027554535017, + "noteOrder": 3834, + "time": 0.7256027554535018, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.7256027554535017, + "noteOrder": 3834, + "time": 0.7256027554535018, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3857, - "time": 0.730195177956372, + "noteOrder": 3858, + "time": 0.7301951779563721, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3857, - "time": 0.730195177956372, + "noteOrder": 3858, + "time": 0.7301951779563721, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3905, - "time": 0.7393800229621125, + "noteOrder": 3907, + "time": 0.7393800229621126, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3929, - "time": 0.7439724454649828, + "noteOrder": 3931, + "time": 0.7439724454649829, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3954, + "noteOrder": 3955, "time": 0.748564867967853, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4004, "time": 0.7577497129735936, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4028, "time": 0.7623421354764638, "position": { "x": 4, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4051, - "time": 0.7669345579793341, + "noteOrder": 4052, + "time": 0.7669345579793342, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4099, + "noteOrder": 4101, "time": 0.7761194029850746, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4148, + "noteOrder": 4149, "time": 0.7853042479908152, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4172, - "time": 0.7898966704936854, + "noteOrder": 4174, + "time": 0.7898966704936855, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4196, + "noteOrder": 4198, "time": 0.7944890929965557, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4220, + "noteOrder": 4222, "time": 0.799081515499426, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4245, - "time": 0.8036739380022963, + "noteOrder": 4246, + "time": 0.8036739380022964, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4269, + "noteOrder": 4271, "time": 0.8082663605051665, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4293, + "noteOrder": 4295, "time": 0.8128587830080368, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4317, - "time": 0.817451205510907, + "noteOrder": 4319, + "time": 0.8174512055109071, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4343, "time": 0.8220436280137773, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.8266360505166476, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8312284730195179, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8358208955223881, + "noteOrder": 4416, + "time": 0.835820895522388, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4439, + "noteOrder": 4441, "time": 0.8404133180252583, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4463, - "time": 0.8450057405281286, + "noteOrder": 4465, + "time": 0.8450057405281287, "position": { "x": 3, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4487, + "noteOrder": 4489, "time": 0.8495981630309989, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4513, "time": 0.8541905855338692, "position": { "x": 4, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4513, "time": 0.8541905855338692, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.8587830080367395, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.8587830080367395, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4562, "time": 0.8633754305396097, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.8679678530424799, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4609, + "noteOrder": 4610, "time": 0.8725602755453502, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4635, "time": 0.8771526980482205, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4754, - "time": 0.9001148105625717, + "noteOrder": 4756, + "time": 0.9001148105625718, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4778, - "time": 0.904707233065442, + "noteOrder": 4780, + "time": 0.9047072330654421, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4804, "time": 0.9092996555683123, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4827, + "noteOrder": 4829, "time": 0.9138920780711826, "position": { "x": 3, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4900, - "time": 0.9276693455797933, + "noteOrder": 4902, + "time": 0.9276693455797934, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.9322617680826636, + "noteOrder": 4926, + "time": 0.9322617680826637, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5118, - "time": 0.9690011481056257, + "noteOrder": 5120, + "time": 0.9690011481056258, "position": { "x": 3, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5118, - "time": 0.9690011481056257, + "noteOrder": 5120, + "time": 0.9690011481056258, "position": { "x": 7, "y": 0 @@ -2656,7 +2656,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.018369690011481057, @@ -2679,7 +2679,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, "time": 0.03214695752009185, @@ -2702,7 +2702,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03673938002296211, @@ -2725,7 +2725,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, "time": 0.05051664753157291, @@ -2748,10 +2748,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.055109070034443174, + "time": 0.05510907003444317, "position": { "x": 7, "y": 0 @@ -2771,7 +2771,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 315, "time": 0.05970149253731343, @@ -2794,7 +2794,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 340, "time": 0.0642939150401837, @@ -2817,7 +2817,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 364, "time": 0.06888633754305397, @@ -2840,10 +2840,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 873, - "time": 0.16532721010332949, + "noteOrder": 874, + "time": 0.1653272101033295, "position": { "x": 7, "y": 0 @@ -2863,10 +2863,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 922, - "time": 0.17451205510907003, + "time": 0.17451205510907006, "position": { "x": 7, "y": 0 @@ -2886,9 +2886,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 970, + "noteOrder": 971, "time": 0.18369690011481057, "position": { "x": 3, @@ -2909,10 +2909,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1019, - "time": 0.1928817451205511, + "time": 0.19288174512055112, "position": { "x": 3, "y": 0 @@ -2932,9 +2932,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1261, + "noteOrder": 1262, "time": 0.23880597014925373, "position": { "x": 7, @@ -2953,11 +2953,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1286, + "time": 0.243398392652124, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1286, + "time": 0.243398392652124, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1358, + "noteOrder": 1359, "time": 0.2571756601607348, "position": { "x": 7, @@ -2976,11 +3022,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1383, + "time": 0.2617680826636051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1383, + "time": 0.2617680826636051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1455, + "noteOrder": 1456, "time": 0.2755453501722159, "position": { "x": 7, @@ -2999,11 +3091,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2801377726750861, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2801377726750861, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1552, + "noteOrder": 1553, "time": 0.2939150401836969, "position": { "x": 3, @@ -3022,12 +3160,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1577, + "time": 0.2985074626865672, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1577, + "time": 0.2985074626865672, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1844, + "time": 0.3490241102181401, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1843, - "time": 0.34902411021814006, + "noteOrder": 1868, + "time": 0.35361653272101035, "position": { "x": 7, "y": 0 @@ -3045,11 +3252,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1868, + "time": 0.35361653272101035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1940, + "noteOrder": 1941, "time": 0.36739380022962115, "position": { "x": 3, @@ -3069,11 +3299,34 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2037, - "time": 0.3857634902411022, + "noteOrder": 1965, + "time": 0.37198622273249143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1965, + "time": 0.37198622273249143, "position": { "x": 4, "y": 0 @@ -3095,8 +3348,31 @@ "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 2207, - "time": 0.41791044776119407, + "noteOrder": 2038, + "time": 0.38576349024110224, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2208, + "time": 0.417910447761194, "position": { "x": 4, "y": 0 @@ -3116,10 +3392,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2037, - "time": 0.3857634902411022, + "noteOrder": 2038, + "time": 0.38576349024110224, "position": { "x": 6, "y": 0 @@ -3139,10 +3415,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2207, - "time": 0.41791044776119407, + "noteOrder": 2208, + "time": 0.417910447761194, "position": { "x": 6, "y": 0 @@ -3162,10 +3438,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2232, - "time": 0.4225028702640643, + "time": 0.42250287026406436, "position": { "x": 7, "y": 0 @@ -3185,9 +3461,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2304, + "noteOrder": 2305, "time": 0.4362801377726751, "position": { "x": 7, @@ -3208,10 +3484,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2329, - "time": 0.4408725602755454, + "time": 0.44087256027554533, "position": { "x": 3, "y": 0 @@ -3231,9 +3507,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.45464982778415614, "position": { "x": 3, @@ -3254,9 +3530,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2911, + "noteOrder": 2912, "time": 0.5510907003444317, "position": { "x": 4, @@ -3277,9 +3553,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2983, + "noteOrder": 2985, "time": 0.5648679678530425, "position": { "x": 4, @@ -3300,9 +3576,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2911, + "noteOrder": 2912, "time": 0.5510907003444317, "position": { "x": 6, @@ -3323,9 +3599,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2983, + "noteOrder": 2985, "time": 0.5648679678530425, "position": { "x": 6, @@ -3346,10 +3622,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3202, - "time": 0.606199770378875, + "noteOrder": 3203, + "time": 0.6061997703788748, "position": { "x": 7, "y": 0 @@ -3369,10 +3645,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3226, - "time": 0.6107921928817451, + "noteOrder": 3227, + "time": 0.6107921928817452, "position": { "x": 7, "y": 0 @@ -3392,9 +3668,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3250, + "noteOrder": 3252, "time": 0.6153846153846154, "position": { "x": 3, @@ -3415,9 +3691,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3275, + "noteOrder": 3276, "time": 0.6199770378874857, "position": { "x": 3, @@ -3438,9 +3714,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3396, + "noteOrder": 3397, "time": 0.6429391504018369, "position": { "x": 7, @@ -3461,10 +3737,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3493, - "time": 0.6613088404133179, + "noteOrder": 3494, + "time": 0.661308840413318, "position": { "x": 7, "y": 0 @@ -3484,10 +3760,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3493, - "time": 0.6613088404133179, + "noteOrder": 3494, + "time": 0.661308840413318, "position": { "x": 3, "y": 0 @@ -3507,9 +3783,9 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.6796785304247991, "position": { "x": 3, @@ -3530,9 +3806,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.6796785304247991, "position": { "x": 7, @@ -3553,10 +3829,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3614, - "time": 0.6842709529276693, + "noteOrder": 3616, + "time": 0.6842709529276694, "position": { "x": 7, "y": 0 @@ -3576,10 +3852,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3638, - "time": 0.6888633754305395, + "noteOrder": 3640, + "time": 0.6888633754305397, "position": { "x": 3, "y": 0 @@ -3599,10 +3875,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3663, - "time": 0.6934557979334098, + "noteOrder": 3664, + "time": 0.69345579793341, "position": { "x": 3, "y": 0 @@ -3622,10 +3898,10 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3687, - "time": 0.6980482204362801, + "noteOrder": 3688, + "time": 0.6980482204362802, "position": { "x": 6, "y": 0 @@ -3645,9 +3921,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3711, + "noteOrder": 3713, "time": 0.7026406429391504, "position": { "x": 6, @@ -3668,9 +3944,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3735, + "noteOrder": 3737, "time": 0.7072330654420207, "position": { "x": 4, @@ -3691,10 +3967,10 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3760, - "time": 0.7118254879448909, + "noteOrder": 3761, + "time": 0.711825487944891, "position": { "x": 4, "y": 0 @@ -3714,9 +3990,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3881, + "noteOrder": 3882, "time": 0.7347876004592423, "position": { "x": 3, @@ -3737,9 +4013,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3978, + "noteOrder": 3979, "time": 0.7531572904707233, "position": { "x": 3, @@ -3760,9 +4036,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3978, + "noteOrder": 3979, "time": 0.7531572904707233, "position": { "x": 7, @@ -3783,10 +4059,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4075, - "time": 0.7715269804822044, + "noteOrder": 4077, + "time": 0.7715269804822045, "position": { "x": 7, "y": 0 @@ -3806,10 +4082,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4075, - "time": 0.7715269804822044, + "noteOrder": 4077, + "time": 0.7715269804822045, "position": { "x": 3, "y": 0 @@ -3829,9 +4105,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4099, + "noteOrder": 4101, "time": 0.7761194029850746, "position": { "x": 3, @@ -3852,9 +4128,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4123, + "noteOrder": 4125, "time": 0.7807118254879449, "position": { "x": 7, @@ -3875,9 +4151,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4148, + "noteOrder": 4149, "time": 0.7853042479908152, "position": { "x": 7, @@ -3898,10 +4174,33 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4659, + "time": 0.8817451205510907, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4657, - "time": 0.8817451205510908, + "noteOrder": 4683, + "time": 0.8863375430539611, "position": { "x": 7, "y": 0 @@ -3919,11 +4218,80 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4683, + "time": 0.8863375430539611, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4707, + "time": 0.8909299655568313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4707, + "time": 0.8909299655568313, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, + "noteOrder": 4707, "time": 0.8909299655568313, "position": { "x": 7, @@ -3942,12 +4310,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4732, + "time": 0.8955223880597015, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4732, + "time": 0.8955223880597015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4756, + "time": 0.9001148105625718, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4756, + "time": 0.9001148105625718, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4853, + "time": 0.9184845005740528, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4851, - "time": 0.9184845005740527, + "noteOrder": 4877, + "time": 0.9230769230769231, "position": { "x": 3, "y": 0 @@ -3965,12 +4448,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4877, + "time": 0.9230769230769231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4948, - "time": 0.9368541905855339, + "noteOrder": 4950, + "time": 0.936854190585534, "position": { "x": 6, "y": 0 @@ -3990,10 +4496,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.9644087256027555, + "noteOrder": 5096, + "time": 0.9644087256027556, "position": { "x": 6, "y": 0 @@ -4013,10 +4519,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4948, - "time": 0.9368541905855339, + "noteOrder": 4950, + "time": 0.936854190585534, "position": { "x": 4, "y": 0 @@ -4036,10 +4542,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.9644087256027555, + "noteOrder": 5096, + "time": 0.9644087256027556, "position": { "x": 4, "y": 0 diff --git a/tracks/FUTURE is Dead/info.json b/tracks/FUTURE is Dead/info.json index d2ac9964..6aa3efbf 100644 --- a/tracks/FUTURE is Dead/info.json +++ b/tracks/FUTURE is Dead/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "FUTURE is Dead", - "SongLength": "130.037551", + "SongLength": "120.084898", "SongAuthorName": "C-Show", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Feelin' Good/268_difficulty_1a.json b/tracks/Feelin' Good/268_difficulty_1a.json index dd72bc89..2069cb86 100644 --- a/tracks/Feelin' Good/268_difficulty_1a.json +++ b/tracks/Feelin' Good/268_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.021119324181626185, + "time": 0.021119324181626188, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.025343189017951427, + "time": 0.025343189017951424, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 168, - "time": 0.029567053854276663, + "time": 0.02956705385427666, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 216, - "time": 0.038014783526927144, + "time": 0.03801478352692713, "position": { "x": 5, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 240, - "time": 0.04223864836325237, + "time": 0.042238648363252376, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.046462513199577615, "position": { "x": 5, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 288, - "time": 0.050686378035902854, + "noteOrder": 289, + "time": 0.05068637803590285, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.05491024287222809, + "noteOrder": 313, + "time": 0.054910242872228086, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 337, - "time": 0.059134107708553325, + "time": 0.05913410770855332, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 433, - "time": 0.07602956705385429, + "time": 0.07602956705385426, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 457, - "time": 0.0802534318901795, + "time": 0.08025343189017951, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 505, - "time": 0.08870116156282999, + "time": 0.08870116156282998, "position": { "x": 8, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 553, - "time": 0.09714889123548047, + "time": 0.09714889123548046, "position": { "x": 2, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 601, - "time": 0.10559662090813095, + "time": 0.10559662090813092, "position": { "x": 8, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 961, - "time": 0.16895459345300948, + "noteOrder": 962, + "time": 0.1689545934530095, "position": { "x": 2, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1010, - "time": 0.17740232312565998, + "time": 0.17740232312565996, "position": { "x": 2, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1034, - "time": 0.1816261879619852, + "time": 0.18162618796198518, "position": { "x": 2, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1106, - "time": 0.19429778247096094, + "time": 0.1942977824709609, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1154, - "time": 0.20274551214361142, + "time": 0.2027455121436114, "position": { "x": 8, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1178, - "time": 0.20696937697993664, + "time": 0.20696937697993661, "position": { "x": 8, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1202, - "time": 0.2111932418162619, + "time": 0.21119324181626184, "position": { "x": 8, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.22386483632523757, "position": { "x": 8, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.23231256599788805, "position": { "x": 8, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.24076029567053853, + "noteOrder": 1371, + "time": 0.2407602956705385, "position": { "x": 8, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.249208025343189, "position": { "x": 8, @@ -774,7 +774,7 @@ }, { "noteOrder": 1755, - "time": 0.30834213305174235, + "time": 0.3083421330517423, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3125659978880676, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.3167898627243928, + "noteOrder": 1804, + "time": 0.31678986272439275, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1851, - "time": 0.32523759239704325, + "noteOrder": 1852, + "time": 0.3252375923970433, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3294614572333685, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.33368532206969376, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.33790918690601895, + "noteOrder": 1924, + "time": 0.337909186906019, "position": { "x": 8, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1947, + "noteOrder": 1948, "time": 0.3421330517423442, "position": { "x": 5, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.34635691657866946, "position": { "x": 8, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.35480464625131997, + "noteOrder": 2020, + "time": 0.3548046462513199, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.3717001055966209, "position": { "x": 8, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.3759239704329461, "position": { "x": 8, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3801478352692714, "position": { "x": 8, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.3843717001055966, "position": { "x": 8, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.3928194297782471, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.39704329461457233, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.4012671594508976, + "noteOrder": 2285, + "time": 0.4012671594508975, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.40971488912354803, "position": { "x": 5, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4139387539598733, + "noteOrder": 2357, + "time": 0.41393875395987323, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2428, - "time": 0.42661034846884904, + "noteOrder": 2429, + "time": 0.42661034846884893, "position": { "x": 5, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.43083421330517424, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.4350580781414995, + "noteOrder": 2477, + "time": 0.43505807814149944, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.4435058078141499, + "noteOrder": 2525, + "time": 0.44350580781414994, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.44772967265047514, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.4519535374868004, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.46040126715945084, "position": { "x": 8, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.46884899683210135, "position": { "x": 8, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.4772967265047518, "position": { "x": 8, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4857444561774023, + "noteOrder": 2765, + "time": 0.48574445617740225, "position": { "x": 8, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5406546990496304, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5406546990496304, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5448785638859557, + "noteOrder": 3102, + "time": 0.5448785638859556, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5448785638859557, + "noteOrder": 3102, + "time": 0.5448785638859556, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5491024287222809, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5491024287222809, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3173, - "time": 0.5575501583949314, + "noteOrder": 3174, + "time": 0.5575501583949313, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3270, "time": 0.5744456177402323, "position": { "x": 2, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5786694825765575, "position": { "x": 2, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3319, "time": 0.5828933474128828, "position": { "x": 2, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3343, "time": 0.587117212249208, "position": { "x": 2, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.6082365364308343, + "noteOrder": 3463, + "time": 0.6082365364308341, "position": { "x": 2, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3487, "time": 0.6124604012671594, "position": { "x": 2, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.6166842661034847, + "noteOrder": 3511, + "time": 0.6166842661034846, "position": { "x": 2, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.6209081309398099, "position": { "x": 2, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3583, "time": 0.6293558606124604, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.6335797254487856, + "noteOrder": 3607, + "time": 0.6335797254487855, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3630, - "time": 0.6378035902851109, + "noteOrder": 3631, + "time": 0.6378035902851108, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3679, "time": 0.6462513199577613, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3702, - "time": 0.6504751847940865, + "noteOrder": 3703, + "time": 0.6504751847940866, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3726, - "time": 0.6546990496304118, + "noteOrder": 3727, + "time": 0.6546990496304117, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4038, - "time": 0.7096092925026399, + "noteOrder": 4040, + "time": 0.7096092925026398, "position": { "x": 8, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.7138331573389652, + "noteOrder": 4064, + "time": 0.7138331573389651, "position": { "x": 8, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4088, "time": 0.7180570221752903, "position": { "x": 8, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7222808870116156, "position": { "x": 8, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.7434002111932418, "position": { "x": 8, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.7476240760295672, + "noteOrder": 4256, + "time": 0.747624076029567, "position": { "x": 8, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4280, "time": 0.7518479408658922, "position": { "x": 8, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.7560718057022175, + "noteOrder": 4304, + "time": 0.7560718057022174, "position": { "x": 8, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.7645195353748679, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4377, "time": 0.7687434002111933, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7729672650475184, + "noteOrder": 4401, + "time": 0.7729672650475183, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7814149947201688, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.7856388595564942, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4497, "time": 0.7898627243928193, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.8321013727560718, "position": { "x": 8, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.8405491024287223, "position": { "x": 8, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.8489968321013728, + "noteOrder": 4834, + "time": 0.8489968321013727, "position": { "x": 8, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4882, "time": 0.8574445617740232, "position": { "x": 8, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4928, + "noteOrder": 4930, "time": 0.8658922914466737, "position": { "x": 8, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.8743400211193242, + "noteOrder": 4978, + "time": 0.8743400211193241, "position": { "x": 8, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5024, - "time": 0.8827877507919747, + "noteOrder": 5026, + "time": 0.8827877507919746, "position": { "x": 8, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5072, - "time": 0.8912354804646251, + "noteOrder": 5074, + "time": 0.891235480464625, "position": { "x": 8, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.9461457233368532, + "noteOrder": 5387, + "time": 0.9461457233368531, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.9461457233368532, + "noteOrder": 5387, + "time": 0.9461457233368531, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9503695881731785, + "noteOrder": 5411, + "time": 0.9503695881731784, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9503695881731785, + "noteOrder": 5411, + "time": 0.9503695881731784, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5435, "time": 0.9545934530095036, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5435, "time": 0.9545934530095036, "position": { "x": 7, @@ -2336,10 +2336,10 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08447729672650474, + "time": 0.08447729672650475, "position": { "x": 6, "y": 0 @@ -2359,7 +2359,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.09292502639915523, @@ -2382,7 +2382,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.09292502639915523, @@ -2405,10 +2405,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.10137275607180571, + "time": 0.1013727560718057, "position": { "x": 4, "y": 0 @@ -2428,10 +2428,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10137275607180571, + "time": 0.1013727560718057, "position": { "x": 6, "y": 0 @@ -2451,10 +2451,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.10982048574445619, + "time": 0.10982048574445617, "position": { "x": 6, "y": 0 @@ -2474,10 +2474,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10982048574445619, + "time": 0.10982048574445617, "position": { "x": 4, "y": 0 @@ -2497,10 +2497,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, - "time": 0.11826821541710665, + "time": 0.11826821541710664, "position": { "x": 4, "y": 0 @@ -2520,10 +2520,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.11826821541710665, + "time": 0.11826821541710664, "position": { "x": 7, "y": 0 @@ -2543,7 +2543,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, "time": 0.12249208025343189, @@ -2566,7 +2566,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 721, "time": 0.12671594508975711, @@ -2589,7 +2589,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 745, "time": 0.13093980992608237, @@ -2612,9 +2612,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 769, + "noteOrder": 770, "time": 0.1351636747624076, "position": { "x": 8, @@ -2635,9 +2635,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.14361140443505807, "position": { "x": 4, @@ -2658,10 +2658,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.15205913410770858, + "noteOrder": 866, + "time": 0.15205913410770852, "position": { "x": 2, "y": 0 @@ -2680,11 +2680,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.1562829989440338, + "noteOrder": 878, + "time": 0.15417106652587115, "position": { "x": 2, "y": 0 @@ -2698,18 +2698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.160506863780359, + "noteOrder": 878, + "time": 0.15417106652587115, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2726,11 +2726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 937, - "time": 0.16473072861668425, + "noteOrder": 890, + "time": 0.1562829989440338, "position": { "x": 2, "y": 0 @@ -2749,11 +2749,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, - "time": 0.18585005279831046, + "noteOrder": 902, + "time": 0.15839493136219637, "position": { "x": 2, "y": 0 @@ -2767,18 +2767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1154, - "time": 0.20274551214361142, + "noteOrder": 902, + "time": 0.15839493136219637, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2790,18 +2790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.21964097148891237, + "noteOrder": 914, + "time": 0.16050686378035903, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2813,18 +2813,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.22808870116156282, + "noteOrder": 926, + "time": 0.16261879619852165, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2841,13 +2841,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1346, - "time": 0.2365364308342133, + "noteOrder": 926, + "time": 0.16261879619852165, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2859,18 +2859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, - "time": 0.24498416050686378, + "noteOrder": 938, + "time": 0.16473072861668425, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2882,18 +2882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.25343189017951423, + "noteOrder": 950, + "time": 0.16684266103484688, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2910,13 +2910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1466, - "time": 0.2576557550158395, + "noteOrder": 950, + "time": 0.16684266103484688, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2933,13 +2933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, - "time": 0.2576557550158395, + "noteOrder": 1058, + "time": 0.18585005279831046, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2956,11 +2956,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.26187961985216474, + "noteOrder": 1154, + "time": 0.2027455121436114, "position": { "x": 6, "y": 0 @@ -2979,13 +2979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.26187961985216474, + "noteOrder": 1250, + "time": 0.21964097148891235, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3002,13 +3002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, - "time": 0.26610348468849, + "noteOrder": 1262, + "time": 0.22175290390707497, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3025,13 +3025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1514, - "time": 0.26610348468849, + "noteOrder": 1262, + "time": 0.22175290390707497, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3043,18 +3043,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, - "time": 0.2703273495248152, + "noteOrder": 1299, + "time": 0.22808870116156282, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3071,13 +3071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.28722280887011614, + "noteOrder": 1311, + "time": 0.23020063357972542, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3094,11 +3094,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1731, - "time": 0.30411826821541715, + "noteOrder": 1311, + "time": 0.23020063357972542, "position": { "x": 6, "y": 0 @@ -3117,11 +3117,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.30411826821541715, + "noteOrder": 1347, + "time": 0.23653643083421327, "position": { "x": 8, "y": 0 @@ -3140,13 +3140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1827, - "time": 0.321013727560718, + "noteOrder": 1359, + "time": 0.2386483632523759, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3163,13 +3163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.321013727560718, + "noteOrder": 1359, + "time": 0.2386483632523759, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3181,18 +3181,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, - "time": 0.33790918690601895, + "noteOrder": 1395, + "time": 0.24498416050686378, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3209,11 +3209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.35480464625131997, + "noteOrder": 1407, + "time": 0.24709609292502638, "position": { "x": 8, "y": 0 @@ -3227,18 +3227,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2043, - "time": 0.35902851108764516, + "noteOrder": 1407, + "time": 0.24709609292502638, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3255,11 +3255,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2067, - "time": 0.3632523759239704, + "noteOrder": 1443, + "time": 0.25343189017951423, "position": { "x": 8, "y": 0 @@ -3278,11 +3278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, - "time": 0.36747624076029567, + "noteOrder": 1467, + "time": 0.2576557550158395, "position": { "x": 8, "y": 0 @@ -3296,18 +3296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, - "time": 0.3885955649419219, + "noteOrder": 1467, + "time": 0.2576557550158395, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3319,18 +3319,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, - "time": 0.40549102428722283, + "noteOrder": 1491, + "time": 0.26187961985216474, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3342,18 +3342,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.40549102428722283, + "noteOrder": 1491, + "time": 0.26187961985216474, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3365,16 +3365,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2356, - "time": 0.4139387539598733, + "noteOrder": 1515, + "time": 0.26610348468848993, "position": { "x": 4, "y": 0 @@ -3388,18 +3388,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.4223864836325238, + "noteOrder": 1515, + "time": 0.26610348468848993, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3411,18 +3411,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.43928194297782475, + "noteOrder": 1539, + "time": 0.2703273495248152, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3434,16 +3434,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.43928194297782475, + "noteOrder": 1635, + "time": 0.28722280887011614, "position": { "x": 2, "y": 0 @@ -3462,11 +3462,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.45617740232312565, + "noteOrder": 1731, + "time": 0.30411826821541704, "position": { "x": 6, "y": 0 @@ -3485,11 +3485,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.45617740232312565, + "noteOrder": 1731, + "time": 0.30411826821541704, "position": { "x": 8, "y": 0 @@ -3508,13 +3508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2644, - "time": 0.4646251319957761, + "noteOrder": 1828, + "time": 0.32101372756071805, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3526,18 +3526,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.4730728616684266, + "noteOrder": 1828, + "time": 0.32101372756071805, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3549,18 +3549,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2740, - "time": 0.48152059134107705, + "noteOrder": 1924, + "time": 0.337909186906019, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3577,13 +3577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.48996832101372756, + "noteOrder": 2020, + "time": 0.3548046462513199, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3600,13 +3600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2812, - "time": 0.4941921858500528, + "noteOrder": 2032, + "time": 0.35691657866948256, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3623,13 +3623,1738 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.4941921858500528, + "noteOrder": 2032, + "time": 0.35691657866948256, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.35902851108764516, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.3611404435058078, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2056, + "time": 0.3611404435058078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.36325237592397036, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2080, + "time": 0.365364308342133, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2080, + "time": 0.365364308342133, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3674762407602956, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2104, + "time": 0.36958817317845827, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2104, + "time": 0.36958817317845827, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2212, + "time": 0.3885955649419218, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2309, + "time": 0.4054910242872228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2309, + "time": 0.4054910242872228, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2357, + "time": 0.41393875395987323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4223864836325237, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4392819429778247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4392819429778247, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2597, + "time": 0.45617740232312565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.45617740232312565, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2609, + "time": 0.4582893347412882, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.4582893347412882, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.4646251319957761, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2657, + "time": 0.46673706441393875, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2657, + "time": 0.46673706441393875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.47307286166842655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2705, + "time": 0.4751847940865892, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2705, + "time": 0.4751847940865892, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.481520591341077, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.48363252375923965, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.48363252375923965, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.48996832101372756, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2814, + "time": 0.49419218585005276, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2814, + "time": 0.49419218585005276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2838, + "time": 0.498416050686378, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.498416050686378, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5026399155227033, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5068637803590285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5110876451953537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5110876451953537, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2934, + "time": 0.515311510031679, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2934, + "time": 0.515311510031679, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5195353748680042, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5237592397043295, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3006, + "time": 0.5279831045406547, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5322069693769799, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3054, + "time": 0.5364308342133052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5575501583949313, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3186, + "time": 0.5596620908130939, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3186, + "time": 0.5596620908130939, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3198, + "time": 0.5617740232312566, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3210, + "time": 0.5638859556494192, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3210, + "time": 0.5638859556494192, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5659978880675818, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5681098204857444, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5681098204857444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3246, + "time": 0.570221752903907, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5723336853220696, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5723336853220696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5913410770855332, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5934530095036958, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5934530095036958, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3391, + "time": 0.5955649419218585, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3403, + "time": 0.5976768743400211, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3403, + "time": 0.5976768743400211, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.5997888067581837, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3427, + "time": 0.6019007391763462, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3427, + "time": 0.6019007391763462, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3439, + "time": 0.6040126715945089, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3451, + "time": 0.6061246040126715, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3451, + "time": 0.6061246040126715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6251319957761352, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6420274551214361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6420274551214361, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3751, + "time": 0.658922914466737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.658922914466737, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6631467793030622, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -3646,11 +5371,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 2836, - "time": 0.498416050686378, + "noteOrder": 3775, + "time": 0.6631467793030622, "position": { "x": 4, "y": 0 @@ -3664,18 +5389,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.498416050686378, + "noteOrder": 3799, + "time": 0.6673706441393875, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3692,13 +5417,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 2860, - "time": 0.5026399155227033, + "noteOrder": 3799, + "time": 0.6673706441393875, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3710,18 +5435,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.5068637803590285, + "noteOrder": 3824, + "time": 0.6715945089757127, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3738,13 +5463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 151, "indexInLine": 1, "isSliding": false, - "noteOrder": 2908, - "time": 0.5110876451953538, + "noteOrder": 3824, + "time": 0.6715945089757127, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3756,18 +5481,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2908, - "time": 0.5110876451953538, + "noteOrder": 3848, + "time": 0.675818373812038, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3784,11 +5509,57 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.515311510031679, + "noteOrder": 3944, + "time": 0.6927138331573389, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6948257655755016, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6948257655755016, "position": { "x": 6, "y": 0 @@ -3807,11 +5578,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.515311510031679, + "noteOrder": 3968, + "time": 0.6969376979936642, "position": { "x": 8, "y": 0 @@ -3830,13 +5601,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2957, - "time": 0.5195353748680043, + "noteOrder": 3980, + "time": 0.6990496304118268, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3853,13 +5624,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2981, - "time": 0.5237592397043295, + "noteOrder": 3980, + "time": 0.6990496304118268, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3871,18 +5642,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 3005, - "time": 0.5279831045406547, + "noteOrder": 3992, + "time": 0.7011615628299893, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3899,11 +5670,34 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4004, + "time": 0.703273495248152, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3029, - "time": 0.53220696937698, + "noteOrder": 4004, + "time": 0.703273495248152, "position": { "x": 6, "y": 0 @@ -3917,18 +5711,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 3053, - "time": 0.5364308342133052, + "noteOrder": 4016, + "time": 0.7053854276663146, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3945,13 +5739,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.5575501583949314, + "noteOrder": 4028, + "time": 0.7074973600844772, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3968,13 +5762,36 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3197, - "time": 0.5617740232312566, + "noteOrder": 4028, + "time": 0.7074973600844772, "position": { - "x": 2, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4136, + "time": 0.7265047518479407, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -3991,13 +5808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, - "time": 0.5659978880675819, + "noteOrder": 4148, + "time": 0.7286166842661034, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4009,18 +5826,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3245, - "time": 0.5702217529039071, + "noteOrder": 4148, + "time": 0.7286166842661034, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4037,13 +5854,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.5913410770855332, + "noteOrder": 4160, + "time": 0.730728616684266, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4060,13 +5877,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3389, - "time": 0.5955649419218585, + "noteOrder": 4172, + "time": 0.7328405491024287, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4078,18 +5895,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3413, - "time": 0.5997888067581837, + "noteOrder": 4172, + "time": 0.7328405491024287, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4106,13 +5923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3437, - "time": 0.604012671594509, + "noteOrder": 4184, + "time": 0.7349524815205912, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4129,13 +5946,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.6251319957761352, + "noteOrder": 4196, + "time": 0.7370644139387539, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4147,18 +5964,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4196, + "time": 0.7370644139387539, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, "indexInLine": 1, "isSliding": false, - "noteOrder": 3654, - "time": 0.642027455121436, + "noteOrder": 4208, + "time": 0.7391763463569165, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4220, + "time": 0.7412882787750792, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4175,13 +6038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3654, - "time": 0.642027455121436, + "noteOrder": 4220, + "time": 0.7412882787750792, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4193,18 +6056,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 3750, - "time": 0.658922914466737, + "noteOrder": 4329, + "time": 0.7602956705385427, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4221,13 +6084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.658922914466737, + "noteOrder": 4425, + "time": 0.7771911298838436, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4239,16 +6102,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 3774, - "time": 0.6631467793030623, + "noteOrder": 4425, + "time": 0.7771911298838436, "position": { "x": 2, "y": 0 @@ -4267,13 +6130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3774, - "time": 0.6631467793030623, + "noteOrder": 4521, + "time": 0.7940865892291447, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4285,18 +6148,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6673706441393875, + "noteOrder": 4521, + "time": 0.7940865892291447, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4313,13 +6176,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3798, - "time": 0.6673706441393875, + "noteOrder": 4545, + "time": 0.7983104540654697, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4331,16 +6194,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 3822, - "time": 0.6715945089757128, + "noteOrder": 4545, + "time": 0.7983104540654697, "position": { "x": 6, "y": 0 @@ -4359,13 +6222,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3822, - "time": 0.6715945089757128, + "noteOrder": 4569, + "time": 0.802534318901795, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4377,18 +6240,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3846, - "time": 0.6758183738120379, + "noteOrder": 4569, + "time": 0.802534318901795, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4405,13 +6268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.6927138331573389, + "noteOrder": 4593, + "time": 0.8067581837381204, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4428,13 +6291,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3966, - "time": 0.6969376979936642, + "noteOrder": 4593, + "time": 0.8067581837381204, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4451,13 +6314,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3990, - "time": 0.7011615628299894, + "noteOrder": 4617, + "time": 0.8109820485744456, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4469,18 +6332,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4014, - "time": 0.7053854276663147, + "noteOrder": 4617, + "time": 0.8109820485744456, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4492,18 +6355,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4134, - "time": 0.7265047518479408, + "noteOrder": 4641, + "time": 0.8152059134107709, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4520,13 +6383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, - "time": 0.7307286166842661, + "noteOrder": 4641, + "time": 0.8152059134107709, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4543,13 +6406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4182, - "time": 0.7349524815205913, + "noteOrder": 4665, + "time": 0.8194297782470961, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4561,16 +6424,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4206, - "time": 0.7391763463569166, + "noteOrder": 4665, + "time": 0.8194297782470961, "position": { "x": 8, "y": 0 @@ -4584,16 +6447,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.7602956705385427, + "noteOrder": 4689, + "time": 0.8236536430834213, "position": { "x": 8, "y": 0 @@ -4612,13 +6475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7771911298838438, + "noteOrder": 4713, + "time": 0.8278775079197465, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4635,13 +6498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.7771911298838438, + "noteOrder": 4725, + "time": 0.8299894403379091, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4653,16 +6516,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4519, - "time": 0.7940865892291447, + "noteOrder": 4725, + "time": 0.8299894403379091, "position": { "x": 6, "y": 0 @@ -4676,16 +6539,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.7940865892291447, + "noteOrder": 4761, + "time": 0.836325237592397, "position": { "x": 8, "y": 0 @@ -4699,16 +6562,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4543, - "time": 0.7983104540654699, + "noteOrder": 4773, + "time": 0.8384371700105596, "position": { "x": 8, "y": 0 @@ -4722,16 +6585,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4543, - "time": 0.7983104540654699, + "noteOrder": 4773, + "time": 0.8384371700105596, "position": { "x": 6, "y": 0 @@ -4750,13 +6613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 4567, - "time": 0.8025343189017952, + "noteOrder": 4809, + "time": 0.8447729672650474, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4768,18 +6631,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4567, - "time": 0.8025343189017952, + "noteOrder": 4822, + "time": 0.84688489968321, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4796,13 +6659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4591, - "time": 0.8067581837381204, + "noteOrder": 4822, + "time": 0.84688489968321, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4819,13 +6682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.8067581837381204, + "noteOrder": 4858, + "time": 0.8532206969376979, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4842,13 +6705,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4615, - "time": 0.8109820485744457, + "noteOrder": 4870, + "time": 0.8553326293558605, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4865,13 +6728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4615, - "time": 0.8109820485744457, + "noteOrder": 4870, + "time": 0.8553326293558605, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4883,18 +6746,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 4639, - "time": 0.8152059134107708, + "noteOrder": 4906, + "time": 0.8616684266103485, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4911,13 +6774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4639, - "time": 0.8152059134107708, + "noteOrder": 4918, + "time": 0.863780359028511, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4929,16 +6792,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4663, - "time": 0.8194297782470961, + "noteOrder": 4918, + "time": 0.863780359028511, "position": { "x": 6, "y": 0 @@ -4952,39 +6815,16 @@ "y": 1, "z": 1 }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 183, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4663, - "time": 0.8194297782470961, - "position": { - "x": 8, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 4687, - "time": 0.8236536430834213, + "noteOrder": 4954, + "time": 0.8701161562829989, "position": { "x": 8, "y": 0 @@ -4998,16 +6838,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4711, - "time": 0.8278775079197466, + "noteOrder": 4966, + "time": 0.8722280887011614, "position": { "x": 8, "y": 0 @@ -5021,18 +6861,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4759, - "time": 0.8363252375923971, + "noteOrder": 4966, + "time": 0.8722280887011614, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5049,11 +6889,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.8447729672650476, + "noteOrder": 5002, + "time": 0.8785638859556494, "position": { "x": 8, "y": 0 @@ -5072,11 +6912,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8532206969376981, + "noteOrder": 5014, + "time": 0.8806758183738119, "position": { "x": 8, "y": 0 @@ -5090,18 +6930,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4903, - "time": 0.8616684266103485, + "noteOrder": 5014, + "time": 0.8806758183738119, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5118,11 +6958,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, - "time": 0.870116156282999, + "noteOrder": 5050, + "time": 0.8870116156282999, "position": { "x": 8, "y": 0 @@ -5141,11 +6981,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5000, - "time": 0.8785638859556495, + "noteOrder": 5062, + "time": 0.8891235480464625, "position": { "x": 8, "y": 0 @@ -5159,18 +6999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5048, - "time": 0.8870116156282998, + "noteOrder": 5062, + "time": 0.8891235480464625, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5188,9 +7028,9 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, + "noteOrder": 5098, "time": 0.8954593453009503, "position": { "x": 6, @@ -5211,10 +7051,10 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5120, - "time": 0.8996832101372756, + "noteOrder": 5122, + "time": 0.8996832101372755, "position": { "x": 6, "y": 0 @@ -5234,10 +7074,10 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5120, - "time": 0.8996832101372756, + "noteOrder": 5122, + "time": 0.8996832101372755, "position": { "x": 4, "y": 0 @@ -5257,9 +7097,9 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.9039070749736008, "position": { "x": 4, @@ -5280,9 +7120,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.9039070749736008, "position": { "x": 2, @@ -5303,10 +7143,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5168, - "time": 0.9081309398099261, + "noteOrder": 5170, + "time": 0.908130939809926, "position": { "x": 5, "y": 0 @@ -5326,9 +7166,9 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, + "noteOrder": 5194, "time": 0.9123548046462513, "position": { "x": 4, @@ -5349,10 +7189,10 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, - "time": 0.9165786694825766, + "noteOrder": 5218, + "time": 0.9165786694825764, "position": { "x": 4, "y": 0 @@ -5372,10 +7212,10 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5216, - "time": 0.9165786694825766, + "noteOrder": 5218, + "time": 0.9165786694825764, "position": { "x": 6, "y": 0 @@ -5395,9 +7235,9 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.9208025343189017, "position": { "x": 6, @@ -5418,9 +7258,9 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.9208025343189017, "position": { "x": 8, @@ -5441,9 +7281,9 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, + "noteOrder": 5266, "time": 0.925026399155227, "position": { "x": 5, @@ -5464,9 +7304,9 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9292502639915522, "position": { "x": 5, @@ -5487,9 +7327,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.9334741288278775, "position": { "x": 7, @@ -5510,9 +7350,9 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5336, + "noteOrder": 5339, "time": 0.9376979936642027, "position": { "x": 6, @@ -5533,10 +7373,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5360, - "time": 0.941921858500528, + "noteOrder": 5363, + "time": 0.9419218585005279, "position": { "x": 3, "y": 0 diff --git a/tracks/Feelin' Good/268_difficulty_1b.json b/tracks/Feelin' Good/268_difficulty_1b.json index a386559b..9ff8739b 100644 --- a/tracks/Feelin' Good/268_difficulty_1b.json +++ b/tracks/Feelin' Good/268_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.021119324181626185, + "time": 0.021119324181626188, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 168, - "time": 0.029567053854276663, + "time": 0.02956705385427666, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.038014783526927144, + "time": 0.03801478352692713, "position": { "x": 7, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.046462513199577615, "position": { "x": 7, @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.05491024287222809, + "noteOrder": 313, + "time": 0.054910242872228086, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 481, - "time": 0.08447729672650474, + "time": 0.08447729672650475, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 505, - "time": 0.08870116156282999, + "time": 0.08870116156282998, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 577, - "time": 0.10137275607180571, + "time": 0.1013727560718057, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 601, - "time": 0.10559662090813095, + "time": 0.10559662090813092, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 625, - "time": 0.10982048574445619, + "time": 0.10982048574445617, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 673, - "time": 0.11826821541710665, + "time": 0.11826821541710664, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.1351636747624076, "position": { "x": 6, @@ -374,7 +374,7 @@ }, { "noteOrder": 1106, - "time": 0.19429778247096094, + "time": 0.1942977824709609, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1202, - "time": 0.2111932418162619, + "time": 0.21119324181626184, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1250, - "time": 0.21964097148891237, + "time": 0.21964097148891235, "position": { "x": 8, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.22386483632523757, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.22808870116156282, "position": { "x": 8, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.23231256599788805, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1346, - "time": 0.2365364308342133, + "noteOrder": 1347, + "time": 0.23653643083421327, "position": { "x": 8, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.24076029567053853, + "noteOrder": 1371, + "time": 0.2407602956705385, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.24498416050686378, "position": { "x": 8, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.249208025343189, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.25343189017951423, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2576557550158395, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.26187961985216474, "position": { "x": 8, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1514, - "time": 0.26610348468849, + "noteOrder": 1515, + "time": 0.26610348468848993, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3294614572333685, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.33790918690601895, + "noteOrder": 1924, + "time": 0.337909186906019, "position": { "x": 8, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.34635691657866946, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.35480464625131997, + "noteOrder": 2020, + "time": 0.3548046462513199, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.35902851108764516, "position": { "x": 2, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.3632523759239704, + "noteOrder": 2068, + "time": 0.36325237592397036, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.3717001055966209, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.3759239704329461, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3801478352692714, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2211, - "time": 0.3885955649419219, + "noteOrder": 2212, + "time": 0.3885955649419218, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.3928194297782471, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.39704329461457233, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.40549102428722283, + "noteOrder": 2309, + "time": 0.4054910242872228, "position": { "x": 8, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.40971488912354803, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4139387539598733, + "noteOrder": 2357, + "time": 0.41393875395987323, "position": { "x": 8, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.43083421330517424, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.44772967265047514, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.4646251319957761, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.48152059134107705, + "noteOrder": 2741, + "time": 0.481520591341077, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2788, + "noteOrder": 2790, "time": 0.48996832101372756, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4941921858500528, + "noteOrder": 2814, + "time": 0.49419218585005276, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2838, "time": 0.498416050686378, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2886, "time": 0.5068637803590285, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.5110876451953538, + "noteOrder": 2910, + "time": 0.5110876451953537, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2934, "time": 0.515311510031679, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.5237592397043295, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.5279831045406547, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.53220696937698, + "noteOrder": 3030, + "time": 0.5322069693769799, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5406546990496304, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5406546990496304, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5448785638859557, + "noteOrder": 3102, + "time": 0.5448785638859556, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5448785638859557, + "noteOrder": 3102, + "time": 0.5448785638859556, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5491024287222809, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3126, "time": 0.5491024287222809, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3415, "time": 0.5997888067581837, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.6082365364308343, + "noteOrder": 3463, + "time": 0.6082365364308341, "position": { "x": 2, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.6166842661034847, + "noteOrder": 3511, + "time": 0.6166842661034846, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.6251319957761352, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3583, "time": 0.6293558606124604, "position": { "x": 8, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.6335797254487856, + "noteOrder": 3607, + "time": 0.6335797254487855, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.642027455121436, + "noteOrder": 3655, + "time": 0.6420274551214361, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3679, "time": 0.6462513199577613, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3702, - "time": 0.6504751847940865, + "noteOrder": 3703, + "time": 0.6504751847940866, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3751, "time": 0.658922914466737, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.6631467793030623, + "noteOrder": 3775, + "time": 0.6631467793030622, "position": { "x": 8, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3799, "time": 0.6673706441393875, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.7349524815205913, + "noteOrder": 4184, + "time": 0.7349524815205912, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4280, "time": 0.7518479408658922, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7602956705385427, "position": { "x": 2, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.7645195353748679, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4377, "time": 0.7687434002111933, "position": { "x": 2, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7729672650475184, + "noteOrder": 4401, + "time": 0.7729672650475183, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4423, - "time": 0.7771911298838438, + "noteOrder": 4425, + "time": 0.7771911298838436, "position": { "x": 2, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7814149947201688, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.7856388595564942, "position": { "x": 2, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4497, "time": 0.7898627243928193, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4543, - "time": 0.7983104540654699, + "noteOrder": 4545, + "time": 0.7983104540654697, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.8025343189017952, + "noteOrder": 4569, + "time": 0.802534318901795, "position": { "x": 2, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.8067581837381204, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4615, - "time": 0.8109820485744457, + "noteOrder": 4617, + "time": 0.8109820485744456, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4639, - "time": 0.8152059134107708, + "noteOrder": 4641, + "time": 0.8152059134107709, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4665, "time": 0.8194297782470961, "position": { "x": 5, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.8363252375923971, + "noteOrder": 4761, + "time": 0.836325237592397, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.8532206969376981, + "noteOrder": 4858, + "time": 0.8532206969376979, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.870116156282999, + "noteOrder": 4954, + "time": 0.8701161562829989, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8870116156282998, + "noteOrder": 5050, + "time": 0.8870116156282999, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5096, + "noteOrder": 5098, "time": 0.8954593453009503, "position": { "x": 8, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8996832101372756, + "noteOrder": 5122, + "time": 0.8996832101372755, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.9039070749736008, "position": { "x": 8, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5194, "time": 0.9123548046462513, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5216, - "time": 0.9165786694825766, + "noteOrder": 5218, + "time": 0.9165786694825764, "position": { "x": 6, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.9208025343189017, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9292502639915522, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.9334741288278775, "position": { "x": 2, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5339, "time": 0.9376979936642027, "position": { "x": 6, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.9461457233368532, + "noteOrder": 5387, + "time": 0.9461457233368531, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9503695881731785, + "noteOrder": 5411, + "time": 0.9503695881731784, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5435, "time": 0.9545934530095036, "position": { "x": 4, @@ -2216,12 +2216,725 @@ "lineNodes": [ { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 866, + "time": 0.15205913410770852, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 890, + "time": 0.1562829989440338, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 890, + "time": 0.1562829989440338, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 914, + "time": 0.16050686378035903, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 938, + "time": 0.16473072861668425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 938, + "time": 0.16473072861668425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 962, + "time": 0.1689545934530095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 986, + "time": 0.17317845828933473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 986, + "time": 0.17317845828933473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1010, + "time": 0.17740232312565996, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1034, + "time": 0.18162618796198518, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1034, + "time": 0.18162618796198518, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1058, + "time": 0.18585005279831046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1154, + "time": 0.2027455121436114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1154, + "time": 0.2027455121436114, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1250, + "time": 0.21964097148891235, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1539, + "time": 0.2703273495248152, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2829989440337909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.28722280887011614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.2914466737064414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1659, + "time": 0.2914466737064414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2956705385427666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1707, + "time": 0.29989440337909185, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1707, + "time": 0.29989440337909185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.30411826821541704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1755, + "time": 0.3083421330517423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1755, + "time": 0.3083421330517423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1780, + "time": 0.3125659978880676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.31678986272439275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1804, + "time": 0.31678986272439275, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.32101372756071805, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 865, - "time": 0.15205913410770858, + "noteOrder": 1924, + "time": 0.337909186906019, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2233,18 +2946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.160506863780359, + "noteOrder": 2020, + "time": 0.3548046462513199, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2261,11 +2974,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16895459345300948, + "noteOrder": 2405, + "time": 0.4223864836325237, "position": { "x": 7, "y": 0 @@ -2284,13 +2997,36 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1010, - "time": 0.17740232312565998, + "noteOrder": 2501, + "time": 0.4392819429778247, "position": { - "x": 7, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4392819429778247, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -2307,13 +3043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, - "time": 0.18585005279831046, + "noteOrder": 2597, + "time": 0.45617740232312565, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2325,18 +3061,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, + "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 1154, - "time": 0.20274551214361142, + "noteOrder": 2597, + "time": 0.45617740232312565, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2353,13 +3089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1154, - "time": 0.20274551214361142, + "noteOrder": 2693, + "time": 0.47307286166842655, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2371,18 +3107,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.21964097148891237, + "noteOrder": 2693, + "time": 0.47307286166842655, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2399,13 +3135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.2703273495248152, + "noteOrder": 2790, + "time": 0.48996832101372756, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2417,18 +3153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 1610, - "time": 0.28299894403379094, + "noteOrder": 3174, + "time": 0.5575501583949313, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2445,13 +3181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.28722280887011614, + "noteOrder": 3198, + "time": 0.5617740232312566, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2463,18 +3199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1683, - "time": 0.2956705385427666, + "noteOrder": 3198, + "time": 0.5617740232312566, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2491,13 +3227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.30411826821541715, + "noteOrder": 3222, + "time": 0.5659978880675818, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2514,13 +3250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3125659978880676, + "noteOrder": 3246, + "time": 0.570221752903907, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2532,18 +3268,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.321013727560718, + "noteOrder": 3246, + "time": 0.570221752903907, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2560,13 +3296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, - "time": 0.33790918690601895, + "noteOrder": 3270, + "time": 0.5744456177402323, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2578,18 +3314,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 86, "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.35480464625131997, + "noteOrder": 3294, + "time": 0.5786694825765575, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2601,18 +3337,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2404, - "time": 0.4223864836325238, + "noteOrder": 3294, + "time": 0.5786694825765575, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2629,13 +3365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.43928194297782475, + "noteOrder": 3319, + "time": 0.5828933474128828, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2647,18 +3383,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.43928194297782475, + "noteOrder": 3343, + "time": 0.587117212249208, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2675,11 +3411,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2596, - "time": 0.45617740232312565, + "noteOrder": 3343, + "time": 0.587117212249208, "position": { "x": 5, "y": 0 @@ -2698,11 +3434,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.45617740232312565, + "noteOrder": 3367, + "time": 0.5913410770855332, "position": { "x": 7, "y": 0 @@ -2721,11 +3457,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.4730728616684266, + "noteOrder": 3463, + "time": 0.6082365364308341, "position": { "x": 4, "y": 0 @@ -2744,13 +3480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.4730728616684266, + "noteOrder": 3559, + "time": 0.6251319957761352, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2762,18 +3498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.48996832101372756, + "noteOrder": 3944, + "time": 0.6927138331573389, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2790,13 +3526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.5575501583949314, + "noteOrder": 3968, + "time": 0.6969376979936642, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2808,18 +3544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3221, - "time": 0.5659978880675819, + "noteOrder": 3968, + "time": 0.6969376979936642, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2836,13 +3572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, - "time": 0.5744456177402323, + "noteOrder": 3992, + "time": 0.7011615628299893, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2859,13 +3595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.5828933474128828, + "noteOrder": 4016, + "time": 0.7053854276663146, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2877,18 +3613,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3365, - "time": 0.5913410770855332, + "noteOrder": 4016, + "time": 0.7053854276663146, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2905,13 +3641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.6082365364308343, + "noteOrder": 4040, + "time": 0.7096092925026398, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2923,18 +3659,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 104, "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.6251319957761352, + "noteOrder": 4064, + "time": 0.7138331573389651, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2946,18 +3682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3942, - "time": 0.6927138331573389, + "noteOrder": 4064, + "time": 0.7138331573389651, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2974,11 +3710,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.7011615628299894, + "noteOrder": 4088, + "time": 0.7180570221752903, "position": { "x": 3, "y": 0 @@ -2997,11 +3733,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.7096092925026399, + "noteOrder": 4112, + "time": 0.7222808870116156, "position": { "x": 3, "y": 0 @@ -3015,18 +3751,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4086, - "time": 0.7180570221752903, + "noteOrder": 4112, + "time": 0.7222808870116156, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3044,10 +3780,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.7265047518479408, + "noteOrder": 4136, + "time": 0.7265047518479407, "position": { "x": 3, "y": 0 @@ -3067,9 +3803,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.7434002111932418, "position": { "x": 6, @@ -3090,9 +3826,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4230, + "noteOrder": 4232, "time": 0.7434002111932418, "position": { "x": 8, @@ -3113,9 +3849,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7602956705385427, "position": { "x": 5, @@ -3136,10 +3872,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4711, - "time": 0.8278775079197466, + "noteOrder": 4713, + "time": 0.8278775079197465, "position": { "x": 7, "y": 0 @@ -3159,10 +3895,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4807, - "time": 0.8447729672650476, + "noteOrder": 4809, + "time": 0.8447729672650474, "position": { "x": 4, "y": 0 @@ -3182,10 +3918,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.8447729672650476, + "noteOrder": 4809, + "time": 0.8447729672650474, "position": { "x": 2, "y": 0 @@ -3205,9 +3941,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, + "noteOrder": 4906, "time": 0.8616684266103485, "position": { "x": 5, @@ -3228,9 +3964,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4903, + "noteOrder": 4906, "time": 0.8616684266103485, "position": { "x": 7, @@ -3251,10 +3987,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5000, - "time": 0.8785638859556495, + "noteOrder": 5002, + "time": 0.8785638859556494, "position": { "x": 4, "y": 0 @@ -3274,10 +4010,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5000, - "time": 0.8785638859556495, + "noteOrder": 5002, + "time": 0.8785638859556494, "position": { "x": 2, "y": 0 @@ -3297,9 +4033,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5096, + "noteOrder": 5098, "time": 0.8954593453009503, "position": { "x": 5, @@ -3320,10 +4056,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, - "time": 0.9630411826821541, + "noteOrder": 5483, + "time": 0.963041182682154, "position": { "x": 4, "y": 0 @@ -3343,9 +4079,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5577, + "noteOrder": 5579, "time": 0.9799366420274551, "position": { "x": 4, @@ -3366,10 +4102,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, - "time": 0.9630411826821541, + "noteOrder": 5483, + "time": 0.963041182682154, "position": { "x": 6, "y": 0 @@ -3389,9 +4125,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5577, + "noteOrder": 5579, "time": 0.9799366420274551, "position": { "x": 6, diff --git a/tracks/Feelin' Good/info.json b/tracks/Feelin' Good/info.json index 12b68ca8..000145d5 100644 --- a/tracks/Feelin' Good/info.json +++ b/tracks/Feelin' Good/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Feelin' Good", - "SongLength": "115.382857", + "SongLength": "105.430204", "SongAuthorName": "DJ.DAI", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Flow/274_difficulty_1a.json b/tracks/Flow/274_difficulty_1a.json index 9251a959..46589849 100644 --- a/tracks/Flow/274_difficulty_1a.json +++ b/tracks/Flow/274_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 114, - "time": 0.018286814244465835, + "time": 0.01828681424446583, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 150, - "time": 0.024061597690086624, + "time": 0.02406159769008662, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 216, - "time": 0.03464870067372474, + "time": 0.03464870067372473, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 240, - "time": 0.0384985563041386, + "time": 0.03849855630413859, "position": { "x": 5, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.04619826756496631, "position": { "x": 4, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 306, - "time": 0.049085659287776716, + "noteOrder": 307, + "time": 0.04908565928777671, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 324, - "time": 0.05197305101058711, + "noteOrder": 325, + "time": 0.0519730510105871, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 342, + "noteOrder": 343, "time": 0.0548604427333975, "position": { "x": 5, @@ -294,7 +294,7 @@ }, { "noteOrder": 433, - "time": 0.06929740134744948, + "time": 0.06929740134744947, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 457, - "time": 0.07314725697786334, + "time": 0.07314725697786333, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 481, - "time": 0.0769971126082772, + "time": 0.07699711260827719, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 499, - "time": 0.07988450433108758, + "time": 0.07988450433108757, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 535, - "time": 0.08565928777670838, + "time": 0.08565928777670836, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 601, - "time": 0.0962463907603465, + "time": 0.09624639076034648, "position": { "x": 5, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 625, - "time": 0.10009624639076035, + "time": 0.10009624639076034, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 649, - "time": 0.10394610202117421, + "time": 0.1039461020211742, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 673, - "time": 0.10779595765158807, + "time": 0.10779595765158806, "position": { "x": 5, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 691, - "time": 0.11068334937439847, + "time": 0.11068334937439844, "position": { "x": 8, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 727, - "time": 0.11645813282001925, + "time": 0.11645813282001924, "position": { "x": 5, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 793, - "time": 0.12704523580365737, + "time": 0.12704523580365734, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 841, - "time": 0.1347449470644851, + "time": 0.13474494706448506, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 913, - "time": 0.14629451395572668, + "noteOrder": 914, + "time": 0.14629451395572665, "position": { "x": 2, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.15014436958614052, "position": { "x": 2, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1009, - "time": 0.16169393647738212, + "noteOrder": 1010, + "time": 0.1616939364773821, "position": { "x": 2, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.16554379210779596, "position": { "x": 2, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.17324350336862368, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.17709335899903753, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.1809432146294514, "position": { "x": 7, @@ -794,7 +794,7 @@ }, { "noteOrder": 1178, - "time": 0.18864292589027915, + "time": 0.18864292589027912, "position": { "x": 6, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1202, - "time": 0.192492781520693, + "time": 0.19249278152069296, "position": { "x": 4, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1226, - "time": 0.19634263715110686, + "time": 0.19634263715110684, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1298, - "time": 0.20789220404234843, + "time": 0.2078922040423484, "position": { "x": 6, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1394, - "time": 0.22329162656400386, + "time": 0.22329162656400384, "position": { "x": 8, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.246390760346487, "position": { "x": 8, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1562, - "time": 0.2502406159769009, + "noteOrder": 1563, + "time": 0.25024061597690084, "position": { "x": 8, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1586, - "time": 0.25409047160731474, + "noteOrder": 1587, + "time": 0.2540904716073147, "position": { "x": 8, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2579403272377286, "position": { "x": 8, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.26179018286814243, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1730, - "time": 0.2771896053897979, + "noteOrder": 1731, + "time": 0.27718960538979787, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.28103946102021177, + "noteOrder": 1755, + "time": 0.2810394610202117, "position": { "x": 8, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1802, - "time": 0.28873917228103946, + "noteOrder": 1803, + "time": 0.2887391722810394, "position": { "x": 8, "y": 0 @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1899, - "time": 0.3041385948026949, + "time": 0.30413859480269484, "position": { "x": 6, "y": 0 @@ -1174,7 +1174,7 @@ }, { "noteOrder": 1995, - "time": 0.31953801732435033, + "time": 0.3195380173243503, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3349374398460058, + "noteOrder": 2092, + "time": 0.3349374398460057, "position": { "x": 2, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.3387872954764196, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.3426371511068335, + "noteOrder": 2140, + "time": 0.34263715110683346, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.35418671799807505, "position": { "x": 2, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.3695861405197305, "position": { "x": 2, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.3811357074109721, + "noteOrder": 2380, + "time": 0.381135707410972, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.3888354186717998, + "noteOrder": 2428, + "time": 0.38883541867179977, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3926852743022137, + "noteOrder": 2452, + "time": 0.39268527430221367, "position": { "x": 2, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2499, - "time": 0.4003849855630414, + "noteOrder": 2500, + "time": 0.40038498556304136, "position": { "x": 2, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.4311838306063523, + "noteOrder": 2693, + "time": 0.43118383060635224, "position": { "x": 8, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4427333974975939, + "noteOrder": 2765, + "time": 0.4427333974975938, "position": { "x": 8, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4504331087584216, + "noteOrder": 2813, + "time": 0.4504331087584215, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.4542829643888354, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.4581328200192493, + "noteOrder": 2861, + "time": 0.4581328200192492, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.465832531280077, + "noteOrder": 2909, + "time": 0.46583253128007696, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.46968238691049086, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.47353224254090476, + "noteOrder": 2957, + "time": 0.47353224254090465, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.48123195380173245, + "noteOrder": 3005, + "time": 0.4812319538017324, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.4850818094321463, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3052, - "time": 0.4889316650625602, + "noteOrder": 3053, + "time": 0.4889316650625601, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3100, - "time": 0.4966313763233879, + "noteOrder": 3101, + "time": 0.49663137632338783, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.5004812319538018, + "noteOrder": 3125, + "time": 0.5004812319538017, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.5043310875842156, + "noteOrder": 3150, + "time": 0.5043310875842155, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3222, "time": 0.5158806544754572, "position": { "x": 8, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3246, "time": 0.519730510105871, "position": { "x": 8, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.5312800769971127, + "noteOrder": 3318, + "time": 0.5312800769971125, "position": { "x": 8, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.5351299326275265, + "noteOrder": 3342, + "time": 0.5351299326275264, "position": { "x": 8, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3388, + "noteOrder": 3390, "time": 0.5428296438883542, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3414, "time": 0.546679499518768, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3437, - "time": 0.5505293551491819, + "noteOrder": 3438, + "time": 0.5505293551491818, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3485, - "time": 0.5582290664100097, + "noteOrder": 3486, + "time": 0.5582290664100096, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.5620789220404235, + "noteOrder": 3510, + "time": 0.5620789220404234, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3533, - "time": 0.5659287776708374, + "noteOrder": 3534, + "time": 0.5659287776708373, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3582, "time": 0.5736284889316651, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.5774783445620789, + "noteOrder": 3606, + "time": 0.5774783445620788, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3630, "time": 0.5813282001924928, "position": { "x": 6, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.5890279114533206, + "noteOrder": 3678, + "time": 0.5890279114533203, "position": { "x": 8, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3701, - "time": 0.5928777670837344, + "noteOrder": 3702, + "time": 0.5928777670837343, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3727, "time": 0.5967276227141481, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3751, "time": 0.6005774783445621, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3773, + "noteOrder": 3775, "time": 0.6044273339749759, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3797, - "time": 0.6082771896053898, + "noteOrder": 3799, + "time": 0.6082771896053897, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3821, - "time": 0.6121270452358037, + "noteOrder": 3823, + "time": 0.6121270452358036, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3845, - "time": 0.6159769008662176, + "noteOrder": 3847, + "time": 0.6159769008662175, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3869, - "time": 0.6198267564966314, + "noteOrder": 3871, + "time": 0.6198267564966312, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3895, "time": 0.6236766121270452, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.631376323387873, "position": { "x": 2, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3953, - "time": 0.6333012512030799, + "noteOrder": 3955, + "time": 0.6333012512030798, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.6352261790182868, + "noteOrder": 3967, + "time": 0.6352261790182867, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3977, + "noteOrder": 3979, "time": 0.6371511068334937, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4013, - "time": 0.6429258902791146, + "noteOrder": 4015, + "time": 0.6429258902791145, "position": { "x": 2, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.6448508180943215, + "noteOrder": 4027, + "time": 0.6448508180943213, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4037, - "time": 0.6467757459095285, + "noteOrder": 4039, + "time": 0.6467757459095284, "position": { "x": 5, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4049, - "time": 0.6487006737247354, + "noteOrder": 4051, + "time": 0.6487006737247353, "position": { "x": 4, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.654475457170356, "position": { "x": 2, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.6660250240615977, + "noteOrder": 4159, + "time": 0.6660250240615976, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6698748796920116, + "noteOrder": 4183, + "time": 0.6698748796920114, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4231, "time": 0.6775745909528392, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.6814244465832531, + "noteOrder": 4255, + "time": 0.681424446583253, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.685274302213667, + "noteOrder": 4279, + "time": 0.6852743022136669, "position": { "x": 8, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.6891241578440809, + "noteOrder": 4304, + "time": 0.6891241578440808, "position": { "x": 5, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.6929740134744947, "position": { "x": 8, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4338, - "time": 0.6948989412897016, + "noteOrder": 4340, + "time": 0.6948989412897015, "position": { "x": 6, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.6968238691049086, + "noteOrder": 4352, + "time": 0.6968238691049085, "position": { "x": 5, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.6987487969201156, + "noteOrder": 4364, + "time": 0.6987487969201155, "position": { "x": 6, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4398, - "time": 0.7045235803657364, + "noteOrder": 4400, + "time": 0.7045235803657363, "position": { "x": 8, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4410, - "time": 0.7064485081809432, + "noteOrder": 4412, + "time": 0.7064485081809431, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.7083734359961501, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4434, + "noteOrder": 4436, "time": 0.710298363811357, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4470, - "time": 0.7160731472569779, + "noteOrder": 4472, + "time": 0.7160731472569778, "position": { "x": 8, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.7276227141482196, + "noteOrder": 4544, + "time": 0.7276227141482193, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7314725697786334, + "noteOrder": 4568, + "time": 0.7314725697786332, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.739172281039461, "position": { "x": 4, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4638, - "time": 0.7430221366698749, + "noteOrder": 4640, + "time": 0.7430221366698747, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.7468719923002888, + "noteOrder": 4664, + "time": 0.7468719923002887, "position": { "x": 2, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.7545717035611166, + "noteOrder": 4712, + "time": 0.7545717035611165, "position": { "x": 2, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4722, - "time": 0.7564966313763235, + "noteOrder": 4724, + "time": 0.7564966313763233, "position": { "x": 4, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4734, - "time": 0.7584215591915304, + "noteOrder": 4736, + "time": 0.7584215591915302, "position": { "x": 5, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4746, + "noteOrder": 4748, "time": 0.7603464870067372, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.766121270452358, "position": { "x": 2, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4794, - "time": 0.7680461982675649, + "noteOrder": 4796, + "time": 0.7680461982675648, "position": { "x": 4, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.769971126082772, + "noteOrder": 4808, + "time": 0.7699711260827719, "position": { "x": 5, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4818, - "time": 0.7718960538979789, + "noteOrder": 4820, + "time": 0.7718960538979788, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.7776708373435997, + "noteOrder": 4857, + "time": 0.7776708373435995, "position": { "x": 2, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4903, - "time": 0.7853705486044275, + "noteOrder": 4905, + "time": 0.7853705486044273, "position": { "x": 2, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4915, - "time": 0.7872954764196344, + "noteOrder": 4917, + "time": 0.7872954764196342, "position": { "x": 4, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.7892204042348412, + "noteOrder": 4929, + "time": 0.7892204042348411, "position": { "x": 5, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4939, + "noteOrder": 4941, "time": 0.7911453320500481, "position": { "x": 4, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7969201154956689, "position": { "x": 2, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4987, - "time": 0.7988450433108759, + "noteOrder": 4989, + "time": 0.7988450433108757, "position": { "x": 4, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.8007699711260828, + "noteOrder": 5001, + "time": 0.8007699711260827, "position": { "x": 5, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5011, - "time": 0.8026948989412898, + "noteOrder": 5013, + "time": 0.8026948989412896, "position": { "x": 4, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.8084696823869105, + "noteOrder": 5049, + "time": 0.8084696823869104, "position": { "x": 2, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5167, - "time": 0.8277189605389799, + "noteOrder": 5169, + "time": 0.8277189605389798, "position": { "x": 8, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5179, - "time": 0.8296438883541868, + "noteOrder": 5181, + "time": 0.8296438883541866, "position": { "x": 6, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5191, - "time": 0.8315688161693937, + "noteOrder": 5193, + "time": 0.8315688161693936, "position": { "x": 5, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5203, - "time": 0.8334937439846006, + "noteOrder": 5205, + "time": 0.8334937439846005, "position": { "x": 6, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5239, - "time": 0.8392685274302214, + "noteOrder": 5241, + "time": 0.8392685274302213, "position": { "x": 8, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.8469682386910491, "position": { "x": 8, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5299, - "time": 0.848893166506256, + "noteOrder": 5301, + "time": 0.8488931665062559, "position": { "x": 6, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5311, - "time": 0.8508180943214629, + "noteOrder": 5313, + "time": 0.8508180943214628, "position": { "x": 5, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5323, + "noteOrder": 5325, "time": 0.8527430221366699, "position": { "x": 6, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.8585178055822907, + "noteOrder": 5361, + "time": 0.8585178055822906, "position": { "x": 8, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5371, - "time": 0.8604427333974977, + "noteOrder": 5373, + "time": 0.8604427333974974, "position": { "x": 6, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5383, - "time": 0.8623676612127046, + "noteOrder": 5385, + "time": 0.8623676612127045, "position": { "x": 5, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5395, - "time": 0.8642925890279115, + "noteOrder": 5397, + "time": 0.8642925890279114, "position": { "x": 6, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.8700673724735324, + "noteOrder": 5434, + "time": 0.8700673724735322, "position": { "x": 8, "y": 0 @@ -3336,10 +3336,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 168, - "time": 0.026948989412897018, + "time": 0.026948989412897015, "position": { "x": 7, "y": 0 @@ -3359,7 +3359,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.030798845043310874, @@ -3382,10 +3382,10 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 216, - "time": 0.03464870067372474, + "time": 0.03464870067372473, "position": { "x": 6, "y": 0 @@ -3405,10 +3405,10 @@ }, { "lineGroupId": 5, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 240, - "time": 0.0384985563041386, + "time": 0.03849855630413859, "position": { "x": 8, "y": 0 @@ -3428,7 +3428,7 @@ }, { "lineGroupId": 5, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 264, "time": 0.04234841193455245, @@ -3451,10 +3451,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 360, - "time": 0.057747834456207896, + "noteOrder": 361, + "time": 0.05774783445620789, "position": { "x": 3, "y": 0 @@ -3474,7 +3474,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 385, "time": 0.06159769008662175, @@ -3497,7 +3497,7 @@ }, { "lineGroupId": 14, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 409, "time": 0.06544754571703561, @@ -3520,10 +3520,10 @@ }, { "lineGroupId": 14, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 433, - "time": 0.06929740134744948, + "time": 0.06929740134744947, "position": { "x": 2, "y": 0 @@ -3543,10 +3543,10 @@ }, { "lineGroupId": 14, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 457, - "time": 0.07314725697786334, + "time": 0.07314725697786333, "position": { "x": 4, "y": 0 @@ -3566,7 +3566,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 553, "time": 0.08854667949951876, @@ -3589,7 +3589,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, "time": 0.09239653512993262, @@ -3612,10 +3612,10 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 601, - "time": 0.0962463907603465, + "time": 0.09624639076034648, "position": { "x": 8, "y": 0 @@ -3635,10 +3635,10 @@ }, { "lineGroupId": 23, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 625, - "time": 0.10009624639076035, + "time": 0.10009624639076034, "position": { "x": 6, "y": 0 @@ -3658,10 +3658,10 @@ }, { "lineGroupId": 23, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 649, - "time": 0.10394610202117421, + "time": 0.1039461020211742, "position": { "x": 8, "y": 0 @@ -3681,7 +3681,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 745, "time": 0.11934552454282964, @@ -3704,7 +3704,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, "time": 0.1231953801732435, @@ -3727,10 +3727,10 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 793, - "time": 0.12704523580365737, + "time": 0.12704523580365734, "position": { "x": 2, "y": 0 @@ -3750,7 +3750,7 @@ }, { "lineGroupId": 32, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 817, "time": 0.13089509143407121, @@ -3773,10 +3773,10 @@ }, { "lineGroupId": 32, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 841, - "time": 0.1347449470644851, + "time": 0.13474494706448506, "position": { "x": 2, "y": 0 @@ -3796,10 +3796,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.13859480269489896, + "noteOrder": 866, + "time": 0.13859480269489893, "position": { "x": 2, "y": 0 @@ -3818,11 +3818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.1424446583253128, + "noteOrder": 878, + "time": 0.14051973051010586, "position": { "x": 2, "y": 0 @@ -3836,16 +3836,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 37, "indexInLine": 3, "isSliding": false, - "noteOrder": 925, - "time": 0.1482194417709336, + "noteOrder": 878, + "time": 0.14051973051010586, "position": { "x": 4, "y": 0 @@ -3859,18 +3859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 37, "indexInLine": 4, "isSliding": false, - "noteOrder": 937, - "time": 0.15014436958614052, + "noteOrder": 890, + "time": 0.14244465832531278, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3882,18 +3882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 37, "indexInLine": 5, "isSliding": false, - "noteOrder": 949, - "time": 0.15206929740134745, + "noteOrder": 890, + "time": 0.14244465832531278, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3905,18 +3905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 38, - "indexInLine": 6, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1539942252165544, + "noteOrder": 890, + "time": 0.14244465832531278, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3933,11 +3933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, - "time": 0.1539942252165544, + "noteOrder": 902, + "time": 0.1443695861405197, "position": { "x": 2, "y": 0 @@ -3951,18 +3951,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 985, - "time": 0.15784408084696824, + "noteOrder": 902, + "time": 0.1443695861405197, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3979,11 +3979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 3, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1021, - "time": 0.163618864292589, + "noteOrder": 914, + "time": 0.14629451395572665, "position": { "x": 4, "y": 0 @@ -4002,11 +4002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 4, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1033, - "time": 0.16554379210779596, + "noteOrder": 914, + "time": 0.14629451395572665, "position": { "x": 5, "y": 0 @@ -4025,11 +4025,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 5, + "lineGroupId": 38, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1045, - "time": 0.1674687199230029, + "noteOrder": 926, + "time": 0.14821944177093357, "position": { "x": 4, "y": 0 @@ -4048,11 +4048,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 6, + "lineGroupId": 38, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1057, - "time": 0.1693936477382098, + "noteOrder": 938, + "time": 0.15014436958614052, "position": { "x": 5, "y": 0 @@ -4071,13 +4071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1057, - "time": 0.1693936477382098, + "noteOrder": 950, + "time": 0.15206929740134742, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4089,18 +4089,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 38, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 962, + "time": 0.15399422521655437, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 1154, - "time": 0.18479307025986524, + "noteOrder": 962, + "time": 0.15399422521655437, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4117,13 +4140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1154, - "time": 0.18479307025986524, + "noteOrder": 974, + "time": 0.1559191530317613, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4135,16 +4158,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1250, - "time": 0.2001924927815207, + "noteOrder": 974, + "time": 0.1559191530317613, "position": { "x": 4, "y": 0 @@ -4158,18 +4181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1250, - "time": 0.2001924927815207, + "noteOrder": 986, + "time": 0.15784408084696824, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4186,13 +4209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1346, - "time": 0.21559191530317615, + "noteOrder": 986, + "time": 0.15784408084696824, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4209,13 +4232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.21559191530317615, + "noteOrder": 986, + "time": 0.15784408084696824, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4232,13 +4255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.21944177093359, + "noteOrder": 998, + "time": 0.15976900866217514, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4250,18 +4273,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 42, "indexInLine": 3, "isSliding": false, - "noteOrder": 1406, - "time": 0.2252165543792108, + "noteOrder": 998, + "time": 0.15976900866217514, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4273,18 +4296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 42, "indexInLine": 4, "isSliding": false, - "noteOrder": 1418, - "time": 0.2271414821944177, + "noteOrder": 1010, + "time": 0.1616939364773821, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4296,18 +4319,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 42, "indexInLine": 5, "isSliding": false, - "noteOrder": 1430, - "time": 0.22906641000962466, + "noteOrder": 1010, + "time": 0.1616939364773821, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4319,18 +4342,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 42, "indexInLine": 6, "isSliding": false, - "noteOrder": 1442, - "time": 0.23099133782483158, + "noteOrder": 1022, + "time": 0.163618864292589, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4342,18 +4365,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1442, - "time": 0.23099133782483158, + "noteOrder": 1034, + "time": 0.16554379210779596, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4370,13 +4393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1466, - "time": 0.23484119345524543, + "noteOrder": 1046, + "time": 0.16746871992300286, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4388,18 +4411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1490, - "time": 0.23869104908565927, + "noteOrder": 1058, + "time": 0.1693936477382098, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4416,13 +4439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1514, - "time": 0.24254090471607315, + "noteOrder": 1058, + "time": 0.1693936477382098, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4439,11 +4462,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 3, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1550, - "time": 0.24831568816169394, + "noteOrder": 1154, + "time": 0.18479307025986524, "position": { "x": 6, "y": 0 @@ -4462,13 +4485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 4, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1562, - "time": 0.2502406159769009, + "noteOrder": 1154, + "time": 0.18479307025986524, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4480,18 +4503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 5, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1574, - "time": 0.2521655437921078, + "noteOrder": 1250, + "time": 0.20019249278152068, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4503,18 +4526,3698 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1250, + "time": 0.20019249278152068, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1346, + "time": 0.21559191530317612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1346, + "time": 0.21559191530317612, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1358, + "time": 0.21751684311838304, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1358, + "time": 0.21751684311838304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21944177093359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21944177093359, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21944177093359, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2213666987487969, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2213666987487969, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1394, + "time": 0.22329162656400384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1394, + "time": 0.22329162656400384, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1406, + "time": 0.22521655437921076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1418, + "time": 0.2271414821944177, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1431, + "time": 0.2290664100096246, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1443, + "time": 0.23099133782483156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.23099133782483156, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1455, + "time": 0.23291626564003848, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1455, + "time": 0.23291626564003848, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1467, + "time": 0.23484119345524543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1467, + "time": 0.23484119345524543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1467, + "time": 0.23484119345524543, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.23676612127045232, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.23676612127045232, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1491, + "time": 0.23869104908565927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1491, + "time": 0.23869104908565927, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.23869104908565927, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2406159769008662, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2406159769008662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1515, + "time": 0.24254090471607315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1515, + "time": 0.24254090471607315, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.24254090471607315, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1527, + "time": 0.24446583253128004, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1527, + "time": 0.24446583253128004, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1539, + "time": 0.246390760346487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1539, + "time": 0.246390760346487, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1551, + "time": 0.24831568816169391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1563, + "time": 0.25024061597690084, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1575, + "time": 0.25216554379210776, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1587, + "time": 0.2540904716073147, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1599, + "time": 0.25601539942252166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2579403272377286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 1623, + "time": 0.2598652550529355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 1635, + "time": 0.26179018286814243, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.27718960538979787, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1743, + "time": 0.2791145332050048, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1743, + "time": 0.2791145332050048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1755, + "time": 0.2810394610202117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1755, + "time": 0.2810394610202117, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1767, + "time": 0.28296438883541863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1767, + "time": 0.28296438883541863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1779, + "time": 0.28488931665062556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1779, + "time": 0.28488931665062556, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.28488931665062556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2887391722810394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2925890279114533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2925890279114533, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1839, + "time": 0.29451395572666017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1839, + "time": 0.29451395572666017, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1851, + "time": 0.29643888354186715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.29836381135707407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1863, + "time": 0.29836381135707407, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1875, + "time": 0.30028873917228105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1887, + "time": 0.30221366698748797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1887, + "time": 0.30221366698748797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.30798845043310874, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3233878729547642, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3233878729547642, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2032, + "time": 0.32531280076997104, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2032, + "time": 0.32531280076997104, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.327237728585178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.32916265640038495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2056, + "time": 0.32916265640038495, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3310875842155919, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3330125120307988, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3330125120307988, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3349374398460057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3349374398460057, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2104, + "time": 0.3368623676612127, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2104, + "time": 0.3368623676612127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3387872954764196, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2128, + "time": 0.3407122232916265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2140, + "time": 0.34263715110683346, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3445620789220404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2164, + "time": 0.34648700673724736, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.34648700673724736, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2176, + "time": 0.3484119345524542, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2176, + "time": 0.3484119345524542, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2188, + "time": 0.35033686236766115, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2188, + "time": 0.35033686236766115, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2200, + "time": 0.35226179018286813, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2200, + "time": 0.35226179018286813, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3580365736284889, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3599615014436958, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3599615014436958, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3618864292589028, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3618864292589028, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3618864292589028, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2272, + "time": 0.36381135707410966, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2272, + "time": 0.36381135707410966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3657362848893166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3657362848893166, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3657362848893166, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2296, + "time": 0.36766121270452357, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2296, + "time": 0.36766121270452357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3695861405197305, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3695861405197305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2332, + "time": 0.37343599615014433, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.37536092396535126, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2344, + "time": 0.37536092396535126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2356, + "time": 0.37728585178055823, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2356, + "time": 0.37728585178055823, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2356, + "time": 0.37728585178055823, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2368, + "time": 0.3792107795957651, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2368, + "time": 0.3792107795957651, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2380, + "time": 0.381135707410972, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2380, + "time": 0.381135707410972, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.38883541867179977, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3907603464870067, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3907603464870067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2452, + "time": 0.39268527430221367, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2452, + "time": 0.39268527430221367, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2464, + "time": 0.39461020211742054, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2464, + "time": 0.39461020211742054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2476, + "time": 0.39653512993262746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2476, + "time": 0.39653512993262746, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2500, + "time": 0.40038498556304136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2524, + "time": 0.4042348411934552, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2524, + "time": 0.4042348411934552, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.40615976900866213, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2536, + "time": 0.40615976900866213, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2548, + "time": 0.4080846968238691, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2560, + "time": 0.410009624639076, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2560, + "time": 0.410009624639076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2573, + "time": 0.4119345524542829, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2585, + "time": 0.4138594802694899, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2585, + "time": 0.4138594802694899, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4157844080846968, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2609, + "time": 0.41770933589990367, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.41770933589990367, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.41963426371511064, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2633, + "time": 0.42155919153031757, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2633, + "time": 0.42155919153031757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2645, + "time": 0.42348411934552455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2645, + "time": 0.42348411934552455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.42348411934552455, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2657, + "time": 0.4254090471607314, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2657, + "time": 0.4254090471607314, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42733397497593834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42733397497593834, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.42733397497593834, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4292589027911453, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2681, + "time": 0.4292589027911453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2693, + "time": 0.43118383060635224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2693, + "time": 0.43118383060635224, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2717, + "time": 0.4350336862367661, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.436958614051973, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.436958614051973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.43888354186718, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2741, + "time": 0.43888354186718, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 6, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.25409047160731474, + "noteOrder": 2741, + "time": 0.43888354186718, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4531,13 +8234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 7, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1598, - "time": 0.25601539942252166, + "noteOrder": 2753, + "time": 0.44080846968238685, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4554,13 +8257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 8, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1610, - "time": 0.2579403272377286, + "noteOrder": 2753, + "time": 0.44080846968238685, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4577,11 +8280,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 9, + "lineGroupId": 116, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1622, - "time": 0.2598652550529355, + "noteOrder": 2765, + "time": 0.4427333974975938, "position": { "x": 6, "y": 0 @@ -4600,11 +8303,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 10, + "lineGroupId": 116, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1634, - "time": 0.26179018286814243, + "noteOrder": 2765, + "time": 0.4427333974975938, "position": { "x": 5, "y": 0 @@ -4623,11 +8326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.2771896053897979, + "noteOrder": 2789, + "time": 0.4465832531280077, "position": { "x": 8, "y": 0 @@ -4646,11 +8349,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, - "time": 0.2848893166506256, + "noteOrder": 2885, + "time": 0.4619826756496631, "position": { "x": 4, "y": 0 @@ -4664,16 +8367,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 122, "indexInLine": 1, "isSliding": false, - "noteOrder": 1802, - "time": 0.28873917228103946, + "noteOrder": 2885, + "time": 0.4619826756496631, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2981, + "time": 0.47738209817131855, "position": { "x": 6, "y": 0 @@ -4692,11 +8418,34 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.47738209817131855, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, - "time": 0.29258902791145336, + "noteOrder": 3077, + "time": 0.492781520692974, "position": { "x": 4, "y": 0 @@ -4710,16 +8459,39 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.492781520692974, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, - "time": 0.29258902791145336, + "noteOrder": 3174, + "time": 0.5081809432146294, "position": { "x": 6, "y": 0 @@ -4733,16 +8505,62 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5081809432146294, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3186, + "time": 0.5101058710298364, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1850, - "time": 0.2964388835418672, + "noteOrder": 3186, + "time": 0.5101058710298364, "position": { "x": 6, "y": 0 @@ -4756,16 +8574,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1874, - "time": 0.30028873917228105, + "noteOrder": 3198, + "time": 0.5120307988450433, "position": { "x": 6, "y": 0 @@ -4784,13 +8602,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1923, - "time": 0.3079884504331088, + "noteOrder": 3198, + "time": 0.5120307988450433, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4807,13 +8625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.32338787295476423, + "noteOrder": 3198, + "time": 0.5120307988450433, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4825,18 +8643,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.32338787295476423, + "noteOrder": 3210, + "time": 0.5139557266602501, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4853,11 +8671,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2043, - "time": 0.327237728585178, + "noteOrder": 3210, + "time": 0.5139557266602501, "position": { "x": 6, "y": 0 @@ -4871,18 +8689,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2067, - "time": 0.3310875842155919, + "noteOrder": 3222, + "time": 0.5158806544754572, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4899,13 +8717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 135, "indexInLine": 5, "isSliding": false, - "noteOrder": 2127, - "time": 0.34071222329162654, + "noteOrder": 3222, + "time": 0.5158806544754572, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4922,13 +8740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 135, "indexInLine": 6, "isSliding": false, - "noteOrder": 2139, - "time": 0.3426371511068335, + "noteOrder": 3234, + "time": 0.5178055822906641, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4945,13 +8763,59 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 135, "indexInLine": 7, "isSliding": false, - "noteOrder": 2151, - "time": 0.34456207892204044, + "noteOrder": 3246, + "time": 0.519730510105871, "position": { - "x": 4, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5216554379210779, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5235803657362849, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4968,13 +8832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 8, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.34648700673724736, + "noteOrder": 3270, + "time": 0.5235803657362849, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4986,18 +8850,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.34648700673724736, + "noteOrder": 3282, + "time": 0.5255052935514918, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -5014,13 +8878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 2, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2187, - "time": 0.35033686236766126, + "noteOrder": 3282, + "time": 0.5255052935514918, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5037,13 +8901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2187, - "time": 0.35033686236766126, + "noteOrder": 3294, + "time": 0.5274302213666987, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5055,18 +8919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2235, - "time": 0.35803657362848895, + "noteOrder": 3294, + "time": 0.5274302213666987, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5083,13 +8947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2259, - "time": 0.3618864292589028, + "noteOrder": 3294, + "time": 0.5274302213666987, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5106,13 +8970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2283, - "time": 0.3657362848893167, + "noteOrder": 3306, + "time": 0.5293551491819056, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5124,18 +8988,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2331, - "time": 0.3734359961501444, + "noteOrder": 3306, + "time": 0.5293551491819056, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5152,13 +9016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2355, - "time": 0.3772858517805583, + "noteOrder": 3318, + "time": 0.5312800769971125, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5170,18 +9034,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2427, - "time": 0.3888354186717998, + "noteOrder": 3318, + "time": 0.5312800769971125, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5198,11 +9062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2475, - "time": 0.3965351299326275, + "noteOrder": 3330, + "time": 0.5332050048123195, "position": { "x": 6, "y": 0 @@ -5216,18 +9080,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2499, - "time": 0.4003849855630414, + "noteOrder": 3342, + "time": 0.5351299326275264, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5239,16 +9103,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 139, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2523, - "time": 0.40423484119345526, + "noteOrder": 3354, + "time": 0.5370548604427333, "position": { "x": 6, "y": 0 @@ -5262,18 +9126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2523, - "time": 0.40423484119345526, + "noteOrder": 3366, + "time": 0.5389797882579402, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5290,11 +9154,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2547, - "time": 0.4080846968238691, + "noteOrder": 3366, + "time": 0.5389797882579402, "position": { "x": 8, "y": 0 @@ -5313,11 +9177,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2571, - "time": 0.41193455245428295, + "noteOrder": 3462, + "time": 0.5543792107795957, "position": { "x": 4, "y": 0 @@ -5331,18 +9195,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.41578440808469685, + "noteOrder": 3462, + "time": 0.5543792107795957, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5354,18 +9218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2619, - "time": 0.4196342637151107, + "noteOrder": 3534, + "time": 0.5659287776708373, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5382,11 +9246,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.42348411934552455, + "noteOrder": 3558, + "time": 0.5697786333012511, "position": { "x": 8, "y": 0 @@ -5405,13 +9269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2668, - "time": 0.4273339749759384, + "noteOrder": 3606, + "time": 0.5774783445620788, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5423,16 +9287,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2716, - "time": 0.4350336862367662, + "noteOrder": 3654, + "time": 0.5851780558229066, "position": { "x": 8, "y": 0 @@ -5451,13 +9315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, - "time": 0.43888354186718, + "noteOrder": 3654, + "time": 0.5851780558229066, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5474,13 +9338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2788, - "time": 0.44658325312800773, + "noteOrder": 3751, + "time": 0.6005774783445621, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5492,18 +9356,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.46198267564966317, + "noteOrder": 3775, + "time": 0.6044273339749759, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5515,18 +9379,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2884, - "time": 0.46198267564966317, + "noteOrder": 3799, + "time": 0.6082771896053897, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5543,13 +9407,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2980, - "time": 0.47738209817131855, + "noteOrder": 3823, + "time": 0.6121270452358036, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5566,13 +9430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2980, - "time": 0.47738209817131855, + "noteOrder": 3847, + "time": 0.6159769008662175, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5584,18 +9448,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3076, - "time": 0.492781520692974, + "noteOrder": 3871, + "time": 0.6198267564966312, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5607,18 +9471,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3076, - "time": 0.492781520692974, + "noteOrder": 3895, + "time": 0.6236766121270452, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5635,13 +9499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3172, - "time": 0.5081809432146295, + "noteOrder": 3991, + "time": 0.6390760346487006, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5658,13 +9522,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.5081809432146295, + "noteOrder": 4003, + "time": 0.6410009624639076, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5676,18 +9540,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3196, - "time": 0.5120307988450433, + "noteOrder": 4003, + "time": 0.6410009624639076, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5704,13 +9568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 3, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3232, - "time": 0.5178055822906642, + "noteOrder": 4063, + "time": 0.6506256015399421, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5722,18 +9586,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 4, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3244, - "time": 0.519730510105871, + "noteOrder": 4075, + "time": 0.6525505293551491, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5745,18 +9609,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 5, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3256, - "time": 0.5216554379210779, + "noteOrder": 4075, + "time": 0.6525505293551491, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5768,16 +9632,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 6, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3268, - "time": 0.5235803657362849, + "noteOrder": 4111, + "time": 0.6583253128007699, "position": { "x": 5, "y": 0 @@ -5791,18 +9655,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3268, - "time": 0.5235803657362849, + "noteOrder": 4123, + "time": 0.6602502406159768, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5819,13 +9683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3292, - "time": 0.5274302213666988, + "noteOrder": 4123, + "time": 0.6602502406159768, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5837,18 +9701,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 3, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3328, - "time": 0.5332050048123196, + "noteOrder": 4135, + "time": 0.6621751684311838, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5865,13 +9729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 4, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3340, - "time": 0.5351299326275265, + "noteOrder": 4183, + "time": 0.6698748796920114, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5888,13 +9752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 5, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3352, - "time": 0.5370548604427334, + "noteOrder": 4207, + "time": 0.6737247353224254, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5911,13 +9775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 6, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.5389797882579404, + "noteOrder": 4279, + "time": 0.6852743022136669, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5934,11 +9798,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.5389797882579404, + "noteOrder": 4376, + "time": 0.7006737247353223, "position": { "x": 8, "y": 0 @@ -5957,13 +9821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.5543792107795958, + "noteOrder": 4388, + "time": 0.7025986525505293, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5980,13 +9844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3461, - "time": 0.5543792107795958, + "noteOrder": 4388, + "time": 0.7025986525505293, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5998,18 +9862,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 3533, - "time": 0.5659287776708374, + "noteOrder": 4448, + "time": 0.7122232916265638, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6026,11 +9890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.5697786333012512, + "noteOrder": 4460, + "time": 0.7141482194417709, "position": { "x": 8, "y": 0 @@ -6044,18 +9908,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3605, - "time": 0.5774783445620789, + "noteOrder": 4460, + "time": 0.7141482194417709, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6067,18 +9931,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 2, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.5851780558229067, + "noteOrder": 4496, + "time": 0.7199230028873916, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6090,18 +9954,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3653, - "time": 0.5851780558229067, + "noteOrder": 4508, + "time": 0.7218479307025986, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6118,13 +9982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3749, - "time": 0.6005774783445621, + "noteOrder": 4508, + "time": 0.7218479307025986, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6141,13 +10005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3773, - "time": 0.6044273339749759, + "noteOrder": 4520, + "time": 0.7237728585178056, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6159,18 +10023,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 3, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3797, - "time": 0.6082771896053898, + "noteOrder": 4568, + "time": 0.7314725697786332, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6182,18 +10046,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 4, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3821, - "time": 0.6121270452358037, + "noteOrder": 4592, + "time": 0.7353224254090471, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6205,18 +10069,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 5, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.6159769008662176, + "noteOrder": 4664, + "time": 0.7468719923002887, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6228,18 +10092,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 6, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3869, - "time": 0.6198267564966314, + "noteOrder": 4760, + "time": 0.762271414821944, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -6256,13 +10120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 7, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3893, - "time": 0.6236766121270452, + "noteOrder": 4772, + "time": 0.7641963426371511, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -6279,13 +10143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3989, - "time": 0.6390760346487007, + "noteOrder": 4772, + "time": 0.7641963426371511, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6302,11 +10166,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4061, - "time": 0.6506256015399422, + "noteOrder": 4832, + "time": 0.7738209817131856, "position": { "x": 2, "y": 0 @@ -6325,13 +10189,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4109, - "time": 0.65832531280077, + "noteOrder": 4844, + "time": 0.7757459095283926, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -6348,13 +10212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4133, - "time": 0.6621751684311838, + "noteOrder": 4844, + "time": 0.7757459095283926, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6366,18 +10230,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 4182, - "time": 0.6698748796920116, + "noteOrder": 4953, + "time": 0.7930702598652549, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6394,13 +10258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.6737247353224255, + "noteOrder": 4965, + "time": 0.794995187680462, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6417,13 +10281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4278, - "time": 0.685274302213667, + "noteOrder": 4965, + "time": 0.794995187680462, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6440,13 +10304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4374, - "time": 0.7006737247353225, + "noteOrder": 5025, + "time": 0.8046198267564965, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6463,13 +10327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4446, - "time": 0.712223291626564, + "noteOrder": 5037, + "time": 0.8065447545717035, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6481,18 +10345,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4494, - "time": 0.7199230028873917, + "noteOrder": 5037, + "time": 0.8065447545717035, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6504,16 +10368,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4518, - "time": 0.7237728585178056, + "noteOrder": 5145, + "time": 0.8238691049085658, "position": { "x": 8, "y": 0 @@ -6532,13 +10396,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4566, - "time": 0.7314725697786334, + "noteOrder": 5157, + "time": 0.8257940327237728, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6555,13 +10419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4590, - "time": 0.7353224254090471, + "noteOrder": 5157, + "time": 0.8257940327237728, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6578,13 +10442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, + "lineGroupId": 239, "indexInLine": 1, "isSliding": false, - "noteOrder": 4662, - "time": 0.7468719923002888, + "noteOrder": 5217, + "time": 0.8354186717998073, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -6596,18 +10460,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, - "time": 0.7622714148219442, + "noteOrder": 5229, + "time": 0.8373435996150144, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -6624,13 +10488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4830, - "time": 0.7738209817131858, + "noteOrder": 5229, + "time": 0.8373435996150144, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6642,18 +10506,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.793070259865255, + "noteOrder": 5337, + "time": 0.8546679499518767, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -6665,18 +10529,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5023, - "time": 0.8046198267564967, + "noteOrder": 5349, + "time": 0.8565928777670837, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -6693,13 +10557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5143, - "time": 0.8238691049085659, + "noteOrder": 5349, + "time": 0.8565928777670837, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6716,11 +10580,11 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5215, - "time": 0.8354186717998076, + "noteOrder": 5409, + "time": 0.8662175168431183, "position": { "x": 8, "y": 0 @@ -6739,11 +10603,11 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5335, - "time": 0.8546679499518768, + "noteOrder": 5421, + "time": 0.8681424446583252, "position": { "x": 8, "y": 0 @@ -6757,18 +10621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5407, - "time": 0.8662175168431184, + "noteOrder": 5421, + "time": 0.8681424446583252, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6786,10 +10650,10 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5455, - "time": 0.8739172281039461, + "noteOrder": 5458, + "time": 0.873917228103946, "position": { "x": 6, "y": 0 @@ -6809,9 +10673,9 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5672, + "noteOrder": 5674, "time": 0.9085659287776708, "position": { "x": 6, @@ -6832,10 +10696,10 @@ }, { "lineGroupId": 253, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5768, - "time": 0.9239653512993263, + "noteOrder": 5770, + "time": 0.9239653512993262, "position": { "x": 4, "y": 0 @@ -6855,10 +10719,10 @@ }, { "lineGroupId": 253, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5816, - "time": 0.931665062560154, + "noteOrder": 5818, + "time": 0.9316650625601539, "position": { "x": 4, "y": 0 @@ -6878,9 +10742,9 @@ }, { "lineGroupId": 253, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9393647738209817, "position": { "x": 2, @@ -6901,9 +10765,9 @@ }, { "lineGroupId": 253, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6056, + "noteOrder": 6059, "time": 0.9701636188642926, "position": { "x": 2, @@ -6924,9 +10788,9 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5482, "time": 0.87776708373436, "position": { "x": 8, @@ -6947,10 +10811,10 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5575, - "time": 0.8931665062560155, + "noteOrder": 5578, + "time": 0.8931665062560153, "position": { "x": 8, "y": 0 @@ -6970,9 +10834,9 @@ }, { "lineGroupId": 254, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5672, + "noteOrder": 5674, "time": 0.9085659287776708, "position": { "x": 6, @@ -6993,10 +10857,10 @@ }, { "lineGroupId": 254, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5768, - "time": 0.9239653512993263, + "noteOrder": 5770, + "time": 0.9239653512993262, "position": { "x": 6, "y": 0 @@ -7016,10 +10880,10 @@ }, { "lineGroupId": 254, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5816, - "time": 0.931665062560154, + "noteOrder": 5818, + "time": 0.9316650625601539, "position": { "x": 4, "y": 0 @@ -7039,9 +10903,9 @@ }, { "lineGroupId": 254, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9393647738209817, "position": { "x": 4, @@ -7062,9 +10926,9 @@ }, { "lineGroupId": 254, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6056, + "noteOrder": 6059, "time": 0.9701636188642926, "position": { "x": 2, diff --git a/tracks/Flow/274_difficulty_1b.json b/tracks/Flow/274_difficulty_1b.json index 0b17b7bd..c4558279 100644 --- a/tracks/Flow/274_difficulty_1b.json +++ b/tracks/Flow/274_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.0192492781520693, + "time": 0.019249278152069296, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 168, - "time": 0.026948989412897018, + "time": 0.026948989412897015, "position": { "x": 2, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.03464870067372474, + "time": 0.03464870067372473, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 240, - "time": 0.0384985563041386, + "time": 0.03849855630413859, "position": { "x": 6, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.05004812319538018, + "noteOrder": 313, + "time": 0.05004812319538017, "position": { "x": 5, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 336, - "time": 0.053897978825794036, + "noteOrder": 337, + "time": 0.05389797882579403, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 360, - "time": 0.057747834456207896, + "noteOrder": 361, + "time": 0.05774783445620789, "position": { "x": 2, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 433, - "time": 0.06929740134744948, + "time": 0.06929740134744947, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 457, - "time": 0.07314725697786334, + "time": 0.07314725697786333, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 505, - "time": 0.08084696823869106, + "time": 0.08084696823869104, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 601, - "time": 0.0962463907603465, + "time": 0.09624639076034648, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 625, - "time": 0.10009624639076035, + "time": 0.10009624639076034, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 649, - "time": 0.10394610202117421, + "time": 0.1039461020211742, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 697, - "time": 0.11164581328200193, + "time": 0.11164581328200192, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 721, - "time": 0.11549566891241579, + "time": 0.11549566891241578, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 793, - "time": 0.12704523580365737, + "time": 0.12704523580365734, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 841, - "time": 0.1347449470644851, + "time": 0.13474494706448506, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1424446583253128, + "noteOrder": 890, + "time": 0.14244465832531278, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.15014436958614052, "position": { "x": 3, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15784408084696824, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.16554379210779596, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.17324350336862368, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.1809432146294514, "position": { "x": 4, @@ -614,7 +614,7 @@ }, { "noteOrder": 1178, - "time": 0.18864292589027915, + "time": 0.18864292589027912, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1226, - "time": 0.19634263715110686, + "time": 0.19634263715110684, "position": { "x": 2, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1250, - "time": 0.2001924927815207, + "time": 0.20019249278152068, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1298, - "time": 0.20789220404234843, + "time": 0.2078922040423484, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1346, - "time": 0.21559191530317615, + "time": 0.21559191530317612, "position": { "x": 6, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1394, - "time": 0.22329162656400386, + "time": 0.22329162656400384, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.23099133782483158, + "noteOrder": 1443, + "time": 0.23099133782483156, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.23484119345524543, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.23869104908565927, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.24254090471607315, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1778, - "time": 0.2848893166506256, + "noteOrder": 1779, + "time": 0.28488931665062556, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1850, - "time": 0.2964388835418672, + "noteOrder": 1851, + "time": 0.29643888354186715, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.30028873917228105, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.327237728585178, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3310875842155919, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.34648700673724736, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.3618864292589028, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.3772858517805583, + "noteOrder": 2356, + "time": 0.37728585178055823, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3926852743022137, + "noteOrder": 2452, + "time": 0.39268527430221367, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.40423484119345526, + "noteOrder": 2524, + "time": 0.4042348411934552, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.4080846968238691, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.42348411934552455, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.43888354186718, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4504331087584216, + "noteOrder": 2813, + "time": 0.4504331087584215, "position": { "x": 5, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.4542829643888354, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.465832531280077, + "noteOrder": 2909, + "time": 0.46583253128007696, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.46968238691049086, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.48123195380173245, + "noteOrder": 3005, + "time": 0.4812319538017324, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.4850818094321463, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.5004812319538018, + "noteOrder": 3125, + "time": 0.5004812319538017, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.631376323387873, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.6352261790182868, + "noteOrder": 3967, + "time": 0.6352261790182867, "position": { "x": 8, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6390760346487007, + "noteOrder": 3991, + "time": 0.6390760346487006, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4013, - "time": 0.6429258902791146, + "noteOrder": 4015, + "time": 0.6429258902791145, "position": { "x": 8, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4037, - "time": 0.6467757459095285, + "noteOrder": 4039, + "time": 0.6467757459095284, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4061, - "time": 0.6506256015399422, + "noteOrder": 4063, + "time": 0.6506256015399421, "position": { "x": 8, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.654475457170356, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4109, - "time": 0.65832531280077, + "noteOrder": 4111, + "time": 0.6583253128007699, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4133, + "noteOrder": 4135, "time": 0.6621751684311838, "position": { "x": 2, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.6660250240615977, + "noteOrder": 4159, + "time": 0.6660250240615976, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6698748796920116, + "noteOrder": 4183, + "time": 0.6698748796920114, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4206, - "time": 0.6737247353224255, + "noteOrder": 4207, + "time": 0.6737247353224254, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4231, "time": 0.6775745909528392, "position": { "x": 8, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.6814244465832531, + "noteOrder": 4255, + "time": 0.681424446583253, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.685274302213667, + "noteOrder": 4279, + "time": 0.6852743022136669, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.6891241578440809, + "noteOrder": 4304, + "time": 0.6891241578440808, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.6929740134744947, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.6968238691049086, + "noteOrder": 4352, + "time": 0.6968238691049085, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4374, - "time": 0.7006737247353225, + "noteOrder": 4376, + "time": 0.7006737247353223, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4398, - "time": 0.7045235803657364, + "noteOrder": 4400, + "time": 0.7045235803657363, "position": { "x": 2, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.7083734359961501, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4446, - "time": 0.712223291626564, + "noteOrder": 4448, + "time": 0.7122232916265638, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4470, - "time": 0.7160731472569779, + "noteOrder": 4472, + "time": 0.7160731472569778, "position": { "x": 5, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.7199230028873917, + "noteOrder": 4496, + "time": 0.7199230028873916, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4518, + "noteOrder": 4520, "time": 0.7237728585178056, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.7276227141482196, + "noteOrder": 4544, + "time": 0.7276227141482193, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7314725697786334, + "noteOrder": 4568, + "time": 0.7314725697786332, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.7353224254090471, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.739172281039461, "position": { "x": 8, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4638, - "time": 0.7430221366698749, + "noteOrder": 4640, + "time": 0.7430221366698747, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.7468719923002888, + "noteOrder": 4664, + "time": 0.7468719923002887, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.7507218479307026, + "noteOrder": 4688, + "time": 0.7507218479307025, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.7545717035611166, + "noteOrder": 4712, + "time": 0.7545717035611165, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4734, - "time": 0.7584215591915304, + "noteOrder": 4736, + "time": 0.7584215591915302, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4758, - "time": 0.7622714148219442, + "noteOrder": 4760, + "time": 0.762271414821944, "position": { "x": 8, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.766121270452358, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.769971126082772, + "noteOrder": 4808, + "time": 0.7699711260827719, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.7738209817131858, + "noteOrder": 4832, + "time": 0.7738209817131856, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.7776708373435997, + "noteOrder": 4857, + "time": 0.7776708373435995, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4878, - "time": 0.7815206929740135, + "noteOrder": 4881, + "time": 0.7815206929740134, "position": { "x": 5, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4903, - "time": 0.7853705486044275, + "noteOrder": 4905, + "time": 0.7853705486044273, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.7892204042348412, + "noteOrder": 4929, + "time": 0.7892204042348411, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.793070259865255, + "noteOrder": 4953, + "time": 0.7930702598652549, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7969201154956689, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.8007699711260828, + "noteOrder": 5001, + "time": 0.8007699711260827, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5023, - "time": 0.8046198267564967, + "noteOrder": 5025, + "time": 0.8046198267564965, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.8084696823869105, + "noteOrder": 5049, + "time": 0.8084696823869104, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5167, - "time": 0.8277189605389799, + "noteOrder": 5169, + "time": 0.8277189605389798, "position": { "x": 5, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5191, - "time": 0.8315688161693937, + "noteOrder": 5193, + "time": 0.8315688161693936, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.8354186717998076, + "noteOrder": 5217, + "time": 0.8354186717998073, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5239, - "time": 0.8392685274302214, + "noteOrder": 5241, + "time": 0.8392685274302213, "position": { "x": 3, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8431183830606352, + "noteOrder": 5265, + "time": 0.8431183830606351, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5335, - "time": 0.8546679499518768, + "noteOrder": 5337, + "time": 0.8546679499518767, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.8662175168431184, + "noteOrder": 5409, + "time": 0.8662175168431183, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.8700673724735324, + "noteOrder": 5434, + "time": 0.8700673724735322, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5527, - "time": 0.8854667949951878, + "noteOrder": 5530, + "time": 0.8854667949951875, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5623, - "time": 0.9008662175168431, + "noteOrder": 5626, + "time": 0.900866217516843, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5720, - "time": 0.9162656400384986, + "noteOrder": 5722, + "time": 0.9162656400384984, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5816, - "time": 0.931665062560154, + "noteOrder": 5818, + "time": 0.9316650625601539, "position": { "x": 4, "y": 0 @@ -2496,7 +2496,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.015399422521655437, @@ -2519,10 +2519,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.026948989412897018, + "time": 0.026948989412897015, "position": { "x": 4, "y": 0 @@ -2542,7 +2542,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.030798845043310874, @@ -2565,7 +2565,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, "time": 0.04234841193455245, @@ -2588,9 +2588,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, + "noteOrder": 289, "time": 0.04619826756496631, "position": { "x": 7, @@ -2611,10 +2611,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 360, - "time": 0.057747834456207896, + "noteOrder": 361, + "time": 0.05774783445620789, "position": { "x": 4, "y": 0 @@ -2634,7 +2634,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.06159769008662175, @@ -2657,7 +2657,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.06544754571703561, @@ -2680,10 +2680,10 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 433, - "time": 0.06929740134744948, + "time": 0.06929740134744947, "position": { "x": 3, "y": 0 @@ -2703,10 +2703,10 @@ }, { "lineGroupId": 13, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 457, - "time": 0.07314725697786334, + "time": 0.07314725697786333, "position": { "x": 4, "y": 0 @@ -2726,10 +2726,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.0769971126082772, + "time": 0.07699711260827719, "position": { "x": 4, "y": 0 @@ -2749,7 +2749,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, "time": 0.08854667949951876, @@ -2772,7 +2772,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.09239653512993262, @@ -2795,10 +2795,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.10394610202117421, + "time": 0.1039461020211742, "position": { "x": 3, "y": 0 @@ -2818,10 +2818,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.10779595765158807, + "time": 0.10779595765158806, "position": { "x": 4, "y": 0 @@ -2841,7 +2841,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 745, "time": 0.11934552454282964, @@ -2864,7 +2864,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.1231953801732435, @@ -2887,10 +2887,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, - "time": 0.1347449470644851, + "time": 0.13474494706448506, "position": { "x": 3, "y": 0 @@ -2910,10 +2910,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.13859480269489896, + "noteOrder": 866, + "time": 0.13859480269489893, "position": { "x": 5, "y": 0 @@ -2933,10 +2933,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.1424446583253128, + "noteOrder": 890, + "time": 0.14244465832531278, "position": { "x": 5, "y": 0 @@ -2956,10 +2956,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, - "time": 0.14629451395572668, + "noteOrder": 914, + "time": 0.14629451395572665, "position": { "x": 5, "y": 0 @@ -2979,9 +2979,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, + "noteOrder": 938, "time": 0.15014436958614052, "position": { "x": 5, @@ -3002,10 +3002,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1539942252165544, + "noteOrder": 962, + "time": 0.15399422521655437, "position": { "x": 5, "y": 0 @@ -3025,9 +3025,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, + "noteOrder": 986, "time": 0.15784408084696824, "position": { "x": 5, @@ -3048,10 +3048,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1009, - "time": 0.16169393647738212, + "noteOrder": 1010, + "time": 0.1616939364773821, "position": { "x": 5, "y": 0 @@ -3071,9 +3071,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.16554379210779596, "position": { "x": 5, @@ -3094,9 +3094,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.1693936477382098, "position": { "x": 6, @@ -3117,9 +3117,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.17324350336862368, "position": { "x": 6, @@ -3140,9 +3140,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.17709335899903753, "position": { "x": 6, @@ -3163,9 +3163,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.1809432146294514, "position": { "x": 6, @@ -3186,7 +3186,7 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, "time": 0.18479307025986524, @@ -3209,10 +3209,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1178, - "time": 0.18864292589027915, + "time": 0.18864292589027912, "position": { "x": 4, "y": 0 @@ -3232,10 +3232,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1202, - "time": 0.192492781520693, + "time": 0.19249278152069296, "position": { "x": 4, "y": 0 @@ -3255,10 +3255,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1226, - "time": 0.19634263715110686, + "time": 0.19634263715110684, "position": { "x": 4, "y": 0 @@ -3278,9 +3278,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.246390760346487, "position": { "x": 6, @@ -3301,9 +3301,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.26179018286814243, "position": { "x": 6, @@ -3324,9 +3324,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.246390760346487, "position": { "x": 4, @@ -3347,9 +3347,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.26179018286814243, "position": { "x": 4, @@ -3370,10 +3370,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.2771896053897979, + "noteOrder": 1731, + "time": 0.27718960538979787, "position": { "x": 7, "y": 0 @@ -3392,11 +3392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1754, - "time": 0.28103946102021177, + "noteOrder": 1743, + "time": 0.2791145332050048, "position": { "x": 7, "y": 0 @@ -3410,18 +3410,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1826, - "time": 0.29258902791145336, + "noteOrder": 1743, + "time": 0.2791145332050048, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3438,13 +3438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, - "time": 0.30028873917228105, + "noteOrder": 1755, + "time": 0.2810394610202117, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3456,18 +3456,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.3079884504331088, + "noteOrder": 1767, + "time": 0.28296438883541863, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3484,13 +3484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1947, - "time": 0.3118383060635226, + "noteOrder": 1767, + "time": 0.28296438883541863, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3502,18 +3502,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.32338787295476423, + "noteOrder": 1827, + "time": 0.2925890279114533, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3525,16 +3525,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.3310875842155919, + "noteOrder": 1875, + "time": 0.30028873917228105, "position": { "x": 5, "y": 0 @@ -3548,18 +3548,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.3387872954764196, + "noteOrder": 1923, + "time": 0.30798845043310874, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3571,16 +3571,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.3426371511068335, + "noteOrder": 1935, + "time": 0.3099133782483156, "position": { "x": 3, "y": 0 @@ -3599,13 +3599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2211, - "time": 0.35418671799807505, + "noteOrder": 1935, + "time": 0.3099133782483156, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3622,13 +3622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2235, - "time": 0.35803657362848895, + "noteOrder": 1947, + "time": 0.3118383060635226, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3645,11 +3645,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2307, - "time": 0.3695861405197305, + "noteOrder": 1959, + "time": 0.3137632338787295, "position": { "x": 3, "y": 0 @@ -3663,18 +3663,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2331, - "time": 0.3734359961501444, + "noteOrder": 1959, + "time": 0.3137632338787295, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3691,11 +3691,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.384985563041386, + "noteOrder": 2020, + "time": 0.3233878729547642, "position": { "x": 3, "y": 0 @@ -3714,13 +3714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.3888354186717998, + "noteOrder": 2068, + "time": 0.3310875842155919, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3732,18 +3732,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.4003849855630414, + "noteOrder": 2116, + "time": 0.3387872954764196, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3755,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2547, - "time": 0.4080846968238691, + "noteOrder": 2128, + "time": 0.3407122232916265, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3778,18 +3778,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2595, - "time": 0.41578440808469685, + "noteOrder": 2128, + "time": 0.3407122232916265, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3806,13 +3806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2619, - "time": 0.4196342637151107, + "noteOrder": 2140, + "time": 0.34263715110683346, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3829,13 +3829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.4311838306063523, + "noteOrder": 2152, + "time": 0.3445620789220404, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3847,18 +3847,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2716, - "time": 0.4350336862367662, + "noteOrder": 2152, + "time": 0.3445620789220404, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3875,13 +3875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.44658325312800773, + "noteOrder": 2212, + "time": 0.35418671799807505, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3893,18 +3893,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.4542829643888354, + "noteOrder": 2224, + "time": 0.3561116458132819, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3916,18 +3916,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.46198267564966317, + "noteOrder": 2224, + "time": 0.3561116458132819, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3944,13 +3944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 80, "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.46968238691049086, + "noteOrder": 2236, + "time": 0.3580365736284889, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3962,16 +3962,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.47738209817131855, + "noteOrder": 2248, + "time": 0.3599615014436958, "position": { "x": 7, "y": 0 @@ -3990,13 +3990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3028, - "time": 0.4850818094321463, + "noteOrder": 2248, + "time": 0.3599615014436958, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4013,11 +4013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3076, - "time": 0.492781520692974, + "noteOrder": 2308, + "time": 0.3695861405197305, "position": { "x": 3, "y": 0 @@ -4036,13 +4036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3100, - "time": 0.4966313763233879, + "noteOrder": 2320, + "time": 0.37151106833493736, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4054,18 +4054,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3268, - "time": 0.5235803657362849, + "noteOrder": 2320, + "time": 0.37151106833493736, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4077,18 +4077,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.5389797882579404, + "noteOrder": 2332, + "time": 0.37343599615014433, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4105,11 +4105,839 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.37536092396535126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2344, + "time": 0.37536092396535126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.3849855630413859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3869104908565928, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3869104908565928, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.38883541867179977, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3907603464870067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3907603464870067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.40038498556304136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2548, + "time": 0.4080846968238691, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4157844080846968, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2609, + "time": 0.41770933589990367, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.41770933589990367, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.41963426371511064, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2633, + "time": 0.42155919153031757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2633, + "time": 0.42155919153031757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.43118383060635224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2705, + "time": 0.43310875842155916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2705, + "time": 0.43310875842155916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2717, + "time": 0.4350336862367661, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.436958614051973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.436958614051973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.4465832531280077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.4542829643888354, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.4619826756496631, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2933, + "time": 0.46968238691049086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.47738209817131855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3029, + "time": 0.4850818094321463, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.492781520692974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3089, + "time": 0.4947064485081809, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3089, + "time": 0.4947064485081809, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.49663137632338783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3113, + "time": 0.49855630413859475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3113, + "time": 0.49855630413859475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.5389797882579404, + "noteOrder": 3270, + "time": 0.5235803657362849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5389797882579402, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5389797882579402, "position": { "x": 4, "y": 0 @@ -4129,10 +4957,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.5543792107795958, + "noteOrder": 3462, + "time": 0.5543792107795957, "position": { "x": 4, "y": 0 @@ -4152,10 +4980,10 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.5543792107795958, + "noteOrder": 3462, + "time": 0.5543792107795957, "position": { "x": 7, "y": 0 @@ -4175,10 +5003,10 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.5697786333012512, + "noteOrder": 3558, + "time": 0.5697786333012511, "position": { "x": 7, "y": 0 @@ -4198,10 +5026,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.5697786333012512, + "noteOrder": 3558, + "time": 0.5697786333012511, "position": { "x": 6, "y": 0 @@ -4221,10 +5049,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3653, - "time": 0.5851780558229067, + "noteOrder": 3654, + "time": 0.5851780558229066, "position": { "x": 6, "y": 0 @@ -4244,10 +5072,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.5851780558229067, + "noteOrder": 3654, + "time": 0.5851780558229066, "position": { "x": 5, "y": 0 @@ -4267,9 +5095,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, + "noteOrder": 3751, "time": 0.6005774783445621, "position": { "x": 5, @@ -4290,9 +5118,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3749, + "noteOrder": 3751, "time": 0.6005774783445621, "position": { "x": 3, @@ -4313,10 +5141,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.6159769008662176, + "noteOrder": 3847, + "time": 0.6159769008662175, "position": { "x": 3, "y": 0 @@ -4336,10 +5164,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3845, - "time": 0.6159769008662176, + "noteOrder": 3847, + "time": 0.6159769008662175, "position": { "x": 6, "y": 0 @@ -4359,9 +5187,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.631376323387873, "position": { "x": 6, @@ -4382,10 +5210,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5143, - "time": 0.8238691049085659, + "noteOrder": 5145, + "time": 0.8238691049085658, "position": { "x": 7, "y": 0 @@ -4405,10 +5233,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5191, - "time": 0.8315688161693937, + "noteOrder": 5193, + "time": 0.8315688161693936, "position": { "x": 5, "y": 0 @@ -4428,10 +5256,10 @@ }, { "lineGroupId": 165, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5215, - "time": 0.8354186717998076, + "noteOrder": 5217, + "time": 0.8354186717998073, "position": { "x": 6, "y": 0 @@ -4451,10 +5279,10 @@ }, { "lineGroupId": 165, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5239, - "time": 0.8392685274302214, + "noteOrder": 5241, + "time": 0.8392685274302213, "position": { "x": 5, "y": 0 @@ -4474,9 +5302,9 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.8469682386910491, "position": { "x": 3, @@ -4495,12 +5323,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5301, + "time": 0.8488931665062559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5301, + "time": 0.8488931665062559, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5313, + "time": 0.8508180943214628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5311, - "time": 0.8508180943214629, + "noteOrder": 5325, + "time": 0.8527430221366699, "position": { "x": 3, "y": 0 @@ -4518,12 +5415,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5325, + "time": 0.8527430221366699, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5361, + "time": 0.8585178055822906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5359, - "time": 0.8585178055822907, + "noteOrder": 5373, + "time": 0.8604427333974974, "position": { "x": 3, "y": 0 @@ -4541,12 +5484,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5373, + "time": 0.8604427333974974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5385, + "time": 0.8623676612127045, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5383, - "time": 0.8623676612127046, + "noteOrder": 5397, + "time": 0.8642925890279114, "position": { "x": 3, "y": 0 @@ -4564,11 +5553,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5397, + "time": 0.8642925890279114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5482, "time": 0.87776708373436, "position": { "x": 4, @@ -4589,10 +5601,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5527, - "time": 0.8854667949951878, + "noteOrder": 5530, + "time": 0.8854667949951875, "position": { "x": 4, "y": 0 @@ -4612,10 +5624,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, - "time": 0.8931665062560155, + "noteOrder": 5578, + "time": 0.8931665062560153, "position": { "x": 6, "y": 0 @@ -4635,10 +5647,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5623, - "time": 0.9008662175168431, + "noteOrder": 5626, + "time": 0.900866217516843, "position": { "x": 6, "y": 0 @@ -4658,9 +5670,9 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5672, + "noteOrder": 5674, "time": 0.9085659287776708, "position": { "x": 4, @@ -4681,10 +5693,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5720, - "time": 0.9162656400384986, + "noteOrder": 5722, + "time": 0.9162656400384984, "position": { "x": 4, "y": 0 @@ -4704,10 +5716,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5768, - "time": 0.9239653512993263, + "noteOrder": 5770, + "time": 0.9239653512993262, "position": { "x": 6, "y": 0 @@ -4727,10 +5739,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5816, - "time": 0.931665062560154, + "noteOrder": 5818, + "time": 0.9316650625601539, "position": { "x": 6, "y": 0 @@ -4750,9 +5762,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9393647738209817, "position": { "x": 4, @@ -4773,10 +5785,10 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6032, - "time": 0.9663137632338787, + "noteOrder": 6035, + "time": 0.9663137632338786, "position": { "x": 4, "y": 0 @@ -4796,9 +5808,9 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9393647738209817, "position": { "x": 6, @@ -4819,10 +5831,10 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6032, - "time": 0.9663137632338787, + "noteOrder": 6035, + "time": 0.9663137632338786, "position": { "x": 6, "y": 0 diff --git a/tracks/Flow/info.json b/tracks/Flow/info.json index 3c7a4ec0..1b772cdc 100644 --- a/tracks/Flow/info.json +++ b/tracks/Flow/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Flow", - "SongLength": "121.469388", + "SongLength": "111.516735", "SongAuthorName": "NUU$HI", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1a.json b/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1a.json index 93d44298..e01639fc 100644 --- a/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1a.json +++ b/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 585, - "time": 0.08226221079691518, + "time": 0.08226221079691516, "position": { "x": 7, "y": 0 @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 633, + "noteOrder": 634, "time": 0.08911739502999143, "position": { "x": 6, @@ -74,7 +74,7 @@ }, { "noteOrder": 731, - "time": 0.10282776349614398, + "time": 0.10282776349614396, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 780, - "time": 0.10968294772922023, + "time": 0.10968294772922021, "position": { "x": 5, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 828, - "time": 0.1165381319622965, + "noteOrder": 829, + "time": 0.11653813196229648, "position": { "x": 5, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 974, + "noteOrder": 975, "time": 0.13710368466152528, "position": { "x": 7, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1023, - "time": 0.14395886889460158, + "noteOrder": 1024, + "time": 0.14395886889460155, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1047, - "time": 0.14738646101113967, + "noteOrder": 1048, + "time": 0.1473864610111397, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1169, - "time": 0.16452442159383035, + "noteOrder": 1170, + "time": 0.16452442159383032, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1194, - "time": 0.1679520137103685, + "time": 0.16795201371036847, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1218, - "time": 0.17137960582690662, + "noteOrder": 1219, + "time": 0.1713796058269066, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1242, - "time": 0.17480719794344476, + "noteOrder": 1243, + "time": 0.17480719794344474, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1437, + "noteOrder": 1438, "time": 0.2022279348757498, "position": { "x": 7, @@ -414,7 +414,7 @@ }, { "noteOrder": 1535, - "time": 0.2159383033419023, + "time": 0.21593830334190234, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.2467866323907455, "position": { "x": 5, @@ -454,7 +454,7 @@ }, { "noteOrder": 1803, - "time": 0.2536418166238218, + "time": 0.25364181662382174, "position": { "x": 5, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.26049700085689803, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.2639245929734362, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2046, - "time": 0.28791773778920315, + "noteOrder": 2047, + "time": 0.2879177377892031, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2119, + "noteOrder": 2120, "time": 0.2982005141388175, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2241, - "time": 0.31533847472150817, + "noteOrder": 2242, + "time": 0.3153384747215081, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2265, - "time": 0.3187660668380463, + "noteOrder": 2266, + "time": 0.31876606683804626, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2314, + "noteOrder": 2315, "time": 0.32562125107112255, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2363, - "time": 0.33247643530419885, + "noteOrder": 2364, + "time": 0.3324764353041988, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2412, + "noteOrder": 2413, "time": 0.3393316195372751, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2509, - "time": 0.35304198800342756, + "noteOrder": 2510, + "time": 0.3530419880034276, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2558, + "noteOrder": 2559, "time": 0.35989717223650386, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.363324764353042, "position": { "x": 7, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2594, - "time": 0.3650385604113111, + "noteOrder": 2595, + "time": 0.36503856041131105, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.36675235646958015, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.3684661525278492, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.3838903170522708, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.3838903170522708, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2753, - "time": 0.3873179091688089, + "noteOrder": 2754, + "time": 0.38731790916880887, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2753, - "time": 0.3873179091688089, + "noteOrder": 2754, + "time": 0.38731790916880887, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2777, + "noteOrder": 2778, "time": 0.3907455012853471, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2801, - "time": 0.3941730934018852, + "noteOrder": 2803, + "time": 0.39417309340188517, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2801, - "time": 0.3941730934018852, + "noteOrder": 2803, + "time": 0.39417309340188517, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.39760068551842337, + "noteOrder": 2827, + "time": 0.3976006855184233, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.39760068551842337, + "noteOrder": 2827, + "time": 0.3976006855184233, "position": { "x": 5, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.40102827763496146, + "noteOrder": 2851, + "time": 0.4010282776349614, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2876, "time": 0.4044558697514996, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2876, "time": 0.4044558697514996, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2899, - "time": 0.40788346186803776, + "noteOrder": 2900, + "time": 0.4078834618680377, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2899, - "time": 0.40788346186803776, + "noteOrder": 2900, + "time": 0.4078834618680377, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2923, - "time": 0.4113110539845759, + "noteOrder": 2924, + "time": 0.41131105398457585, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2948, - "time": 0.41473864610111405, + "noteOrder": 2949, + "time": 0.41473864610111394, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2948, - "time": 0.41473864610111405, + "noteOrder": 2949, + "time": 0.41473864610111394, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2972, - "time": 0.4181662382176521, + "noteOrder": 2973, + "time": 0.41816623821765214, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2972, - "time": 0.4181662382176521, + "noteOrder": 2973, + "time": 0.41816623821765214, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2996, + "noteOrder": 2998, "time": 0.42159383033419023, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3021, + "noteOrder": 3022, "time": 0.4250214224507284, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3021, + "noteOrder": 3022, "time": 0.4250214224507284, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.42844901456726653, + "noteOrder": 3046, + "time": 0.4284490145672665, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.42844901456726653, + "noteOrder": 3046, + "time": 0.4284490145672665, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3069, - "time": 0.4318766066838046, + "noteOrder": 3071, + "time": 0.4318766066838047, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3142, - "time": 0.44215938303341906, + "noteOrder": 3144, + "time": 0.442159383033419, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3167, - "time": 0.4455869751499572, + "noteOrder": 3168, + "time": 0.44558697514995715, "position": { "x": 6, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3191, + "noteOrder": 3192, "time": 0.4490145672664953, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3240, - "time": 0.4558697514995716, + "noteOrder": 3241, + "time": 0.45586975149957154, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3264, - "time": 0.45929734361610974, + "noteOrder": 3266, + "time": 0.4592973436161097, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.46272493573264784, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3558, "time": 0.5004284490145673, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3654, + "noteOrder": 3656, "time": 0.5141388174807198, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3680, "time": 0.517566409597258, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3751, + "noteOrder": 3753, "time": 0.5278491859468724, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3849, + "noteOrder": 3850, "time": 0.5415595544130248, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3873, + "noteOrder": 3875, "time": 0.544987146529563, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.5518423307626393, + "noteOrder": 3924, + "time": 0.5518423307626392, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4019, - "time": 0.5655526992287918, + "noteOrder": 4021, + "time": 0.5655526992287917, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4117, - "time": 0.5792630676949444, + "noteOrder": 4119, + "time": 0.5792630676949443, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4190, - "time": 0.5895458440445587, + "noteOrder": 4192, + "time": 0.5895458440445588, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4239, + "noteOrder": 4240, "time": 0.596401028277635, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4287, + "noteOrder": 4289, "time": 0.6032562125107113, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4312, - "time": 0.6066838046272495, + "noteOrder": 4314, + "time": 0.6066838046272494, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4336, - "time": 0.6101113967437876, + "noteOrder": 4338, + "time": 0.6101113967437874, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4360, + "noteOrder": 4362, "time": 0.6135389888603257, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4385, - "time": 0.6169665809768637, + "noteOrder": 4387, + "time": 0.6169665809768639, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4409, - "time": 0.620394173093402, + "noteOrder": 4411, + "time": 0.6203941730934018, "position": { "x": 5, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4434, + "noteOrder": 4435, "time": 0.62382176520994, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4458, - "time": 0.6272493573264782, + "noteOrder": 4460, + "time": 0.6272493573264781, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4482, - "time": 0.6306769494430163, + "noteOrder": 4484, + "time": 0.6306769494430162, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4507, - "time": 0.6341045415595545, + "noteOrder": 4508, + "time": 0.6341045415595544, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4531, - "time": 0.6375321336760926, + "noteOrder": 4533, + "time": 0.6375321336760925, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4555, - "time": 0.6409597257926308, + "noteOrder": 4557, + "time": 0.6409597257926307, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4580, + "noteOrder": 4582, "time": 0.6443873179091688, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.6478149100257069, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4628, + "noteOrder": 4630, "time": 0.6512425021422451, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4653, + "noteOrder": 4655, "time": 0.6546700942587832, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4702, + "noteOrder": 4703, "time": 0.6615252784918595, "position": { "x": 5, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4726, - "time": 0.6649528706083977, + "noteOrder": 4728, + "time": 0.6649528706083976, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4750, + "noteOrder": 4752, "time": 0.6683804627249358, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.675235646958012, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4823, + "noteOrder": 4825, "time": 0.6786632390745502, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4848, - "time": 0.6820908311910883, + "noteOrder": 4850, + "time": 0.6820908311910884, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4898, "time": 0.6889460154241646, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4921, - "time": 0.6923736075407028, + "noteOrder": 4923, + "time": 0.6923736075407027, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4945, - "time": 0.6958011996572409, + "noteOrder": 4947, + "time": 0.6958011996572407, "position": { "x": 3, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5091, + "noteOrder": 5093, "time": 0.7163667523564696, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5140, - "time": 0.7232219365895459, + "noteOrder": 5142, + "time": 0.7232219365895458, "position": { "x": 7, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5213, + "noteOrder": 5215, "time": 0.7335047129391603, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5225, - "time": 0.7352185089974295, + "noteOrder": 5227, + "time": 0.7352185089974292, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5237, + "noteOrder": 5240, "time": 0.7369323050556984, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5286, + "noteOrder": 5288, "time": 0.7437874892887747, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5311, - "time": 0.7472150814053128, + "noteOrder": 5313, + "time": 0.7472150814053127, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5335, - "time": 0.750642673521851, + "noteOrder": 5337, + "time": 0.7506426735218509, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5432, - "time": 0.7643530419880036, + "noteOrder": 5435, + "time": 0.7643530419880035, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5481, - "time": 0.7712082262210797, + "noteOrder": 5483, + "time": 0.7712082262210798, "position": { "x": 3, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5530, + "noteOrder": 5532, "time": 0.778063410454156, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5603, - "time": 0.7883461868037704, + "noteOrder": 5605, + "time": 0.7883461868037703, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5615, - "time": 0.7900599828620395, + "noteOrder": 5617, + "time": 0.7900599828620394, "position": { "x": 7, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5627, + "noteOrder": 5630, "time": 0.7917737789203085, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5676, + "noteOrder": 5678, "time": 0.7986289631533848, "position": { "x": 5, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5700, - "time": 0.8020565552699229, + "noteOrder": 5703, + "time": 0.8020565552699228, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5725, + "noteOrder": 5727, "time": 0.805484147386461, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5749, + "noteOrder": 5751, "time": 0.8089117395029992, "position": { "x": 7, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5773, - "time": 0.8123393316195373, + "noteOrder": 5776, + "time": 0.8123393316195372, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5798, - "time": 0.8157669237360755, + "noteOrder": 5800, + "time": 0.8157669237360754, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5798, - "time": 0.8157669237360755, + "noteOrder": 5800, + "time": 0.8157669237360754, "position": { "x": 6, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8191945158526136, "position": { "x": 3, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8191945158526136, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5944, - "time": 0.8363324764353042, + "noteOrder": 5946, + "time": 0.8363324764353043, "position": { "x": 4, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5968, - "time": 0.8397600685518424, + "noteOrder": 5971, + "time": 0.8397600685518423, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5993, + "noteOrder": 5995, "time": 0.8431876606683805, "position": { "x": 4, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6139, - "time": 0.8637532133676092, + "noteOrder": 6141, + "time": 0.8637532133676094, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6187, + "noteOrder": 6190, "time": 0.8706083976006855, "position": { "x": 7, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6212, + "noteOrder": 6214, "time": 0.8740359897172237, "position": { "x": 4, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6261, - "time": 0.8808911739503, + "noteOrder": 6263, + "time": 0.8808911739502999, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6309, - "time": 0.8877463581833763, + "noteOrder": 6312, + "time": 0.8877463581833762, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6407, - "time": 0.9014567266495287, + "noteOrder": 6409, + "time": 0.9014567266495288, "position": { "x": 4, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6455, + "noteOrder": 6458, "time": 0.908311910882605, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9151670951156813, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6529, - "time": 0.9185946872322195, + "noteOrder": 6531, + "time": 0.9185946872322194, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6529, - "time": 0.9185946872322195, + "noteOrder": 6531, + "time": 0.9185946872322194, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9220222793487576, + "noteOrder": 6556, + "time": 0.9220222793487575, "position": { "x": 5, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6577, + "noteOrder": 6580, "time": 0.9254498714652957, "position": { "x": 3, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6577, + "noteOrder": 6580, "time": 0.9254498714652957, "position": { "x": 7, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6602, - "time": 0.9288774635818338, + "noteOrder": 6604, + "time": 0.9288774635818339, "position": { "x": 5, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6821, + "noteOrder": 6824, "time": 0.9597257926306769, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6870, + "noteOrder": 6872, "time": 0.9665809768637532, "position": { "x": 5, @@ -2976,10 +2976,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, - "time": 0.027420736932305057, + "time": 0.027420736932305054, "position": { "x": 6, "y": 0 @@ -2999,7 +2999,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 244, "time": 0.03427592116538132, @@ -3022,10 +3022,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, - "time": 0.04113110539845759, + "time": 0.04113110539845758, "position": { "x": 4, "y": 0 @@ -3045,7 +3045,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 341, "time": 0.04798628963153385, @@ -3068,10 +3068,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 390, - "time": 0.054841473864610114, + "time": 0.05484147386461011, "position": { "x": 6, "y": 0 @@ -3091,9 +3091,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 438, + "noteOrder": 439, "time": 0.061696658097686374, "position": { "x": 6, @@ -3114,7 +3114,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 487, "time": 0.06855184233076264, @@ -3137,7 +3137,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 536, "time": 0.07540702656383891, @@ -3160,7 +3160,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1072, "time": 0.15081405312767782, @@ -3183,10 +3183,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1096, - "time": 0.15424164524421594, + "noteOrder": 1097, + "time": 0.15424164524421596, "position": { "x": 6, "y": 0 @@ -3206,10 +3206,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1096, - "time": 0.15424164524421594, + "noteOrder": 1097, + "time": 0.15424164524421596, "position": { "x": 4, "y": 0 @@ -3229,10 +3229,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1121, - "time": 0.15766923736075408, + "time": 0.15766923736075406, "position": { "x": 4, "y": 0 @@ -3252,10 +3252,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1121, - "time": 0.15766923736075408, + "time": 0.15766923736075406, "position": { "x": 6, "y": 0 @@ -3275,7 +3275,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1145, "time": 0.1610968294772922, @@ -3298,7 +3298,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1267, "time": 0.17823479005998286, @@ -3321,9 +3321,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1291, + "noteOrder": 1292, "time": 0.181662382176521, "position": { "x": 4, @@ -3344,9 +3344,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1291, + "noteOrder": 1292, "time": 0.181662382176521, "position": { "x": 6, @@ -3367,9 +3367,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1315, + "noteOrder": 1316, "time": 0.18508997429305912, "position": { "x": 6, @@ -3390,9 +3390,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1315, + "noteOrder": 1316, "time": 0.18508997429305912, "position": { "x": 4, @@ -3413,7 +3413,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1340, "time": 0.18851756640959727, @@ -3436,9 +3436,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.1919451585261354, "position": { "x": 6, @@ -3459,10 +3459,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1376, - "time": 0.19365895458440446, + "noteOrder": 1377, + "time": 0.19365895458440444, "position": { "x": 5, "y": 0 @@ -3482,7 +3482,7 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1389, "time": 0.19537275064267354, @@ -3505,10 +3505,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1413, - "time": 0.19880034275921168, + "time": 0.19880034275921166, "position": { "x": 4, "y": 0 @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1425, - "time": 0.20051413881748073, + "noteOrder": 1426, + "time": 0.2005141388174807, "position": { "x": 5, "y": 0 @@ -3551,9 +3551,9 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1437, + "noteOrder": 1438, "time": 0.2022279348757498, "position": { "x": 4, @@ -3574,10 +3574,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1462, - "time": 0.20565552699228795, + "time": 0.20565552699228792, "position": { "x": 4, "y": 0 @@ -3597,10 +3597,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1474, - "time": 0.20736932305055703, + "time": 0.20736932305055697, "position": { "x": 5, "y": 0 @@ -3620,10 +3620,10 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1486, - "time": 0.20908311910882604, + "noteOrder": 1487, + "time": 0.20908311910882607, "position": { "x": 4, "y": 0 @@ -3643,10 +3643,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1486, - "time": 0.20908311910882604, + "noteOrder": 1487, + "time": 0.20908311910882607, "position": { "x": 6, "y": 0 @@ -3666,9 +3666,9 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1498, + "noteOrder": 1499, "time": 0.21079691516709512, "position": { "x": 5, @@ -3689,9 +3689,9 @@ }, { "lineGroupId": 34, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1510, + "noteOrder": 1511, "time": 0.2125107112253642, "position": { "x": 6, @@ -3712,9 +3712,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1510, + "noteOrder": 1511, "time": 0.2125107112253642, "position": { "x": 4, @@ -3735,10 +3735,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1523, - "time": 0.21422450728363326, + "time": 0.21422450728363324, "position": { "x": 5, "y": 0 @@ -3758,10 +3758,10 @@ }, { "lineGroupId": 35, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1535, - "time": 0.2159383033419023, + "time": 0.21593830334190234, "position": { "x": 4, "y": 0 @@ -3781,10 +3781,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1559, - "time": 0.21936589545844046, + "noteOrder": 1560, + "time": 0.21936589545844043, "position": { "x": 4, "y": 0 @@ -3804,10 +3804,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1608, - "time": 0.22622107969151672, + "time": 0.2262210796915167, "position": { "x": 4, "y": 0 @@ -3827,10 +3827,10 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1632, - "time": 0.22964867180805487, + "noteOrder": 1633, + "time": 0.22964867180805484, "position": { "x": 6, "y": 0 @@ -3850,10 +3850,10 @@ }, { "lineGroupId": 37, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1656, - "time": 0.233076263924593, + "noteOrder": 1657, + "time": 0.23307626392459296, "position": { "x": 6, "y": 0 @@ -3873,10 +3873,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1583, - "time": 0.2227934875749786, + "noteOrder": 1584, + "time": 0.22279348757497858, "position": { "x": 6, "y": 0 @@ -3896,10 +3896,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1608, - "time": 0.22622107969151672, + "time": 0.2262210796915167, "position": { "x": 6, "y": 0 @@ -3919,10 +3919,10 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1632, - "time": 0.22964867180805487, + "noteOrder": 1633, + "time": 0.22964867180805484, "position": { "x": 4, "y": 0 @@ -3942,10 +3942,10 @@ }, { "lineGroupId": 38, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1656, - "time": 0.233076263924593, + "noteOrder": 1657, + "time": 0.23307626392459296, "position": { "x": 4, "y": 0 @@ -3965,9 +3965,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.27420736932305056, "position": { "x": 7, @@ -3987,11 +3987,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1973, - "time": 0.2776349614395887, + "noteOrder": 1962, + "time": 0.2759211653813196, "position": { "x": 7, "y": 0 @@ -4005,18 +4005,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1998, - "time": 0.28106255355612686, + "noteOrder": 1962, + "time": 0.2759211653813196, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4033,13 +4033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2022, - "time": 0.284490145672665, + "noteOrder": 1974, + "time": 0.2776349614395887, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4051,18 +4051,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2095, - "time": 0.29477292202227934, + "noteOrder": 1974, + "time": 0.2776349614395887, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4079,13 +4079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2144, - "time": 0.30162810625535563, + "noteOrder": 1974, + "time": 0.2776349614395887, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4102,13 +4102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2168, - "time": 0.3050556983718938, + "noteOrder": 1986, + "time": 0.27934875749785776, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4120,18 +4120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2192, - "time": 0.30848329048843187, + "noteOrder": 1986, + "time": 0.27934875749785776, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4148,13 +4148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2217, - "time": 0.31191088260497, + "noteOrder": 1998, + "time": 0.28106255355612686, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4166,18 +4166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2290, - "time": 0.3221936589545844, + "noteOrder": 1998, + "time": 0.28106255355612686, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4194,11 +4194,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2339, - "time": 0.3290488431876607, + "noteOrder": 1998, + "time": 0.28106255355612686, "position": { "x": 7, "y": 0 @@ -4217,13 +4217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2363, - "time": 0.33247643530419885, + "noteOrder": 2011, + "time": 0.28277634961439585, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4240,13 +4240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2387, - "time": 0.335904027420737, + "noteOrder": 2011, + "time": 0.28277634961439585, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4258,18 +4258,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2412, - "time": 0.3393316195372751, + "noteOrder": 2023, + "time": 0.28449014567266495, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4281,16 +4281,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2436, - "time": 0.34275921165381323, + "noteOrder": 2023, + "time": 0.28449014567266495, "position": { "x": 4, "y": 0 @@ -4309,13 +4309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2460, - "time": 0.3461868037703514, + "noteOrder": 2023, + "time": 0.28449014567266495, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4327,18 +4327,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2460, - "time": 0.3461868037703514, + "noteOrder": 2035, + "time": 0.286203941730934, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4355,13 +4355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2485, - "time": 0.34961439588688953, + "noteOrder": 2035, + "time": 0.286203941730934, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4378,13 +4378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2485, - "time": 0.34961439588688953, + "noteOrder": 2047, + "time": 0.2879177377892031, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4396,18 +4396,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2509, - "time": 0.35304198800342756, + "noteOrder": 2047, + "time": 0.2879177377892031, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4419,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2533, - "time": 0.3564695801199657, + "noteOrder": 2096, + "time": 0.2947729220222794, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4442,18 +4442,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2558, - "time": 0.35989717223650386, + "noteOrder": 2108, + "time": 0.2964867180805484, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4465,18 +4465,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3118, - "time": 0.4387317909168809, + "noteOrder": 2108, + "time": 0.2964867180805484, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4488,18 +4488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3142, - "time": 0.44215938303341906, + "noteOrder": 2120, + "time": 0.2982005141388175, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4511,18 +4511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 2, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3216, - "time": 0.45244215938303345, + "noteOrder": 2120, + "time": 0.2982005141388175, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4534,18 +4534,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3216, - "time": 0.45244215938303345, + "noteOrder": 2145, + "time": 0.30162810625535563, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4557,18 +4557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3240, - "time": 0.4558697514995716, + "noteOrder": 2157, + "time": 0.3033419023136247, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4580,16 +4580,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3313, - "time": 0.466152527849186, + "noteOrder": 2157, + "time": 0.3033419023136247, "position": { "x": 4, "y": 0 @@ -4603,18 +4603,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3410, - "time": 0.47986289631533846, + "noteOrder": 2169, + "time": 0.3050556983718937, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4631,11 +4631,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3435, - "time": 0.4832904884318766, + "noteOrder": 2169, + "time": 0.3050556983718937, "position": { "x": 6, "y": 0 @@ -4654,11 +4654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3459, - "time": 0.48671808054841476, + "noteOrder": 2169, + "time": 0.3050556983718937, "position": { "x": 3, "y": 0 @@ -4672,16 +4672,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, - "time": 0.47986289631533846, + "noteOrder": 2181, + "time": 0.3067694944301628, "position": { "x": 3, "y": 0 @@ -4700,13 +4700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3435, - "time": 0.4832904884318766, + "noteOrder": 2181, + "time": 0.3067694944301628, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4723,11 +4723,34 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3459, - "time": 0.48671808054841476, + "noteOrder": 2193, + "time": 0.3084832904884319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2193, + "time": 0.3084832904884319, "position": { "x": 6, "y": 0 @@ -4746,11 +4769,57 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3508, - "time": 0.493573264781491, + "noteOrder": 2193, + "time": 0.3084832904884319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2206, + "time": 0.3101970865467009, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2206, + "time": 0.3101970865467009, "position": { "x": 4, "y": 0 @@ -4769,11 +4838,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3557, - "time": 0.5004284490145673, + "noteOrder": 2218, + "time": 0.31191088260497, "position": { "x": 4, "y": 0 @@ -4792,13 +4861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3605, - "time": 0.5072836332476436, + "noteOrder": 2218, + "time": 0.31191088260497, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4810,18 +4879,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3654, - "time": 0.5141388174807198, + "noteOrder": 2218, + "time": 0.31191088260497, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4838,13 +4907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3703, - "time": 0.5209940017137961, + "noteOrder": 2230, + "time": 0.31362467866323906, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4856,18 +4925,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3751, - "time": 0.5278491859468724, + "noteOrder": 2230, + "time": 0.31362467866323906, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4879,18 +4948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3800, - "time": 0.5347043701799487, + "noteOrder": 2242, + "time": 0.3153384747215081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4907,13 +4976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3849, - "time": 0.5415595544130248, + "noteOrder": 2242, + "time": 0.3153384747215081, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4930,11 +4999,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3898, - "time": 0.5484147386461011, + "noteOrder": 2291, + "time": 0.3221936589545844, "position": { "x": 3, "y": 0 @@ -4953,11 +5022,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3922, - "time": 0.5518423307626393, + "noteOrder": 2303, + "time": 0.32390745501285345, "position": { "x": 3, "y": 0 @@ -4976,13 +5045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3946, - "time": 0.5552699228791774, + "noteOrder": 2303, + "time": 0.32390745501285345, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4999,13 +5068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3995, - "time": 0.5621251071122537, + "noteOrder": 2315, + "time": 0.32562125107112255, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5017,16 +5086,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2315, + "time": 0.32562125107112255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 4019, - "time": 0.5655526992287918, + "noteOrder": 2340, + "time": 0.32904884318766064, "position": { "x": 7, "y": 0 @@ -5045,13 +5137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 62, "indexInLine": 2, "isSliding": false, - "noteOrder": 4044, - "time": 0.56898029134533, + "noteOrder": 2364, + "time": 0.3324764353041988, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5068,11 +5160,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4093, - "time": 0.5758354755784063, + "noteOrder": 2388, + "time": 0.33590402742073694, "position": { "x": 3, "y": 0 @@ -5091,13 +5183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4117, - "time": 0.5792630676949444, + "noteOrder": 2413, + "time": 0.3393316195372751, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5114,13 +5206,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 2, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4141, - "time": 0.5826906598114824, + "noteOrder": 2437, + "time": 0.3427592116538132, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5132,18 +5224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4677, - "time": 0.6580976863753214, + "noteOrder": 2461, + "time": 0.3461868037703513, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5155,18 +5247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 4702, - "time": 0.6615252784918595, + "noteOrder": 2461, + "time": 0.3461868037703513, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5183,13 +5275,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 67, "indexInLine": 2, "isSliding": false, - "noteOrder": 4775, - "time": 0.671808054841474, + "noteOrder": 2486, + "time": 0.3496143958868895, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5206,13 +5298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4775, - "time": 0.671808054841474, + "noteOrder": 2486, + "time": 0.3496143958868895, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5229,13 +5321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4799, - "time": 0.675235646958012, + "noteOrder": 2510, + "time": 0.3530419880034276, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5252,13 +5344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4872, - "time": 0.6855184233076265, + "noteOrder": 2535, + "time": 0.3564695801199657, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5270,18 +5362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4872, - "time": 0.6855184233076265, + "noteOrder": 2559, + "time": 0.35989717223650386, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5298,11 +5390,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 4896, - "time": 0.6889460154241646, + "noteOrder": 3119, + "time": 0.43873179091688086, "position": { "x": 3, "y": 0 @@ -5321,13 +5413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 104, "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, - "time": 0.6923736075407028, + "noteOrder": 3144, + "time": 0.442159383033419, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5344,13 +5436,2405 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 104, "indexInLine": 3, "isSliding": false, - "noteOrder": 4969, - "time": 0.6992287917737791, + "noteOrder": 3217, + "time": 0.4524421593830334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4524421593830334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3241, + "time": 0.45586975149957154, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3314, + "time": 0.4661525278491859, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3412, + "time": 0.47986289631533846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.4832904884318766, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3461, + "time": 0.48671808054841476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3412, + "time": 0.47986289631533846, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.4832904884318766, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3461, + "time": 0.48671808054841476, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3509, + "time": 0.493573264781491, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5004284490145673, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.5072836332476435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3656, + "time": 0.5141388174807198, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3704, + "time": 0.5209940017137961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3753, + "time": 0.5278491859468724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3802, + "time": 0.5347043701799485, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3850, + "time": 0.5415595544130248, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3899, + "time": 0.5484147386461011, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3924, + "time": 0.5518423307626392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3948, + "time": 0.5552699228791774, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3997, + "time": 0.5621251071122537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4021, + "time": 0.5655526992287917, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4045, + "time": 0.5689802913453299, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4094, + "time": 0.5758354755784062, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4119, + "time": 0.5792630676949443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4143, + "time": 0.5826906598114824, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4679, + "time": 0.6580976863753213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4703, + "time": 0.6615252784918595, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4777, + "time": 0.6718080548414739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4777, + "time": 0.6718080548414739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.675235646958012, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4874, + "time": 0.6855184233076264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4874, + "time": 0.6855184233076264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4898, + "time": 0.6889460154241646, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4923, + "time": 0.6923736075407027, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4972, + "time": 0.699228791773779, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5069, + "time": 0.7129391602399314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5081, + "time": 0.7146529562982005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5081, + "time": 0.7146529562982005, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5093, + "time": 0.7163667523564696, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5093, + "time": 0.7163667523564696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7197943444730077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5130, + "time": 0.7215081405312768, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5130, + "time": 0.7215081405312768, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5142, + "time": 0.7232219365895458, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5142, + "time": 0.7232219365895458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5166, + "time": 0.726649528706084, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5179, + "time": 0.7283633247643531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5179, + "time": 0.7283633247643531, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5191, + "time": 0.7300771208226221, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5191, + "time": 0.7300771208226221, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5191, + "time": 0.7300771208226221, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5203, + "time": 0.7317909168808913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5203, + "time": 0.7317909168808913, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5215, + "time": 0.7335047129391603, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5215, + "time": 0.7335047129391603, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5264, + "time": 0.7403598971722365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7437874892887747, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5337, + "time": 0.7506426735218509, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5361, + "time": 0.7540702656383891, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5374, + "time": 0.7557840616966581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5374, + "time": 0.7557840616966581, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5386, + "time": 0.7574978577549272, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5386, + "time": 0.7574978577549272, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5386, + "time": 0.7574978577549272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5398, + "time": 0.7592116538131963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5398, + "time": 0.7592116538131963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5410, + "time": 0.7609254498714653, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5410, + "time": 0.7609254498714653, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5410, + "time": 0.7609254498714653, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5422, + "time": 0.7626392459297343, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5422, + "time": 0.7626392459297343, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5435, + "time": 0.7643530419880035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5435, + "time": 0.7643530419880035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5459, + "time": 0.7677806341045416, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5471, + "time": 0.7694944301628106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5471, + "time": 0.7694944301628106, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5483, + "time": 0.7712082262210798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5483, + "time": 0.7712082262210798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5508, + "time": 0.7746358183376177, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5520, + "time": 0.7763496143958869, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5520, + "time": 0.7763496143958869, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5532, + "time": 0.778063410454156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5532, + "time": 0.778063410454156, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5556, + "time": 0.7814910025706941, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5569, + "time": 0.7832047986289632, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5569, + "time": 0.7832047986289632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5581, + "time": 0.7849185946872322, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5581, + "time": 0.7849185946872322, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5581, + "time": 0.7849185946872322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5593, + "time": 0.7866323907455013, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5593, + "time": 0.7866323907455013, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5605, + "time": 0.7883461868037703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5605, + "time": 0.7883461868037703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5654, + "time": 0.7952013710368466, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5678, + "time": 0.7986289631533848, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5727, + "time": 0.805484147386461, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5849, + "time": 0.8226221079691517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5873, + "time": 0.8260497000856898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5922, + "time": 0.8329048843187661, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5873, + "time": 0.8260497000856898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5922, + "time": 0.8329048843187661, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6044, + "time": 0.8500428449014568, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6056, + "time": 0.8517566409597257, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5367,13 +7851,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5067, - "time": 0.7129391602399314, + "noteOrder": 6056, + "time": 0.8517566409597257, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5385,18 +7869,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5116, - "time": 0.7197943444730077, + "noteOrder": 6068, + "time": 0.8534704370179949, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5413,13 +7897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5164, - "time": 0.726649528706084, + "noteOrder": 6068, + "time": 0.8534704370179949, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5431,18 +7915,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5189, - "time": 0.7300771208226222, + "noteOrder": 6068, + "time": 0.8534704370179949, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5454,18 +7938,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5262, - "time": 0.7403598971722365, + "noteOrder": 6080, + "time": 0.8551842330762639, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5482,13 +7966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5286, - "time": 0.7437874892887747, + "noteOrder": 6080, + "time": 0.8551842330762639, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5505,13 +7989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5335, - "time": 0.750642673521851, + "noteOrder": 6093, + "time": 0.856898029134533, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5528,13 +8012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5359, - "time": 0.7540702656383891, + "noteOrder": 6093, + "time": 0.856898029134533, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5546,16 +8030,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.7574978577549273, + "noteOrder": 6093, + "time": 0.856898029134533, "position": { "x": 3, "y": 0 @@ -5569,16 +8053,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5408, - "time": 0.7609254498714654, + "noteOrder": 6105, + "time": 0.8586118251928021, "position": { "x": 3, "y": 0 @@ -5597,13 +8081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5457, - "time": 0.7677806341045416, + "noteOrder": 6105, + "time": 0.8586118251928021, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5620,13 +8104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5505, - "time": 0.7746358183376179, + "noteOrder": 6117, + "time": 0.8603256212510711, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5638,18 +8122,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5554, - "time": 0.7814910025706941, + "noteOrder": 6117, + "time": 0.8603256212510711, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5666,11 +8150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5578, - "time": 0.7849185946872322, + "noteOrder": 6117, + "time": 0.8603256212510711, "position": { "x": 3, "y": 0 @@ -5689,11 +8173,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5652, - "time": 0.7952013710368467, + "noteOrder": 6129, + "time": 0.8620394173093402, "position": { "x": 3, "y": 0 @@ -5707,18 +8191,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5676, - "time": 0.7986289631533848, + "noteOrder": 6129, + "time": 0.8620394173093402, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5730,18 +8214,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5725, - "time": 0.805484147386461, + "noteOrder": 6141, + "time": 0.8637532133676094, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5753,18 +8237,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5846, - "time": 0.8226221079691518, + "noteOrder": 6141, + "time": 0.8637532133676094, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5776,18 +8260,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 5871, - "time": 0.8260497000856899, + "noteOrder": 6166, + "time": 0.8671808054841473, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5799,18 +8283,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 216, "indexInLine": 2, "isSliding": false, - "noteOrder": 5920, - "time": 0.8329048843187661, + "noteOrder": 6214, + "time": 0.8740359897172237, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5822,18 +8306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5871, - "time": 0.8260497000856899, + "noteOrder": 6239, + "time": 0.8774635818337617, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5845,18 +8329,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5920, - "time": 0.8329048843187661, + "noteOrder": 6263, + "time": 0.8808911739502999, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5868,18 +8352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6041, - "time": 0.8500428449014568, + "noteOrder": 6288, + "time": 0.884318766066838, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5891,18 +8375,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6066, - "time": 0.853470437017995, + "noteOrder": 6312, + "time": 0.8877463581833762, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5919,13 +8403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6090, - "time": 0.8568980291345331, + "noteOrder": 6336, + "time": 0.8911739502999143, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5942,13 +8426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6114, - "time": 0.8603256212510713, + "noteOrder": 6361, + "time": 0.8946015424164524, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5960,18 +8444,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6163, - "time": 0.8671808054841474, + "noteOrder": 6361, + "time": 0.8946015424164524, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5988,11 +8472,11 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6212, - "time": 0.8740359897172237, + "noteOrder": 6385, + "time": 0.8980291345329906, "position": { "x": 5, "y": 0 @@ -6011,13 +8495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6236, - "time": 0.8774635818337618, + "noteOrder": 6385, + "time": 0.8980291345329906, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6034,13 +8518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6261, - "time": 0.8808911739503, + "noteOrder": 6409, + "time": 0.9014567266495288, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6057,11 +8541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6285, - "time": 0.8843187660668381, + "noteOrder": 6434, + "time": 0.9048843187660668, "position": { "x": 7, "y": 0 @@ -6080,13 +8564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6309, - "time": 0.8877463581833763, + "noteOrder": 6446, + "time": 0.9065981148243358, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6103,13 +8587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6334, - "time": 0.8911739502999144, + "noteOrder": 6446, + "time": 0.9065981148243358, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6121,16 +8605,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6358, - "time": 0.8946015424164524, + "noteOrder": 6458, + "time": 0.908311910882605, "position": { "x": 5, "y": 0 @@ -6144,18 +8628,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6358, - "time": 0.8946015424164524, + "noteOrder": 6458, + "time": 0.908311910882605, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6172,13 +8656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 6382, - "time": 0.8980291345329906, + "noteOrder": 6482, + "time": 0.9117395029991431, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6190,18 +8674,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6382, - "time": 0.8980291345329906, + "noteOrder": 6495, + "time": 0.9134532990574122, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6218,11 +8702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6407, - "time": 0.9014567266495287, + "noteOrder": 6495, + "time": 0.9134532990574122, "position": { "x": 5, "y": 0 @@ -6241,13 +8725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6431, - "time": 0.9048843187660669, + "noteOrder": 6507, + "time": 0.9151670951156813, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6259,16 +8743,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6480, - "time": 0.9117395029991432, + "noteOrder": 6507, + "time": 0.9151670951156813, "position": { "x": 3, "y": 0 @@ -6288,10 +8772,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6626, - "time": 0.932305055698372, + "noteOrder": 6629, + "time": 0.9323050556983719, "position": { "x": 7, "y": 0 @@ -6311,10 +8795,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6723, - "time": 0.9460154241645246, + "noteOrder": 6726, + "time": 0.9460154241645244, "position": { "x": 7, "y": 0 @@ -6334,10 +8818,10 @@ }, { "lineGroupId": 239, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6772, - "time": 0.9528706083976008, + "noteOrder": 6775, + "time": 0.9528706083976007, "position": { "x": 5, "y": 0 @@ -6357,10 +8841,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6626, - "time": 0.932305055698372, + "noteOrder": 6629, + "time": 0.9323050556983719, "position": { "x": 4, "y": 0 @@ -6380,10 +8864,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6772, - "time": 0.9528706083976008, + "noteOrder": 6775, + "time": 0.9528706083976007, "position": { "x": 4, "y": 0 diff --git a/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1b.json b/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1b.json index 6f327fdc..69a5924a 100644 --- a/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1b.json +++ b/tracks/Forgetting Machine (RoughSketch Remix)/313_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 974, + "noteOrder": 975, "time": 0.13710368466152528, "position": { "x": 4, @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 1023, - "time": 0.14395886889460158, + "noteOrder": 1024, + "time": 0.14395886889460155, "position": { "x": 4, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 1096, - "time": 0.15424164524421594, + "noteOrder": 1097, + "time": 0.15424164524421596, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 1121, - "time": 0.15766923736075408, + "time": 0.15766923736075406, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1169, - "time": 0.16452442159383035, + "noteOrder": 1170, + "time": 0.16452442159383032, "position": { "x": 6, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1218, - "time": 0.17137960582690662, + "noteOrder": 1219, + "time": 0.1713796058269066, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1291, + "noteOrder": 1292, "time": 0.181662382176521, "position": { "x": 4, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1315, + "noteOrder": 1316, "time": 0.18508997429305912, "position": { "x": 6, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.2467866323907455, "position": { "x": 5, @@ -234,7 +234,7 @@ }, { "noteOrder": 1803, - "time": 0.2536418166238218, + "time": 0.25364181662382174, "position": { "x": 5, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.26049700085689803, "position": { "x": 5, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2046, - "time": 0.28791773778920315, + "noteOrder": 2047, + "time": 0.2879177377892031, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2095, - "time": 0.29477292202227934, + "noteOrder": 2096, + "time": 0.2947729220222794, "position": { "x": 3, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2168, - "time": 0.3050556983718938, + "noteOrder": 2169, + "time": 0.3050556983718937, "position": { "x": 5, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2217, + "noteOrder": 2218, "time": 0.31191088260497, "position": { "x": 5, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2241, - "time": 0.31533847472150817, + "noteOrder": 2242, + "time": 0.3153384747215081, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2265, - "time": 0.3187660668380463, + "noteOrder": 2266, + "time": 0.31876606683804626, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2290, + "noteOrder": 2291, "time": 0.3221936589545844, "position": { "x": 7, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2436, - "time": 0.34275921165381323, + "noteOrder": 2437, + "time": 0.3427592116538132, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2460, - "time": 0.3461868037703514, + "noteOrder": 2461, + "time": 0.3461868037703513, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2485, - "time": 0.34961439588688953, + "noteOrder": 2486, + "time": 0.3496143958868895, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2558, + "noteOrder": 2559, "time": 0.35989717223650386, "position": { "x": 5, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.36675235646958015, "position": { "x": 5, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.3838903170522708, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2753, - "time": 0.3873179091688089, + "noteOrder": 2754, + "time": 0.38731790916880887, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2777, + "noteOrder": 2778, "time": 0.3907455012853471, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2801, - "time": 0.3941730934018852, + "noteOrder": 2803, + "time": 0.39417309340188517, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.39760068551842337, + "noteOrder": 2827, + "time": 0.3976006855184233, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.40102827763496146, + "noteOrder": 2851, + "time": 0.4010282776349614, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2876, "time": 0.4044558697514996, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2899, - "time": 0.40788346186803776, + "noteOrder": 2900, + "time": 0.4078834618680377, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2923, - "time": 0.4113110539845759, + "noteOrder": 2924, + "time": 0.41131105398457585, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2948, - "time": 0.41473864610111405, + "noteOrder": 2949, + "time": 0.41473864610111394, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2972, - "time": 0.4181662382176521, + "noteOrder": 2973, + "time": 0.41816623821765214, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2996, + "noteOrder": 2998, "time": 0.42159383033419023, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3021, + "noteOrder": 3022, "time": 0.4250214224507284, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.42844901456726653, + "noteOrder": 3046, + "time": 0.4284490145672665, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3069, - "time": 0.4318766066838046, + "noteOrder": 3071, + "time": 0.4318766066838047, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3118, - "time": 0.4387317909168809, + "noteOrder": 3119, + "time": 0.43873179091688086, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3142, - "time": 0.44215938303341906, + "noteOrder": 3144, + "time": 0.442159383033419, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3191, + "noteOrder": 3192, "time": 0.4490145672664953, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3216, - "time": 0.45244215938303345, + "noteOrder": 3217, + "time": 0.4524421593830334, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3240, - "time": 0.4558697514995716, + "noteOrder": 3241, + "time": 0.45586975149957154, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.46272493573264784, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3654, + "noteOrder": 3656, "time": 0.5141388174807198, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3849, + "noteOrder": 3850, "time": 0.5415595544130248, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4287, + "noteOrder": 4289, "time": 0.6032562125107113, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4336, - "time": 0.6101113967437876, + "noteOrder": 4338, + "time": 0.6101113967437874, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4385, - "time": 0.6169665809768637, + "noteOrder": 4387, + "time": 0.6169665809768639, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4434, + "noteOrder": 4435, "time": 0.62382176520994, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4482, - "time": 0.6306769494430163, + "noteOrder": 4484, + "time": 0.6306769494430162, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4531, - "time": 0.6375321336760926, + "noteOrder": 4533, + "time": 0.6375321336760925, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4580, + "noteOrder": 4582, "time": 0.6443873179091688, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4628, + "noteOrder": 4630, "time": 0.6512425021422451, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4677, - "time": 0.6580976863753214, + "noteOrder": 4679, + "time": 0.6580976863753213, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4726, - "time": 0.6649528706083977, + "noteOrder": 4728, + "time": 0.6649528706083976, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4775, - "time": 0.671808054841474, + "noteOrder": 4777, + "time": 0.6718080548414739, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.675235646958012, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4823, + "noteOrder": 4825, "time": 0.6786632390745502, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4872, - "time": 0.6855184233076265, + "noteOrder": 4874, + "time": 0.6855184233076264, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4898, "time": 0.6889460154241646, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4921, - "time": 0.6923736075407028, + "noteOrder": 4923, + "time": 0.6923736075407027, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4945, - "time": 0.6958011996572409, + "noteOrder": 4947, + "time": 0.6958011996572407, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5164, + "noteOrder": 5166, "time": 0.726649528706084, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.7300771208226222, + "noteOrder": 5191, + "time": 0.7300771208226221, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5213, + "noteOrder": 5215, "time": 0.7335047129391603, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5237, + "noteOrder": 5240, "time": 0.7369323050556984, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5359, + "noteOrder": 5361, "time": 0.7540702656383891, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.7574978577549273, + "noteOrder": 5386, + "time": 0.7574978577549272, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.7609254498714654, + "noteOrder": 5410, + "time": 0.7609254498714653, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5554, + "noteOrder": 5556, "time": 0.7814910025706941, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5578, + "noteOrder": 5581, "time": 0.7849185946872322, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5603, - "time": 0.7883461868037704, + "noteOrder": 5605, + "time": 0.7883461868037703, "position": { "x": 4, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5627, + "noteOrder": 5630, "time": 0.7917737789203085, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5944, - "time": 0.8363324764353042, + "noteOrder": 5946, + "time": 0.8363324764353043, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5968, - "time": 0.8397600685518424, + "noteOrder": 5971, + "time": 0.8397600685518423, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6139, - "time": 0.8637532133676092, + "noteOrder": 6141, + "time": 0.8637532133676094, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6163, - "time": 0.8671808054841474, + "noteOrder": 6166, + "time": 0.8671808054841473, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6187, + "noteOrder": 6190, "time": 0.8706083976006855, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6212, + "noteOrder": 6214, "time": 0.8740359897172237, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6358, + "noteOrder": 6361, "time": 0.8946015424164524, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6407, - "time": 0.9014567266495287, + "noteOrder": 6409, + "time": 0.9014567266495288, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6529, - "time": 0.9185946872322195, + "noteOrder": 6531, + "time": 0.9185946872322194, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9220222793487576, + "noteOrder": 6556, + "time": 0.9220222793487575, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6577, + "noteOrder": 6580, "time": 0.9254498714652957, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6602, - "time": 0.9288774635818338, + "noteOrder": 6604, + "time": 0.9288774635818339, "position": { "x": 6, "y": 0 @@ -1796,10 +1796,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, - "time": 0.08226221079691518, + "time": 0.08226221079691516, "position": { "x": 6, "y": 0 @@ -1819,9 +1819,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 633, + "noteOrder": 634, "time": 0.08911739502999143, "position": { "x": 6, @@ -1842,7 +1842,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 682, "time": 0.0959725792630677, @@ -1865,10 +1865,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 731, - "time": 0.10282776349614398, + "time": 0.10282776349614396, "position": { "x": 4, "y": 0 @@ -1888,10 +1888,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 780, - "time": 0.10968294772922023, + "time": 0.10968294772922021, "position": { "x": 6, "y": 0 @@ -1911,10 +1911,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 828, - "time": 0.1165381319622965, + "noteOrder": 829, + "time": 0.11653813196229648, "position": { "x": 6, "y": 0 @@ -1934,9 +1934,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.1919451585261354, "position": { "x": 4, @@ -1957,10 +1957,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1413, - "time": 0.19880034275921168, + "time": 0.19880034275921166, "position": { "x": 6, "y": 0 @@ -1980,10 +1980,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1462, - "time": 0.20565552699228795, + "time": 0.20565552699228792, "position": { "x": 4, "y": 0 @@ -2003,9 +2003,9 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1510, + "noteOrder": 1511, "time": 0.2125107112253642, "position": { "x": 6, @@ -2026,10 +2026,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1559, - "time": 0.21936589545844046, + "noteOrder": 1560, + "time": 0.21936589545844043, "position": { "x": 6, "y": 0 @@ -2049,10 +2049,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1583, - "time": 0.2227934875749786, + "noteOrder": 1584, + "time": 0.22279348757497858, "position": { "x": 6, "y": 0 @@ -2072,10 +2072,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1608, - "time": 0.22622107969151672, + "time": 0.2262210796915167, "position": { "x": 4, "y": 0 @@ -2095,10 +2095,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1632, - "time": 0.22964867180805487, + "noteOrder": 1633, + "time": 0.22964867180805484, "position": { "x": 4, "y": 0 @@ -2118,9 +2118,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.27420736932305056, "position": { "x": 3, @@ -2139,9 +2139,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1974, + "time": 0.2776349614395887, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1974, + "time": 0.2776349614395887, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1998, "time": 0.28106255355612686, @@ -2162,11 +2208,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2023, + "time": 0.28449014567266495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2023, + "time": 0.28449014567266495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.30162810625535563, "position": { "x": 6, @@ -2187,10 +2279,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2168, - "time": 0.3050556983718938, + "noteOrder": 2169, + "time": 0.3050556983718937, "position": { "x": 6, "y": 0 @@ -2210,10 +2302,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2192, - "time": 0.30848329048843187, + "noteOrder": 2193, + "time": 0.3084832904884319, "position": { "x": 4, "y": 0 @@ -2233,9 +2325,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2217, + "noteOrder": 2218, "time": 0.31191088260497, "position": { "x": 4, @@ -2256,10 +2348,33 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2340, + "time": 0.32904884318766064, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2339, - "time": 0.3290488431876607, + "noteOrder": 2364, + "time": 0.3324764353041988, "position": { "x": 7, "y": 0 @@ -2277,12 +2392,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2364, + "time": 0.3324764353041988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2388, + "time": 0.33590402742073694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2387, - "time": 0.335904027420737, + "noteOrder": 2413, + "time": 0.3393316195372751, "position": { "x": 7, "y": 0 @@ -2300,11 +2461,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2413, + "time": 0.3393316195372751, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2533, + "noteOrder": 2535, "time": 0.3564695801199657, "position": { "x": 4, @@ -2325,9 +2509,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2558, + "noteOrder": 2559, "time": 0.35989717223650386, "position": { "x": 4, @@ -2348,9 +2532,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2582, + "noteOrder": 2583, "time": 0.363324764353042, "position": { "x": 6, @@ -2371,9 +2555,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.36675235646958015, "position": { "x": 6, @@ -2394,10 +2578,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3167, - "time": 0.4455869751499572, + "noteOrder": 3168, + "time": 0.44558697514995715, "position": { "x": 4, "y": 0 @@ -2417,9 +2601,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3191, + "noteOrder": 3192, "time": 0.4490145672664953, "position": { "x": 4, @@ -2440,10 +2624,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3264, - "time": 0.45929734361610974, + "noteOrder": 3266, + "time": 0.4592973436161097, "position": { "x": 6, "y": 0 @@ -2463,9 +2647,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.46272493573264784, "position": { "x": 6, @@ -2486,9 +2670,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.493573264781491, "position": { "x": 4, @@ -2509,9 +2693,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, + "noteOrder": 3558, "time": 0.5004284490145673, "position": { "x": 4, @@ -2532,9 +2716,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, + "noteOrder": 3558, "time": 0.5004284490145673, "position": { "x": 6, @@ -2555,10 +2739,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.5072836332476436, + "noteOrder": 3607, + "time": 0.5072836332476435, "position": { "x": 6, "y": 0 @@ -2578,10 +2762,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3605, - "time": 0.5072836332476436, + "noteOrder": 3607, + "time": 0.5072836332476435, "position": { "x": 4, "y": 0 @@ -2601,9 +2785,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, + "noteOrder": 3656, "time": 0.5141388174807198, "position": { "x": 4, @@ -2624,9 +2808,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3703, + "noteOrder": 3704, "time": 0.5209940017137961, "position": { "x": 6, @@ -2647,9 +2831,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3751, + "noteOrder": 3753, "time": 0.5278491859468724, "position": { "x": 6, @@ -2670,9 +2854,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3751, + "noteOrder": 3753, "time": 0.5278491859468724, "position": { "x": 4, @@ -2693,10 +2877,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3800, - "time": 0.5347043701799487, + "noteOrder": 3802, + "time": 0.5347043701799485, "position": { "x": 4, "y": 0 @@ -2716,10 +2900,10 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3800, - "time": 0.5347043701799487, + "noteOrder": 3802, + "time": 0.5347043701799485, "position": { "x": 6, "y": 0 @@ -2739,9 +2923,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3849, + "noteOrder": 3850, "time": 0.5415595544130248, "position": { "x": 6, @@ -2762,9 +2946,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3898, + "noteOrder": 3899, "time": 0.5484147386461011, "position": { "x": 7, @@ -2785,9 +2969,9 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3946, + "noteOrder": 3948, "time": 0.5552699228791774, "position": { "x": 5, @@ -2808,9 +2992,9 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.5621251071122537, "position": { "x": 3, @@ -2831,10 +3015,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4044, - "time": 0.56898029134533, + "noteOrder": 4045, + "time": 0.5689802913453299, "position": { "x": 5, "y": 0 @@ -2854,10 +3038,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4093, - "time": 0.5758354755784063, + "noteOrder": 4094, + "time": 0.5758354755784062, "position": { "x": 7, "y": 0 @@ -2877,9 +3061,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4141, + "noteOrder": 4143, "time": 0.5826906598114824, "position": { "x": 5, @@ -2900,9 +3084,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7129391602399314, "position": { "x": 6, @@ -2922,11 +3106,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5116, - "time": 0.7197943444730077, + "noteOrder": 5093, + "time": 0.7163667523564696, "position": { "x": 6, "y": 0 @@ -2940,18 +3124,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5262, - "time": 0.7403598971722365, + "noteOrder": 5093, + "time": 0.7163667523564696, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2963,16 +3147,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5311, - "time": 0.7472150814053128, + "noteOrder": 5118, + "time": 0.7197943444730077, "position": { "x": 6, "y": 0 @@ -2986,18 +3170,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5457, - "time": 0.7677806341045416, + "noteOrder": 5142, + "time": 0.7232219365895458, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3014,13 +3198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5505, - "time": 0.7746358183376179, + "noteOrder": 5142, + "time": 0.7232219365895458, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3032,18 +3216,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5652, - "time": 0.7952013710368467, + "noteOrder": 5264, + "time": 0.7403598971722365, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3055,18 +3239,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5700, - "time": 0.8020565552699229, + "noteOrder": 5288, + "time": 0.7437874892887747, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3083,13 +3267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5846, - "time": 0.8226221079691518, + "noteOrder": 5288, + "time": 0.7437874892887747, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3106,10 +3290,378 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 5920, + "noteOrder": 5313, + "time": 0.7472150814053127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5337, + "time": 0.7506426735218509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5337, + "time": 0.7506426735218509, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5459, + "time": 0.7677806341045416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5483, + "time": 0.7712082262210798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5483, + "time": 0.7712082262210798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5508, + "time": 0.7746358183376177, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5532, + "time": 0.778063410454156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5532, + "time": 0.778063410454156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5654, + "time": 0.7952013710368466, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5678, + "time": 0.7986289631533848, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5678, + "time": 0.7986289631533848, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5703, + "time": 0.8020565552699228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5727, + "time": 0.805484147386461, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5727, + "time": 0.805484147386461, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5849, + "time": 0.8226221079691517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5922, "time": 0.8329048843187661, "position": { "x": 6, @@ -3130,10 +3682,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5871, - "time": 0.8260497000856899, + "noteOrder": 5873, + "time": 0.8260497000856898, "position": { "x": 3, "y": 0 @@ -3153,9 +3705,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5920, + "noteOrder": 5922, "time": 0.8329048843187661, "position": { "x": 4, @@ -3176,9 +3728,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5993, + "noteOrder": 5995, "time": 0.8431876606683805, "position": { "x": 4, @@ -3199,9 +3751,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6017, + "noteOrder": 6019, "time": 0.8466152527849187, "position": { "x": 4, @@ -3222,9 +3774,9 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5993, + "noteOrder": 5995, "time": 0.8431876606683805, "position": { "x": 6, @@ -3245,9 +3797,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6017, + "noteOrder": 6019, "time": 0.8466152527849187, "position": { "x": 6, @@ -3268,9 +3820,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6041, + "noteOrder": 6044, "time": 0.8500428449014568, "position": { "x": 7, @@ -3289,12 +3841,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6068, + "time": 0.8534704370179949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6068, + "time": 0.8534704370179949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6093, + "time": 0.856898029134533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6090, - "time": 0.8568980291345331, + "noteOrder": 6117, + "time": 0.8603256212510711, "position": { "x": 7, "y": 0 @@ -3312,12 +3933,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6117, + "time": 0.8603256212510711, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6239, + "time": 0.8774635818337617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6263, + "time": 0.8808911739502999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6236, - "time": 0.8774635818337618, + "noteOrder": 6263, + "time": 0.8808911739502999, "position": { "x": 4, "y": 0 @@ -3337,10 +4027,56 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6288, + "time": 0.884318766066838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6312, + "time": 0.8877463581833762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6285, - "time": 0.8843187660668381, + "noteOrder": 6312, + "time": 0.8877463581833762, "position": { "x": 4, "y": 0 @@ -3360,10 +4096,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6334, - "time": 0.8911739502999144, + "noteOrder": 6336, + "time": 0.8911739502999143, "position": { "x": 3, "y": 0 @@ -3383,9 +4119,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6358, + "noteOrder": 6361, "time": 0.8946015424164524, "position": { "x": 3, @@ -3406,9 +4142,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6382, + "noteOrder": 6385, "time": 0.8980291345329906, "position": { "x": 7, @@ -3429,10 +4165,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6407, - "time": 0.9014567266495287, + "noteOrder": 6409, + "time": 0.9014567266495288, "position": { "x": 7, "y": 0 @@ -3452,10 +4188,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6431, - "time": 0.9048843187660669, + "noteOrder": 6434, + "time": 0.9048843187660668, "position": { "x": 6, "y": 0 @@ -3475,9 +4211,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6455, + "noteOrder": 6458, "time": 0.908311910882605, "position": { "x": 6, @@ -3498,10 +4234,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6431, - "time": 0.9048843187660669, + "noteOrder": 6434, + "time": 0.9048843187660668, "position": { "x": 7, "y": 0 @@ -3521,9 +4257,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6455, + "noteOrder": 6458, "time": 0.908311910882605, "position": { "x": 7, @@ -3544,10 +4280,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6480, - "time": 0.9117395029991432, + "noteOrder": 6482, + "time": 0.9117395029991431, "position": { "x": 3, "y": 0 @@ -3567,9 +4303,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9151670951156813, "position": { "x": 3, @@ -3590,10 +4326,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6480, - "time": 0.9117395029991432, + "noteOrder": 6482, + "time": 0.9117395029991431, "position": { "x": 4, "y": 0 @@ -3613,9 +4349,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9151670951156813, "position": { "x": 4, @@ -3636,10 +4372,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6723, - "time": 0.9460154241645246, + "noteOrder": 6726, + "time": 0.9460154241645244, "position": { "x": 4, "y": 0 @@ -3659,10 +4395,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6772, - "time": 0.9528706083976008, + "noteOrder": 6775, + "time": 0.9528706083976007, "position": { "x": 4, "y": 0 @@ -3682,9 +4418,9 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6821, + "noteOrder": 6824, "time": 0.9597257926306769, "position": { "x": 6, @@ -3705,9 +4441,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6870, + "noteOrder": 6872, "time": 0.9665809768637532, "position": { "x": 6, diff --git a/tracks/Forgetting Machine (RoughSketch Remix)/info.json b/tracks/Forgetting Machine (RoughSketch Remix)/info.json index e55491c1..000c2a34 100644 --- a/tracks/Forgetting Machine (RoughSketch Remix)/info.json +++ b/tracks/Forgetting Machine (RoughSketch Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Forgetting Machine (RoughSketch Remix)", - "SongLength": "124.630204", + "SongLength": "114.677551", "SongAuthorName": "RoughSketch", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/GHOST MODE/372_difficulty_1a.json b/tracks/GHOST MODE/372_difficulty_1a.json index 5efd6aa3..a5e3277b 100644 --- a/tracks/GHOST MODE/372_difficulty_1a.json +++ b/tracks/GHOST MODE/372_difficulty_1a.json @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 313, + "noteOrder": 314, "time": 0.06190476190476191, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 531, "time": 0.10476190476190476, "position": { "x": 7, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 542, + "noteOrder": 543, "time": 0.10714285714285714, "position": { "x": 5, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 554, + "noteOrder": 555, "time": 0.10952380952380952, "position": { "x": 3, @@ -434,7 +434,7 @@ }, { "noteOrder": 603, - "time": 0.11904761904761904, + "time": 0.11904761904761905, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 747, + "noteOrder": 748, "time": 0.14761904761904762, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 795, + "noteOrder": 796, "time": 0.15714285714285714, "position": { "x": 2, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 940, + "noteOrder": 941, "time": 0.1857142857142857, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 964, + "noteOrder": 965, "time": 0.19047619047619047, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 988, + "noteOrder": 989, "time": 0.19523809523809527, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.19999999999999998, "position": { "x": 7, @@ -834,7 +834,7 @@ }, { "noteOrder": 1133, - "time": 0.2238095238095238, + "time": 0.22380952380952382, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1157, + "noteOrder": 1158, "time": 0.22857142857142856, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1181, + "noteOrder": 1182, "time": 0.23333333333333334, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1205, - "time": 0.23809523809523808, + "noteOrder": 1206, + "time": 0.2380952380952381, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1229, + "noteOrder": 1230, "time": 0.24285714285714285, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1254, "time": 0.24761904761904763, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1422, + "noteOrder": 1423, "time": 0.28095238095238095, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1567, + "noteOrder": 1568, "time": 0.30952380952380953, "position": { "x": 8, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1591, + "noteOrder": 1592, "time": 0.3142857142857143, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1615, + "noteOrder": 1616, "time": 0.3190476190476191, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1639, + "noteOrder": 1640, "time": 0.3238095238095238, "position": { "x": 2, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1663, + "noteOrder": 1664, "time": 0.32857142857142857, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.33333333333333337, "position": { "x": 2, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1711, + "noteOrder": 1712, "time": 0.3380952380952381, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1784, + "noteOrder": 1785, "time": 0.3523809523809524, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1784, + "noteOrder": 1785, "time": 0.3523809523809524, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.35714285714285715, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.35714285714285715, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1977, + "noteOrder": 1978, "time": 0.39047619047619053, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2002, "time": 0.3952380952380952, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2026, "time": 0.39999999999999997, "position": { "x": 8, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2049, + "noteOrder": 2050, "time": 0.40476190476190477, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2073, + "noteOrder": 2074, "time": 0.4095238095238095, "position": { "x": 8, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2097, + "noteOrder": 2098, "time": 0.41428571428571426, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2121, + "noteOrder": 2122, "time": 0.41904761904761906, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2145, + "noteOrder": 2146, "time": 0.4238095238095238, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2218, + "noteOrder": 2219, "time": 0.4380952380952381, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2230, - "time": 0.44047619047619047, + "noteOrder": 2231, + "time": 0.4404761904761905, "position": { "x": 5, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2314, + "noteOrder": 2315, "time": 0.45714285714285713, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2326, + "noteOrder": 2327, "time": 0.45952380952380956, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2362, + "noteOrder": 2363, "time": 0.4666666666666667, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2374, - "time": 0.46904761904761905, + "noteOrder": 2375, + "time": 0.4690476190476191, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2386, + "noteOrder": 2388, "time": 0.4714285714285714, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2435, + "noteOrder": 2436, "time": 0.48095238095238096, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 2460, "time": 0.4857142857142857, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2483, + "noteOrder": 2484, "time": 0.49047619047619045, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2507, + "noteOrder": 2508, "time": 0.49523809523809526, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2531, + "noteOrder": 2532, "time": 0.5, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2555, + "noteOrder": 2556, "time": 0.5047619047619047, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2579, + "noteOrder": 2580, "time": 0.5095238095238096, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.5380952380952381, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2772, + "noteOrder": 2773, "time": 0.5476190476190476, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2869, + "noteOrder": 2870, "time": 0.5666666666666667, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2893, + "noteOrder": 2894, "time": 0.5714285714285714, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2917, + "noteOrder": 2918, "time": 0.5761904761904761, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.580952380952381, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.580952380952381, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5857142857142857, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5857142857142857, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.5904761904761905, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3015, "time": 0.5952380952380952, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3039, "time": 0.6, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3061, + "noteOrder": 3063, "time": 0.6047619047619047, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3110, + "noteOrder": 3111, "time": 0.6142857142857142, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3158, + "noteOrder": 3159, "time": 0.6238095238095238, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3182, + "noteOrder": 3183, "time": 0.6285714285714286, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3207, "time": 0.6333333333333333, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3230, + "noteOrder": 3232, "time": 0.6380952380952382, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3254, + "noteOrder": 3256, "time": 0.6428571428571428, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.6571428571428571, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3351, + "noteOrder": 3352, "time": 0.6619047619047619, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3351, + "noteOrder": 3352, "time": 0.6619047619047619, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3471, + "noteOrder": 3473, "time": 0.6857142857142857, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3485, "time": 0.6880952380952381, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3495, + "noteOrder": 3497, "time": 0.6904761904761905, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3509, "time": 0.6928571428571428, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3519, + "noteOrder": 3521, "time": 0.6952380952380953, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3531, + "noteOrder": 3533, "time": 0.6976190476190476, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 3593, "time": 0.7095238095238096, "position": { "x": 2, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3617, "time": 0.7142857142857143, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3640, + "noteOrder": 3642, "time": 0.719047619047619, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3690, "time": 0.7285714285714285, "position": { "x": 8, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3714, "time": 0.7333333333333334, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3736, + "noteOrder": 3738, "time": 0.7380952380952381, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3857, + "noteOrder": 3859, "time": 0.7619047619047619, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3871, "time": 0.7642857142857142, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3881, + "noteOrder": 3883, "time": 0.7666666666666667, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3895, "time": 0.7690476190476191, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3907, "time": 0.7714285714285714, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3919, "time": 0.7738095238095238, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.8095238095238095, "position": { "x": 6, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.8095238095238095, "position": { "x": 4, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.8142857142857143, "position": { "x": 3, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.8142857142857143, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4146, + "noteOrder": 4148, "time": 0.819047619047619, "position": { "x": 3, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4160, "time": 0.8214285714285714, "position": { "x": 5, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4194, + "noteOrder": 4196, "time": 0.8285714285714285, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4218, + "noteOrder": 4220, "time": 0.8333333333333334, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4243, + "noteOrder": 4244, "time": 0.8380952380952381, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4257, "time": 0.8404761904761905, "position": { "x": 5, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4291, + "noteOrder": 4293, "time": 0.8476190476190476, "position": { "x": 4, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.8523809523809524, + "noteOrder": 4317, + "time": 0.8523809523809525, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4460, - "time": 0.8809523809523809, + "noteOrder": 4462, + "time": 0.880952380952381, "position": { "x": 5, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4484, + "noteOrder": 4486, "time": 0.8857142857142857, "position": { "x": 8, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4508, + "noteOrder": 4510, "time": 0.8904761904761905, "position": { "x": 3, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4556, + "noteOrder": 4558, "time": 0.9, "position": { "x": 3, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4604, - "time": 0.9095238095238095, + "noteOrder": 4606, + "time": 0.9095238095238096, "position": { "x": 3, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4652, + "noteOrder": 4654, "time": 0.9190476190476191, "position": { "x": 3, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.9214285714285714, "position": { "x": 5, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 4727, "time": 0.9333333333333333, "position": { "x": 7, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4749, - "time": 0.9380952380952381, + "noteOrder": 4751, + "time": 0.9380952380952382, "position": { "x": 3, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4773, + "noteOrder": 4775, "time": 0.9428571428571428, "position": { "x": 6, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4797, + "noteOrder": 4799, "time": 0.9476190476190477, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4821, - "time": 0.9523809523809523, + "noteOrder": 4823, + "time": 0.9523809523809524, "position": { "x": 7, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4833, + "noteOrder": 4835, "time": 0.9547619047619048, "position": { "x": 6, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4845, + "noteOrder": 4847, "time": 0.9571428571428572, "position": { "x": 4, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4857, - "time": 0.9595238095238094, + "noteOrder": 4859, + "time": 0.9595238095238096, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4869, + "noteOrder": 4871, "time": 0.9619047619047619, "position": { "x": 4, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4881, + "noteOrder": 4884, "time": 0.9642857142857143, "position": { "x": 6, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4893, - "time": 0.9666666666666666, + "noteOrder": 4896, + "time": 0.9666666666666668, "position": { "x": 7, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.969047619047619, "position": { "x": 3, @@ -3176,7 +3176,7 @@ "lineNodes": [ { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.05714285714285714, @@ -3199,9 +3199,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 313, + "noteOrder": 314, "time": 0.06190476190476191, "position": { "x": 7, @@ -3222,9 +3222,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 337, + "noteOrder": 338, "time": 0.06666666666666667, "position": { "x": 3, @@ -3245,7 +3245,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, "time": 0.07142857142857142, @@ -3268,7 +3268,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.0761904761904762, @@ -3291,7 +3291,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 410, "time": 0.08095238095238096, @@ -3314,7 +3314,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 434, "time": 0.08571428571428572, @@ -3337,7 +3337,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.09047619047619049, @@ -3360,7 +3360,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, "time": 0.13333333333333333, @@ -3383,7 +3383,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 699, "time": 0.1380952380952381, @@ -3406,7 +3406,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, "time": 0.14285714285714285, @@ -3429,9 +3429,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 747, + "noteOrder": 748, "time": 0.14761904761904762, "position": { "x": 7, @@ -3452,9 +3452,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 771, + "noteOrder": 772, "time": 0.1523809523809524, "position": { "x": 4, @@ -3475,9 +3475,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 795, + "noteOrder": 796, "time": 0.15714285714285714, "position": { "x": 4, @@ -3498,7 +3498,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 820, "time": 0.1619047619047619, @@ -3521,7 +3521,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 844, "time": 0.16666666666666669, @@ -3544,7 +3544,7 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1302, "time": 0.2571428571428571, @@ -3567,7 +3567,7 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1326, "time": 0.2619047619047619, @@ -3590,7 +3590,7 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1326, "time": 0.2619047619047619, @@ -3613,9 +3613,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1350, + "noteOrder": 1351, "time": 0.26666666666666666, "position": { "x": 7, @@ -3636,9 +3636,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1350, + "noteOrder": 1351, "time": 0.26666666666666666, "position": { "x": 3, @@ -3658,13 +3658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1374, - "time": 0.2714285714285714, + "noteOrder": 1363, + "time": 0.26904761904761904, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3676,18 +3676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1398, - "time": 0.2761904761904762, + "noteOrder": 1363, + "time": 0.26904761904761904, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3704,11 +3704,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, - "time": 0.2857142857142857, + "noteOrder": 1375, + "time": 0.2714285714285714, "position": { "x": 7, "y": 0 @@ -3727,11 +3727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.2904761904761905, + "noteOrder": 1387, + "time": 0.2738095238095238, "position": { "x": 7, "y": 0 @@ -3745,18 +3745,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1495, - "time": 0.29523809523809524, + "noteOrder": 1387, + "time": 0.2738095238095238, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3773,13 +3773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1519, - "time": 0.3, + "noteOrder": 1399, + "time": 0.2761904761904762, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3796,13 +3796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1543, - "time": 0.3047619047619048, + "noteOrder": 1411, + "time": 0.2785714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3814,16 +3814,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1639, - "time": 0.3238095238095238, + "noteOrder": 1411, + "time": 0.2785714285714286, "position": { "x": 4, "y": 0 @@ -3837,18 +3837,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 2, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1663, - "time": 0.32857142857142857, + "noteOrder": 1423, + "time": 0.28095238095238095, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3860,18 +3860,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1687, - "time": 0.33333333333333337, + "noteOrder": 1423, + "time": 0.28095238095238095, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3883,18 +3883,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 4, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1711, - "time": 0.3380952380952381, + "noteOrder": 1447, + "time": 0.2857142857142857, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3911,13 +3911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1832, - "time": 0.36190476190476195, + "noteOrder": 1459, + "time": 0.28809523809523807, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3929,18 +3929,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1856, - "time": 0.3666666666666667, + "noteOrder": 1459, + "time": 0.28809523809523807, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3957,13 +3957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1880, - "time": 0.3714285714285714, + "noteOrder": 1471, + "time": 0.2904761904761905, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3975,18 +3975,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1904, - "time": 0.37619047619047624, + "noteOrder": 1471, + "time": 0.2904761904761905, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4003,13 +4003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1928, - "time": 0.38095238095238093, + "noteOrder": 1471, + "time": 0.2904761904761905, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4026,13 +4026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2025, - "time": 0.39999999999999997, + "noteOrder": 1483, + "time": 0.29285714285714287, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4049,11 +4049,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 2, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2049, - "time": 0.40476190476190477, + "noteOrder": 1483, + "time": 0.29285714285714287, "position": { "x": 5, "y": 0 @@ -4072,13 +4072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 3, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2073, - "time": 0.4095238095238095, + "noteOrder": 1495, + "time": 0.29523809523809524, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4095,13 +4095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 4, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2097, - "time": 0.41428571428571426, + "noteOrder": 1495, + "time": 0.29523809523809524, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4118,13 +4118,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2169, - "time": 0.42857142857142855, + "noteOrder": 1495, + "time": 0.29523809523809524, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4136,18 +4136,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2194, - "time": 0.4333333333333333, + "noteOrder": 1507, + "time": 0.2976190476190476, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4159,16 +4159,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2169, - "time": 0.42857142857142855, + "noteOrder": 1507, + "time": 0.2976190476190476, "position": { "x": 6, "y": 0 @@ -4187,11 +4187,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2194, - "time": 0.4333333333333333, + "noteOrder": 1519, + "time": 0.3, "position": { "x": 6, "y": 0 @@ -4210,13 +4210,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2242, - "time": 0.44285714285714284, + "noteOrder": 1519, + "time": 0.3, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4233,13 +4233,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2266, - "time": 0.4476190476190476, + "noteOrder": 1519, + "time": 0.3, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4256,11 +4256,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2290, - "time": 0.4523809523809524, + "noteOrder": 1531, + "time": 0.30238095238095236, "position": { "x": 7, "y": 0 @@ -4274,18 +4274,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2338, - "time": 0.4619047619047619, + "noteOrder": 1531, + "time": 0.30238095238095236, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4302,13 +4302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2411, - "time": 0.47619047619047616, + "noteOrder": 1543, + "time": 0.3047619047619048, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4325,13 +4325,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2507, - "time": 0.49523809523809526, + "noteOrder": 1543, + "time": 0.3047619047619048, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4348,13 +4348,2267 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 2, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2579, - "time": 0.5095238095238096, + "noteOrder": 1543, + "time": 0.3047619047619048, "position": { - "x": 3, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1640, + "time": 0.3238095238095238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1664, + "time": 0.32857142857142857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1688, + "time": 0.33333333333333337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1712, + "time": 0.3380952380952381, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1833, + "time": 0.36190476190476195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1845, + "time": 0.36428571428571427, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1845, + "time": 0.36428571428571427, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1857, + "time": 0.3666666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1857, + "time": 0.3666666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1857, + "time": 0.3666666666666667, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1869, + "time": 0.36904761904761907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1869, + "time": 0.36904761904761907, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1881, + "time": 0.3714285714285714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1881, + "time": 0.3714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1881, + "time": 0.3714285714285714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1893, + "time": 0.3738095238095238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1893, + "time": 0.3738095238095238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1905, + "time": 0.37619047619047624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1905, + "time": 0.37619047619047624, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1905, + "time": 0.37619047619047624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1917, + "time": 0.37857142857142856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1917, + "time": 0.37857142857142856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1929, + "time": 0.38095238095238093, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1929, + "time": 0.38095238095238093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1929, + "time": 0.38095238095238093, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2026, + "time": 0.39999999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2050, + "time": 0.40476190476190477, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2074, + "time": 0.4095238095238095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2098, + "time": 0.41428571428571426, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.42857142857142855, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2195, + "time": 0.43333333333333335, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.42857142857142855, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2195, + "time": 0.43333333333333335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2243, + "time": 0.44285714285714284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2255, + "time": 0.44523809523809527, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2255, + "time": 0.44523809523809527, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2267, + "time": 0.44761904761904764, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2279, + "time": 0.45, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2279, + "time": 0.45, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2291, + "time": 0.4523809523809524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2303, + "time": 0.4547619047619048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2303, + "time": 0.4547619047619048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2339, + "time": 0.46190476190476193, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2351, + "time": 0.4642857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2351, + "time": 0.4642857142857143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2412, + "time": 0.4761904761904762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2508, + "time": 0.49523809523809526, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2580, + "time": 0.5095238095238096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2605, + "time": 0.5142857142857142, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2629, + "time": 0.519047619047619, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2629, + "time": 0.519047619047619, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2653, + "time": 0.5238095238095238, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2653, + "time": 0.5238095238095238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2677, + "time": 0.5285714285714286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2677, + "time": 0.5285714285714286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2701, + "time": 0.5333333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2701, + "time": 0.5333333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2725, + "time": 0.5380952380952381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2749, + "time": 0.5428571428571428, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2773, + "time": 0.5476190476190476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2797, + "time": 0.5523809523809524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.5547619047619048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2810, + "time": 0.5547619047619048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2822, + "time": 0.5571428571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2834, + "time": 0.5595238095238095, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2834, + "time": 0.5595238095238095, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2846, + "time": 0.5619047619047619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2858, + "time": 0.5642857142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2858, + "time": 0.5642857142857143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5666666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5666666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3087, + "time": 0.6095238095238096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3111, + "time": 0.6142857142857142, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3135, + "time": 0.6190476190476191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3159, + "time": 0.6238095238095238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3280, + "time": 0.6476190476190476, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3292, + "time": 0.6499999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3292, + "time": 0.6499999999999999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3304, + "time": 0.6523809523809524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3316, + "time": 0.6547619047619048, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3316, + "time": 0.6547619047619048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3328, + "time": 0.6571428571428571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3328, + "time": 0.6571428571428571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3376, + "time": 0.6666666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.669047619047619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3388, + "time": 0.669047619047619, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3400, + "time": 0.6714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3400, + "time": 0.6714285714285714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3400, + "time": 0.6714285714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3412, + "time": 0.6738095238095239, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3412, + "time": 0.6738095238095239, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3425, + "time": 0.6761904761904762, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3425, + "time": 0.6761904761904762, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3425, + "time": 0.6761904761904762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3437, + "time": 0.6785714285714285, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3437, + "time": 0.6785714285714285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3449, + "time": 0.680952380952381, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3461, + "time": 0.6833333333333333, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4371,11 +6625,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2603, - "time": 0.5142857142857142, + "noteOrder": 3461, + "time": 0.6833333333333333, "position": { "x": 4, "y": 0 @@ -4389,18 +6643,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 2627, - "time": 0.519047619047619, + "noteOrder": 3545, + "time": 0.7, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4417,11 +6671,34 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2627, - "time": 0.519047619047619, + "noteOrder": 3557, + "time": 0.7023809523809524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3557, + "time": 0.7023809523809524, "position": { "x": 6, "y": 0 @@ -4435,18 +6712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 2652, - "time": 0.5238095238095238, + "noteOrder": 3569, + "time": 0.7047619047619048, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4463,13 +6740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2652, - "time": 0.5238095238095238, + "noteOrder": 3666, + "time": 0.7238095238095239, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4481,18 +6758,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 2676, - "time": 0.5285714285714286, + "noteOrder": 3666, + "time": 0.7238095238095239, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4509,13 +6786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2676, - "time": 0.5285714285714286, + "noteOrder": 3762, + "time": 0.7428571428571428, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4527,18 +6804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 2700, - "time": 0.5333333333333333, + "noteOrder": 3762, + "time": 0.7428571428571428, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4555,13 +6832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2700, - "time": 0.5333333333333333, + "noteOrder": 3774, + "time": 0.7452380952380953, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4573,18 +6850,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2724, - "time": 0.5380952380952381, + "noteOrder": 3774, + "time": 0.7452380952380953, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4596,18 +6873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2748, - "time": 0.5428571428571428, + "noteOrder": 3786, + "time": 0.7476190476190476, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4624,13 +6901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2772, - "time": 0.5476190476190476, + "noteOrder": 3786, + "time": 0.7476190476190476, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4647,13 +6924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2796, - "time": 0.5523809523809524, + "noteOrder": 3786, + "time": 0.7476190476190476, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4670,11 +6947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2820, - "time": 0.5571428571428572, + "noteOrder": 3798, + "time": 0.75, "position": { "x": 3, "y": 0 @@ -4688,18 +6965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2844, - "time": 0.5619047619047619, + "noteOrder": 3798, + "time": 0.75, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4716,13 +6993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3085, - "time": 0.6095238095238096, + "noteOrder": 3810, + "time": 0.7523809523809525, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4739,13 +7016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3110, - "time": 0.6142857142857142, + "noteOrder": 3810, + "time": 0.7523809523809525, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4762,11 +7039,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3134, - "time": 0.6190476190476191, + "noteOrder": 3810, + "time": 0.7523809523809525, "position": { "x": 3, "y": 0 @@ -4785,11 +7062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3158, - "time": 0.6238095238095238, + "noteOrder": 3822, + "time": 0.7547619047619047, "position": { "x": 3, "y": 0 @@ -4808,11 +7085,34 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3278, - "time": 0.6476190476190476, + "noteOrder": 3822, + "time": 0.7547619047619047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3834, + "time": 0.7571428571428571, "position": { "x": 7, "y": 0 @@ -4831,13 +7131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3302, - "time": 0.6523809523809524, + "noteOrder": 3847, + "time": 0.7595238095238096, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4849,18 +7149,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3375, - "time": 0.6666666666666667, + "noteOrder": 3847, + "time": 0.7595238095238096, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4877,13 +7177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3399, - "time": 0.6714285714285714, + "noteOrder": 3931, + "time": 0.7761904761904762, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4900,13 +7200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3423, - "time": 0.6761904761904762, + "noteOrder": 3943, + "time": 0.7785714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4918,18 +7218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3447, - "time": 0.680952380952381, + "noteOrder": 3943, + "time": 0.7785714285714286, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4946,11 +7246,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3543, - "time": 0.7, + "noteOrder": 3955, + "time": 0.7809523809523811, "position": { "x": 7, "y": 0 @@ -4969,11 +7269,34 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3568, - "time": 0.7047619047619048, + "noteOrder": 3979, + "time": 0.7857142857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7904761904761904, "position": { "x": 3, "y": 0 @@ -4992,13 +7315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3664, - "time": 0.7238095238095239, + "noteOrder": 4027, + "time": 0.7952380952380953, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5015,13 +7338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3664, - "time": 0.7238095238095239, + "noteOrder": 4052, + "time": 0.7999999999999999, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5033,16 +7356,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3760, - "time": 0.7428571428571428, + "noteOrder": 4076, + "time": 0.8047619047619048, "position": { "x": 4, "y": 0 @@ -5056,18 +7379,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3760, - "time": 0.7428571428571428, + "noteOrder": 4052, + "time": 0.7999999999999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5079,18 +7402,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3785, - "time": 0.7476190476190476, + "noteOrder": 4076, + "time": 0.8047619047619048, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5107,13 +7430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3809, - "time": 0.7523809523809525, + "noteOrder": 4172, + "time": 0.8238095238095239, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5125,16 +7448,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3833, - "time": 0.7571428571428571, + "noteOrder": 4220, + "time": 0.8333333333333334, "position": { "x": 7, "y": 0 @@ -5153,11 +7476,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3929, - "time": 0.7761904761904762, + "noteOrder": 4269, + "time": 0.8428571428571429, "position": { "x": 3, "y": 0 @@ -5176,13 +7499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3953, - "time": 0.7809523809523811, + "noteOrder": 4317, + "time": 0.8523809523809525, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5194,18 +7517,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 3977, - "time": 0.7857142857142857, + "noteOrder": 4341, + "time": 0.8571428571428571, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5222,13 +7545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4002, - "time": 0.7904761904761904, + "noteOrder": 4353, + "time": 0.8595238095238096, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5240,18 +7563,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4026, - "time": 0.7952380952380953, + "noteOrder": 4365, + "time": 0.861904761904762, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5263,18 +7586,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4050, - "time": 0.7999999999999999, + "noteOrder": 4365, + "time": 0.861904761904762, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5291,11 +7614,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4074, - "time": 0.8047619047619048, + "noteOrder": 4377, + "time": 0.8642857142857142, "position": { "x": 4, "y": 0 @@ -5314,13 +7637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4050, - "time": 0.7999999999999999, + "noteOrder": 4389, + "time": 0.8666666666666667, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5332,18 +7655,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 4074, - "time": 0.8047619047619048, + "noteOrder": 4389, + "time": 0.8666666666666667, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5360,13 +7683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4170, - "time": 0.8238095238095239, + "noteOrder": 4401, + "time": 0.8690476190476191, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5383,13 +7706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4218, - "time": 0.8333333333333334, + "noteOrder": 4413, + "time": 0.8714285714285714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5406,11 +7729,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4267, - "time": 0.8428571428571429, + "noteOrder": 4413, + "time": 0.8714285714285714, "position": { "x": 3, "y": 0 @@ -5429,13 +7752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4315, - "time": 0.8523809523809524, + "noteOrder": 4425, + "time": 0.8738095238095239, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5452,13 +7775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4339, - "time": 0.8571428571428571, + "noteOrder": 4437, + "time": 0.8761904761904762, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5470,18 +7793,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 4351, - "time": 0.8595238095238095, + "noteOrder": 4437, + "time": 0.8761904761904762, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5498,13 +7821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 209, "indexInLine": 2, "isSliding": false, - "noteOrder": 4363, - "time": 0.861904761904762, + "noteOrder": 4534, + "time": 0.8952380952380953, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5521,11 +7844,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4363, - "time": 0.861904761904762, + "noteOrder": 4534, + "time": 0.8952380952380953, "position": { "x": 3, "y": 0 @@ -5544,13 +7867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4375, - "time": 0.8642857142857142, + "noteOrder": 4546, + "time": 0.8976190476190476, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5567,11 +7890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 2, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4387, - "time": 0.8666666666666666, + "noteOrder": 4546, + "time": 0.8976190476190476, "position": { "x": 4, "y": 0 @@ -5590,13 +7913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4387, - "time": 0.8666666666666666, + "noteOrder": 4582, + "time": 0.9047619047619048, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5613,13 +7936,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4399, - "time": 0.8690476190476191, + "noteOrder": 4594, + "time": 0.9071428571428571, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5636,13 +7959,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4411, - "time": 0.8714285714285714, + "noteOrder": 4594, + "time": 0.9071428571428571, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5659,11 +7982,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4411, - "time": 0.8714285714285714, + "noteOrder": 4630, + "time": 0.9142857142857143, "position": { "x": 3, "y": 0 @@ -5682,13 +8005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.8738095238095237, + "noteOrder": 4642, + "time": 0.9166666666666667, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5705,11 +8028,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 2, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4435, - "time": 0.8761904761904762, + "noteOrder": 4642, + "time": 0.9166666666666667, "position": { "x": 4, "y": 0 @@ -5728,11 +8051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4435, - "time": 0.8761904761904762, + "noteOrder": 4679, + "time": 0.9238095238095239, "position": { "x": 7, "y": 0 @@ -5751,13 +8074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4532, - "time": 0.8952380952380952, + "noteOrder": 4691, + "time": 0.9261904761904762, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5774,36 +8097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4532, - "time": 0.8952380952380952, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4580, - "time": 0.9047619047619048, + "noteOrder": 4691, + "time": 0.9261904761904762, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5820,11 +8120,11 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4628, - "time": 0.9142857142857143, + "noteOrder": 4703, + "time": 0.9285714285714286, "position": { "x": 3, "y": 0 @@ -5843,13 +8143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.9238095238095237, + "noteOrder": 4715, + "time": 0.9309523809523811, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5861,18 +8161,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4701, - "time": 0.9285714285714286, + "noteOrder": 4715, + "time": 0.9309523809523811, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { diff --git a/tracks/GHOST MODE/372_difficulty_1b.json b/tracks/GHOST MODE/372_difficulty_1b.json index 444c0905..8a33e048 100644 --- a/tracks/GHOST MODE/372_difficulty_1b.json +++ b/tracks/GHOST MODE/372_difficulty_1b.json @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 338, "time": 0.06666666666666667, "position": { "x": 3, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 531, "time": 0.10476190476190476, "position": { "x": 6, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 747, + "noteOrder": 748, "time": 0.14761904761904762, "position": { "x": 3, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.19999999999999998, "position": { "x": 6, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1157, + "noteOrder": 1158, "time": 0.22857142857142856, "position": { "x": 4, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1181, + "noteOrder": 1182, "time": 0.23333333333333334, "position": { "x": 6, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1205, - "time": 0.23809523809523808, + "noteOrder": 1206, + "time": 0.2380952380952381, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1229, + "noteOrder": 1230, "time": 0.24285714285714285, "position": { "x": 7, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1639, + "noteOrder": 1640, "time": 0.3238095238095238, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1663, + "noteOrder": 1664, "time": 0.32857142857142857, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.33333333333333337, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1711, + "noteOrder": 1712, "time": 0.3380952380952381, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1784, + "noteOrder": 1785, "time": 0.3523809523809524, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1784, + "noteOrder": 1785, "time": 0.3523809523809524, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.35714285714285715, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.35714285714285715, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2026, "time": 0.39999999999999997, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2049, + "noteOrder": 2050, "time": 0.40476190476190477, "position": { "x": 6, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2073, + "noteOrder": 2074, "time": 0.4095238095238095, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2097, + "noteOrder": 2098, "time": 0.41428571428571426, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2121, + "noteOrder": 2122, "time": 0.41904761904761906, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2145, + "noteOrder": 2146, "time": 0.4238095238095238, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2169, + "noteOrder": 2170, "time": 0.42857142857142855, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2169, + "noteOrder": 2170, "time": 0.42857142857142855, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2194, - "time": 0.4333333333333333, + "noteOrder": 2195, + "time": 0.43333333333333335, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2194, - "time": 0.4333333333333333, + "noteOrder": 2195, + "time": 0.43333333333333335, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2266, - "time": 0.4476190476190476, + "noteOrder": 2267, + "time": 0.44761904761904764, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2290, + "noteOrder": 2291, "time": 0.4523809523809524, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2362, + "noteOrder": 2363, "time": 0.4666666666666667, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2386, + "noteOrder": 2388, "time": 0.4714285714285714, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2411, - "time": 0.47619047619047616, + "noteOrder": 2412, + "time": 0.4761904761904762, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2435, + "noteOrder": 2436, "time": 0.48095238095238096, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 2460, "time": 0.4857142857142857, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2483, + "noteOrder": 2484, "time": 0.49047619047619045, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2507, + "noteOrder": 2508, "time": 0.49523809523809526, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2531, + "noteOrder": 2532, "time": 0.5, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2555, + "noteOrder": 2556, "time": 0.5047619047619047, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2579, + "noteOrder": 2580, "time": 0.5095238095238096, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2652, + "noteOrder": 2653, "time": 0.5238095238095238, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2748, + "noteOrder": 2749, "time": 0.5428571428571428, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2796, + "noteOrder": 2797, "time": 0.5523809523809524, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2820, + "noteOrder": 2822, "time": 0.5571428571428572, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2846, "time": 0.5619047619047619, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2869, + "noteOrder": 2870, "time": 0.5666666666666667, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3039, "time": 0.6, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3085, + "noteOrder": 3087, "time": 0.6095238095238096, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3134, + "noteOrder": 3135, "time": 0.6190476190476191, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3423, + "noteOrder": 3425, "time": 0.6761904761904762, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3447, + "noteOrder": 3449, "time": 0.680952380952381, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3471, + "noteOrder": 3473, "time": 0.6857142857142857, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3495, + "noteOrder": 3497, "time": 0.6904761904761905, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3519, + "noteOrder": 3521, "time": 0.6952380952380953, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3543, + "noteOrder": 3545, "time": 0.7, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3568, + "noteOrder": 3569, "time": 0.7047619047619048, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 3593, "time": 0.7095238095238096, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3617, "time": 0.7142857142857143, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3640, + "noteOrder": 3642, "time": 0.719047619047619, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3664, + "noteOrder": 3666, "time": 0.7238095238095239, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3690, "time": 0.7285714285714285, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3714, "time": 0.7333333333333334, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3736, + "noteOrder": 3738, "time": 0.7380952380952381, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3809, + "noteOrder": 3810, "time": 0.7523809523809525, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3834, "time": 0.7571428571428571, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3857, + "noteOrder": 3859, "time": 0.7619047619047619, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3881, + "noteOrder": 3883, "time": 0.7666666666666667, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3907, "time": 0.7714285714285714, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.7761904761904762, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3953, + "noteOrder": 3955, "time": 0.7809523809523811, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3977, + "noteOrder": 3979, "time": 0.7857142857142857, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4003, "time": 0.7904761904761904, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4027, "time": 0.7952380952380953, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4194, + "noteOrder": 4196, "time": 0.8285714285714285, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4218, + "noteOrder": 4220, "time": 0.8333333333333334, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4291, + "noteOrder": 4293, "time": 0.8476190476190476, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.8523809523809524, + "noteOrder": 4317, + "time": 0.8523809523809525, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4339, + "noteOrder": 4341, "time": 0.8571428571428571, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4363, + "noteOrder": 4365, "time": 0.861904761904762, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4387, - "time": 0.8666666666666666, + "noteOrder": 4389, + "time": 0.8666666666666667, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4411, + "noteOrder": 4413, "time": 0.8714285714285714, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4435, + "noteOrder": 4437, "time": 0.8761904761904762, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4460, - "time": 0.8809523809523809, + "noteOrder": 4462, + "time": 0.880952380952381, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4484, + "noteOrder": 4486, "time": 0.8857142857142857, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4508, + "noteOrder": 4510, "time": 0.8904761904761905, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4580, + "noteOrder": 4582, "time": 0.9047619047619048, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4604, - "time": 0.9095238095238095, + "noteOrder": 4606, + "time": 0.9095238095238096, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4676, - "time": 0.9238095238095237, + "noteOrder": 4679, + "time": 0.9238095238095239, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4703, "time": 0.9285714285714286, "position": { "x": 6, @@ -2036,7 +2036,7 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.05714285714285714, @@ -2059,9 +2059,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 313, + "noteOrder": 314, "time": 0.06190476190476191, "position": { "x": 7, @@ -2082,7 +2082,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.0761904761904762, @@ -2105,7 +2105,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 410, "time": 0.08095238095238096, @@ -2128,7 +2128,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.09523809523809523, @@ -2151,9 +2151,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 530, + "noteOrder": 531, "time": 0.10476190476190476, "position": { "x": 7, @@ -2174,7 +2174,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.11428571428571428, @@ -2197,7 +2197,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 627, "time": 0.12380952380952381, @@ -2220,7 +2220,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, "time": 0.13333333333333333, @@ -2243,7 +2243,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 699, "time": 0.1380952380952381, @@ -2266,12 +2266,748 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 771, + "noteOrder": 772, "time": 0.1523809523809524, "position": { - "x": 7, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 796, + "time": 0.15714285714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 868, + "time": 0.17142857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 916, + "time": 0.18095238095238098, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 965, + "time": 0.19047619047619047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1013, + "time": 0.19999999999999998, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1061, + "time": 0.20952380952380953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1085, + "time": 0.21428571428571427, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1109, + "time": 0.21904761904761905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1133, + "time": 0.22380952380952382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1254, + "time": 0.24761904761904763, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1278, + "time": 0.2523809523809524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1302, + "time": 0.2571428571428571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1326, + "time": 0.2619047619047619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1351, + "time": 0.26666666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1351, + "time": 0.26666666666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2714285714285714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1399, + "time": 0.2761904761904762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1423, + "time": 0.28095238095238095, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1399, + "time": 0.2761904761904762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1423, + "time": 0.28095238095238095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1447, + "time": 0.2857142857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1471, + "time": 0.2904761904761905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1471, + "time": 0.2904761904761905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1495, + "time": 0.29523809523809524, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1495, + "time": 0.29523809523809524, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1495, + "time": 0.29523809523809524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1519, + "time": 0.3, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1519, + "time": 0.3, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1543, + "time": 0.3047619047619048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1543, + "time": 0.3047619047619048, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1543, + "time": 0.3047619047619048, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -2283,18 +3019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 795, - "time": 0.15714285714285714, + "noteOrder": 1568, + "time": 0.30952380952380953, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2306,18 +3042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 868, - "time": 0.17142857142857143, + "noteOrder": 1568, + "time": 0.30952380952380953, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2334,13 +3070,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 916, - "time": 0.18095238095238098, + "noteOrder": 1592, + "time": 0.3142857142857143, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2357,13 +3093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 964, - "time": 0.19047619047619047, + "noteOrder": 1592, + "time": 0.3142857142857143, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2375,18 +3111,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1012, - "time": 0.19999999999999998, + "noteOrder": 1592, + "time": 0.3142857142857143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2403,11 +3139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1061, - "time": 0.20952380952380953, + "noteOrder": 1616, + "time": 0.3190476190476191, "position": { "x": 3, "y": 0 @@ -2421,18 +3157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1085, - "time": 0.21428571428571427, + "noteOrder": 1616, + "time": 0.3190476190476191, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2444,18 +3180,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1109, - "time": 0.21904761904761905, + "noteOrder": 1640, + "time": 0.3238095238095238, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2472,13 +3208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1133, - "time": 0.2238095238095238, + "noteOrder": 1640, + "time": 0.3238095238095238, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2495,13 +3231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1253, - "time": 0.24761904761904763, + "noteOrder": 1833, + "time": 0.36190476190476195, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2513,18 +3249,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1278, - "time": 0.2523809523809524, + "noteOrder": 1857, + "time": 0.3666666666666667, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2536,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.2571428571428571, + "noteOrder": 1857, + "time": 0.3666666666666667, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2564,13 +3300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1326, - "time": 0.2619047619047619, + "noteOrder": 1881, + "time": 0.3714285714285714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2587,13 +3323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1350, - "time": 0.26666666666666666, + "noteOrder": 1881, + "time": 0.3714285714285714, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2610,13 +3346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1374, - "time": 0.2714285714285714, + "noteOrder": 1881, + "time": 0.3714285714285714, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2628,18 +3364,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1350, - "time": 0.26666666666666666, + "noteOrder": 1905, + "time": 0.37619047619047624, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2656,13 +3392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1374, - "time": 0.2714285714285714, + "noteOrder": 1905, + "time": 0.37619047619047624, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2679,13 +3415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1398, - "time": 0.2761904761904762, + "noteOrder": 1929, + "time": 0.38095238095238093, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2702,13 +3438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1422, - "time": 0.28095238095238095, + "noteOrder": 1929, + "time": 0.38095238095238093, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2725,11 +3461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1398, - "time": 0.2761904761904762, + "noteOrder": 1929, + "time": 0.38095238095238093, "position": { "x": 7, "y": 0 @@ -2748,11 +3484,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1422, - "time": 0.28095238095238095, + "noteOrder": 1953, + "time": 0.3857142857142857, "position": { "x": 7, "y": 0 @@ -2771,13 +3507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1446, - "time": 0.2857142857142857, + "noteOrder": 1953, + "time": 0.3857142857142857, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2789,18 +3525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1495, - "time": 0.29523809523809524, + "noteOrder": 1978, + "time": 0.39047619047619053, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2817,13 +3553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1543, - "time": 0.3047619047619048, + "noteOrder": 1978, + "time": 0.39047619047619053, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2835,18 +3571,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1591, - "time": 0.3142857142857143, + "noteOrder": 1978, + "time": 0.39047619047619053, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2858,16 +3594,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1832, - "time": 0.36190476190476195, + "noteOrder": 2002, + "time": 0.3952380952380952, "position": { "x": 7, "y": 0 @@ -2881,18 +3617,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1880, - "time": 0.3714285714285714, + "noteOrder": 2002, + "time": 0.3952380952380952, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2909,13 +3645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1928, - "time": 0.38095238095238093, + "noteOrder": 2026, + "time": 0.39999999999999997, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2927,18 +3663,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1977, - "time": 0.39047619047619053, + "noteOrder": 2026, + "time": 0.39999999999999997, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2956,9 +3692,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2218, + "noteOrder": 2219, "time": 0.4380952380952381, "position": { "x": 7, @@ -2979,9 +3715,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2242, + "noteOrder": 2243, "time": 0.44285714285714284, "position": { "x": 7, @@ -3002,9 +3738,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2314, + "noteOrder": 2315, "time": 0.45714285714285713, "position": { "x": 3, @@ -3025,10 +3761,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2338, - "time": 0.4619047619047619, + "noteOrder": 2339, + "time": 0.46190476190476193, "position": { "x": 3, "y": 0 @@ -3048,9 +3784,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2603, + "noteOrder": 2605, "time": 0.5142857142857142, "position": { "x": 7, @@ -3071,9 +3807,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2652, + "noteOrder": 2653, "time": 0.5238095238095238, "position": { "x": 7, @@ -3094,9 +3830,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2700, + "noteOrder": 2701, "time": 0.5333333333333333, "position": { "x": 3, @@ -3117,9 +3853,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2748, + "noteOrder": 2749, "time": 0.5428571428571428, "position": { "x": 3, @@ -3140,9 +3876,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2893, + "noteOrder": 2894, "time": 0.5714285714285714, "position": { "x": 6, @@ -3163,9 +3899,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5857142857142857, "position": { "x": 6, @@ -3186,9 +3922,9 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.580952380952381, "position": { "x": 4, @@ -3209,9 +3945,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5857142857142857, "position": { "x": 4, @@ -3232,9 +3968,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.5904761904761905, "position": { "x": 3, @@ -3255,9 +3991,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3134, + "noteOrder": 3135, "time": 0.6190476190476191, "position": { "x": 3, @@ -3278,9 +4014,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3182, + "noteOrder": 3183, "time": 0.6285714285714286, "position": { "x": 7, @@ -3301,9 +4037,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3206, + "noteOrder": 3207, "time": 0.6333333333333333, "position": { "x": 7, @@ -3324,9 +4060,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3230, + "noteOrder": 3232, "time": 0.6380952380952382, "position": { "x": 3, @@ -3347,9 +4083,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3254, + "noteOrder": 3256, "time": 0.6428571428571428, "position": { "x": 3, @@ -3370,9 +4106,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3278, + "noteOrder": 3280, "time": 0.6476190476190476, "position": { "x": 4, @@ -3393,9 +4129,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3302, + "noteOrder": 3304, "time": 0.6523809523809524, "position": { "x": 4, @@ -3416,9 +4152,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3278, + "noteOrder": 3280, "time": 0.6476190476190476, "position": { "x": 6, @@ -3439,9 +4175,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3302, + "noteOrder": 3304, "time": 0.6523809523809524, "position": { "x": 6, @@ -3462,9 +4198,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.6571428571428571, "position": { "x": 7, @@ -3485,9 +4221,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3351, + "noteOrder": 3352, "time": 0.6619047619047619, "position": { "x": 7, @@ -3508,9 +4244,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.6571428571428571, "position": { "x": 3, @@ -3531,9 +4267,9 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3351, + "noteOrder": 3352, "time": 0.6619047619047619, "position": { "x": 3, @@ -3554,9 +4290,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3375, + "noteOrder": 3376, "time": 0.6666666666666667, "position": { "x": 3, @@ -3577,9 +4313,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3447, + "noteOrder": 3449, "time": 0.680952380952381, "position": { "x": 3, @@ -3600,9 +4336,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3760, + "noteOrder": 3762, "time": 0.7428571428571428, "position": { "x": 7, @@ -3623,9 +4359,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3833, + "noteOrder": 3834, "time": 0.7571428571428571, "position": { "x": 7, @@ -3646,9 +4382,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4050, + "noteOrder": 4052, "time": 0.7999999999999999, "position": { "x": 4, @@ -3669,9 +4405,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4074, + "noteOrder": 4076, "time": 0.8047619047619048, "position": { "x": 4, @@ -3692,9 +4428,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4050, + "noteOrder": 4052, "time": 0.7999999999999999, "position": { "x": 6, @@ -3715,9 +4451,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4074, + "noteOrder": 4076, "time": 0.8047619047619048, "position": { "x": 6, @@ -3738,9 +4474,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.8095238095238095, "position": { "x": 7, @@ -3761,9 +4497,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.8142857142857143, "position": { "x": 7, @@ -3784,9 +4520,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.8095238095238095, "position": { "x": 3, @@ -3807,9 +4543,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.8142857142857143, "position": { "x": 3, @@ -3830,9 +4566,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4146, + "noteOrder": 4148, "time": 0.819047619047619, "position": { "x": 4, @@ -3853,9 +4589,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4170, + "noteOrder": 4172, "time": 0.8238095238095239, "position": { "x": 4, @@ -3876,9 +4612,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4243, + "noteOrder": 4244, "time": 0.8380952380952381, "position": { "x": 6, @@ -3899,9 +4635,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4267, + "noteOrder": 4269, "time": 0.8428571428571429, "position": { "x": 6, @@ -3922,10 +4658,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4532, - "time": 0.8952380952380952, + "noteOrder": 4534, + "time": 0.8952380952380953, "position": { "x": 3, "y": 0 @@ -3945,10 +4681,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4604, - "time": 0.9095238095238095, + "noteOrder": 4606, + "time": 0.9095238095238096, "position": { "x": 3, "y": 0 @@ -3968,9 +4704,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4628, + "noteOrder": 4630, "time": 0.9142857142857143, "position": { "x": 7, @@ -3991,9 +4727,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4701, + "noteOrder": 4703, "time": 0.9285714285714286, "position": { "x": 7, @@ -4014,9 +4750,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4725, + "noteOrder": 4727, "time": 0.9333333333333333, "position": { "x": 3, @@ -4037,10 +4773,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4749, - "time": 0.9380952380952381, + "noteOrder": 4751, + "time": 0.9380952380952382, "position": { "x": 3, "y": 0 @@ -4060,9 +4796,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4773, + "noteOrder": 4775, "time": 0.9428571428571428, "position": { "x": 7, @@ -4083,9 +4819,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4797, + "noteOrder": 4799, "time": 0.9476190476190477, "position": { "x": 7, @@ -4106,10 +4842,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4821, - "time": 0.9523809523809523, + "noteOrder": 4823, + "time": 0.9523809523809524, "position": { "x": 6, "y": 0 @@ -4129,9 +4865,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4845, + "noteOrder": 4847, "time": 0.9571428571428572, "position": { "x": 6, @@ -4152,10 +4888,10 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4821, - "time": 0.9523809523809523, + "noteOrder": 4823, + "time": 0.9523809523809524, "position": { "x": 4, "y": 0 @@ -4175,9 +4911,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4845, + "noteOrder": 4847, "time": 0.9571428571428572, "position": { "x": 4, @@ -4198,9 +4934,9 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4869, + "noteOrder": 4871, "time": 0.9619047619047619, "position": { "x": 7, @@ -4221,9 +4957,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.969047619047619, "position": { "x": 7, @@ -4244,9 +4980,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4869, + "noteOrder": 4871, "time": 0.9619047619047619, "position": { "x": 3, @@ -4267,9 +5003,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.969047619047619, "position": { "x": 3, diff --git a/tracks/GHOST MODE/info.json b/tracks/GHOST MODE/info.json index 3fed5623..3518f34d 100644 --- a/tracks/GHOST MODE/info.json +++ b/tracks/GHOST MODE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "GHOST MODE", - "SongLength": "115.461224", + "SongLength": "105.508571", "SongAuthorName": "lapix", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1a.json" "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1a.json" index 5bd3386a..0a6f8f7f 100644 --- "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1a.json" +++ "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 219, - "time": 0.03704180064308681, + "time": 0.03704180064308682, "position": { "x": 8, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 267, + "noteOrder": 268, "time": 0.045273311897106115, "position": { "x": 8, @@ -154,7 +154,7 @@ }, { "noteOrder": 413, - "time": 0.069967845659164, + "time": 0.06996784565916399, "position": { "x": 2, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 438, - "time": 0.07408360128617363, + "time": 0.07408360128617364, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 511, - "time": 0.08643086816720258, + "time": 0.08643086816720257, "position": { "x": 5, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 656, + "noteOrder": 657, "time": 0.11112540192926045, "position": { "x": 5, @@ -374,7 +374,7 @@ }, { "noteOrder": 705, - "time": 0.11935691318327975, + "time": 0.11935691318327973, "position": { "x": 5, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 729, + "noteOrder": 730, "time": 0.1234726688102894, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 802, + "noteOrder": 803, "time": 0.13581993569131834, "position": { "x": 5, @@ -454,7 +454,7 @@ }, { "noteOrder": 827, - "time": 0.139935691318328, + "time": 0.13993569131832798, "position": { "x": 2, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 875, - "time": 0.14816720257234725, + "noteOrder": 876, + "time": 0.14816720257234728, "position": { "x": 2, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 899, + "noteOrder": 900, "time": 0.15228295819935692, "position": { "x": 5, @@ -574,7 +574,7 @@ }, { "noteOrder": 1021, - "time": 0.17286173633440516, + "time": 0.17286173633440513, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1118, + "noteOrder": 1119, "time": 0.18932475884244374, "position": { "x": 3, @@ -614,7 +614,7 @@ }, { "noteOrder": 1775, - "time": 0.30045016077170417, + "time": 0.3004501607717042, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1799, + "noteOrder": 1800, "time": 0.30456591639871383, "position": { "x": 2, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1823, - "time": 0.30868167202572344, + "noteOrder": 1824, + "time": 0.3086816720257235, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 1873, "time": 0.31691318327974277, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1897, "time": 0.32102893890675244, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 1921, "time": 0.32514469453376205, "position": { "x": 5, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.3333762057877814, + "noteOrder": 1970, + "time": 0.3333762057877813, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.337491961414791, "position": { "x": 8, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.34160771704180065, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.3457234726688103, + "noteOrder": 2043, + "time": 0.34572347266881026, "position": { "x": 8, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.3498392282958199, "position": { "x": 7, @@ -854,7 +854,7 @@ }, { "noteOrder": 2091, - "time": 0.3539549839228296, + "time": 0.35395498392282954, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.35807073954983926, + "noteOrder": 2116, + "time": 0.3580707395498392, "position": { "x": 5, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2188, + "noteOrder": 2189, "time": 0.3704180064308682, "position": { "x": 2, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.37453376205787786, + "noteOrder": 2213, + "time": 0.3745337620578778, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.37864951768488747, "position": { "x": 2, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2261, + "noteOrder": 2262, "time": 0.38276527331189714, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2285, - "time": 0.3868810289389068, + "noteOrder": 2286, + "time": 0.38688102893890675, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2309, + "noteOrder": 2310, "time": 0.3909967845659164, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2358, + "noteOrder": 2359, "time": 0.3992282958199357, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2382, + "noteOrder": 2383, "time": 0.4033440514469453, "position": { "x": 8, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2408, "time": 0.40745980707395496, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2431, + "noteOrder": 2432, "time": 0.4115755627009646, "position": { "x": 8, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2455, - "time": 0.4156913183279743, + "noteOrder": 2456, + "time": 0.41569131832797424, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.4198070739549839, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2504, - "time": 0.42392282958199357, + "noteOrder": 2505, + "time": 0.4239228295819935, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2553, - "time": 0.43215434083601284, + "noteOrder": 2554, + "time": 0.4321543408360129, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2577, + "noteOrder": 2578, "time": 0.4362700964630225, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2601, + "noteOrder": 2602, "time": 0.44038585209003217, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2650, + "noteOrder": 2651, "time": 0.44861736334405145, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2674, + "noteOrder": 2675, "time": 0.4527331189710611, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2698, - "time": 0.4568488745980708, + "noteOrder": 2699, + "time": 0.4568488745980707, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2747, - "time": 0.46508038585209005, + "noteOrder": 2748, + "time": 0.46508038585209, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2796, + "noteOrder": 2797, "time": 0.4733118971061093, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2844, - "time": 0.48154340836012866, + "noteOrder": 2845, + "time": 0.4815434083601286, "position": { "x": 8, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2893, - "time": 0.48977491961414793, + "noteOrder": 2894, + "time": 0.4897749196141479, "position": { "x": 2, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2917, + "noteOrder": 2918, "time": 0.4938906752411576, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2941, - "time": 0.49800643086816726, + "noteOrder": 2943, + "time": 0.4980064308681672, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2966, - "time": 0.5021221864951769, + "noteOrder": 2967, + "time": 0.5021221864951768, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3016, "time": 0.5103536977491961, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3039, + "noteOrder": 3040, "time": 0.5144694533762058, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3063, - "time": 0.5185852090032155, + "noteOrder": 3064, + "time": 0.5185852090032154, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3112, + "noteOrder": 3113, "time": 0.5268167202572347, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3112, + "noteOrder": 3113, "time": 0.5268167202572347, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3136, + "noteOrder": 3137, "time": 0.5309324758842444, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3160, + "noteOrder": 3162, "time": 0.535048231511254, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3160, + "noteOrder": 3162, "time": 0.535048231511254, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.5432797427652734, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.5432797427652734, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3235, "time": 0.547395498392283, "position": { "x": 5, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3355, + "noteOrder": 3356, "time": 0.5679742765273311, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3428, - "time": 0.5803215434083601, + "noteOrder": 3429, + "time": 0.5803215434083602, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3452, - "time": 0.5844372990353698, + "noteOrder": 3453, + "time": 0.5844372990353697, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3476, + "noteOrder": 3478, "time": 0.5885530546623794, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3525, + "noteOrder": 3526, "time": 0.5967845659163987, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3549, - "time": 0.6009003215434083, + "noteOrder": 3551, + "time": 0.6009003215434084, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3574, + "noteOrder": 3575, "time": 0.6050160771704179, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3598, + "noteOrder": 3599, "time": 0.6091318327974277, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3622, + "noteOrder": 3624, "time": 0.6132475884244373, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3646, - "time": 0.6173633440514469, + "noteOrder": 3648, + "time": 0.617363344051447, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 3672, "time": 0.6214790996784566, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3745, "time": 0.6338263665594855, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3817, - "time": 0.6461736334405145, + "noteOrder": 3818, + "time": 0.6461736334405144, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3841, + "noteOrder": 3843, "time": 0.6502893890675241, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3865, - "time": 0.6544051446945338, + "noteOrder": 3867, + "time": 0.6544051446945337, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.662636655948553, + "noteOrder": 3915, + "time": 0.6626366559485531, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.6667524115755628, + "noteOrder": 3940, + "time": 0.6667524115755626, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.6708681672025724, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3987, + "noteOrder": 3988, "time": 0.674983922829582, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4011, + "noteOrder": 4013, "time": 0.6790996784565917, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4035, + "noteOrder": 4037, "time": 0.6832154340836013, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4060, + "noteOrder": 4061, "time": 0.6873311897106109, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4157, + "noteOrder": 4159, "time": 0.7037942122186496, "position": { "x": 8, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4256, "time": 0.7202572347266881, "position": { "x": 8, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.7284887459807075, + "noteOrder": 4305, + "time": 0.7284887459807073, "position": { "x": 5, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7326045016077171, "position": { "x": 3, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4351, - "time": 0.7367202572347268, + "noteOrder": 4353, + "time": 0.7367202572347267, "position": { "x": 5, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4376, + "noteOrder": 4378, "time": 0.7408360128617364, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4400, + "noteOrder": 4402, "time": 0.744951768488746, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4424, - "time": 0.7490675241157557, + "noteOrder": 4426, + "time": 0.7490675241157556, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4449, - "time": 0.7531832797427653, + "noteOrder": 4451, + "time": 0.7531832797427652, "position": { "x": 2, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4546, - "time": 0.7696463022508039, + "noteOrder": 4548, + "time": 0.7696463022508038, "position": { "x": 2, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4643, - "time": 0.7861093247588425, + "noteOrder": 4645, + "time": 0.7861093247588423, "position": { "x": 2, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4692, - "time": 0.7943408360128617, + "noteOrder": 4694, + "time": 0.7943408360128618, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4716, + "noteOrder": 4718, "time": 0.7984565916398714, "position": { "x": 5, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4740, - "time": 0.802572347266881, + "noteOrder": 4742, + "time": 0.8025723472668811, "position": { "x": 6, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4935, + "noteOrder": 4937, "time": 0.8354983922829582, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5032, + "noteOrder": 5034, "time": 0.8519614147909967, "position": { "x": 7, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5081, + "noteOrder": 5083, "time": 0.8601929260450161, "position": { "x": 5, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5105, - "time": 0.8643086816720257, + "noteOrder": 5107, + "time": 0.8643086816720258, "position": { "x": 4, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5129, - "time": 0.8684244372990354, + "noteOrder": 5131, + "time": 0.8684244372990353, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5178, + "noteOrder": 5180, "time": 0.8766559485530546, "position": { "x": 5, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5202, + "noteOrder": 5204, "time": 0.8807717041800643, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5227, + "noteOrder": 5229, "time": 0.884887459807074, "position": { "x": 7, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5275, - "time": 0.8931189710610933, + "noteOrder": 5277, + "time": 0.8931189710610932, "position": { "x": 7, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5300, + "noteOrder": 5302, "time": 0.8972347266881029, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5324, - "time": 0.9013504823151126, + "noteOrder": 5326, + "time": 0.9013504823151125, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5372, - "time": 0.9095819935691318, + "noteOrder": 5375, + "time": 0.9095819935691317, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5397, - "time": 0.9136977491961416, + "noteOrder": 5399, + "time": 0.9136977491961414, "position": { "x": 4, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5421, - "time": 0.9178135048231512, + "noteOrder": 5423, + "time": 0.917813504823151, "position": { "x": 5, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5518, + "noteOrder": 5521, "time": 0.9342765273311897, "position": { "x": 3, @@ -2676,9 +2676,9 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 194, + "noteOrder": 195, "time": 0.03292604501607717, "position": { "x": 7, @@ -2699,7 +2699,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 292, "time": 0.04938906752411575, @@ -2722,7 +2722,7 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 365, "time": 0.0617363344051447, @@ -2745,7 +2745,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, "time": 0.06585209003215434, @@ -2768,7 +2768,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 486, "time": 0.08231511254019293, @@ -2791,7 +2791,7 @@ }, { "lineGroupId": 10, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 559, "time": 0.09466237942122187, @@ -2814,9 +2814,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 583, + "noteOrder": 584, "time": 0.0987781350482315, "position": { "x": 7, @@ -2837,7 +2837,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 608, "time": 0.10289389067524116, @@ -2860,7 +2860,7 @@ }, { "lineGroupId": 18, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 632, "time": 0.10700964630225081, @@ -2883,9 +2883,9 @@ }, { "lineGroupId": 18, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 656, + "noteOrder": 657, "time": 0.11112540192926045, "position": { "x": 6, @@ -2906,7 +2906,7 @@ }, { "lineGroupId": 18, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 681, "time": 0.1152411575562701, @@ -2929,7 +2929,7 @@ }, { "lineGroupId": 18, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 754, "time": 0.12758842443729904, @@ -2952,7 +2952,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 778, "time": 0.13170418006430867, @@ -2975,9 +2975,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 802, + "noteOrder": 803, "time": 0.13581993569131834, "position": { "x": 4, @@ -2998,10 +2998,10 @@ }, { "lineGroupId": 26, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 827, - "time": 0.139935691318328, + "time": 0.13993569131832798, "position": { "x": 3, "y": 0 @@ -3021,7 +3021,7 @@ }, { "lineGroupId": 26, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 851, "time": 0.1440514469453376, @@ -3044,10 +3044,10 @@ }, { "lineGroupId": 26, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 875, - "time": 0.14816720257234725, + "noteOrder": 876, + "time": 0.14816720257234728, "position": { "x": 3, "y": 0 @@ -3067,7 +3067,7 @@ }, { "lineGroupId": 26, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 948, "time": 0.16051446945337622, @@ -3090,9 +3090,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 972, + "noteOrder": 973, "time": 0.16463022508038586, "position": { "x": 7, @@ -3112,36 +3112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 997, - "time": 0.1687459807073955, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1070, - "time": 0.18109324758842446, + "noteOrder": 985, + "time": 0.16668810289389066, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3153,18 +3130,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1094, - "time": 0.1852090032154341, + "noteOrder": 985, + "time": 0.16668810289389066, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3181,13 +3158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1167, - "time": 0.197556270096463, + "noteOrder": 997, + "time": 0.1687459807073955, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3199,16 +3176,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1191, - "time": 0.20167202572347265, + "noteOrder": 1009, + "time": 0.17080385852090033, "position": { "x": 3, "y": 0 @@ -3227,13 +3204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1215, - "time": 0.2057877813504823, + "noteOrder": 1009, + "time": 0.17080385852090033, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3245,16 +3222,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1240, - "time": 0.20990353697749195, + "noteOrder": 1070, + "time": 0.18109324758842446, "position": { "x": 3, "y": 0 @@ -3273,13 +3250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1264, - "time": 0.21401929260450162, + "noteOrder": 1082, + "time": 0.18315112540192927, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3291,18 +3268,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1288, - "time": 0.21813504823151125, + "noteOrder": 1082, + "time": 0.18315112540192927, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3319,11 +3296,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1313, - "time": 0.2222508038585209, + "noteOrder": 1094, + "time": 0.1852090032154341, "position": { "x": 7, "y": 0 @@ -3342,13 +3319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1337, - "time": 0.22636655948553056, + "noteOrder": 1107, + "time": 0.1872668810289389, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3360,18 +3337,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1750, - "time": 0.2963344051446945, + "noteOrder": 1107, + "time": 0.1872668810289389, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3388,13 +3365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 1848, - "time": 0.3127974276527331, + "noteOrder": 1167, + "time": 0.197556270096463, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3411,13 +3388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 42, "indexInLine": 2, "isSliding": false, - "noteOrder": 1920, - "time": 0.32514469453376205, + "noteOrder": 1180, + "time": 0.19961414790996784, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3434,13 +3411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1945, - "time": 0.3292604501607717, + "noteOrder": 1180, + "time": 0.19961414790996784, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3452,18 +3429,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2042, - "time": 0.3457234726688103, + "noteOrder": 1192, + "time": 0.20167202572347265, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3480,13 +3457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 43, "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.35807073954983926, + "noteOrder": 1204, + "time": 0.20372990353697748, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3503,13 +3480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2139, - "time": 0.3621864951768489, + "noteOrder": 1204, + "time": 0.20372990353697748, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3521,18 +3498,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 2164, - "time": 0.36630225080385853, + "noteOrder": 1216, + "time": 0.2057877813504823, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3549,13 +3526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 44, "indexInLine": 2, "isSliding": false, - "noteOrder": 2188, - "time": 0.3704180064308682, + "noteOrder": 1228, + "time": 0.20784565916398712, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3572,13 +3549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 44, "indexInLine": 3, "isSliding": false, - "noteOrder": 2212, - "time": 0.37453376205787786, + "noteOrder": 1228, + "time": 0.20784565916398712, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3595,11 +3572,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 4, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2236, - "time": 0.37864951768488747, + "noteOrder": 1240, + "time": 0.20990353697749195, "position": { "x": 3, "y": 0 @@ -3613,18 +3590,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 5, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.3909967845659164, + "noteOrder": 1252, + "time": 0.21196141479099675, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3636,18 +3613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2334, - "time": 0.395112540192926, + "noteOrder": 1252, + "time": 0.21196141479099675, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3664,13 +3641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 2358, - "time": 0.3992282958199357, + "noteOrder": 1265, + "time": 0.21401929260450162, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3682,16 +3659,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 46, "indexInLine": 2, "isSliding": false, - "noteOrder": 2382, - "time": 0.4033440514469453, + "noteOrder": 1277, + "time": 0.21607717041800645, "position": { "x": 7, "y": 0 @@ -3705,16 +3682,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 46, "indexInLine": 3, "isSliding": false, - "noteOrder": 2407, - "time": 0.40745980707395496, + "noteOrder": 1277, + "time": 0.21607717041800645, "position": { "x": 6, "y": 0 @@ -3728,18 +3705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 4, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2431, - "time": 0.4115755627009646, + "noteOrder": 1289, + "time": 0.21813504823151125, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3756,13 +3733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 5, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2504, - "time": 0.42392282958199357, + "noteOrder": 1301, + "time": 0.22019292604501609, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3779,13 +3756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2528, - "time": 0.42803858520900323, + "noteOrder": 1301, + "time": 0.22019292604501609, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3797,16 +3774,3236 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2601, - "time": 0.44038585209003217, + "noteOrder": 1313, + "time": 0.2222508038585209, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1325, + "time": 0.22430868167202572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1325, + "time": 0.22430868167202572, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1338, + "time": 0.22636655948553056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1350, + "time": 0.22842443729903536, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1350, + "time": 0.22842443729903536, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1751, + "time": 0.29633440514469456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1848, + "time": 0.3127974276527331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1921, + "time": 0.32514469453376205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1946, + "time": 0.3292604501607717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2043, + "time": 0.34572347266881026, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3580707395498392, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3621864951768489, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2164, + "time": 0.36630225080385853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2189, + "time": 0.3704180064308682, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3745337620578778, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2237, + "time": 0.37864951768488747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2310, + "time": 0.3909967845659164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2335, + "time": 0.395112540192926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2359, + "time": 0.3992282958199357, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2383, + "time": 0.4033440514469453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2408, + "time": 0.40745980707395496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2432, + "time": 0.4115755627009646, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2505, + "time": 0.4239228295819935, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2529, + "time": 0.42803858520900323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2602, + "time": 0.44038585209003217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2627, + "time": 0.4445016077170418, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2699, + "time": 0.4568488745980707, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4609646302250804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2772, + "time": 0.46919614147909966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2772, + "time": 0.46919614147909966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2821, + "time": 0.47742765273311893, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2821, + "time": 0.47742765273311893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.4856591639871382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2870, + "time": 0.4856591639871382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2918, + "time": 0.4938906752411576, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3307, + "time": 0.5597427652733119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3320, + "time": 0.5618006430868168, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3320, + "time": 0.5618006430868168, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5638585209003215, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5638585209003215, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5638585209003215, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3344, + "time": 0.5659163987138264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3344, + "time": 0.5659163987138264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3356, + "time": 0.5679742765273311, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3356, + "time": 0.5679742765273311, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3368, + "time": 0.5700321543408361, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3368, + "time": 0.5700321543408361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5720900321543408, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5720900321543408, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5720900321543408, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3393, + "time": 0.5741479099678456, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3393, + "time": 0.5741479099678456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5762057877813505, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5762057877813505, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5762057877813505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3417, + "time": 0.5782636655948553, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3417, + "time": 0.5782636655948553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3429, + "time": 0.5803215434083602, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3429, + "time": 0.5803215434083602, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3441, + "time": 0.5823794212218649, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3441, + "time": 0.5823794212218649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3453, + "time": 0.5844372990353697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3453, + "time": 0.5844372990353697, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3466, + "time": 0.5864951768488746, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3466, + "time": 0.5864951768488746, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3478, + "time": 0.5885530546623794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3478, + "time": 0.5885530546623794, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3502, + "time": 0.5926688102893891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3526, + "time": 0.5967845659163987, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3551, + "time": 0.6009003215434084, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3575, + "time": 0.6050160771704179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3599, + "time": 0.6091318327974277, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3672, + "time": 0.6214790996784566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3697, + "time": 0.6255948553054662, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3709, + "time": 0.6276527331189711, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3709, + "time": 0.6276527331189711, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3721, + "time": 0.6297106109324758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3721, + "time": 0.6297106109324758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3721, + "time": 0.6297106109324758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3733, + "time": 0.6317684887459808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3733, + "time": 0.6317684887459808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3745, + "time": 0.6338263665594855, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3745, + "time": 0.6338263665594855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3757, + "time": 0.6358842443729903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3757, + "time": 0.6358842443729903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3770, + "time": 0.6379421221864952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3770, + "time": 0.6379421221864952, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3770, + "time": 0.6379421221864952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3782, + "time": 0.64, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3782, + "time": 0.64, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3794, + "time": 0.6420578778135049, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3794, + "time": 0.6420578778135049, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3794, + "time": 0.6420578778135049, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3806, + "time": 0.6441157556270096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3806, + "time": 0.6441157556270096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3818, + "time": 0.6461736334405144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3818, + "time": 0.6461736334405144, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3830, + "time": 0.6482315112540193, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3830, + "time": 0.6482315112540193, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3843, + "time": 0.6502893890675241, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3843, + "time": 0.6502893890675241, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3855, + "time": 0.652347266881029, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3855, + "time": 0.652347266881029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3867, + "time": 0.6544051446945337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3867, + "time": 0.6544051446945337, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3891, + "time": 0.6585209003215434, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3915, + "time": 0.6626366559485531, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3940, + "time": 0.6667524115755626, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3964, + "time": 0.6708681672025724, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3988, + "time": 0.674983922829582, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4061, + "time": 0.6873311897106109, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4086, + "time": 0.6914469453376205, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4098, + "time": 0.6935048231511255, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4098, + "time": 0.6935048231511255, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4110, + "time": 0.6955627009646302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4110, + "time": 0.6955627009646302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4110, + "time": 0.6955627009646302, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4122, + "time": 0.697620578778135, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4122, + "time": 0.697620578778135, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4134, + "time": 0.6996784565916399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4134, + "time": 0.6996784565916399, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.6996784565916399, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4147, + "time": 0.7017363344051447, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4147, + "time": 0.7017363344051447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4159, + "time": 0.7037942122186496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4159, + "time": 0.7037942122186496, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4183, + "time": 0.7079099678456591, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4195, + "time": 0.709967845659164, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4195, + "time": 0.709967845659164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4207, + "time": 0.7120257234726688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4207, + "time": 0.7120257234726688, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4207, + "time": 0.7120257234726688, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4219, + "time": 0.7140836012861737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4219, + "time": 0.7140836012861737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7161414790996784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7161414790996784, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7161414790996784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4244, + "time": 0.7181993569131833, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4244, + "time": 0.7181993569131833, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4256, + "time": 0.7202572347266881, "position": { "x": 6, "y": 0 @@ -3820,18 +7017,133 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4256, + "time": 0.7202572347266881, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4280, + "time": 0.7243729903536978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4329, + "time": 0.7326045016077171, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4378, + "time": 0.7408360128617364, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4451, + "time": 0.7531832797427652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2625, - "time": 0.4445016077170418, + "noteOrder": 4475, + "time": 0.7572990353697749, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3848,13 +7160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2698, - "time": 0.4568488745980708, + "noteOrder": 4487, + "time": 0.7593569131832797, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3871,13 +7183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2723, - "time": 0.4609646302250804, + "noteOrder": 4487, + "time": 0.7593569131832797, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3889,18 +7201,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2771, - "time": 0.4691961414790997, + "noteOrder": 4499, + "time": 0.7614147909967846, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3912,18 +7224,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2771, - "time": 0.4691961414790997, + "noteOrder": 4499, + "time": 0.7614147909967846, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3940,13 +7252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 2820, - "time": 0.477427652733119, + "noteOrder": 4499, + "time": 0.7614147909967846, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3958,18 +7270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2820, - "time": 0.477427652733119, + "noteOrder": 4511, + "time": 0.7634726688102894, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3986,13 +7298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2869, - "time": 0.4856591639871383, + "noteOrder": 4511, + "time": 0.7634726688102894, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4009,13 +7321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2869, - "time": 0.4856591639871383, + "noteOrder": 4523, + "time": 0.7655305466237943, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4027,18 +7339,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2917, - "time": 0.4938906752411576, + "noteOrder": 4523, + "time": 0.7655305466237943, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4050,18 +7362,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3306, - "time": 0.559742765273312, + "noteOrder": 4523, + "time": 0.7655305466237943, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4073,18 +7385,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3330, - "time": 0.5638585209003216, + "noteOrder": 4536, + "time": 0.767588424437299, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4101,13 +7413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3379, - "time": 0.5720900321543408, + "noteOrder": 4536, + "time": 0.767588424437299, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4119,18 +7431,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3403, - "time": 0.5762057877813505, + "noteOrder": 4548, + "time": 0.7696463022508038, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4147,13 +7459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3501, - "time": 0.592668810289389, + "noteOrder": 4548, + "time": 0.7696463022508038, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4165,18 +7477,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3525, - "time": 0.5967845659163987, + "noteOrder": 4572, + "time": 0.7737620578778135, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4193,13 +7505,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 2, "isSliding": false, - "noteOrder": 3549, - "time": 0.6009003215434083, + "noteOrder": 4584, + "time": 0.7758199356913184, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4216,13 +7528,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 3, "isSliding": false, - "noteOrder": 3574, - "time": 0.6050160771704179, + "noteOrder": 4584, + "time": 0.7758199356913184, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4239,13 +7551,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 4, "isSliding": false, - "noteOrder": 3598, - "time": 0.6091318327974277, + "noteOrder": 4596, + "time": 0.7778778135048231, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4262,13 +7574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 5, "isSliding": false, - "noteOrder": 3671, - "time": 0.6214790996784566, + "noteOrder": 4596, + "time": 0.7778778135048231, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4285,13 +7597,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3695, - "time": 0.6255948553054662, + "noteOrder": 4596, + "time": 0.7778778135048231, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4308,13 +7620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3719, - "time": 0.6297106109324758, + "noteOrder": 4609, + "time": 0.779935691318328, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4326,18 +7638,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3768, - "time": 0.6379421221864952, + "noteOrder": 4609, + "time": 0.779935691318328, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4354,13 +7666,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3792, - "time": 0.6420578778135049, + "noteOrder": 4621, + "time": 0.7819935691318328, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4372,18 +7684,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3890, - "time": 0.6585209003215434, + "noteOrder": 4621, + "time": 0.7819935691318328, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4400,13 +7712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3914, - "time": 0.662636655948553, + "noteOrder": 4621, + "time": 0.7819935691318328, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4418,16 +7730,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 179, "indexInLine": 2, "isSliding": false, - "noteOrder": 3938, - "time": 0.6667524115755628, + "noteOrder": 4633, + "time": 0.7840514469453376, "position": { "x": 2, "y": 0 @@ -4441,16 +7753,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 179, "indexInLine": 3, "isSliding": false, - "noteOrder": 3962, - "time": 0.6708681672025724, + "noteOrder": 4633, + "time": 0.7840514469453376, "position": { "x": 4, "y": 0 @@ -4464,18 +7776,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 179, "indexInLine": 4, "isSliding": false, - "noteOrder": 3987, - "time": 0.674983922829582, + "noteOrder": 4645, + "time": 0.7861093247588423, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4487,16 +7799,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 179, "indexInLine": 5, "isSliding": false, - "noteOrder": 4060, - "time": 0.6873311897106109, + "noteOrder": 4645, + "time": 0.7861093247588423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4669, + "time": 0.790225080385852, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4767, + "time": 0.8066881028938906, "position": { "x": 6, "y": 0 @@ -4515,13 +7873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4084, - "time": 0.6914469453376206, + "noteOrder": 4767, + "time": 0.8066881028938906, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4538,13 +7896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4108, - "time": 0.6955627009646302, + "noteOrder": 4815, + "time": 0.8149196141479099, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4556,18 +7914,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4133, - "time": 0.6996784565916399, + "noteOrder": 4815, + "time": 0.8149196141479099, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4579,18 +7937,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4181, - "time": 0.7079099678456592, + "noteOrder": 4864, + "time": 0.8231511254019293, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4607,13 +7965,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4206, - "time": 0.7120257234726688, + "noteOrder": 4864, + "time": 0.8231511254019293, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4630,13 +7988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, - "time": 0.7161414790996785, + "noteOrder": 4876, + "time": 0.8252090032154341, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4648,18 +8006,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4279, - "time": 0.7243729903536978, + "noteOrder": 4876, + "time": 0.8252090032154341, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4676,13 +8034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 4327, - "time": 0.7326045016077171, + "noteOrder": 4888, + "time": 0.8272668810289389, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4694,18 +8052,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 188, "indexInLine": 2, "isSliding": false, - "noteOrder": 4376, - "time": 0.7408360128617364, + "noteOrder": 4900, + "time": 0.8293247588424437, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4717,16 +8075,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 188, "indexInLine": 3, "isSliding": false, - "noteOrder": 4449, - "time": 0.7531832797427653, + "noteOrder": 4900, + "time": 0.8293247588424437, "position": { "x": 4, "y": 0 @@ -4740,18 +8098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4473, - "time": 0.7572990353697749, + "noteOrder": 4913, + "time": 0.8313826366559485, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4763,18 +8121,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4497, - "time": 0.7614147909967847, + "noteOrder": 4925, + "time": 0.8334405144694534, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4791,13 +8149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4522, - "time": 0.7655305466237943, + "noteOrder": 4925, + "time": 0.8334405144694534, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4809,18 +8167,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4570, - "time": 0.7737620578778136, + "noteOrder": 4961, + "time": 0.8396141479099678, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4832,18 +8190,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4595, - "time": 0.7778778135048232, + "noteOrder": 4973, + "time": 0.8416720257234727, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4860,13 +8218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4619, - "time": 0.7819935691318328, + "noteOrder": 4973, + "time": 0.8416720257234727, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4878,18 +8236,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4667, - "time": 0.790225080385852, + "noteOrder": 4986, + "time": 0.8437299035369775, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4901,18 +8259,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4765, - "time": 0.8066881028938906, + "noteOrder": 4998, + "time": 0.8457877813504823, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4924,18 +8282,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4765, - "time": 0.8066881028938906, + "noteOrder": 4998, + "time": 0.8457877813504823, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4952,13 +8310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 4813, - "time": 0.8149196141479099, + "noteOrder": 5010, + "time": 0.847845659163987, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4970,16 +8328,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4813, - "time": 0.8149196141479099, + "noteOrder": 5022, + "time": 0.849903536977492, "position": { "x": 3, "y": 0 @@ -4998,13 +8356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4862, - "time": 0.8231511254019293, + "noteOrder": 5022, + "time": 0.849903536977492, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5021,11 +8379,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4862, - "time": 0.8231511254019293, + "noteOrder": 5059, + "time": 0.8560771704180065, "position": { "x": 7, "y": 0 @@ -5044,13 +8402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, - "time": 0.8272668810289389, + "noteOrder": 5131, + "time": 0.8684244372990353, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5062,18 +8420,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4911, - "time": 0.8313826366559486, + "noteOrder": 5156, + "time": 0.872540192926045, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5085,18 +8443,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4959, - "time": 0.8396141479099678, + "noteOrder": 5229, + "time": 0.884887459807074, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5113,11 +8471,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4984, - "time": 0.8437299035369775, + "noteOrder": 5253, + "time": 0.8890032154340836, "position": { "x": 7, "y": 0 @@ -5131,18 +8489,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5008, - "time": 0.8478456591639871, + "noteOrder": 5326, + "time": 0.9013504823151125, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5159,13 +8517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5056, - "time": 0.8560771704180065, + "noteOrder": 5350, + "time": 0.9054662379421222, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5182,13 +8540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5129, - "time": 0.8684244372990354, + "noteOrder": 5423, + "time": 0.917813504823151, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5205,13 +8563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5154, - "time": 0.872540192926045, + "noteOrder": 5448, + "time": 0.9219292604501608, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5223,18 +8581,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5227, - "time": 0.884887459807074, + "noteOrder": 5460, + "time": 0.9239871382636655, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5246,18 +8604,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5251, - "time": 0.8890032154340836, + "noteOrder": 5460, + "time": 0.9239871382636655, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5269,18 +8627,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 5324, - "time": 0.9013504823151126, + "noteOrder": 5472, + "time": 0.9260450160771705, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5297,11 +8655,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5348, - "time": 0.9054662379421222, + "noteOrder": 5484, + "time": 0.9281028938906752, "position": { "x": 3, "y": 0 @@ -5315,18 +8673,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5421, - "time": 0.9178135048231512, + "noteOrder": 5484, + "time": 0.9281028938906752, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5338,16 +8696,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5445, - "time": 0.9219292604501608, + "noteOrder": 5496, + "time": 0.93016077170418, "position": { "x": 7, "y": 0 @@ -5366,13 +8724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5470, - "time": 0.9260450160771705, + "noteOrder": 5508, + "time": 0.9322186495176848, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5384,18 +8742,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5494, - "time": 0.9301607717041801, + "noteOrder": 5508, + "time": 0.9322186495176848, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5413,10 +8771,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5543, - "time": 0.9383922829581994, + "noteOrder": 5545, + "time": 0.9383922829581993, "position": { "x": 7, "y": 0 @@ -5436,9 +8794,9 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5591, + "noteOrder": 5594, "time": 0.9466237942122186, "position": { "x": 7, @@ -5459,9 +8817,9 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5567, + "noteOrder": 5569, "time": 0.942508038585209, "position": { "x": 3, @@ -5482,9 +8840,9 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5591, + "noteOrder": 5594, "time": 0.9466237942122186, "position": { "x": 3, diff --git "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1b.json" "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1b.json" index 57f2704a..e98e34a3 100644 --- "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1b.json" +++ "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/324_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 438, - "time": 0.07408360128617363, + "time": 0.07408360128617364, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 827, - "time": 0.139935691318328, + "time": 0.13993569131832798, "position": { "x": 5, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 875, - "time": 0.14816720257234725, + "noteOrder": 876, + "time": 0.14816720257234728, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1021, - "time": 0.17286173633440516, + "time": 0.17286173633440513, "position": { "x": 3, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1118, + "noteOrder": 1119, "time": 0.18932475884244374, "position": { "x": 7, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1483, - "time": 0.25106109324758846, + "noteOrder": 1484, + "time": 0.2510610932475884, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1507, + "noteOrder": 1508, "time": 0.2551768488745981, "position": { "x": 6, @@ -234,7 +234,7 @@ }, { "noteOrder": 1532, - "time": 0.25929260450160774, + "time": 0.2592926045016077, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1580, + "noteOrder": 1581, "time": 0.267524115755627, "position": { "x": 4, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1604, + "noteOrder": 1605, "time": 0.2716398713826367, "position": { "x": 4, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1750, - "time": 0.2963344051446945, + "noteOrder": 1751, + "time": 0.29633440514469456, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1775, - "time": 0.30045016077170417, + "time": 0.3004501607717042, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1799, + "noteOrder": 1800, "time": 0.30456591639871383, "position": { "x": 4, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1823, - "time": 0.30868167202572344, + "noteOrder": 1824, + "time": 0.3086816720257235, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1945, + "noteOrder": 1946, "time": 0.3292604501607717, "position": { "x": 6, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.3333762057877814, + "noteOrder": 1970, + "time": 0.3333762057877813, "position": { "x": 8, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.337491961414791, "position": { "x": 5, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.34160771704180065, "position": { "x": 7, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.3457234726688103, + "noteOrder": 2043, + "time": 0.34572347266881026, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.3498392282958199, "position": { "x": 4, @@ -534,7 +534,7 @@ }, { "noteOrder": 2091, - "time": 0.3539549839228296, + "time": 0.35395498392282954, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.35807073954983926, + "noteOrder": 2116, + "time": 0.3580707395498392, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.3621864951768489, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2188, + "noteOrder": 2189, "time": 0.3704180064308682, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.37453376205787786, + "noteOrder": 2213, + "time": 0.3745337620578778, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2334, + "noteOrder": 2335, "time": 0.395112540192926, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2358, + "noteOrder": 2359, "time": 0.3992282958199357, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2382, + "noteOrder": 2383, "time": 0.4033440514469453, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2408, "time": 0.40745980707395496, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2431, + "noteOrder": 2432, "time": 0.4115755627009646, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2455, - "time": 0.4156913183279743, + "noteOrder": 2456, + "time": 0.41569131832797424, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.4198070739549839, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2504, - "time": 0.42392282958199357, + "noteOrder": 2505, + "time": 0.4239228295819935, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2528, + "noteOrder": 2529, "time": 0.42803858520900323, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2553, - "time": 0.43215434083601284, + "noteOrder": 2554, + "time": 0.4321543408360129, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2625, + "noteOrder": 2627, "time": 0.4445016077170418, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2650, + "noteOrder": 2651, "time": 0.44861736334405145, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2724, "time": 0.4609646302250804, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2724, "time": 0.4609646302250804, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2771, - "time": 0.4691961414790997, + "noteOrder": 2772, + "time": 0.46919614147909966, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2771, - "time": 0.4691961414790997, + "noteOrder": 2772, + "time": 0.46919614147909966, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2820, - "time": 0.477427652733119, + "noteOrder": 2821, + "time": 0.47742765273311893, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2820, - "time": 0.477427652733119, + "noteOrder": 2821, + "time": 0.47742765273311893, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2869, - "time": 0.4856591639871383, + "noteOrder": 2870, + "time": 0.4856591639871382, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2869, - "time": 0.4856591639871383, + "noteOrder": 2870, + "time": 0.4856591639871382, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3549, - "time": 0.6009003215434083, + "noteOrder": 3551, + "time": 0.6009003215434084, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3598, + "noteOrder": 3599, "time": 0.6091318327974277, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3646, - "time": 0.6173633440514469, + "noteOrder": 3648, + "time": 0.617363344051447, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.6667524115755628, + "noteOrder": 3940, + "time": 0.6667524115755626, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3987, + "noteOrder": 3988, "time": 0.674983922829582, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4035, + "noteOrder": 4037, "time": 0.6832154340836013, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7326045016077171, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4424, - "time": 0.7490675241157557, + "noteOrder": 4426, + "time": 0.7490675241157556, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4716, + "noteOrder": 4718, "time": 0.7984565916398714, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4813, + "noteOrder": 4815, "time": 0.8149196141479099, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5105, - "time": 0.8643086816720257, + "noteOrder": 5107, + "time": 0.8643086816720258, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5154, + "noteOrder": 5156, "time": 0.872540192926045, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5202, + "noteOrder": 5204, "time": 0.8807717041800643, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5494, - "time": 0.9301607717041801, + "noteOrder": 5496, + "time": 0.93016077170418, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5543, - "time": 0.9383922829581994, + "noteOrder": 5545, + "time": 0.9383922829581993, "position": { "x": 6, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5591, + "noteOrder": 5594, "time": 0.9466237942122186, "position": { "x": 7, @@ -1376,12 +1376,1553 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 195, + "time": 0.03292604501607717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 219, + "time": 0.03704180064308682, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 219, + "time": 0.03704180064308682, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 3, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 243, + "time": 0.041157556270096464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 3, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 268, + "time": 0.045273311897106115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 3, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 268, + "time": 0.045273311897106115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 4, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 292, + "time": 0.04938906752411575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 4, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 316, + "time": 0.053504823151125404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 4, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 316, + "time": 0.053504823151125404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 340, + "time": 0.05762057877813505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 365, + "time": 0.0617363344051447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 365, + "time": 0.0617363344051447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 389, + "time": 0.06585209003215434, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 535, + "time": 0.09054662379421223, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 584, + "time": 0.0987781350482315, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 608, + "time": 0.10289389067524116, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 608, + "time": 0.10289389067524116, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 632, + "time": 0.10700964630225081, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 657, + "time": 0.11112540192926045, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 657, + "time": 0.11112540192926045, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 681, + "time": 0.1152411575562701, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 705, + "time": 0.11935691318327973, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 705, + "time": 0.11935691318327973, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 730, + "time": 0.1234726688102894, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 754, + "time": 0.12758842443729904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 754, + "time": 0.12758842443729904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 778, + "time": 0.13170418006430867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 924, + "time": 0.15639871382636655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 973, + "time": 0.16463022508038586, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1021, + "time": 0.17286173633440513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1070, + "time": 0.18109324758842446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1119, + "time": 0.18932475884244374, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1167, + "time": 0.197556270096463, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1192, + "time": 0.20167202572347265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1192, + "time": 0.20167202572347265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1216, + "time": 0.2057877813504823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1240, + "time": 0.20990353697749195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1240, + "time": 0.20990353697749195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1265, + "time": 0.21401929260450162, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1289, + "time": 0.21813504823151125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1289, + "time": 0.21813504823151125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1313, + "time": 0.2222508038585209, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1338, + "time": 0.22636655948553056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1338, + "time": 0.22636655948553056, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1848, + "time": 0.3127974276527331, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1897, + "time": 0.32102893890675244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1848, + "time": 0.3127974276527331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1897, + "time": 0.32102893890675244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.37864951768488747, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.38688102893890675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.37864951768488747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.38688102893890675, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2578, + "time": 0.4362700964630225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2602, + "time": 0.44038585209003217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2675, + "time": 0.4527331189710611, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2699, + "time": 0.4568488745980707, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3307, + "time": 0.5597427652733119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5638585209003215, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3332, + "time": 0.5638585209003215, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3356, + "time": 0.5679742765273311, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5720900321543408, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5720900321543408, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3405, + "time": 0.5762057877813505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3429, + "time": 0.5803215434083602, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3429, + "time": 0.5803215434083602, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3453, + "time": 0.5844372990353697, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3478, + "time": 0.5885530546623794, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 194, - "time": 0.03292604501607717, + "noteOrder": 3478, + "time": 0.5885530546623794, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1393,16 +2934,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 3, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 243, - "time": 0.041157556270096464, + "noteOrder": 3502, + "time": 0.5926688102893891, "position": { "x": 7, "y": 0 @@ -1416,18 +2957,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 4, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 292, - "time": 0.04938906752411575, + "noteOrder": 3648, + "time": 0.617363344051447, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1444,13 +2985,13 @@ "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 340, - "time": 0.05762057877813505, + "noteOrder": 3697, + "time": 0.6255948553054662, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1467,13 +3008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 389, - "time": 0.06585209003215434, + "noteOrder": 3721, + "time": 0.6297106109324758, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1485,16 +3026,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 535, - "time": 0.09054662379421223, + "noteOrder": 3721, + "time": 0.6297106109324758, "position": { "x": 4, "y": 0 @@ -1508,16 +3049,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 583, - "time": 0.0987781350482315, + "noteOrder": 3745, + "time": 0.6338263665594855, "position": { "x": 3, "y": 0 @@ -1531,16 +3072,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 632, - "time": 0.10700964630225081, + "noteOrder": 3770, + "time": 0.6379421221864952, "position": { "x": 3, "y": 0 @@ -1559,11 +3100,34 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 681, - "time": 0.1152411575562701, + "noteOrder": 3770, + "time": 0.6379421221864952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3794, + "time": 0.6420578778135049, "position": { "x": 3, "y": 0 @@ -1582,11 +3146,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 729, - "time": 0.1234726688102894, + "noteOrder": 3818, + "time": 0.6461736334405144, "position": { "x": 3, "y": 0 @@ -1600,18 +3164,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 778, - "time": 0.13170418006430867, + "noteOrder": 3818, + "time": 0.6461736334405144, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1628,13 +3192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 14, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 924, - "time": 0.15639871382636655, + "noteOrder": 3843, + "time": 0.6502893890675241, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -1646,18 +3210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 972, - "time": 0.16463022508038586, + "noteOrder": 3867, + "time": 0.6544051446945337, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1674,11 +3238,11 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1021, - "time": 0.17286173633440516, + "noteOrder": 3867, + "time": 0.6544051446945337, "position": { "x": 4, "y": 0 @@ -1697,11 +3261,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1070, - "time": 0.18109324758842446, + "noteOrder": 3891, + "time": 0.6585209003215434, "position": { "x": 3, "y": 0 @@ -1720,11 +3284,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1118, - "time": 0.18932475884244374, + "noteOrder": 4037, + "time": 0.6832154340836013, "position": { "x": 6, "y": 0 @@ -1743,11 +3307,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1167, - "time": 0.197556270096463, + "noteOrder": 4086, + "time": 0.6914469453376205, "position": { "x": 7, "y": 0 @@ -1766,13 +3330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1215, - "time": 0.2057877813504823, + "noteOrder": 4110, + "time": 0.6955627009646302, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1784,18 +3348,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1264, - "time": 0.21401929260450162, + "noteOrder": 4110, + "time": 0.6955627009646302, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1812,11 +3376,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1313, - "time": 0.2222508038585209, + "noteOrder": 4134, + "time": 0.6996784565916399, "position": { "x": 3, "y": 0 @@ -1835,11 +3399,57 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1848, - "time": 0.3127974276527331, + "noteOrder": 4159, + "time": 0.7037942122186496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4159, + "time": 0.7037942122186496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4183, + "time": 0.7079099678456591, "position": { "x": 7, "y": 0 @@ -1858,11 +3468,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1896, - "time": 0.32102893890675244, + "noteOrder": 4207, + "time": 0.7120257234726688, "position": { "x": 7, "y": 0 @@ -1881,11 +3491,34 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1848, - "time": 0.3127974276527331, + "noteOrder": 4207, + "time": 0.7120257234726688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7161414790996784, "position": { "x": 3, "y": 0 @@ -1904,11 +3537,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1896, - "time": 0.32102893890675244, + "noteOrder": 4256, + "time": 0.7202572347266881, "position": { "x": 3, "y": 0 @@ -1927,11 +3560,34 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2236, - "time": 0.37864951768488747, + "noteOrder": 4256, + "time": 0.7202572347266881, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4280, + "time": 0.7243729903536978, "position": { "x": 7, "y": 0 @@ -1950,13 +3606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2285, - "time": 0.3868810289389068, + "noteOrder": 4329, + "time": 0.7326045016077171, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1973,11 +3629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2236, - "time": 0.37864951768488747, + "noteOrder": 4378, + "time": 0.7408360128617364, "position": { "x": 3, "y": 0 @@ -1996,13 +3652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2285, - "time": 0.3868810289389068, + "noteOrder": 4426, + "time": 0.7490675241157556, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2019,13 +3675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2577, - "time": 0.4362700964630225, + "noteOrder": 4475, + "time": 0.7572990353697749, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2037,18 +3693,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2601, - "time": 0.44038585209003217, + "noteOrder": 4499, + "time": 0.7614147909967846, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2060,16 +3716,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2674, - "time": 0.4527331189710611, + "noteOrder": 4499, + "time": 0.7614147909967846, "position": { "x": 6, "y": 0 @@ -2088,13 +3744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 2698, - "time": 0.4568488745980708, + "noteOrder": 4523, + "time": 0.7655305466237943, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2106,18 +3762,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3306, - "time": 0.559742765273312, + "noteOrder": 4548, + "time": 0.7696463022508038, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2129,18 +3785,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3355, - "time": 0.5679742765273311, + "noteOrder": 4548, + "time": 0.7696463022508038, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2157,11 +3813,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3403, - "time": 0.5762057877813505, + "noteOrder": 4572, + "time": 0.7737620578778135, "position": { "x": 7, "y": 0 @@ -2180,11 +3836,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3452, - "time": 0.5844372990353698, + "noteOrder": 4596, + "time": 0.7778778135048231, "position": { "x": 7, "y": 0 @@ -2198,18 +3854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3501, - "time": 0.592668810289389, + "noteOrder": 4596, + "time": 0.7778778135048231, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2226,13 +3882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 3646, - "time": 0.6173633440514469, + "noteOrder": 4621, + "time": 0.7819935691318328, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2244,16 +3900,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3695, - "time": 0.6255948553054662, + "noteOrder": 4645, + "time": 0.7861093247588423, "position": { "x": 3, "y": 0 @@ -2272,13 +3928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3744, - "time": 0.6338263665594855, + "noteOrder": 4645, + "time": 0.7861093247588423, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2290,18 +3946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3792, - "time": 0.6420578778135049, + "noteOrder": 4669, + "time": 0.790225080385852, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2313,18 +3969,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3841, - "time": 0.6502893890675241, + "noteOrder": 4718, + "time": 0.7984565916398714, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2341,11 +3997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3890, - "time": 0.6585209003215434, + "noteOrder": 4767, + "time": 0.8066881028938906, "position": { "x": 3, "y": 0 @@ -2364,11 +4020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4035, - "time": 0.6832154340836013, + "noteOrder": 4815, + "time": 0.8149196141479099, "position": { "x": 6, "y": 0 @@ -2387,11 +4043,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4084, - "time": 0.6914469453376206, + "noteOrder": 4864, + "time": 0.8231511254019293, "position": { "x": 7, "y": 0 @@ -2410,13 +4066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4133, - "time": 0.6996784565916399, + "noteOrder": 4888, + "time": 0.8272668810289389, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2428,18 +4084,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4181, - "time": 0.7079099678456592, + "noteOrder": 4888, + "time": 0.8272668810289389, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2456,13 +4112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4230, - "time": 0.7161414790996785, + "noteOrder": 4913, + "time": 0.8313826366559485, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2479,11 +4135,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4279, - "time": 0.7243729903536978, + "noteOrder": 4937, + "time": 0.8354983922829582, "position": { "x": 7, "y": 0 @@ -2497,18 +4153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4327, - "time": 0.7326045016077171, + "noteOrder": 4937, + "time": 0.8354983922829582, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2520,18 +4176,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4376, - "time": 0.7408360128617364, + "noteOrder": 4961, + "time": 0.8396141479099678, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2543,18 +4199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4424, - "time": 0.7490675241157557, + "noteOrder": 4986, + "time": 0.8437299035369775, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2566,18 +4222,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4473, - "time": 0.7572990353697749, + "noteOrder": 4986, + "time": 0.8437299035369775, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2594,13 +4250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4522, - "time": 0.7655305466237943, + "noteOrder": 5010, + "time": 0.847845659163987, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2617,11 +4273,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4570, - "time": 0.7737620578778136, + "noteOrder": 5034, + "time": 0.8519614147909967, "position": { "x": 7, "y": 0 @@ -2635,18 +4291,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4619, - "time": 0.7819935691318328, + "noteOrder": 5034, + "time": 0.8519614147909967, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2663,11 +4319,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4667, - "time": 0.790225080385852, + "noteOrder": 5059, + "time": 0.8560771704180065, "position": { "x": 7, "y": 0 @@ -2686,11 +4342,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4716, - "time": 0.7984565916398714, + "noteOrder": 5204, + "time": 0.8807717041800643, "position": { "x": 4, "y": 0 @@ -2709,11 +4365,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4765, - "time": 0.8066881028938906, + "noteOrder": 5253, + "time": 0.8890032154340836, "position": { "x": 3, "y": 0 @@ -2732,13 +4388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4813, - "time": 0.8149196141479099, + "noteOrder": 5277, + "time": 0.8931189710610932, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2755,13 +4411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4862, - "time": 0.8231511254019293, + "noteOrder": 5277, + "time": 0.8931189710610932, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2773,18 +4429,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4911, - "time": 0.8313826366559486, + "noteOrder": 5302, + "time": 0.8972347266881029, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2796,18 +4452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4959, - "time": 0.8396141479099678, + "noteOrder": 5326, + "time": 0.9013504823151125, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2824,13 +4480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5008, - "time": 0.8478456591639871, + "noteOrder": 5326, + "time": 0.9013504823151125, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2842,18 +4498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5056, - "time": 0.8560771704180065, + "noteOrder": 5350, + "time": 0.9054662379421222, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2865,18 +4521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5202, - "time": 0.8807717041800643, + "noteOrder": 5375, + "time": 0.9095819935691317, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2888,18 +4544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5251, - "time": 0.8890032154340836, + "noteOrder": 5375, + "time": 0.9095819935691317, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2916,11 +4572,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5300, - "time": 0.8972347266881029, + "noteOrder": 5399, + "time": 0.9136977491961414, "position": { "x": 3, "y": 0 @@ -2939,11 +4595,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5348, - "time": 0.9054662379421222, + "noteOrder": 5423, + "time": 0.917813504823151, "position": { "x": 3, "y": 0 @@ -2957,18 +4613,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5397, - "time": 0.9136977491961416, + "noteOrder": 5423, + "time": 0.917813504823151, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2986,9 +4642,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5445, + "noteOrder": 5448, "time": 0.9219292604501608, "position": { "x": 3, @@ -3009,9 +4665,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5591, + "noteOrder": 5594, "time": 0.9466237942122186, "position": { "x": 6, diff --git "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/info.json" "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/info.json" index 52d7f9f1..26c6cf50 100644 --- "a/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/info.json" +++ "b/tracks/GRADIUS REMIX\357\274\210\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA Ver.)/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "GRADIUS REMIX\uff08\u2191\u2191\u2193\u2193\u2190\u2192\u2190\u2192BA Ver.)", - "SongLength": "125.361633", + "SongLength": "115.408980", "SongAuthorName": "TOKYO MACHINE", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Garuda (Hommarju Remix)/314_difficulty_1a.json b/tracks/Garuda (Hommarju Remix)/314_difficulty_1a.json index 97e5c142..e701d740 100644 --- a/tracks/Garuda (Hommarju Remix)/314_difficulty_1a.json +++ b/tracks/Garuda (Hommarju Remix)/314_difficulty_1a.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 96, - "time": 0.014939309056956116, + "noteOrder": 97, + "time": 0.014939309056956115, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.018674136321195148, + "time": 0.018674136321195144, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 193, - "time": 0.029878618113912233, + "time": 0.02987861811391223, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 362, - "time": 0.056022408963585436, + "time": 0.05602240896358543, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 386, - "time": 0.059757236227824466, + "time": 0.05975723622782446, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 410, - "time": 0.0634920634920635, + "time": 0.06349206349206349, "position": { "x": 3, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 458, + "noteOrder": 459, "time": 0.07096171802054155, "position": { "x": 3, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 482, - "time": 0.07469654528478059, + "noteOrder": 483, + "time": 0.07469654528478058, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 700, - "time": 0.10830999066293184, + "time": 0.10830999066293183, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 724, - "time": 0.11204481792717087, + "time": 0.11204481792717086, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 748, - "time": 0.11577964519140992, + "time": 0.11577964519140989, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 772, - "time": 0.11951447245564893, + "time": 0.11951447245564892, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 796, - "time": 0.12324929971988796, + "time": 0.12324929971988795, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 820, - "time": 0.126984126984127, + "time": 0.12698412698412698, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 845, "time": 0.13071895424836602, "position": { "x": 4, @@ -474,7 +474,7 @@ }, { "noteOrder": 941, - "time": 0.14565826330532214, + "time": 0.1456582633053221, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 989, - "time": 0.1531279178338002, + "time": 0.15312791783380017, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 5, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1037, - "time": 0.16059757236227826, + "noteOrder": 1038, + "time": 0.16059757236227823, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1110, - "time": 0.17180205415499533, + "time": 0.1718020541549953, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1122, - "time": 0.17366946778711487, + "time": 0.17366946778711484, "position": { "x": 3, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1134, - "time": 0.17553688141923438, + "time": 0.17553688141923435, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1399, - "time": 0.2166199813258637, + "noteOrder": 1400, + "time": 0.21661998132586366, "position": { "x": 8, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1423, - "time": 0.22035480859010273, + "noteOrder": 1424, + "time": 0.2203548085901027, "position": { "x": 8, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1496, - "time": 0.23155929038281983, + "time": 0.23155929038281978, "position": { "x": 5, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1520, - "time": 0.23529411764705885, + "time": 0.23529411764705882, "position": { "x": 3, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.24649859943977592, + "noteOrder": 1593, + "time": 0.2464985994397759, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.27637721755368816, "position": { "x": 2, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1809, + "noteOrder": 1810, "time": 0.2801120448179272, "position": { "x": 2, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1833, + "noteOrder": 1834, "time": 0.2838468720821662, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1857, - "time": 0.28758169934640526, + "noteOrder": 1858, + "time": 0.2875816993464052, "position": { "x": 6, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1882, - "time": 0.2913165266106443, + "time": 0.2913165266106442, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.29878618113912236, + "noteOrder": 1931, + "time": 0.2987861811391223, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1954, - "time": 0.3025210084033614, + "noteOrder": 1955, + "time": 0.3025210084033613, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.3062558356676004, + "noteOrder": 1979, + "time": 0.30625583566760034, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2003, "time": 0.3099906629318394, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2050, + "noteOrder": 2051, "time": 0.31746031746031744, "position": { "x": 3, @@ -1034,7 +1034,7 @@ }, { "noteOrder": 2075, - "time": 0.3211951447245565, + "time": 0.32119514472455646, "position": { "x": 5, "y": 0 @@ -1054,7 +1054,7 @@ }, { "noteOrder": 2099, - "time": 0.32492997198879553, + "time": 0.3249299719887955, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.32866479925303455, "position": { "x": 8, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.3323996265172736, + "noteOrder": 2148, + "time": 0.33239962651727356, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2171, - "time": 0.33613445378151263, + "noteOrder": 2172, + "time": 0.3361344537815126, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2195, - "time": 0.33986928104575165, + "noteOrder": 2196, + "time": 0.3398692810457516, "position": { "x": 4, "y": 0 @@ -1154,7 +1154,7 @@ }, { "noteOrder": 2268, - "time": 0.35107376283846875, + "time": 0.3510737628384687, "position": { "x": 2, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2292, - "time": 0.35480859010270777, + "noteOrder": 2293, + "time": 0.3548085901027077, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2340, + "noteOrder": 2341, "time": 0.3622782446311858, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.3660130718954248, + "noteOrder": 2365, + "time": 0.36601307189542487, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2388, + "noteOrder": 2389, "time": 0.3697478991596639, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2436, - "time": 0.37721755368814197, + "noteOrder": 2437, + "time": 0.3772175536881419, "position": { "x": 7, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2485, + "noteOrder": 2486, "time": 0.38468720821662, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.388422035480859, "position": { "x": 2, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2533, - "time": 0.3921568627450981, + "noteOrder": 2534, + "time": 0.39215686274509803, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2557, - "time": 0.3958916900093371, + "noteOrder": 2558, + "time": 0.39589169000933705, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2581, + "noteOrder": 2582, "time": 0.3996265172735761, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2605, + "noteOrder": 2606, "time": 0.40336134453781514, "position": { "x": 8, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.40709617180205415, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2654, + "noteOrder": 2655, "time": 0.41083099906629317, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2679, "time": 0.4145658263305322, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2798, - "time": 0.4332399626517274, + "noteOrder": 2799, + "time": 0.4332399626517273, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 2823, "time": 0.4369747899159664, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2847, - "time": 0.44070961718020546, + "noteOrder": 2848, + "time": 0.4407096171802054, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2871, - "time": 0.4444444444444445, + "noteOrder": 2872, + "time": 0.4444444444444444, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.4481792717086835, + "noteOrder": 2896, + "time": 0.44817927170868344, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2920, "time": 0.4519140989729225, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2943, + "noteOrder": 2944, "time": 0.4556489262371615, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2967, + "noteOrder": 2968, "time": 0.45938375350140054, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3015, - "time": 0.4668534080298787, + "noteOrder": 3017, + "time": 0.46685340802987857, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3064, - "time": 0.4743230625583567, + "noteOrder": 3065, + "time": 0.47432306255835666, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3184, - "time": 0.49299719887955185, + "noteOrder": 3185, + "time": 0.4929971988795518, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3281, - "time": 0.507936507936508, + "noteOrder": 3282, + "time": 0.5079365079365079, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3330, "time": 0.515406162464986, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3377, + "noteOrder": 3379, "time": 0.5228758169934641, "position": { "x": 8, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3403, "time": 0.5266106442577031, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3427, "time": 0.5303454715219421, "position": { "x": 8, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.5340802987861812, + "noteOrder": 3451, + "time": 0.5340802987861811, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3475, "time": 0.5378151260504201, "position": { "x": 8, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3498, - "time": 0.5415499533146593, + "noteOrder": 3499, + "time": 0.5415499533146592, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5452847805788982, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3547, "time": 0.5490196078431373, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3668, "time": 0.5676937441643324, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3715, - "time": 0.5751633986928105, + "noteOrder": 3716, + "time": 0.5751633986928104, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3763, - "time": 0.5826330532212886, + "noteOrder": 3765, + "time": 0.5826330532212884, "position": { "x": 2, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3787, + "noteOrder": 3789, "time": 0.5863678804855276, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3811, + "noteOrder": 3813, "time": 0.5901027077497666, "position": { "x": 2, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3836, + "noteOrder": 3837, "time": 0.5938375350140056, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3860, - "time": 0.5975723622782447, + "noteOrder": 3861, + "time": 0.5975723622782446, "position": { "x": 2, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3980, - "time": 0.6162464985994398, + "noteOrder": 3982, + "time": 0.6162464985994397, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.6199813258636788, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4029, - "time": 0.623716153127918, + "noteOrder": 4030, + "time": 0.6237161531279178, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4054, "time": 0.6274509803921569, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4077, - "time": 0.631185807656396, + "noteOrder": 4078, + "time": 0.6311858076563959, "position": { "x": 3, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4101, + "noteOrder": 4102, "time": 0.6349206349206349, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4125, - "time": 0.638655462184874, + "noteOrder": 4127, + "time": 0.6386554621848739, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4173, - "time": 0.646125116713352, + "noteOrder": 4175, + "time": 0.6461251167133519, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4197, - "time": 0.6498599439775911, + "noteOrder": 4199, + "time": 0.649859943977591, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4223, + "time": 0.65359477124183, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4246, + "noteOrder": 4247, "time": 0.6573295985060691, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4271, "time": 0.6610644257703081, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4294, - "time": 0.6647992530345472, + "noteOrder": 4296, + "time": 0.6647992530345471, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4342, - "time": 0.6722689075630253, + "noteOrder": 4344, + "time": 0.6722689075630252, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4366, - "time": 0.6760037348272643, + "noteOrder": 4368, + "time": 0.6760037348272642, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6872082166199813, + "noteOrder": 4440, + "time": 0.6872082166199812, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4464, "time": 0.6909430438842203, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4535, - "time": 0.7021475256769375, + "noteOrder": 4537, + "time": 0.7021475256769374, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4559, - "time": 0.7058823529411765, + "noteOrder": 4561, + "time": 0.7058823529411764, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4583, - "time": 0.7096171802054155, + "noteOrder": 4585, + "time": 0.7096171802054154, "position": { "x": 6, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4608, - "time": 0.7133520074696547, + "noteOrder": 4609, + "time": 0.7133520074696544, "position": { "x": 7, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4633, "time": 0.7170868347338936, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.7208216619981327, + "noteOrder": 4658, + "time": 0.7208216619981326, "position": { "x": 5, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4682, "time": 0.7245564892623716, "position": { "x": 3, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 4706, "time": 0.7282913165266107, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4754, "time": 0.7357609710550888, "position": { "x": 3, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4778, "time": 0.7394957983193278, "position": { "x": 5, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4801, + "noteOrder": 4802, "time": 0.7432306255835668, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4849, + "noteOrder": 4851, "time": 0.7507002801120448, "position": { "x": 7, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4873, - "time": 0.7544351073762839, + "noteOrder": 4875, + "time": 0.7544351073762838, "position": { "x": 5, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.7581699346405228, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4945, + "noteOrder": 4947, "time": 0.765639589169001, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4969, + "noteOrder": 4971, "time": 0.76937441643324, "position": { "x": 5, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4995, "time": 0.773109243697479, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5042, + "noteOrder": 5044, "time": 0.780578898225957, "position": { "x": 7, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.7843137254901962, + "noteOrder": 5068, + "time": 0.7843137254901961, "position": { "x": 5, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5090, + "noteOrder": 5092, "time": 0.7880485527544351, "position": { "x": 3, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5548, - "time": 0.8590102707749767, + "noteOrder": 5550, + "time": 0.8590102707749766, "position": { "x": 8, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5572, - "time": 0.8627450980392157, + "noteOrder": 5575, + "time": 0.8627450980392156, "position": { "x": 8, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5645, + "noteOrder": 5647, "time": 0.8739495798319328, "position": { "x": 8, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5669, + "noteOrder": 5671, "time": 0.8776844070961718, "position": { "x": 8, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5717, - "time": 0.8851540616246499, + "noteOrder": 5719, + "time": 0.8851540616246498, "position": { "x": 7, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5741, - "time": 0.888888888888889, + "noteOrder": 5743, + "time": 0.8888888888888888, "position": { "x": 5, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5765, - "time": 0.892623716153128, + "noteOrder": 5768, + "time": 0.8926237161531279, "position": { "x": 3, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5934, + "noteOrder": 5937, "time": 0.9187675070028011, "position": { "x": 2, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5958, - "time": 0.9225023342670402, + "noteOrder": 5961, + "time": 0.9225023342670401, "position": { "x": 2, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6031, - "time": 0.9337068160597574, + "noteOrder": 6033, + "time": 0.9337068160597571, "position": { "x": 2, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6055, - "time": 0.9374416433239963, + "noteOrder": 6057, + "time": 0.9374416433239962, "position": { "x": 2, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6103, + "noteOrder": 6105, "time": 0.9449112978524743, "position": { "x": 3, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6151, - "time": 0.9523809523809524, + "noteOrder": 6154, + "time": 0.9523809523809523, "position": { "x": 7, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6224, - "time": 0.9635854341736695, + "noteOrder": 6226, + "time": 0.9635854341736694, "position": { "x": 3, "y": 0 @@ -3076,7 +3076,7 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, "time": 0.022408963585434174, @@ -3099,10 +3099,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.026143790849673207, + "time": 0.026143790849673203, "position": { "x": 7, "y": 0 @@ -3122,10 +3122,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 3, "y": 0 @@ -3145,9 +3145,9 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 3, @@ -3168,9 +3168,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 6, @@ -3191,10 +3191,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 6, "y": 0 @@ -3214,10 +3214,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 4, "y": 0 @@ -3237,9 +3237,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 458, + "noteOrder": 459, "time": 0.07096171802054155, "position": { "x": 4, @@ -3260,7 +3260,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 531, "time": 0.08216619981325864, @@ -3283,7 +3283,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, "time": 0.0896358543417367, @@ -3306,7 +3306,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 627, "time": 0.09710550887021475, @@ -3329,10 +3329,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 675, - "time": 0.10457516339869283, + "noteOrder": 676, + "time": 0.10457516339869281, "position": { "x": 7, "y": 0 @@ -3352,9 +3352,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13445378151260504, "position": { "x": 8, @@ -3375,7 +3375,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 893, "time": 0.13818860877684408, @@ -3398,7 +3398,7 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 905, "time": 0.1400560224089636, @@ -3421,7 +3421,7 @@ }, { "lineGroupId": 29, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 917, "time": 0.1419234360410831, @@ -3444,10 +3444,10 @@ }, { "lineGroupId": 29, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 929, - "time": 0.14379084967320263, + "time": 0.1437908496732026, "position": { "x": 5, "y": 0 @@ -3467,10 +3467,10 @@ }, { "lineGroupId": 29, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 941, - "time": 0.14565826330532214, + "time": 0.1456582633053221, "position": { "x": 4, "y": 0 @@ -3490,10 +3490,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 2, "y": 0 @@ -3513,10 +3513,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 989, - "time": 0.1531279178338002, + "time": 0.15312791783380017, "position": { "x": 2, "y": 0 @@ -3536,7 +3536,7 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1001, "time": 0.1549953314659197, @@ -3559,9 +3559,9 @@ }, { "lineGroupId": 33, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 4, @@ -3582,9 +3582,9 @@ }, { "lineGroupId": 33, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1025, + "noteOrder": 1026, "time": 0.15873015873015872, "position": { "x": 5, @@ -3605,10 +3605,10 @@ }, { "lineGroupId": 33, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1037, - "time": 0.16059757236227826, + "noteOrder": 1038, + "time": 0.16059757236227823, "position": { "x": 6, "y": 0 @@ -3628,9 +3628,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.16433239962651727, "position": { "x": 7, @@ -3650,13 +3650,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1086, - "time": 0.16806722689075632, + "noteOrder": 1074, + "time": 0.16619981325863678, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3668,18 +3668,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1254, - "time": 0.1942110177404295, + "noteOrder": 1074, + "time": 0.16619981325863678, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3696,13 +3696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1279, - "time": 0.19794584500466855, + "noteOrder": 1086, + "time": 0.1680672268907563, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3719,13 +3719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1351, - "time": 0.20915032679738566, + "noteOrder": 1098, + "time": 0.1699346405228758, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3737,18 +3737,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1375, - "time": 0.21288515406162467, + "noteOrder": 1098, + "time": 0.1699346405228758, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3765,13 +3765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1447, - "time": 0.22408963585434175, + "noteOrder": 1255, + "time": 0.1942110177404295, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3788,13 +3788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1472, - "time": 0.22782446311858076, + "noteOrder": 1267, + "time": 0.19607843137254902, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3811,13 +3811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1484, - "time": 0.22969187675070027, + "noteOrder": 1267, + "time": 0.19607843137254902, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3834,11 +3834,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 3, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1496, - "time": 0.23155929038281983, + "noteOrder": 1279, + "time": 0.19794584500466852, "position": { "x": 6, "y": 0 @@ -3857,11 +3857,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 4, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1508, - "time": 0.23342670401493934, + "noteOrder": 1279, + "time": 0.19794584500466852, "position": { "x": 5, "y": 0 @@ -3880,13 +3880,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 5, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1520, - "time": 0.23529411764705885, + "noteOrder": 1279, + "time": 0.19794584500466852, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3898,18 +3898,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1544, - "time": 0.23902894491129786, + "noteOrder": 1291, + "time": 0.19981325863678806, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3926,13 +3926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1568, - "time": 0.24276377217553688, + "noteOrder": 1291, + "time": 0.19981325863678806, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3944,18 +3944,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1640, - "time": 0.253968253968254, + "noteOrder": 1303, + "time": 0.20168067226890757, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3972,13 +3972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1665, - "time": 0.257703081232493, + "noteOrder": 1303, + "time": 0.20168067226890757, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3990,18 +3990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1737, - "time": 0.2689075630252101, + "noteOrder": 1315, + "time": 0.20354808590102708, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4018,13 +4018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1761, - "time": 0.2726423902894491, + "noteOrder": 1315, + "time": 0.20354808590102708, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4036,18 +4036,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2026, - "time": 0.3137254901960784, + "noteOrder": 1327, + "time": 0.20541549953314658, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4064,13 +4064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2050, - "time": 0.31746031746031744, + "noteOrder": 1327, + "time": 0.20541549953314658, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4087,13 +4087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2063, - "time": 0.319327731092437, + "noteOrder": 1351, + "time": 0.20915032679738563, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4105,18 +4105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 3, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2075, - "time": 0.3211951447245565, + "noteOrder": 1363, + "time": 0.21101774042950514, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4128,18 +4128,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 4, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2087, - "time": 0.323062558356676, + "noteOrder": 1363, + "time": 0.21101774042950514, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4151,16 +4151,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 5, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2099, - "time": 0.32492997198879553, + "noteOrder": 1376, + "time": 0.21288515406162464, "position": { "x": 6, "y": 0 @@ -4174,18 +4174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 6, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2111, - "time": 0.32679738562091504, + "noteOrder": 1376, + "time": 0.21288515406162464, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4197,16 +4197,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 7, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.32866479925303455, + "noteOrder": 1376, + "time": 0.21288515406162464, "position": { "x": 7, "y": 0 @@ -4225,13 +4225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 8, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2135, - "time": 0.33053221288515405, + "noteOrder": 1388, + "time": 0.21475256769374415, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4248,13 +4248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 9, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2147, - "time": 0.3323996265172736, + "noteOrder": 1388, + "time": 0.21475256769374415, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4271,13 +4271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 10, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2159, - "time": 0.3342670401493931, + "noteOrder": 1400, + "time": 0.21661998132586366, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4294,13 +4294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 11, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2171, - "time": 0.33613445378151263, + "noteOrder": 1400, + "time": 0.21661998132586366, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4317,13 +4317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 12, + "lineGroupId": 52, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2183, - "time": 0.33800186741363214, + "noteOrder": 1412, + "time": 0.2184873949579832, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4340,13 +4340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 13, + "lineGroupId": 52, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2195, - "time": 0.33986928104575165, + "noteOrder": 1412, + "time": 0.2184873949579832, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4363,13 +4363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2219, - "time": 0.34360410830999066, + "noteOrder": 1424, + "time": 0.2203548085901027, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4386,13 +4386,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2243, - "time": 0.34733893557422973, + "noteOrder": 1424, + "time": 0.2203548085901027, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4404,16 +4404,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2412, - "time": 0.3734827264239029, + "noteOrder": 1448, + "time": 0.22408963585434172, "position": { "x": 8, "y": 0 @@ -4432,11 +4432,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2436, - "time": 0.37721755368814197, + "noteOrder": 1472, + "time": 0.22782446311858076, "position": { "x": 8, "y": 0 @@ -4455,11 +4455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2449, - "time": 0.3790849673202614, + "noteOrder": 1484, + "time": 0.22969187675070027, "position": { "x": 7, "y": 0 @@ -4478,11 +4478,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 3, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2461, - "time": 0.380952380952381, + "noteOrder": 1496, + "time": 0.23155929038281978, "position": { "x": 6, "y": 0 @@ -4501,11 +4501,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 4, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2473, - "time": 0.3828197945845005, + "noteOrder": 1508, + "time": 0.23342670401493928, "position": { "x": 5, "y": 0 @@ -4524,11 +4524,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 5, + "lineGroupId": 55, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2485, - "time": 0.38468720821662, + "noteOrder": 1520, + "time": 0.23529411764705882, "position": { "x": 4, "y": 0 @@ -4547,11 +4547,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 6, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2497, - "time": 0.3865546218487395, + "noteOrder": 1544, + "time": 0.23902894491129784, "position": { "x": 3, "y": 0 @@ -4565,16 +4565,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 7, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.388422035480859, + "noteOrder": 1557, + "time": 0.24089635854341734, "position": { "x": 3, "y": 0 @@ -4588,16 +4588,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 8, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2521, - "time": 0.3902894491129785, + "noteOrder": 1557, + "time": 0.24089635854341734, "position": { "x": 4, "y": 0 @@ -4611,18 +4611,41 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1569, + "time": 0.24276377217553685, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 9, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2533, - "time": 0.3921568627450981, + "noteOrder": 1581, + "time": 0.2446311858076564, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4639,11 +4662,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 10, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2545, - "time": 0.39402427637721754, + "noteOrder": 1581, + "time": 0.2446311858076564, "position": { "x": 6, "y": 0 @@ -4662,13 +4685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 11, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2557, - "time": 0.3958916900093371, + "noteOrder": 1641, + "time": 0.25396825396825395, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4680,18 +4703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 12, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2569, - "time": 0.3977591036414566, + "noteOrder": 1653, + "time": 0.25583566760037346, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4703,18 +4726,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 13, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2581, - "time": 0.3996265172735761, + "noteOrder": 1653, + "time": 0.25583566760037346, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4726,18 +4749,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2702, - "time": 0.4183006535947713, + "noteOrder": 1665, + "time": 0.257703081232493, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4749,18 +4772,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2750, - "time": 0.42577030812324934, + "noteOrder": 1665, + "time": 0.257703081232493, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4772,18 +4795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2991, - "time": 0.46311858076563966, + "noteOrder": 1665, + "time": 0.257703081232493, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4800,13 +4823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3040, - "time": 0.4705882352941177, + "noteOrder": 1677, + "time": 0.25957049486461253, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4823,11 +4846,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3040, - "time": 0.4705882352941177, + "noteOrder": 1677, + "time": 0.25957049486461253, "position": { "x": 4, "y": 0 @@ -4841,16 +4864,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3136, - "time": 0.48552754435107376, + "noteOrder": 1689, + "time": 0.26143790849673204, "position": { "x": 4, "y": 0 @@ -4864,18 +4887,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3088, - "time": 0.4780578898225957, + "noteOrder": 1689, + "time": 0.26143790849673204, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4892,13 +4915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3136, - "time": 0.48552754435107376, + "noteOrder": 1701, + "time": 0.26330532212885155, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4915,13 +4938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3184, - "time": 0.49299719887955185, + "noteOrder": 1701, + "time": 0.26330532212885155, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4938,13 +4961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3208, - "time": 0.49673202614379086, + "noteOrder": 1713, + "time": 0.26517273576097106, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4956,18 +4979,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3233, - "time": 0.50046685340803, + "noteOrder": 1713, + "time": 0.26517273576097106, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4984,13 +5007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3257, - "time": 0.5042016806722689, + "noteOrder": 1738, + "time": 0.2689075630252101, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5007,13 +5030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3305, - "time": 0.5116713352007469, + "noteOrder": 1750, + "time": 0.2707749766573296, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5025,18 +5048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3353, - "time": 0.519140989729225, + "noteOrder": 1750, + "time": 0.2707749766573296, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5053,13 +5076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3377, - "time": 0.5228758169934641, + "noteOrder": 1762, + "time": 0.2726423902894491, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5076,11 +5099,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 3, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3401, - "time": 0.5266106442577031, + "noteOrder": 1762, + "time": 0.2726423902894491, "position": { "x": 5, "y": 0 @@ -5099,11 +5122,4680 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 4, + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1762, + "time": 0.2726423902894491, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1774, + "time": 0.27450980392156865, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1774, + "time": 0.27450980392156865, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1786, + "time": 0.27637721755368816, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1786, + "time": 0.27637721755368816, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1798, + "time": 0.27824463118580767, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1798, + "time": 0.27824463118580767, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1810, + "time": 0.2801120448179272, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1810, + "time": 0.2801120448179272, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3137254901960784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2051, + "time": 0.31746031746031744, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2063, + "time": 0.31932773109243695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2075, + "time": 0.32119514472455646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2087, + "time": 0.32306255835667597, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3249299719887955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2112, + "time": 0.326797385620915, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2124, + "time": 0.32866479925303455, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2136, + "time": 0.33053221288515405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2148, + "time": 0.33239962651727356, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2160, + "time": 0.33426704014939307, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2172, + "time": 0.3361344537815126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 2184, + "time": 0.3380018674136321, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 2196, + "time": 0.3398692810457516, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.3436041083099906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2232, + "time": 0.34547152194211017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2232, + "time": 0.34547152194211017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2244, + "time": 0.3473389355742297, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2244, + "time": 0.3473389355742297, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2244, + "time": 0.3473389355742297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2256, + "time": 0.3492063492063492, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2256, + "time": 0.3492063492063492, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2268, + "time": 0.3510737628384687, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2268, + "time": 0.3510737628384687, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2280, + "time": 0.3529411764705882, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2280, + "time": 0.3529411764705882, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2293, + "time": 0.3548085901027077, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2293, + "time": 0.3548085901027077, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2413, + "time": 0.3734827264239029, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2437, + "time": 0.3772175536881419, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2449, + "time": 0.3790849673202614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2461, + "time": 0.380952380952381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2474, + "time": 0.3828197945845005, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2486, + "time": 0.38468720821662, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2498, + "time": 0.3865546218487395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2510, + "time": 0.388422035480859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2522, + "time": 0.3902894491129785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2534, + "time": 0.39215686274509803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2546, + "time": 0.39402427637721754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2558, + "time": 0.39589169000933705, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 2570, + "time": 0.39775910364145656, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3996265172735761, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2703, + "time": 0.41830065359477125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2751, + "time": 0.4257703081232493, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2992, + "time": 0.46311858076563955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3041, + "time": 0.47058823529411764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3041, + "time": 0.47058823529411764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4855275443510737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3089, + "time": 0.47805788982259567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4855275443510737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4929971988795518, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3198, + "time": 0.4948646125116713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3198, + "time": 0.4948646125116713, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4967320261437908, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4967320261437908, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4967320261437908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3222, + "time": 0.4985994397759103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3222, + "time": 0.4985994397759103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5004668534080299, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5004668534080299, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5004668534080299, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5023342670401494, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5023342670401494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5042016806722689, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5042016806722689, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5042016806722689, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5060690943043884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5060690943043884, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5079365079365079, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5079365079365079, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5098039215686274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5098039215686274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5116713352007469, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5116713352007469, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5116713352007469, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5135387488328665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5135387488328665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3330, + "time": 0.515406162464986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3330, + "time": 0.515406162464986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5172735760971056, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5172735760971056, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5191409897292251, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5191409897292251, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5191409897292251, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5210084033613446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5210084033613446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5228758169934641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3403, + "time": 0.5266106442577031, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3427, + "time": 0.5303454715219421, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3451, + "time": 0.5340802987861811, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3475, + "time": 0.5378151260504201, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3547, + "time": 0.5490196078431373, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3572, + "time": 0.5527544351073763, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3584, + "time": 0.5546218487394958, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3584, + "time": 0.5546218487394958, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3596, + "time": 0.5564892623716153, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3596, + "time": 0.5564892623716153, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3596, + "time": 0.5564892623716153, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3608, + "time": 0.5583566760037348, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3608, + "time": 0.5583566760037348, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3620, + "time": 0.5602240896358543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3620, + "time": 0.5602240896358543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3620, + "time": 0.5602240896358543, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3632, + "time": 0.5620915032679739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3632, + "time": 0.5620915032679739, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3644, + "time": 0.5639589169000934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3644, + "time": 0.5639589169000934, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3644, + "time": 0.5639589169000934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3656, + "time": 0.5658263305322129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3656, + "time": 0.5658263305322129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3668, + "time": 0.5676937441643324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3668, + "time": 0.5676937441643324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3680, + "time": 0.5695611577964519, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3680, + "time": 0.5695611577964519, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3692, + "time": 0.5714285714285714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3692, + "time": 0.5714285714285714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.5714285714285714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.5732959850606909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3704, + "time": 0.5732959850606909, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3716, + "time": 0.5751633986928104, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3716, + "time": 0.5751633986928104, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3728, + "time": 0.5770308123249299, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3728, + "time": 0.5770308123249299, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3740, + "time": 0.5788982259570494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3740, + "time": 0.5788982259570494, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3740, + "time": 0.5788982259570494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3753, + "time": 0.5807656395891689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3753, + "time": 0.5807656395891689, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3765, + "time": 0.5826330532212884, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3789, + "time": 0.5863678804855276, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3813, + "time": 0.5901027077497666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3837, + "time": 0.5938375350140056, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3861, + "time": 0.5975723622782446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3958, + "time": 0.6125116713352007, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4078, + "time": 0.6311858076563959, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4151, + "time": 0.6423902894491129, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4271, + "time": 0.6610644257703081, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4392, + "time": 0.6797385620915032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4416, + "time": 0.6834733893557422, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4489, + "time": 0.6946778711484594, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4537, + "time": 0.7021475256769374, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4730, + "time": 0.7320261437908497, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4754, + "time": 0.7357609710550888, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4766, + "time": 0.7376283846872083, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4778, + "time": 0.7394957983193278, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4790, + "time": 0.7413632119514473, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4802, + "time": 0.7432306255835668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4826, + "time": 0.7469654528478058, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4851, + "time": 0.7507002801120448, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4863, + "time": 0.7525676937441643, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4875, + "time": 0.7544351073762838, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4887, + "time": 0.7563025210084033, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4899, + "time": 0.7581699346405228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4923, + "time": 0.761904761904762, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4947, + "time": 0.765639589169001, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4959, + "time": 0.7675070028011205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4971, + "time": 0.76937441643324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4983, + "time": 0.7712418300653595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4995, + "time": 0.773109243697479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5019, + "time": 0.776844070961718, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5044, + "time": 0.780578898225957, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5056, + "time": 0.7824463118580766, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5068, + "time": 0.7843137254901961, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5080, + "time": 0.7861811391223156, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5092, + "time": 0.7880485527544351, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5116, + "time": 0.7917833800186741, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5140, + "time": 0.7955182072829131, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5140, + "time": 0.7955182072829131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5164, + "time": 0.7992530345471522, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5188, + "time": 0.8029878618113913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5188, + "time": 0.8029878618113913, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5213, + "time": 0.8067226890756303, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5237, + "time": 0.8104575163398693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5237, + "time": 0.8104575163398693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5261, + "time": 0.8141923436041083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5285, + "time": 0.8179271708683473, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5285, + "time": 0.8179271708683473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5309, + "time": 0.8216619981325863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5321, + "time": 0.8235294117647058, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5321, + "time": 0.8235294117647058, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5333, + "time": 0.8253968253968254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5345, + "time": 0.8272642390289449, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5345, + "time": 0.8272642390289449, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5357, + "time": 0.8291316526610644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5369, + "time": 0.8309990662931839, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5369, + "time": 0.8309990662931839, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5381, + "time": 0.8328664799253035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5394, + "time": 0.834733893557423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5394, + "time": 0.834733893557423, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5502, + "time": 0.8515406162464986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5514, + "time": 0.8534080298786181, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5514, + "time": 0.8534080298786181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5526, + "time": 0.8552754435107376, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5526, + "time": 0.8552754435107376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3426, - "time": 0.5303454715219421, + "noteOrder": 5526, + "time": 0.8552754435107376, "position": { "x": 7, "y": 0 @@ -5122,13 +9814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 5, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3450, - "time": 0.5340802987861812, + "noteOrder": 5538, + "time": 0.8571428571428571, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5145,13 +9837,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 6, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3474, - "time": 0.5378151260504201, + "noteOrder": 5538, + "time": 0.8571428571428571, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5168,13 +9860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 7, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3546, - "time": 0.5490196078431373, + "noteOrder": 5550, + "time": 0.8590102707749766, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5191,13 +9883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3570, - "time": 0.5527544351073763, + "noteOrder": 5550, + "time": 0.8590102707749766, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5214,13 +9906,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3594, - "time": 0.5564892623716153, + "noteOrder": 5562, + "time": 0.8608776844070961, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5232,18 +9924,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3618, - "time": 0.5602240896358543, + "noteOrder": 5562, + "time": 0.8608776844070961, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5260,13 +9952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3643, - "time": 0.5639589169000934, + "noteOrder": 5575, + "time": 0.8627450980392156, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5278,18 +9970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3691, - "time": 0.5714285714285715, + "noteOrder": 5575, + "time": 0.8627450980392156, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5306,13 +9998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3739, - "time": 0.5788982259570495, + "noteOrder": 5599, + "time": 0.8664799253034546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5329,13 +10021,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 214, "indexInLine": 2, "isSliding": false, - "noteOrder": 3763, - "time": 0.5826330532212886, + "noteOrder": 5611, + "time": 0.8683473389355743, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5352,13 +10044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 214, "indexInLine": 3, "isSliding": false, - "noteOrder": 3787, - "time": 0.5863678804855276, + "noteOrder": 5611, + "time": 0.8683473389355743, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5375,13 +10067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 214, "indexInLine": 4, "isSliding": false, - "noteOrder": 3811, - "time": 0.5901027077497666, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5398,11 +10090,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 214, "indexInLine": 5, "isSliding": false, - "noteOrder": 3836, - "time": 0.5938375350140056, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { "x": 5, "y": 0 @@ -5421,13 +10113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 6, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3860, - "time": 0.5975723622782447, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5439,18 +10131,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3956, - "time": 0.6125116713352008, + "noteOrder": 5635, + "time": 0.8720821661998133, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5467,13 +10159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4077, - "time": 0.631185807656396, + "noteOrder": 5635, + "time": 0.8720821661998133, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5490,11 +10182,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4149, - "time": 0.642390289449113, + "noteOrder": 5647, + "time": 0.8739495798319328, "position": { "x": 6, "y": 0 @@ -5508,18 +10200,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4270, - "time": 0.6610644257703081, + "noteOrder": 5647, + "time": 0.8739495798319328, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5531,18 +10223,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4390, - "time": 0.6797385620915033, + "noteOrder": 5659, + "time": 0.8758169934640523, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5559,13 +10251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4415, - "time": 0.6834733893557423, + "noteOrder": 5659, + "time": 0.8758169934640523, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5582,13 +10274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4487, - "time": 0.6946778711484595, + "noteOrder": 5671, + "time": 0.8776844070961718, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5600,18 +10292,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4535, - "time": 0.7021475256769375, + "noteOrder": 5671, + "time": 0.8776844070961718, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5623,18 +10315,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4728, - "time": 0.7320261437908496, + "noteOrder": 5695, + "time": 0.8814192343604108, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5646,18 +10338,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4752, - "time": 0.7357609710550888, + "noteOrder": 5719, + "time": 0.8851540616246498, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5669,18 +10361,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4764, - "time": 0.7376283846872083, + "noteOrder": 5731, + "time": 0.8870214752567693, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5692,18 +10384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 3, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4776, - "time": 0.7394957983193278, + "noteOrder": 5743, + "time": 0.8888888888888888, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5715,16 +10407,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 4, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4788, - "time": 0.7413632119514473, + "noteOrder": 5756, + "time": 0.8907563025210083, "position": { "x": 5, "y": 0 @@ -5738,18 +10430,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 5, + "lineGroupId": 218, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4801, - "time": 0.7432306255835668, + "noteOrder": 5768, + "time": 0.8926237161531279, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5761,18 +10453,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4825, - "time": 0.7469654528478058, + "noteOrder": 5792, + "time": 0.8963585434173669, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5784,18 +10476,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4849, - "time": 0.7507002801120448, + "noteOrder": 5804, + "time": 0.8982259570494864, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5807,18 +10499,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 2, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4861, - "time": 0.7525676937441644, + "noteOrder": 5804, + "time": 0.8982259570494864, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5830,18 +10522,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 3, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4873, - "time": 0.7544351073762839, + "noteOrder": 5816, + "time": 0.9000933706816059, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5858,13 +10550,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 4, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4885, - "time": 0.7563025210084033, + "noteOrder": 5828, + "time": 0.9019607843137254, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5881,13 +10573,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 5, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4897, - "time": 0.7581699346405228, + "noteOrder": 5828, + "time": 0.9019607843137254, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5904,13 +10596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4921, - "time": 0.761904761904762, + "noteOrder": 5840, + "time": 0.903828197945845, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5927,13 +10619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4945, - "time": 0.765639589169001, + "noteOrder": 5852, + "time": 0.9056956115779645, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5950,13 +10642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 2, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4957, - "time": 0.7675070028011205, + "noteOrder": 5852, + "time": 0.9056956115779645, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5973,13 +10665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 3, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4969, - "time": 0.76937441643324, + "noteOrder": 5864, + "time": 0.907563025210084, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5991,18 +10683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 4, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4981, - "time": 0.7712418300653595, + "noteOrder": 5876, + "time": 0.9094304388422035, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6014,16 +10706,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 5, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4994, - "time": 0.773109243697479, + "noteOrder": 5876, + "time": 0.9094304388422035, "position": { "x": 6, "y": 0 @@ -6037,18 +10729,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5018, - "time": 0.776844070961718, + "noteOrder": 5888, + "time": 0.911297852474323, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6060,18 +10752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5042, - "time": 0.780578898225957, + "noteOrder": 5900, + "time": 0.9131652661064426, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6083,18 +10775,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 2, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5054, - "time": 0.7824463118580766, + "noteOrder": 5900, + "time": 0.9131652661064426, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6106,18 +10798,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 3, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5066, - "time": 0.7843137254901962, + "noteOrder": 5912, + "time": 0.9150326797385621, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6129,16 +10821,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 4, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5078, - "time": 0.7861811391223157, + "noteOrder": 5912, + "time": 0.9150326797385621, "position": { "x": 5, "y": 0 @@ -6152,18 +10844,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 5, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5090, - "time": 0.7880485527544351, + "noteOrder": 5912, + "time": 0.9150326797385621, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6180,11 +10872,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5114, - "time": 0.7917833800186742, + "noteOrder": 5924, + "time": 0.9169000933706816, "position": { "x": 3, "y": 0 @@ -6198,18 +10890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5162, - "time": 0.7992530345471522, + "noteOrder": 5924, + "time": 0.9169000933706816, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6226,13 +10918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5211, - "time": 0.8067226890756303, + "noteOrder": 5937, + "time": 0.9187675070028011, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6244,18 +10936,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5259, - "time": 0.8141923436041083, + "noteOrder": 5937, + "time": 0.9187675070028011, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6272,13 +10964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5307, - "time": 0.8216619981325863, + "noteOrder": 5949, + "time": 0.9206349206349206, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6290,18 +10982,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5331, - "time": 0.8253968253968255, + "noteOrder": 5949, + "time": 0.9206349206349206, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6318,13 +11010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5355, - "time": 0.8291316526610644, + "noteOrder": 5961, + "time": 0.9225023342670401, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6336,18 +11028,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5380, - "time": 0.8328664799253035, + "noteOrder": 5961, + "time": 0.9225023342670401, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6364,13 +11056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5500, - "time": 0.8515406162464987, + "noteOrder": 5985, + "time": 0.9262371615312791, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6382,18 +11074,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5524, - "time": 0.8552754435107377, + "noteOrder": 5997, + "time": 0.9281045751633986, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6410,13 +11102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5597, - "time": 0.8664799253034547, + "noteOrder": 5997, + "time": 0.9281045751633986, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6428,18 +11120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5621, - "time": 0.8702147525676938, + "noteOrder": 6009, + "time": 0.9299719887955181, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6456,13 +11148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5693, - "time": 0.8814192343604109, + "noteOrder": 6009, + "time": 0.9299719887955181, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6474,18 +11166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 5717, - "time": 0.8851540616246499, + "noteOrder": 6009, + "time": 0.9299719887955181, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6502,13 +11194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, + "lineGroupId": 231, "indexInLine": 2, "isSliding": false, - "noteOrder": 5729, - "time": 0.8870214752567693, + "noteOrder": 6021, + "time": 0.9318394024276376, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6525,13 +11217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, + "lineGroupId": 231, "indexInLine": 3, "isSliding": false, - "noteOrder": 5741, - "time": 0.888888888888889, + "noteOrder": 6021, + "time": 0.9318394024276376, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6548,13 +11240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, + "lineGroupId": 231, "indexInLine": 4, "isSliding": false, - "noteOrder": 5753, - "time": 0.8907563025210085, + "noteOrder": 6033, + "time": 0.9337068160597571, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6571,13 +11263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, + "lineGroupId": 231, "indexInLine": 5, "isSliding": false, - "noteOrder": 5765, - "time": 0.892623716153128, + "noteOrder": 6033, + "time": 0.9337068160597571, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6594,13 +11286,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5790, - "time": 0.896358543417367, + "noteOrder": 6045, + "time": 0.9355742296918766, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6612,18 +11304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5814, - "time": 0.900093370681606, + "noteOrder": 6045, + "time": 0.9355742296918766, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6640,13 +11332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5838, - "time": 0.903828197945845, + "noteOrder": 6057, + "time": 0.9374416433239962, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6658,18 +11350,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5862, - "time": 0.9075630252100841, + "noteOrder": 6057, + "time": 0.9374416433239962, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6686,11 +11378,11 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5886, - "time": 0.911297852474323, + "noteOrder": 6081, + "time": 0.9411764705882353, "position": { "x": 3, "y": 0 @@ -6709,11 +11401,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5910, - "time": 0.9150326797385622, + "noteOrder": 6130, + "time": 0.9486461251167133, "position": { "x": 3, "y": 0 @@ -6727,18 +11419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5983, - "time": 0.9262371615312793, + "noteOrder": 6130, + "time": 0.9486461251167133, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6750,18 +11442,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6007, - "time": 0.9299719887955182, + "noteOrder": 6178, + "time": 0.9561157796451913, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6778,11 +11470,11 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, - "time": 0.9411764705882354, + "noteOrder": 6178, + "time": 0.9561157796451913, "position": { "x": 3, "y": 0 @@ -6801,11 +11493,11 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6127, - "time": 0.9486461251167134, + "noteOrder": 6190, + "time": 0.9579831932773109, "position": { "x": 3, "y": 0 @@ -6824,13 +11516,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6127, - "time": 0.9486461251167134, + "noteOrder": 6190, + "time": 0.9579831932773109, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6842,16 +11534,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, + "lineGroupId": 239, "indexInLine": 1, "isSliding": false, - "noteOrder": 6176, - "time": 0.9561157796451915, + "noteOrder": 6202, + "time": 0.9598506069094304, "position": { "x": 7, "y": 0 @@ -6870,13 +11562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6176, - "time": 0.9561157796451915, + "noteOrder": 6214, + "time": 0.9617180205415499, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6888,18 +11580,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6200, - "time": 0.9598506069094305, + "noteOrder": 6214, + "time": 0.9617180205415499, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { diff --git a/tracks/Garuda (Hommarju Remix)/314_difficulty_1b.json b/tracks/Garuda (Hommarju Remix)/314_difficulty_1b.json index f41cc9a7..8043f3da 100644 --- a/tracks/Garuda (Hommarju Remix)/314_difficulty_1b.json +++ b/tracks/Garuda (Hommarju Remix)/314_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 724, - "time": 0.11204481792717087, + "time": 0.11204481792717086, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 820, - "time": 0.126984126984127, + "time": 0.12698412698412698, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 989, - "time": 0.1531279178338002, + "time": 0.15312791783380017, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 4, @@ -254,7 +254,7 @@ }, { "noteOrder": 1496, - "time": 0.23155929038281983, + "time": 0.23155929038281978, "position": { "x": 5, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.24649859943977592, + "noteOrder": 1593, + "time": 0.2464985994397759, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1882, - "time": 0.2913165266106443, + "time": 0.2913165266106442, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.3062558356676004, + "noteOrder": 1979, + "time": 0.30625583566760034, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.32866479925303455, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.3323996265172736, + "noteOrder": 2148, + "time": 0.33239962651727356, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2171, - "time": 0.33613445378151263, + "noteOrder": 2172, + "time": 0.3361344537815126, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 2268, - "time": 0.35107376283846875, + "time": 0.3510737628384687, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.3660130718954248, + "noteOrder": 2365, + "time": 0.36601307189542487, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.388422035480859, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2533, - "time": 0.3921568627450981, + "noteOrder": 2534, + "time": 0.39215686274509803, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2557, - "time": 0.3958916900093371, + "noteOrder": 2558, + "time": 0.39589169000933705, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2798, - "time": 0.4332399626517274, + "noteOrder": 2799, + "time": 0.4332399626517273, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 2823, "time": 0.4369747899159664, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2847, - "time": 0.44070961718020546, + "noteOrder": 2848, + "time": 0.4407096171802054, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2871, - "time": 0.4444444444444445, + "noteOrder": 2872, + "time": 0.4444444444444444, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.4481792717086835, + "noteOrder": 2896, + "time": 0.44817927170868344, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2920, "time": 0.4519140989729225, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2943, + "noteOrder": 2944, "time": 0.4556489262371615, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2967, + "noteOrder": 2968, "time": 0.45938375350140054, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3427, "time": 0.5303454715219421, "position": { "x": 5, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5452847805788982, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3811, + "noteOrder": 3813, "time": 0.5901027077497666, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4029, - "time": 0.623716153127918, + "noteOrder": 4030, + "time": 0.6237161531279178, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4125, - "time": 0.638655462184874, + "noteOrder": 4127, + "time": 0.6386554621848739, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4223, + "time": 0.65359477124183, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4342, - "time": 0.6722689075630253, + "noteOrder": 4344, + "time": 0.6722689075630252, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4366, - "time": 0.6760037348272643, + "noteOrder": 4368, + "time": 0.6760037348272642, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4390, - "time": 0.6797385620915033, + "noteOrder": 4392, + "time": 0.6797385620915032, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6872082166199813, + "noteOrder": 4440, + "time": 0.6872082166199812, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4464, "time": 0.6909430438842203, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4487, - "time": 0.6946778711484595, + "noteOrder": 4489, + "time": 0.6946778711484594, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4535, - "time": 0.7021475256769375, + "noteOrder": 4537, + "time": 0.7021475256769374, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4559, - "time": 0.7058823529411765, + "noteOrder": 4561, + "time": 0.7058823529411764, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4583, - "time": 0.7096171802054155, + "noteOrder": 4585, + "time": 0.7096171802054154, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4633, "time": 0.7170868347338936, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.7208216619981327, + "noteOrder": 4658, + "time": 0.7208216619981326, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4682, "time": 0.7245564892623716, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4754, "time": 0.7357609710550888, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4778, "time": 0.7394957983193278, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4849, + "noteOrder": 4851, "time": 0.7507002801120448, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4873, - "time": 0.7544351073762839, + "noteOrder": 4875, + "time": 0.7544351073762838, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4945, + "noteOrder": 4947, "time": 0.765639589169001, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4969, + "noteOrder": 4971, "time": 0.76937441643324, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5042, + "noteOrder": 5044, "time": 0.780578898225957, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.7843137254901962, + "noteOrder": 5068, + "time": 0.7843137254901961, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5741, - "time": 0.888888888888889, + "noteOrder": 5743, + "time": 0.8888888888888888, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5840, "time": 0.903828197945845, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6127, - "time": 0.9486461251167134, + "noteOrder": 6130, + "time": 0.9486461251167133, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6224, - "time": 0.9635854341736695, + "noteOrder": 6226, + "time": 0.9635854341736694, "position": { "x": 6, "y": 0 @@ -1276,10 +1276,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.014939309056956116, + "noteOrder": 97, + "time": 0.014939309056956115, "position": { "x": 4, "y": 0 @@ -1299,10 +1299,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, - "time": 0.029878618113912233, + "time": 0.02987861811391223, "position": { "x": 4, "y": 0 @@ -1322,10 +1322,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.029878618113912233, + "time": 0.02987861811391223, "position": { "x": 6, "y": 0 @@ -1345,9 +1345,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 6, @@ -1368,9 +1368,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 4, @@ -1391,10 +1391,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 386, - "time": 0.059757236227824466, + "time": 0.05975723622782446, "position": { "x": 4, "y": 0 @@ -1414,10 +1414,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.059757236227824466, + "time": 0.05975723622782446, "position": { "x": 6, "y": 0 @@ -1437,10 +1437,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 482, - "time": 0.07469654528478059, + "noteOrder": 483, + "time": 0.07469654528478058, "position": { "x": 6, "y": 0 @@ -1460,10 +1460,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, - "time": 0.07469654528478059, + "noteOrder": 483, + "time": 0.07469654528478058, "position": { "x": 4, "y": 0 @@ -1483,7 +1483,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.08216619981325864, @@ -1506,7 +1506,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 531, "time": 0.08216619981325864, @@ -1529,7 +1529,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, "time": 0.0896358543417367, @@ -1552,7 +1552,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 627, "time": 0.09710550887021475, @@ -1575,10 +1575,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 675, - "time": 0.10457516339869283, + "noteOrder": 676, + "time": 0.10457516339869281, "position": { "x": 4, "y": 0 @@ -1598,10 +1598,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10457516339869283, + "noteOrder": 676, + "time": 0.10457516339869281, "position": { "x": 6, "y": 0 @@ -1621,10 +1621,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 772, - "time": 0.11951447245564893, + "time": 0.11951447245564892, "position": { "x": 6, "y": 0 @@ -1644,10 +1644,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, - "time": 0.11951447245564893, + "time": 0.11951447245564892, "position": { "x": 4, "y": 0 @@ -1667,9 +1667,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13445378151260504, "position": { "x": 4, @@ -1690,10 +1690,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 7, "y": 0 @@ -1713,9 +1713,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 4, @@ -1736,9 +1736,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.16433239962651727, "position": { "x": 4, @@ -1758,13 +1758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1110, - "time": 0.17180205415499533, + "noteOrder": 1086, + "time": 0.1680672268907563, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1776,18 +1776,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1158, - "time": 0.1792717086834734, + "noteOrder": 1086, + "time": 0.1680672268907563, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1804,13 +1804,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 1206, - "time": 0.18674136321195145, + "noteOrder": 1110, + "time": 0.1718020541549953, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1822,18 +1822,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1158, - "time": 0.1792717086834734, + "noteOrder": 1134, + "time": 0.17553688141923435, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1850,13 +1850,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1206, - "time": 0.18674136321195145, + "noteOrder": 1134, + "time": 0.17553688141923435, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1873,13 +1873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, - "time": 0.1942110177404295, + "noteOrder": 1158, + "time": 0.1792717086834734, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1891,18 +1891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1303, - "time": 0.20168067226890757, + "noteOrder": 1207, + "time": 0.18674136321195145, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1919,11 +1919,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.20915032679738566, + "noteOrder": 1158, + "time": 0.1792717086834734, "position": { "x": 7, "y": 0 @@ -1942,11 +1942,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, - "time": 0.2166199813258637, + "noteOrder": 1207, + "time": 0.18674136321195145, "position": { "x": 7, "y": 0 @@ -1960,18 +1960,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1447, - "time": 0.22408963585434175, + "noteOrder": 1255, + "time": 0.1942110177404295, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -1988,13 +1988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1496, - "time": 0.23155929038281983, + "noteOrder": 1279, + "time": 0.19794584500466852, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2011,11 +2011,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1544, - "time": 0.23902894491129786, + "noteOrder": 1279, + "time": 0.19794584500466852, "position": { "x": 6, "y": 0 @@ -2034,13 +2034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1592, - "time": 0.24649859943977592, + "noteOrder": 1303, + "time": 0.20168067226890757, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2052,18 +2052,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1640, - "time": 0.253968253968254, + "noteOrder": 1327, + "time": 0.20541549953314658, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2080,13 +2080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1689, - "time": 0.26143790849673204, + "noteOrder": 1327, + "time": 0.20541549953314658, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2098,18 +2098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1737, - "time": 0.2689075630252101, + "noteOrder": 1351, + "time": 0.20915032679738563, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2121,18 +2121,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1785, - "time": 0.27637721755368816, + "noteOrder": 1376, + "time": 0.21288515406162464, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2149,13 +2149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1833, - "time": 0.2838468720821662, + "noteOrder": 1376, + "time": 0.21288515406162464, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2167,18 +2167,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 1882, - "time": 0.2913165266106443, + "noteOrder": 1400, + "time": 0.21661998132586366, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2195,13 +2195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1930, - "time": 0.29878618113912236, + "noteOrder": 1424, + "time": 0.2203548085901027, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2218,13 +2218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1978, - "time": 0.3062558356676004, + "noteOrder": 1424, + "time": 0.2203548085901027, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2241,13 +2241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2026, - "time": 0.3137254901960784, + "noteOrder": 1448, + "time": 0.22408963585434172, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2264,13 +2264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2075, - "time": 0.3211951447245565, + "noteOrder": 1496, + "time": 0.23155929038281978, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2282,18 +2282,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.34360410830999066, + "noteOrder": 1544, + "time": 0.23902894491129784, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2310,13 +2310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2268, - "time": 0.35107376283846875, + "noteOrder": 1593, + "time": 0.2464985994397759, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2333,13 +2333,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2316, - "time": 0.3585434173669468, + "noteOrder": 1641, + "time": 0.25396825396825395, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2351,18 +2351,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2364, - "time": 0.3660130718954248, + "noteOrder": 1665, + "time": 0.257703081232493, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2374,16 +2374,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2412, - "time": 0.3734827264239029, + "noteOrder": 1665, + "time": 0.257703081232493, "position": { "x": 4, "y": 0 @@ -2402,13 +2402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2461, - "time": 0.380952380952381, + "noteOrder": 1689, + "time": 0.26143790849673204, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2425,13 +2425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2605, - "time": 0.40336134453781514, + "noteOrder": 1713, + "time": 0.26517273576097106, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2448,13 +2448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2654, - "time": 0.41083099906629317, + "noteOrder": 1713, + "time": 0.26517273576097106, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2471,13 +2471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2654, - "time": 0.41083099906629317, + "noteOrder": 1738, + "time": 0.2689075630252101, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2494,13 +2494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2702, - "time": 0.4183006535947713, + "noteOrder": 1762, + "time": 0.2726423902894491, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2517,13 +2517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2702, - "time": 0.4183006535947713, + "noteOrder": 1762, + "time": 0.2726423902894491, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2535,18 +2535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 2750, - "time": 0.42577030812324934, + "noteOrder": 1786, + "time": 0.27637721755368816, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2563,13 +2563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2750, - "time": 0.42577030812324934, + "noteOrder": 1810, + "time": 0.2801120448179272, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2581,16 +2581,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2798, - "time": 0.4332399626517274, + "noteOrder": 1810, + "time": 0.2801120448179272, "position": { "x": 4, "y": 0 @@ -2604,18 +2604,1421 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2991, - "time": 0.46311858076563966, + "noteOrder": 1834, + "time": 0.2838468720821662, "position": { - "x": 6, + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1882, + "time": 0.2913165266106442, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1931, + "time": 0.2987861811391223, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1979, + "time": 0.30625583566760034, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3137254901960784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2051, + "time": 0.31746031746031744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2051, + "time": 0.31746031746031744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2075, + "time": 0.32119514472455646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3249299719887955, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3249299719887955, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.3436041083099906, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2268, + "time": 0.3510737628384687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2317, + "time": 0.3585434173669468, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2365, + "time": 0.36601307189542487, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2413, + "time": 0.3734827264239029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2437, + "time": 0.3772175536881419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2437, + "time": 0.3772175536881419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2461, + "time": 0.380952380952381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2486, + "time": 0.38468720821662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2486, + "time": 0.38468720821662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.40336134453781514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2655, + "time": 0.41083099906629317, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2655, + "time": 0.41083099906629317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2703, + "time": 0.41830065359477125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2703, + "time": 0.41830065359477125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2751, + "time": 0.4257703081232493, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2751, + "time": 0.4257703081232493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2799, + "time": 0.4332399626517273, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2992, + "time": 0.46311858076563955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3041, + "time": 0.47058823529411764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3041, + "time": 0.47058823529411764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3089, + "time": 0.47805788982259567, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4929971988795518, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4967320261437908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4967320261437908, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5004668534080299, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5042016806722689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5042016806722689, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5079365079365079, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5116713352007469, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5116713352007469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3330, + "time": 0.515406162464986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5191409897292251, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5191409897292251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5228758169934641, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3427, + "time": 0.5303454715219421, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3475, + "time": 0.5378151260504201, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3523, + "time": 0.5452847805788982, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3572, + "time": 0.5527544351073763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3596, + "time": 0.5564892623716153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3596, + "time": 0.5564892623716153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3620, + "time": 0.5602240896358543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3644, + "time": 0.5639589169000934, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3644, + "time": 0.5639589169000934, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.5676937441643324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3692, + "time": 0.5714285714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3692, + "time": 0.5714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3716, + "time": 0.5751633986928104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3740, + "time": 0.5788982259570494, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3740, + "time": 0.5788982259570494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3765, + "time": 0.5826330532212884, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3813, + "time": 0.5901027077497666, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -2632,11 +4035,57 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3982, + "time": 0.6162464985994397, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4078, + "time": 0.6311858076563959, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 3040, - "time": 0.4705882352941177, + "noteOrder": 4078, + "time": 0.6311858076563959, "position": { "x": 6, "y": 0 @@ -2655,11 +4104,34 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4175, + "time": 0.6461251167133519, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3040, - "time": 0.4705882352941177, + "noteOrder": 4175, + "time": 0.6461251167133519, "position": { "x": 4, "y": 0 @@ -2678,11 +4150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3088, - "time": 0.4780578898225957, + "noteOrder": 4271, + "time": 0.6610644257703081, "position": { "x": 4, "y": 0 @@ -2701,11 +4173,57 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4271, + "time": 0.6610644257703081, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4320, + "time": 0.6685340802987861, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.49299719887955185, + "noteOrder": 4730, + "time": 0.7320261437908497, "position": { "x": 3, "y": 0 @@ -2724,13 +4242,36 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3233, - "time": 0.50046685340803, + "noteOrder": 4778, + "time": 0.7394957983193278, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4826, + "time": 0.7469654528478058, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2747,11 +4288,34 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4875, + "time": 0.7544351073762838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3281, - "time": 0.507936507936508, + "noteOrder": 4923, + "time": 0.761904761904762, "position": { "x": 3, "y": 0 @@ -2770,13 +4334,36 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3329, - "time": 0.515406162464986, + "noteOrder": 4971, + "time": 0.76937441643324, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5019, + "time": 0.776844070961718, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2793,13 +4380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3377, - "time": 0.5228758169934641, + "noteOrder": 5068, + "time": 0.7843137254901961, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2811,16 +4398,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 124, "indexInLine": 1, "isSliding": false, - "noteOrder": 3426, - "time": 0.5303454715219421, + "noteOrder": 5116, + "time": 0.7917833800186741, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5140, + "time": 0.7955182072829131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5140, + "time": 0.7955182072829131, "position": { "x": 4, "y": 0 @@ -2834,18 +4467,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5164, + "time": 0.7992530345471522, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3474, - "time": 0.5378151260504201, + "noteOrder": 5188, + "time": 0.8029878618113913, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2857,18 +4513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3522, - "time": 0.5452847805788982, + "noteOrder": 5188, + "time": 0.8029878618113913, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2880,18 +4536,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3570, - "time": 0.5527544351073763, + "noteOrder": 5213, + "time": 0.8067226890756303, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2903,18 +4559,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3618, - "time": 0.5602240896358543, + "noteOrder": 5237, + "time": 0.8104575163398693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2931,13 +4587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3667, - "time": 0.5676937441643324, + "noteOrder": 5237, + "time": 0.8104575163398693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2949,18 +4605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3715, - "time": 0.5751633986928105, + "noteOrder": 5261, + "time": 0.8141923436041083, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2972,18 +4628,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3763, - "time": 0.5826330532212886, + "noteOrder": 5285, + "time": 0.8179271708683473, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3000,11 +4656,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3811, - "time": 0.5901027077497666, + "noteOrder": 5285, + "time": 0.8179271708683473, "position": { "x": 6, "y": 0 @@ -3023,13 +4679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3980, - "time": 0.6162464985994398, + "noteOrder": 5309, + "time": 0.8216619981325863, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3046,13 +4702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4077, - "time": 0.631185807656396, + "noteOrder": 5333, + "time": 0.8253968253968254, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3069,13 +4725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4077, - "time": 0.631185807656396, + "noteOrder": 5333, + "time": 0.8253968253968254, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3087,18 +4743,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 129, "indexInLine": 1, "isSliding": false, - "noteOrder": 4173, - "time": 0.646125116713352, + "noteOrder": 5357, + "time": 0.8291316526610644, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3115,13 +4771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4173, - "time": 0.646125116713352, + "noteOrder": 5381, + "time": 0.8328664799253035, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3133,18 +4789,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4270, - "time": 0.6610644257703081, + "noteOrder": 5381, + "time": 0.8328664799253035, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3156,18 +4812,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4270, - "time": 0.6610644257703081, + "noteOrder": 5502, + "time": 0.8515406162464986, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3184,13 +4840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 5526, + "time": 0.8552754435107376, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3207,13 +4863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4728, - "time": 0.7320261437908496, + "noteOrder": 5526, + "time": 0.8552754435107376, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3225,18 +4881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 4776, - "time": 0.7394957983193278, + "noteOrder": 5550, + "time": 0.8590102707749766, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3253,11 +4909,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4825, - "time": 0.7469654528478058, + "noteOrder": 5575, + "time": 0.8627450980392156, "position": { "x": 7, "y": 0 @@ -3271,18 +4927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4873, - "time": 0.7544351073762839, + "noteOrder": 5575, + "time": 0.8627450980392156, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3294,18 +4950,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4921, - "time": 0.761904761904762, + "noteOrder": 5599, + "time": 0.8664799253034546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3317,18 +4973,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4969, - "time": 0.76937441643324, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3340,18 +4996,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5018, - "time": 0.776844070961718, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3368,13 +5024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 5066, - "time": 0.7843137254901962, + "noteOrder": 5647, + "time": 0.8739495798319328, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3386,18 +5042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5114, - "time": 0.7917833800186742, + "noteOrder": 5671, + "time": 0.8776844070961718, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3414,11 +5070,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5162, - "time": 0.7992530345471522, + "noteOrder": 5671, + "time": 0.8776844070961718, "position": { "x": 6, "y": 0 @@ -3432,18 +5088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5211, - "time": 0.8067226890756303, + "noteOrder": 5695, + "time": 0.8814192343604108, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3455,16 +5111,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5259, - "time": 0.8141923436041083, + "noteOrder": 5743, + "time": 0.8888888888888888, "position": { "x": 6, "y": 0 @@ -3483,13 +5139,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5307, - "time": 0.8216619981325863, + "noteOrder": 5792, + "time": 0.8963585434173669, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3501,18 +5157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5355, - "time": 0.8291316526610644, + "noteOrder": 5840, + "time": 0.903828197945845, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3529,13 +5185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5500, - "time": 0.8515406162464987, + "noteOrder": 5888, + "time": 0.911297852474323, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3547,18 +5203,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5548, - "time": 0.8590102707749767, + "noteOrder": 5912, + "time": 0.9150326797385621, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3575,13 +5231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5597, - "time": 0.8664799253034547, + "noteOrder": 5912, + "time": 0.9150326797385621, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3593,18 +5249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5645, - "time": 0.8739495798319328, + "noteOrder": 5937, + "time": 0.9187675070028011, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3616,18 +5272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5693, - "time": 0.8814192343604109, + "noteOrder": 5961, + "time": 0.9225023342670401, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3644,13 +5300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5741, - "time": 0.888888888888889, + "noteOrder": 5961, + "time": 0.9225023342670401, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3667,13 +5323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5790, - "time": 0.896358543417367, + "noteOrder": 5985, + "time": 0.9262371615312791, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3685,18 +5341,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5838, - "time": 0.903828197945845, + "noteOrder": 6009, + "time": 0.9299719887955181, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3708,18 +5364,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5886, - "time": 0.911297852474323, + "noteOrder": 6009, + "time": 0.9299719887955181, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3736,11 +5392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5934, - "time": 0.9187675070028011, + "noteOrder": 6033, + "time": 0.9337068160597571, "position": { "x": 3, "y": 0 @@ -3759,11 +5415,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5983, - "time": 0.9262371615312793, + "noteOrder": 6057, + "time": 0.9374416433239962, "position": { "x": 3, "y": 0 @@ -3777,18 +5433,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6031, - "time": 0.9337068160597574, + "noteOrder": 6057, + "time": 0.9374416433239962, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3806,10 +5462,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, - "time": 0.9411764705882354, + "noteOrder": 6081, + "time": 0.9411764705882353, "position": { "x": 2, "y": 0 @@ -3829,10 +5485,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6127, - "time": 0.9486461251167134, + "noteOrder": 6130, + "time": 0.9486461251167133, "position": { "x": 4, "y": 0 @@ -3852,10 +5508,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6176, - "time": 0.9561157796451915, + "noteOrder": 6178, + "time": 0.9561157796451913, "position": { "x": 4, "y": 0 @@ -3875,10 +5531,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6224, - "time": 0.9635854341736695, + "noteOrder": 6226, + "time": 0.9635854341736694, "position": { "x": 5, "y": 0 diff --git a/tracks/Garuda (Hommarju Remix)/info.json b/tracks/Garuda (Hommarju Remix)/info.json index 311b5c35..c8028d6f 100644 --- a/tracks/Garuda (Hommarju Remix)/info.json +++ b/tracks/Garuda (Hommarju Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Garuda (Hommarju Remix)", - "SongLength": "139.180408", + "SongLength": "129.227755", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Globe Glitter/291_difficulty_1a.json b/tracks/Globe Glitter/291_difficulty_1a.json index 2995e33f..28bc1040 100644 --- a/tracks/Globe Glitter/291_difficulty_1a.json +++ b/tracks/Globe Glitter/291_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 338, - "time": 0.037408149632598524, + "time": 0.03740814963259853, "position": { "x": 8, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 820, - "time": 0.09084836339345356, + "time": 0.09084836339345358, "position": { "x": 6, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.1336005344021376, "position": { "x": 3, @@ -154,7 +154,7 @@ }, { "noteOrder": 1303, - "time": 0.14428857715430862, + "time": 0.1442885771543086, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 1351, - "time": 0.1496325985303941, + "time": 0.14963259853039412, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.15497661990647962, "position": { "x": 3, @@ -234,7 +234,7 @@ }, { "noteOrder": 1544, - "time": 0.17100868403473615, + "time": 0.17100868403473612, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1640, - "time": 0.18169672678690713, + "noteOrder": 1641, + "time": 0.18169672678690715, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1664, - "time": 0.1843687374749499, + "noteOrder": 1665, + "time": 0.18436873747494992, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1689, - "time": 0.18704074816299265, + "time": 0.18704074816299263, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.1950567802271209, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.19772879091516365, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1833, + "noteOrder": 1834, "time": 0.20307281229124916, "position": { "x": 5, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.20574482297929192, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1881, + "noteOrder": 1882, "time": 0.20841683366733468, "position": { "x": 5, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1931, "time": 0.21376085504342016, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.21643286573146292, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 1979, "time": 0.21910487641950566, "position": { "x": 5, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.22444889779559118, "position": { "x": 3, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.22712090848363392, + "noteOrder": 2051, + "time": 0.22712090848363395, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2074, + "noteOrder": 2075, "time": 0.22979291917167669, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.23513694054776219, "position": { "x": 8, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.23780895123580492, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2171, - "time": 0.2404809619238477, + "noteOrder": 2172, + "time": 0.24048096192384769, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2219, + "noteOrder": 2220, "time": 0.2458249832999332, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2243, + "noteOrder": 2244, "time": 0.24849699398797595, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.2511690046760187, "position": { "x": 2, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2317, "time": 0.2565130260521042, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2340, + "noteOrder": 2341, "time": 0.259185036740147, "position": { "x": 7, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.2618570474281897, "position": { "x": 5, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3184, - "time": 0.3527054108216433, + "noteOrder": 3185, + "time": 0.35270541082164325, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3208, - "time": 0.355377421509686, + "noteOrder": 3209, + "time": 0.35537742150968604, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3234, "time": 0.3580494321977288, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3258, "time": 0.36072144288577157, "position": { "x": 3, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3281, - "time": 0.36339345357381425, + "noteOrder": 3282, + "time": 0.3633934535738143, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3306, "time": 0.36606546426185704, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3329, - "time": 0.3687374749498998, + "noteOrder": 3330, + "time": 0.36873747494989983, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.3901135604542418, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3716, "time": 0.41148964595858384, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3908, + "noteOrder": 3909, "time": 0.43286573146292584, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4101, - "time": 0.45424181696726784, + "noteOrder": 4102, + "time": 0.4542418169672679, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4197, + "noteOrder": 4199, "time": 0.46492985971943884, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4245, + "noteOrder": 4247, "time": 0.47027388109552437, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4294, + "noteOrder": 4295, "time": 0.47561790247160984, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.4863059452237809, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4438, + "noteOrder": 4440, "time": 0.4916499665998664, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4487, + "noteOrder": 4488, "time": 0.4969939879759519, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4583, + "noteOrder": 4585, "time": 0.5076820307281229, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4633, "time": 0.5130260521042084, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4681, "time": 0.518370073480294, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5355, - "time": 0.593186372745491, + "noteOrder": 5357, + "time": 0.5931863727454909, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.5985303941215764, + "noteOrder": 5405, + "time": 0.5985303941215765, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 5454, "time": 0.603874415497662, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5741, - "time": 0.6359385437541749, + "noteOrder": 5743, + "time": 0.635938543754175, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5789, + "noteOrder": 5792, "time": 0.6412825651302605, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5837, + "noteOrder": 5840, "time": 0.6466265865063461, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5886, - "time": 0.6519706078824314, + "noteOrder": 5888, + "time": 0.6519706078824316, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6030, - "time": 0.6680026720106881, + "noteOrder": 6033, + "time": 0.668002672010688, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6127, + "noteOrder": 6129, "time": 0.678690714762859, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6223, + "noteOrder": 6226, "time": 0.68937875751503, "position": { "x": 2, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6320, + "noteOrder": 6322, "time": 0.700066800267201, "position": { "x": 8, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6368, - "time": 0.7054108216432866, + "noteOrder": 6371, + "time": 0.7054108216432865, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6392, + "noteOrder": 6395, "time": 0.7080828323313293, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6416, - "time": 0.710754843019372, + "noteOrder": 6419, + "time": 0.7107548430193721, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6465, + "noteOrder": 6467, "time": 0.7160988643954576, "position": { "x": 8, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6489, - "time": 0.7187708750835003, + "noteOrder": 6491, + "time": 0.7187708750835002, "position": { "x": 5, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6513, + "noteOrder": 6515, "time": 0.7214428857715431, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6561, - "time": 0.7267869071476285, + "noteOrder": 6564, + "time": 0.7267869071476286, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6585, + "noteOrder": 6588, "time": 0.7294589178356713, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6609, + "noteOrder": 6612, "time": 0.7321309285237141, "position": { "x": 2, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6658, - "time": 0.7374749498997996, + "noteOrder": 6660, + "time": 0.7374749498997997, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6682, + "noteOrder": 6684, "time": 0.7401469605878424, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6706, + "noteOrder": 6709, "time": 0.7428189712758851, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 7188, - "time": 0.7962591850367402, + "noteOrder": 7191, + "time": 0.7962591850367401, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 7237, - "time": 0.8016032064128256, + "noteOrder": 7239, + "time": 0.8016032064128257, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 7285, + "noteOrder": 7288, "time": 0.8069472277889111, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 7574, + "noteOrder": 7577, "time": 0.8390113560454241, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 7622, - "time": 0.8443553774215097, + "noteOrder": 7626, + "time": 0.8443553774215096, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 7671, + "noteOrder": 7674, "time": 0.8496993987975952, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 8153, + "noteOrder": 8156, "time": 0.9031396125584502, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 8250, - "time": 0.9138276553106212, + "noteOrder": 8253, + "time": 0.9138276553106213, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 8346, + "noteOrder": 8349, "time": 0.9245156980627922, "position": { "x": 8, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 8443, - "time": 0.9352037408149633, + "noteOrder": 8446, + "time": 0.9352037408149632, "position": { "x": 2, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 8491, + "noteOrder": 8494, "time": 0.9405477621910487, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 8539, + "noteOrder": 8542, "time": 0.9458917835671342, "position": { "x": 3, @@ -1836,10 +1836,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.01068804275217101, + "noteOrder": 97, + "time": 0.010688042752171008, "position": { "x": 6, "y": 0 @@ -1859,10 +1859,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, - "time": 0.02137608550434202, + "time": 0.021376085504342016, "position": { "x": 6, "y": 0 @@ -1882,10 +1882,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.02137608550434202, + "time": 0.021376085504342016, "position": { "x": 4, "y": 0 @@ -1905,9 +1905,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.03206412825651302, "position": { "x": 4, @@ -1928,9 +1928,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.03206412825651302, "position": { "x": 7, @@ -1951,10 +1951,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 386, - "time": 0.04275217100868404, + "time": 0.04275217100868403, "position": { "x": 7, "y": 0 @@ -1974,10 +1974,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.04275217100868404, + "time": 0.04275217100868403, "position": { "x": 3, "y": 0 @@ -1997,7 +1997,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 434, "time": 0.04809619238476954, @@ -2020,9 +2020,9 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, + "noteOrder": 483, "time": 0.05344021376085504, "position": { "x": 7, @@ -2042,11 +2042,11 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 531, - "time": 0.058784235136940546, + "noteOrder": 507, + "time": 0.056112224448897796, "position": { "x": 7, "y": 0 @@ -2060,18 +2060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 579, - "time": 0.06412825651302605, + "noteOrder": 507, + "time": 0.056112224448897796, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2088,13 +2088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 10, + "lineGroupId": 9, "indexInLine": 1, "isSliding": false, - "noteOrder": 627, - "time": 0.06947227788911156, + "noteOrder": 531, + "time": 0.058784235136940546, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2106,18 +2106,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 675, - "time": 0.07481629926519705, + "noteOrder": 555, + "time": 0.0614562458249833, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2134,13 +2134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 724, - "time": 0.08016032064128256, + "noteOrder": 555, + "time": 0.0614562458249833, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2152,18 +2152,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 772, - "time": 0.08550434201736808, + "noteOrder": 579, + "time": 0.06412825651302605, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2175,18 +2175,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 1, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 820, - "time": 0.09084836339345356, + "noteOrder": 627, + "time": 0.06947227788911156, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2198,18 +2198,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, - "time": 0.09619238476953908, + "noteOrder": 676, + "time": 0.07481629926519706, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2221,16 +2221,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 917, - "time": 0.10153640614562458, + "noteOrder": 700, + "time": 0.07748830995323981, "position": { "x": 3, "y": 0 @@ -2249,13 +2249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 965, - "time": 0.10688042752171008, + "noteOrder": 700, + "time": 0.07748830995323981, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2267,16 +2267,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1013, - "time": 0.11222444889779559, + "noteOrder": 724, + "time": 0.08016032064128256, "position": { "x": 3, "y": 0 @@ -2290,18 +2290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1061, - "time": 0.11756847027388109, + "noteOrder": 748, + "time": 0.08283233132932531, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2318,13 +2318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1158, - "time": 0.1282565130260521, + "noteOrder": 748, + "time": 0.08283233132932531, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2341,13 +2341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1158, - "time": 0.1282565130260521, + "noteOrder": 772, + "time": 0.08550434201736806, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2364,11 +2364,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1254, - "time": 0.13894455577822312, + "noteOrder": 820, + "time": 0.09084836339345358, "position": { "x": 4, "y": 0 @@ -2387,11 +2387,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, - "time": 0.13894455577822312, + "noteOrder": 869, + "time": 0.09619238476953908, "position": { "x": 7, "y": 0 @@ -2410,13 +2410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 1, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, - "time": 0.15497661990647962, + "noteOrder": 893, + "time": 0.09886439545758183, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2433,13 +2433,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.16032064128256512, + "noteOrder": 893, + "time": 0.09886439545758183, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2451,18 +2451,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, - "time": 0.17100868403473615, + "noteOrder": 917, + "time": 0.10153640614562458, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2479,13 +2479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2412, - "time": 0.2672010688042752, + "noteOrder": 941, + "time": 0.10420841683366734, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2497,18 +2497,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2460, - "time": 0.2725450901803607, + "noteOrder": 941, + "time": 0.10420841683366734, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2520,18 +2520,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2509, - "time": 0.27788911155644624, + "noteOrder": 965, + "time": 0.10688042752171008, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2543,18 +2543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2557, - "time": 0.2832331329325317, + "noteOrder": 989, + "time": 0.10955243820975283, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2566,16 +2566,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2605, - "time": 0.28857715430861725, + "noteOrder": 989, + "time": 0.10955243820975283, "position": { "x": 6, "y": 0 @@ -2594,13 +2594,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 19, "indexInLine": 1, "isSliding": false, - "noteOrder": 2653, - "time": 0.2939211756847027, + "noteOrder": 1014, + "time": 0.11222444889779559, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2612,18 +2612,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2702, - "time": 0.2992651970607882, + "noteOrder": 1038, + "time": 0.11489645958583834, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2640,11 +2640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2750, - "time": 0.3046092184368738, + "noteOrder": 1038, + "time": 0.11489645958583834, "position": { "x": 4, "y": 0 @@ -2663,13 +2663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2798, - "time": 0.30995323981295925, + "noteOrder": 1062, + "time": 0.11756847027388109, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2686,13 +2686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2846, - "time": 0.3152972611890448, + "noteOrder": 1158, + "time": 0.1282565130260521, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2709,13 +2709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2895, - "time": 0.32064128256513025, + "noteOrder": 1158, + "time": 0.1282565130260521, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2732,13 +2732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2943, - "time": 0.3259853039412157, + "noteOrder": 1255, + "time": 0.13894455577822312, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2755,11 +2755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3377, - "time": 0.3740814963259853, + "noteOrder": 1255, + "time": 0.13894455577822312, "position": { "x": 7, "y": 0 @@ -2778,13 +2778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, - "time": 0.37942551770207084, + "noteOrder": 1400, + "time": 0.15497661990647962, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2796,18 +2796,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3474, - "time": 0.3847695390781563, + "noteOrder": 1448, + "time": 0.16032064128256512, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2819,16 +2819,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1544, + "time": 0.17100868403473612, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 3522, - "time": 0.3901135604542418, + "noteOrder": 2413, + "time": 0.2672010688042752, "position": { "x": 6, "y": 0 @@ -2847,13 +2870,36 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3570, - "time": 0.3954575818303273, + "noteOrder": 2461, + "time": 0.2725450901803607, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2510, + "time": 0.27788911155644624, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -2870,13 +2916,36 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3618, - "time": 0.4008016032064128, + "noteOrder": 2558, + "time": 0.2832331329325318, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.2885771543086172, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -2893,13 +2962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3667, - "time": 0.4061456245824983, + "noteOrder": 2654, + "time": 0.2939211756847027, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2911,16 +2980,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 3715, - "time": 0.41148964595858384, + "noteOrder": 2703, + "time": 0.29926519706078825, "position": { "x": 4, "y": 0 @@ -2939,13 +3008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3763, - "time": 0.41683366733466937, + "noteOrder": 2751, + "time": 0.3046092184368737, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2957,16 +3026,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.42217768871075484, + "noteOrder": 2799, + "time": 0.30995323981295925, "position": { "x": 7, "y": 0 @@ -2980,16 +3049,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.4275217100868403, + "noteOrder": 2847, + "time": 0.3152972611890448, "position": { "x": 7, "y": 0 @@ -3008,13 +3077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 3908, - "time": 0.43286573146292584, + "noteOrder": 2896, + "time": 0.32064128256513025, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3026,16 +3095,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3956, - "time": 0.4382097528390113, + "noteOrder": 2944, + "time": 0.3259853039412158, "position": { "x": 3, "y": 0 @@ -3054,11 +3123,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4004, - "time": 0.44355377421509684, + "noteOrder": 3378, + "time": 0.37408149632598525, "position": { "x": 7, "y": 0 @@ -3077,13 +3146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4052, - "time": 0.44889779559118237, + "noteOrder": 3403, + "time": 0.37675350701402804, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3095,18 +3164,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4149, - "time": 0.45958583834335337, + "noteOrder": 3403, + "time": 0.37675350701402804, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3123,13 +3192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 4294, - "time": 0.47561790247160984, + "noteOrder": 3427, + "time": 0.3794255177020708, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3141,18 +3210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4342, - "time": 0.4809619238476954, + "noteOrder": 3451, + "time": 0.3820975283901135, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3169,13 +3238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4487, - "time": 0.4969939879759519, + "noteOrder": 3451, + "time": 0.3820975283901135, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3192,11 +3261,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, - "time": 0.5023380093520374, + "noteOrder": 3475, + "time": 0.3847695390781563, "position": { "x": 7, "y": 0 @@ -3215,13 +3284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4680, - "time": 0.518370073480294, + "noteOrder": 3523, + "time": 0.3901135604542418, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3238,11 +3307,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4728, - "time": 0.5237140948563794, + "noteOrder": 3571, + "time": 0.3954575818303273, "position": { "x": 3, "y": 0 @@ -3261,13 +3330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4776, - "time": 0.5290581162324649, + "noteOrder": 3596, + "time": 0.39812959251837005, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3279,18 +3348,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4824, - "time": 0.5344021376085504, + "noteOrder": 3596, + "time": 0.39812959251837005, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3307,11 +3376,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 4921, - "time": 0.5450901803607214, + "noteOrder": 3620, + "time": 0.40080160320641284, "position": { "x": 3, "y": 0 @@ -3325,16 +3394,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5114, - "time": 0.5664662658650634, + "noteOrder": 3644, + "time": 0.4034736138944556, "position": { "x": 3, "y": 0 @@ -3348,18 +3417,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5162, - "time": 0.571810287241149, + "noteOrder": 3644, + "time": 0.4034736138944556, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3376,13 +3445,1922 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.4061456245824983, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3716, + "time": 0.41148964595858384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3764, + "time": 0.41683366733466937, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3789, + "time": 0.41950567802271205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3789, + "time": 0.41950567802271205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3813, + "time": 0.4221776887107548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3837, + "time": 0.4248496993987976, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3837, + "time": 0.4248496993987976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3861, + "time": 0.4275217100868403, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3909, + "time": 0.43286573146292584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3958, + "time": 0.4382097528390113, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3982, + "time": 0.4408817635270541, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3982, + "time": 0.4408817635270541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4006, + "time": 0.44355377421509684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4030, + "time": 0.44622578490313963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4030, + "time": 0.44622578490313963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4054, + "time": 0.44889779559118237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4078, + "time": 0.4515698062792251, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4078, + "time": 0.4515698062792251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4151, + "time": 0.45958583834335337, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4295, + "time": 0.47561790247160984, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4344, + "time": 0.48096192384769537, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4488, + "time": 0.4969939879759519, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4537, + "time": 0.5023380093520374, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4681, + "time": 0.518370073480294, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4730, + "time": 0.5237140948563794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4754, + "time": 0.5263861055444222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4754, + "time": 0.5263861055444222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4778, + "time": 0.5290581162324649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4802, + "time": 0.5317301269205077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4802, + "time": 0.5317301269205077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4826, + "time": 0.5344021376085504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4923, + "time": 0.5450901803607214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5116, + "time": 0.5664662658650635, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5140, + "time": 0.5691382765531062, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5140, + "time": 0.5691382765531062, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5164, + "time": 0.5718102872411489, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5188, + "time": 0.5744822979291917, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5188, + "time": 0.5744822979291917, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5212, + "time": 0.5771543086172344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5237, + "time": 0.5798263193052772, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5237, + "time": 0.5798263193052772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5261, + "time": 0.58249832999332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5285, + "time": 0.5851703406813628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5285, + "time": 0.5851703406813628, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5309, + "time": 0.5878423513694054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5454, + "time": 0.603874415497662, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5502, + "time": 0.6092184368737474, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5526, + "time": 0.6118904475617901, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5526, + "time": 0.6118904475617901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5550, + "time": 0.614562458249833, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5574, + "time": 0.6172344689378757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5574, + "time": 0.6172344689378757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5598, + "time": 0.6199064796259185, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5623, + "time": 0.6225784903139612, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5623, + "time": 0.6225784903139612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5647, + "time": 0.625250501002004, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5671, + "time": 0.6279225116900466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5671, + "time": 0.6279225116900466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5695, + "time": 0.6305945223780896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5888, + "time": 0.6519706078824316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5985, + "time": 0.6626586506346025, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6081, + "time": 0.6733466933867734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6081, + "time": 0.6733466933867734, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6178, + "time": 0.6840347361389445, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6178, + "time": 0.6840347361389445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6274, + "time": 0.6947227788911156, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6274, + "time": 0.6947227788911156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6322, + "time": 0.700066800267201, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6757, + "time": 0.7481629926519705, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6853, + "time": 0.7588510354041416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6902, + "time": 0.764195056780227, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6950, + "time": 0.7695390781563126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6974, + "time": 0.7722110888443554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6974, + "time": 0.7722110888443554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6998, + "time": 0.7748830995323981, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7022, + "time": 0.7775551102204409, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7022, + "time": 0.7775551102204409, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7046, + "time": 0.7802271209084836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7070, + "time": 0.7828991315965264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7070, + "time": 0.7828991315965264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7095, + "time": 0.7855711422845691, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7119, + "time": 0.7882431529726119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5210, - "time": 0.5771543086172345, + "noteOrder": 7119, + "time": 0.7882431529726119, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3399,13 +5377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5259, - "time": 0.58249832999332, + "noteOrder": 7143, + "time": 0.7909151636606546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3422,13 +5400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5307, - "time": 0.5878423513694054, + "noteOrder": 7288, + "time": 0.8069472277889111, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3440,18 +5418,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 5452, - "time": 0.603874415497662, + "noteOrder": 7336, + "time": 0.8122912491649966, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3468,13 +5446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5500, - "time": 0.6092184368737475, + "noteOrder": 7360, + "time": 0.8149632598530394, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3486,18 +5464,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5548, - "time": 0.6145624582498329, + "noteOrder": 7360, + "time": 0.8149632598530394, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3514,13 +5492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5596, - "time": 0.6199064796259185, + "noteOrder": 7384, + "time": 0.8176352705410822, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3537,13 +5515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5644, - "time": 0.625250501002004, + "noteOrder": 7408, + "time": 0.8203072812291249, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3555,18 +5533,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5693, - "time": 0.6305945223780896, + "noteOrder": 7408, + "time": 0.8203072812291249, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3583,13 +5561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 159, "indexInLine": 1, "isSliding": false, - "noteOrder": 5886, - "time": 0.6519706078824314, + "noteOrder": 7432, + "time": 0.8229792919171677, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3601,18 +5579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5982, - "time": 0.6626586506346025, + "noteOrder": 7457, + "time": 0.8256513026052104, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3629,11 +5607,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6079, - "time": 0.6733466933867734, + "noteOrder": 7457, + "time": 0.8256513026052104, "position": { "x": 4, "y": 0 @@ -3652,13 +5630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, - "time": 0.6733466933867734, + "noteOrder": 7481, + "time": 0.8283233132932531, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3675,13 +5653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6175, - "time": 0.6840347361389446, + "noteOrder": 7505, + "time": 0.8309953239812959, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3698,13 +5676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6175, - "time": 0.6840347361389446, + "noteOrder": 7505, + "time": 0.8309953239812959, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3716,16 +5694,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 6272, - "time": 0.6947227788911156, + "noteOrder": 7529, + "time": 0.8336673346693387, "position": { "x": 3, "y": 0 @@ -3744,13 +5722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6272, - "time": 0.6947227788911156, + "noteOrder": 7674, + "time": 0.8496993987975952, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3762,16 +5740,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 6320, - "time": 0.700066800267201, + "noteOrder": 7722, + "time": 0.8550434201736806, "position": { "x": 7, "y": 0 @@ -3790,11 +5768,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6754, - "time": 0.7481629926519706, + "noteOrder": 7746, + "time": 0.8577154308617234, "position": { "x": 7, "y": 0 @@ -3813,13 +5791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6851, - "time": 0.7588510354041417, + "noteOrder": 7746, + "time": 0.8577154308617234, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3836,13 +5814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 2, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6899, - "time": 0.764195056780227, + "noteOrder": 7770, + "time": 0.8603874415497661, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3854,18 +5832,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6947, - "time": 0.7695390781563126, + "noteOrder": 7794, + "time": 0.863059452237809, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3877,18 +5855,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6995, - "time": 0.7748830995323981, + "noteOrder": 7794, + "time": 0.863059452237809, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3905,11 +5883,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7044, - "time": 0.7802271209084836, + "noteOrder": 7819, + "time": 0.8657314629258517, "position": { "x": 7, "y": 0 @@ -3928,11 +5906,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7092, - "time": 0.7855711422845691, + "noteOrder": 7843, + "time": 0.8684034736138945, "position": { "x": 7, "y": 0 @@ -3946,18 +5924,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7140, - "time": 0.7909151636606546, + "noteOrder": 7843, + "time": 0.8684034736138945, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3974,13 +5952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 7285, - "time": 0.8069472277889111, + "noteOrder": 7867, + "time": 0.8710754843019372, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3992,16 +5970,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7333, - "time": 0.8122912491649966, + "noteOrder": 7891, + "time": 0.87374749498998, "position": { "x": 3, "y": 0 @@ -4020,13 +5998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7381, - "time": 0.8176352705410821, + "noteOrder": 7891, + "time": 0.87374749498998, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4038,18 +6016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7429, - "time": 0.8229792919171677, + "noteOrder": 7915, + "time": 0.8764195056780226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4061,18 +6039,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7478, - "time": 0.8283233132932531, + "noteOrder": 7939, + "time": 0.8790915163660655, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4089,13 +6067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7526, - "time": 0.8336673346693387, + "noteOrder": 7939, + "time": 0.8790915163660655, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4107,18 +6085,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 7671, - "time": 0.8496993987975952, + "noteOrder": 7963, + "time": 0.8817635270541082, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4135,13 +6113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7719, - "time": 0.8550434201736806, + "noteOrder": 7987, + "time": 0.8844355377421509, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4153,18 +6131,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7767, - "time": 0.8603874415497662, + "noteOrder": 7987, + "time": 0.8844355377421509, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4181,11 +6159,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7815, - "time": 0.8657314629258517, + "noteOrder": 8012, + "time": 0.8871075484301937, "position": { "x": 7, "y": 0 @@ -4204,13 +6182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7864, - "time": 0.8710754843019373, + "noteOrder": 8036, + "time": 0.8897795591182364, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4222,18 +6200,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7912, - "time": 0.8764195056780226, + "noteOrder": 8036, + "time": 0.8897795591182364, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4250,11 +6228,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7960, - "time": 0.8817635270541082, + "noteOrder": 8060, + "time": 0.8924515698062793, "position": { "x": 3, "y": 0 @@ -4273,13 +6251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8008, - "time": 0.8871075484301937, + "noteOrder": 8084, + "time": 0.895123580494322, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4291,18 +6269,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8057, - "time": 0.8924515698062792, + "noteOrder": 8084, + "time": 0.895123580494322, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4320,9 +6298,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8105, + "noteOrder": 8108, "time": 0.8977955911823647, "position": { "x": 6, @@ -4343,10 +6321,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8201, - "time": 0.9084836339345357, + "noteOrder": 8205, + "time": 0.9084836339345358, "position": { "x": 6, "y": 0 @@ -4366,10 +6344,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8201, - "time": 0.9084836339345357, + "noteOrder": 8205, + "time": 0.9084836339345358, "position": { "x": 4, "y": 0 @@ -4389,9 +6367,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8298, + "noteOrder": 8301, "time": 0.9191716766867067, "position": { "x": 4, @@ -4412,9 +6390,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8298, + "noteOrder": 8301, "time": 0.9191716766867067, "position": { "x": 7, @@ -4435,9 +6413,9 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8394, + "noteOrder": 8398, "time": 0.9298597194388777, "position": { "x": 7, @@ -4458,9 +6436,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8394, + "noteOrder": 8398, "time": 0.9298597194388777, "position": { "x": 3, @@ -4481,9 +6459,9 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8491, + "noteOrder": 8494, "time": 0.9405477621910487, "position": { "x": 3, @@ -4504,9 +6482,9 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8587, + "noteOrder": 8591, "time": 0.9512358049432197, "position": { "x": 7, @@ -4527,10 +6505,10 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8684, - "time": 0.9619238476953909, + "noteOrder": 8687, + "time": 0.9619238476953907, "position": { "x": 7, "y": 0 diff --git a/tracks/Globe Glitter/291_difficulty_1b.json b/tracks/Globe Glitter/291_difficulty_1b.json index 0d102a25..d50713ff 100644 --- a/tracks/Globe Glitter/291_difficulty_1b.json +++ b/tracks/Globe Glitter/291_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 482, + "noteOrder": 483, "time": 0.05344021376085504, "position": { "x": 3, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 675, - "time": 0.07481629926519705, + "noteOrder": 676, + "time": 0.07481629926519706, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 772, - "time": 0.08550434201736808, + "time": 0.08550434201736806, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 796, - "time": 0.08817635270541083, + "time": 0.08817635270541081, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 820, - "time": 0.09084836339345356, + "time": 0.09084836339345358, "position": { "x": 6, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 868, + "noteOrder": 869, "time": 0.09619238476953908, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.11222444889779559, "position": { "x": 3, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.11756847027388109, "position": { "x": 6, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1640, - "time": 0.18169672678690713, + "noteOrder": 1641, + "time": 0.18169672678690715, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1664, - "time": 0.1843687374749499, + "noteOrder": 1665, + "time": 0.18436873747494992, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1689, - "time": 0.18704074816299265, + "time": 0.18704074816299263, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.1950567802271209, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.19772879091516365, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1833, + "noteOrder": 1834, "time": 0.20307281229124916, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.20574482297929192, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1881, + "noteOrder": 1882, "time": 0.20841683366733468, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1931, "time": 0.21376085504342016, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.21643286573146292, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 1979, "time": 0.21910487641950566, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.22444889779559118, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.22712090848363392, + "noteOrder": 2051, + "time": 0.22712090848363395, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2074, + "noteOrder": 2075, "time": 0.22979291917167669, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.23513694054776219, "position": { "x": 5, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.23780895123580492, "position": { "x": 5, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2171, - "time": 0.2404809619238477, + "noteOrder": 2172, + "time": 0.24048096192384769, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2219, + "noteOrder": 2220, "time": 0.2458249832999332, "position": { "x": 8, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2243, + "noteOrder": 2244, "time": 0.24849699398797595, "position": { "x": 8, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.2511690046760187, "position": { "x": 8, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2317, "time": 0.2565130260521042, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2340, + "noteOrder": 2341, "time": 0.259185036740147, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.2618570474281897, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2412, + "noteOrder": 2413, "time": 0.2672010688042752, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 2437, "time": 0.269873079492318, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2460, + "noteOrder": 2461, "time": 0.2725450901803607, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.27788911155644624, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2533, - "time": 0.2805611222444889, + "noteOrder": 2534, + "time": 0.280561122244489, "position": { "x": 8, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2557, - "time": 0.2832331329325317, + "noteOrder": 2558, + "time": 0.2832331329325318, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2605, - "time": 0.28857715430861725, + "noteOrder": 2606, + "time": 0.2885771543086172, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.29124916499666, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2654, "time": 0.2939211756847027, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2702, - "time": 0.2992651970607882, + "noteOrder": 2703, + "time": 0.29926519706078825, "position": { "x": 2, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2726, + "noteOrder": 2727, "time": 0.301937207748831, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2750, - "time": 0.3046092184368738, + "noteOrder": 2751, + "time": 0.3046092184368737, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2846, + "noteOrder": 2847, "time": 0.3152972611890448, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2943, - "time": 0.3259853039412157, + "noteOrder": 2944, + "time": 0.3259853039412158, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2992, "time": 0.33132932531730125, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3015, - "time": 0.33400133600534404, + "noteOrder": 3016, + "time": 0.334001336005344, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3039, + "noteOrder": 3041, "time": 0.3366733466933867, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3063, + "noteOrder": 3065, "time": 0.3393453573814295, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.3420173680694723, + "noteOrder": 3089, + "time": 0.34201736806947225, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3112, + "noteOrder": 3113, "time": 0.344689378757515, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3136, + "noteOrder": 3137, "time": 0.3473613894455578, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3160, + "noteOrder": 3161, "time": 0.3500334001336005, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3377, - "time": 0.3740814963259853, + "noteOrder": 3378, + "time": 0.37408149632598525, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3377, - "time": 0.3740814963259853, + "noteOrder": 3378, + "time": 0.37408149632598525, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3403, "time": 0.37675350701402804, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3425, - "time": 0.37942551770207084, + "noteOrder": 3427, + "time": 0.3794255177020708, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3475, "time": 0.3847695390781563, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3475, "time": 0.3847695390781563, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3498, + "noteOrder": 3499, "time": 0.38744154976619904, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.3901135604542418, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3570, + "noteOrder": 3571, "time": 0.3954575818303273, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3594, - "time": 0.3981295925183701, + "noteOrder": 3596, + "time": 0.39812959251837005, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3618, - "time": 0.4008016032064128, + "noteOrder": 3620, + "time": 0.40080160320641284, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3668, "time": 0.4061456245824983, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3691, - "time": 0.40881763527054105, + "noteOrder": 3692, + "time": 0.4088176352705411, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3716, "time": 0.41148964595858384, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3763, + "noteOrder": 3764, "time": 0.41683366733466937, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3763, + "noteOrder": 3764, "time": 0.41683366733466937, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3787, + "noteOrder": 3789, "time": 0.41950567802271205, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3811, - "time": 0.42217768871075484, + "noteOrder": 3813, + "time": 0.4221776887107548, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3859, + "noteOrder": 3861, "time": 0.4275217100868403, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3859, + "noteOrder": 3861, "time": 0.4275217100868403, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3884, - "time": 0.4301937207748831, + "noteOrder": 3885, + "time": 0.43019372077488305, "position": { "x": 5, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3908, + "noteOrder": 3909, "time": 0.43286573146292584, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 3958, "time": 0.4382097528390113, "position": { "x": 2, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3980, + "noteOrder": 3982, "time": 0.4408817635270541, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.44355377421509684, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4028, - "time": 0.4462257849031396, + "noteOrder": 4030, + "time": 0.44622578490313963, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4052, + "noteOrder": 4054, "time": 0.44889779559118237, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4149, + "noteOrder": 4151, "time": 0.45958583834335337, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4173, + "noteOrder": 4175, "time": 0.4622578490313961, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4197, + "noteOrder": 4199, "time": 0.46492985971943884, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4221, - "time": 0.46760187040748163, + "noteOrder": 4223, + "time": 0.4676018704074816, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4245, + "noteOrder": 4247, "time": 0.47027388109552437, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4271, "time": 0.4729458917835671, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4294, + "noteOrder": 4295, "time": 0.47561790247160984, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4342, - "time": 0.4809619238476954, + "noteOrder": 4344, + "time": 0.48096192384769537, "position": { "x": 6, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.4836339345357381, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.4863059452237809, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4414, + "noteOrder": 4416, "time": 0.48897795591182364, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4438, + "noteOrder": 4440, "time": 0.4916499665998664, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4463, - "time": 0.4943219772879091, + "noteOrder": 4464, + "time": 0.49432197728790916, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4487, + "noteOrder": 4488, "time": 0.4969939879759519, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4535, + "noteOrder": 4537, "time": 0.5023380093520374, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4535, + "noteOrder": 4537, "time": 0.5023380093520374, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4583, + "noteOrder": 4585, "time": 0.5076820307281229, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4583, + "noteOrder": 4585, "time": 0.5076820307281229, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4633, "time": 0.5130260521042084, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4633, "time": 0.5130260521042084, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4681, "time": 0.518370073480294, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4681, "time": 0.518370073480294, "position": { "x": 7, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5162, - "time": 0.571810287241149, + "noteOrder": 5164, + "time": 0.5718102872411489, "position": { "x": 8, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5259, + "noteOrder": 5261, "time": 0.58249832999332, "position": { "x": 2, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5355, - "time": 0.593186372745491, + "noteOrder": 5357, + "time": 0.5931863727454909, "position": { "x": 6, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 5454, "time": 0.603874415497662, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5548, - "time": 0.6145624582498329, + "noteOrder": 5550, + "time": 0.614562458249833, "position": { "x": 8, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5596, + "noteOrder": 5598, "time": 0.6199064796259185, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5644, + "noteOrder": 5647, "time": 0.625250501002004, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5693, + "noteOrder": 5695, "time": 0.6305945223780896, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5741, - "time": 0.6359385437541749, + "noteOrder": 5743, + "time": 0.635938543754175, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5789, + "noteOrder": 5792, "time": 0.6412825651302605, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5837, + "noteOrder": 5840, "time": 0.6466265865063461, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5886, - "time": 0.6519706078824314, + "noteOrder": 5888, + "time": 0.6519706078824316, "position": { "x": 5, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5934, - "time": 0.657314629258517, + "noteOrder": 5936, + "time": 0.6573146292585169, "position": { "x": 6, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6947, + "noteOrder": 6950, "time": 0.7695390781563126, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6971, + "noteOrder": 6974, "time": 0.7722110888443554, "position": { "x": 6, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6995, + "noteOrder": 6998, "time": 0.7748830995323981, "position": { "x": 4, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 7044, + "noteOrder": 7046, "time": 0.7802271209084836, "position": { "x": 4, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 7068, + "noteOrder": 7070, "time": 0.7828991315965264, "position": { "x": 5, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 7092, + "noteOrder": 7095, "time": 0.7855711422845691, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 7140, + "noteOrder": 7143, "time": 0.7909151636606546, "position": { "x": 4, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 7164, - "time": 0.7935871743486974, + "noteOrder": 7167, + "time": 0.7935871743486973, "position": { "x": 7, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 7188, - "time": 0.7962591850367402, + "noteOrder": 7191, + "time": 0.7962591850367401, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 7237, - "time": 0.8016032064128256, + "noteOrder": 7239, + "time": 0.8016032064128257, "position": { "x": 5, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 7261, + "noteOrder": 7264, "time": 0.8042752171008684, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 7285, + "noteOrder": 7288, "time": 0.8069472277889111, "position": { "x": 4, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 7333, + "noteOrder": 7336, "time": 0.8122912491649966, "position": { "x": 4, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 7357, + "noteOrder": 7360, "time": 0.8149632598530394, "position": { "x": 6, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 7381, - "time": 0.8176352705410821, + "noteOrder": 7384, + "time": 0.8176352705410822, "position": { "x": 4, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7429, + "noteOrder": 7432, "time": 0.8229792919171677, "position": { "x": 4, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 7454, + "noteOrder": 7457, "time": 0.8256513026052104, "position": { "x": 6, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7478, + "noteOrder": 7481, "time": 0.8283233132932531, "position": { "x": 7, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7864, - "time": 0.8710754843019373, + "noteOrder": 7867, + "time": 0.8710754843019372, "position": { "x": 4, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 8057, - "time": 0.8924515698062792, + "noteOrder": 8060, + "time": 0.8924515698062793, "position": { "x": 6, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 8105, + "noteOrder": 8108, "time": 0.8977955911823647, "position": { "x": 7, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 8129, + "noteOrder": 8132, "time": 0.9004676018704074, "position": { "x": 7, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 8153, + "noteOrder": 8156, "time": 0.9031396125584502, "position": { "x": 7, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 8201, - "time": 0.9084836339345357, + "noteOrder": 8205, + "time": 0.9084836339345358, "position": { "x": 3, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 8226, + "noteOrder": 8229, "time": 0.9111556446225785, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 8250, - "time": 0.9138276553106212, + "noteOrder": 8253, + "time": 0.9138276553106213, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 8298, + "noteOrder": 8301, "time": 0.9191716766867067, "position": { "x": 6, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 8322, - "time": 0.9218436873747495, + "noteOrder": 8325, + "time": 0.9218436873747494, "position": { "x": 4, "y": 0 @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 8346, + "noteOrder": 8349, "time": 0.9245156980627922, "position": { "x": 6, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 8370, - "time": 0.9271877087508349, + "noteOrder": 8374, + "time": 0.927187708750835, "position": { "x": 4, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 8394, + "noteOrder": 8398, "time": 0.9298597194388777, "position": { "x": 6, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 8418, + "noteOrder": 8422, "time": 0.9325317301269205, "position": { "x": 3, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 8443, - "time": 0.9352037408149633, + "noteOrder": 8446, + "time": 0.9352037408149632, "position": { "x": 7, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 8467, + "noteOrder": 8470, "time": 0.937875751503006, "position": { "x": 3, @@ -3256,10 +3256,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.01068804275217101, + "noteOrder": 97, + "time": 0.010688042752171008, "position": { "x": 2, "y": 0 @@ -3279,7 +3279,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.01603206412825651, @@ -3302,10 +3302,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 193, - "time": 0.02137608550434202, + "time": 0.021376085504342016, "position": { "x": 6, "y": 0 @@ -3325,7 +3325,7 @@ }, { "lineGroupId": 1, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 241, "time": 0.02672010688042752, @@ -3348,9 +3348,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.03206412825651302, "position": { "x": 4, @@ -3371,10 +3371,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, - "time": 0.037408149632598524, + "time": 0.03740814963259853, "position": { "x": 8, "y": 0 @@ -3394,10 +3394,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 386, - "time": 0.04275217100868404, + "time": 0.04275217100868403, "position": { "x": 8, "y": 0 @@ -3417,7 +3417,7 @@ }, { "lineGroupId": 2, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 434, "time": 0.04809619238476954, @@ -3440,9 +3440,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.13894455577822312, "position": { "x": 6, @@ -3462,11 +3462,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1303, - "time": 0.14428857715430862, + "noteOrder": 1279, + "time": 0.1416165664662659, "position": { "x": 6, "y": 0 @@ -3480,16 +3480,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1351, - "time": 0.1496325985303941, + "noteOrder": 1279, + "time": 0.1416165664662659, "position": { "x": 6, "y": 0 @@ -3508,13 +3508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1447, - "time": 0.16032064128256512, + "noteOrder": 1303, + "time": 0.1442885771543086, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3531,36 +3531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1496, - "time": 0.16566466265865062, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1544, - "time": 0.17100868403473615, + "noteOrder": 1327, + "time": 0.14696058784235136, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3577,13 +3554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3184, - "time": 0.3527054108216433, + "noteOrder": 1327, + "time": 0.14696058784235136, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3600,13 +3577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 3353, - "time": 0.37140948563794257, + "noteOrder": 1351, + "time": 0.14963259853039412, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3618,18 +3595,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3184, - "time": 0.3527054108216433, + "noteOrder": 1375, + "time": 0.15230460921843686, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3646,13 +3623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3353, - "time": 0.37140948563794257, + "noteOrder": 1375, + "time": 0.15230460921843686, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3669,13 +3646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4728, - "time": 0.5237140948563794, + "noteOrder": 1448, + "time": 0.16032064128256512, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3687,18 +3664,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4776, - "time": 0.5290581162324649, + "noteOrder": 1472, + "time": 0.1629926519706079, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3715,13 +3692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4824, - "time": 0.5344021376085504, + "noteOrder": 1472, + "time": 0.1629926519706079, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3733,18 +3710,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 4921, - "time": 0.5450901803607214, + "noteOrder": 1496, + "time": 0.16566466265865062, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3761,13 +3738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 28, "indexInLine": 2, "isSliding": false, - "noteOrder": 4945, - "time": 0.5477621910487641, + "noteOrder": 1520, + "time": 0.16833667334669336, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3784,13 +3761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 28, "indexInLine": 3, "isSliding": false, - "noteOrder": 5017, - "time": 0.5557782231128925, + "noteOrder": 1520, + "time": 0.16833667334669336, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3807,13 +3784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4824, - "time": 0.5344021376085504, + "noteOrder": 1544, + "time": 0.17100868403473612, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3830,13 +3807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4969, - "time": 0.5504342017368069, + "noteOrder": 1569, + "time": 0.1736806947227789, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3853,11 +3830,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 2, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4993, - "time": 0.5531062124248497, + "noteOrder": 1569, + "time": 0.1736806947227789, "position": { "x": 4, "y": 0 @@ -3876,13 +3853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 3, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5017, - "time": 0.5557782231128925, + "noteOrder": 3185, + "time": 0.35270541082164325, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3899,13 +3876,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5114, - "time": 0.5664662658650634, + "noteOrder": 3354, + "time": 0.37140948563794257, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3917,18 +3894,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 5210, - "time": 0.5771543086172345, + "noteOrder": 3185, + "time": 0.35270541082164325, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3945,13 +3922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5210, - "time": 0.5771543086172345, + "noteOrder": 3354, + "time": 0.37140948563794257, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3963,18 +3940,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 131, "indexInLine": 1, "isSliding": false, - "noteOrder": 5307, - "time": 0.5878423513694054, + "noteOrder": 4730, + "time": 0.5237140948563794, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3986,18 +3963,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5307, - "time": 0.5878423513694054, + "noteOrder": 4754, + "time": 0.5263861055444222, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4014,13 +3991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5403, - "time": 0.5985303941215764, + "noteOrder": 4754, + "time": 0.5263861055444222, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4037,13 +4014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5403, - "time": 0.5985303941215764, + "noteOrder": 4778, + "time": 0.5290581162324649, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4060,13 +4037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5500, - "time": 0.6092184368737475, + "noteOrder": 4802, + "time": 0.5317301269205077, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4083,13 +4060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5500, - "time": 0.6092184368737475, + "noteOrder": 4802, + "time": 0.5317301269205077, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4101,18 +4078,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 5596, - "time": 0.6199064796259185, + "noteOrder": 4826, + "time": 0.5344021376085504, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4129,13 +4106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6368, - "time": 0.7054108216432866, + "noteOrder": 4923, + "time": 0.5450901803607214, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4152,11 +4129,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6465, - "time": 0.7160988643954576, + "noteOrder": 4947, + "time": 0.5477621910487641, "position": { "x": 6, "y": 0 @@ -4175,13 +4152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6465, - "time": 0.7160988643954576, + "noteOrder": 5019, + "time": 0.5557782231128925, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4193,18 +4170,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 6561, - "time": 0.7267869071476285, + "noteOrder": 4826, + "time": 0.5344021376085504, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4221,11 +4198,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 134, "indexInLine": 2, "isSliding": false, - "noteOrder": 6609, - "time": 0.7321309285237141, + "noteOrder": 4971, + "time": 0.5504342017368069, "position": { "x": 3, "y": 0 @@ -4244,13 +4221,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 134, "indexInLine": 3, "isSliding": false, - "noteOrder": 6658, - "time": 0.7374749498997996, + "noteOrder": 4995, + "time": 0.5531062124248497, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4267,13 +4244,450 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 134, "indexInLine": 4, "isSliding": false, - "noteOrder": 6706, - "time": 0.7428189712758851, + "noteOrder": 5019, + "time": 0.5557782231128925, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5116, + "time": 0.5664662658650635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5212, + "time": 0.5771543086172344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5212, + "time": 0.5771543086172344, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5309, + "time": 0.5878423513694054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5309, + "time": 0.5878423513694054, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5405, + "time": 0.5985303941215765, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5405, + "time": 0.5985303941215765, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5502, + "time": 0.6092184368737474, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5502, + "time": 0.6092184368737474, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5598, + "time": 0.6199064796259185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6371, + "time": 0.7054108216432865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6467, + "time": 0.7160988643954576, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6467, + "time": 0.7160988643954576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6564, + "time": 0.7267869071476286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6612, + "time": 0.7321309285237141, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6660, + "time": 0.7374749498997997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6709, + "time": 0.7428189712758851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 6757, + "time": 0.7481629926519705, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7529, + "time": 0.8336673346693387, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4290,13 +4704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 5, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6754, - "time": 0.7481629926519706, + "noteOrder": 7626, + "time": 0.8443553774215096, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4313,11 +4727,57 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7526, - "time": 0.8336673346693387, + "noteOrder": 7577, + "time": 0.8390113560454241, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7626, + "time": 0.8443553774215096, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7722, + "time": 0.8550434201736806, "position": { "x": 4, "y": 0 @@ -4336,11 +4796,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7622, - "time": 0.8443553774215097, + "noteOrder": 7746, + "time": 0.8577154308617234, "position": { "x": 4, "y": 0 @@ -4359,13 +4819,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7574, - "time": 0.8390113560454241, + "noteOrder": 7746, + "time": 0.8577154308617234, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4377,18 +4837,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 7622, - "time": 0.8443553774215097, + "noteOrder": 7770, + "time": 0.8603874415497661, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4405,11 +4865,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7719, - "time": 0.8550434201736806, + "noteOrder": 7794, + "time": 0.863059452237809, "position": { "x": 4, "y": 0 @@ -4423,16 +4883,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7767, - "time": 0.8603874415497662, + "noteOrder": 7794, + "time": 0.863059452237809, "position": { "x": 4, "y": 0 @@ -4452,9 +4912,9 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7815, + "noteOrder": 7819, "time": 0.8657314629258517, "position": { "x": 4, @@ -4473,11 +4933,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7843, + "time": 0.8684034736138945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7843, + "time": 0.8684034736138945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7912, + "noteOrder": 7915, "time": 0.8764195056780226, "position": { "x": 6, @@ -4496,11 +5002,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7939, + "time": 0.8790915163660655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7939, + "time": 0.8790915163660655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7960, + "noteOrder": 7963, "time": 0.8817635270541082, "position": { "x": 6, @@ -4519,11 +5071,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7987, + "time": 0.8844355377421509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7987, + "time": 0.8844355377421509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8008, + "noteOrder": 8012, "time": 0.8871075484301937, "position": { "x": 6, @@ -4541,6 +5139,52 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8036, + "time": 0.8897795591182364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8036, + "time": 0.8897795591182364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Globe Glitter/info.json b/tracks/Globe Glitter/info.json index 880fa43a..ecbfcf91 100644 --- a/tracks/Globe Glitter/info.json +++ b/tracks/Globe Glitter/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Globe Glitter", - "SongLength": "128.783673", + "SongLength": "118.831020", "SongAuthorName": "Sana,ATSUMI UEDA by BEMANI Sound Team \"PON\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Go Down/346_difficulty_1a.json b/tracks/Go Down/346_difficulty_1a.json index 2e5e19ac..b7413921 100644 --- a/tracks/Go Down/346_difficulty_1a.json +++ b/tracks/Go Down/346_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.016975226778420244, + "time": 0.01697522677842024, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 156, - "time": 0.027584743514932893, + "time": 0.027584743514932897, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 192, - "time": 0.03395045355684049, + "time": 0.03395045355684048, "position": { "x": 3, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 216, - "time": 0.038194260251445546, + "noteOrder": 217, + "time": 0.03819426025144555, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.04243806694605061, "position": { "x": 5, @@ -174,7 +174,7 @@ }, { "noteOrder": 253, - "time": 0.044559970293353145, + "time": 0.04455997029335314, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 265, - "time": 0.046681873640655666, + "time": 0.04668187364065567, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 313, - "time": 0.05516948702986579, + "time": 0.055169487029865794, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 349, - "time": 0.061535197071773386, + "time": 0.06153519707177338, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 385, - "time": 0.06790090711368098, + "time": 0.06790090711368096, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 409, - "time": 0.07214471380828603, + "time": 0.07214471380828602, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 433, - "time": 0.07638852050289109, + "time": 0.0763885205028911, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 505, - "time": 0.08911994058670629, + "time": 0.08911994058670628, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 529, - "time": 0.09336374728131133, + "time": 0.09336374728131135, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 601, - "time": 0.10609516736512653, + "time": 0.10609516736512652, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 625, - "time": 0.11033897405973157, + "noteOrder": 626, + "time": 0.11033897405973159, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 637, + "noteOrder": 638, "time": 0.11246087740703412, "position": { "x": 5, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 649, + "noteOrder": 650, "time": 0.11458278075433664, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 673, + "noteOrder": 674, "time": 0.1188265874489417, "position": { "x": 7, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 697, - "time": 0.12307039414354677, + "noteOrder": 698, + "time": 0.12307039414354676, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.12731420083815184, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 733, + "noteOrder": 734, "time": 0.12943610418545434, "position": { "x": 5, @@ -674,7 +674,7 @@ }, { "noteOrder": 770, - "time": 0.13580181422736196, + "time": 0.13580181422736193, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 794, - "time": 0.140045620921967, + "time": 0.14004562092196698, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 818, - "time": 0.14428942761657207, + "time": 0.14428942761657204, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 866, - "time": 0.15277704100578218, + "time": 0.1527770410057822, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 866, - "time": 0.15277704100578218, + "time": 0.1527770410057822, "position": { "x": 3, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 914, - "time": 0.1612646543949923, + "time": 0.16126465439499232, "position": { "x": 5, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1010, - "time": 0.17823988117341258, + "time": 0.17823988117341255, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1058, - "time": 0.18672749456262266, + "noteOrder": 1059, + "time": 0.1867274945626227, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1058, - "time": 0.18672749456262266, + "noteOrder": 1059, + "time": 0.1867274945626227, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1082, + "noteOrder": 1083, "time": 0.19097130125722775, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1107, "time": 0.1952151079518328, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1118, + "noteOrder": 1119, "time": 0.19733701129913533, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.20370272134104292, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.20794652803564798, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1202, - "time": 0.21219033473025306, + "noteOrder": 1203, + "time": 0.21219033473025303, "position": { "x": 7, "y": 0 @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1251, - "time": 0.22067794811946315, + "time": 0.22067794811946317, "position": { "x": 5, "y": 0 @@ -1274,7 +1274,7 @@ }, { "noteOrder": 1383, - "time": 0.24401888493979101, + "time": 0.244018884939791, "position": { "x": 4, "y": 0 @@ -1294,7 +1294,7 @@ }, { "noteOrder": 1395, - "time": 0.24614078828709354, + "time": 0.24614078828709351, "position": { "x": 7, "y": 0 @@ -1354,7 +1354,7 @@ }, { "noteOrder": 1431, - "time": 0.25250649832900113, + "time": 0.2525064983290011, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1539, - "time": 0.2716036284547239, + "noteOrder": 1540, + "time": 0.27160362845472386, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1611, - "time": 0.2843350485385391, + "noteOrder": 1612, + "time": 0.284335048538539, "position": { "x": 6, "y": 0 @@ -1414,7 +1414,7 @@ }, { "noteOrder": 1732, - "time": 0.30555408201156437, + "time": 0.3055540820115644, "position": { "x": 2, "y": 0 @@ -1434,7 +1434,7 @@ }, { "noteOrder": 1756, - "time": 0.3097978887061694, + "time": 0.3097978887061695, "position": { "x": 2, "y": 0 @@ -1474,7 +1474,7 @@ }, { "noteOrder": 1804, - "time": 0.31828550209537954, + "time": 0.3182855020953796, "position": { "x": 2, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1852, + "noteOrder": 1853, "time": 0.3267731154845897, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1876, - "time": 0.3310169221791947, + "noteOrder": 1877, + "time": 0.33101692217919476, "position": { "x": 5, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1900, + "noteOrder": 1901, "time": 0.3352607288737998, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2116, - "time": 0.37345498912524533, + "noteOrder": 2117, + "time": 0.3734549891252454, "position": { "x": 8, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2140, + "noteOrder": 2141, "time": 0.37769879581985044, "position": { "x": 8, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2164, + "noteOrder": 2165, "time": 0.3819426025144555, "position": { "x": 8, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.3861864092090605, + "noteOrder": 2189, + "time": 0.38618640920906055, "position": { "x": 8, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2261, - "time": 0.39891782929287567, + "noteOrder": 2262, + "time": 0.3989178292928757, "position": { "x": 5, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2285, + "noteOrder": 2286, "time": 0.4031616359874808, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2429, + "noteOrder": 2430, "time": 0.4286244761551111, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2453, - "time": 0.43286828284971623, + "noteOrder": 2454, + "time": 0.4328682828497162, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2477, - "time": 0.4371120895443213, + "noteOrder": 2478, + "time": 0.43711208954432124, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2525, + "noteOrder": 2526, "time": 0.4455997029335314, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.44984350962813646, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2573, + "noteOrder": 2574, "time": 0.4540873163227415, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2621, + "noteOrder": 2622, "time": 0.46257492971195163, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2645, + "noteOrder": 2646, "time": 0.4668187364065567, "position": { "x": 5, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2671, "time": 0.47106254310116175, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.47955015649037186, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2742, + "noteOrder": 2743, "time": 0.4837939631849769, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2766, - "time": 0.48803776987958203, + "noteOrder": 2767, + "time": 0.488037769879582, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2814, + "noteOrder": 2815, "time": 0.4965253832687921, "position": { "x": 2, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2838, + "noteOrder": 2839, "time": 0.5007691899633971, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2862, - "time": 0.5050129966580023, + "noteOrder": 2863, + "time": 0.5050129966580021, "position": { "x": 5, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2910, + "noteOrder": 2911, "time": 0.5135006100472124, "position": { "x": 8, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2934, + "noteOrder": 2935, "time": 0.5177444167418174, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2958, + "noteOrder": 2959, "time": 0.5219882234364225, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3006, + "noteOrder": 3007, "time": 0.5304758368256326, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3054, + "noteOrder": 3055, "time": 0.5389634502148427, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3174, - "time": 0.560182483687868, + "noteOrder": 3176, + "time": 0.5601824836878679, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3198, - "time": 0.5644262903824732, + "noteOrder": 3200, + "time": 0.564426290382473, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3223, - "time": 0.5686700970770782, + "noteOrder": 3224, + "time": 0.568670097077078, "position": { "x": 5, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3235, - "time": 0.5707920004243806, + "noteOrder": 3236, + "time": 0.5707920004243807, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3247, - "time": 0.5729139037716833, + "noteOrder": 3248, + "time": 0.5729139037716832, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3271, - "time": 0.5771577104662883, + "noteOrder": 3272, + "time": 0.5771577104662882, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3295, + "noteOrder": 3296, "time": 0.5814015171608933, "position": { "x": 3, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3319, - "time": 0.5856453238554984, + "noteOrder": 3320, + "time": 0.5856453238554983, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3331, + "noteOrder": 3332, "time": 0.587767227202801, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3343, + "noteOrder": 3344, "time": 0.5898891305501034, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3367, - "time": 0.5941329372447085, + "noteOrder": 3368, + "time": 0.5941329372447084, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.5983767439393136, + "noteOrder": 3392, + "time": 0.5983767439393135, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3415, - "time": 0.6026205506339187, + "noteOrder": 3416, + "time": 0.6026205506339185, "position": { "x": 6, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3427, + "noteOrder": 3428, "time": 0.6047424539812212, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3439, + "noteOrder": 3440, "time": 0.6068643573285236, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3463, - "time": 0.6111081640231287, + "noteOrder": 3464, + "time": 0.6111081640231288, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3487, + "noteOrder": 3489, "time": 0.6153519707177338, "position": { "x": 3, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3511, - "time": 0.6195957774123388, + "noteOrder": 3513, + "time": 0.619595777412339, "position": { "x": 7, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3535, + "noteOrder": 3537, "time": 0.623839584106944, "position": { "x": 3, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3561, "time": 0.6280833908015491, "position": { "x": 6, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.6323271974961541, "position": { "x": 4, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3607, - "time": 0.6365710041907591, + "noteOrder": 3609, + "time": 0.6365710041907592, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3621, "time": 0.6386929075380616, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.6450586175799692, + "noteOrder": 3657, + "time": 0.6450586175799693, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3679, + "noteOrder": 3681, "time": 0.6493024242745743, "position": { "x": 4, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3691, - "time": 0.6514243276218769, + "noteOrder": 3693, + "time": 0.6514243276218767, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.6620338443583894, + "noteOrder": 3753, + "time": 0.6620338443583895, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.6662776510529945, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3801, "time": 0.6705214577475996, "position": { "x": 3, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3812, - "time": 0.6726433610949022, + "noteOrder": 3813, + "time": 0.6726433610949021, "position": { "x": 4, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3825, "time": 0.6747652644422046, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3944, + "noteOrder": 3946, "time": 0.69598429791523, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.7129595246936503, + "noteOrder": 4042, + "time": 0.7129595246936502, "position": { "x": 8, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4064, + "noteOrder": 4066, "time": 0.7172033313882552, "position": { "x": 8, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4088, + "noteOrder": 4090, "time": 0.7214471380828603, "position": { "x": 8, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.7256909447774654, + "noteOrder": 4114, + "time": 0.7256909447774653, "position": { "x": 8, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4160, - "time": 0.7341785581666755, + "noteOrder": 4162, + "time": 0.7341785581666754, "position": { "x": 6, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4184, - "time": 0.7384223648612807, + "noteOrder": 4186, + "time": 0.7384223648612805, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4209, - "time": 0.7426661715558855, + "noteOrder": 4210, + "time": 0.7426661715558857, "position": { "x": 3, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4425, + "noteOrder": 4427, "time": 0.7808604318073312, "position": { "x": 2, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4449, + "noteOrder": 4451, "time": 0.7851042385019362, "position": { "x": 2, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4473, + "noteOrder": 4475, "time": 0.7893480451965413, "position": { "x": 2, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4497, - "time": 0.7935918518911464, + "noteOrder": 4499, + "time": 0.7935918518911463, "position": { "x": 2, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4547, "time": 0.8020794652803565, "position": { "x": 4, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.8063232719749616, "position": { "x": 5, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4593, - "time": 0.8105670786695667, + "noteOrder": 4595, + "time": 0.8105670786695666, "position": { "x": 7, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4738, - "time": 0.836029918837197, + "noteOrder": 4740, + "time": 0.8360299188371969, "position": { "x": 6, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.840273725531802, "position": { "x": 5, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4786, - "time": 0.8445175322264071, + "noteOrder": 4788, + "time": 0.844517532226407, "position": { "x": 3, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.8530051456156172, + "noteOrder": 4836, + "time": 0.8530051456156171, "position": { "x": 4, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.8572489523102222, "position": { "x": 5, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4882, - "time": 0.8614927590048274, + "noteOrder": 4884, + "time": 0.8614927590048272, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4930, - "time": 0.8699803723940375, + "noteOrder": 4932, + "time": 0.8699803723940374, "position": { "x": 6, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4954, - "time": 0.8742241790886426, + "noteOrder": 4956, + "time": 0.8742241790886425, "position": { "x": 5, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4978, + "noteOrder": 4980, "time": 0.8784679857832476, "position": { "x": 3, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5026, + "noteOrder": 5028, "time": 0.8869555991724577, "position": { "x": 5, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8911994058670628, "position": { "x": 6, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5074, + "noteOrder": 5076, "time": 0.8954432125616678, "position": { "x": 7, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.903930825950878, + "noteOrder": 5125, + "time": 0.9039308259508779, "position": { "x": 8, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5146, + "noteOrder": 5149, "time": 0.908174632645483, "position": { "x": 6, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5170, + "noteOrder": 5173, "time": 0.912418439340088, "position": { "x": 5, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5219, - "time": 0.9209060527292983, + "noteOrder": 5221, + "time": 0.9209060527292982, "position": { "x": 2, "y": 0 @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5243, + "noteOrder": 5245, "time": 0.9251498594239033, "position": { "x": 4, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5267, - "time": 0.9293936661185084, + "noteOrder": 5269, + "time": 0.9293936661185083, "position": { "x": 5, "y": 0 @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5315, + "noteOrder": 5317, "time": 0.9378812795077184, "position": { "x": 4, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5363, - "time": 0.9463688928969286, + "noteOrder": 5365, + "time": 0.9463688928969285, "position": { "x": 6, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5483, + "noteOrder": 5485, "time": 0.9675879263699538, "position": { "x": 7, @@ -3436,9 +3436,9 @@ "lineNodes": [ { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1443, + "noteOrder": 1444, "time": 0.2546284016763037, "position": { "x": 7, @@ -3458,13 +3458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1467, - "time": 0.2588722083709087, + "noteOrder": 1456, + "time": 0.2567503050236062, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3476,18 +3476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1491, - "time": 0.26311601506551374, + "noteOrder": 1456, + "time": 0.2567503050236062, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3504,11 +3504,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1515, - "time": 0.26735982176011885, + "noteOrder": 1468, + "time": 0.2588722083709087, "position": { "x": 3, "y": 0 @@ -3527,11 +3527,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 87, "indexInLine": 2, "isSliding": false, - "noteOrder": 1539, - "time": 0.2716036284547239, + "noteOrder": 1480, + "time": 0.26099411171821124, "position": { "x": 3, "y": 0 @@ -3550,11 +3550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 87, "indexInLine": 3, "isSliding": false, - "noteOrder": 1575, - "time": 0.27796933849663147, + "noteOrder": 1480, + "time": 0.26099411171821124, "position": { "x": 4, "y": 0 @@ -3573,13 +3573,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 4, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1587, - "time": 0.280091241843934, + "noteOrder": 1492, + "time": 0.26311601506551374, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3591,18 +3591,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.28857885523314414, + "noteOrder": 1504, + "time": 0.2652379184128163, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3614,18 +3614,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1659, - "time": 0.2928226619277492, + "noteOrder": 1504, + "time": 0.2652379184128163, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3642,13 +3642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1683, - "time": 0.29706646862235425, + "noteOrder": 1516, + "time": 0.2673598217601188, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3665,13 +3665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1707, - "time": 0.30131027531695936, + "noteOrder": 1528, + "time": 0.26948172510742135, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3683,16 +3683,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 89, "indexInLine": 3, "isSliding": false, - "noteOrder": 1744, - "time": 0.3076759853588669, + "noteOrder": 1528, + "time": 0.26948172510742135, "position": { "x": 4, "y": 0 @@ -3706,18 +3706,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 89, "indexInLine": 4, "isSliding": false, - "noteOrder": 1756, - "time": 0.3097978887061694, + "noteOrder": 1540, + "time": 0.27160362845472386, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3729,16 +3729,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 89, "indexInLine": 5, "isSliding": false, - "noteOrder": 1768, - "time": 0.311919792053472, + "noteOrder": 1576, + "time": 0.27796933849663147, "position": { "x": 4, "y": 0 @@ -3752,18 +3752,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 89, "indexInLine": 6, "isSliding": false, - "noteOrder": 1780, - "time": 0.31404169540077453, + "noteOrder": 1588, + "time": 0.28009124184393397, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3775,18 +3775,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 7, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1792, - "time": 0.31616359874807703, + "noteOrder": 1636, + "time": 0.2885788552331441, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3798,18 +3798,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 8, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1804, - "time": 0.31828550209537954, + "noteOrder": 1648, + "time": 0.29070075858044664, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3821,16 +3821,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 9, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1816, - "time": 0.3204074054426821, + "noteOrder": 1648, + "time": 0.29070075858044664, "position": { "x": 4, "y": 0 @@ -3844,18 +3844,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 10, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1828, - "time": 0.3225293087899846, + "noteOrder": 1660, + "time": 0.29282266192774914, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3867,18 +3867,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1828, - "time": 0.3225293087899846, + "noteOrder": 1660, + "time": 0.29282266192774914, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3895,13 +3895,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 1852, - "time": 0.3267731154845897, + "noteOrder": 1660, + "time": 0.29282266192774914, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3913,18 +3913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 94, "indexInLine": 2, "isSliding": false, - "noteOrder": 1876, - "time": 0.3310169221791947, + "noteOrder": 1672, + "time": 0.2949445652750517, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3936,16 +3936,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 94, "indexInLine": 3, "isSliding": false, - "noteOrder": 1900, - "time": 0.3352607288737998, + "noteOrder": 1672, + "time": 0.2949445652750517, "position": { "x": 4, "y": 0 @@ -3959,18 +3959,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 94, "indexInLine": 4, "isSliding": false, - "noteOrder": 1924, - "time": 0.3395045355684049, + "noteOrder": 1684, + "time": 0.2970664686223542, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3982,18 +3982,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1924, - "time": 0.3395045355684049, + "noteOrder": 1684, + "time": 0.2970664686223542, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4010,13 +4010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1948, - "time": 0.3437483422630099, + "noteOrder": 1684, + "time": 0.2970664686223542, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4033,13 +4033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1972, - "time": 0.347992148957615, + "noteOrder": 1696, + "time": 0.29918837196965675, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4051,18 +4051,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1996, - "time": 0.35223595565222005, + "noteOrder": 1696, + "time": 0.29918837196965675, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4079,13 +4079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2020, - "time": 0.35647976234682516, + "noteOrder": 1708, + "time": 0.30131027531695925, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4097,18 +4097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2044, - "time": 0.36072356904143016, + "noteOrder": 1708, + "time": 0.30131027531695925, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4125,13 +4125,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2068, - "time": 0.3649673757360352, + "noteOrder": 1708, + "time": 0.30131027531695925, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4148,13 +4148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2092, - "time": 0.36921118243064033, + "noteOrder": 1720, + "time": 0.3034321786642618, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4166,18 +4166,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 3, "isSliding": false, - "noteOrder": 2128, - "time": 0.3755768924725479, + "noteOrder": 1720, + "time": 0.3034321786642618, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4189,18 +4189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 4, "isSliding": false, - "noteOrder": 2140, - "time": 0.37769879581985044, + "noteOrder": 1732, + "time": 0.3055540820115644, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4212,18 +4212,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 5, "isSliding": false, - "noteOrder": 2152, - "time": 0.37982069916715294, + "noteOrder": 1732, + "time": 0.3055540820115644, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4235,18 +4235,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 6, "isSliding": false, - "noteOrder": 2164, - "time": 0.3819426025144555, + "noteOrder": 1744, + "time": 0.3076759853588669, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4258,18 +4258,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 7, "isSliding": false, - "noteOrder": 2176, - "time": 0.38406450586175805, + "noteOrder": 1756, + "time": 0.3097978887061695, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4281,18 +4281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 8, "isSliding": false, - "noteOrder": 2188, - "time": 0.3861864092090605, + "noteOrder": 1768, + "time": 0.311919792053472, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4304,18 +4304,2272 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 96, "indexInLine": 9, "isSliding": false, - "noteOrder": 2200, - "time": 0.38830831255636306, + "noteOrder": 1780, + "time": 0.31404169540077453, "position": { - "x": 6, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1792, + "time": 0.31616359874807703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 1804, + "time": 0.3182855020953796, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 1816, + "time": 0.3204074054426821, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 1828, + "time": 0.32252930878998465, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.32252930878998465, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1853, + "time": 0.3267731154845897, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1877, + "time": 0.33101692217919476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1901, + "time": 0.3352607288737998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1925, + "time": 0.3395045355684049, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1925, + "time": 0.3395045355684049, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1937, + "time": 0.3416264389157074, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1937, + "time": 0.3416264389157074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1949, + "time": 0.34374834226300993, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1961, + "time": 0.34587024561031243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1961, + "time": 0.34587024561031243, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1973, + "time": 0.347992148957615, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1985, + "time": 0.3501140523049175, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1985, + "time": 0.3501140523049175, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1997, + "time": 0.35223595565222005, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2009, + "time": 0.35435785899952255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2009, + "time": 0.35435785899952255, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2021, + "time": 0.3564797623468251, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2033, + "time": 0.3586016656941276, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2033, + "time": 0.3586016656941276, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2045, + "time": 0.36072356904143016, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2045, + "time": 0.36072356904143016, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2045, + "time": 0.36072356904143016, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2057, + "time": 0.36284547238873266, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2057, + "time": 0.36284547238873266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2069, + "time": 0.3649673757360352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2069, + "time": 0.3649673757360352, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2069, + "time": 0.3649673757360352, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2081, + "time": 0.3670892790833377, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2081, + "time": 0.3670892790833377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3692111824306403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3692111824306403, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3692111824306403, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2105, + "time": 0.37133308577794283, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2105, + "time": 0.37133308577794283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2117, + "time": 0.3734549891252454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2117, + "time": 0.3734549891252454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2129, + "time": 0.3755768924725479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2141, + "time": 0.37769879581985044, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2153, + "time": 0.37982069916715294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2165, + "time": 0.3819426025144555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2177, + "time": 0.384064505861758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2189, + "time": 0.38618640920906055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2201, + "time": 0.38830831255636306, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3904302159036656, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3904302159036656, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2237, + "time": 0.39467402259827067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2262, + "time": 0.3989178292928757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2286, + "time": 0.4031616359874808, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2310, + "time": 0.40740544268208584, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2310, + "time": 0.40740544268208584, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2322, + "time": 0.40952734602938834, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2322, + "time": 0.40952734602938834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2334, + "time": 0.4116492493766909, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2346, + "time": 0.4137711527239934, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2346, + "time": 0.4137711527239934, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2358, + "time": 0.41589305607129595, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2370, + "time": 0.41801495941859845, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2370, + "time": 0.41801495941859845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2382, + "time": 0.420136862765901, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2394, + "time": 0.4222587661132035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2394, + "time": 0.4222587661132035, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.42438066946050607, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2430, + "time": 0.4286244761551111, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2454, + "time": 0.4328682828497162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2478, + "time": 0.43711208954432124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2502, + "time": 0.44135589623892635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2502, + "time": 0.44135589623892635, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2526, + "time": 0.4455997029335314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2550, + "time": 0.44984350962813646, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2574, + "time": 0.4540873163227415, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4583311230173466, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4583311230173466, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2622, + "time": 0.46257492971195163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2646, + "time": 0.4668187364065567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2671, + "time": 0.47106254310116175, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2695, + "time": 0.4753063497957668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2695, + "time": 0.4753063497957668, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2719, + "time": 0.47955015649037186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2743, + "time": 0.4837939631849769, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2767, + "time": 0.488037769879582, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2791, + "time": 0.49228157657418703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2815, + "time": 0.4965253832687921, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2863, + "time": 0.5050129966580021, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2887, + "time": 0.5092568033526074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2911, + "time": 0.5135006100472124, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2959, + "time": 0.5219882234364225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2983, + "time": 0.5262320301310275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3031, + "time": 0.5347196435202376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3031, + "time": 0.5347196435202376, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3080, + "time": 0.5432072569094477, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3080, + "time": 0.5432072569094477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3092, + "time": 0.5453291602567503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3092, + "time": 0.5453291602567503, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4332,13 +6586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 10, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2212, - "time": 0.3904302159036656, + "noteOrder": 3104, + "time": 0.5474510636040528, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4350,18 +6604,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2212, - "time": 0.3904302159036656, + "noteOrder": 3116, + "time": 0.5495729669513554, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4378,11 +6632,103 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3116, + "time": 0.5495729669513554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 2237, - "time": 0.39467402259827067, + "noteOrder": 3128, + "time": 0.5516948702986578, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3140, + "time": 0.5538167736459604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3140, + "time": 0.5538167736459604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3152, + "time": 0.5559386769932629, "position": { "x": 7, "y": 0 @@ -4401,11 +6747,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 156, "indexInLine": 2, "isSliding": false, - "noteOrder": 2261, - "time": 0.39891782929287567, + "noteOrder": 3164, + "time": 0.5580605803405655, "position": { "x": 7, "y": 0 @@ -4424,11 +6770,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 156, "indexInLine": 3, "isSliding": false, - "noteOrder": 2285, - "time": 0.4031616359874808, + "noteOrder": 3164, + "time": 0.5580605803405655, "position": { "x": 6, "y": 0 @@ -4447,13 +6793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 4, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2309, - "time": 0.40740544268208584, + "noteOrder": 3633, + "time": 0.6408148108853642, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4470,13 +6816,36 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.40740544268208584, + "noteOrder": 3681, + "time": 0.6493024242745743, "position": { - "x": 2, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3705, + "time": 0.6535462309691794, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4493,11 +6862,80 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3717, + "time": 0.6556681343164819, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3717, + "time": 0.6556681343164819, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3729, + "time": 0.6577900376637844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2333, - "time": 0.41164924937669095, + "noteOrder": 3741, + "time": 0.6599119410110869, "position": { "x": 7, "y": 0 @@ -4511,18 +6949,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3741, + "time": 0.6599119410110869, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3849, + "time": 0.6790090711368097, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2357, - "time": 0.41589305607129595, + "noteOrder": 3861, + "time": 0.6811309744841123, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4539,13 +7023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2381, - "time": 0.420136862765901, + "noteOrder": 3861, + "time": 0.6811309744841123, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4557,18 +7041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2405, - "time": 0.4243806694605061, + "noteOrder": 3873, + "time": 0.6832528778314148, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4580,18 +7064,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2429, - "time": 0.4286244761551111, + "noteOrder": 3885, + "time": 0.6853747811787173, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4603,18 +7087,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2453, - "time": 0.43286828284971623, + "noteOrder": 3885, + "time": 0.6853747811787173, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4626,18 +7110,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2477, - "time": 0.4371120895443213, + "noteOrder": 3898, + "time": 0.6874966845260199, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4654,13 +7138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 4, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2501, - "time": 0.4413558962389263, + "noteOrder": 3910, + "time": 0.6896185878733224, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4677,13 +7161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2501, - "time": 0.4413558962389263, + "noteOrder": 3910, + "time": 0.6896185878733224, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4695,16 +7179,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 2525, - "time": 0.4455997029335314, + "noteOrder": 3922, + "time": 0.6917404912206249, "position": { "x": 7, "y": 0 @@ -4723,11 +7207,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 199, "indexInLine": 2, "isSliding": false, - "noteOrder": 2549, - "time": 0.44984350962813646, + "noteOrder": 3934, + "time": 0.6938623945679274, "position": { "x": 7, "y": 0 @@ -4746,11 +7230,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 199, "indexInLine": 3, "isSliding": false, - "noteOrder": 2573, - "time": 0.4540873163227415, + "noteOrder": 3934, + "time": 0.6938623945679274, "position": { "x": 6, "y": 0 @@ -4769,13 +7253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 4, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2597, - "time": 0.4583311230173466, + "noteOrder": 4042, + "time": 0.7129595246936502, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4787,18 +7271,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2597, - "time": 0.4583311230173466, + "noteOrder": 4054, + "time": 0.7150814280409528, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4815,13 +7299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2621, - "time": 0.46257492971195163, + "noteOrder": 4066, + "time": 0.7172033313882552, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4838,13 +7322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 2, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2645, - "time": 0.4668187364065567, + "noteOrder": 4078, + "time": 0.7193252347355578, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4861,13 +7345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 3, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2669, - "time": 0.47106254310116175, + "noteOrder": 4090, + "time": 0.7214471380828603, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4884,11 +7368,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 4, + "lineGroupId": 204, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2693, - "time": 0.4753063497957668, + "noteOrder": 4102, + "time": 0.7235690414301629, "position": { "x": 6, "y": 0 @@ -4907,13 +7391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2693, - "time": 0.4753063497957668, + "noteOrder": 4114, + "time": 0.7256909447774653, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4925,18 +7409,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2718, - "time": 0.47955015649037186, + "noteOrder": 4126, + "time": 0.7278128481247679, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4948,18 +7432,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 2, + "lineGroupId": 204, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2742, - "time": 0.4837939631849769, + "noteOrder": 4138, + "time": 0.7299347514720704, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4971,18 +7455,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 3, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2766, - "time": 0.48803776987958203, + "noteOrder": 4138, + "time": 0.7299347514720704, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4999,13 +7483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2790, - "time": 0.4922815765741871, + "noteOrder": 4162, + "time": 0.7341785581666754, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5022,13 +7506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2814, - "time": 0.4965253832687921, + "noteOrder": 4186, + "time": 0.7384223648612805, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5045,11 +7529,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 2, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2862, - "time": 0.5050129966580023, + "noteOrder": 4210, + "time": 0.7426661715558857, "position": { "x": 6, "y": 0 @@ -5068,13 +7552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2886, - "time": 0.5092568033526074, + "noteOrder": 4234, + "time": 0.7469099782504908, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5086,18 +7570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 2910, - "time": 0.5135006100472124, + "noteOrder": 4234, + "time": 0.7469099782504908, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5114,13 +7598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 213, "indexInLine": 2, "isSliding": false, - "noteOrder": 2958, - "time": 0.5219882234364225, + "noteOrder": 4246, + "time": 0.7490318815977932, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5137,13 +7621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2982, - "time": 0.5262320301310275, + "noteOrder": 4246, + "time": 0.7490318815977932, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5160,13 +7644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 3030, - "time": 0.5347196435202377, + "noteOrder": 4258, + "time": 0.7511537849450958, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5178,16 +7662,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3030, - "time": 0.5347196435202377, + "noteOrder": 4270, + "time": 0.7532756882923982, "position": { "x": 7, "y": 0 @@ -5206,11 +7690,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3078, - "time": 0.5432072569094478, + "noteOrder": 4270, + "time": 0.7532756882923982, "position": { "x": 5, "y": 0 @@ -5229,13 +7713,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3078, - "time": 0.5432072569094478, + "noteOrder": 4282, + "time": 0.7553975916397009, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5252,13 +7736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3102, - "time": 0.5474510636040528, + "noteOrder": 4294, + "time": 0.7575194949870033, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5270,18 +7754,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3126, - "time": 0.5516948702986579, + "noteOrder": 4294, + "time": 0.7575194949870033, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5298,11 +7782,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3150, - "time": 0.5559386769932629, + "noteOrder": 4307, + "time": 0.7596413983343059, "position": { "x": 7, "y": 0 @@ -5321,13 +7805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3631, - "time": 0.6408148108853642, + "noteOrder": 4319, + "time": 0.7617633016816083, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5344,11 +7828,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3679, - "time": 0.6493024242745743, + "noteOrder": 4319, + "time": 0.7617633016816083, "position": { "x": 5, "y": 0 @@ -5367,13 +7851,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3703, - "time": 0.6535462309691794, + "noteOrder": 4331, + "time": 0.763885205028911, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5390,13 +7874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3728, - "time": 0.6577900376637845, + "noteOrder": 4343, + "time": 0.7660071083762134, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5408,16 +7892,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3848, - "time": 0.6790090711368097, + "noteOrder": 4343, + "time": 0.7660071083762134, "position": { "x": 4, "y": 0 @@ -5436,13 +7920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3872, - "time": 0.6832528778314149, + "noteOrder": 4355, + "time": 0.768129011723516, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5454,18 +7938,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3896, - "time": 0.6874966845260198, + "noteOrder": 4355, + "time": 0.768129011723516, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5482,13 +7966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3920, - "time": 0.6917404912206249, + "noteOrder": 4355, + "time": 0.768129011723516, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5505,13 +7989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4040, - "time": 0.7129595246936503, + "noteOrder": 4367, + "time": 0.7702509150708184, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5523,18 +8007,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4052, - "time": 0.7150814280409528, + "noteOrder": 4367, + "time": 0.7702509150708184, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5546,18 +8030,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4064, - "time": 0.7172033313882552, + "noteOrder": 4379, + "time": 0.7723728184181211, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5569,18 +8053,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 3, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4076, - "time": 0.7193252347355579, + "noteOrder": 4379, + "time": 0.7723728184181211, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5592,18 +8076,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 4, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4088, - "time": 0.7214471380828603, + "noteOrder": 4379, + "time": 0.7723728184181211, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5620,13 +8104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 5, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4100, - "time": 0.7235690414301629, + "noteOrder": 4391, + "time": 0.7744947217654236, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5643,13 +8127,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 6, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4112, - "time": 0.7256909447774654, + "noteOrder": 4391, + "time": 0.7744947217654236, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5666,13 +8150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 7, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4124, - "time": 0.727812848124768, + "noteOrder": 4403, + "time": 0.7766166251127261, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5689,11 +8173,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 8, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4136, - "time": 0.7299347514720704, + "noteOrder": 4403, + "time": 0.7766166251127261, "position": { "x": 5, "y": 0 @@ -5712,13 +8196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4136, - "time": 0.7299347514720704, + "noteOrder": 4403, + "time": 0.7766166251127261, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5735,13 +8219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4160, - "time": 0.7341785581666755, + "noteOrder": 4415, + "time": 0.7787385284600286, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5758,13 +8242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 2, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4184, - "time": 0.7384223648612807, + "noteOrder": 4415, + "time": 0.7787385284600286, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5781,13 +8265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 3, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4209, - "time": 0.7426661715558855, + "noteOrder": 4427, + "time": 0.7808604318073312, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5804,13 +8288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 4, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4233, - "time": 0.7469099782504907, + "noteOrder": 4427, + "time": 0.7808604318073312, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5827,13 +8311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4233, - "time": 0.7469099782504907, + "noteOrder": 4439, + "time": 0.7829823351546337, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5845,18 +8329,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4257, - "time": 0.7511537849450958, + "noteOrder": 4451, + "time": 0.7851042385019362, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5873,13 +8357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4281, - "time": 0.7553975916397009, + "noteOrder": 4463, + "time": 0.7872261418492387, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5891,18 +8375,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4305, - "time": 0.7596413983343059, + "noteOrder": 4475, + "time": 0.7893480451965413, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5919,13 +8403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4329, - "time": 0.763885205028911, + "noteOrder": 4487, + "time": 0.7914699485438438, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5937,18 +8421,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4353, - "time": 0.7681290117235161, + "noteOrder": 4499, + "time": 0.7935918518911463, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5965,13 +8449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4377, - "time": 0.772372818418121, + "noteOrder": 4511, + "time": 0.7957137552384488, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5983,18 +8467,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4401, - "time": 0.7766166251127261, + "noteOrder": 4523, + "time": 0.7978356585857515, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6011,13 +8495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 3, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4437, - "time": 0.7829823351546337, + "noteOrder": 4523, + "time": 0.7978356585857515, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6029,18 +8513,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 4, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4449, - "time": 0.7851042385019362, + "noteOrder": 4547, + "time": 0.8020794652803565, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6052,18 +8536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 5, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4461, - "time": 0.7872261418492388, + "noteOrder": 4571, + "time": 0.8063232719749616, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6075,18 +8559,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 6, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4473, - "time": 0.7893480451965413, + "noteOrder": 4595, + "time": 0.8105670786695666, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6098,18 +8582,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 7, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4485, - "time": 0.7914699485438438, + "noteOrder": 4619, + "time": 0.8148108853641717, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6121,18 +8605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 8, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4497, - "time": 0.7935918518911464, + "noteOrder": 4619, + "time": 0.8148108853641717, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6149,13 +8633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 9, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4509, - "time": 0.7957137552384489, + "noteOrder": 4631, + "time": 0.8169327887114742, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -6172,13 +8656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 10, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4521, - "time": 0.7978356585857513, + "noteOrder": 4631, + "time": 0.8169327887114742, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6195,13 +8679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.7978356585857513, + "noteOrder": 4643, + "time": 0.8190546920587767, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6218,11 +8702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4545, - "time": 0.8020794652803565, + "noteOrder": 4655, + "time": 0.8211765954060793, "position": { "x": 3, "y": 0 @@ -6241,13 +8725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 2, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4569, - "time": 0.8063232719749616, + "noteOrder": 4655, + "time": 0.8211765954060793, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6264,13 +8748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 3, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4593, - "time": 0.8105670786695667, + "noteOrder": 4667, + "time": 0.8232984987533818, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -6282,18 +8766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 4, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4617, - "time": 0.8148108853641717, + "noteOrder": 4679, + "time": 0.8254204021006843, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6305,18 +8789,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4617, - "time": 0.8148108853641717, + "noteOrder": 4679, + "time": 0.8254204021006843, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -6333,11 +8817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4641, - "time": 0.8190546920587768, + "noteOrder": 4691, + "time": 0.8275423054479868, "position": { "x": 3, "y": 0 @@ -6356,13 +8840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4665, - "time": 0.8232984987533819, + "noteOrder": 4703, + "time": 0.8296642087952895, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6374,18 +8858,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4689, - "time": 0.8275423054479868, + "noteOrder": 4703, + "time": 0.8296642087952895, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6403,9 +8887,9 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.8317861121425919, "position": { "x": 8, @@ -6426,10 +8910,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4738, - "time": 0.836029918837197, + "noteOrder": 4740, + "time": 0.8360299188371969, "position": { "x": 7, "y": 0 @@ -6449,9 +8933,9 @@ }, { "lineGroupId": 233, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.840273725531802, "position": { "x": 7, @@ -6472,10 +8956,10 @@ }, { "lineGroupId": 233, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4786, - "time": 0.8445175322264071, + "noteOrder": 4788, + "time": 0.844517532226407, "position": { "x": 6, "y": 0 @@ -6495,10 +8979,10 @@ }, { "lineGroupId": 233, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4810, - "time": 0.8487613389210122, + "noteOrder": 4812, + "time": 0.8487613389210121, "position": { "x": 4, "y": 0 @@ -6518,10 +9002,10 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4810, - "time": 0.8487613389210122, + "noteOrder": 4812, + "time": 0.8487613389210121, "position": { "x": 2, "y": 0 @@ -6541,10 +9025,10 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4834, - "time": 0.8530051456156172, + "noteOrder": 4836, + "time": 0.8530051456156171, "position": { "x": 3, "y": 0 @@ -6564,9 +9048,9 @@ }, { "lineGroupId": 237, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.8572489523102222, "position": { "x": 3, @@ -6587,10 +9071,10 @@ }, { "lineGroupId": 237, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4882, - "time": 0.8614927590048274, + "noteOrder": 4884, + "time": 0.8614927590048272, "position": { "x": 4, "y": 0 @@ -6610,10 +9094,10 @@ }, { "lineGroupId": 237, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4906, - "time": 0.8657365656994325, + "noteOrder": 4908, + "time": 0.8657365656994324, "position": { "x": 6, "y": 0 @@ -6633,10 +9117,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4906, - "time": 0.8657365656994325, + "noteOrder": 4908, + "time": 0.8657365656994324, "position": { "x": 8, "y": 0 @@ -6656,10 +9140,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4930, - "time": 0.8699803723940375, + "noteOrder": 4932, + "time": 0.8699803723940374, "position": { "x": 7, "y": 0 @@ -6679,10 +9163,10 @@ }, { "lineGroupId": 241, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4954, - "time": 0.8742241790886426, + "noteOrder": 4956, + "time": 0.8742241790886425, "position": { "x": 7, "y": 0 @@ -6702,9 +9186,9 @@ }, { "lineGroupId": 241, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4978, + "noteOrder": 4980, "time": 0.8784679857832476, "position": { "x": 6, @@ -6725,10 +9209,10 @@ }, { "lineGroupId": 241, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5002, - "time": 0.8827117924778526, + "noteOrder": 5004, + "time": 0.8827117924778527, "position": { "x": 4, "y": 0 @@ -6748,10 +9232,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5002, - "time": 0.8827117924778526, + "noteOrder": 5004, + "time": 0.8827117924778527, "position": { "x": 2, "y": 0 @@ -6771,9 +9255,9 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5026, + "noteOrder": 5028, "time": 0.8869555991724577, "position": { "x": 3, @@ -6794,9 +9278,9 @@ }, { "lineGroupId": 245, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8911994058670628, "position": { "x": 4, @@ -6817,9 +9301,9 @@ }, { "lineGroupId": 245, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5074, + "noteOrder": 5076, "time": 0.8954432125616678, "position": { "x": 5, @@ -6840,9 +9324,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.8996870192562729, "position": { "x": 7, @@ -6863,10 +9347,10 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5122, - "time": 0.903930825950878, + "noteOrder": 5125, + "time": 0.9039308259508779, "position": { "x": 7, "y": 0 @@ -6886,9 +9370,9 @@ }, { "lineGroupId": 250, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5170, + "noteOrder": 5173, "time": 0.912418439340088, "position": { "x": 4, @@ -6909,9 +9393,9 @@ }, { "lineGroupId": 258, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5195, + "noteOrder": 5197, "time": 0.9166622460346932, "position": { "x": 3, @@ -6932,10 +9416,10 @@ }, { "lineGroupId": 258, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5219, - "time": 0.9209060527292983, + "noteOrder": 5221, + "time": 0.9209060527292982, "position": { "x": 3, "y": 0 @@ -6955,10 +9439,10 @@ }, { "lineGroupId": 258, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5267, - "time": 0.9293936661185084, + "noteOrder": 5269, + "time": 0.9293936661185083, "position": { "x": 6, "y": 0 @@ -6978,9 +9462,9 @@ }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5291, + "noteOrder": 5293, "time": 0.9336374728131134, "position": { "x": 7, @@ -7001,9 +9485,9 @@ }, { "lineGroupId": 265, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5339, + "noteOrder": 5341, "time": 0.9421250862023235, "position": { "x": 5, @@ -7024,9 +9508,9 @@ }, { "lineGroupId": 270, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5339, + "noteOrder": 5341, "time": 0.9421250862023235, "position": { "x": 3, @@ -7047,9 +9531,9 @@ }, { "lineGroupId": 270, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5387, + "noteOrder": 5389, "time": 0.9506126995915336, "position": { "x": 5, @@ -7070,9 +9554,9 @@ }, { "lineGroupId": 274, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5387, + "noteOrder": 5389, "time": 0.9506126995915336, "position": { "x": 7, @@ -7091,12 +9575,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 274, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5401, + "time": 0.9527346029388362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5401, + "time": 0.9527346029388362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5413, + "time": 0.9548565062861386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 276, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5411, - "time": 0.9548565062861387, + "noteOrder": 5425, + "time": 0.9569784096334413, "position": { "x": 3, "y": 0 @@ -7114,11 +9667,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 276, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5425, + "time": 0.9569784096334413, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 277, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5435, + "noteOrder": 5437, "time": 0.9591003129807437, "position": { "x": 7, @@ -7137,12 +9713,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 277, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5449, + "time": 0.9612222163280463, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 277, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5449, + "time": 0.9612222163280463, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5461, + "time": 0.9633441196753487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 280, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5459, - "time": 0.9633441196753488, + "noteOrder": 5473, + "time": 0.9654660230226514, "position": { "x": 3, "y": 0 @@ -7159,6 +9804,29 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5473, + "time": 0.9654660230226514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Go Down/346_difficulty_1b.json b/tracks/Go Down/346_difficulty_1b.json index eb87ae34..5f21aee2 100644 --- a/tracks/Go Down/346_difficulty_1b.json +++ b/tracks/Go Down/346_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.016975226778420244, + "time": 0.01697522677842024, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 192, - "time": 0.03395045355684049, + "time": 0.03395045355684048, "position": { "x": 7, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 216, - "time": 0.038194260251445546, + "noteOrder": 217, + "time": 0.03819426025144555, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.04243806694605061, "position": { "x": 7, @@ -114,7 +114,7 @@ }, { "noteOrder": 265, - "time": 0.046681873640655666, + "time": 0.04668187364065567, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 385, - "time": 0.06790090711368098, + "time": 0.06790090711368096, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 409, - "time": 0.07214471380828603, + "time": 0.07214471380828602, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 433, - "time": 0.07638852050289109, + "time": 0.0763885205028911, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 529, - "time": 0.09336374728131133, + "time": 0.09336374728131135, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 601, - "time": 0.10609516736512653, + "time": 0.10609516736512652, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 625, - "time": 0.11033897405973157, + "noteOrder": 626, + "time": 0.11033897405973159, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 649, + "noteOrder": 650, "time": 0.11458278075433664, "position": { "x": 4, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 673, + "noteOrder": 674, "time": 0.1188265874489417, "position": { "x": 6, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.12731420083815184, "position": { "x": 4, @@ -394,7 +394,7 @@ }, { "noteOrder": 770, - "time": 0.13580181422736196, + "time": 0.13580181422736193, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 794, - "time": 0.140045620921967, + "time": 0.14004562092196698, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 818, - "time": 0.14428942761657207, + "time": 0.14428942761657204, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 842, - "time": 0.14853323431117713, + "time": 0.1485332343111771, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 866, - "time": 0.15277704100578218, + "time": 0.1527770410057822, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 914, - "time": 0.1612646543949923, + "time": 0.16126465439499232, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1010, - "time": 0.17823988117341258, + "time": 0.17823988117341255, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1035, "time": 0.1824836878680176, "position": { "x": 3, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1058, - "time": 0.18672749456262266, + "noteOrder": 1059, + "time": 0.1867274945626227, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1107, "time": 0.1952151079518328, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.20370272134104292, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.20794652803564798, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1202, - "time": 0.21219033473025306, + "noteOrder": 1203, + "time": 0.21219033473025303, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.21643414142485812, + "noteOrder": 1227, + "time": 0.2164341414248581, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1876, - "time": 0.3310169221791947, + "noteOrder": 1877, + "time": 0.33101692217919476, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1924, + "noteOrder": 1925, "time": 0.3395045355684049, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1972, + "noteOrder": 1973, "time": 0.347992148957615, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2261, - "time": 0.39891782929287567, + "noteOrder": 2262, + "time": 0.3989178292928757, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2309, + "noteOrder": 2310, "time": 0.40740544268208584, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.41589305607129595, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2453, - "time": 0.43286828284971623, + "noteOrder": 2454, + "time": 0.4328682828497162, "position": { "x": 2, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2501, - "time": 0.4413558962389263, + "noteOrder": 2502, + "time": 0.44135589623892635, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.44984350962813646, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2645, + "noteOrder": 2646, "time": 0.4668187364065567, "position": { "x": 8, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2693, + "noteOrder": 2695, "time": 0.4753063497957668, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2742, + "noteOrder": 2743, "time": 0.4837939631849769, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2934, + "noteOrder": 2935, "time": 0.5177444167418174, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3126, - "time": 0.5516948702986579, + "noteOrder": 3128, + "time": 0.5516948702986578, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3223, - "time": 0.5686700970770782, + "noteOrder": 3224, + "time": 0.568670097077078, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3319, - "time": 0.5856453238554984, + "noteOrder": 3320, + "time": 0.5856453238554983, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3415, - "time": 0.6026205506339187, + "noteOrder": 3416, + "time": 0.6026205506339185, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3511, - "time": 0.6195957774123388, + "noteOrder": 3513, + "time": 0.619595777412339, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3607, - "time": 0.6365710041907591, + "noteOrder": 3609, + "time": 0.6365710041907592, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.6450586175799692, + "noteOrder": 3657, + "time": 0.6450586175799693, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3679, + "noteOrder": 3681, "time": 0.6493024242745743, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3703, + "noteOrder": 3705, "time": 0.6535462309691794, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3728, - "time": 0.6577900376637845, + "noteOrder": 3729, + "time": 0.6577900376637844, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.6620338443583894, + "noteOrder": 3753, + "time": 0.6620338443583895, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3801, "time": 0.6705214577475996, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3848, + "noteOrder": 3849, "time": 0.6790090711368097, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3872, - "time": 0.6832528778314149, + "noteOrder": 3873, + "time": 0.6832528778314148, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3896, - "time": 0.6874966845260198, + "noteOrder": 3898, + "time": 0.6874966845260199, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3920, + "noteOrder": 3922, "time": 0.6917404912206249, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3992, + "noteOrder": 3994, "time": 0.7044719113044401, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3992, + "noteOrder": 3994, "time": 0.7044719113044401, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4088, + "noteOrder": 4090, "time": 0.7214471380828603, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4184, - "time": 0.7384223648612807, + "noteOrder": 4186, + "time": 0.7384223648612805, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4233, - "time": 0.7469099782504907, + "noteOrder": 4234, + "time": 0.7469099782504908, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4281, + "noteOrder": 4282, "time": 0.7553975916397009, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4377, - "time": 0.772372818418121, + "noteOrder": 4379, + "time": 0.7723728184181211, "position": { "x": 2, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4425, + "noteOrder": 4427, "time": 0.7808604318073312, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4473, + "noteOrder": 4475, "time": 0.7893480451965413, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.8063232719749616, "position": { "x": 8, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4617, + "noteOrder": 4619, "time": 0.8148108853641717, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4665, - "time": 0.8232984987533819, + "noteOrder": 4667, + "time": 0.8232984987533818, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.8572489523102222, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8911994058670628, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5146, + "noteOrder": 5149, "time": 0.908174632645483, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5243, + "noteOrder": 5245, "time": 0.9251498594239033, "position": { "x": 3, @@ -1616,12 +1616,702 @@ "lineNodes": [ { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.2885788552331441, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1660, + "time": 0.29282266192774914, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1660, + "time": 0.29282266192774914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1684, + "time": 0.2970664686223542, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1708, + "time": 0.30131027531695925, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1708, + "time": 0.30131027531695925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.3055540820115644, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1756, + "time": 0.3097978887061695, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1756, + "time": 0.3097978887061695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1780, + "time": 0.31404169540077453, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.3182855020953796, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1804, + "time": 0.3182855020953796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.32252930878998465, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1973, + "time": 0.347992148957615, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2021, + "time": 0.3564797623468251, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2045, + "time": 0.36072356904143016, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2045, + "time": 0.36072356904143016, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2069, + "time": 0.3649673757360352, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3692111824306403, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3692111824306403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2117, + "time": 0.3734549891252454, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.37769879581985044, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2141, + "time": 0.37769879581985044, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2165, + "time": 0.3819426025144555, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2189, + "time": 0.38618640920906055, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2189, + "time": 0.38618640920906055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3904302159036656, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2358, + "time": 0.41589305607129595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.42438066946050607, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2550, + "time": 0.44984350962813646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.28857885523314414, + "noteOrder": 2598, + "time": 0.4583311230173466, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -1638,13 +2328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.29706646862235425, + "noteOrder": 2743, + "time": 0.4837939631849769, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -1656,16 +2346,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1732, - "time": 0.30555408201156437, + "noteOrder": 2791, + "time": 0.49228157657418703, "position": { "x": 2, "y": 0 @@ -1684,11 +2374,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1780, - "time": 0.31404169540077453, + "noteOrder": 2815, + "time": 0.4965253832687921, "position": { "x": 2, "y": 0 @@ -1702,18 +2392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1828, - "time": 0.3225293087899846, + "noteOrder": 2815, + "time": 0.4965253832687921, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -1730,13 +2420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 1972, - "time": 0.347992148957615, + "noteOrder": 2839, + "time": 0.5007691899633971, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -1748,18 +2438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2020, - "time": 0.35647976234682516, + "noteOrder": 2863, + "time": 0.5050129966580021, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -1776,13 +2466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2068, - "time": 0.3649673757360352, + "noteOrder": 2863, + "time": 0.5050129966580021, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -1794,18 +2484,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2116, - "time": 0.37345498912524533, + "noteOrder": 2887, + "time": 0.5092568033526074, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -1817,18 +2507,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2164, - "time": 0.3819426025144555, + "noteOrder": 2935, + "time": 0.5177444167418174, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -1845,11 +2535,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2212, - "time": 0.3904302159036656, + "noteOrder": 2983, + "time": 0.5262320301310275, "position": { "x": 8, "y": 0 @@ -1868,13 +2558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2357, - "time": 0.41589305607129595, + "noteOrder": 3007, + "time": 0.5304758368256326, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -1891,13 +2581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2405, - "time": 0.4243806694605061, + "noteOrder": 3007, + "time": 0.5304758368256326, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1914,13 +2604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 2549, - "time": 0.44984350962813646, + "noteOrder": 3031, + "time": 0.5347196435202376, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -1932,18 +2622,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2597, - "time": 0.4583311230173466, + "noteOrder": 3055, + "time": 0.5389634502148427, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -1960,13 +2650,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2742, - "time": 0.4837939631849769, + "noteOrder": 3055, + "time": 0.5389634502148427, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1983,13 +2673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2790, - "time": 0.4922815765741871, + "noteOrder": 3080, + "time": 0.5432072569094477, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2001,18 +2691,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2838, - "time": 0.5007691899633971, + "noteOrder": 3128, + "time": 0.5516948702986578, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2029,13 +2719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2886, - "time": 0.5092568033526074, + "noteOrder": 4042, + "time": 0.7129595246936502, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2052,13 +2742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2934, - "time": 0.5177444167418174, + "noteOrder": 4090, + "time": 0.7214471380828603, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2075,11 +2765,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2982, - "time": 0.5262320301310275, + "noteOrder": 4138, + "time": 0.7299347514720704, "position": { "x": 8, "y": 0 @@ -2098,13 +2788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3030, - "time": 0.5347196435202377, + "noteOrder": 4282, + "time": 0.7553975916397009, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2116,18 +2806,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3078, - "time": 0.5432072569094478, + "noteOrder": 4331, + "time": 0.763885205028911, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2144,11 +2834,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3126, - "time": 0.5516948702986579, + "noteOrder": 4475, + "time": 0.7893480451965413, "position": { "x": 6, "y": 0 @@ -2167,11 +2857,34 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4523, + "time": 0.7978356585857515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4040, - "time": 0.7129595246936503, + "noteOrder": 4667, + "time": 0.8232984987533818, "position": { "x": 4, "y": 0 @@ -2190,13 +2903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 111, "indexInLine": 1, "isSliding": false, - "noteOrder": 4088, - "time": 0.7214471380828603, + "noteOrder": 4716, + "time": 0.8317861121425919, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2213,13 +2926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4136, - "time": 0.7299347514720704, + "noteOrder": 4740, + "time": 0.8360299188371969, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2231,18 +2944,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4740, + "time": 0.8360299188371969, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 4281, - "time": 0.7553975916397009, + "noteOrder": 4764, + "time": 0.840273725531802, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2259,13 +2995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4329, - "time": 0.763885205028911, + "noteOrder": 4788, + "time": 0.844517532226407, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2282,13 +3018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4473, - "time": 0.7893480451965413, + "noteOrder": 4788, + "time": 0.844517532226407, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2305,13 +3041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.7978356585857513, + "noteOrder": 4812, + "time": 0.8487613389210121, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2328,11 +3064,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4665, - "time": 0.8232984987533819, + "noteOrder": 4860, + "time": 0.8572489523102222, "position": { "x": 4, "y": 0 @@ -2351,13 +3087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, - "time": 0.8317861121425919, + "noteOrder": 4908, + "time": 0.8657365656994324, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2369,18 +3105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4762, - "time": 0.840273725531802, + "noteOrder": 4932, + "time": 0.8699803723940374, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2397,13 +3133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4810, - "time": 0.8487613389210122, + "noteOrder": 4932, + "time": 0.8699803723940374, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2415,18 +3151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 4858, - "time": 0.8572489523102222, + "noteOrder": 4956, + "time": 0.8742241790886425, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2443,11 +3179,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4906, - "time": 0.8657365656994325, + "noteOrder": 4980, + "time": 0.8784679857832476, "position": { "x": 8, "y": 0 @@ -2461,18 +3197,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4954, - "time": 0.8742241790886426, + "noteOrder": 4980, + "time": 0.8784679857832476, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2490,10 +3226,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5002, - "time": 0.8827117924778526, + "noteOrder": 5004, + "time": 0.8827117924778527, "position": { "x": 7, "y": 0 @@ -2513,9 +3249,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8911994058670628, "position": { "x": 6, diff --git a/tracks/Go Down/info.json b/tracks/Go Down/info.json index 13fcadd6..2cb4bdab 100644 --- a/tracks/Go Down/info.json +++ b/tracks/Go Down/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Go Down", - "SongLength": "122.435918", + "SongLength": "112.483265", "SongAuthorName": "KO3", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Golden Palms/359_difficulty_1a.json b/tracks/Golden Palms/359_difficulty_1a.json index f3afaaef..ff8848b2 100644 --- a/tracks/Golden Palms/359_difficulty_1a.json +++ b/tracks/Golden Palms/359_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.022729963300580087, + "time": 0.02272996330058009, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 264, - "time": 0.04167159938439683, + "time": 0.041671599384396824, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 432, - "time": 0.06818988990174026, + "time": 0.06818988990174027, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 528, - "time": 0.08334319876879366, + "time": 0.08334319876879365, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 552, - "time": 0.087131525985557, + "time": 0.08713152598555701, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.09470818041908369, + "noteOrder": 601, + "time": 0.0947081804190837, "position": { "x": 5, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.09849650763584705, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.10228483485261039, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.10607316206937374, "position": { "x": 7, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.10986148928613708, + "noteOrder": 697, + "time": 0.10986148928613709, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.11364981650290043, "position": { "x": 5, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.11743814371966378, "position": { "x": 4, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.12122647093642713, + "noteOrder": 769, + "time": 0.12122647093642715, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 793, "time": 0.12501479815319047, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12880312536995384, "position": { "x": 5, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.13259145258671717, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 864, - "time": 0.1363797798034805, + "noteOrder": 865, + "time": 0.13637977980348054, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 888, - "time": 0.14016810702024385, + "noteOrder": 889, + "time": 0.14016810702024388, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 937, "time": 0.14774476145377058, "position": { "x": 4, @@ -534,7 +534,7 @@ }, { "noteOrder": 1057, - "time": 0.16668639753758732, + "time": 0.1666863975375873, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1081, - "time": 0.17047472475435063, + "time": 0.17047472475435066, "position": { "x": 6, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1273, - "time": 0.20078134248845741, + "time": 0.20078134248845744, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.2689712323901977, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2841245412572511, "position": { "x": 5, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1849, - "time": 0.29170119569077774, + "noteOrder": 1850, + "time": 0.2917011956907778, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.29548952290754116, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.29927785012430447, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.3144311589913579, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.3523144311589913, + "noteOrder": 2234, + "time": 0.3523144311589914, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2281, - "time": 0.35989108559251803, + "noteOrder": 2282, + "time": 0.3598910855925181, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2353, - "time": 0.3712560672428081, + "noteOrder": 2354, + "time": 0.37125606724280813, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2377, + "noteOrder": 2378, "time": 0.37504439445957144, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2425, + "noteOrder": 2426, "time": 0.38262104889309817, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3864093761098615, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.3901977033266248, + "noteOrder": 2474, + "time": 0.39019770332662485, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.40156268497691483, + "noteOrder": 2546, + "time": 0.4015626849769149, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.4129276666272049, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.41671599384396824, + "noteOrder": 2642, + "time": 0.4167159938439683, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.4205043210607316, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.435657629927785, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2809, - "time": 0.44323428436131174, + "noteOrder": 2810, + "time": 0.4432342843613117, "position": { "x": 2, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2857, - "time": 0.45081093879483836, + "noteOrder": 2859, + "time": 0.4508109387948384, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3001, + "noteOrder": 3003, "time": 0.4735409020954185, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.48111755652894517, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.49248253817923526, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4962708653959986, + "noteOrder": 3147, + "time": 0.49627086539599863, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4962708653959986, + "noteOrder": 3147, + "time": 0.49627086539599863, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.5644607552977389, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3602, + "noteOrder": 3603, "time": 0.5682490825145022, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.5720374097312655, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3747, "time": 0.5909790458150823, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3771, "time": 0.5947673730318456, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3795, "time": 0.5985557002486089, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3818, + "noteOrder": 3819, "time": 0.6023440274653723, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3842, + "noteOrder": 3843, "time": 0.6061323546821357, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3866, - "time": 0.6099206818988989, + "noteOrder": 3867, + "time": 0.609920681898899, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3890, + "noteOrder": 3891, "time": 0.6137090091156624, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.6174973363324258, + "noteOrder": 3915, + "time": 0.6174973363324257, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.6250739907659524, "position": { "x": 5, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.6553806085000591, + "noteOrder": 4156, + "time": 0.6553806085000592, "position": { "x": 5, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7008405351012194, + "noteOrder": 4444, + "time": 0.7008405351012195, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.708417189534746, + "noteOrder": 4492, + "time": 0.7084171895347461, "position": { "x": 5, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.7159938439682728, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4586, - "time": 0.7235704984017994, + "noteOrder": 4588, + "time": 0.7235704984017995, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4610, - "time": 0.7273588256185628, + "noteOrder": 4612, + "time": 0.7273588256185629, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4634, - "time": 0.731147152835326, + "noteOrder": 4636, + "time": 0.7311471528353262, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7349354800520894, + "noteOrder": 4660, + "time": 0.7349354800520895, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4682, + "noteOrder": 4684, "time": 0.7387238072688529, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4802, - "time": 0.7576654433526695, + "noteOrder": 4804, + "time": 0.7576654433526696, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4826, + "noteOrder": 4828, "time": 0.761453770569433, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7652420977861963, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7690304250029596, + "noteOrder": 4876, + "time": 0.7690304250029597, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4996, "time": 0.7879720610867764, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7917603883035397, + "noteOrder": 5020, + "time": 0.7917603883035398, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5044, "time": 0.795548715520303, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5068, "time": 0.7993370427370664, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.8485852965549899, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.8523736237717532, + "noteOrder": 5405, + "time": 0.8523736237717533, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5427, - "time": 0.8561619509885166, + "noteOrder": 5429, + "time": 0.8561619509885167, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5451, + "noteOrder": 5453, "time": 0.85995027820528, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5475, + "noteOrder": 5477, "time": 0.8637386054220433, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5499, + "noteOrder": 5501, "time": 0.8675269326388066, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.87131525985557, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5549, "time": 0.8751035870723334, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5595, - "time": 0.88268024150586, + "noteOrder": 5597, + "time": 0.8826802415058601, "position": { "x": 5, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.8864685687226235, + "noteOrder": 5621, + "time": 0.8864685687226234, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5645, "time": 0.8902568959393867, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5667, + "noteOrder": 5669, "time": 0.8940452231561501, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5691, + "noteOrder": 5693, "time": 0.8978335503729135, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5715, - "time": 0.9016218775896767, + "noteOrder": 5717, + "time": 0.9016218775896768, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5739, - "time": 0.9054102048064401, + "noteOrder": 5741, + "time": 0.9054102048064402, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5763, + "noteOrder": 5765, "time": 0.9091985320232034, "position": { "x": 5, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5787, + "noteOrder": 5789, "time": 0.9129868592399668, "position": { "x": 5, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5811, + "noteOrder": 5813, "time": 0.9167751864567302, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5835, + "noteOrder": 5837, "time": 0.9205635136734935, "position": { "x": 5, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5931, - "time": 0.935716822540547, + "noteOrder": 5933, + "time": 0.9357168225405469, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6003, + "noteOrder": 6005, "time": 0.947081804190837, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6027, - "time": 0.9508701314076002, + "noteOrder": 6029, + "time": 0.9508701314076003, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6123, + "noteOrder": 6125, "time": 0.9660234402746537, "position": { "x": 5, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.9773884219249437, + "noteOrder": 6197, + "time": 0.9773884219249438, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6219, - "time": 0.981176749141707, + "noteOrder": 6222, + "time": 0.9811767491417072, "position": { "x": 5, "y": 0 @@ -2316,10 +2316,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.015153308867053392, + "time": 0.015153308867053393, "position": { "x": 7, "y": 0 @@ -2339,10 +2339,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.022729963300580087, + "time": 0.02272996330058009, "position": { "x": 7, "y": 0 @@ -2362,10 +2362,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.030306617734106783, + "time": 0.030306617734106787, "position": { "x": 3, "y": 0 @@ -2385,7 +2385,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.03788327216763348, @@ -2408,10 +2408,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.045459926601160175, + "time": 0.04545992660116018, "position": { "x": 6, "y": 0 @@ -2431,10 +2431,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.06061323546821357, + "time": 0.060613235468213573, "position": { "x": 6, "y": 0 @@ -2454,10 +2454,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.06061323546821357, + "time": 0.060613235468213573, "position": { "x": 4, "y": 0 @@ -2477,7 +2477,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 480, "time": 0.07576654433526696, @@ -2500,7 +2500,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.07576654433526696, @@ -2523,10 +2523,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.09091985320232035, + "noteOrder": 577, + "time": 0.09091985320232036, "position": { "x": 5, "y": 0 @@ -2546,10 +2546,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.09091985320232035, + "noteOrder": 577, + "time": 0.09091985320232036, "position": { "x": 3, "y": 0 @@ -2569,9 +2569,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10607316206937374, "position": { "x": 5, @@ -2592,9 +2592,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 912, + "noteOrder": 913, "time": 0.1439564342370072, "position": { "x": 6, @@ -2615,9 +2615,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 960, + "noteOrder": 961, "time": 0.15153308867053392, "position": { "x": 5, @@ -2638,7 +2638,7 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1009, "time": 0.15910974310406062, @@ -2661,9 +2661,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 960, + "noteOrder": 961, "time": 0.15153308867053392, "position": { "x": 3, @@ -2684,7 +2684,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1009, "time": 0.15910974310406062, @@ -2707,10 +2707,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1105, - "time": 0.174263051971114, + "time": 0.17426305197111402, "position": { "x": 4, "y": 0 @@ -2730,10 +2730,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1153, - "time": 0.1818397064046407, + "time": 0.18183970640464073, "position": { "x": 5, "y": 0 @@ -2753,10 +2753,10 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1201, - "time": 0.18941636083816737, + "time": 0.1894163608381674, "position": { "x": 4, "y": 0 @@ -2776,10 +2776,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1153, - "time": 0.1818397064046407, + "time": 0.18183970640464073, "position": { "x": 7, "y": 0 @@ -2799,10 +2799,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1201, - "time": 0.18941636083816737, + "time": 0.1894163608381674, "position": { "x": 6, "y": 0 @@ -2822,7 +2822,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, "time": 0.1969930152716941, @@ -2845,7 +2845,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1297, "time": 0.20456966970522078, @@ -2868,7 +2868,7 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1345, "time": 0.21214632413874748, @@ -2891,7 +2891,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1297, "time": 0.20456966970522078, @@ -2914,7 +2914,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1345, "time": 0.21214632413874748, @@ -2937,10 +2937,10 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1393, - "time": 0.21972297857227416, + "time": 0.21972297857227419, "position": { "x": 3, "y": 0 @@ -2960,7 +2960,7 @@ }, { "lineGroupId": 43, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1441, "time": 0.22729963300580086, @@ -2983,10 +2983,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1393, - "time": 0.21972297857227416, + "time": 0.21972297857227419, "position": { "x": 5, "y": 0 @@ -3006,7 +3006,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1441, "time": 0.22729963300580086, @@ -3029,7 +3029,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1489, "time": 0.23487628743932756, @@ -3050,9 +3050,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1501, + "time": 0.23677045104770925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1501, + "time": 0.23677045104770925, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1513, "time": 0.2386646146560909, @@ -3073,12 +3119,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1525, + "time": 0.24055877826447258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1525, + "time": 0.24055877826447258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1537, - "time": 0.24245294187285427, + "time": 0.2424529418728543, "position": { "x": 7, "y": 0 @@ -3098,7 +3190,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1585, "time": 0.25002959630638094, @@ -3121,7 +3213,7 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1633, "time": 0.25760625073990767, @@ -3144,10 +3236,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.272759559606961, + "noteOrder": 1730, + "time": 0.2727595596069611, "position": { "x": 5, "y": 0 @@ -3167,10 +3259,10 @@ }, { "lineGroupId": 52, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1777, - "time": 0.2803362140404877, + "noteOrder": 1778, + "time": 0.28033621404048775, "position": { "x": 7, "y": 0 @@ -3190,10 +3282,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1729, - "time": 0.272759559606961, + "noteOrder": 1730, + "time": 0.2727595596069611, "position": { "x": 3, "y": 0 @@ -3213,10 +3305,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1777, - "time": 0.2803362140404877, + "noteOrder": 1778, + "time": 0.28033621404048775, "position": { "x": 5, "y": 0 @@ -3236,9 +3328,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, + "noteOrder": 1826, "time": 0.2879128684740144, "position": { "x": 3, @@ -3259,9 +3351,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.30306617734106783, "position": { "x": 5, @@ -3282,9 +3374,9 @@ }, { "lineGroupId": 58, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3106428317745945, "position": { "x": 3, @@ -3305,9 +3397,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.30306617734106783, "position": { "x": 7, @@ -3328,9 +3420,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3106428317745945, "position": { "x": 5, @@ -3351,9 +3443,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.31821948620812124, "position": { "x": 5, @@ -3374,9 +3466,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.32200781342488455, "position": { "x": 5, @@ -3397,9 +3489,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.32200781342488455, "position": { "x": 5, @@ -3420,9 +3512,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3257961406416479, "position": { "x": 5, @@ -3443,9 +3535,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3257961406416479, "position": { "x": 5, @@ -3466,10 +3558,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2089, - "time": 0.3295844678584112, + "noteOrder": 2090, + "time": 0.3295844678584113, "position": { "x": 5, "y": 0 @@ -3489,10 +3581,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2089, - "time": 0.3295844678584112, + "noteOrder": 2090, + "time": 0.3295844678584113, "position": { "x": 5, "y": 0 @@ -3512,10 +3604,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.33337279507517464, + "noteOrder": 2114, + "time": 0.3333727950751746, "position": { "x": 5, "y": 0 @@ -3535,10 +3627,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.33337279507517464, + "noteOrder": 2114, + "time": 0.3333727950751746, "position": { "x": 4, "y": 0 @@ -3557,13 +3649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.33716112229193795, + "noteOrder": 2126, + "time": 0.33526695868355627, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3575,18 +3667,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.34094944950870126, + "noteOrder": 2126, + "time": 0.33526695868355627, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3603,11 +3695,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2185, - "time": 0.3447377767254647, + "noteOrder": 2138, + "time": 0.33716112229193795, "position": { "x": 6, "y": 0 @@ -3626,13 +3718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.348526103942228, + "noteOrder": 2150, + "time": 0.33905528590031964, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3644,18 +3736,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2257, - "time": 0.3561027583757547, + "noteOrder": 2150, + "time": 0.33905528590031964, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3667,18 +3759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2257, - "time": 0.3561027583757547, + "noteOrder": 2162, + "time": 0.3409494495087013, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3690,18 +3782,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, - "time": 0.3636794128092814, + "noteOrder": 2174, + "time": 0.34284361311708295, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3713,16 +3805,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.3636794128092814, + "noteOrder": 2174, + "time": 0.34284361311708295, "position": { "x": 3, "y": 0 @@ -3741,13 +3833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.3712560672428081, + "noteOrder": 2186, + "time": 0.34473777672546463, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3759,16 +3851,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.37883272167633475, + "noteOrder": 2198, + "time": 0.3466319403338463, "position": { "x": 6, "y": 0 @@ -3787,11 +3879,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2497, - "time": 0.3939860305433882, + "noteOrder": 2198, + "time": 0.3466319403338463, "position": { "x": 7, "y": 0 @@ -3805,18 +3897,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2521, - "time": 0.3977743577601515, + "noteOrder": 2210, + "time": 0.34852610394222805, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3828,18 +3920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2593, - "time": 0.40913933941044156, + "noteOrder": 2258, + "time": 0.3561027583757547, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3856,13 +3948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.42429264827749497, + "noteOrder": 2258, + "time": 0.3561027583757547, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3879,13 +3971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2713, - "time": 0.4280809754942583, + "noteOrder": 2306, + "time": 0.36367941280928145, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3897,16 +3989,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2737, - "time": 0.43186930271102164, + "noteOrder": 2306, + "time": 0.36367941280928145, "position": { "x": 3, "y": 0 @@ -3920,16 +4012,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2785, - "time": 0.4394459571445483, + "noteOrder": 2354, + "time": 0.37125606724280813, "position": { "x": 3, "y": 0 @@ -3948,13 +4040,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 2833, - "time": 0.44702261157807505, + "noteOrder": 2402, + "time": 0.3788327216763348, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3966,16 +4058,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2833, - "time": 0.44702261157807505, + "noteOrder": 2498, + "time": 0.3939860305433882, "position": { "x": 6, "y": 0 @@ -3994,13 +4086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2881, - "time": 0.4545992660116017, + "noteOrder": 2498, + "time": 0.3939860305433882, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4017,13 +4109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2881, - "time": 0.4545992660116017, + "noteOrder": 2498, + "time": 0.3939860305433882, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4040,11 +4132,34 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2905, - "time": 0.4583875932283651, + "noteOrder": 2510, + "time": 0.3958801941517699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2510, + "time": 0.3958801941517699, "position": { "x": 6, "y": 0 @@ -4058,18 +4173,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2929, - "time": 0.46217592044512845, + "noteOrder": 2522, + "time": 0.3977743577601515, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4086,11 +4201,80 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2953, - "time": 0.46596424766189176, + "noteOrder": 2522, + "time": 0.3977743577601515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2522, + "time": 0.3977743577601515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2534, + "time": 0.3996685213685332, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2534, + "time": 0.3996685213685332, "position": { "x": 6, "y": 0 @@ -4109,11 +4293,34 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2977, - "time": 0.4697525748786551, + "noteOrder": 2546, + "time": 0.4015626849769149, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2546, + "time": 0.4015626849769149, "position": { "x": 4, "y": 0 @@ -4127,16 +4334,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, - "time": 0.4773292293121818, + "noteOrder": 2594, + "time": 0.40913933941044156, "position": { "x": 4, "y": 0 @@ -4155,13 +4362,1554 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2690, + "time": 0.42429264827749497, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2690, + "time": 0.42429264827749497, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.42429264827749497, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2702, + "time": 0.42618681188587665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2702, + "time": 0.42618681188587665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2714, + "time": 0.42808097549425833, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2714, + "time": 0.42808097549425833, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2714, + "time": 0.42808097549425833, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2726, + "time": 0.42997513910264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2726, + "time": 0.42997513910264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2738, + "time": 0.43186930271102164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2738, + "time": 0.43186930271102164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2738, + "time": 0.43186930271102164, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2750, + "time": 0.4337634663194033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2750, + "time": 0.4337634663194033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2762, + "time": 0.435657629927785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2762, + "time": 0.435657629927785, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2786, + "time": 0.43944595714454837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2835, + "time": 0.44702261157807505, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2835, + "time": 0.44702261157807505, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4545992660116017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4545992660116017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2895, + "time": 0.4564934296199834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2895, + "time": 0.4564934296199834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4583875932283651, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2919, + "time": 0.46028175683674677, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2919, + "time": 0.46028175683674677, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2931, + "time": 0.46217592044512845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2943, + "time": 0.46407008405351013, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2943, + "time": 0.46407008405351013, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2955, + "time": 0.46596424766189176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2967, + "time": 0.46785841127027344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2967, + "time": 0.46785841127027344, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4697525748786551, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4773292293121818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4773292293121818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4849058837457086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.4849058837457086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3087, + "time": 0.48680004735409027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3087, + "time": 0.48680004735409027, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3099, + "time": 0.4886942109624719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3111, + "time": 0.4905883745708536, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3111, + "time": 0.4905883745708536, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.5000591926127619, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3195, + "time": 0.5038475198295252, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3195, + "time": 0.5038475198295252, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.5076358470462886, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.5076358470462886, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3243, + "time": 0.511424174263052, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.511424174263052, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5152125014798153, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5265774831301053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5152125014798153, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5265774831301053, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.5303658103468687, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3387, + "time": 0.5341541375636321, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.5341541375636321, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5379424647803954, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5379424647803954, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5417307919971588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5417307919971588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5455191192139222, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5530957736474488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5606724280809755, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5455191192139222, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5530957736474488, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5606724280809755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3026, - "time": 0.4773292293121818, + "noteOrder": 3651, + "time": 0.5758257369480289, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4178,13 +5926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, - "time": 0.48490588374570853, + "noteOrder": 3651, + "time": 0.5758257369480289, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4196,18 +5944,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3074, - "time": 0.48490588374570853, + "noteOrder": 3675, + "time": 0.5796140641647922, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4224,13 +5972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3098, - "time": 0.48869421096247184, + "noteOrder": 3675, + "time": 0.5796140641647922, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4242,18 +5990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.5000591926127619, + "noteOrder": 3699, + "time": 0.5834023913815556, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4265,18 +6013,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3194, - "time": 0.5038475198295252, + "noteOrder": 3723, + "time": 0.587190718598319, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4288,16 +6036,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3194, - "time": 0.5038475198295252, + "noteOrder": 3723, + "time": 0.587190718598319, "position": { "x": 5, "y": 0 @@ -4316,11 +6064,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, - "time": 0.5076358470462886, + "noteOrder": 3939, + "time": 0.621285663549189, "position": { "x": 5, "y": 0 @@ -4339,11 +6087,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.5076358470462886, + "noteOrder": 3964, + "time": 0.6250739907659524, "position": { "x": 5, "y": 0 @@ -4357,16 +6105,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 3242, - "time": 0.511424174263052, + "noteOrder": 3988, + "time": 0.6288623179827157, "position": { "x": 5, "y": 0 @@ -4385,11 +6133,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, - "time": 0.511424174263052, + "noteOrder": 4012, + "time": 0.6326506451994791, "position": { "x": 5, "y": 0 @@ -4403,16 +6151,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, - "time": 0.5152125014798153, + "noteOrder": 4012, + "time": 0.6326506451994791, "position": { "x": 5, "y": 0 @@ -4431,13 +6179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 138, "indexInLine": 2, "isSliding": false, - "noteOrder": 3338, - "time": 0.5265774831301053, + "noteOrder": 4036, + "time": 0.6364389724162425, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4454,13 +6202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.5152125014798153, + "noteOrder": 4108, + "time": 0.6478039540665325, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4472,18 +6220,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 3338, - "time": 0.5265774831301053, + "noteOrder": 4036, + "time": 0.6364389724162425, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4500,13 +6248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.5303658103468687, + "noteOrder": 4108, + "time": 0.6478039540665325, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4518,16 +6266,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.534154137563632, + "noteOrder": 4132, + "time": 0.6515922812832958, "position": { "x": 5, "y": 0 @@ -4541,16 +6289,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.534154137563632, + "noteOrder": 4156, + "time": 0.6553806085000592, "position": { "x": 5, "y": 0 @@ -4569,11 +6317,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, - "time": 0.5379424647803954, + "noteOrder": 4180, + "time": 0.6591689357168226, "position": { "x": 5, "y": 0 @@ -4587,16 +6335,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, - "time": 0.5379424647803954, + "noteOrder": 4204, + "time": 0.6629572629335858, "position": { "x": 5, "y": 0 @@ -4615,11 +6363,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 3434, - "time": 0.5417307919971588, + "noteOrder": 4204, + "time": 0.6629572629335858, "position": { "x": 5, "y": 0 @@ -4633,16 +6381,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, - "time": 0.5417307919971588, + "noteOrder": 4228, + "time": 0.6667455901503492, "position": { "x": 5, "y": 0 @@ -4661,13 +6409,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3458, - "time": 0.545519119213922, + "noteOrder": 4300, + "time": 0.6781105718006393, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4684,13 +6432,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 2, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.5530957736474488, + "noteOrder": 4228, + "time": 0.6667455901503492, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4702,18 +6450,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 3, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3554, - "time": 0.5606724280809754, + "noteOrder": 4300, + "time": 0.6781105718006393, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4725,18 +6473,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3458, - "time": 0.545519119213922, + "noteOrder": 4324, + "time": 0.6818988990174026, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4753,11 +6501,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, - "time": 0.5530957736474488, + "noteOrder": 4348, + "time": 0.6856872262341659, "position": { "x": 5, "y": 0 @@ -4776,13 +6524,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 2, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, - "time": 0.5606724280809754, + "noteOrder": 4348, + "time": 0.6856872262341659, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4794,16 +6542,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 3, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, - "time": 0.5758257369480289, + "noteOrder": 4372, + "time": 0.6894755534509293, "position": { "x": 5, "y": 0 @@ -4817,18 +6565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.5758257369480289, + "noteOrder": 4372, + "time": 0.6894755534509293, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4840,18 +6588,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3698, - "time": 0.5834023913815555, + "noteOrder": 4396, + "time": 0.6932638806676926, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4868,11 +6616,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.621285663549189, + "noteOrder": 4396, + "time": 0.6932638806676926, "position": { "x": 5, "y": 0 @@ -4886,16 +6634,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3962, - "time": 0.6250739907659524, + "noteOrder": 4420, + "time": 0.6970522078844561, "position": { "x": 5, "y": 0 @@ -4909,16 +6657,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3986, - "time": 0.6288623179827157, + "noteOrder": 4420, + "time": 0.6970522078844561, "position": { "x": 5, "y": 0 @@ -4932,16 +6680,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4010, - "time": 0.632650645199479, + "noteOrder": 4444, + "time": 0.7008405351012195, "position": { "x": 5, "y": 0 @@ -4955,16 +6703,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4010, - "time": 0.632650645199479, + "noteOrder": 4468, + "time": 0.7046288623179828, "position": { "x": 5, "y": 0 @@ -4978,16 +6726,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.6364389724162425, + "noteOrder": 4492, + "time": 0.7084171895347461, "position": { "x": 5, "y": 0 @@ -5001,18 +6749,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 2, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4106, - "time": 0.6478039540665325, + "noteOrder": 4516, + "time": 0.7122055167515094, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5029,13 +6777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.6364389724162425, + "noteOrder": 4564, + "time": 0.7197821711850362, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5047,18 +6795,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 4106, - "time": 0.6478039540665325, + "noteOrder": 4564, + "time": 0.7197821711850362, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5075,13 +6823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, - "time": 0.6515922812832958, + "noteOrder": 4612, + "time": 0.7273588256185629, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5098,13 +6846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 4154, - "time": 0.6553806085000591, + "noteOrder": 5189, + "time": 0.8182786788208831, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5121,13 +6869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4178, - "time": 0.6591689357168224, + "noteOrder": 5201, + "time": 0.8201728424292648, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5139,16 +6887,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4202, - "time": 0.6629572629335859, + "noteOrder": 5201, + "time": 0.8201728424292648, "position": { "x": 5, "y": 0 @@ -5162,18 +6910,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4202, - "time": 0.6629572629335859, + "noteOrder": 5213, + "time": 0.8220670060376465, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5185,18 +6933,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4226, - "time": 0.6667455901503493, + "noteOrder": 5225, + "time": 0.8239611696460282, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5208,18 +6956,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 2, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4298, - "time": 0.6781105718006393, + "noteOrder": 5225, + "time": 0.8239611696460282, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5231,18 +6979,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.6667455901503493, + "noteOrder": 5237, + "time": 0.8258553332544099, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5254,18 +7002,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4298, - "time": 0.6781105718006393, + "noteOrder": 5249, + "time": 0.8277494968627916, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5277,16 +7025,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4322, - "time": 0.6818988990174025, + "noteOrder": 5249, + "time": 0.8277494968627916, "position": { "x": 5, "y": 0 @@ -5300,18 +7048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.685687226234166, + "noteOrder": 5261, + "time": 0.8296436604711732, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5328,13 +7076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4346, - "time": 0.685687226234166, + "noteOrder": 5273, + "time": 0.8315378240795548, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5346,16 +7094,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4370, - "time": 0.6894755534509294, + "noteOrder": 5273, + "time": 0.8315378240795548, "position": { "x": 5, "y": 0 @@ -5369,18 +7117,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4370, - "time": 0.6894755534509294, + "noteOrder": 5573, + "time": 0.8788919142890967, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5397,11 +7145,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4394, - "time": 0.6932638806676926, + "noteOrder": 5669, + "time": 0.8940452231561501, "position": { "x": 5, "y": 0 @@ -5420,11 +7168,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4394, - "time": 0.6932638806676926, + "noteOrder": 5861, + "time": 0.9243518408902569, "position": { "x": 5, "y": 0 @@ -5443,11 +7191,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.697052207884456, + "noteOrder": 5909, + "time": 0.9319284953237835, "position": { "x": 5, "y": 0 @@ -5466,13 +7214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4418, - "time": 0.697052207884456, + "noteOrder": 5909, + "time": 0.9319284953237835, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5489,13 +7237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4442, - "time": 0.7008405351012194, + "noteOrder": 5957, + "time": 0.9395051497573103, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5512,13 +7260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.7046288623179826, + "noteOrder": 5957, + "time": 0.9395051497573103, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5535,13 +7283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4490, - "time": 0.708417189534746, + "noteOrder": 5969, + "time": 0.9413993133656919, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5558,13 +7306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4514, - "time": 0.7122055167515094, + "noteOrder": 5969, + "time": 0.9413993133656919, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5576,16 +7324,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4562, - "time": 0.7197821711850361, + "noteOrder": 5981, + "time": 0.9432934769740736, "position": { "x": 5, "y": 0 @@ -5599,18 +7347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4562, - "time": 0.7197821711850361, + "noteOrder": 5981, + "time": 0.9432934769740736, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5627,11 +7375,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 4610, - "time": 0.7273588256185628, + "noteOrder": 5981, + "time": 0.9432934769740736, "position": { "x": 4, "y": 0 @@ -5645,18 +7393,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5187, - "time": 0.8182786788208831, + "noteOrder": 5993, + "time": 0.9451876405824553, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5668,18 +7416,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5211, - "time": 0.8220670060376465, + "noteOrder": 5993, + "time": 0.9451876405824553, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5696,13 +7444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5235, - "time": 0.8258553332544099, + "noteOrder": 6005, + "time": 0.947081804190837, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5714,16 +7462,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5259, - "time": 0.8296436604711731, + "noteOrder": 6005, + "time": 0.947081804190837, "position": { "x": 7, "y": 0 @@ -5742,13 +7490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5571, - "time": 0.8788919142890966, + "noteOrder": 6053, + "time": 0.9546584586243636, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5765,13 +7513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5667, - "time": 0.8940452231561501, + "noteOrder": 6101, + "time": 0.9622351130578903, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5788,13 +7536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5859, - "time": 0.9243518408902569, + "noteOrder": 6101, + "time": 0.9622351130578903, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5811,13 +7559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5907, - "time": 0.9319284953237835, + "noteOrder": 6149, + "time": 0.9698117674914172, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5834,13 +7582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5907, - "time": 0.9319284953237835, + "noteOrder": 6149, + "time": 0.9698117674914172, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5857,11 +7605,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5955, - "time": 0.9395051497573103, + "noteOrder": 6161, + "time": 0.9717059310997987, "position": { "x": 6, "y": 0 @@ -5880,13 +7628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5955, - "time": 0.9395051497573103, + "noteOrder": 6161, + "time": 0.9717059310997987, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5898,18 +7646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5979, - "time": 0.9432934769740736, + "noteOrder": 6173, + "time": 0.9736000947081805, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5926,13 +7674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6051, - "time": 0.9546584586243636, + "noteOrder": 6173, + "time": 0.9736000947081805, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5949,11 +7697,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 6099, - "time": 0.9622351130578903, + "noteOrder": 6173, + "time": 0.9736000947081805, "position": { "x": 6, "y": 0 @@ -5967,18 +7715,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6099, - "time": 0.9622351130578903, + "noteOrder": 6185, + "time": 0.9754942583165621, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5995,13 +7743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6147, - "time": 0.9698117674914171, + "noteOrder": 6185, + "time": 0.9754942583165621, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6018,13 +7766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6147, - "time": 0.9698117674914171, + "noteOrder": 6197, + "time": 0.9773884219249438, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6036,18 +7784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6171, - "time": 0.9736000947081803, + "noteOrder": 6197, + "time": 0.9773884219249438, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { diff --git a/tracks/Golden Palms/359_difficulty_1b.json b/tracks/Golden Palms/359_difficulty_1b.json index a154a92d..125e6dd7 100644 --- a/tracks/Golden Palms/359_difficulty_1b.json +++ b/tracks/Golden Palms/359_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.022729963300580087, + "time": 0.02272996330058009, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 432, - "time": 0.06818988990174026, + "time": 0.06818988990174027, "position": { "x": 2, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 528, - "time": 0.08334319876879366, + "time": 0.08334319876879365, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 552, - "time": 0.087131525985557, + "time": 0.08713152598555701, "position": { "x": 5, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.09849650763584705, "position": { "x": 6, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.10228483485261039, "position": { "x": 5, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.11364981650290043, "position": { "x": 4, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.11743814371966378, "position": { "x": 4, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.12122647093642713, + "noteOrder": 769, + "time": 0.12122647093642715, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12880312536995384, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12880312536995384, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.13259145258671717, "position": { "x": 4, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.13259145258671717, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 913, "time": 0.1439564342370072, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 937, "time": 0.14774476145377058, "position": { "x": 4, @@ -414,7 +414,7 @@ }, { "noteOrder": 1321, - "time": 0.20835799692198412, + "time": 0.20835799692198415, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1393, - "time": 0.21972297857227416, + "time": 0.21972297857227419, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.272759559606961, + "noteOrder": 1730, + "time": 0.2727595596069611, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.2803362140404877, + "noteOrder": 1778, + "time": 0.28033621404048775, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2841245412572511, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.29548952290754116, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.30306617734106783, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3106428317745945, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.3144311589913579, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3257961406416479, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3295844678584112, + "noteOrder": 2090, + "time": 0.3295844678584113, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.34094944950870126, + "noteOrder": 2162, + "time": 0.3409494495087013, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.3447377767254647, + "noteOrder": 2186, + "time": 0.34473777672546463, "position": { "x": 8, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3864093761098615, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.3901977033266248, + "noteOrder": 2474, + "time": 0.39019770332662485, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.40156268497691483, + "noteOrder": 2546, + "time": 0.4015626849769149, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.40535101219367825, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.41671599384396824, + "noteOrder": 2642, + "time": 0.4167159938439683, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.4205043210607316, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.43186930271102164, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.435657629927785, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2833, + "noteOrder": 2835, "time": 0.44702261157807505, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2857, - "time": 0.45081093879483836, + "noteOrder": 2859, + "time": 0.4508109387948384, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2929, + "noteOrder": 2931, "time": 0.46217592044512845, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2953, + "noteOrder": 2955, "time": 0.46596424766189176, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.4773292293121818, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.48111755652894517, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.49248253817923526, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3146, - "time": 0.4962708653959986, + "noteOrder": 3147, + "time": 0.49627086539599863, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.6250739907659524, "position": { "x": 5, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4010, - "time": 0.632650645199479, + "noteOrder": 4012, + "time": 0.6326506451994791, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.6553806085000591, + "noteOrder": 4156, + "time": 0.6553806085000592, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6629572629335859, + "noteOrder": 4204, + "time": 0.6629572629335858, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4274, + "noteOrder": 4276, "time": 0.6743222445838759, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4634, - "time": 0.731147152835326, + "noteOrder": 4636, + "time": 0.7311471528353262, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7349354800520894, + "noteOrder": 4660, + "time": 0.7349354800520895, "position": { "x": 5, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4682, + "noteOrder": 4684, "time": 0.7387238072688529, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4802, - "time": 0.7576654433526695, + "noteOrder": 4804, + "time": 0.7576654433526696, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7652420977861963, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4996, "time": 0.7879720610867764, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5044, "time": 0.795548715520303, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5068, "time": 0.7993370427370664, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5187, + "noteOrder": 5189, "time": 0.8182786788208831, "position": { "x": 5, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8258553332544099, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.8296436604711731, + "noteOrder": 5261, + "time": 0.8296436604711732, "position": { "x": 6, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.8485852965549899, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5427, - "time": 0.8561619509885166, + "noteOrder": 5429, + "time": 0.8561619509885167, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5451, + "noteOrder": 5453, "time": 0.85995027820528, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5571, - "time": 0.8788919142890966, + "noteOrder": 5573, + "time": 0.8788919142890967, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5595, - "time": 0.88268024150586, + "noteOrder": 5597, + "time": 0.8826802415058601, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.8864685687226235, + "noteOrder": 5621, + "time": 0.8864685687226234, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5645, "time": 0.8902568959393867, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5763, + "noteOrder": 5765, "time": 0.9091985320232034, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5787, + "noteOrder": 5789, "time": 0.9129868592399668, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5811, + "noteOrder": 5813, "time": 0.9167751864567302, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5835, + "noteOrder": 5837, "time": 0.9205635136734935, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5907, + "noteOrder": 5909, "time": 0.9319284953237835, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5931, - "time": 0.935716822540547, + "noteOrder": 5933, + "time": 0.9357168225405469, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5955, + "noteOrder": 5957, "time": 0.9395051497573103, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5979, + "noteOrder": 5981, "time": 0.9432934769740736, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6003, + "noteOrder": 6005, "time": 0.947081804190837, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6027, - "time": 0.9508701314076002, + "noteOrder": 6029, + "time": 0.9508701314076003, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6099, + "noteOrder": 6101, "time": 0.9622351130578903, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6123, + "noteOrder": 6125, "time": 0.9660234402746537, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.9698117674914171, + "noteOrder": 6149, + "time": 0.9698117674914172, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6171, - "time": 0.9736000947081803, + "noteOrder": 6173, + "time": 0.9736000947081805, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.9773884219249437, + "noteOrder": 6197, + "time": 0.9773884219249438, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6219, - "time": 0.981176749141707, + "noteOrder": 6222, + "time": 0.9811767491417072, "position": { "x": 6, "y": 0 @@ -1816,10 +1816,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.015153308867053392, + "time": 0.015153308867053393, "position": { "x": 7, "y": 0 @@ -1839,10 +1839,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.030306617734106783, + "time": 0.030306617734106787, "position": { "x": 7, "y": 0 @@ -1862,10 +1862,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.030306617734106783, + "time": 0.030306617734106787, "position": { "x": 3, "y": 0 @@ -1885,10 +1885,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.045459926601160175, + "time": 0.04545992660116018, "position": { "x": 3, "y": 0 @@ -1908,10 +1908,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.045459926601160175, + "time": 0.04545992660116018, "position": { "x": 7, "y": 0 @@ -1931,10 +1931,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.06061323546821357, + "time": 0.060613235468213573, "position": { "x": 7, "y": 0 @@ -1954,10 +1954,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.06061323546821357, + "time": 0.060613235468213573, "position": { "x": 3, "y": 0 @@ -1977,7 +1977,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 480, "time": 0.07576654433526696, @@ -2000,7 +2000,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.07576654433526696, @@ -2023,10 +2023,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.09091985320232035, + "noteOrder": 577, + "time": 0.09091985320232036, "position": { "x": 7, "y": 0 @@ -2046,10 +2046,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.09091985320232035, + "noteOrder": 577, + "time": 0.09091985320232036, "position": { "x": 3, "y": 0 @@ -2069,9 +2069,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10607316206937374, "position": { "x": 3, @@ -2092,9 +2092,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10607316206937374, "position": { "x": 7, @@ -2115,10 +2115,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 768, - "time": 0.12122647093642713, + "noteOrder": 769, + "time": 0.12122647093642715, "position": { "x": 7, "y": 0 @@ -2138,10 +2138,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 864, - "time": 0.1363797798034805, + "noteOrder": 865, + "time": 0.13637977980348054, "position": { "x": 3, "y": 0 @@ -2161,9 +2161,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 912, + "noteOrder": 913, "time": 0.1439564342370072, "position": { "x": 3, @@ -2184,9 +2184,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 960, + "noteOrder": 961, "time": 0.15153308867053392, "position": { "x": 7, @@ -2207,7 +2207,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1009, "time": 0.15910974310406062, @@ -2230,10 +2230,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, - "time": 0.16668639753758732, + "time": 0.1666863975375873, "position": { "x": 6, "y": 0 @@ -2253,10 +2253,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1153, - "time": 0.1818397064046407, + "time": 0.18183970640464073, "position": { "x": 6, "y": 0 @@ -2276,10 +2276,10 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1201, - "time": 0.18941636083816737, + "time": 0.1894163608381674, "position": { "x": 4, "y": 0 @@ -2299,10 +2299,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1105, - "time": 0.174263051971114, + "time": 0.17426305197111402, "position": { "x": 4, "y": 0 @@ -2322,10 +2322,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1153, - "time": 0.1818397064046407, + "time": 0.18183970640464073, "position": { "x": 4, "y": 0 @@ -2345,10 +2345,10 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1201, - "time": 0.18941636083816737, + "time": 0.1894163608381674, "position": { "x": 6, "y": 0 @@ -2368,7 +2368,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, "time": 0.1969930152716941, @@ -2391,7 +2391,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1297, "time": 0.20456966970522078, @@ -2414,7 +2414,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, "time": 0.21214632413874748, @@ -2437,10 +2437,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1393, - "time": 0.21972297857227416, + "time": 0.21972297857227419, "position": { "x": 3, "y": 0 @@ -2460,7 +2460,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1441, "time": 0.22729963300580086, @@ -2483,10 +2483,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1537, - "time": 0.24245294187285427, + "time": 0.2424529418728543, "position": { "x": 4, "y": 0 @@ -2506,7 +2506,7 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1585, "time": 0.25002959630638094, @@ -2529,7 +2529,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1489, "time": 0.23487628743932756, @@ -2552,10 +2552,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1537, - "time": 0.24245294187285427, + "time": 0.2424529418728543, "position": { "x": 6, "y": 0 @@ -2575,7 +2575,7 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1585, "time": 0.25002959630638094, @@ -2598,7 +2598,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1633, "time": 0.25760625073990767, @@ -2621,10 +2621,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.272759559606961, + "noteOrder": 1730, + "time": 0.2727595596069611, "position": { "x": 4, "y": 0 @@ -2644,10 +2644,10 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1777, - "time": 0.2803362140404877, + "noteOrder": 1778, + "time": 0.28033621404048775, "position": { "x": 6, "y": 0 @@ -2667,9 +2667,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, + "noteOrder": 1826, "time": 0.2879128684740144, "position": { "x": 4, @@ -2690,9 +2690,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.30306617734106783, "position": { "x": 6, @@ -2713,12 +2713,380 @@ }, { "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1970, + "time": 0.3106428317745945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.31821948620812124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3333727950751746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3333727950751746, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2210, + "time": 0.34852610394222805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.34852610394222805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3561027583757547, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2306, + "time": 0.36367941280928145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2354, + "time": 0.37125606724280813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3561027583757547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.36367941280928145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2354, + "time": 0.37125606724280813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.3788327216763348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2426, + "time": 0.38262104889309817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2426, + "time": 0.38262104889309817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2498, + "time": 0.3939860305433882, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, - "time": 0.3106428317745945, + "noteOrder": 2522, + "time": 0.3977743577601515, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2735,11 +3103,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.31821948620812124, + "noteOrder": 2522, + "time": 0.3977743577601515, "position": { "x": 4, "y": 0 @@ -2758,13 +3126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.33337279507517464, + "noteOrder": 2594, + "time": 0.40913933941044156, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2776,18 +3144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.33337279507517464, + "noteOrder": 2618, + "time": 0.4129276666272049, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2804,11 +3172,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2209, - "time": 0.348526103942228, + "noteOrder": 2618, + "time": 0.4129276666272049, "position": { "x": 6, "y": 0 @@ -2827,13 +3195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.348526103942228, + "noteOrder": 2690, + "time": 0.42429264827749497, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2850,13 +3218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2257, - "time": 0.3561027583757547, + "noteOrder": 2714, + "time": 0.42808097549425833, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2873,11 +3241,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 2, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.3636794128092814, + "noteOrder": 2714, + "time": 0.42808097549425833, "position": { "x": 6, "y": 0 @@ -2896,11 +3264,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 3, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.3712560672428081, + "noteOrder": 2786, + "time": 0.43944595714454837, "position": { "x": 3, "y": 0 @@ -2919,11 +3287,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2257, - "time": 0.3561027583757547, + "noteOrder": 2810, + "time": 0.4432342843613117, "position": { "x": 3, "y": 0 @@ -2937,18 +3305,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.3636794128092814, + "noteOrder": 2810, + "time": 0.4432342843613117, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2960,18 +3328,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 2, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.3712560672428081, + "noteOrder": 2883, + "time": 0.4545992660116017, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2988,11 +3356,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.37883272167633475, + "noteOrder": 2907, + "time": 0.4583875932283651, "position": { "x": 7, "y": 0 @@ -3011,13 +3379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2497, - "time": 0.3939860305433882, + "noteOrder": 2907, + "time": 0.4583875932283651, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3029,18 +3397,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2593, - "time": 0.40913933941044156, + "noteOrder": 2979, + "time": 0.4697525748786551, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3052,18 +3420,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2689, - "time": 0.42429264827749497, + "noteOrder": 3003, + "time": 0.4735409020954185, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3080,13 +3448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2785, - "time": 0.4394459571445483, + "noteOrder": 3003, + "time": 0.4735409020954185, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3103,13 +3471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2881, - "time": 0.4545992660116017, + "noteOrder": 3075, + "time": 0.4849058837457086, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3126,11 +3494,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2977, - "time": 0.4697525748786551, + "noteOrder": 3099, + "time": 0.4886942109624719, "position": { "x": 3, "y": 0 @@ -3144,18 +3512,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3074, - "time": 0.48490588374570853, + "noteOrder": 3099, + "time": 0.4886942109624719, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3173,9 +3541,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, + "noteOrder": 3171, "time": 0.5000591926127619, "position": { "x": 5, @@ -3196,9 +3564,9 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.5038475198295252, "position": { "x": 5, @@ -3219,9 +3587,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.5038475198295252, "position": { "x": 5, @@ -3242,9 +3610,9 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.5076358470462886, "position": { "x": 5, @@ -3265,9 +3633,9 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.5076358470462886, "position": { "x": 5, @@ -3288,9 +3656,9 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.511424174263052, "position": { "x": 5, @@ -3311,9 +3679,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.511424174263052, "position": { "x": 5, @@ -3334,9 +3702,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, + "noteOrder": 3267, "time": 0.5152125014798153, "position": { "x": 5, @@ -3357,9 +3725,9 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, + "noteOrder": 3267, "time": 0.5152125014798153, "position": { "x": 3, @@ -3380,9 +3748,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.522789155913342, "position": { "x": 3, @@ -3403,9 +3771,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.522789155913342, "position": { "x": 7, @@ -3426,9 +3794,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, + "noteOrder": 3363, "time": 0.5303658103468687, "position": { "x": 7, @@ -3449,9 +3817,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, + "noteOrder": 3363, "time": 0.5303658103468687, "position": { "x": 5, @@ -3472,10 +3840,10 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.534154137563632, + "noteOrder": 3387, + "time": 0.5341541375636321, "position": { "x": 5, "y": 0 @@ -3495,10 +3863,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.534154137563632, + "noteOrder": 3387, + "time": 0.5341541375636321, "position": { "x": 5, "y": 0 @@ -3518,9 +3886,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3411, "time": 0.5379424647803954, "position": { "x": 5, @@ -3541,9 +3909,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3411, "time": 0.5379424647803954, "position": { "x": 5, @@ -3564,9 +3932,9 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.5417307919971588, "position": { "x": 5, @@ -3587,9 +3955,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.5417307919971588, "position": { "x": 5, @@ -3610,10 +3978,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.545519119213922, + "noteOrder": 3459, + "time": 0.5455191192139222, "position": { "x": 5, "y": 0 @@ -3633,10 +4001,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3458, - "time": 0.545519119213922, + "noteOrder": 3459, + "time": 0.5455191192139222, "position": { "x": 3, "y": 0 @@ -3656,9 +4024,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, + "noteOrder": 3507, "time": 0.5530957736474488, "position": { "x": 4, @@ -3679,9 +4047,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, + "noteOrder": 3507, "time": 0.5530957736474488, "position": { "x": 7, @@ -3702,10 +4070,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3554, - "time": 0.5606724280809754, + "noteOrder": 3555, + "time": 0.5606724280809755, "position": { "x": 6, "y": 0 @@ -3725,10 +4093,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, - "time": 0.5606724280809754, + "noteOrder": 3555, + "time": 0.5606724280809755, "position": { "x": 3, "y": 0 @@ -3748,9 +4116,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.5644607552977389, "position": { "x": 3, @@ -3771,9 +4139,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.5644607552977389, "position": { "x": 5, @@ -3794,9 +4162,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3602, + "noteOrder": 3603, "time": 0.5682490825145022, "position": { "x": 5, @@ -3817,9 +4185,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3602, + "noteOrder": 3603, "time": 0.5682490825145022, "position": { "x": 4, @@ -3840,9 +4208,9 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.5720374097312655, "position": { "x": 4, @@ -3863,9 +4231,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.5720374097312655, "position": { "x": 6, @@ -3886,9 +4254,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, + "noteOrder": 3651, "time": 0.5758257369480289, "position": { "x": 6, @@ -3909,9 +4277,9 @@ }, { "lineGroupId": 99, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.5796140641647922, "position": { "x": 6, @@ -3932,9 +4300,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, + "noteOrder": 3651, "time": 0.5758257369480289, "position": { "x": 3, @@ -3955,9 +4323,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.5796140641647922, "position": { "x": 3, @@ -3978,10 +4346,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3698, - "time": 0.5834023913815555, + "noteOrder": 3699, + "time": 0.5834023913815556, "position": { "x": 4, "y": 0 @@ -4001,9 +4369,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.587190718598319, "position": { "x": 4, @@ -4024,10 +4392,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3698, - "time": 0.5834023913815555, + "noteOrder": 3699, + "time": 0.5834023913815556, "position": { "x": 7, "y": 0 @@ -4047,9 +4415,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.587190718598319, "position": { "x": 7, @@ -4070,9 +4438,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3746, + "noteOrder": 3747, "time": 0.5909790458150823, "position": { "x": 4, @@ -4093,9 +4461,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, + "noteOrder": 3843, "time": 0.6061323546821357, "position": { "x": 4, @@ -4116,10 +4484,10 @@ }, { "lineGroupId": 103, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3866, - "time": 0.6099206818988989, + "noteOrder": 3867, + "time": 0.609920681898899, "position": { "x": 4, "y": 0 @@ -4139,9 +4507,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3794, + "noteOrder": 3795, "time": 0.5985557002486089, "position": { "x": 6, @@ -4162,9 +4530,9 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, + "noteOrder": 3843, "time": 0.6061323546821357, "position": { "x": 6, @@ -4185,10 +4553,10 @@ }, { "lineGroupId": 104, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3866, - "time": 0.6099206818988989, + "noteOrder": 3867, + "time": 0.609920681898899, "position": { "x": 4, "y": 0 @@ -4208,9 +4576,9 @@ }, { "lineGroupId": 104, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3890, + "noteOrder": 3891, "time": 0.6137090091156624, "position": { "x": 6, @@ -4231,10 +4599,10 @@ }, { "lineGroupId": 104, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3914, - "time": 0.6174973363324258, + "noteOrder": 3915, + "time": 0.6174973363324257, "position": { "x": 6, "y": 0 @@ -4254,9 +4622,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3890, + "noteOrder": 3891, "time": 0.6137090091156624, "position": { "x": 4, @@ -4277,10 +4645,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3914, - "time": 0.6174973363324258, + "noteOrder": 3915, + "time": 0.6174973363324257, "position": { "x": 6, "y": 0 @@ -4300,9 +4668,9 @@ }, { "lineGroupId": 105, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3938, + "noteOrder": 3939, "time": 0.621285663549189, "position": { "x": 4, @@ -4323,9 +4691,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, + "noteOrder": 3939, "time": 0.621285663549189, "position": { "x": 5, @@ -4346,9 +4714,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.6250739907659524, "position": { "x": 5, @@ -4369,9 +4737,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3986, + "noteOrder": 3988, "time": 0.6288623179827157, "position": { "x": 5, @@ -4392,10 +4760,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4010, - "time": 0.632650645199479, + "noteOrder": 4012, + "time": 0.6326506451994791, "position": { "x": 5, "y": 0 @@ -4415,9 +4783,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, + "noteOrder": 4036, "time": 0.6364389724162425, "position": { "x": 7, @@ -4438,9 +4806,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.6440156268497691, "position": { "x": 6, @@ -4461,9 +4829,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.6440156268497691, "position": { "x": 3, @@ -4484,9 +4852,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.6515922812832958, "position": { "x": 4, @@ -4507,9 +4875,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.6515922812832958, "position": { "x": 5, @@ -4530,10 +4898,10 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4154, - "time": 0.6553806085000591, + "noteOrder": 4156, + "time": 0.6553806085000592, "position": { "x": 5, "y": 0 @@ -4553,10 +4921,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4178, - "time": 0.6591689357168224, + "noteOrder": 4180, + "time": 0.6591689357168226, "position": { "x": 5, "y": 0 @@ -4576,10 +4944,10 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4202, - "time": 0.6629572629335859, + "noteOrder": 4204, + "time": 0.6629572629335858, "position": { "x": 5, "y": 0 @@ -4599,10 +4967,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.6667455901503493, + "noteOrder": 4228, + "time": 0.6667455901503492, "position": { "x": 5, "y": 0 @@ -4622,10 +4990,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4322, - "time": 0.6818988990174025, + "noteOrder": 4324, + "time": 0.6818988990174026, "position": { "x": 5, "y": 0 @@ -4645,10 +5013,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4322, - "time": 0.6818988990174025, + "noteOrder": 4324, + "time": 0.6818988990174026, "position": { "x": 3, "y": 0 @@ -4668,10 +5036,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4346, - "time": 0.685687226234166, + "noteOrder": 4348, + "time": 0.6856872262341659, "position": { "x": 3, "y": 0 @@ -4691,10 +5059,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.685687226234166, + "noteOrder": 4348, + "time": 0.6856872262341659, "position": { "x": 4, "y": 0 @@ -4714,10 +5082,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.6894755534509294, + "noteOrder": 4372, + "time": 0.6894755534509293, "position": { "x": 4, "y": 0 @@ -4737,10 +5105,10 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4370, - "time": 0.6894755534509294, + "noteOrder": 4372, + "time": 0.6894755534509293, "position": { "x": 5, "y": 0 @@ -4760,9 +5128,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.6932638806676926, "position": { "x": 5, @@ -4783,9 +5151,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.6932638806676926, "position": { "x": 6, @@ -4806,10 +5174,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.697052207884456, + "noteOrder": 4420, + "time": 0.6970522078844561, "position": { "x": 6, "y": 0 @@ -4829,10 +5197,10 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4418, - "time": 0.697052207884456, + "noteOrder": 4420, + "time": 0.6970522078844561, "position": { "x": 3, "y": 0 @@ -4852,9 +5220,9 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.7122055167515094, "position": { "x": 3, @@ -4875,9 +5243,9 @@ }, { "lineGroupId": 122, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.7159938439682728, "position": { "x": 6, @@ -4898,10 +5266,10 @@ }, { "lineGroupId": 122, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4562, - "time": 0.7197821711850361, + "noteOrder": 4564, + "time": 0.7197821711850362, "position": { "x": 3, "y": 0 @@ -4921,10 +5289,10 @@ }, { "lineGroupId": 122, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4610, - "time": 0.7273588256185628, + "noteOrder": 4612, + "time": 0.7273588256185629, "position": { "x": 3, "y": 0 @@ -4944,10 +5312,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.7046288623179826, + "noteOrder": 4468, + "time": 0.7046288623179828, "position": { "x": 6, "y": 0 @@ -4967,9 +5335,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.7122055167515094, "position": { "x": 6, @@ -4990,10 +5358,10 @@ }, { "lineGroupId": 123, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4562, - "time": 0.7197821711850361, + "noteOrder": 4564, + "time": 0.7197821711850362, "position": { "x": 6, "y": 0 @@ -5013,10 +5381,10 @@ }, { "lineGroupId": 123, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4586, - "time": 0.7235704984017994, + "noteOrder": 4588, + "time": 0.7235704984017995, "position": { "x": 3, "y": 0 @@ -5036,10 +5404,10 @@ }, { "lineGroupId": 123, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4610, - "time": 0.7273588256185628, + "noteOrder": 4612, + "time": 0.7273588256185629, "position": { "x": 6, "y": 0 @@ -5059,9 +5427,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, + "noteOrder": 5477, "time": 0.8637386054220433, "position": { "x": 5, @@ -5082,9 +5450,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.87131525985557, "position": { "x": 5, @@ -5105,9 +5473,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.87131525985557, "position": { "x": 4, @@ -5128,10 +5496,10 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5571, - "time": 0.8788919142890966, + "noteOrder": 5573, + "time": 0.8788919142890967, "position": { "x": 4, "y": 0 @@ -5151,9 +5519,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5667, + "noteOrder": 5669, "time": 0.8940452231561501, "position": { "x": 6, @@ -5174,10 +5542,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.9016218775896767, + "noteOrder": 5717, + "time": 0.9016218775896768, "position": { "x": 6, "y": 0 @@ -5197,10 +5565,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5715, - "time": 0.9016218775896767, + "noteOrder": 5717, + "time": 0.9016218775896768, "position": { "x": 4, "y": 0 @@ -5220,9 +5588,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5763, + "noteOrder": 5765, "time": 0.9091985320232034, "position": { "x": 4, @@ -5243,9 +5611,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5859, + "noteOrder": 5861, "time": 0.9243518408902569, "position": { "x": 6, @@ -5266,9 +5634,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5907, + "noteOrder": 5909, "time": 0.9319284953237835, "position": { "x": 6, @@ -5289,9 +5657,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6051, + "noteOrder": 6053, "time": 0.9546584586243636, "position": { "x": 4, @@ -5312,9 +5680,9 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6099, + "noteOrder": 6101, "time": 0.9622351130578903, "position": { "x": 4, diff --git a/tracks/Golden Palms/info.json b/tracks/Golden Palms/info.json index 23ba576a..386506a5 100644 --- a/tracks/Golden Palms/info.json +++ b/tracks/Golden Palms/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Golden Palms", - "SongLength": "131.892245", + "SongLength": "121.939592", "SongAuthorName": "Dirty Androids", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HANDS UP IN THE AIR/373_difficulty_1a.json b/tracks/HANDS UP IN THE AIR/373_difficulty_1a.json index 05b49b11..2f239202 100644 --- a/tracks/HANDS UP IN THE AIR/373_difficulty_1a.json +++ b/tracks/HANDS UP IN THE AIR/373_difficulty_1a.json @@ -114,7 +114,7 @@ }, { "noteOrder": 555, - "time": 0.1050228310502283, + "time": 0.10502283105022832, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 603, - "time": 0.1141552511415525, + "time": 0.11415525114155252, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 651, - "time": 0.1232876712328767, + "time": 0.12328767123287672, "position": { "x": 3, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1037, - "time": 0.1963470319634703, + "noteOrder": 1038, + "time": 0.19634703196347034, "position": { "x": 3, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.23287671232876714, "position": { "x": 7, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1399, - "time": 0.26484018264840187, + "noteOrder": 1400, + "time": 0.2648401826484018, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1447, + "noteOrder": 1448, "time": 0.273972602739726, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1471, - "time": 0.2785388127853881, + "noteOrder": 1472, + "time": 0.27853881278538817, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1519, - "time": 0.2876712328767123, + "noteOrder": 1520, + "time": 0.28767123287671237, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1761, - "time": 0.3333333333333333, + "time": 0.33333333333333337, "position": { "x": 5, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.33789954337899547, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1809, + "noteOrder": 1810, "time": 0.34246575342465757, "position": { "x": 3, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 1979, "time": 0.37442922374429227, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2003, "time": 0.3789954337899544, "position": { "x": 7, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2412, - "time": 0.45662100456621, + "noteOrder": 2413, + "time": 0.4566210045662101, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2436, - "time": 0.4611872146118721, + "noteOrder": 2437, + "time": 0.4611872146118722, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2460, + "noteOrder": 2461, "time": 0.4657534246575343, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2508, + "noteOrder": 2509, "time": 0.4748858447488585, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 2534, "time": 0.4794520547945206, "position": { "x": 5, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2557, - "time": 0.4840182648401826, + "noteOrder": 2558, + "time": 0.4840182648401827, "position": { "x": 5, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2605, - "time": 0.4931506849315068, + "noteOrder": 2606, + "time": 0.4931506849315069, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.497716894977169, "position": { "x": 7, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2653, - "time": 0.5022831050228311, + "noteOrder": 2654, + "time": 0.502283105022831, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2701, + "noteOrder": 2702, "time": 0.5114155251141552, "position": { "x": 7, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2725, + "noteOrder": 2727, "time": 0.5159817351598174, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2749, + "noteOrder": 2751, "time": 0.5205479452054794, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2798, - "time": 0.5296803652968037, + "noteOrder": 2799, + "time": 0.5296803652968036, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 2823, "time": 0.5342465753424658, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2846, + "noteOrder": 2847, "time": 0.5388127853881278, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2894, + "noteOrder": 2896, "time": 0.547945205479452, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2918, + "noteOrder": 2920, "time": 0.5525114155251142, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2942, - "time": 0.5570776255707762, + "noteOrder": 2944, + "time": 0.5570776255707763, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2992, "time": 0.5662100456621005, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3015, + "noteOrder": 3016, "time": 0.5707762557077626, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3039, - "time": 0.5753424657534246, + "noteOrder": 3040, + "time": 0.5753424657534247, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3063, + "noteOrder": 3064, "time": 0.5799086757990868, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3304, + "noteOrder": 3306, "time": 0.6255707762557078, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3352, + "noteOrder": 3354, "time": 0.6347031963470319, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3473, + "noteOrder": 3475, "time": 0.6575342465753424, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3497, - "time": 0.6621004566210046, + "noteOrder": 3499, + "time": 0.6621004566210045, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3521, - "time": 0.6666666666666666, + "noteOrder": 3523, + "time": 0.6666666666666667, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3545, - "time": 0.6712328767123288, + "noteOrder": 3547, + "time": 0.6712328767123289, "position": { "x": 3, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3787, - "time": 0.7168949771689498, + "noteOrder": 3788, + "time": 0.7168949771689499, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3811, - "time": 0.7214611872146118, + "noteOrder": 3812, + "time": 0.7214611872146119, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3835, - "time": 0.726027397260274, + "noteOrder": 3837, + "time": 0.7260273972602741, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3980, + "noteOrder": 3981, "time": 0.7534246575342466, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4005, "time": 0.7579908675799087, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4028, - "time": 0.7625570776255707, + "noteOrder": 4030, + "time": 0.7625570776255708, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4148, - "time": 0.7853881278538812, + "noteOrder": 4150, + "time": 0.7853881278538813, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4172, + "noteOrder": 4174, "time": 0.7899543378995434, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4197, - "time": 0.7945205479452054, + "noteOrder": 4199, + "time": 0.7945205479452055, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4221, + "noteOrder": 4223, "time": 0.7990867579908676, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4414, - "time": 0.8356164383561645, + "noteOrder": 4416, + "time": 0.8356164383561644, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4510, + "noteOrder": 4512, "time": 0.8538812785388128, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4607, + "noteOrder": 4609, "time": 0.8721461187214612, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4703, + "noteOrder": 4705, "time": 0.8904109589041096, "position": { "x": 3, @@ -1416,10 +1416,33 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 97, + "time": 0.018264840182648404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 96, - "time": 0.0182648401826484, + "noteOrder": 109, + "time": 0.02054794520547945, "position": { "x": 7, "y": 0 @@ -1437,12 +1460,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 1, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 109, + "time": 0.02054794520547945, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 121, - "time": 0.0228310502283105, + "time": 0.022831050228310504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 133, + "time": 0.025114155251141555, "position": { "x": 3, "y": 0 @@ -1460,9 +1529,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 2, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 133, + "time": 0.025114155251141555, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, "time": 0.027397260273972605, @@ -1485,7 +1577,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, "time": 0.0319634703196347, @@ -1508,10 +1600,33 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.0365296803652968, + "time": 0.03652968036529681, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 205, + "time": 0.03881278538812785, "position": { "x": 3, "y": 0 @@ -1529,9 +1644,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 5, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 205, + "time": 0.03881278538812785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 217, "time": 0.0410958904109589, @@ -1552,12 +1690,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 229, + "time": 0.04337899543378996, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 229, + "time": 0.04337899543378996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 241, - "time": 0.045662100456621, + "time": 0.04566210045662101, "position": { "x": 4, "y": 0 @@ -1577,12 +1761,4037 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 265, "time": 0.05022831050228311, "position": { - "x": 4, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 290, + "time": 0.05479452054794521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 302, + "time": 0.05707762557077626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 302, + "time": 0.05707762557077626, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 314, + "time": 0.05936073059360731, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 326, + "time": 0.06164383561643836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 326, + "time": 0.06164383561643836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 338, + "time": 0.0639269406392694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 362, + "time": 0.0684931506849315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 386, + "time": 0.07305936073059362, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 398, + "time": 0.07534246575342467, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 398, + "time": 0.07534246575342467, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 410, + "time": 0.0776255707762557, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 422, + "time": 0.07990867579908675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 422, + "time": 0.07990867579908675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 434, + "time": 0.0821917808219178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 458, + "time": 0.08675799086757992, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 483, + "time": 0.09132420091324202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 495, + "time": 0.09360730593607307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 495, + "time": 0.09360730593607307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 507, + "time": 0.09589041095890412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 519, + "time": 0.09817351598173517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 519, + "time": 0.09817351598173517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 676, + "time": 0.1278538812785388, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 688, + "time": 0.13013698630136986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 688, + "time": 0.13013698630136986, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 700, + "time": 0.1324200913242009, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 712, + "time": 0.13470319634703196, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 712, + "time": 0.13470319634703196, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 869, + "time": 0.1643835616438356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 881, + "time": 0.16666666666666669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 881, + "time": 0.16666666666666669, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 893, + "time": 0.16894977168949774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 905, + "time": 0.17123287671232879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 905, + "time": 0.17123287671232879, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 917, + "time": 0.17351598173515984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 929, + "time": 0.17579908675799089, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 929, + "time": 0.17579908675799089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 941, + "time": 0.17808219178082194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 953, + "time": 0.18036529680365299, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 953, + "time": 0.18036529680365299, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 965, + "time": 0.18264840182648404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 989, + "time": 0.18721461187214614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1013, + "time": 0.19178082191780824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1038, + "time": 0.19634703196347034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1062, + "time": 0.20091324200913244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1074, + "time": 0.2031963470319635, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1074, + "time": 0.2031963470319635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1086, + "time": 0.20547945205479454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1098, + "time": 0.2077625570776256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1098, + "time": 0.2077625570776256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1110, + "time": 0.21004566210045664, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1122, + "time": 0.2123287671232877, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1122, + "time": 0.2123287671232877, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1134, + "time": 0.21461187214611874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1146, + "time": 0.2168949771689498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1146, + "time": 0.2168949771689498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1158, + "time": 0.21917808219178084, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1182, + "time": 0.22374429223744294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1206, + "time": 0.22831050228310504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1231, + "time": 0.23287671232876714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1255, + "time": 0.23744292237442924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1267, + "time": 0.2397260273972603, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1267, + "time": 0.2397260273972603, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1279, + "time": 0.24200913242009134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1291, + "time": 0.2442922374429224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1291, + "time": 0.2442922374429224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1303, + "time": 0.24657534246575344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1315, + "time": 0.2488584474885845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1315, + "time": 0.2488584474885845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1327, + "time": 0.2511415525114155, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1339, + "time": 0.2534246575342466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1339, + "time": 0.2534246575342466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1448, + "time": 0.273972602739726, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1472, + "time": 0.27853881278538817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1496, + "time": 0.28310502283105027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1520, + "time": 0.28767123287671237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.29223744292237447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2945205479452055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2945205479452055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1568, + "time": 0.29680365296803657, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2990867579908676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2990867579908676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1593, + "time": 0.30136986301369867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1605, + "time": 0.3036529680365297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1605, + "time": 0.3036529680365297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1617, + "time": 0.30593607305936077, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1629, + "time": 0.3082191780821918, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1629, + "time": 0.3082191780821918, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1641, + "time": 0.3105022831050228, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1653, + "time": 0.3127853881278539, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1653, + "time": 0.3127853881278539, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1665, + "time": 0.3150684931506849, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1677, + "time": 0.31735159817351594, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1677, + "time": 0.31735159817351594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1689, + "time": 0.319634703196347, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1701, + "time": 0.32191780821917804, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1701, + "time": 0.32191780821917804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1713, + "time": 0.3242009132420091, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1725, + "time": 0.32648401826484014, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1725, + "time": 0.32648401826484014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3287671232876712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1810, + "time": 0.34246575342465757, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34703196347031967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1846, + "time": 0.34931506849315075, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1846, + "time": 0.34931506849315075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1858, + "time": 0.35159817351598177, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1870, + "time": 0.35388127853881285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1870, + "time": 0.35388127853881285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1882, + "time": 0.35616438356164387, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1894, + "time": 0.35844748858447495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1894, + "time": 0.35844748858447495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1906, + "time": 0.36073059360730597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1918, + "time": 0.36301369863013705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1918, + "time": 0.36301369863013705, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1930, + "time": 0.36529680365296807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2003, + "time": 0.3789954337899544, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3835616438356165, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2039, + "time": 0.3858447488584475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2039, + "time": 0.3858447488584475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2051, + "time": 0.3881278538812786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2063, + "time": 0.3904109589041096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2063, + "time": 0.3904109589041096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2075, + "time": 0.3926940639269407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2087, + "time": 0.3949771689497717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2087, + "time": 0.3949771689497717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3972602739726028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2111, + "time": 0.3995433789954338, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2111, + "time": 0.3995433789954338, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2123, + "time": 0.4018264840182649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2148, + "time": 0.406392694063927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2172, + "time": 0.4109589041095891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2196, + "time": 0.4155251141552512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4200913242009133, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2232, + "time": 0.4223744292237443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2232, + "time": 0.4223744292237443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2244, + "time": 0.4246575342465754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2256, + "time": 0.4269406392694064, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2256, + "time": 0.4269406392694064, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2268, + "time": 0.4292237442922375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2280, + "time": 0.4315068493150685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2280, + "time": 0.4315068493150685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2292, + "time": 0.4337899543378996, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2304, + "time": 0.4360730593607306, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2304, + "time": 0.4360730593607306, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2316, + "time": 0.4383561643835617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2328, + "time": 0.4406392694063927, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2328, + "time": 0.4406392694063927, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2341, + "time": 0.4429223744292238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2353, + "time": 0.4452054794520548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2353, + "time": 0.4452054794520548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2365, + "time": 0.4474885844748859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2377, + "time": 0.4497716894977169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2377, + "time": 0.4497716894977169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2389, + "time": 0.452054794520548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2401, + "time": 0.454337899543379, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2401, + "time": 0.454337899543379, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.6027397260273973, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3197, + "time": 0.6050228310502284, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3197, + "time": 0.6050228310502284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3209, + "time": 0.6073059360730594, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3221, + "time": 0.6095890410958904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3221, + "time": 0.6095890410958904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3233, + "time": 0.6118721461187215, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.6141552511415526, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3245, + "time": 0.6141552511415526, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3257, + "time": 0.6164383561643836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3270, + "time": 0.6187214611872146, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3270, + "time": 0.6187214611872146, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3282, + "time": 0.6210045662100456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3306, + "time": 0.6255707762557078, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3330, + "time": 0.6301369863013698, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.6347031963470319, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3378, + "time": 0.639269406392694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3426, + "time": 0.6484018264840182, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3378, + "time": 0.639269406392694, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -1599,13 +5808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 289, - "time": 0.05479452054794521, + "noteOrder": 3426, + "time": 0.6484018264840182, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1617,18 +5826,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 314, - "time": 0.05936073059360731, + "noteOrder": 3571, + "time": 0.6757990867579909, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1640,18 +5849,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 338, - "time": 0.0639269406392694, + "noteOrder": 3583, + "time": 0.678082191780822, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1668,11 +5877,11 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 362, - "time": 0.0684931506849315, + "noteOrder": 3583, + "time": 0.678082191780822, "position": { "x": 6, "y": 0 @@ -1691,11 +5900,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 386, - "time": 0.0730593607305936, + "noteOrder": 3595, + "time": 0.6803652968036531, "position": { "x": 3, "y": 0 @@ -1714,13 +5923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 410, - "time": 0.07762557077625572, + "noteOrder": 3607, + "time": 0.682648401826484, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1732,16 +5941,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 434, - "time": 0.0821917808219178, + "noteOrder": 3607, + "time": 0.682648401826484, "position": { "x": 4, "y": 0 @@ -1760,13 +5969,13 @@ "isPlayAudio": false }, { - "lineGroupId": 15, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 458, - "time": 0.08675799086757992, + "noteOrder": 3619, + "time": 0.6849315068493151, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1778,16 +5987,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 482, - "time": 0.091324200913242, + "noteOrder": 3631, + "time": 0.6872146118721462, "position": { "x": 7, "y": 0 @@ -1806,13 +6015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 506, - "time": 0.09589041095890412, + "noteOrder": 3631, + "time": 0.6872146118721462, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1824,16 +6033,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.1278538812785388, + "noteOrder": 3644, + "time": 0.6894977168949773, "position": { "x": 3, "y": 0 @@ -1852,11 +6061,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 699, - "time": 0.13242009132420093, + "noteOrder": 3656, + "time": 0.6917808219178082, "position": { "x": 3, "y": 0 @@ -1870,18 +6079,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 868, - "time": 0.1643835616438356, + "noteOrder": 3656, + "time": 0.6917808219178082, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1893,18 +6102,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 892, - "time": 0.16894977168949774, + "noteOrder": 3668, + "time": 0.6940639269406393, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1916,16 +6125,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 916, - "time": 0.17351598173515984, + "noteOrder": 3680, + "time": 0.6963470319634704, "position": { "x": 7, "y": 0 @@ -1944,13 +6153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 941, - "time": 0.1780821917808219, + "noteOrder": 3680, + "time": 0.6963470319634704, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1962,18 +6171,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, - "time": 0.182648401826484, + "noteOrder": 3692, + "time": 0.6986301369863015, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -1985,18 +6194,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 989, - "time": 0.18721461187214614, + "noteOrder": 3704, + "time": 0.7009132420091324, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2008,16 +6217,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1013, - "time": 0.19178082191780824, + "noteOrder": 3704, + "time": 0.7009132420091324, "position": { "x": 4, "y": 0 @@ -2036,13 +6245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 1037, - "time": 0.1963470319634703, + "noteOrder": 3716, + "time": 0.7031963470319635, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2054,18 +6263,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1061, - "time": 0.20091324200913244, + "noteOrder": 3728, + "time": 0.7054794520547946, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2077,18 +6286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1085, - "time": 0.20547945205479454, + "noteOrder": 3728, + "time": 0.7054794520547946, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2105,11 +6314,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1109, - "time": 0.2100456621004566, + "noteOrder": 3740, + "time": 0.7077625570776257, "position": { "x": 3, "y": 0 @@ -2128,13 +6337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1134, - "time": 0.2146118721461187, + "noteOrder": 3752, + "time": 0.7100456621004566, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2146,16 +6355,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1158, - "time": 0.21917808219178084, + "noteOrder": 3752, + "time": 0.7100456621004566, "position": { "x": 4, "y": 0 @@ -2174,13 +6383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 1182, - "time": 0.22374429223744294, + "noteOrder": 3764, + "time": 0.7123287671232877, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2192,18 +6401,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1206, - "time": 0.228310502283105, + "noteOrder": 3837, + "time": 0.7260273972602741, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2220,13 +6429,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 1230, - "time": 0.23287671232876714, + "noteOrder": 3861, + "time": 0.7305936073059361, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2238,16 +6447,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1254, - "time": 0.23744292237442924, + "noteOrder": 3873, + "time": 0.7328767123287672, "position": { "x": 3, "y": 0 @@ -2266,13 +6475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1278, - "time": 0.2420091324200913, + "noteOrder": 3873, + "time": 0.7328767123287672, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2284,16 +6493,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1302, - "time": 0.2465753424657534, + "noteOrder": 3885, + "time": 0.7351598173515983, "position": { "x": 3, "y": 0 @@ -2307,18 +6516,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1327, - "time": 0.25114155251141557, + "noteOrder": 3897, + "time": 0.7374429223744292, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2335,13 +6544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.273972602739726, + "noteOrder": 3897, + "time": 0.7374429223744292, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2358,13 +6567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 1471, - "time": 0.2785388127853881, + "noteOrder": 3909, + "time": 0.7397260273972603, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2376,16 +6585,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1495, - "time": 0.28310502283105027, + "noteOrder": 3921, + "time": 0.7420091324200914, "position": { "x": 3, "y": 0 @@ -2404,13 +6613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1519, - "time": 0.2876712328767123, + "noteOrder": 3921, + "time": 0.7420091324200914, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2427,13 +6636,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, - "time": 0.2922374429223744, + "noteOrder": 3933, + "time": 0.7442922374429225, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2450,11 +6659,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1568, - "time": 0.29680365296803657, + "noteOrder": 3945, + "time": 0.7465753424657534, "position": { "x": 3, "y": 0 @@ -2468,18 +6677,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1592, - "time": 0.3013698630136986, + "noteOrder": 3945, + "time": 0.7465753424657534, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2496,11 +6705,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1616, - "time": 0.3059360730593607, + "noteOrder": 3957, + "time": 0.7488584474885845, "position": { "x": 3, "y": 0 @@ -2519,11 +6728,34 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4030, + "time": 0.7625570776255708, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1640, - "time": 0.31050228310502287, + "noteOrder": 4054, + "time": 0.767123287671233, "position": { "x": 7, "y": 0 @@ -2542,11 +6774,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1664, - "time": 0.31506849315068497, + "noteOrder": 4066, + "time": 0.769406392694064, "position": { "x": 7, "y": 0 @@ -2560,18 +6792,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1688, - "time": 0.319634703196347, + "noteOrder": 4066, + "time": 0.769406392694064, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2588,11 +6820,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1712, - "time": 0.3242009132420091, + "noteOrder": 4078, + "time": 0.771689497716895, "position": { "x": 7, "y": 0 @@ -2611,11 +6843,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1737, - "time": 0.3287671232876712, + "noteOrder": 4090, + "time": 0.773972602739726, "position": { "x": 7, "y": 0 @@ -2629,18 +6861,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1809, - "time": 0.34246575342465757, + "noteOrder": 4090, + "time": 0.773972602739726, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2652,18 +6884,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1833, - "time": 0.34703196347031967, + "noteOrder": 4102, + "time": 0.7762557077625571, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2675,18 +6907,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1857, - "time": 0.3515981735159817, + "noteOrder": 4114, + "time": 0.7785388127853882, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2703,13 +6935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1881, - "time": 0.3561643835616438, + "noteOrder": 4114, + "time": 0.7785388127853882, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2721,18 +6953,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1905, - "time": 0.3607305936073059, + "noteOrder": 4126, + "time": 0.7808219178082192, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2744,18 +6976,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1929, - "time": 0.365296803652968, + "noteOrder": 4138, + "time": 0.7831050228310502, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2772,13 +7004,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2002, - "time": 0.3789954337899544, + "noteOrder": 4138, + "time": 0.7831050228310502, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2795,11 +7027,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2026, - "time": 0.3835616438356165, + "noteOrder": 4343, + "time": 0.8219178082191781, "position": { "x": 7, "y": 0 @@ -2818,13 +7050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2050, - "time": 0.3881278538812785, + "noteOrder": 4355, + "time": 0.8242009132420091, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2836,18 +7068,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2074, - "time": 0.3926940639269406, + "noteOrder": 4355, + "time": 0.8242009132420091, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2864,11 +7096,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2098, - "time": 0.3972602739726027, + "noteOrder": 4367, + "time": 0.8264840182648402, "position": { "x": 3, "y": 0 @@ -2887,13 +7119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2122, - "time": 0.4018264840182649, + "noteOrder": 4379, + "time": 0.8287671232876712, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2905,18 +7137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2147, - "time": 0.406392694063927, + "noteOrder": 4379, + "time": 0.8287671232876712, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2928,18 +7160,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2171, - "time": 0.4109589041095891, + "noteOrder": 4392, + "time": 0.8310502283105023, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2951,18 +7183,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2195, - "time": 0.4155251141552512, + "noteOrder": 4416, + "time": 0.8356164383561644, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2974,16 +7206,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.4200913242009132, + "noteOrder": 4440, + "time": 0.8401826484018265, "position": { "x": 3, "y": 0 @@ -3002,13 +7234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2243, - "time": 0.4246575342465753, + "noteOrder": 4452, + "time": 0.8424657534246575, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3020,18 +7252,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2267, - "time": 0.4292237442922374, + "noteOrder": 4452, + "time": 0.8424657534246575, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3048,11 +7280,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2291, - "time": 0.4337899543378996, + "noteOrder": 4464, + "time": 0.8447488584474886, "position": { "x": 7, "y": 0 @@ -3071,13 +7303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2315, - "time": 0.4383561643835617, + "noteOrder": 4476, + "time": 0.8470319634703196, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3089,18 +7321,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2339, - "time": 0.4429223744292238, + "noteOrder": 4476, + "time": 0.8470319634703196, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3117,13 +7349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2364, - "time": 0.4474885844748859, + "noteOrder": 4488, + "time": 0.8493150684931507, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3140,13 +7372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, - "time": 0.4520547945205479, + "noteOrder": 4512, + "time": 0.8538812785388128, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3158,18 +7390,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.6027397260273972, + "noteOrder": 4536, + "time": 0.858447488584475, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3181,16 +7413,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3208, - "time": 0.6073059360730594, + "noteOrder": 4548, + "time": 0.8607305936073059, "position": { "x": 7, "y": 0 @@ -3209,13 +7441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3232, - "time": 0.6118721461187214, + "noteOrder": 4548, + "time": 0.8607305936073059, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3227,18 +7459,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3256, - "time": 0.6164383561643836, + "noteOrder": 4560, + "time": 0.863013698630137, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3250,18 +7482,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3280, - "time": 0.6210045662100457, + "noteOrder": 4573, + "time": 0.865296803652968, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3278,11 +7510,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3304, - "time": 0.6255707762557078, + "noteOrder": 4573, + "time": 0.865296803652968, "position": { "x": 4, "y": 0 @@ -3301,11 +7533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3328, - "time": 0.6301369863013699, + "noteOrder": 4585, + "time": 0.8675799086757991, "position": { "x": 6, "y": 0 @@ -3324,11 +7556,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3352, - "time": 0.6347031963470319, + "noteOrder": 4609, + "time": 0.8721461187214612, "position": { "x": 6, "y": 0 @@ -3347,13 +7579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3377, - "time": 0.639269406392694, + "noteOrder": 4633, + "time": 0.8767123287671234, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3365,18 +7597,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, - "time": 0.6484018264840182, + "noteOrder": 4645, + "time": 0.8789954337899543, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3388,18 +7620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3377, - "time": 0.639269406392694, + "noteOrder": 4645, + "time": 0.8789954337899543, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3416,13 +7648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 3425, - "time": 0.6484018264840182, + "noteOrder": 4657, + "time": 0.8812785388127854, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3434,16 +7666,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3570, - "time": 0.6757990867579909, + "noteOrder": 4669, + "time": 0.8835616438356164, "position": { "x": 7, "y": 0 @@ -3462,13 +7694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3594, - "time": 0.680365296803653, + "noteOrder": 4669, + "time": 0.8835616438356164, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3480,18 +7712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3618, - "time": 0.6849315068493151, + "noteOrder": 4681, + "time": 0.8858447488584476, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3503,18 +7735,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3642, - "time": 0.6894977168949772, + "noteOrder": 4705, + "time": 0.8904109589041096, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3531,11 +7763,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3666, - "time": 0.6940639269406393, + "noteOrder": 4729, + "time": 0.8949771689497718, "position": { "x": 7, "y": 0 @@ -3554,13 +7786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3690, - "time": 0.6986301369863013, + "noteOrder": 4741, + "time": 0.8972602739726029, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3572,18 +7804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3714, - "time": 0.7031963470319634, + "noteOrder": 4741, + "time": 0.8972602739726029, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3600,11 +7832,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3738, - "time": 0.7077625570776257, + "noteOrder": 4753, + "time": 0.8995433789954338, "position": { "x": 3, "y": 0 @@ -3623,13 +7855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3762, - "time": 0.7123287671232876, + "noteOrder": 4766, + "time": 0.9018264840182649, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3641,18 +7873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3835, - "time": 0.726027397260274, + "noteOrder": 4766, + "time": 0.9018264840182649, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3664,18 +7896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3859, - "time": 0.730593607305936, + "noteOrder": 4778, + "time": 0.904109589041096, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3687,18 +7919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3883, - "time": 0.7351598173515982, + "noteOrder": 4790, + "time": 0.9063926940639271, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3715,13 +7947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3907, - "time": 0.7397260273972603, + "noteOrder": 4790, + "time": 0.9063926940639271, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3733,16 +7965,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3931, - "time": 0.7442922374429224, + "noteOrder": 4802, + "time": 0.908675799086758, "position": { "x": 3, "y": 0 @@ -3756,16 +7988,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3955, - "time": 0.7488584474885845, + "noteOrder": 4814, + "time": 0.9109589041095891, "position": { "x": 3, "y": 0 @@ -3784,13 +8016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4028, - "time": 0.7625570776255707, + "noteOrder": 4814, + "time": 0.9109589041095891, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3807,11 +8039,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4052, - "time": 0.767123287671233, + "noteOrder": 4826, + "time": 0.9132420091324202, "position": { "x": 7, "y": 0 @@ -3830,11 +8062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4076, - "time": 0.7716894977168951, + "noteOrder": 4838, + "time": 0.9155251141552513, "position": { "x": 7, "y": 0 @@ -3848,18 +8080,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4100, - "time": 0.776255707762557, + "noteOrder": 4838, + "time": 0.9155251141552513, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3876,13 +8108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4124, - "time": 0.7808219178082192, + "noteOrder": 4850, + "time": 0.9178082191780822, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3899,13 +8131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.8219178082191781, + "noteOrder": 4862, + "time": 0.9200913242009133, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3917,18 +8149,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4365, - "time": 0.8264840182648402, + "noteOrder": 4862, + "time": 0.9200913242009133, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3945,13 +8177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4390, - "time": 0.8310502283105023, + "noteOrder": 4874, + "time": 0.9223744292237444, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3968,13 +8200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4414, - "time": 0.8356164383561645, + "noteOrder": 4886, + "time": 0.9246575342465755, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3991,13 +8223,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4438, - "time": 0.8401826484018264, + "noteOrder": 4886, + "time": 0.9246575342465755, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4009,18 +8241,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4462, - "time": 0.8447488584474886, + "noteOrder": 4898, + "time": 0.9269406392694064, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4032,18 +8264,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4486, - "time": 0.8493150684931506, + "noteOrder": 4910, + "time": 0.9292237442922375, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4060,11 +8292,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4510, - "time": 0.8538812785388128, + "noteOrder": 4910, + "time": 0.9292237442922375, "position": { "x": 4, "y": 0 @@ -4083,11 +8315,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4534, - "time": 0.8584474885844748, + "noteOrder": 4922, + "time": 0.9315068493150686, "position": { "x": 7, "y": 0 @@ -4106,13 +8338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4558, - "time": 0.863013698630137, + "noteOrder": 4934, + "time": 0.9337899543378997, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4124,16 +8356,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4582, - "time": 0.8675799086757991, + "noteOrder": 4934, + "time": 0.9337899543378997, "position": { "x": 6, "y": 0 @@ -4152,13 +8384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 4607, - "time": 0.8721461187214612, + "noteOrder": 4947, + "time": 0.9360730593607306, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4170,16 +8402,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4631, - "time": 0.8767123287671234, + "noteOrder": 4959, + "time": 0.9383561643835617, "position": { "x": 3, "y": 0 @@ -4198,13 +8430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4655, - "time": 0.8812785388127854, + "noteOrder": 4959, + "time": 0.9383561643835617, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4216,18 +8448,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4679, - "time": 0.8858447488584476, + "noteOrder": 4971, + "time": 0.9406392694063928, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4239,18 +8471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4703, - "time": 0.8904109589041096, + "noteOrder": 4983, + "time": 0.9429223744292238, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4262,18 +8494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4727, - "time": 0.8949771689497718, + "noteOrder": 4983, + "time": 0.9429223744292238, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4290,11 +8522,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4751, - "time": 0.8995433789954339, + "noteOrder": 4995, + "time": 0.9452054794520548, "position": { "x": 3, "y": 0 @@ -4313,13 +8545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4775, - "time": 0.9041095890410958, + "noteOrder": 5007, + "time": 0.9474885844748859, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4331,18 +8563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4800, - "time": 0.908675799086758, + "noteOrder": 5007, + "time": 0.9474885844748859, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4359,11 +8591,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4824, - "time": 0.91324200913242, + "noteOrder": 5019, + "time": 0.949771689497717, "position": { "x": 7, "y": 0 @@ -4382,13 +8614,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4848, - "time": 0.9178082191780822, + "noteOrder": 5031, + "time": 0.952054794520548, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4400,18 +8632,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4872, - "time": 0.9223744292237442, + "noteOrder": 5031, + "time": 0.952054794520548, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4428,11 +8660,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4896, - "time": 0.9269406392694064, + "noteOrder": 5043, + "time": 0.954337899543379, "position": { "x": 3, "y": 0 @@ -4451,13 +8683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4920, - "time": 0.9315068493150686, + "noteOrder": 5055, + "time": 0.9566210045662101, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4469,18 +8701,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4944, - "time": 0.9360730593607306, + "noteOrder": 5055, + "time": 0.9566210045662101, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4497,11 +8729,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4968, - "time": 0.9406392694063928, + "noteOrder": 5067, + "time": 0.9589041095890412, "position": { "x": 7, "y": 0 @@ -4520,13 +8752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4992, - "time": 0.9452054794520548, + "noteOrder": 5079, + "time": 0.9611872146118722, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4538,18 +8770,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5017, - "time": 0.949771689497717, + "noteOrder": 5079, + "time": 0.9611872146118722, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4566,11 +8798,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5041, - "time": 0.954337899543379, + "noteOrder": 5091, + "time": 0.9634703196347032, "position": { "x": 3, "y": 0 @@ -4589,13 +8821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5065, - "time": 0.9589041095890412, + "noteOrder": 5103, + "time": 0.9657534246575343, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4607,18 +8839,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5089, - "time": 0.9634703196347033, + "noteOrder": 5103, + "time": 0.9657534246575343, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { diff --git a/tracks/HANDS UP IN THE AIR/373_difficulty_1b.json b/tracks/HANDS UP IN THE AIR/373_difficulty_1b.json index 30260241..ea6ac6be 100644 --- a/tracks/HANDS UP IN THE AIR/373_difficulty_1b.json +++ b/tracks/HANDS UP IN THE AIR/373_difficulty_1b.json @@ -94,7 +94,7 @@ }, { "noteOrder": 772, - "time": 0.1461187214611872, + "time": 0.14611872146118723, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 820, - "time": 0.15525114155251143, + "time": 0.1552511415525114, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1206, - "time": 0.228310502283105, + "time": 0.22831050228310504, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.3013698630136986, + "noteOrder": 1593, + "time": 0.30136986301369867, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2460, + "noteOrder": 2461, "time": 0.4657534246575343, "position": { "x": 7, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2557, - "time": 0.4840182648401826, + "noteOrder": 2558, + "time": 0.4840182648401827, "position": { "x": 3, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2798, - "time": 0.5296803652968037, + "noteOrder": 2799, + "time": 0.5296803652968036, "position": { "x": 6, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 2823, "time": 0.5342465753424658, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2894, + "noteOrder": 2896, "time": 0.547945205479452, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2918, + "noteOrder": 2920, "time": 0.5525114155251142, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2992, "time": 0.5662100456621005, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3015, + "noteOrder": 3016, "time": 0.5707762557077626, "position": { "x": 4, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3039, - "time": 0.5753424657534246, + "noteOrder": 3040, + "time": 0.5753424657534247, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3063, + "noteOrder": 3064, "time": 0.5799086757990868, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3425, + "noteOrder": 3426, "time": 0.6484018264840182, "position": { "x": 7, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3521, - "time": 0.6666666666666666, + "noteOrder": 3523, + "time": 0.6666666666666667, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4005, "time": 0.7579908675799087, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4197, - "time": 0.7945205479452054, + "noteOrder": 4199, + "time": 0.7945205479452055, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4679, + "noteOrder": 4681, "time": 0.8858447488584476, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5065, + "noteOrder": 5067, "time": 0.9589041095890412, "position": { "x": 6, @@ -496,10 +496,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.0182648401826484, + "noteOrder": 97, + "time": 0.018264840182648404, "position": { "x": 7, "y": 0 @@ -519,7 +519,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.027397260273972605, @@ -542,10 +542,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.0365296803652968, + "time": 0.03652968036529681, "position": { "x": 4, "y": 0 @@ -564,13 +564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 4, - "indexInLine": 0, + "lineGroupId": 3, + "indexInLine": 2, "isSliding": false, - "noteOrder": 241, - "time": 0.045662100456621, + "noteOrder": 217, + "time": 0.0410958904109589, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -582,18 +582,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 0, + "lineGroupId": 3, + "indexInLine": 3, "isSliding": false, - "noteOrder": 289, - "time": 0.05479452054794521, + "noteOrder": 217, + "time": 0.0410958904109589, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -610,13 +610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 5, + "lineGroupId": 4, "indexInLine": 1, "isSliding": false, - "noteOrder": 338, - "time": 0.0639269406392694, + "noteOrder": 241, + "time": 0.04566210045662101, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -628,16 +628,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 7, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 2, "isSliding": false, - "noteOrder": 386, - "time": 0.0730593607305936, + "noteOrder": 265, + "time": 0.05022831050228311, "position": { "x": 6, "y": 0 @@ -656,13 +656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 3, "isSliding": false, - "noteOrder": 434, - "time": 0.0821917808219178, + "noteOrder": 265, + "time": 0.05022831050228311, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -674,18 +674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, - "time": 0.091324200913242, + "noteOrder": 290, + "time": 0.05479452054794521, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -697,18 +697,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 531, - "time": 0.10045662100456622, + "noteOrder": 338, + "time": 0.0639269406392694, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -725,13 +725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.1278538812785388, + "noteOrder": 386, + "time": 0.07305936073059362, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -743,18 +743,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 724, - "time": 0.136986301369863, + "noteOrder": 410, + "time": 0.0776255707762557, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -771,11 +771,11 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 3, "isSliding": false, - "noteOrder": 868, - "time": 0.1643835616438356, + "noteOrder": 410, + "time": 0.0776255707762557, "position": { "x": 6, "y": 0 @@ -794,11 +794,11 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 916, - "time": 0.17351598173515984, + "noteOrder": 434, + "time": 0.0821917808219178, "position": { "x": 4, "y": 0 @@ -817,13 +817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 965, - "time": 0.182648401826484, + "noteOrder": 458, + "time": 0.08675799086757992, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -835,16 +835,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1013, - "time": 0.19178082191780824, + "noteOrder": 458, + "time": 0.08675799086757992, "position": { "x": 4, "y": 0 @@ -863,11 +863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1061, - "time": 0.20091324200913244, + "noteOrder": 483, + "time": 0.09132420091324202, "position": { "x": 6, "y": 0 @@ -886,11 +886,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1109, - "time": 0.2100456621004566, + "noteOrder": 507, + "time": 0.09589041095890412, "position": { "x": 6, "y": 0 @@ -904,18 +904,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1158, - "time": 0.21917808219178084, + "noteOrder": 507, + "time": 0.09589041095890412, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -932,13 +932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 10, "indexInLine": 1, "isSliding": false, - "noteOrder": 1206, - "time": 0.228310502283105, + "noteOrder": 531, + "time": 0.10045662100456622, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -950,18 +950,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1254, - "time": 0.23744292237442924, + "noteOrder": 555, + "time": 0.10502283105022832, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -978,11 +978,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.2465753424657534, + "noteOrder": 555, + "time": 0.10502283105022832, "position": { "x": 6, "y": 0 @@ -996,16 +996,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.2557077625570776, + "noteOrder": 676, + "time": 0.1278538812785388, "position": { "x": 4, "y": 0 @@ -1024,13 +1024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, - "time": 0.26484018264840187, + "noteOrder": 700, + "time": 0.1324200913242009, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1042,16 +1042,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.273972602739726, + "noteOrder": 700, + "time": 0.1324200913242009, "position": { "x": 4, "y": 0 @@ -1070,11 +1070,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1495, - "time": 0.28310502283105027, + "noteOrder": 724, + "time": 0.136986301369863, "position": { "x": 4, "y": 0 @@ -1093,13 +1093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1544, - "time": 0.2922374429223744, + "noteOrder": 748, + "time": 0.14155251141552513, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1111,18 +1111,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 748, + "time": 0.14155251141552513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 1592, - "time": 0.3013698630136986, + "noteOrder": 869, + "time": 0.1643835616438356, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1134,16 +1157,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1640, - "time": 0.31050228310502287, + "noteOrder": 893, + "time": 0.16894977168949774, "position": { "x": 6, "y": 0 @@ -1162,11 +1185,34 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1688, - "time": 0.319634703196347, + "noteOrder": 893, + "time": 0.16894977168949774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 917, + "time": 0.17351598173515984, "position": { "x": 4, "y": 0 @@ -1185,13 +1231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1737, - "time": 0.3287671232876712, + "noteOrder": 941, + "time": 0.17808219178082194, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1203,16 +1249,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1785, - "time": 0.33789954337899547, + "noteOrder": 941, + "time": 0.17808219178082194, "position": { "x": 4, "y": 0 @@ -1231,13 +1277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1833, - "time": 0.34703196347031967, + "noteOrder": 965, + "time": 0.18264840182648404, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1254,13 +1300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1881, - "time": 0.3561643835616438, + "noteOrder": 989, + "time": 0.18721461187214614, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1277,13 +1323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1929, - "time": 0.365296803652968, + "noteOrder": 989, + "time": 0.18721461187214614, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1295,18 +1341,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 1978, - "time": 0.37442922374429227, + "noteOrder": 1013, + "time": 0.19178082191780824, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1323,13 +1369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2026, - "time": 0.3835616438356165, + "noteOrder": 1038, + "time": 0.19634703196347034, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1341,16 +1387,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2074, - "time": 0.3926940639269406, + "noteOrder": 1038, + "time": 0.19634703196347034, "position": { "x": 4, "y": 0 @@ -1369,13 +1415,2635 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2122, - "time": 0.4018264840182649, + "noteOrder": 1062, + "time": 0.20091324200913244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1086, + "time": 0.20547945205479454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1086, + "time": 0.20547945205479454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1110, + "time": 0.21004566210045664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1134, + "time": 0.21461187214611874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1134, + "time": 0.21461187214611874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1158, + "time": 0.21917808219178084, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1206, + "time": 0.22831050228310504, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1255, + "time": 0.23744292237442924, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1279, + "time": 0.24200913242009134, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1279, + "time": 0.24200913242009134, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1303, + "time": 0.24657534246575344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1327, + "time": 0.2511415525114155, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1327, + "time": 0.2511415525114155, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1351, + "time": 0.2557077625570776, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2602739726027397, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1375, + "time": 0.2602739726027397, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1400, + "time": 0.2648401826484018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2694063926940639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2694063926940639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1448, + "time": 0.273972602739726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1472, + "time": 0.27853881278538817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1472, + "time": 0.27853881278538817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1496, + "time": 0.28310502283105027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1520, + "time": 0.28767123287671237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1520, + "time": 0.28767123287671237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.29223744292237447, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1593, + "time": 0.30136986301369867, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1641, + "time": 0.3105022831050228, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1665, + "time": 0.3150684931506849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1665, + "time": 0.3150684931506849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1689, + "time": 0.319634703196347, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1713, + "time": 0.3242009132420091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1713, + "time": 0.3242009132420091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3287671232876712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1761, + "time": 0.33333333333333337, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1761, + "time": 0.33333333333333337, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1786, + "time": 0.33789954337899547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1810, + "time": 0.34246575342465757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1810, + "time": 0.34246575342465757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1834, + "time": 0.34703196347031967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1882, + "time": 0.35616438356164387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1930, + "time": 0.36529680365296807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1979, + "time": 0.37442922374429227, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2027, + "time": 0.3835616438356165, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2051, + "time": 0.3881278538812786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2051, + "time": 0.3881278538812786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2075, + "time": 0.3926940639269407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3972602739726028, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3972602739726028, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2123, + "time": 0.4018264840182649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2148, + "time": 0.406392694063927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2148, + "time": 0.406392694063927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2172, + "time": 0.4109589041095891, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2196, + "time": 0.4155251141552512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2196, + "time": 0.4155251141552512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.4200913242009133, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2244, + "time": 0.4246575342465754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2244, + "time": 0.4246575342465754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2268, + "time": 0.4292237442922375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2292, + "time": 0.4337899543378996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2292, + "time": 0.4337899543378996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2316, + "time": 0.4383561643835617, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2341, + "time": 0.4429223744292238, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2341, + "time": 0.4429223744292238, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2365, + "time": 0.4474885844748859, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2389, + "time": 0.452054794520548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2389, + "time": 0.452054794520548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2413, + "time": 0.4566210045662101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2461, + "time": 0.4657534246575343, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2509, + "time": 0.4748858447488585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2558, + "time": 0.4840182648401827, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.4931506849315069, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2654, + "time": 0.502283105022831, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2702, + "time": 0.5114155251141552, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2751, + "time": 0.5205479452054794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.6027397260273973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3209, + "time": 0.6073059360730594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3209, + "time": 0.6073059360730594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3233, + "time": 0.6118721461187215, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3257, + "time": 0.6164383561643836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3257, + "time": 0.6164383561643836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3282, + "time": 0.6210045662100456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3306, + "time": 0.6255707762557078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3306, + "time": 0.6255707762557078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3330, + "time": 0.6301369863013698, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.6347031963470319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3354, + "time": 0.6347031963470319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3378, + "time": 0.639269406392694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3426, + "time": 0.6484018264840182, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3475, + "time": 0.6575342465753424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6666666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3571, + "time": 0.6757990867579909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6803652968036531, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6803652968036531, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6849315068493151, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3644, + "time": 0.6894977168949773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3644, + "time": 0.6894977168949773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.6940639269406393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6986301369863015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6986301369863015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3716, + "time": 0.7031963470319635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3740, + "time": 0.7077625570776257, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3740, + "time": 0.7077625570776257, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3764, + "time": 0.7123287671232877, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3788, + "time": 0.7168949771689499, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3788, + "time": 0.7168949771689499, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3812, + "time": 0.7214611872146119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3837, + "time": 0.7260273972602741, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3837, + "time": 0.7260273972602741, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3861, + "time": 0.7305936073059361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3885, + "time": 0.7351598173515983, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3885, + "time": 0.7351598173515983, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3909, + "time": 0.7397260273972603, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3933, + "time": 0.7442922374429225, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1387,16 +4055,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2171, - "time": 0.4109589041095891, + "noteOrder": 3933, + "time": 0.7442922374429225, "position": { "x": 4, "y": 0 @@ -1415,13 +4083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.4200913242009132, + "noteOrder": 3957, + "time": 0.7488584474885845, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1438,13 +4106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2267, - "time": 0.4292237442922374, + "noteOrder": 4005, + "time": 0.7579908675799087, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -1456,18 +4124,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2315, - "time": 0.4383561643835617, + "noteOrder": 4054, + "time": 0.767123287671233, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1479,16 +4147,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2364, - "time": 0.4474885844748859, + "noteOrder": 4078, + "time": 0.771689497716895, "position": { "x": 4, "y": 0 @@ -1507,13 +4175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2412, - "time": 0.45662100456621, + "noteOrder": 4078, + "time": 0.771689497716895, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1525,16 +4193,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 2460, - "time": 0.4657534246575343, + "noteOrder": 4102, + "time": 0.7762557077625571, "position": { "x": 6, "y": 0 @@ -1553,13 +4221,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2508, - "time": 0.4748858447488585, + "noteOrder": 4126, + "time": 0.7808219178082192, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1571,18 +4239,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2557, - "time": 0.4840182648401826, + "noteOrder": 4126, + "time": 0.7808219178082192, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1594,18 +4262,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2605, - "time": 0.4931506849315068, + "noteOrder": 4150, + "time": 0.7853881278538813, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1617,18 +4285,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2653, - "time": 0.5022831050228311, + "noteOrder": 4199, + "time": 0.7945205479452055, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1640,18 +4308,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2701, - "time": 0.5114155251141552, + "noteOrder": 4343, + "time": 0.8219178082191781, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1663,18 +4331,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2749, - "time": 0.5205479452054794, + "noteOrder": 4367, + "time": 0.8264840182648402, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1686,16 +4354,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3184, - "time": 0.6027397260273972, + "noteOrder": 4367, + "time": 0.8264840182648402, "position": { "x": 6, "y": 0 @@ -1714,13 +4382,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3232, - "time": 0.6118721461187214, + "noteOrder": 4392, + "time": 0.8310502283105023, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1737,13 +4405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3280, - "time": 0.6210045662100457, + "noteOrder": 4416, + "time": 0.8356164383561644, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1755,16 +4423,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3328, - "time": 0.6301369863013699, + "noteOrder": 4416, + "time": 0.8356164383561644, "position": { "x": 4, "y": 0 @@ -1783,11 +4451,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3377, - "time": 0.639269406392694, + "noteOrder": 4440, + "time": 0.8401826484018265, "position": { "x": 6, "y": 0 @@ -1806,11 +4474,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, - "time": 0.6484018264840182, + "noteOrder": 4464, + "time": 0.8447488584474886, "position": { "x": 6, "y": 0 @@ -1829,13 +4497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3473, - "time": 0.6575342465753424, + "noteOrder": 4464, + "time": 0.8447488584474886, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1847,16 +4515,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 3521, - "time": 0.6666666666666666, + "noteOrder": 4488, + "time": 0.8493150684931507, "position": { "x": 4, "y": 0 @@ -1875,13 +4543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3570, - "time": 0.6757990867579909, + "noteOrder": 4512, + "time": 0.8538812785388128, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1893,16 +4561,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3618, - "time": 0.6849315068493151, + "noteOrder": 4512, + "time": 0.8538812785388128, "position": { "x": 4, "y": 0 @@ -1921,11 +4589,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3666, - "time": 0.6940639269406393, + "noteOrder": 4536, + "time": 0.858447488584475, "position": { "x": 6, "y": 0 @@ -1944,13 +4612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, - "time": 0.7031963470319634, + "noteOrder": 4560, + "time": 0.863013698630137, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1962,16 +4630,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3762, - "time": 0.7123287671232876, + "noteOrder": 4560, + "time": 0.863013698630137, "position": { "x": 6, "y": 0 @@ -1990,13 +4658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.7214611872146118, + "noteOrder": 4585, + "time": 0.8675799086757991, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2013,11 +4681,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.730593607305936, + "noteOrder": 4609, + "time": 0.8721461187214612, "position": { "x": 6, "y": 0 @@ -2031,18 +4699,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3907, - "time": 0.7397260273972603, + "noteOrder": 4609, + "time": 0.8721461187214612, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2059,11 +4727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3955, - "time": 0.7488584474885845, + "noteOrder": 4633, + "time": 0.8767123287671234, "position": { "x": 7, "y": 0 @@ -2082,11 +4750,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4004, - "time": 0.7579908675799087, + "noteOrder": 4681, + "time": 0.8858447488584476, "position": { "x": 5, "y": 0 @@ -2105,11 +4773,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4052, - "time": 0.767123287671233, + "noteOrder": 4729, + "time": 0.8949771689497718, "position": { "x": 4, "y": 0 @@ -2128,13 +4796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4100, - "time": 0.776255707762557, + "noteOrder": 4753, + "time": 0.8995433789954338, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2146,18 +4814,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4148, - "time": 0.7853881278538812, + "noteOrder": 4753, + "time": 0.8995433789954338, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2174,13 +4842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 4197, - "time": 0.7945205479452054, + "noteOrder": 4778, + "time": 0.904109589041096, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2192,16 +4860,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.8219178082191781, + "noteOrder": 4802, + "time": 0.908675799086758, "position": { "x": 6, "y": 0 @@ -2220,13 +4888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4390, - "time": 0.8310502283105023, + "noteOrder": 4802, + "time": 0.908675799086758, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2238,18 +4906,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4438, - "time": 0.8401826484018264, + "noteOrder": 4826, + "time": 0.9132420091324202, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2261,16 +4929,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4486, - "time": 0.8493150684931506, + "noteOrder": 4850, + "time": 0.9178082191780822, "position": { "x": 4, "y": 0 @@ -2289,13 +4957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4534, - "time": 0.8584474885844748, + "noteOrder": 4850, + "time": 0.9178082191780822, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2307,16 +4975,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4582, - "time": 0.8675799086757991, + "noteOrder": 4874, + "time": 0.9223744292237444, "position": { "x": 6, "y": 0 @@ -2330,18 +4998,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4631, - "time": 0.8767123287671234, + "noteOrder": 4898, + "time": 0.9269406392694064, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2358,13 +5026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4679, - "time": 0.8858447488584476, + "noteOrder": 4898, + "time": 0.9269406392694064, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2381,11 +5049,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4727, - "time": 0.8949771689497718, + "noteOrder": 4922, + "time": 0.9315068493150686, "position": { "x": 4, "y": 0 @@ -2404,13 +5072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4775, - "time": 0.9041095890410958, + "noteOrder": 4947, + "time": 0.9360730593607306, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2422,16 +5090,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4824, - "time": 0.91324200913242, + "noteOrder": 4947, + "time": 0.9360730593607306, "position": { "x": 4, "y": 0 @@ -2450,13 +5118,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4872, - "time": 0.9223744292237442, + "noteOrder": 4971, + "time": 0.9406392694063928, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2473,11 +5141,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4920, - "time": 0.9315068493150686, + "noteOrder": 4995, + "time": 0.9452054794520548, "position": { "x": 4, "y": 0 @@ -2491,16 +5159,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4968, - "time": 0.9406392694063928, + "noteOrder": 4995, + "time": 0.9452054794520548, "position": { "x": 4, "y": 0 @@ -2520,9 +5188,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5017, + "noteOrder": 5019, "time": 0.949771689497717, "position": { "x": 3, @@ -2543,9 +5211,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5065, + "noteOrder": 5067, "time": 0.9589041095890412, "position": { "x": 5, diff --git a/tracks/HANDS UP IN THE AIR/info.json b/tracks/HANDS UP IN THE AIR/info.json index 8c5aa3d0..2785d399 100644 --- a/tracks/HANDS UP IN THE AIR/info.json +++ b/tracks/HANDS UP IN THE AIR/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HANDS UP IN THE AIR", - "SongLength": "113.162449", + "SongLength": "103.209796", "SongAuthorName": "U1", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HARD MODE/270_difficulty_1a.json b/tracks/HARD MODE/270_difficulty_1a.json index 37fbdb5b..a9c2ad19 100644 --- a/tracks/HARD MODE/270_difficulty_1a.json +++ b/tracks/HARD MODE/270_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 192, - "time": 0.026688907422852376, + "time": 0.02668890742285238, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 240, - "time": 0.03336113427856547, + "time": 0.03336113427856548, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 240, - "time": 0.03336113427856547, + "time": 0.03336113427856548, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 288, - "time": 0.040033361134278564, + "time": 0.04003336113427857, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 300, - "time": 0.041701417848206836, + "time": 0.04170141784820684, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 336, - "time": 0.04670558798999166, + "noteOrder": 337, + "time": 0.046705587989991665, "position": { "x": 3, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 360, - "time": 0.0500417014178482, + "noteOrder": 361, + "time": 0.05004170141784821, "position": { "x": 7, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 384, - "time": 0.05337781484570475, + "noteOrder": 385, + "time": 0.05337781484570476, "position": { "x": 3, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 408, - "time": 0.0567139282735613, + "noteOrder": 409, + "time": 0.05671392827356131, "position": { "x": 7, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 433, "time": 0.06005004170141785, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 433, "time": 0.06005004170141785, "position": { "x": 4, @@ -354,7 +354,7 @@ }, { "noteOrder": 481, - "time": 0.06672226855713094, + "time": 0.06672226855713095, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 493, - "time": 0.0683903252710592, + "time": 0.06839032527105922, "position": { "x": 5, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 553, - "time": 0.07673060884070057, + "time": 0.07673060884070058, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 577, - "time": 0.08006672226855713, + "time": 0.08006672226855714, "position": { "x": 7, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 601, - "time": 0.08340283569641367, + "time": 0.08340283569641369, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 649, - "time": 0.09007506255212677, + "time": 0.09007506255212679, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 673, - "time": 0.09341117597998332, + "time": 0.09341117597998333, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 721, - "time": 0.1000834028356964, + "time": 0.10008340283569642, "position": { "x": 4, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 721, - "time": 0.1000834028356964, + "time": 0.10008340283569642, "position": { "x": 6, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 745, - "time": 0.10341951626355296, + "time": 0.10341951626355297, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 745, - "time": 0.10341951626355296, + "time": 0.10341951626355297, "position": { "x": 7, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 769, - "time": 0.1067556296914095, + "time": 0.10675562969140952, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 793, - "time": 0.11009174311926605, + "time": 0.11009174311926606, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 817, - "time": 0.1134278565471226, + "time": 0.11342785654712262, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 889, - "time": 0.12343619683069224, + "time": 0.12343619683069225, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 985, - "time": 0.1367806505421184, + "noteOrder": 986, + "time": 0.13678065054211844, "position": { "x": 2, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.140116763969975, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.14345287739783152, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.1501251042535446, + "noteOrder": 1082, + "time": 0.15012510425354464, "position": { "x": 8, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.15346121768140114, + "noteOrder": 1106, + "time": 0.15346121768140117, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.15679733110925773, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1177, - "time": 0.1634695579649708, + "noteOrder": 1178, + "time": 0.16346955796497084, "position": { "x": 2, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.16680567139282734, + "noteOrder": 1202, + "time": 0.16680567139282737, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.1701417848206839, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1273, - "time": 0.176814011676397, + "noteOrder": 1274, + "time": 0.17681401167639701, "position": { "x": 8, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.18015012510425354, + "noteOrder": 1298, + "time": 0.18015012510425357, "position": { "x": 4, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1322, - "time": 0.18348623853211007, + "time": 0.1834862385321101, "position": { "x": 7, "y": 0 @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1346, - "time": 0.18682235195996663, + "time": 0.18682235195996666, "position": { "x": 2, "y": 0 @@ -1154,7 +1154,7 @@ }, { "noteOrder": 1418, - "time": 0.19683069224353628, + "time": 0.1968306922435363, "position": { "x": 5, "y": 0 @@ -1174,7 +1174,7 @@ }, { "noteOrder": 1466, - "time": 0.20350291909924936, + "time": 0.2035029190992494, "position": { "x": 8, "y": 0 @@ -1194,7 +1194,7 @@ }, { "noteOrder": 1490, - "time": 0.20683903252710592, + "time": 0.20683903252710595, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2268557130942452, + "noteOrder": 1635, + "time": 0.22685571309424524, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1646, - "time": 0.22852376980817346, + "noteOrder": 1647, + "time": 0.2285237698081735, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.23019182652210174, + "noteOrder": 1659, + "time": 0.23019182652210177, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1670, - "time": 0.23185988323603002, + "noteOrder": 1671, + "time": 0.23185988323603005, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.23686405337781483, + "noteOrder": 1707, + "time": 0.23686405337781488, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1898, - "time": 0.2635529608006672, + "noteOrder": 1899, + "time": 0.26355296080066726, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.29024186822351955, + "noteOrder": 2091, + "time": 0.29024186822351966, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.2969140950792327, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.3202668890742285, + "noteOrder": 2308, + "time": 0.32026688907422857, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.3302752293577982, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.3336113427856547, + "noteOrder": 2404, + "time": 0.33361134278565474, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.33694745621351124, + "noteOrder": 2428, + "time": 0.3369474562135113, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3402835696413678, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3402835696413678, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.34361968306922436, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.34361968306922436, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2667, + "noteOrder": 2668, "time": 0.37030859049207676, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.3969974979149291, + "noteOrder": 2860, + "time": 0.39699749791492916, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.4036697247706422, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.427022518765638, + "noteOrder": 3077, + "time": 0.42702251876563807, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4370308590492077, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.45037531276063386, + "noteOrder": 3245, + "time": 0.4503753127606339, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.45037531276063386, + "noteOrder": 3245, + "time": 0.4503753127606339, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4537114261884904, + "noteOrder": 3269, + "time": 0.4537114261884905, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3292, - "time": 0.4570475396163469, + "noteOrder": 3293, + "time": 0.457047539616347, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.4603836530442035, + "noteOrder": 3317, + "time": 0.46038365304420353, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.4603836530442035, + "noteOrder": 3317, + "time": 0.46038365304420353, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.46371976647206004, + "noteOrder": 3341, + "time": 0.4637197664720601, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.46371976647206004, + "noteOrder": 3341, + "time": 0.4637197664720601, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.4670558798999166, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3388, + "noteOrder": 3389, "time": 0.47039199332777315, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.47372810675562965, + "noteOrder": 3413, + "time": 0.47372810675562976, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.47372810675562965, + "noteOrder": 3413, + "time": 0.47372810675562976, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3436, - "time": 0.4770642201834862, + "noteOrder": 3437, + "time": 0.4770642201834863, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3436, - "time": 0.4770642201834862, + "noteOrder": 3437, + "time": 0.4770642201834863, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.4804003336113428, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3472, - "time": 0.48206839032527105, + "noteOrder": 3473, + "time": 0.4820683903252711, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.4837364470391993, + "noteOrder": 3485, + "time": 0.4837364470391994, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3496, + "noteOrder": 3497, "time": 0.4854045037531276, "position": { "x": 5, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.4870725604670559, + "noteOrder": 3509, + "time": 0.48707256046705594, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3520, - "time": 0.48874061718098416, + "noteOrder": 3521, + "time": 0.4887406171809842, "position": { "x": 5, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.4904086738949124, + "noteOrder": 3533, + "time": 0.49040867389491244, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.49374478732276894, + "noteOrder": 3557, + "time": 0.493744787322769, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.49374478732276894, + "noteOrder": 3557, + "time": 0.493744787322769, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3580, + "noteOrder": 3582, "time": 0.49708090075062555, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3580, + "noteOrder": 3582, "time": 0.49708090075062555, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5104253544620517, "position": { "x": 2, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5137614678899083, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.5170975813177647, + "noteOrder": 3726, + "time": 0.5170975813177648, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.5204336947456214, "position": { "x": 8, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3772, - "time": 0.5237698081734778, + "noteOrder": 3774, + "time": 0.523769808173478, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.5271059216013344, + "noteOrder": 3798, + "time": 0.5271059216013345, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3820, - "time": 0.530442035029191, + "noteOrder": 3822, + "time": 0.5304420350291911, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.5371142618849041, "position": { "x": 8, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.5404503753127606, + "noteOrder": 3894, + "time": 0.5404503753127607, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.5437864887406172, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3941, - "time": 0.5471226021684736, + "noteOrder": 3942, + "time": 0.5471226021684737, "position": { "x": 2, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.5504587155963302, + "noteOrder": 3966, + "time": 0.5504587155963304, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3989, + "noteOrder": 3990, "time": 0.5537948290241869, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4014, "time": 0.5571309424520434, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4086, "time": 0.567139282735613, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4255, "time": 0.5904920767306089, "position": { "x": 3, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4265, - "time": 0.5921601334445371, + "noteOrder": 4267, + "time": 0.5921601334445372, "position": { "x": 5, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4279, "time": 0.5938281901584654, "position": { "x": 7, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4301, - "time": 0.5971643035863219, + "noteOrder": 4303, + "time": 0.597164303586322, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6171809841534612, + "noteOrder": 4447, + "time": 0.6171809841534613, "position": { "x": 3, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4493, + "noteOrder": 4495, "time": 0.6238532110091743, "position": { "x": 7, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4541, - "time": 0.6305254378648874, + "noteOrder": 4543, + "time": 0.6305254378648875, "position": { "x": 8, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.6338615512927439, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4589, - "time": 0.6371976647206005, + "noteOrder": 4591, + "time": 0.6371976647206006, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4637, - "time": 0.6438698915763136, + "noteOrder": 4639, + "time": 0.6438698915763137, "position": { "x": 2, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4661, - "time": 0.6472060050041701, + "noteOrder": 4663, + "time": 0.6472060050041702, "position": { "x": 6, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.6505421184320267, "position": { "x": 3, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.6538782318598833, + "noteOrder": 4711, + "time": 0.6538782318598834, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.6572143452877398, "position": { "x": 3, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4830, + "noteOrder": 4831, "time": 0.6705587989991659, "position": { "x": 8, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.6738949124270225, + "noteOrder": 4855, + "time": 0.6738949124270226, "position": { "x": 7, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.6772310258548792, "position": { "x": 5, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4926, - "time": 0.6839032527105922, + "noteOrder": 4928, + "time": 0.6839032527105923, "position": { "x": 2, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.6872393661384487, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.6905754795663053, "position": { "x": 5, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5094, - "time": 0.707256046705588, + "noteOrder": 5096, + "time": 0.7072560467055881, "position": { "x": 7, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5106, + "noteOrder": 5108, "time": 0.7089241034195163, "position": { "x": 5, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5118, + "noteOrder": 5120, "time": 0.7105921601334446, "position": { "x": 3, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5130, - "time": 0.7122602168473727, + "noteOrder": 5132, + "time": 0.7122602168473728, "position": { "x": 7, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5166, + "noteOrder": 5168, "time": 0.7172643869891576, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.7439532944120101, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5406, - "time": 0.7506255212677231, + "noteOrder": 5408, + "time": 0.7506255212677232, "position": { "x": 3, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5526, - "time": 0.7673060884070058, + "noteOrder": 5529, + "time": 0.767306088407006, "position": { "x": 3, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5538, + "noteOrder": 5541, "time": 0.7689741451209341, "position": { "x": 5, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5598, + "noteOrder": 5601, "time": 0.7773144286905755, "position": { "x": 3, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5622, - "time": 0.780650542118432, + "noteOrder": 5625, + "time": 0.7806505421184321, "position": { "x": 7, "y": 0 @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5697, "time": 0.7906588824020017, "position": { "x": 3, @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5719, - "time": 0.7939949958298582, + "noteOrder": 5721, + "time": 0.7939949958298583, "position": { "x": 7, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5743, - "time": 0.7973311092577147, + "noteOrder": 5745, + "time": 0.7973311092577149, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6127, - "time": 0.8507089241034195, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { "x": 7, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6175, - "time": 0.8573811509591326, + "noteOrder": 6178, + "time": 0.8573811509591327, "position": { "x": 7, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6295, + "noteOrder": 6298, "time": 0.8740617180984154, "position": { "x": 7, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6307, - "time": 0.8757297748123436, + "noteOrder": 6310, + "time": 0.8757297748123437, "position": { "x": 5, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6367, - "time": 0.8840700583819849, + "noteOrder": 6370, + "time": 0.884070058381985, "position": { "x": 7, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6391, - "time": 0.8874061718098415, + "noteOrder": 6394, + "time": 0.8874061718098416, "position": { "x": 3, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6463, - "time": 0.897414512093411, + "noteOrder": 6466, + "time": 0.8974145120934113, "position": { "x": 7, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6487, - "time": 0.9007506255212677, + "noteOrder": 6490, + "time": 0.9007506255212678, "position": { "x": 3, "y": 0 @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6511, + "noteOrder": 6514, "time": 0.9040867389491243, "position": { "x": 3, @@ -3316,10 +3316,10 @@ "lineNodes": [ { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.13344453711426188, + "time": 0.1334445371142619, "position": { "x": 4, "y": 0 @@ -3339,10 +3339,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, - "time": 0.1367806505421184, + "noteOrder": 986, + "time": 0.13678065054211844, "position": { "x": 4, "y": 0 @@ -3362,9 +3362,9 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.14678899082568808, "position": { "x": 6, @@ -3385,9 +3385,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.14678899082568808, "position": { "x": 6, @@ -3408,10 +3408,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.1501251042535446, + "noteOrder": 1082, + "time": 0.15012510425354464, "position": { "x": 6, "y": 0 @@ -3431,10 +3431,10 @@ }, { "lineGroupId": 47, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.16013344453711426, + "noteOrder": 1154, + "time": 0.16013344453711428, "position": { "x": 4, "y": 0 @@ -3454,10 +3454,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.16013344453711426, + "noteOrder": 1154, + "time": 0.16013344453711428, "position": { "x": 4, "y": 0 @@ -3477,10 +3477,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1177, - "time": 0.1634695579649708, + "noteOrder": 1178, + "time": 0.16346955796497084, "position": { "x": 4, "y": 0 @@ -3500,9 +3500,9 @@ }, { "lineGroupId": 51, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.17347789824854046, "position": { "x": 6, @@ -3523,9 +3523,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.17347789824854046, "position": { "x": 6, @@ -3546,10 +3546,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.176814011676397, + "noteOrder": 1274, + "time": 0.17681401167639701, "position": { "x": 6, "y": 0 @@ -3569,10 +3569,10 @@ }, { "lineGroupId": 55, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1346, - "time": 0.18682235195996663, + "time": 0.18682235195996666, "position": { "x": 4, "y": 0 @@ -3592,7 +3592,7 @@ }, { "lineGroupId": 55, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1370, "time": 0.1901584653878232, @@ -3615,10 +3615,10 @@ }, { "lineGroupId": 55, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1442, - "time": 0.2001668056713928, + "time": 0.20016680567139283, "position": { "x": 7, "y": 0 @@ -3638,10 +3638,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, - "time": 0.2001668056713928, + "time": 0.20016680567139283, "position": { "x": 6, "y": 0 @@ -3661,10 +3661,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1466, - "time": 0.20350291909924936, + "time": 0.2035029190992494, "position": { "x": 6, "y": 0 @@ -3684,10 +3684,10 @@ }, { "lineGroupId": 63, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1538, - "time": 0.213511259382819, + "time": 0.21351125938281904, "position": { "x": 3, "y": 0 @@ -3707,10 +3707,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1538, - "time": 0.213511259382819, + "time": 0.21351125938281904, "position": { "x": 7, "y": 0 @@ -3729,13 +3729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1562, - "time": 0.21684737281067556, + "noteOrder": 1550, + "time": 0.21517931609674731, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3747,18 +3747,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1586, - "time": 0.2201834862385321, + "noteOrder": 1550, + "time": 0.21517931609674731, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3775,11 +3775,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1610, - "time": 0.22351959966638865, + "noteOrder": 1562, + "time": 0.21684737281067556, "position": { "x": 3, "y": 0 @@ -3798,13 +3798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, - "time": 0.2335279399499583, + "noteOrder": 1574, + "time": 0.21851542952460384, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3816,18 +3816,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1730, - "time": 0.2402001668056714, + "noteOrder": 1574, + "time": 0.21851542952460384, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3844,13 +3844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, - "time": 0.24353628023352794, + "noteOrder": 1586, + "time": 0.22018348623853212, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3867,13 +3867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, - "time": 0.24687239366138447, + "noteOrder": 1598, + "time": 0.2218515429524604, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3885,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1802, - "time": 0.25020850708924103, + "noteOrder": 1598, + "time": 0.2218515429524604, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3913,13 +3913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2535446205170976, + "noteOrder": 1610, + "time": 0.22351959966638868, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3936,11 +3936,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1850, - "time": 0.25688073394495414, + "noteOrder": 1622, + "time": 0.22518765638031696, "position": { "x": 3, "y": 0 @@ -3954,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.2602168473728107, + "noteOrder": 1622, + "time": 0.22518765638031696, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3982,11 +3982,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.26688907422852376, + "noteOrder": 1683, + "time": 0.2335279399499583, "position": { "x": 7, "y": 0 @@ -4005,11 +4005,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1946, - "time": 0.2702251876563803, + "noteOrder": 1695, + "time": 0.23519599666388658, "position": { "x": 7, "y": 0 @@ -4023,16 +4023,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1970, - "time": 0.2735613010842368, + "noteOrder": 1695, + "time": 0.23519599666388658, "position": { "x": 6, "y": 0 @@ -4051,11 +4051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1994, - "time": 0.27689741451209343, + "noteOrder": 1707, + "time": 0.23686405337781488, "position": { "x": 6, "y": 0 @@ -4069,18 +4069,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2018, - "time": 0.28023352793995, + "noteOrder": 1707, + "time": 0.23686405337781488, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4097,13 +4097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2042, - "time": 0.2835696413678065, + "noteOrder": 1731, + "time": 0.2402001668056714, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4120,13 +4120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, - "time": 0.28690575479566305, + "noteOrder": 1743, + "time": 0.2418682235195997, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4138,18 +4138,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2114, - "time": 0.29357798165137616, + "noteOrder": 1743, + "time": 0.2418682235195997, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4166,13 +4166,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2162, - "time": 0.3002502085070892, + "noteOrder": 1755, + "time": 0.24353628023352797, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4184,18 +4184,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2187, - "time": 0.3035863219349458, + "noteOrder": 1755, + "time": 0.24353628023352797, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4212,13 +4212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, - "time": 0.3069224353628023, + "noteOrder": 1755, + "time": 0.24353628023352797, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4235,11 +4235,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.3102585487906589, + "noteOrder": 1767, + "time": 0.24520433694745622, "position": { "x": 3, "y": 0 @@ -4253,18 +4253,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.31359466221851545, + "noteOrder": 1767, + "time": 0.24520433694745622, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4281,13 +4281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2283, - "time": 0.31693077564637195, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4304,13 +4304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2283, - "time": 0.31693077564637195, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4322,16 +4322,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.3202668890742285, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { "x": 4, "y": 0 @@ -4350,11 +4350,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2331, - "time": 0.32360300250208507, + "noteOrder": 1791, + "time": 0.24854045037531278, "position": { "x": 4, "y": 0 @@ -4368,16 +4368,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2355, - "time": 0.3269391159299416, + "noteOrder": 1791, + "time": 0.24854045037531278, "position": { "x": 5, "y": 0 @@ -4391,18 +4391,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2355, - "time": 0.3269391159299416, + "noteOrder": 1803, + "time": 0.2502085070892411, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4419,13 +4419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2379, - "time": 0.3302752293577982, + "noteOrder": 1803, + "time": 0.2502085070892411, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4442,13 +4442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.3469557964970809, + "noteOrder": 1803, + "time": 0.2502085070892411, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4465,13 +4465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, - "time": 0.3502919099249374, + "noteOrder": 1815, + "time": 0.2518765638031693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4483,18 +4483,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2547, - "time": 0.353628023352794, + "noteOrder": 1815, + "time": 0.2518765638031693, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4511,13 +4511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2571, - "time": 0.35696413678065053, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4529,16 +4529,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2595, - "time": 0.3603002502085071, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { "x": 6, "y": 0 @@ -4557,13 +4557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2619, - "time": 0.36363636363636365, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4580,13 +4580,8615 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2643, - "time": 0.36697247706422015, + "noteOrder": 1839, + "time": 0.25521267723102586, "position": { - "x": 7, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1839, + "time": 0.25521267723102586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1851, + "time": 0.25688073394495414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1851, + "time": 0.25688073394495414, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1851, + "time": 0.25688073394495414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.2585487906588824, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1863, + "time": 0.2585487906588824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2602168473728107, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2602168473728107, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2602168473728107, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1887, + "time": 0.261884904086739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1887, + "time": 0.261884904086739, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1899, + "time": 0.26355296080066726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1899, + "time": 0.26355296080066726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.2668890742285238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1935, + "time": 0.26855713094245204, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1935, + "time": 0.26855713094245204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2702251876563804, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2702251876563804, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.2702251876563804, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.2718932443703086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1959, + "time": 0.2718932443703086, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1971, + "time": 0.2735613010842369, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1971, + "time": 0.2735613010842369, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1971, + "time": 0.2735613010842369, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.2752293577981652, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1983, + "time": 0.2752293577981652, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1995, + "time": 0.27689741451209343, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1995, + "time": 0.27689741451209343, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.27689741451209343, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2007, + "time": 0.2785654712260217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2007, + "time": 0.2785654712260217, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2019, + "time": 0.28023352793995, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2019, + "time": 0.28023352793995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2019, + "time": 0.28023352793995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2031, + "time": 0.28190158465387827, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2031, + "time": 0.28190158465387827, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2043, + "time": 0.2835696413678065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2043, + "time": 0.2835696413678065, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2043, + "time": 0.2835696413678065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2055, + "time": 0.2852376980817348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2055, + "time": 0.2852376980817348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2067, + "time": 0.28690575479566305, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2067, + "time": 0.28690575479566305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.28690575479566305, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2079, + "time": 0.2885738115095913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2079, + "time": 0.2885738115095913, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2091, + "time": 0.29024186822351966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2091, + "time": 0.29024186822351966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2115, + "time": 0.29357798165137616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2127, + "time": 0.29524603836530444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2127, + "time": 0.29524603836530444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2139, + "time": 0.2969140950792327, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2139, + "time": 0.2969140950792327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2151, + "time": 0.298582151793161, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2151, + "time": 0.298582151793161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3002502085070893, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3002502085070893, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3002502085070893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2175, + "time": 0.3019182652210175, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2175, + "time": 0.3019182652210175, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2187, + "time": 0.30358632193494584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2187, + "time": 0.30358632193494584, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2187, + "time": 0.30358632193494584, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2199, + "time": 0.3052543786488741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2199, + "time": 0.3052543786488741, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2211, + "time": 0.30692243536280234, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2211, + "time": 0.30692243536280234, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.30692243536280234, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2223, + "time": 0.30859049207673067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2223, + "time": 0.30859049207673067, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3102585487906589, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3119266055045872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3119266055045872, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.31359466221851545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2284, + "time": 0.31693077564637195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2284, + "time": 0.31693077564637195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2308, + "time": 0.32026688907422857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2332, + "time": 0.3236030025020851, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2356, + "time": 0.3269391159299417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2356, + "time": 0.3269391159299417, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2380, + "time": 0.3302752293577982, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.3469557964970809, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2512, + "time": 0.3486238532110092, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2512, + "time": 0.3486238532110092, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2524, + "time": 0.35029190992493753, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2524, + "time": 0.35029190992493753, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2524, + "time": 0.35029190992493753, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.35195996663886575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2536, + "time": 0.35195996663886575, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2560, + "time": 0.3552960800667223, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2560, + "time": 0.3552960800667223, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3569641367806506, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3569641367806506, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3569641367806506, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2584, + "time": 0.3586321934945788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2584, + "time": 0.3586321934945788, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2608, + "time": 0.36196830692243537, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2608, + "time": 0.36196830692243537, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2620, + "time": 0.36363636363636365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2620, + "time": 0.36363636363636365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.36363636363636365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2632, + "time": 0.365304420350292, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2632, + "time": 0.365304420350292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.3686405337781485, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2656, + "time": 0.3686405337781485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2668, + "time": 0.37030859049207676, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2668, + "time": 0.37030859049207676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.3736447039199333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2704, + "time": 0.3753127606338616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2704, + "time": 0.3753127606338616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2716, + "time": 0.3769808173477898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2716, + "time": 0.3769808173477898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2716, + "time": 0.3769808173477898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2728, + "time": 0.37864887406171815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2728, + "time": 0.37864887406171815, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2740, + "time": 0.3803169307756464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2740, + "time": 0.3803169307756464, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2740, + "time": 0.3803169307756464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2752, + "time": 0.38198498748957466, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2752, + "time": 0.38198498748957466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2764, + "time": 0.383653044203503, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2764, + "time": 0.383653044203503, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2764, + "time": 0.383653044203503, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2776, + "time": 0.3853211009174312, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2776, + "time": 0.3853211009174312, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2788, + "time": 0.3869891576313595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2788, + "time": 0.3869891576313595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.3869891576313595, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2800, + "time": 0.38865721434528777, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2800, + "time": 0.38865721434528777, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2812, + "time": 0.39032527105921605, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2812, + "time": 0.39032527105921605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2812, + "time": 0.39032527105921605, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2824, + "time": 0.3919933277731443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2824, + "time": 0.3919933277731443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2836, + "time": 0.3936613844870726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2836, + "time": 0.3936613844870726, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2836, + "time": 0.3936613844870726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2848, + "time": 0.39532944120100083, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2848, + "time": 0.39532944120100083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2860, + "time": 0.39699749791492916, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2860, + "time": 0.39699749791492916, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.40033361134278567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2896, + "time": 0.402001668056714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2896, + "time": 0.402001668056714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2908, + "time": 0.4036697247706422, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2908, + "time": 0.4036697247706422, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2920, + "time": 0.4053377814845705, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2920, + "time": 0.4053377814845705, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2933, + "time": 0.4070058381984988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2933, + "time": 0.4070058381984988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2933, + "time": 0.4070058381984988, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2945, + "time": 0.40867389491242706, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2945, + "time": 0.40867389491242706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4103419516263553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4103419516263553, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4103419516263553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2969, + "time": 0.4120100083402836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2969, + "time": 0.4120100083402836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4136780650542119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4136780650542119, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4136780650542119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4153461217681401, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4153461217681401, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.41701417848206845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4186822351959967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4186822351959967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3029, + "time": 0.42035029190992496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3053, + "time": 0.4236864053377815, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3053, + "time": 0.4236864053377815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3077, + "time": 0.42702251876563807, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.43035863219349463, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3125, + "time": 0.43369474562135113, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3125, + "time": 0.43369474562135113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4370308590492077, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.44036697247706424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3221, + "time": 0.44703919933277736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.5004170141784822, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5037531276063386, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.5004170141784822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5037531276063386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5070892410341952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5204336947456214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3774, + "time": 0.523769808173478, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3822, + "time": 0.5304420350291911, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5337781484570476, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.5471226021684737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3966, + "time": 0.5504587155963304, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5571309424520434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4038, + "time": 0.5604670558799, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4062, + "time": 0.5638031693077565, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4062, + "time": 0.5638031693077565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4110, + "time": 0.5704753961634697, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4158, + "time": 0.5771476230191827, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4158, + "time": 0.5771476230191827, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4182, + "time": 0.5804837364470393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4182, + "time": 0.5804837364470393, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4206, + "time": 0.5838198498748958, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4206, + "time": 0.5838198498748958, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4231, + "time": 0.5871559633027523, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.5738115095913261, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4158, + "time": 0.5771476230191827, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4158, + "time": 0.5771476230191827, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4182, + "time": 0.5804837364470393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4182, + "time": 0.5804837364470393, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4206, + "time": 0.5838198498748958, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4206, + "time": 0.5838198498748958, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4231, + "time": 0.5871559633027523, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6005004170141786, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4351, + "time": 0.603836530442035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4351, + "time": 0.603836530442035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4375, + "time": 0.6071726438698917, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4399, + "time": 0.6105087572977482, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4399, + "time": 0.6105087572977482, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4423, + "time": 0.6138448707256047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4447, + "time": 0.6171809841534613, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4471, + "time": 0.6205170975813178, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4495, + "time": 0.6238532110091743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6271893244370309, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4543, + "time": 0.6305254378648875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4615, + "time": 0.6405337781484571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4615, + "time": 0.6405337781484571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4639, + "time": 0.6438698915763137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4711, + "time": 0.6538782318598834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.6605504587155964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4783, + "time": 0.6638865721434529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.6605504587155964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4783, + "time": 0.6638865721434529, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4807, + "time": 0.6672226855713095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4831, + "time": 0.6705587989991659, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4904, + "time": 0.6805671392827356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4904, + "time": 0.6805671392827356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4928, + "time": 0.6839032527105923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5000, + "time": 0.6939115929941618, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5000, + "time": 0.6939115929941618, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5012, + "time": 0.6955796497080902, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5012, + "time": 0.6955796497080902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5024, + "time": 0.6972477064220184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5036, + "time": 0.6989157631359467, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5036, + "time": 0.6989157631359467, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5048, + "time": 0.7005838198498751, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5060, + "time": 0.7022518765638032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5060, + "time": 0.7022518765638032, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5072, + "time": 0.7039199332777315, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5084, + "time": 0.7055879899916598, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5084, + "time": 0.7055879899916598, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7139282735613012, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5156, + "time": 0.7155963302752295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5156, + "time": 0.7155963302752295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5168, + "time": 0.7172643869891576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5168, + "time": 0.7172643869891576, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5192, + "time": 0.7206005004170143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5204, + "time": 0.7222685571309425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5204, + "time": 0.7222685571309425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5216, + "time": 0.7239366138448707, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5216, + "time": 0.7239366138448707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5216, + "time": 0.7239366138448707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5228, + "time": 0.7256046705587991, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5228, + "time": 0.7256046705587991, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5252, + "time": 0.7289407839866556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5252, + "time": 0.7289407839866556, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5264, + "time": 0.730608840700584, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5264, + "time": 0.730608840700584, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5264, + "time": 0.730608840700584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5276, + "time": 0.7322768974145121, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5276, + "time": 0.7322768974145121, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5300, + "time": 0.7356130108423687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5300, + "time": 0.7356130108423687, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7389491242702252, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7389491242702252, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5348, + "time": 0.7422852376980817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5348, + "time": 0.7422852376980817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7439532944120101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7439532944120101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5384, + "time": 0.7472894078398666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5396, + "time": 0.7489574645537949, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5396, + "time": 0.7489574645537949, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5408, + "time": 0.7506255212677232, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5408, + "time": 0.7506255212677232, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5420, + "time": 0.7522935779816515, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5420, + "time": 0.7522935779816515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5432, + "time": 0.7539616346955796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5432, + "time": 0.7539616346955796, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5432, + "time": 0.7539616346955796, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5444, + "time": 0.755629691409508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5444, + "time": 0.755629691409508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5456, + "time": 0.7572977481234363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5456, + "time": 0.7572977481234363, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5456, + "time": 0.7572977481234363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5468, + "time": 0.7589658048373645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5468, + "time": 0.7589658048373645, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5480, + "time": 0.7606338615512928, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5480, + "time": 0.7606338615512928, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5480, + "time": 0.7606338615512928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5492, + "time": 0.7623019182652211, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5492, + "time": 0.7623019182652211, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5504, + "time": 0.7639699749791493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5516, + "time": 0.7656380316930776, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5516, + "time": 0.7656380316930776, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5553, + "time": 0.7706422018348624, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5565, + "time": 0.7723102585487908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5565, + "time": 0.7723102585487908, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5577, + "time": 0.773978315262719, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5589, + "time": 0.7756463719766472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5589, + "time": 0.7756463719766472, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5601, + "time": 0.7773144286905755, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5601, + "time": 0.7773144286905755, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5613, + "time": 0.7789824854045038, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5613, + "time": 0.7789824854045038, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5625, + "time": 0.7806505421184321, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5625, + "time": 0.7806505421184321, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5637, + "time": 0.7823185988323604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5637, + "time": 0.7823185988323604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5649, + "time": 0.7839866555462885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 259, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5649, + "time": 0.7839866555462885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5649, + "time": 0.7839866555462885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5661, + "time": 0.7856547122602169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5661, + "time": 0.7856547122602169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5673, + "time": 0.7873227689741452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5673, + "time": 0.7873227689741452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5673, + "time": 0.7873227689741452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5685, + "time": 0.7889908256880734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5685, + "time": 0.7889908256880734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5697, + "time": 0.7906588824020017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5697, + "time": 0.7906588824020017, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5709, + "time": 0.79232693911593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5709, + "time": 0.79232693911593, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5721, + "time": 0.7939949958298583, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5721, + "time": 0.7939949958298583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5733, + "time": 0.7956630525437866, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5733, + "time": 0.7956630525437866, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5745, + "time": 0.7973311092577149, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5745, + "time": 0.7973311092577149, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5769, + "time": 0.8006672226855713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5781, + "time": 0.8023352793994997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5781, + "time": 0.8023352793994997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5793, + "time": 0.804003336113428, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5793, + "time": 0.804003336113428, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5793, + "time": 0.804003336113428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5805, + "time": 0.8056713928273561, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5805, + "time": 0.8056713928273561, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5817, + "time": 0.8073394495412844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5817, + "time": 0.8073394495412844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5817, + "time": 0.8073394495412844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5829, + "time": 0.8090075062552128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5829, + "time": 0.8090075062552128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5841, + "time": 0.810675562969141, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5841, + "time": 0.810675562969141, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5841, + "time": 0.810675562969141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5853, + "time": 0.8123436196830693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5853, + "time": 0.8123436196830693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5937, + "time": 0.8240200166805672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5865, + "time": 0.8140116763969976, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4603,11 +13205,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2691, - "time": 0.37364470391993326, + "noteOrder": 5889, + "time": 0.8173477898248541, "position": { "x": 3, "y": 0 @@ -4621,16 +13223,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2715, - "time": 0.3769808173477898, + "noteOrder": 5913, + "time": 0.8206839032527106, "position": { "x": 3, "y": 0 @@ -4649,13 +13251,36 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2739, - "time": 0.3803169307756464, + "noteOrder": 5937, + "time": 0.8240200166805672, "position": { - "x": 4, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5961, + "time": 0.8273561301084238, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4672,13 +13297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2763, - "time": 0.3836530442035029, + "noteOrder": 5973, + "time": 0.829024186822352, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4690,16 +13315,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2787, - "time": 0.3869891576313595, + "noteOrder": 5973, + "time": 0.829024186822352, "position": { "x": 4, "y": 0 @@ -4718,13 +13343,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2811, - "time": 0.390325271059216, + "noteOrder": 5985, + "time": 0.8306922435362802, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4736,18 +13361,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2835, - "time": 0.39366138448707255, + "noteOrder": 5985, + "time": 0.8306922435362802, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4764,13 +13389,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2883, - "time": 0.4003336113427856, + "noteOrder": 5985, + "time": 0.8306922435362802, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4787,11 +13412,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2931, - "time": 0.4070058381984987, + "noteOrder": 5997, + "time": 0.8323603002502086, "position": { "x": 3, "y": 0 @@ -4805,18 +13430,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2955, - "time": 0.4103419516263553, + "noteOrder": 5997, + "time": 0.8323603002502086, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4833,13 +13458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2979, - "time": 0.41367806505421184, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4851,18 +13476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3003, - "time": 0.41701417848206834, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4879,13 +13504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, - "time": 0.42035029190992496, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4902,11 +13527,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 276, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3051, - "time": 0.42368640533778146, + "noteOrder": 6021, + "time": 0.835696413678065, "position": { "x": 4, "y": 0 @@ -4925,13 +13550,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3051, - "time": 0.42368640533778146, + "noteOrder": 6021, + "time": 0.835696413678065, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4943,18 +13568,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 276, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3076, - "time": 0.427022518765638, + "noteOrder": 6033, + "time": 0.8373644703919934, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4966,16 +13591,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3100, - "time": 0.4303586321934946, + "noteOrder": 6033, + "time": 0.8373644703919934, "position": { "x": 6, "y": 0 @@ -4994,13 +13619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 277, "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, - "time": 0.43369474562135113, + "noteOrder": 6033, + "time": 0.8373644703919934, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5012,16 +13637,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3124, - "time": 0.43369474562135113, + "noteOrder": 6045, + "time": 0.8390325271059217, "position": { "x": 4, "y": 0 @@ -5040,11 +13665,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 277, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3148, - "time": 0.4370308590492077, + "noteOrder": 6045, + "time": 0.8390325271059217, "position": { "x": 5, "y": 0 @@ -5063,13 +13688,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3172, - "time": 0.4403669724770642, + "noteOrder": 6057, + "time": 0.8407005838198499, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5081,16 +13706,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 277, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6057, + "time": 0.8407005838198499, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, "indexInLine": 1, "isSliding": false, - "noteOrder": 3220, - "time": 0.4470391993327773, + "noteOrder": 6057, + "time": 0.8407005838198499, "position": { "x": 4, "y": 0 @@ -5109,11 +13757,80 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6069, + "time": 0.8423686405337782, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6069, + "time": 0.8423686405337782, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6081, + "time": 0.8440366972477065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3604, - "time": 0.5004170141784821, + "noteOrder": 6081, + "time": 0.8440366972477065, "position": { "x": 6, "y": 0 @@ -5127,18 +13844,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 279, "indexInLine": 1, "isSliding": false, - "noteOrder": 3628, - "time": 0.5037531276063386, + "noteOrder": 6081, + "time": 0.8440366972477065, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6093, + "time": 0.8457047539616348, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5155,11 +13895,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3604, - "time": 0.5004170141784821, + "noteOrder": 6093, + "time": 0.8457047539616348, "position": { "x": 4, "y": 0 @@ -5173,16 +13913,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 279, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3628, - "time": 0.5037531276063386, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { "x": 4, "y": 0 @@ -5196,18 +13936,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3652, - "time": 0.5070892410341952, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5224,13 +13964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 280, "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.5204336947456214, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5242,18 +13982,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 280, "indexInLine": 2, "isSliding": false, - "noteOrder": 3772, - "time": 0.5237698081734778, + "noteOrder": 6117, + "time": 0.8490408673894914, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5265,16 +14005,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 280, "indexInLine": 3, "isSliding": false, - "noteOrder": 3820, - "time": 0.530442035029191, + "noteOrder": 6117, + "time": 0.8490408673894914, "position": { "x": 4, "y": 0 @@ -5288,18 +14028,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3844, - "time": 0.5337781484570475, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5316,13 +14056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 280, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3941, - "time": 0.5471226021684736, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5339,13 +14079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 282, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3965, - "time": 0.5504587155963302, + "noteOrder": 6153, + "time": 0.8540450375312761, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5357,18 +14097,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 3, + "lineGroupId": 282, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5571309424520434, + "noteOrder": 6165, + "time": 0.8557130942452045, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5380,18 +14120,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.5604670558799, + "noteOrder": 6165, + "time": 0.8557130942452045, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5403,18 +14143,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4109, - "time": 0.5704753961634695, + "noteOrder": 6178, + "time": 0.8573811509591327, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5426,18 +14166,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 4, + "lineGroupId": 282, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4229, - "time": 0.5871559633027523, + "noteOrder": 6178, + "time": 0.8573811509591327, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5449,18 +14189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4133, - "time": 0.5738115095913261, + "noteOrder": 6190, + "time": 0.8590492076730609, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5477,11 +14217,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 4, + "lineGroupId": 282, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4229, - "time": 0.5871559633027523, + "noteOrder": 6190, + "time": 0.8590492076730609, "position": { "x": 6, "y": 0 @@ -5500,13 +14240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4325, - "time": 0.6005004170141784, + "noteOrder": 6202, + "time": 0.8607172643869893, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5523,13 +14263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4373, - "time": 0.6071726438698916, + "noteOrder": 6202, + "time": 0.8607172643869893, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5541,18 +14281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.6138448707256046, + "noteOrder": 6202, + "time": 0.8607172643869893, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5564,18 +14304,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4445, - "time": 0.6171809841534612, + "noteOrder": 6214, + "time": 0.8623853211009175, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5587,18 +14327,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4469, - "time": 0.6205170975813178, + "noteOrder": 6214, + "time": 0.8623853211009175, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5615,11 +14355,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4493, - "time": 0.6238532110091743, + "noteOrder": 6226, + "time": 0.8640533778148458, "position": { "x": 4, "y": 0 @@ -5638,13 +14378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4517, - "time": 0.6271893244370309, + "noteOrder": 6226, + "time": 0.8640533778148458, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5656,18 +14396,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 285, "indexInLine": 1, "isSliding": false, - "noteOrder": 4541, - "time": 0.6305254378648874, + "noteOrder": 6226, + "time": 0.8640533778148458, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5684,13 +14424,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 285, "indexInLine": 2, "isSliding": false, - "noteOrder": 4613, - "time": 0.640533778148457, + "noteOrder": 6238, + "time": 0.865721434528774, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5707,11 +14447,11 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4613, - "time": 0.640533778148457, + "noteOrder": 6238, + "time": 0.865721434528774, "position": { "x": 4, "y": 0 @@ -5725,16 +14465,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 285, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4637, - "time": 0.6438698915763136, + "noteOrder": 6250, + "time": 0.8673894912427023, "position": { "x": 4, "y": 0 @@ -5748,18 +14488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 2, + "lineGroupId": 285, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4709, - "time": 0.6538782318598833, + "noteOrder": 6250, + "time": 0.8673894912427023, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5771,18 +14511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4757, - "time": 0.6605504587155964, + "noteOrder": 6250, + "time": 0.8673894912427023, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5794,18 +14534,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 286, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4781, - "time": 0.6638865721434528, + "noteOrder": 6262, + "time": 0.8690575479566306, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5817,16 +14557,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4757, - "time": 0.6605504587155964, + "noteOrder": 6262, + "time": 0.8690575479566306, "position": { "x": 4, "y": 0 @@ -5845,13 +14585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, + "lineGroupId": 287, "indexInLine": 1, "isSliding": false, - "noteOrder": 4781, - "time": 0.6638865721434528, + "noteOrder": 6274, + "time": 0.8707256046705589, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5863,18 +14603,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 287, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.6672226855713094, + "noteOrder": 6286, + "time": 0.8723936613844872, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5886,16 +14626,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 287, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4830, - "time": 0.6705587989991659, + "noteOrder": 6286, + "time": 0.8723936613844872, "position": { "x": 6, "y": 0 @@ -5909,16 +14649,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 2, + "lineGroupId": 290, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, - "time": 0.6805671392827356, + "noteOrder": 6322, + "time": 0.8773978315262719, "position": { "x": 3, "y": 0 @@ -5937,13 +14677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4902, - "time": 0.6805671392827356, + "noteOrder": 6334, + "time": 0.8790658882402003, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5955,16 +14695,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 1, + "lineGroupId": 290, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4926, - "time": 0.6839032527105922, + "noteOrder": 6334, + "time": 0.8790658882402003, "position": { "x": 4, "y": 0 @@ -5978,16 +14718,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 2, + "lineGroupId": 291, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4998, - "time": 0.6939115929941618, + "noteOrder": 6346, + "time": 0.8807339449541285, "position": { "x": 7, "y": 0 @@ -6006,13 +14746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.6939115929941618, + "noteOrder": 6358, + "time": 0.8824020016680567, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6024,18 +14764,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5022, - "time": 0.6972477064220183, + "noteOrder": 6358, + "time": 0.8824020016680567, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6052,13 +14792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5046, - "time": 0.7005838198498748, + "noteOrder": 6370, + "time": 0.884070058381985, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6070,18 +14810,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5070, - "time": 0.7039199332777314, + "noteOrder": 6370, + "time": 0.884070058381985, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6098,13 +14838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5142, - "time": 0.7139282735613011, + "noteOrder": 6382, + "time": 0.8857381150959134, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6116,18 +14856,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5190, - "time": 0.7206005004170142, + "noteOrder": 6382, + "time": 0.8857381150959134, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6144,13 +14884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5214, - "time": 0.7239366138448707, + "noteOrder": 6394, + "time": 0.8874061718098416, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6162,18 +14902,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5238, - "time": 0.7272727272727273, + "noteOrder": 6394, + "time": 0.8874061718098416, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6190,13 +14930,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5262, - "time": 0.7306088407005837, + "noteOrder": 6406, + "time": 0.8890742285237698, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6208,16 +14948,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5286, - "time": 0.7339449541284403, + "noteOrder": 6406, + "time": 0.8890742285237698, "position": { "x": 6, "y": 0 @@ -6236,13 +14976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5310, - "time": 0.7372810675562969, + "noteOrder": 6418, + "time": 0.8907422852376982, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6254,18 +14994,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 13, "isSliding": false, - "noteOrder": 5334, - "time": 0.7406171809841535, + "noteOrder": 6418, + "time": 0.8907422852376982, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6282,13 +15022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, - "time": 0.7472894078398665, + "noteOrder": 6418, + "time": 0.8907422852376982, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6305,11 +15045,11 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5430, - "time": 0.7539616346955796, + "noteOrder": 6430, + "time": 0.8924103419516264, "position": { "x": 7, "y": 0 @@ -6323,18 +15063,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5454, - "time": 0.7572977481234362, + "noteOrder": 6430, + "time": 0.8924103419516264, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6351,13 +15091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5478, - "time": 0.7606338615512928, + "noteOrder": 6442, + "time": 0.8940783986655547, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6369,18 +15109,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5502, - "time": 0.7639699749791492, + "noteOrder": 6442, + "time": 0.8940783986655547, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6397,11 +15137,11 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5550, - "time": 0.7706422018348623, + "noteOrder": 6442, + "time": 0.8940783986655547, "position": { "x": 7, "y": 0 @@ -6420,13 +15160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5574, - "time": 0.773978315262719, + "noteOrder": 6454, + "time": 0.8957464553794829, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6438,18 +15178,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5646, - "time": 0.7839866555462885, + "noteOrder": 6454, + "time": 0.8957464553794829, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6466,13 +15206,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5670, - "time": 0.7873227689741451, + "noteOrder": 6466, + "time": 0.8974145120934113, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6484,18 +15224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5767, - "time": 0.8006672226855712, + "noteOrder": 6466, + "time": 0.8974145120934113, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6512,13 +15252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 268, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5791, - "time": 0.8040033361134279, + "noteOrder": 6478, + "time": 0.8990825688073395, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6530,18 +15270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 269, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5815, - "time": 0.8073394495412844, + "noteOrder": 6478, + "time": 0.8990825688073395, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6558,13 +15298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5839, - "time": 0.810675562969141, + "noteOrder": 6490, + "time": 0.9007506255212678, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6576,18 +15316,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 2, + "lineGroupId": 295, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5935, - "time": 0.8240200166805671, + "noteOrder": 6490, + "time": 0.9007506255212678, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6599,16 +15339,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5863, - "time": 0.8140116763969975, + "noteOrder": 6502, + "time": 0.9024186822351962, "position": { "x": 7, "y": 0 @@ -6627,13 +15367,13 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 1, + "lineGroupId": 295, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5887, - "time": 0.817347789824854, + "noteOrder": 6502, + "time": 0.9024186822351962, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6650,13 +15390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 2, + "lineGroupId": 295, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5911, - "time": 0.8206839032527106, + "noteOrder": 6514, + "time": 0.9040867389491243, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6673,11 +15413,11 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 3, + "lineGroupId": 295, + "indexInLine": 13, "isSliding": false, - "noteOrder": 5935, - "time": 0.8240200166805671, + "noteOrder": 6514, + "time": 0.9040867389491243, "position": { "x": 7, "y": 0 @@ -6696,11 +15436,11 @@ "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5959, - "time": 0.8273561301084237, + "noteOrder": 6538, + "time": 0.907422852376981, "position": { "x": 3, "y": 0 @@ -6719,11 +15459,11 @@ "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5983, - "time": 0.8306922435362801, + "noteOrder": 6550, + "time": 0.9090909090909092, "position": { "x": 3, "y": 0 @@ -6737,16 +15477,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 276, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6007, - "time": 0.8340283569641367, + "noteOrder": 6550, + "time": 0.9090909090909092, "position": { "x": 4, "y": 0 @@ -6765,11 +15505,11 @@ "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6031, - "time": 0.8373644703919934, + "noteOrder": 6562, + "time": 0.9107589658048374, "position": { "x": 4, "y": 0 @@ -6783,18 +15523,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 278, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6055, - "time": 0.8407005838198499, + "noteOrder": 6562, + "time": 0.9107589658048374, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6811,11 +15551,11 @@ "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, - "time": 0.8440366972477065, + "noteOrder": 6562, + "time": 0.9107589658048374, "position": { "x": 3, "y": 0 @@ -6834,11 +15574,11 @@ "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, - "time": 0.8473728106755629, + "noteOrder": 6574, + "time": 0.9124270225187657, "position": { "x": 3, "y": 0 @@ -6852,18 +15592,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6151, - "time": 0.854045037531276, + "noteOrder": 6574, + "time": 0.9124270225187657, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6880,13 +15620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 284, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6199, - "time": 0.8607172643869891, + "noteOrder": 6586, + "time": 0.914095079232694, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6898,18 +15638,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6223, - "time": 0.8640533778148456, + "noteOrder": 6586, + "time": 0.914095079232694, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6926,11 +15666,11 @@ "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6247, - "time": 0.8673894912427023, + "noteOrder": 6586, + "time": 0.914095079232694, "position": { "x": 3, "y": 0 @@ -6949,13 +15689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 287, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6271, - "time": 0.8707256046705588, + "noteOrder": 6598, + "time": 0.9157631359466223, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6967,18 +15707,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 290, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6319, - "time": 0.8773978315262719, + "noteOrder": 6598, + "time": 0.9157631359466223, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6995,11 +15735,11 @@ "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6343, - "time": 0.8807339449541284, + "noteOrder": 6610, + "time": 0.9174311926605506, "position": { "x": 7, "y": 0 @@ -7018,11 +15758,11 @@ "isPlayAudio": false }, { - "lineGroupId": 294, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6415, - "time": 0.890742285237698, + "noteOrder": 6622, + "time": 0.9190992493744787, "position": { "x": 7, "y": 0 @@ -7036,18 +15776,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6439, - "time": 0.8940783986655546, + "noteOrder": 6622, + "time": 0.9190992493744787, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7064,11 +15804,11 @@ "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6535, - "time": 0.9074228523769808, + "noteOrder": 6634, + "time": 0.9207673060884071, "position": { "x": 3, "y": 0 @@ -7087,11 +15827,11 @@ "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6560, - "time": 0.9107589658048374, + "noteOrder": 6658, + "time": 0.9241034195162636, "position": { "x": 3, "y": 0 @@ -7105,18 +15845,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6584, - "time": 0.9140950792326938, + "noteOrder": 6658, + "time": 0.9241034195162636, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7133,11 +15873,11 @@ "isPlayAudio": false }, { - "lineGroupId": 302, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6608, - "time": 0.9174311926605504, + "noteOrder": 6682, + "time": 0.9274395329441202, "position": { "x": 7, "y": 0 @@ -7156,13 +15896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 303, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6632, - "time": 0.920767306088407, + "noteOrder": 6706, + "time": 0.9307756463719767, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7174,18 +15914,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 305, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6680, - "time": 0.9274395329441201, + "noteOrder": 6706, + "time": 0.9307756463719767, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7203,9 +15943,9 @@ }, { "lineGroupId": 307, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6730, "time": 0.9341117597998332, "position": { "x": 3, @@ -7226,9 +15966,9 @@ }, { "lineGroupId": 307, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9608006672226856, "position": { "x": 3, @@ -7249,9 +15989,9 @@ }, { "lineGroupId": 309, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6730, "time": 0.9341117597998332, "position": { "x": 7, @@ -7272,9 +16012,9 @@ }, { "lineGroupId": 309, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9608006672226856, "position": { "x": 7, diff --git a/tracks/HARD MODE/270_difficulty_1b.json b/tracks/HARD MODE/270_difficulty_1b.json index 89d37a3f..57f6b7c0 100644 --- a/tracks/HARD MODE/270_difficulty_1b.json +++ b/tracks/HARD MODE/270_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 288, - "time": 0.040033361134278564, + "time": 0.04003336113427857, "position": { "x": 7, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 336, - "time": 0.04670558798999166, + "noteOrder": 337, + "time": 0.046705587989991665, "position": { "x": 6, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 336, - "time": 0.04670558798999166, + "noteOrder": 337, + "time": 0.046705587989991665, "position": { "x": 4, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 360, - "time": 0.0500417014178482, + "noteOrder": 361, + "time": 0.05004170141784821, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 360, - "time": 0.0500417014178482, + "noteOrder": 361, + "time": 0.05004170141784821, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 481, - "time": 0.06672226855713094, + "time": 0.06672226855713095, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 553, - "time": 0.07673060884070057, + "time": 0.07673060884070058, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 553, - "time": 0.07673060884070057, + "time": 0.07673060884070058, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 721, - "time": 0.1000834028356964, + "time": 0.10008340283569642, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 817, - "time": 0.1134278565471226, + "time": 0.11342785654712262, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 961, - "time": 0.13344453711426188, + "time": 0.1334445371142619, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 985, - "time": 0.1367806505421184, + "noteOrder": 986, + "time": 0.13678065054211844, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.140116763969975, "position": { "x": 3, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.14345287739783152, "position": { "x": 4, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.1501251042535446, + "noteOrder": 1082, + "time": 0.15012510425354464, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.15346121768140114, + "noteOrder": 1106, + "time": 0.15346121768140117, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.15679733110925773, "position": { "x": 5, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1153, - "time": 0.16013344453711426, + "noteOrder": 1154, + "time": 0.16013344453711428, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1177, - "time": 0.1634695579649708, + "noteOrder": 1178, + "time": 0.16346955796497084, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.16680567139282734, + "noteOrder": 1202, + "time": 0.16680567139282737, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.1701417848206839, "position": { "x": 6, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1273, - "time": 0.176814011676397, + "noteOrder": 1274, + "time": 0.17681401167639701, "position": { "x": 5, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.18015012510425354, + "noteOrder": 1298, + "time": 0.18015012510425357, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1322, - "time": 0.18348623853211007, + "time": 0.1834862385321101, "position": { "x": 5, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1418, - "time": 0.19683069224353628, + "time": 0.1968306922435363, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1466, - "time": 0.20350291909924936, + "time": 0.2035029190992494, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1490, - "time": 0.20683903252710592, + "time": 0.20683903252710595, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1538, - "time": 0.213511259382819, + "time": 0.21351125938281904, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1586, - "time": 0.2201834862385321, + "time": 0.22018348623853212, "position": { "x": 3, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1610, - "time": 0.22351959966638865, + "time": 0.22351959966638868, "position": { "x": 5, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1922, - "time": 0.26688907422852376, + "noteOrder": 1923, + "time": 0.2668890742285238, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.2702251876563803, + "noteOrder": 1947, + "time": 0.2702251876563804, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1970, - "time": 0.2735613010842368, + "noteOrder": 1971, + "time": 0.2735613010842369, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.27689741451209343, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.28023352793995, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.2835696413678065, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.28690575479566305, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.29024186822351955, + "noteOrder": 2091, + "time": 0.29024186822351966, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.31693077564637195, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.3336113427856547, + "noteOrder": 2404, + "time": 0.33361134278565474, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.33694745621351124, + "noteOrder": 2428, + "time": 0.3369474562135113, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3402835696413678, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3402835696413678, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.34361968306922436, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.34361968306922436, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2691, - "time": 0.37364470391993326, + "noteOrder": 2692, + "time": 0.3736447039199333, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.3769808173477898, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.3803169307756464, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2763, - "time": 0.3836530442035029, + "noteOrder": 2764, + "time": 0.383653044203503, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.3869891576313595, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2811, - "time": 0.390325271059216, + "noteOrder": 2812, + "time": 0.39032527105921605, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2835, - "time": 0.39366138448707255, + "noteOrder": 2836, + "time": 0.3936613844870726, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.3969974979149291, + "noteOrder": 2860, + "time": 0.39699749791492916, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.42368640533778146, + "noteOrder": 3053, + "time": 0.4236864053377815, "position": { "x": 7, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.43369474562135113, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4370308590492077, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4537114261884904, + "noteOrder": 3269, + "time": 0.4537114261884905, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3292, - "time": 0.4570475396163469, + "noteOrder": 3293, + "time": 0.457047539616347, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.4603836530442035, + "noteOrder": 3317, + "time": 0.46038365304420353, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.46371976647206004, + "noteOrder": 3341, + "time": 0.4637197664720601, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.4670558798999166, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3388, + "noteOrder": 3389, "time": 0.47039199332777315, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.47372810675562965, + "noteOrder": 3413, + "time": 0.47372810675562976, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3436, - "time": 0.4770642201834862, + "noteOrder": 3437, + "time": 0.4770642201834863, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.4804003336113428, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.4837364470391993, + "noteOrder": 3485, + "time": 0.4837364470391994, "position": { "x": 5, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.4870725604670559, + "noteOrder": 3509, + "time": 0.48707256046705594, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.4904086738949124, + "noteOrder": 3533, + "time": 0.49040867389491244, "position": { "x": 5, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.49374478732276894, + "noteOrder": 3557, + "time": 0.493744787322769, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.49374478732276894, + "noteOrder": 3557, + "time": 0.493744787322769, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3580, + "noteOrder": 3582, "time": 0.49708090075062555, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3580, + "noteOrder": 3582, "time": 0.49708090075062555, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3772, - "time": 0.5237698081734778, + "noteOrder": 3774, + "time": 0.523769808173478, "position": { "x": 5, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.5271059216013344, + "noteOrder": 3798, + "time": 0.5271059216013345, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3820, - "time": 0.530442035029191, + "noteOrder": 3822, + "time": 0.5304420350291911, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.5371142618849041, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.5437864887406172, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3941, - "time": 0.5471226021684736, + "noteOrder": 3942, + "time": 0.5471226021684737, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.5504587155963302, + "noteOrder": 3966, + "time": 0.5504587155963304, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4157, + "noteOrder": 4158, "time": 0.5771476230191827, "position": { "x": 5, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4181, - "time": 0.5804837364470391, + "noteOrder": 4182, + "time": 0.5804837364470393, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4205, + "noteOrder": 4206, "time": 0.5838198498748958, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4255, "time": 0.5904920767306089, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4301, - "time": 0.5971643035863219, + "noteOrder": 4303, + "time": 0.597164303586322, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4421, - "time": 0.6138448707256046, + "noteOrder": 4423, + "time": 0.6138448707256047, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6171809841534612, + "noteOrder": 4447, + "time": 0.6171809841534613, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.6205170975813178, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4493, + "noteOrder": 4495, "time": 0.6238532110091743, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.6271893244370309, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4541, - "time": 0.6305254378648874, + "noteOrder": 4543, + "time": 0.6305254378648875, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.6338615512927439, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4589, - "time": 0.6371976647206005, + "noteOrder": 4591, + "time": 0.6371976647206006, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4613, - "time": 0.640533778148457, + "noteOrder": 4615, + "time": 0.6405337781484571, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4637, - "time": 0.6438698915763136, + "noteOrder": 4639, + "time": 0.6438698915763137, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4661, - "time": 0.6472060050041701, + "noteOrder": 4663, + "time": 0.6472060050041702, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.6505421184320267, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.6538782318598833, + "noteOrder": 4711, + "time": 0.6538782318598834, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.6572143452877398, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4830, + "noteOrder": 4831, "time": 0.6705587989991659, "position": { "x": 5, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.6738949124270225, + "noteOrder": 4855, + "time": 0.6738949124270226, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.6772310258548792, "position": { "x": 3, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4926, - "time": 0.6839032527105922, + "noteOrder": 4928, + "time": 0.6839032527105923, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.6872393661384487, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.6905754795663053, "position": { "x": 7, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4998, + "noteOrder": 5000, "time": 0.6939115929941618, "position": { "x": 7, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5022, - "time": 0.6972477064220183, + "noteOrder": 5024, + "time": 0.6972477064220184, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5046, - "time": 0.7005838198498748, + "noteOrder": 5048, + "time": 0.7005838198498751, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5070, - "time": 0.7039199332777314, + "noteOrder": 5072, + "time": 0.7039199332777315, "position": { "x": 5, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5382, - "time": 0.7472894078398665, + "noteOrder": 5384, + "time": 0.7472894078398666, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5406, - "time": 0.7506255212677231, + "noteOrder": 5408, + "time": 0.7506255212677232, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.7539616346955796, "position": { "x": 6, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5454, - "time": 0.7572977481234362, + "noteOrder": 5456, + "time": 0.7572977481234363, "position": { "x": 4, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5478, + "noteOrder": 5480, "time": 0.7606338615512928, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5502, - "time": 0.7639699749791492, + "noteOrder": 5504, + "time": 0.7639699749791493, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5526, - "time": 0.7673060884070058, + "noteOrder": 5529, + "time": 0.767306088407006, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5550, - "time": 0.7706422018348623, + "noteOrder": 5553, + "time": 0.7706422018348624, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5743, - "time": 0.7973311092577147, + "noteOrder": 5745, + "time": 0.7973311092577149, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5863, - "time": 0.8140116763969975, + "noteOrder": 5865, + "time": 0.8140116763969976, "position": { "x": 7, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5911, + "noteOrder": 5913, "time": 0.8206839032527106, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6151, - "time": 0.854045037531276, + "noteOrder": 6153, + "time": 0.8540450375312761, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6175, - "time": 0.8573811509591326, + "noteOrder": 6178, + "time": 0.8573811509591327, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6199, - "time": 0.8607172643869891, + "noteOrder": 6202, + "time": 0.8607172643869893, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6223, - "time": 0.8640533778148456, + "noteOrder": 6226, + "time": 0.8640533778148458, "position": { "x": 6, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6247, + "noteOrder": 6250, "time": 0.8673894912427023, "position": { "x": 3, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6271, - "time": 0.8707256046705588, + "noteOrder": 6274, + "time": 0.8707256046705589, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6295, + "noteOrder": 6298, "time": 0.8740617180984154, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6319, + "noteOrder": 6322, "time": 0.8773978315262719, "position": { "x": 6, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6511, + "noteOrder": 6514, "time": 0.9040867389491243, "position": { "x": 7, @@ -2776,10 +2776,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.026688907422852376, + "time": 0.02668890742285238, "position": { "x": 7, "y": 0 @@ -2799,7 +2799,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 216, "time": 0.030025020850708926, @@ -2822,10 +2822,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, - "time": 0.03336113427856547, + "time": 0.03336113427856548, "position": { "x": 3, "y": 0 @@ -2845,7 +2845,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, "time": 0.03669724770642202, @@ -2868,10 +2868,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.05337781484570475, + "noteOrder": 385, + "time": 0.05337781484570476, "position": { "x": 3, "y": 0 @@ -2891,10 +2891,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 408, - "time": 0.0567139282735613, + "noteOrder": 409, + "time": 0.05671392827356131, "position": { "x": 3, "y": 0 @@ -2914,9 +2914,9 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.06005004170141785, "position": { "x": 7, @@ -2937,7 +2937,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, "time": 0.0633861551292744, @@ -2960,10 +2960,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.08006672226855713, + "time": 0.08006672226855714, "position": { "x": 7, "y": 0 @@ -2983,7 +2983,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, "time": 0.08673894912427023, @@ -3006,10 +3006,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.09341117597998332, + "time": 0.09341117597998333, "position": { "x": 3, "y": 0 @@ -3029,10 +3029,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, - "time": 0.1000834028356964, + "time": 0.10008340283569642, "position": { "x": 3, "y": 0 @@ -3052,10 +3052,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, - "time": 0.1067556296914095, + "time": 0.10675562969140952, "position": { "x": 7, "y": 0 @@ -3075,10 +3075,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, - "time": 0.1134278565471226, + "time": 0.11342785654712262, "position": { "x": 7, "y": 0 @@ -3098,7 +3098,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.1201000834028357, @@ -3121,7 +3121,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, "time": 0.1267723102585488, @@ -3144,9 +3144,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.14678899082568808, "position": { "x": 7, @@ -3167,10 +3167,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.16013344453711426, + "noteOrder": 1154, + "time": 0.16013344453711428, "position": { "x": 7, "y": 0 @@ -3190,9 +3190,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.17347789824854046, "position": { "x": 3, @@ -3213,10 +3213,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1346, - "time": 0.18682235195996663, + "time": 0.18682235195996666, "position": { "x": 3, "y": 0 @@ -3236,10 +3236,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, - "time": 0.18682235195996663, + "time": 0.18682235195996666, "position": { "x": 7, "y": 0 @@ -3259,10 +3259,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1442, - "time": 0.2001668056713928, + "time": 0.20016680567139283, "position": { "x": 5, "y": 0 @@ -3282,10 +3282,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, - "time": 0.2001668056713928, + "time": 0.20016680567139283, "position": { "x": 3, "y": 0 @@ -3305,10 +3305,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1538, - "time": 0.213511259382819, + "time": 0.21351125938281904, "position": { "x": 5, "y": 0 @@ -3328,10 +3328,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.2268557130942452, + "noteOrder": 1635, + "time": 0.22685571309424524, "position": { "x": 7, "y": 0 @@ -3350,13 +3350,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, - "time": 0.2335279399499583, + "noteOrder": 1659, + "time": 0.23019182652210177, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3368,18 +3368,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1730, - "time": 0.2402001668056714, + "noteOrder": 1659, + "time": 0.23019182652210177, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3396,13 +3396,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, - "time": 0.24687239366138447, + "noteOrder": 1683, + "time": 0.2335279399499583, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3419,13 +3419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, - "time": 0.2535446205170976, + "noteOrder": 1707, + "time": 0.23686405337781488, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3437,18 +3437,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.2602168473728107, + "noteOrder": 1707, + "time": 0.23686405337781488, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3465,11 +3465,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, - "time": 0.29357798165137616, + "noteOrder": 1731, + "time": 0.2402001668056714, "position": { "x": 7, "y": 0 @@ -3488,13 +3488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, - "time": 0.3002502085070892, + "noteOrder": 1755, + "time": 0.24353628023352797, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3506,18 +3506,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2211, - "time": 0.3069224353628023, + "noteOrder": 1755, + "time": 0.24353628023352797, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3534,13 +3534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2235, - "time": 0.3102585487906589, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3552,18 +3552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2259, - "time": 0.31359466221851545, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3580,11 +3580,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2283, - "time": 0.31693077564637195, + "noteOrder": 1779, + "time": 0.2468723936613845, "position": { "x": 7, "y": 0 @@ -3598,18 +3598,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2307, - "time": 0.3202668890742285, + "noteOrder": 1803, + "time": 0.2502085070892411, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3626,13 +3626,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2355, - "time": 0.3269391159299416, + "noteOrder": 1803, + "time": 0.2502085070892411, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3644,18 +3644,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2379, - "time": 0.3302752293577982, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3672,13 +3672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2499, - "time": 0.3469557964970809, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3695,13 +3695,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2547, - "time": 0.353628023352794, + "noteOrder": 1827, + "time": 0.2535446205170976, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3718,13 +3718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.3603002502085071, + "noteOrder": 1851, + "time": 0.25688073394495414, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3736,18 +3736,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2643, - "time": 0.36697247706422015, + "noteOrder": 1851, + "time": 0.25688073394495414, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3764,13 +3764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2883, - "time": 0.4003336113427856, + "noteOrder": 1875, + "time": 0.2602168473728107, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3782,18 +3782,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2931, - "time": 0.4070058381984987, + "noteOrder": 1875, + "time": 0.2602168473728107, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3810,13 +3810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, - "time": 0.41367806505421184, + "noteOrder": 1875, + "time": 0.2602168473728107, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3833,11 +3833,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3003, - "time": 0.41701417848206834, + "noteOrder": 1899, + "time": 0.26355296080066726, "position": { "x": 7, "y": 0 @@ -3851,18 +3851,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3027, - "time": 0.42035029190992496, + "noteOrder": 1899, + "time": 0.26355296080066726, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3879,13 +3879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 3051, - "time": 0.42368640533778146, + "noteOrder": 2115, + "time": 0.29357798165137616, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3897,16 +3897,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3076, - "time": 0.427022518765638, + "noteOrder": 2139, + "time": 0.2969140950792327, "position": { "x": 7, "y": 0 @@ -3925,11 +3925,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3172, - "time": 0.4403669724770642, + "noteOrder": 2139, + "time": 0.2969140950792327, "position": { "x": 6, "y": 0 @@ -3948,13 +3948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 3244, - "time": 0.45037531276063386, + "noteOrder": 2163, + "time": 0.3002502085070893, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3966,18 +3966,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.4403669724770642, + "noteOrder": 2187, + "time": 0.30358632193494584, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3994,11 +3994,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3244, - "time": 0.45037531276063386, + "noteOrder": 2187, + "time": 0.30358632193494584, "position": { "x": 4, "y": 0 @@ -4017,13 +4017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.5004170141784821, + "noteOrder": 2211, + "time": 0.30692243536280234, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4035,18 +4035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.5037531276063386, + "noteOrder": 2223, + "time": 0.30859049207673067, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4058,16 +4058,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3604, - "time": 0.5004170141784821, + "noteOrder": 2223, + "time": 0.30859049207673067, "position": { "x": 6, "y": 0 @@ -4086,13 +4086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 3628, - "time": 0.5037531276063386, + "noteOrder": 2235, + "time": 0.3102585487906589, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4104,16 +4104,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3652, - "time": 0.5070892410341952, + "noteOrder": 2247, + "time": 0.3119266055045872, "position": { "x": 3, "y": 0 @@ -4132,13 +4132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3700, - "time": 0.5137614678899083, + "noteOrder": 2247, + "time": 0.3119266055045872, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4150,18 +4150,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.5204336947456214, + "noteOrder": 2259, + "time": 0.31359466221851545, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4173,18 +4173,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3844, - "time": 0.5337781484570475, + "noteOrder": 2284, + "time": 0.31693077564637195, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4196,18 +4196,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.5337781484570475, + "noteOrder": 2308, + "time": 0.32026688907422857, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4219,18 +4219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3868, - "time": 0.5371142618849041, + "noteOrder": 2332, + "time": 0.3236030025020851, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4242,18 +4242,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3892, - "time": 0.5404503753127606, + "noteOrder": 2332, + "time": 0.3236030025020851, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4270,11 +4270,3047 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 3916, - "time": 0.5437864887406172, + "noteOrder": 2356, + "time": 0.3269391159299417, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2368, + "time": 0.3286071726438699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2368, + "time": 0.3286071726438699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2380, + "time": 0.3302752293577982, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2392, + "time": 0.33194328607172646, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2392, + "time": 0.33194328607172646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.3469557964970809, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2524, + "time": 0.35029190992493753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2524, + "time": 0.35029190992493753, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2548, + "time": 0.35362802335279403, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3569641367806506, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3569641367806506, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.36030025020850714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2620, + "time": 0.36363636363636365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2620, + "time": 0.36363636363636365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3669724770642202, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2668, + "time": 0.37030859049207676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2668, + "time": 0.37030859049207676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.40033361134278567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2908, + "time": 0.4036697247706422, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2908, + "time": 0.4036697247706422, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2933, + "time": 0.4070058381984988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4103419516263553, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4103419516263553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4136780650542119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4153461217681401, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4153461217681401, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.41701417848206845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4186822351959967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3017, + "time": 0.4186822351959967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3029, + "time": 0.42035029190992496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3053, + "time": 0.4236864053377815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.42702251876563807, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3101, + "time": 0.43035863219349463, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3101, + "time": 0.43035863219349463, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.44036697247706424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.4503753127606339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.44036697247706424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.4503753127606339, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.5004170141784822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5037531276063386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3606, + "time": 0.5004170141784822, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5037531276063386, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5070892410341952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5104253544620517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5104253544620517, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3702, + "time": 0.5137614678899083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3726, + "time": 0.5170975813177648, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3726, + "time": 0.5170975813177648, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5204336947456214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5337781484570476, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5337781484570476, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5371142618849041, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5404503753127607, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3918, + "time": 0.5437864887406172, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.5537948290241869, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5571309424520434, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3990, + "time": 0.5537948290241869, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5571309424520434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4038, + "time": 0.5604670558799, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4062, + "time": 0.5638031693077565, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4062, + "time": 0.5638031693077565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4086, + "time": 0.567139282735613, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4110, + "time": 0.5704753961634697, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4110, + "time": 0.5704753961634697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.5738115095913261, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4231, + "time": 0.5871559633027523, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4231, + "time": 0.5871559633027523, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4255, + "time": 0.5904920767306089, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4279, + "time": 0.5938281901584654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4303, + "time": 0.597164303586322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6005004170141786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4375, + "time": 0.6071726438698917, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4351, + "time": 0.603836530442035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4375, + "time": 0.6071726438698917, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.6605504587155964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4783, + "time": 0.6638865721434529, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.6605504587155964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4783, + "time": 0.6638865721434529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4807, + "time": 0.6672226855713095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4904, + "time": 0.6805671392827356, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4904, + "time": 0.6805671392827356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5000, + "time": 0.6939115929941618, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5096, + "time": 0.7072560467055881, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7105921601334446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7105921601334446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7139282735613012, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5168, + "time": 0.7172643869891576, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5168, + "time": 0.7172643869891576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5192, + "time": 0.7206005004170143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5216, + "time": 0.7239366138448707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5216, + "time": 0.7239366138448707, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5240, + "time": 0.7272727272727273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5264, + "time": 0.730608840700584, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5264, + "time": 0.730608840700584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7339449541284404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5300, + "time": 0.7356130108423687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5300, + "time": 0.7356130108423687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5312, + "time": 0.737281067556297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7389491242702252, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7389491242702252, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5336, + "time": 0.7406171809841535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5348, + "time": 0.7422852376980817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5348, + "time": 0.7422852376980817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7439532944120101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7439532944120101, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7439532944120101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5372, + "time": 0.7456213511259384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5372, + "time": 0.7456213511259384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5577, + "time": 0.773978315262719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5601, + "time": 0.7773144286905755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5601, + "time": 0.7773144286905755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5625, + "time": 0.7806505421184321, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5649, + "time": 0.7839866555462885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5649, + "time": 0.7839866555462885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5673, + "time": 0.7873227689741452, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5685, + "time": 0.7889908256880734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5685, + "time": 0.7889908256880734, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5697, + "time": 0.7906588824020017, "position": { "x": 3, "y": 0 @@ -4293,13 +7329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3989, - "time": 0.5537948290241869, + "noteOrder": 5709, + "time": 0.79232693911593, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4316,11 +7352,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4013, - "time": 0.5571309424520434, + "noteOrder": 5709, + "time": 0.79232693911593, "position": { "x": 4, "y": 0 @@ -4339,13 +7375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.5537948290241869, + "noteOrder": 5721, + "time": 0.7939949958298583, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4362,13 +7398,105 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5745, + "time": 0.7973311092577149, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 4013, - "time": 0.5571309424520434, + "noteOrder": 5769, + "time": 0.8006672226855713, "position": { - "x": 6, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5793, + "time": 0.804003336113428, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5793, + "time": 0.804003336113428, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5817, + "time": 0.8073394495412844, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4385,11 +7513,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4037, - "time": 0.5604670558799, + "noteOrder": 5829, + "time": 0.8090075062552128, "position": { "x": 7, "y": 0 @@ -4408,11 +7536,34 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4085, - "time": 0.567139282735613, + "noteOrder": 5829, + "time": 0.8090075062552128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5841, + "time": 0.810675562969141, "position": { "x": 3, "y": 0 @@ -4431,13 +7582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4133, - "time": 0.5738115095913261, + "noteOrder": 5853, + "time": 0.8123436196830693, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4449,18 +7600,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 216, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5853, + "time": 0.8123436196830693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.5871559633027523, + "noteOrder": 5961, + "time": 0.8273561301084238, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4472,18 +7646,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4229, - "time": 0.5871559633027523, + "noteOrder": 5985, + "time": 0.8306922435362802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5985, + "time": 0.8306922435362802, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4500,13 +7720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4253, - "time": 0.5904920767306089, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4523,13 +7743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.5938281901584654, + "noteOrder": 6009, + "time": 0.8340283569641369, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4546,13 +7766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4301, - "time": 0.5971643035863219, + "noteOrder": 6033, + "time": 0.8373644703919934, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4569,13 +7789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4325, - "time": 0.6005004170141784, + "noteOrder": 6033, + "time": 0.8373644703919934, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4587,18 +7807,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4373, - "time": 0.6071726438698916, + "noteOrder": 6057, + "time": 0.8407005838198499, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4610,18 +7830,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4349, - "time": 0.603836530442035, + "noteOrder": 6057, + "time": 0.8407005838198499, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4638,13 +7858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.6071726438698916, + "noteOrder": 6057, + "time": 0.8407005838198499, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4656,18 +7876,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4757, - "time": 0.6605504587155964, + "noteOrder": 6069, + "time": 0.8423686405337782, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4684,11 +7904,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4781, - "time": 0.6638865721434528, + "noteOrder": 6069, + "time": 0.8423686405337782, "position": { "x": 4, "y": 0 @@ -4707,13 +7927,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4757, - "time": 0.6605504587155964, + "noteOrder": 6081, + "time": 0.8440366972477065, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4725,18 +7945,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4781, - "time": 0.6638865721434528, + "noteOrder": 6081, + "time": 0.8440366972477065, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4748,18 +7968,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4806, - "time": 0.6672226855713094, + "noteOrder": 6081, + "time": 0.8440366972477065, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4776,13 +7996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4902, - "time": 0.6805671392827356, + "noteOrder": 6093, + "time": 0.8457047539616348, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4799,13 +8019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4902, - "time": 0.6805671392827356, + "noteOrder": 6093, + "time": 0.8457047539616348, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4817,18 +8037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4998, - "time": 0.6939115929941618, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4840,18 +8060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5094, - "time": 0.707256046705588, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4868,11 +8088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5142, - "time": 0.7139282735613011, + "noteOrder": 6105, + "time": 0.847372810675563, "position": { "x": 3, "y": 0 @@ -4891,13 +8111,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5190, - "time": 0.7206005004170142, + "noteOrder": 6117, + "time": 0.8490408673894914, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4909,18 +8129,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5238, - "time": 0.7272727272727273, + "noteOrder": 6117, + "time": 0.8490408673894914, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4937,13 +8157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5286, - "time": 0.7339449541284403, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4955,18 +8175,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5310, - "time": 0.7372810675562969, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4983,13 +8203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5334, - "time": 0.7406171809841535, + "noteOrder": 6129, + "time": 0.8507089241034196, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5006,13 +8226,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5358, - "time": 0.7439532944120101, + "noteOrder": 6141, + "time": 0.8523769808173478, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5024,18 +8244,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5574, - "time": 0.773978315262719, + "noteOrder": 6141, + "time": 0.8523769808173478, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5052,11 +8272,11 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5622, - "time": 0.780650542118432, + "noteOrder": 6346, + "time": 0.8807339449541285, "position": { "x": 3, "y": 0 @@ -5075,13 +8295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5670, - "time": 0.7873227689741451, + "noteOrder": 6370, + "time": 0.884070058381985, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5093,18 +8313,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5695, - "time": 0.7906588824020017, + "noteOrder": 6370, + "time": 0.884070058381985, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5121,11 +8341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5719, - "time": 0.7939949958298582, + "noteOrder": 6394, + "time": 0.8874061718098416, "position": { "x": 7, "y": 0 @@ -5144,11 +8364,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5743, - "time": 0.7973311092577147, + "noteOrder": 6418, + "time": 0.8907422852376982, "position": { "x": 7, "y": 0 @@ -5167,13 +8387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5767, - "time": 0.8006672226855712, + "noteOrder": 6418, + "time": 0.8907422852376982, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5185,18 +8405,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5815, - "time": 0.8073394495412844, + "noteOrder": 6442, + "time": 0.8940783986655547, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5208,16 +8428,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5839, - "time": 0.810675562969141, + "noteOrder": 6454, + "time": 0.8957464553794829, "position": { "x": 3, "y": 0 @@ -5236,13 +8456,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5959, - "time": 0.8273561301084237, + "noteOrder": 6454, + "time": 0.8957464553794829, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5259,13 +8479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6007, - "time": 0.8340283569641367, + "noteOrder": 6466, + "time": 0.8974145120934113, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5282,13 +8502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6055, - "time": 0.8407005838198499, + "noteOrder": 6478, + "time": 0.8990825688073395, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5300,18 +8520,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6079, - "time": 0.8440366972477065, + "noteOrder": 6478, + "time": 0.8990825688073395, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5328,11 +8548,11 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6103, - "time": 0.8473728106755629, + "noteOrder": 6490, + "time": 0.9007506255212678, "position": { "x": 3, "y": 0 @@ -5351,11 +8571,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6127, - "time": 0.8507089241034195, + "noteOrder": 6514, + "time": 0.9040867389491243, "position": { "x": 3, "y": 0 @@ -5369,18 +8589,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6343, - "time": 0.8807339449541284, + "noteOrder": 6538, + "time": 0.907422852376981, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5392,16 +8612,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6391, - "time": 0.8874061718098415, + "noteOrder": 6562, + "time": 0.9107589658048374, "position": { "x": 7, "y": 0 @@ -5420,13 +8640,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6439, - "time": 0.8940783986655546, + "noteOrder": 6562, + "time": 0.9107589658048374, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5438,18 +8658,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6463, - "time": 0.897414512093411, + "noteOrder": 6586, + "time": 0.914095079232694, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5461,16 +8681,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6487, - "time": 0.9007506255212677, + "noteOrder": 6598, + "time": 0.9157631359466223, "position": { "x": 3, "y": 0 @@ -5489,13 +8709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6511, - "time": 0.9040867389491243, + "noteOrder": 6598, + "time": 0.9157631359466223, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5512,11 +8732,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6535, - "time": 0.9074228523769808, + "noteOrder": 6610, + "time": 0.9174311926605506, "position": { "x": 7, "y": 0 @@ -5535,13 +8755,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6584, - "time": 0.9140950792326938, + "noteOrder": 6622, + "time": 0.9190992493744787, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5553,18 +8773,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6608, - "time": 0.9174311926605504, + "noteOrder": 6622, + "time": 0.9190992493744787, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5582,10 +8802,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6632, - "time": 0.920767306088407, + "noteOrder": 6634, + "time": 0.9207673060884071, "position": { "x": 3, "y": 0 @@ -5605,10 +8825,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6680, - "time": 0.9274395329441201, + "noteOrder": 6682, + "time": 0.9274395329441202, "position": { "x": 3, "y": 0 @@ -5628,10 +8848,10 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6680, - "time": 0.9274395329441201, + "noteOrder": 6682, + "time": 0.9274395329441202, "position": { "x": 7, "y": 0 @@ -5651,9 +8871,9 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9608006672226856, "position": { "x": 7, @@ -5674,9 +8894,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6730, "time": 0.9341117597998332, "position": { "x": 3, @@ -5697,9 +8917,9 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9608006672226856, "position": { "x": 3, diff --git a/tracks/HARD MODE/info.json b/tracks/HARD MODE/info.json index 7892da7e..22688fec 100644 --- a/tracks/HARD MODE/info.json +++ b/tracks/HARD MODE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HARD MODE", - "SongLength": "130.037551", + "SongLength": "120.084898", "SongAuthorName": "NATSUMI", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HIP/285_difficulty_1a.json b/tracks/HIP/285_difficulty_1a.json index f2dc0feb..8afac94e 100644 --- a/tracks/HIP/285_difficulty_1a.json +++ b/tracks/HIP/285_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.017259978425026967, + "time": 0.01725997842502697, "position": { "x": 5, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 120, - "time": 0.02157497303128371, + "noteOrder": 121, + "time": 0.021574973031283712, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 193, - "time": 0.034519956850053934, + "time": 0.03451995685005394, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 241, - "time": 0.04314994606256742, + "time": 0.043149946062567425, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 265, - "time": 0.04746494066882416, + "time": 0.04746494066882417, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 338, "time": 0.06040992448759439, "position": { "x": 3, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 362, "time": 0.06472491909385113, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 386, - "time": 0.06903991370010787, + "time": 0.06903991370010788, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 386, - "time": 0.06903991370010787, + "time": 0.06903991370010788, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 482, - "time": 0.08629989212513484, + "time": 0.08629989212513485, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 506, - "time": 0.09061488673139158, + "time": 0.09061488673139159, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 530, - "time": 0.09492988133764832, + "time": 0.09492988133764833, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 554, - "time": 0.09924487594390506, + "noteOrder": 555, + "time": 0.09924487594390508, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 566, + "noteOrder": 567, "time": 0.10140237324703344, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 578, + "noteOrder": 579, "time": 0.1035598705501618, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 602, - "time": 0.10787486515641855, + "noteOrder": 603, + "time": 0.10787486515641856, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 615, - "time": 0.11003236245954691, + "time": 0.11003236245954692, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 663, - "time": 0.1186623516720604, + "time": 0.11866235167206042, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 771, - "time": 0.13807982740021574, + "noteOrder": 772, + "time": 0.13807982740021577, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 783, - "time": 0.1402373247033441, + "noteOrder": 784, + "time": 0.14023732470334413, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1084, - "time": 0.1941747572815534, + "noteOrder": 1085, + "time": 0.19417475728155342, "position": { "x": 8, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1325, - "time": 0.2373247033441208, + "noteOrder": 1326, + "time": 0.23732470334412084, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1422, + "noteOrder": 1423, "time": 0.2545846817691478, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1470, - "time": 0.26321467098166124, + "noteOrder": 1471, + "time": 0.2632146709816613, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.27184466019417475, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.2761596548004315, + "noteOrder": 1543, + "time": 0.27615965480043153, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1554, - "time": 0.27831715210355984, + "noteOrder": 1555, + "time": 0.2783171521035599, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.3149946062567422, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1807, + "noteOrder": 1808, "time": 0.32362459546925565, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1928, - "time": 0.34519956850053934, + "noteOrder": 1929, + "time": 0.3451995685005394, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1928, - "time": 0.34519956850053934, + "noteOrder": 1929, + "time": 0.3451995685005394, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1952, - "time": 0.3495145631067961, + "noteOrder": 1953, + "time": 0.34951456310679613, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1952, - "time": 0.3495145631067961, + "noteOrder": 1953, + "time": 0.34951456310679613, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2048, - "time": 0.36677454153182304, + "noteOrder": 2049, + "time": 0.3667745415318231, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2097, - "time": 0.37540453074433655, + "noteOrder": 2098, + "time": 0.3754045307443366, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2145, - "time": 0.38403451995685, + "noteOrder": 2146, + "time": 0.38403451995685006, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2169, - "time": 0.3883495145631068, + "noteOrder": 2170, + "time": 0.38834951456310685, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2193, - "time": 0.3926645091693635, + "noteOrder": 2194, + "time": 0.3926645091693636, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.401294498381877, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2289, + "noteOrder": 2290, "time": 0.4099244875943905, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2338, - "time": 0.41855447680690394, + "noteOrder": 2339, + "time": 0.418554476806904, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2386, - "time": 0.4271844660194175, + "noteOrder": 2387, + "time": 0.42718446601941745, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2458, - "time": 0.44012944983818764, + "noteOrder": 2459, + "time": 0.4401294498381877, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.4573894282632146, + "noteOrder": 2556, + "time": 0.4573894282632147, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2651, - "time": 0.4746494066882416, + "noteOrder": 2652, + "time": 0.4746494066882417, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2747, + "noteOrder": 2749, "time": 0.4919093851132686, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2820, + "noteOrder": 2821, "time": 0.5048543689320388, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2845, "time": 0.5091693635382956, "position": { "x": 5, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2869, "time": 0.5134843581445523, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2916, - "time": 0.5221143473570657, + "noteOrder": 2917, + "time": 0.5221143473570659, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2940, - "time": 0.5264293419633225, + "noteOrder": 2941, + "time": 0.5264293419633226, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2964, + "noteOrder": 2966, "time": 0.5307443365695793, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3012, + "noteOrder": 3014, "time": 0.5393743257820928, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3061, + "noteOrder": 3062, "time": 0.5480043149946062, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.552319309600863, + "noteOrder": 3086, + "time": 0.5523193096008631, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.552319309600863, + "noteOrder": 3086, + "time": 0.5523193096008631, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3109, - "time": 0.5566343042071197, + "noteOrder": 3110, + "time": 0.5566343042071198, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3109, - "time": 0.5566343042071197, + "noteOrder": 3110, + "time": 0.5566343042071198, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3302, - "time": 0.5911542610571737, + "noteOrder": 3303, + "time": 0.5911542610571736, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3350, - "time": 0.5997842502696871, + "noteOrder": 3351, + "time": 0.5997842502696872, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3470, + "noteOrder": 3472, "time": 0.6213592233009709, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3496, "time": 0.6256742179072277, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3520, "time": 0.6299892125134844, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3520, "time": 0.6299892125134844, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3543, - "time": 0.6343042071197411, + "noteOrder": 3544, + "time": 0.634304207119741, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3543, - "time": 0.6343042071197411, + "noteOrder": 3544, + "time": 0.634304207119741, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3687, + "noteOrder": 3689, "time": 0.6601941747572815, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3735, + "noteOrder": 3737, "time": 0.668824163969795, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3856, - "time": 0.6903991370010787, + "noteOrder": 3858, + "time": 0.6903991370010788, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3868, - "time": 0.6925566343042071, + "noteOrder": 3870, + "time": 0.6925566343042072, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3880, - "time": 0.6947141316073354, + "noteOrder": 3882, + "time": 0.6947141316073355, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.6968716289104638, + "noteOrder": 3894, + "time": 0.696871628910464, "position": { "x": 5, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3904, - "time": 0.6990291262135921, + "noteOrder": 3906, + "time": 0.6990291262135923, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7011866235167207, "position": { "x": 5, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 3930, "time": 0.703344120819849, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.7206040992448759, + "noteOrder": 4026, + "time": 0.720604099244876, "position": { "x": 5, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.7551240560949298, + "noteOrder": 4219, + "time": 0.7551240560949299, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.7810140237324703, + "noteOrder": 4364, + "time": 0.7810140237324704, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4386, - "time": 0.785329018338727, + "noteOrder": 4388, + "time": 0.7853290183387271, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4410, - "time": 0.7896440129449838, + "noteOrder": 4412, + "time": 0.7896440129449839, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4434, - "time": 0.7939590075512405, + "noteOrder": 4436, + "time": 0.7939590075512406, "position": { "x": 7, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4458, + "noteOrder": 4460, "time": 0.7982740021574972, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4482, + "noteOrder": 4485, "time": 0.802588996763754, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4507, - "time": 0.8069039913700107, + "noteOrder": 4509, + "time": 0.8069039913700108, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4555, + "noteOrder": 4557, "time": 0.8155339805825242, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4579, + "noteOrder": 4581, "time": 0.819848975188781, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4603, + "noteOrder": 4605, "time": 0.8241639697950377, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.8284789644012944, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4651, - "time": 0.8327939590075512, + "noteOrder": 4653, + "time": 0.8327939590075513, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4675, - "time": 0.8371089536138079, + "noteOrder": 4677, + "time": 0.837108953613808, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4675, - "time": 0.8371089536138079, + "noteOrder": 4677, + "time": 0.837108953613808, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4699, - "time": 0.8414239482200646, + "noteOrder": 4702, + "time": 0.8414239482200647, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4699, - "time": 0.8414239482200646, + "noteOrder": 4702, + "time": 0.8414239482200647, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4940, - "time": 0.8845738942826322, + "noteOrder": 4943, + "time": 0.8845738942826321, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4989, + "noteOrder": 4991, "time": 0.8932038834951457, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5013, + "noteOrder": 5015, "time": 0.8975188781014024, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.8996763754045307, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5037, + "noteOrder": 5039, "time": 0.9018338727076591, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5049, + "noteOrder": 5051, "time": 0.9039913700107874, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5061, - "time": 0.9061488673139158, + "noteOrder": 5063, + "time": 0.9061488673139159, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5085, - "time": 0.9104638619201725, + "noteOrder": 5087, + "time": 0.9104638619201726, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5085, - "time": 0.9104638619201725, + "noteOrder": 5087, + "time": 0.9104638619201726, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5326, + "noteOrder": 5328, "time": 0.9536138079827401, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5374, + "noteOrder": 5377, "time": 0.9622437971952535, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5398, + "noteOrder": 5401, "time": 0.9665587918015103, "position": { "x": 4, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5410, + "noteOrder": 5413, "time": 0.9687162891046386, "position": { "x": 6, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5422, - "time": 0.970873786407767, + "noteOrder": 5425, + "time": 0.9708737864077671, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5434, - "time": 0.9730312837108953, + "noteOrder": 5437, + "time": 0.9730312837108954, "position": { "x": 7, "y": 0 @@ -2516,10 +2516,10 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 410, - "time": 0.07335490830636462, + "time": 0.07335490830636461, "position": { "x": 7, "y": 0 @@ -2539,7 +2539,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.0819848975188781, @@ -2562,10 +2562,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 410, - "time": 0.07335490830636462, + "time": 0.07335490830636461, "position": { "x": 3, "y": 0 @@ -2585,7 +2585,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.0819848975188781, @@ -2608,7 +2608,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, "time": 0.12081984897518878, @@ -2631,7 +2631,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 699, "time": 0.12513484358144553, @@ -2654,7 +2654,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, "time": 0.12944983818770225, @@ -2677,7 +2677,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 747, "time": 0.133764832793959, @@ -2700,9 +2700,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 795, + "noteOrder": 796, "time": 0.1423948220064725, "position": { "x": 3, @@ -2723,9 +2723,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 843, + "noteOrder": 844, "time": 0.15102481121898598, "position": { "x": 3, @@ -2746,9 +2746,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 807, + "noteOrder": 808, "time": 0.14455231930960086, "position": { "x": 7, @@ -2769,9 +2769,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 843, + "noteOrder": 844, "time": 0.15102481121898598, "position": { "x": 7, @@ -2792,7 +2792,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, "time": 0.15533980582524273, @@ -2815,7 +2815,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 892, "time": 0.15965480043149946, @@ -2838,7 +2838,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 916, "time": 0.1639697950377562, @@ -2861,7 +2861,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 940, "time": 0.16828478964401294, @@ -2884,10 +2884,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, - "time": 0.17259978425026967, + "time": 0.1725997842502697, "position": { "x": 6, "y": 0 @@ -2907,10 +2907,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 976, - "time": 0.17475728155339804, + "time": 0.17475728155339806, "position": { "x": 6, "y": 0 @@ -2930,9 +2930,9 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 988, + "noteOrder": 989, "time": 0.17691477885652643, "position": { "x": 6, @@ -2953,9 +2953,9 @@ }, { "lineGroupId": 43, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1000, + "noteOrder": 1001, "time": 0.1790722761596548, "position": { "x": 6, @@ -2976,10 +2976,10 @@ }, { "lineGroupId": 43, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1012, - "time": 0.18122977346278316, + "noteOrder": 1013, + "time": 0.18122977346278318, "position": { "x": 6, "y": 0 @@ -2999,10 +2999,10 @@ }, { "lineGroupId": 43, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1024, - "time": 0.18338727076591152, + "noteOrder": 1025, + "time": 0.18338727076591155, "position": { "x": 6, "y": 0 @@ -3022,9 +3022,9 @@ }, { "lineGroupId": 43, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.1855447680690399, "position": { "x": 6, @@ -3045,10 +3045,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, - "time": 0.17259978425026967, + "time": 0.1725997842502697, "position": { "x": 4, "y": 0 @@ -3068,10 +3068,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 976, - "time": 0.17475728155339804, + "time": 0.17475728155339806, "position": { "x": 4, "y": 0 @@ -3091,9 +3091,9 @@ }, { "lineGroupId": 44, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 988, + "noteOrder": 989, "time": 0.17691477885652643, "position": { "x": 3, @@ -3114,9 +3114,9 @@ }, { "lineGroupId": 44, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1000, + "noteOrder": 1001, "time": 0.1790722761596548, "position": { "x": 3, @@ -3137,10 +3137,10 @@ }, { "lineGroupId": 44, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1012, - "time": 0.18122977346278316, + "noteOrder": 1013, + "time": 0.18122977346278318, "position": { "x": 4, "y": 0 @@ -3160,10 +3160,10 @@ }, { "lineGroupId": 44, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1024, - "time": 0.18338727076591152, + "noteOrder": 1025, + "time": 0.18338727076591155, "position": { "x": 4, "y": 0 @@ -3183,9 +3183,9 @@ }, { "lineGroupId": 44, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.1855447680690399, "position": { "x": 3, @@ -3206,10 +3206,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1060, - "time": 0.18985976267529664, + "noteOrder": 1061, + "time": 0.18985976267529667, "position": { "x": 6, "y": 0 @@ -3229,10 +3229,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1084, - "time": 0.1941747572815534, + "noteOrder": 1085, + "time": 0.19417475728155342, "position": { "x": 6, "y": 0 @@ -3252,10 +3252,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1109, - "time": 0.19848975188781012, + "time": 0.19848975188781015, "position": { "x": 4, "y": 0 @@ -3275,7 +3275,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1133, "time": 0.20280474649406688, @@ -3298,7 +3298,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, "time": 0.2071197411003236, @@ -3321,10 +3321,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1169, - "time": 0.20927723840345197, + "time": 0.209277238403452, "position": { "x": 4, "y": 0 @@ -3344,10 +3344,10 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1181, - "time": 0.2114347357065804, + "time": 0.21143473570658036, "position": { "x": 4, "y": 0 @@ -3367,10 +3367,10 @@ }, { "lineGroupId": 49, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1193, - "time": 0.21359223300970875, + "time": 0.21359223300970873, "position": { "x": 4, "y": 0 @@ -3390,10 +3390,10 @@ }, { "lineGroupId": 49, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1205, - "time": 0.2157497303128371, + "noteOrder": 1206, + "time": 0.21574973031283712, "position": { "x": 4, "y": 0 @@ -3413,10 +3413,10 @@ }, { "lineGroupId": 49, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1217, - "time": 0.21790722761596545, + "noteOrder": 1218, + "time": 0.21790722761596548, "position": { "x": 4, "y": 0 @@ -3436,10 +3436,10 @@ }, { "lineGroupId": 49, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1229, - "time": 0.22006472491909382, + "noteOrder": 1230, + "time": 0.22006472491909385, "position": { "x": 4, "y": 0 @@ -3459,7 +3459,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, "time": 0.2071197411003236, @@ -3482,10 +3482,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1169, - "time": 0.20927723840345197, + "time": 0.209277238403452, "position": { "x": 6, "y": 0 @@ -3505,10 +3505,10 @@ }, { "lineGroupId": 50, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1181, - "time": 0.2114347357065804, + "time": 0.21143473570658036, "position": { "x": 7, "y": 0 @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 50, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1193, - "time": 0.21359223300970875, + "time": 0.21359223300970873, "position": { "x": 7, "y": 0 @@ -3551,10 +3551,10 @@ }, { "lineGroupId": 50, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1205, - "time": 0.2157497303128371, + "noteOrder": 1206, + "time": 0.21574973031283712, "position": { "x": 6, "y": 0 @@ -3574,10 +3574,10 @@ }, { "lineGroupId": 50, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1217, - "time": 0.21790722761596545, + "noteOrder": 1218, + "time": 0.21790722761596548, "position": { "x": 6, "y": 0 @@ -3597,10 +3597,10 @@ }, { "lineGroupId": 50, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1229, - "time": 0.22006472491909382, + "noteOrder": 1230, + "time": 0.22006472491909385, "position": { "x": 7, "y": 0 @@ -3620,9 +3620,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1253, + "noteOrder": 1254, "time": 0.2243797195253506, "position": { "x": 5, @@ -3643,10 +3643,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1277, - "time": 0.2286947141316073, + "noteOrder": 1278, + "time": 0.22869471413160736, "position": { "x": 5, "y": 0 @@ -3666,10 +3666,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1277, - "time": 0.2286947141316073, + "noteOrder": 1278, + "time": 0.22869471413160736, "position": { "x": 5, "y": 0 @@ -3689,9 +3689,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1301, + "noteOrder": 1302, "time": 0.23300970873786409, "position": { "x": 5, @@ -3712,9 +3712,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1301, + "noteOrder": 1302, "time": 0.23300970873786409, "position": { "x": 5, @@ -3735,10 +3735,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1325, - "time": 0.2373247033441208, + "noteOrder": 1326, + "time": 0.23732470334412084, "position": { "x": 5, "y": 0 @@ -3758,9 +3758,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.2588996763754045, "position": { "x": 7, @@ -3781,10 +3781,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.26321467098166124, + "noteOrder": 1471, + "time": 0.2632146709816613, "position": { "x": 7, "y": 0 @@ -3804,9 +3804,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, + "noteOrder": 1495, "time": 0.267529665587918, "position": { "x": 3, @@ -3827,9 +3827,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.27184466019417475, "position": { "x": 3, @@ -3850,10 +3850,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1566, - "time": 0.2804746494066882, + "noteOrder": 1567, + "time": 0.28047464940668826, "position": { "x": 7, "y": 0 @@ -3873,7 +3873,7 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1615, "time": 0.2891046386192017, @@ -3896,10 +3896,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1578, - "time": 0.28263214670981657, + "noteOrder": 1579, + "time": 0.2826321467098166, "position": { "x": 3, "y": 0 @@ -3919,7 +3919,7 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1615, "time": 0.2891046386192017, @@ -3942,10 +3942,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, - "time": 0.2934196332254585, + "noteOrder": 1640, + "time": 0.29341963322545844, "position": { "x": 6, "y": 0 @@ -3965,10 +3965,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1663, - "time": 0.29773462783171517, + "noteOrder": 1664, + "time": 0.2977346278317152, "position": { "x": 6, "y": 0 @@ -3988,10 +3988,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, - "time": 0.2934196332254585, + "noteOrder": 1640, + "time": 0.29341963322545844, "position": { "x": 4, "y": 0 @@ -4011,10 +4011,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1663, - "time": 0.29773462783171517, + "noteOrder": 1664, + "time": 0.2977346278317152, "position": { "x": 4, "y": 0 @@ -4034,9 +4034,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.30204962243797195, "position": { "x": 7, @@ -4057,9 +4057,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1711, + "noteOrder": 1712, "time": 0.3063646170442287, "position": { "x": 7, @@ -4080,9 +4080,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.30204962243797195, "position": { "x": 3, @@ -4103,9 +4103,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1711, + "noteOrder": 1712, "time": 0.3063646170442287, "position": { "x": 3, @@ -4126,9 +4126,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1735, + "noteOrder": 1736, "time": 0.31067961165048547, "position": { "x": 3, @@ -4149,9 +4149,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.3149946062567422, "position": { "x": 3, @@ -4172,9 +4172,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1783, + "noteOrder": 1784, "time": 0.3193096008629989, "position": { "x": 7, @@ -4195,9 +4195,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1807, + "noteOrder": 1808, "time": 0.32362459546925565, "position": { "x": 7, @@ -4218,7 +4218,7 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1832, "time": 0.3279395900755124, @@ -4241,10 +4241,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1856, - "time": 0.3322545846817691, + "noteOrder": 1857, + "time": 0.33225458468176916, "position": { "x": 7, "y": 0 @@ -4264,7 +4264,7 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1832, "time": 0.3279395900755124, @@ -4287,10 +4287,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1856, - "time": 0.3322545846817691, + "noteOrder": 1857, + "time": 0.33225458468176916, "position": { "x": 3, "y": 0 @@ -4310,9 +4310,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.3365695792880259, "position": { "x": 4, @@ -4333,9 +4333,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3408845738942826, "position": { "x": 4, @@ -4356,9 +4356,9 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.3365695792880259, "position": { "x": 6, @@ -4379,9 +4379,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3408845738942826, "position": { "x": 6, @@ -4402,9 +4402,9 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1976, + "noteOrder": 1977, "time": 0.35382955771305286, "position": { "x": 4, @@ -4425,9 +4425,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.3581445523193096, "position": { "x": 4, @@ -4448,9 +4448,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1976, + "noteOrder": 1977, "time": 0.35382955771305286, "position": { "x": 6, @@ -4471,9 +4471,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.3581445523193096, "position": { "x": 6, @@ -4494,10 +4494,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2024, - "time": 0.3624595469255663, + "noteOrder": 2025, + "time": 0.36245954692556637, "position": { "x": 3, "y": 0 @@ -4517,10 +4517,10 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2121, - "time": 0.3797195253505933, + "noteOrder": 2122, + "time": 0.37971952535059333, "position": { "x": 3, "y": 0 @@ -4540,10 +4540,10 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2121, - "time": 0.3797195253505933, + "noteOrder": 2122, + "time": 0.37971952535059333, "position": { "x": 7, "y": 0 @@ -4563,10 +4563,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2217, - "time": 0.39697950377562025, + "noteOrder": 2218, + "time": 0.3969795037756203, "position": { "x": 7, "y": 0 @@ -4586,10 +4586,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2217, - "time": 0.39697950377562025, + "noteOrder": 2218, + "time": 0.3969795037756203, "position": { "x": 4, "y": 0 @@ -4609,9 +4609,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.401294498381877, "position": { "x": 4, @@ -4632,9 +4632,9 @@ }, { "lineGroupId": 99, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2265, + "noteOrder": 2266, "time": 0.40560949298813376, "position": { "x": 3, @@ -4655,9 +4655,9 @@ }, { "lineGroupId": 99, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2289, + "noteOrder": 2290, "time": 0.4099244875943905, "position": { "x": 3, @@ -4678,9 +4678,9 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2314, + "noteOrder": 2315, "time": 0.4142394822006472, "position": { "x": 6, @@ -4701,10 +4701,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2338, - "time": 0.41855447680690394, + "noteOrder": 2339, + "time": 0.418554476806904, "position": { "x": 6, "y": 0 @@ -4724,10 +4724,10 @@ }, { "lineGroupId": 102, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2362, - "time": 0.4228694714131608, + "noteOrder": 2363, + "time": 0.4228694714131607, "position": { "x": 7, "y": 0 @@ -4747,10 +4747,10 @@ }, { "lineGroupId": 102, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2386, - "time": 0.4271844660194175, + "noteOrder": 2387, + "time": 0.42718446601941745, "position": { "x": 7, "y": 0 @@ -4770,10 +4770,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2410, - "time": 0.4314994606256742, + "noteOrder": 2411, + "time": 0.43149946062567424, "position": { "x": 3, "y": 0 @@ -4793,10 +4793,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2458, - "time": 0.44012944983818764, + "noteOrder": 2459, + "time": 0.4401294498381877, "position": { "x": 3, "y": 0 @@ -4816,9 +4816,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2506, + "noteOrder": 2507, "time": 0.4487594390507012, "position": { "x": 7, @@ -4839,10 +4839,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2555, - "time": 0.4573894282632146, + "noteOrder": 2556, + "time": 0.4573894282632147, "position": { "x": 7, "y": 0 @@ -4862,9 +4862,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2603, + "noteOrder": 2604, "time": 0.46601941747572817, "position": { "x": 3, @@ -4885,10 +4885,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2651, - "time": 0.4746494066882416, + "noteOrder": 2652, + "time": 0.4746494066882417, "position": { "x": 3, "y": 0 @@ -4908,9 +4908,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2699, + "noteOrder": 2700, "time": 0.48327939590075514, "position": { "x": 7, @@ -4931,9 +4931,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2747, + "noteOrder": 2749, "time": 0.4919093851132686, "position": { "x": 7, @@ -4954,9 +4954,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2796, + "noteOrder": 2797, "time": 0.5005393743257821, "position": { "x": 3, @@ -4977,9 +4977,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2820, + "noteOrder": 2821, "time": 0.5048543689320388, "position": { "x": 3, @@ -5000,9 +5000,9 @@ }, { "lineGroupId": 117, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2892, + "noteOrder": 2893, "time": 0.517799352750809, "position": { "x": 6, @@ -5023,9 +5023,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2892, + "noteOrder": 2893, "time": 0.517799352750809, "position": { "x": 7, @@ -5046,10 +5046,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2916, - "time": 0.5221143473570657, + "noteOrder": 2917, + "time": 0.5221143473570659, "position": { "x": 7, "y": 0 @@ -5069,9 +5069,9 @@ }, { "lineGroupId": 121, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2988, + "noteOrder": 2990, "time": 0.535059331175836, "position": { "x": 4, @@ -5092,9 +5092,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2988, + "noteOrder": 2990, "time": 0.535059331175836, "position": { "x": 3, @@ -5115,9 +5115,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3012, + "noteOrder": 3014, "time": 0.5393743257820928, "position": { "x": 3, @@ -5138,9 +5138,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3036, + "noteOrder": 3038, "time": 0.5436893203883495, "position": { "x": 7, @@ -5161,9 +5161,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3061, + "noteOrder": 3062, "time": 0.5480043149946062, "position": { "x": 7, @@ -5184,10 +5184,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3133, - "time": 0.5609492988133764, + "noteOrder": 3134, + "time": 0.5609492988133765, "position": { "x": 4, "y": 0 @@ -5207,10 +5207,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3157, - "time": 0.5652642934196331, + "noteOrder": 3158, + "time": 0.5652642934196332, "position": { "x": 4, "y": 0 @@ -5230,10 +5230,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3133, - "time": 0.5609492988133764, + "noteOrder": 3134, + "time": 0.5609492988133765, "position": { "x": 6, "y": 0 @@ -5253,10 +5253,10 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3157, - "time": 0.5652642934196331, + "noteOrder": 3158, + "time": 0.5652642934196332, "position": { "x": 6, "y": 0 @@ -5276,9 +5276,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3181, + "noteOrder": 3183, "time": 0.56957928802589, "position": { "x": 3, @@ -5298,11 +5298,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3205, - "time": 0.5738942826321467, + "noteOrder": 3195, + "time": 0.5717367853290184, "position": { "x": 3, "y": 0 @@ -5316,18 +5316,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3229, - "time": 0.5782092772384034, + "noteOrder": 3195, + "time": 0.5717367853290184, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5344,13 +5344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3253, - "time": 0.5825242718446602, + "noteOrder": 3207, + "time": 0.5738942826321467, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5362,18 +5362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3277, - "time": 0.586839266450917, + "noteOrder": 3207, + "time": 0.5738942826321467, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5390,13 +5390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 2, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3302, - "time": 0.5911542610571737, + "noteOrder": 3207, + "time": 0.5738942826321467, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5408,16 +5408,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3326, - "time": 0.5954692556634303, + "noteOrder": 3219, + "time": 0.576051779935275, "position": { "x": 3, "y": 0 @@ -5436,11 +5436,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 2, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3350, - "time": 0.5997842502696871, + "noteOrder": 3219, + "time": 0.576051779935275, "position": { "x": 4, "y": 0 @@ -5459,13 +5459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3374, - "time": 0.6040992448759439, + "noteOrder": 3231, + "time": 0.5782092772384034, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5477,18 +5477,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3398, - "time": 0.6084142394822006, + "noteOrder": 3231, + "time": 0.5782092772384034, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5505,11 +5505,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3422, - "time": 0.6127292340884574, + "noteOrder": 3231, + "time": 0.5782092772384034, "position": { "x": 3, "y": 0 @@ -5528,10 +5528,608 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 3446, + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3243, + "time": 0.5803667745415318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3243, + "time": 0.5803667745415318, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3255, + "time": 0.5825242718446602, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3255, + "time": 0.5825242718446602, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3255, + "time": 0.5825242718446602, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5846817691477886, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5846817691477886, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3279, + "time": 0.5868392664509169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3279, + "time": 0.5868392664509169, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3279, + "time": 0.5868392664509169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3291, + "time": 0.5889967637540453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3291, + "time": 0.5889967637540453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3303, + "time": 0.5911542610571736, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3327, + "time": 0.5954692556634305, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5976267529665588, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5976267529665588, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5997842502696872, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3375, + "time": 0.6040992448759439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.6062567421790723, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3388, + "time": 0.6062567421790723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3400, + "time": 0.6084142394822006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3412, + "time": 0.6105717367853291, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3412, + "time": 0.6105717367853291, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3424, + "time": 0.6127292340884574, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.6148867313915858, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3436, + "time": 0.6148867313915858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3448, "time": 0.6170442286947141, "position": { "x": 7, @@ -5546,16 +6144,637 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6192017259978425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6192017259978425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3568, + "time": 0.6386192017259978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3580, + "time": 0.6407766990291263, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3580, + "time": 0.6407766990291263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3592, + "time": 0.6429341963322546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3592, + "time": 0.6429341963322546, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3592, + "time": 0.6429341963322546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3605, + "time": 0.645091693635383, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3605, + "time": 0.645091693635383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3617, + "time": 0.6472491909385113, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3617, + "time": 0.6472491909385113, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3617, + "time": 0.6472491909385113, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6494066882416397, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3629, + "time": 0.6494066882416397, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3641, + "time": 0.651564185544768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3641, + "time": 0.651564185544768, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3641, + "time": 0.651564185544768, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3653, + "time": 0.6537216828478964, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3653, + "time": 0.6537216828478964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6558791801510248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6558791801510248, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6558791801510248, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3677, + "time": 0.6580366774541532, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3677, + "time": 0.6580366774541532, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3689, + "time": 0.6601941747572815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6645091693635383, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3567, - "time": 0.6386192017259978, + "noteOrder": 3725, + "time": 0.6666666666666667, "position": { "x": 7, "y": 0 @@ -5569,18 +6788,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3591, - "time": 0.6429341963322546, + "noteOrder": 3725, + "time": 0.6666666666666667, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5597,13 +6816,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3615, - "time": 0.6472491909385113, + "noteOrder": 3737, + "time": 0.668824163969795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5615,16 +6834,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3639, - "time": 0.651564185544768, + "noteOrder": 3761, + "time": 0.6731391585760518, "position": { "x": 7, "y": 0 @@ -5638,16 +6857,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3663, - "time": 0.6558791801510248, + "noteOrder": 3773, + "time": 0.6752966558791802, "position": { "x": 7, "y": 0 @@ -5666,11 +6885,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 2, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3687, - "time": 0.6601941747572815, + "noteOrder": 3773, + "time": 0.6752966558791802, "position": { "x": 6, "y": 0 @@ -5689,13 +6908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3711, - "time": 0.6645091693635382, + "noteOrder": 3785, + "time": 0.6774541531823085, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5712,13 +6931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 163, "indexInLine": 2, "isSliding": false, - "noteOrder": 3735, - "time": 0.668824163969795, + "noteOrder": 3797, + "time": 0.6796116504854369, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5735,11 +6954,34 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3759, - "time": 0.6731391585760518, + "noteOrder": 3797, + "time": 0.6796116504854369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6817691477885652, "position": { "x": 7, "y": 0 @@ -5758,13 +7000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3784, - "time": 0.6774541531823085, + "noteOrder": 3822, + "time": 0.6839266450916937, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5776,18 +7018,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3808, - "time": 0.6817691477885652, + "noteOrder": 3822, + "time": 0.6839266450916937, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5805,9 +7047,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3832, + "noteOrder": 3834, "time": 0.686084142394822, "position": { "x": 3, @@ -5826,11 +7068,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3846, + "time": 0.6882416396979505, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3846, + "time": 0.6882416396979505, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3952, + "noteOrder": 3954, "time": 0.7076591154261057, "position": { "x": 5, @@ -5851,9 +7139,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.7119741100323624, "position": { "x": 5, @@ -5874,9 +7162,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.7119741100323624, "position": { "x": 5, @@ -5897,9 +7185,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4000, + "noteOrder": 4002, "time": 0.7162891046386192, "position": { "x": 5, @@ -5920,9 +7208,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4000, + "noteOrder": 4002, "time": 0.7162891046386192, "position": { "x": 5, @@ -5943,10 +7231,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4025, - "time": 0.7206040992448759, + "noteOrder": 4026, + "time": 0.720604099244876, "position": { "x": 5, "y": 0 @@ -5966,10 +7254,10 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4049, - "time": 0.7249190938511326, + "noteOrder": 4051, + "time": 0.7249190938511327, "position": { "x": 4, "y": 0 @@ -5989,9 +7277,9 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4061, + "noteOrder": 4063, "time": 0.727076591154261, "position": { "x": 4, @@ -6012,10 +7300,10 @@ }, { "lineGroupId": 177, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4073, - "time": 0.7292340884573894, + "noteOrder": 4075, + "time": 0.7292340884573895, "position": { "x": 3, "y": 0 @@ -6035,9 +7323,9 @@ }, { "lineGroupId": 177, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.7313915857605178, "position": { "x": 3, @@ -6058,10 +7346,10 @@ }, { "lineGroupId": 177, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4097, - "time": 0.7335490830636461, + "noteOrder": 4099, + "time": 0.7335490830636462, "position": { "x": 4, "y": 0 @@ -6081,9 +7369,9 @@ }, { "lineGroupId": 177, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.7357065803667745, "position": { "x": 4, @@ -6104,9 +7392,9 @@ }, { "lineGroupId": 177, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.7378640776699029, "position": { "x": 3, @@ -6127,10 +7415,10 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4049, - "time": 0.7249190938511326, + "noteOrder": 4051, + "time": 0.7249190938511327, "position": { "x": 6, "y": 0 @@ -6150,9 +7438,9 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4061, + "noteOrder": 4063, "time": 0.727076591154261, "position": { "x": 6, @@ -6173,10 +7461,10 @@ }, { "lineGroupId": 178, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4073, - "time": 0.7292340884573894, + "noteOrder": 4075, + "time": 0.7292340884573895, "position": { "x": 6, "y": 0 @@ -6196,9 +7484,9 @@ }, { "lineGroupId": 178, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.7313915857605178, "position": { "x": 6, @@ -6219,10 +7507,10 @@ }, { "lineGroupId": 178, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4097, - "time": 0.7335490830636461, + "noteOrder": 4099, + "time": 0.7335490830636462, "position": { "x": 6, "y": 0 @@ -6242,9 +7530,9 @@ }, { "lineGroupId": 178, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.7357065803667745, "position": { "x": 6, @@ -6265,9 +7553,9 @@ }, { "lineGroupId": 178, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.7378640776699029, "position": { "x": 6, @@ -6288,9 +7576,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4145, + "noteOrder": 4147, "time": 0.7421790722761596, "position": { "x": 5, @@ -6311,10 +7599,10 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4169, - "time": 0.7464940668824164, + "noteOrder": 4171, + "time": 0.7464940668824165, "position": { "x": 5, "y": 0 @@ -6334,10 +7622,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4169, - "time": 0.7464940668824164, + "noteOrder": 4171, + "time": 0.7464940668824165, "position": { "x": 5, "y": 0 @@ -6357,10 +7645,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4193, - "time": 0.7508090614886731, + "noteOrder": 4195, + "time": 0.7508090614886732, "position": { "x": 5, "y": 0 @@ -6380,10 +7668,10 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4193, - "time": 0.7508090614886731, + "noteOrder": 4195, + "time": 0.7508090614886732, "position": { "x": 5, "y": 0 @@ -6403,10 +7691,10 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4217, - "time": 0.7551240560949298, + "noteOrder": 4219, + "time": 0.7551240560949299, "position": { "x": 5, "y": 0 @@ -6426,10 +7714,10 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.7594390507011866, + "noteOrder": 4243, + "time": 0.7594390507011867, "position": { "x": 4, "y": 0 @@ -6449,9 +7737,9 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4254, + "noteOrder": 4255, "time": 0.761596548004315, "position": { "x": 4, @@ -6472,10 +7760,10 @@ }, { "lineGroupId": 183, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4266, - "time": 0.7637540453074433, + "noteOrder": 4268, + "time": 0.7637540453074434, "position": { "x": 4, "y": 0 @@ -6495,9 +7783,9 @@ }, { "lineGroupId": 183, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4278, + "noteOrder": 4280, "time": 0.7659115426105717, "position": { "x": 4, @@ -6518,10 +7806,10 @@ }, { "lineGroupId": 183, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4290, - "time": 0.7680690399137, + "noteOrder": 4292, + "time": 0.7680690399137001, "position": { "x": 4, "y": 0 @@ -6541,9 +7829,9 @@ }, { "lineGroupId": 183, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.7702265372168284, "position": { "x": 4, @@ -6564,10 +7852,10 @@ }, { "lineGroupId": 183, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4314, - "time": 0.7723840345199567, + "noteOrder": 4316, + "time": 0.772384034519957, "position": { "x": 4, "y": 0 @@ -6587,10 +7875,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.7594390507011866, + "noteOrder": 4243, + "time": 0.7594390507011867, "position": { "x": 6, "y": 0 @@ -6610,9 +7898,9 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4254, + "noteOrder": 4255, "time": 0.761596548004315, "position": { "x": 6, @@ -6633,10 +7921,10 @@ }, { "lineGroupId": 184, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4266, - "time": 0.7637540453074433, + "noteOrder": 4268, + "time": 0.7637540453074434, "position": { "x": 7, "y": 0 @@ -6656,9 +7944,9 @@ }, { "lineGroupId": 184, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4278, + "noteOrder": 4280, "time": 0.7659115426105717, "position": { "x": 7, @@ -6679,10 +7967,10 @@ }, { "lineGroupId": 184, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4290, - "time": 0.7680690399137, + "noteOrder": 4292, + "time": 0.7680690399137001, "position": { "x": 6, "y": 0 @@ -6702,9 +7990,9 @@ }, { "lineGroupId": 184, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.7702265372168284, "position": { "x": 6, @@ -6725,10 +8013,10 @@ }, { "lineGroupId": 184, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4314, - "time": 0.7723840345199567, + "noteOrder": 4316, + "time": 0.772384034519957, "position": { "x": 7, "y": 0 @@ -6748,10 +8036,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4338, - "time": 0.7766990291262136, + "noteOrder": 4340, + "time": 0.7766990291262137, "position": { "x": 3, "y": 0 @@ -6771,10 +8059,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4434, - "time": 0.7939590075512405, + "noteOrder": 4436, + "time": 0.7939590075512406, "position": { "x": 3, "y": 0 @@ -6794,9 +8082,9 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4531, + "noteOrder": 4533, "time": 0.8112189859762675, "position": { "x": 7, @@ -6817,9 +8105,9 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.8284789644012944, "position": { "x": 7, @@ -6840,10 +8128,10 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4723, - "time": 0.8457389428263216, + "noteOrder": 4726, + "time": 0.8457389428263214, "position": { "x": 6, "y": 0 @@ -6863,10 +8151,10 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4748, - "time": 0.8500539374325783, + "noteOrder": 4750, + "time": 0.8500539374325782, "position": { "x": 6, "y": 0 @@ -6886,10 +8174,10 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4723, - "time": 0.8457389428263216, + "noteOrder": 4726, + "time": 0.8457389428263214, "position": { "x": 4, "y": 0 @@ -6909,10 +8197,10 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4748, - "time": 0.8500539374325783, + "noteOrder": 4750, + "time": 0.8500539374325782, "position": { "x": 4, "y": 0 @@ -6932,10 +8220,10 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4772, - "time": 0.854368932038835, + "noteOrder": 4774, + "time": 0.8543689320388349, "position": { "x": 7, "y": 0 @@ -6955,9 +8243,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4796, + "noteOrder": 4798, "time": 0.8586839266450916, "position": { "x": 7, @@ -6978,10 +8266,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4772, - "time": 0.854368932038835, + "noteOrder": 4774, + "time": 0.8543689320388349, "position": { "x": 3, "y": 0 @@ -7001,9 +8289,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4796, + "noteOrder": 4798, "time": 0.8586839266450916, "position": { "x": 3, @@ -7024,10 +8312,10 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4820, - "time": 0.8629989212513484, + "noteOrder": 4822, + "time": 0.8629989212513485, "position": { "x": 7, "y": 0 @@ -7047,10 +8335,10 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4844, - "time": 0.8673139158576051, + "noteOrder": 4846, + "time": 0.8673139158576052, "position": { "x": 7, "y": 0 @@ -7070,10 +8358,10 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4844, - "time": 0.8673139158576051, + "noteOrder": 4846, + "time": 0.8673139158576052, "position": { "x": 3, "y": 0 @@ -7093,10 +8381,10 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4868, - "time": 0.8716289104638618, + "noteOrder": 4870, + "time": 0.8716289104638619, "position": { "x": 3, "y": 0 @@ -7116,10 +8404,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4868, - "time": 0.8716289104638618, + "noteOrder": 4870, + "time": 0.8716289104638619, "position": { "x": 7, "y": 0 @@ -7139,10 +8427,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4892, - "time": 0.8759439050701185, + "noteOrder": 4894, + "time": 0.8759439050701187, "position": { "x": 7, "y": 0 @@ -7162,10 +8450,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4892, - "time": 0.8759439050701185, + "noteOrder": 4894, + "time": 0.8759439050701187, "position": { "x": 3, "y": 0 @@ -7185,10 +8473,10 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4916, - "time": 0.8802588996763753, + "noteOrder": 4919, + "time": 0.8802588996763754, "position": { "x": 3, "y": 0 @@ -7208,10 +8496,10 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5109, - "time": 0.9147788565264292, + "noteOrder": 5111, + "time": 0.9147788565264294, "position": { "x": 3, "y": 0 @@ -7231,9 +8519,9 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5133, + "noteOrder": 5136, "time": 0.9190938511326862, "position": { "x": 3, @@ -7254,10 +8542,10 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5109, - "time": 0.9147788565264292, + "noteOrder": 5111, + "time": 0.9147788565264294, "position": { "x": 7, "y": 0 @@ -7277,9 +8565,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5133, + "noteOrder": 5136, "time": 0.9190938511326862, "position": { "x": 7, @@ -7300,9 +8588,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5157, + "noteOrder": 5160, "time": 0.9234088457389429, "position": { "x": 6, @@ -7323,9 +8611,9 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5181, + "noteOrder": 5184, "time": 0.9277238403451996, "position": { "x": 6, @@ -7346,9 +8634,9 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5157, + "noteOrder": 5160, "time": 0.9234088457389429, "position": { "x": 4, @@ -7369,9 +8657,9 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5181, + "noteOrder": 5184, "time": 0.9277238403451996, "position": { "x": 4, @@ -7392,9 +8680,9 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5205, + "noteOrder": 5208, "time": 0.9320388349514563, "position": { "x": 3, @@ -7415,9 +8703,9 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9363538295577131, "position": { "x": 3, @@ -7438,9 +8726,9 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9363538295577131, "position": { "x": 7, @@ -7461,10 +8749,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5254, - "time": 0.9406688241639698, + "noteOrder": 5256, + "time": 0.9406688241639699, "position": { "x": 7, "y": 0 @@ -7484,10 +8772,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5254, - "time": 0.9406688241639698, + "noteOrder": 5256, + "time": 0.9406688241639699, "position": { "x": 3, "y": 0 @@ -7507,10 +8795,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5278, - "time": 0.9449838187702265, + "noteOrder": 5280, + "time": 0.9449838187702266, "position": { "x": 3, "y": 0 @@ -7530,10 +8818,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5278, - "time": 0.9449838187702265, + "noteOrder": 5280, + "time": 0.9449838187702266, "position": { "x": 7, "y": 0 @@ -7553,10 +8841,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5302, - "time": 0.9492988133764833, + "noteOrder": 5304, + "time": 0.9492988133764834, "position": { "x": 7, "y": 0 diff --git a/tracks/HIP/285_difficulty_1b.json b/tracks/HIP/285_difficulty_1b.json index 85f42962..584111df 100644 --- a/tracks/HIP/285_difficulty_1b.json +++ b/tracks/HIP/285_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.017259978425026967, + "time": 0.01725997842502697, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 193, - "time": 0.034519956850053934, + "time": 0.03451995685005394, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 241, - "time": 0.04314994606256742, + "time": 0.043149946062567425, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 338, "time": 0.06040992448759439, "position": { "x": 3, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 362, "time": 0.06472491909385113, "position": { "x": 3, @@ -174,7 +174,7 @@ }, { "noteOrder": 482, - "time": 0.08629989212513484, + "time": 0.08629989212513485, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 530, - "time": 0.09492988133764832, + "time": 0.09492988133764833, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 578, + "noteOrder": 579, "time": 0.1035598705501618, "position": { "x": 7, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1060, - "time": 0.18985976267529664, + "noteOrder": 1061, + "time": 0.18985976267529667, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1084, - "time": 0.1941747572815534, + "noteOrder": 1085, + "time": 0.19417475728155342, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1109, - "time": 0.19848975188781012, + "time": 0.19848975188781015, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1254, "time": 0.2243797195253506, "position": { "x": 6, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1277, - "time": 0.2286947141316073, + "noteOrder": 1278, + "time": 0.22869471413160736, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1301, + "noteOrder": 1302, "time": 0.23300970873786409, "position": { "x": 7, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1325, - "time": 0.2373247033441208, + "noteOrder": 1326, + "time": 0.23732470334412084, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1422, + "noteOrder": 1423, "time": 0.2545846817691478, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1470, - "time": 0.26321467098166124, + "noteOrder": 1471, + "time": 0.2632146709816613, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.27184466019417475, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1639, - "time": 0.2934196332254585, + "noteOrder": 1640, + "time": 0.29341963322545844, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1639, - "time": 0.2934196332254585, + "noteOrder": 1640, + "time": 0.29341963322545844, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.30204962243797195, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.30204962243797195, "position": { "x": 7, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1735, + "noteOrder": 1736, "time": 0.31067961165048547, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.3149946062567422, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1783, + "noteOrder": 1784, "time": 0.3193096008629989, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1807, + "noteOrder": 1808, "time": 0.32362459546925565, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.3365695792880259, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.3365695792880259, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1928, - "time": 0.34519956850053934, + "noteOrder": 1929, + "time": 0.3451995685005394, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1952, - "time": 0.3495145631067961, + "noteOrder": 1953, + "time": 0.34951456310679613, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1976, + "noteOrder": 1977, "time": 0.35382955771305286, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.3581445523193096, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2048, - "time": 0.36677454153182304, + "noteOrder": 2049, + "time": 0.3667745415318231, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2097, - "time": 0.37540453074433655, + "noteOrder": 2098, + "time": 0.3754045307443366, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2145, - "time": 0.38403451995685, + "noteOrder": 2146, + "time": 0.38403451995685006, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2169, - "time": 0.3883495145631068, + "noteOrder": 2170, + "time": 0.38834951456310685, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2193, - "time": 0.3926645091693635, + "noteOrder": 2194, + "time": 0.3926645091693636, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.401294498381877, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2289, + "noteOrder": 2290, "time": 0.4099244875943905, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2338, - "time": 0.41855447680690394, + "noteOrder": 2339, + "time": 0.418554476806904, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2386, - "time": 0.4271844660194175, + "noteOrder": 2387, + "time": 0.42718446601941745, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2410, - "time": 0.4314994606256742, + "noteOrder": 2411, + "time": 0.43149946062567424, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2506, + "noteOrder": 2507, "time": 0.4487594390507012, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2603, + "noteOrder": 2604, "time": 0.46601941747572817, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2699, + "noteOrder": 2700, "time": 0.48327939590075514, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2796, + "noteOrder": 2797, "time": 0.5005393743257821, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2820, + "noteOrder": 2821, "time": 0.5048543689320388, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2845, "time": 0.5091693635382956, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2869, "time": 0.5134843581445523, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2892, + "noteOrder": 2893, "time": 0.517799352750809, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2916, - "time": 0.5221143473570657, + "noteOrder": 2917, + "time": 0.5221143473570659, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2940, - "time": 0.5264293419633225, + "noteOrder": 2941, + "time": 0.5264293419633226, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2964, + "noteOrder": 2966, "time": 0.5307443365695793, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2988, + "noteOrder": 2990, "time": 0.535059331175836, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3012, + "noteOrder": 3014, "time": 0.5393743257820928, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3038, "time": 0.5436893203883495, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3061, + "noteOrder": 3062, "time": 0.5480043149946062, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.552319309600863, + "noteOrder": 3086, + "time": 0.5523193096008631, "position": { "x": 7, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3109, - "time": 0.5566343042071197, + "noteOrder": 3110, + "time": 0.5566343042071198, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3181, + "noteOrder": 3183, "time": 0.56957928802589, "position": { "x": 5, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3205, + "noteOrder": 3207, "time": 0.5738942826321467, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3229, + "noteOrder": 3231, "time": 0.5782092772384034, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3253, + "noteOrder": 3255, "time": 0.5825242718446602, "position": { "x": 5, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3374, + "noteOrder": 3375, "time": 0.6040992448759439, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3398, + "noteOrder": 3400, "time": 0.6084142394822006, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3422, + "noteOrder": 3424, "time": 0.6127292340884574, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3446, + "noteOrder": 3448, "time": 0.6170442286947141, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3470, + "noteOrder": 3472, "time": 0.6213592233009709, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3496, "time": 0.6256742179072277, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3520, "time": 0.6299892125134844, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3520, "time": 0.6299892125134844, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3543, - "time": 0.6343042071197411, + "noteOrder": 3544, + "time": 0.634304207119741, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3543, - "time": 0.6343042071197411, + "noteOrder": 3544, + "time": 0.634304207119741, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3567, + "noteOrder": 3568, "time": 0.6386192017259978, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3591, + "noteOrder": 3592, "time": 0.6429341963322546, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3615, + "noteOrder": 3617, "time": 0.6472491909385113, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3639, + "noteOrder": 3641, "time": 0.651564185544768, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3759, + "noteOrder": 3761, "time": 0.6731391585760518, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3784, + "noteOrder": 3785, "time": 0.6774541531823085, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3809, "time": 0.6817691477885652, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3832, + "noteOrder": 3834, "time": 0.686084142394822, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3856, - "time": 0.6903991370010787, + "noteOrder": 3858, + "time": 0.6903991370010788, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3880, - "time": 0.6947141316073354, + "noteOrder": 3882, + "time": 0.6947141316073355, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3904, - "time": 0.6990291262135921, + "noteOrder": 3906, + "time": 0.6990291262135923, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3904, - "time": 0.6990291262135921, + "noteOrder": 3906, + "time": 0.6990291262135923, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 3930, "time": 0.703344120819849, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 3930, "time": 0.703344120819849, "position": { "x": 3, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3952, + "noteOrder": 3954, "time": 0.7076591154261057, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.7119741100323624, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4000, + "noteOrder": 4002, "time": 0.7162891046386192, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.7206040992448759, + "noteOrder": 4026, + "time": 0.720604099244876, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4145, + "noteOrder": 4147, "time": 0.7421790722761596, "position": { "x": 3, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4169, - "time": 0.7464940668824164, + "noteOrder": 4171, + "time": 0.7464940668824165, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4193, - "time": 0.7508090614886731, + "noteOrder": 4195, + "time": 0.7508090614886732, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.7551240560949298, + "noteOrder": 4219, + "time": 0.7551240560949299, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.7810140237324703, + "noteOrder": 4364, + "time": 0.7810140237324704, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4386, - "time": 0.785329018338727, + "noteOrder": 4388, + "time": 0.7853290183387271, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4410, - "time": 0.7896440129449838, + "noteOrder": 4412, + "time": 0.7896440129449839, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4434, - "time": 0.7939590075512405, + "noteOrder": 4436, + "time": 0.7939590075512406, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4458, + "noteOrder": 4460, "time": 0.7982740021574972, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4482, + "noteOrder": 4485, "time": 0.802588996763754, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4507, - "time": 0.8069039913700107, + "noteOrder": 4509, + "time": 0.8069039913700108, "position": { "x": 6, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4555, + "noteOrder": 4557, "time": 0.8155339805825242, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4579, + "noteOrder": 4581, "time": 0.819848975188781, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4603, + "noteOrder": 4605, "time": 0.8241639697950377, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4748, - "time": 0.8500539374325783, + "noteOrder": 4750, + "time": 0.8500539374325782, "position": { "x": 4, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4796, + "noteOrder": 4798, "time": 0.8586839266450916, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4820, - "time": 0.8629989212513484, + "noteOrder": 4822, + "time": 0.8629989212513485, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4844, - "time": 0.8673139158576051, + "noteOrder": 4846, + "time": 0.8673139158576052, "position": { "x": 7, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4868, - "time": 0.8716289104638618, + "noteOrder": 4870, + "time": 0.8716289104638619, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4892, - "time": 0.8759439050701185, + "noteOrder": 4894, + "time": 0.8759439050701187, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4940, - "time": 0.8845738942826322, + "noteOrder": 4943, + "time": 0.8845738942826321, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4989, + "noteOrder": 4991, "time": 0.8932038834951457, "position": { "x": 4, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5013, + "noteOrder": 5015, "time": 0.8975188781014024, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5037, + "noteOrder": 5039, "time": 0.9018338727076591, "position": { "x": 3, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5109, - "time": 0.9147788565264292, + "noteOrder": 5111, + "time": 0.9147788565264294, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5109, - "time": 0.9147788565264292, + "noteOrder": 5111, + "time": 0.9147788565264294, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5157, + "noteOrder": 5160, "time": 0.9234088457389429, "position": { "x": 6, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5157, + "noteOrder": 5160, "time": 0.9234088457389429, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5205, + "noteOrder": 5208, "time": 0.9320388349514563, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9363538295577131, "position": { "x": 4, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5254, - "time": 0.9406688241639698, + "noteOrder": 5256, + "time": 0.9406688241639699, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.9449838187702265, + "noteOrder": 5280, + "time": 0.9449838187702266, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9492988133764833, + "noteOrder": 5304, + "time": 0.9492988133764834, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9492988133764833, + "noteOrder": 5304, + "time": 0.9492988133764834, "position": { "x": 6, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5350, + "noteOrder": 5353, "time": 0.9579288025889968, "position": { "x": 3, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5350, + "noteOrder": 5353, "time": 0.9579288025889968, "position": { "x": 7, @@ -2936,10 +2936,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.06903991370010787, + "time": 0.06903991370010788, "position": { "x": 7, "y": 0 @@ -2959,7 +2959,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.0819848975188781, @@ -2982,10 +2982,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 410, - "time": 0.07335490830636462, + "time": 0.07335490830636461, "position": { "x": 3, "y": 0 @@ -3005,7 +3005,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.0819848975188781, @@ -3028,10 +3028,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 771, - "time": 0.13807982740021574, + "noteOrder": 772, + "time": 0.13807982740021577, "position": { "x": 3, "y": 0 @@ -3051,9 +3051,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 843, + "noteOrder": 844, "time": 0.15102481121898598, "position": { "x": 3, @@ -3074,9 +3074,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 795, + "noteOrder": 796, "time": 0.1423948220064725, "position": { "x": 7, @@ -3097,9 +3097,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 843, + "noteOrder": 844, "time": 0.15102481121898598, "position": { "x": 7, @@ -3120,10 +3120,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, - "time": 0.17259978425026967, + "time": 0.1725997842502697, "position": { "x": 6, "y": 0 @@ -3143,9 +3143,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.1855447680690399, "position": { "x": 6, @@ -3166,10 +3166,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, - "time": 0.17259978425026967, + "time": 0.1725997842502697, "position": { "x": 4, "y": 0 @@ -3189,9 +3189,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1036, + "noteOrder": 1037, "time": 0.1855447680690399, "position": { "x": 3, @@ -3212,7 +3212,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, "time": 0.2071197411003236, @@ -3235,10 +3235,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1229, - "time": 0.22006472491909382, + "noteOrder": 1230, + "time": 0.22006472491909385, "position": { "x": 4, "y": 0 @@ -3258,7 +3258,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, "time": 0.2071197411003236, @@ -3281,10 +3281,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1229, - "time": 0.22006472491909382, + "noteOrder": 1230, + "time": 0.22006472491909385, "position": { "x": 7, "y": 0 @@ -3304,9 +3304,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.2588996763754045, "position": { "x": 7, @@ -3327,10 +3327,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.26321467098166124, + "noteOrder": 1471, + "time": 0.2632146709816613, "position": { "x": 7, "y": 0 @@ -3350,9 +3350,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, + "noteOrder": 1495, "time": 0.267529665587918, "position": { "x": 3, @@ -3373,9 +3373,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.27184466019417475, "position": { "x": 3, @@ -3396,10 +3396,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1542, - "time": 0.2761596548004315, + "noteOrder": 1543, + "time": 0.27615965480043153, "position": { "x": 7, "y": 0 @@ -3419,7 +3419,7 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1615, "time": 0.2891046386192017, @@ -3442,10 +3442,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1566, - "time": 0.2804746494066882, + "noteOrder": 1567, + "time": 0.28047464940668826, "position": { "x": 3, "y": 0 @@ -3465,7 +3465,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1615, "time": 0.2891046386192017, @@ -3488,10 +3488,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2024, - "time": 0.3624595469255663, + "noteOrder": 2025, + "time": 0.36245954692556637, "position": { "x": 7, "y": 0 @@ -3511,10 +3511,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2121, - "time": 0.3797195253505933, + "noteOrder": 2122, + "time": 0.37971952535059333, "position": { "x": 7, "y": 0 @@ -3534,10 +3534,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2121, - "time": 0.3797195253505933, + "noteOrder": 2122, + "time": 0.37971952535059333, "position": { "x": 3, "y": 0 @@ -3557,10 +3557,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2217, - "time": 0.39697950377562025, + "noteOrder": 2218, + "time": 0.3969795037756203, "position": { "x": 3, "y": 0 @@ -3580,10 +3580,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2217, - "time": 0.39697950377562025, + "noteOrder": 2218, + "time": 0.3969795037756203, "position": { "x": 6, "y": 0 @@ -3603,9 +3603,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.401294498381877, "position": { "x": 6, @@ -3626,9 +3626,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2265, + "noteOrder": 2266, "time": 0.40560949298813376, "position": { "x": 7, @@ -3649,9 +3649,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2289, + "noteOrder": 2290, "time": 0.4099244875943905, "position": { "x": 7, @@ -3672,9 +3672,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2314, + "noteOrder": 2315, "time": 0.4142394822006472, "position": { "x": 4, @@ -3695,10 +3695,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2338, - "time": 0.41855447680690394, + "noteOrder": 2339, + "time": 0.418554476806904, "position": { "x": 4, "y": 0 @@ -3718,10 +3718,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2362, - "time": 0.4228694714131608, + "noteOrder": 2363, + "time": 0.4228694714131607, "position": { "x": 3, "y": 0 @@ -3741,10 +3741,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2386, - "time": 0.4271844660194175, + "noteOrder": 2387, + "time": 0.42718446601941745, "position": { "x": 3, "y": 0 @@ -3764,10 +3764,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3133, - "time": 0.5609492988133764, + "noteOrder": 3134, + "time": 0.5609492988133765, "position": { "x": 4, "y": 0 @@ -3787,10 +3787,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3157, - "time": 0.5652642934196331, + "noteOrder": 3158, + "time": 0.5652642934196332, "position": { "x": 4, "y": 0 @@ -3810,10 +3810,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3133, - "time": 0.5609492988133764, + "noteOrder": 3134, + "time": 0.5609492988133765, "position": { "x": 6, "y": 0 @@ -3833,10 +3833,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3157, - "time": 0.5652642934196331, + "noteOrder": 3158, + "time": 0.5652642934196332, "position": { "x": 6, "y": 0 @@ -3856,10 +3856,33 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3279, + "time": 0.5868392664509169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3277, - "time": 0.586839266450917, + "noteOrder": 3303, + "time": 0.5911542610571736, "position": { "x": 7, "y": 0 @@ -3877,12 +3900,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3303, + "time": 0.5911542610571736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3326, - "time": 0.5954692556634303, + "noteOrder": 3327, + "time": 0.5954692556634305, "position": { "x": 3, "y": 0 @@ -3900,11 +3946,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5997842502696872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5997842502696872, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3663, + "noteOrder": 3665, "time": 0.6558791801510248, "position": { "x": 3, @@ -3923,12 +4015,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3689, + "time": 0.6601941747572815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3689, + "time": 0.6601941747572815, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6645091693635383, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3711, - "time": 0.6645091693635382, + "noteOrder": 3737, + "time": 0.668824163969795, "position": { "x": 7, "y": 0 @@ -3946,12 +4107,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3737, + "time": 0.668824163969795, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4049, - "time": 0.7249190938511326, + "noteOrder": 4051, + "time": 0.7249190938511327, "position": { "x": 4, "y": 0 @@ -3971,9 +4155,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.7378640776699029, "position": { "x": 4, @@ -3994,10 +4178,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4049, - "time": 0.7249190938511326, + "noteOrder": 4051, + "time": 0.7249190938511327, "position": { "x": 6, "y": 0 @@ -4017,9 +4201,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.7378640776699029, "position": { "x": 7, @@ -4040,10 +4224,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.7594390507011866, + "noteOrder": 4243, + "time": 0.7594390507011867, "position": { "x": 4, "y": 0 @@ -4063,10 +4247,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4314, - "time": 0.7723840345199567, + "noteOrder": 4316, + "time": 0.772384034519957, "position": { "x": 3, "y": 0 @@ -4086,10 +4270,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.7594390507011866, + "noteOrder": 4243, + "time": 0.7594390507011867, "position": { "x": 6, "y": 0 @@ -4109,10 +4293,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4314, - "time": 0.7723840345199567, + "noteOrder": 4316, + "time": 0.772384034519957, "position": { "x": 6, "y": 0 @@ -4132,10 +4316,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4338, - "time": 0.7766990291262136, + "noteOrder": 4340, + "time": 0.7766990291262137, "position": { "x": 7, "y": 0 @@ -4155,10 +4339,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4434, - "time": 0.7939590075512405, + "noteOrder": 4436, + "time": 0.7939590075512406, "position": { "x": 7, "y": 0 @@ -4178,9 +4362,9 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4531, + "noteOrder": 4533, "time": 0.8112189859762675, "position": { "x": 3, @@ -4201,9 +4385,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.8284789644012944, "position": { "x": 3, @@ -4224,9 +4408,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4627, + "noteOrder": 4629, "time": 0.8284789644012944, "position": { "x": 7, @@ -4247,10 +4431,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4675, - "time": 0.8371089536138079, + "noteOrder": 4677, + "time": 0.837108953613808, "position": { "x": 7, "y": 0 @@ -4270,10 +4454,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4651, - "time": 0.8327939590075512, + "noteOrder": 4653, + "time": 0.8327939590075513, "position": { "x": 3, "y": 0 @@ -4293,10 +4477,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4675, - "time": 0.8371089536138079, + "noteOrder": 4677, + "time": 0.837108953613808, "position": { "x": 3, "y": 0 @@ -4316,10 +4500,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4723, - "time": 0.8457389428263216, + "noteOrder": 4726, + "time": 0.8457389428263214, "position": { "x": 6, "y": 0 @@ -4339,10 +4523,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4748, - "time": 0.8500539374325783, + "noteOrder": 4750, + "time": 0.8500539374325782, "position": { "x": 6, "y": 0 @@ -4362,10 +4546,10 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4772, - "time": 0.854368932038835, + "noteOrder": 4774, + "time": 0.8543689320388349, "position": { "x": 7, "y": 0 @@ -4385,9 +4569,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4796, + "noteOrder": 4798, "time": 0.8586839266450916, "position": { "x": 7, @@ -4408,10 +4592,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4916, - "time": 0.8802588996763753, + "noteOrder": 4919, + "time": 0.8802588996763754, "position": { "x": 4, "y": 0 @@ -4431,10 +4615,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4940, - "time": 0.8845738942826322, + "noteOrder": 4943, + "time": 0.8845738942826321, "position": { "x": 4, "y": 0 @@ -4454,9 +4638,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4964, + "noteOrder": 4967, "time": 0.888888888888889, "position": { "x": 3, @@ -4477,9 +4661,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4989, + "noteOrder": 4991, "time": 0.8932038834951457, "position": { "x": 3, @@ -4500,10 +4684,10 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5061, - "time": 0.9061488673139158, + "noteOrder": 5063, + "time": 0.9061488673139159, "position": { "x": 4, "y": 0 @@ -4523,10 +4707,10 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5085, - "time": 0.9104638619201725, + "noteOrder": 5087, + "time": 0.9104638619201726, "position": { "x": 4, "y": 0 @@ -4546,10 +4730,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5061, - "time": 0.9061488673139158, + "noteOrder": 5063, + "time": 0.9061488673139159, "position": { "x": 6, "y": 0 @@ -4569,10 +4753,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5085, - "time": 0.9104638619201725, + "noteOrder": 5087, + "time": 0.9104638619201726, "position": { "x": 6, "y": 0 @@ -4592,9 +4776,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5398, + "noteOrder": 5401, "time": 0.9665587918015103, "position": { "x": 6, @@ -4615,9 +4799,9 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5446, + "noteOrder": 5449, "time": 0.9751887810140237, "position": { "x": 6, @@ -4638,10 +4822,10 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5422, - "time": 0.970873786407767, + "noteOrder": 5425, + "time": 0.9708737864077671, "position": { "x": 4, "y": 0 @@ -4661,9 +4845,9 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5446, + "noteOrder": 5449, "time": 0.9751887810140237, "position": { "x": 4, diff --git a/tracks/HIP/info.json b/tracks/HIP/info.json index 02cca28d..cddf05d0 100644 --- a/tracks/HIP/info.json +++ b/tracks/HIP/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HIP", - "SongLength": "111.177143", + "SongLength": "101.224490", "SongAuthorName": "Mamamoo", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HYPERDRIVE/181_difficulty_1a.json b/tracks/HYPERDRIVE/181_difficulty_1a.json index 25d64f4f..e0eb4fe1 100644 --- a/tracks/HYPERDRIVE/181_difficulty_1a.json +++ b/tracks/HYPERDRIVE/181_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 145, - "time": 0.02214022140221402, + "time": 0.022140221402214024, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 169, - "time": 0.025830258302583023, + "time": 0.02583025830258303, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 217, - "time": 0.03321033210332103, + "time": 0.033210332103321034, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 265, - "time": 0.04059040590405904, + "time": 0.040590405904059046, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 289, - "time": 0.04428044280442804, + "time": 0.04428044280442805, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 313, - "time": 0.047970479704797044, + "time": 0.04797047970479705, "position": { "x": 5, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 337, - "time": 0.051660516605166046, + "noteOrder": 338, + "time": 0.05166051660516606, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 362, - "time": 0.05535055350553505, + "time": 0.05535055350553506, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 434, - "time": 0.06642066420664205, + "time": 0.06642066420664207, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 458, - "time": 0.07011070110701106, + "time": 0.07011070110701108, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 530, - "time": 0.08118081180811808, + "time": 0.08118081180811809, "position": { "x": 8, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 554, - "time": 0.08487084870848707, + "noteOrder": 555, + "time": 0.08487084870848709, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 603, - "time": 0.09225092250922508, + "time": 0.0922509225092251, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 627, - "time": 0.09594095940959409, + "time": 0.0959409594095941, "position": { "x": 2, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 651, - "time": 0.09963099630996308, + "time": 0.09963099630996311, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 699, - "time": 0.10701107011070109, + "time": 0.10701107011070111, "position": { "x": 8, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 747, - "time": 0.11439114391143912, + "time": 0.1143911439114391, "position": { "x": 2, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 771, + "noteOrder": 772, "time": 0.11808118081180811, "position": { "x": 7, @@ -514,7 +514,7 @@ }, { "noteOrder": 868, - "time": 0.1328413284132841, + "time": 0.13284132841328414, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 868, - "time": 0.1328413284132841, + "time": 0.13284132841328414, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 892, - "time": 0.13653136531365312, + "time": 0.13653136531365315, "position": { "x": 8, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 892, - "time": 0.13653136531365312, + "time": 0.13653136531365315, "position": { "x": 5, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 916, - "time": 0.14022140221402213, + "time": 0.14022140221402216, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 988, - "time": 0.15129151291512913, + "noteOrder": 989, + "time": 0.15129151291512916, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 988, - "time": 0.15129151291512913, + "noteOrder": 989, + "time": 0.15129151291512916, "position": { "x": 2, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.15498154981549817, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1277, - "time": 0.19557195571955718, + "noteOrder": 1278, + "time": 0.1955719557195572, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.19926199261992616, + "noteOrder": 1302, + "time": 0.19926199261992622, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1326, - "time": 0.2029520295202952, + "time": 0.20295202952029523, "position": { "x": 3, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1374, - "time": 0.2103321033210332, + "time": 0.21033210332103322, "position": { "x": 5, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1398, - "time": 0.21402214022140217, + "time": 0.21402214022140223, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1422, - "time": 0.2177121771217712, + "noteOrder": 1423, + "time": 0.21771217712177124, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1470, - "time": 0.2250922509225092, + "noteOrder": 1471, + "time": 0.22509225092250923, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1494, - "time": 0.22878228782287824, + "noteOrder": 1495, + "time": 0.2287822878228782, "position": { "x": 8, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.23247232472324722, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1711, - "time": 0.2619926199261992, + "noteOrder": 1712, + "time": 0.26199261992619927, "position": { "x": 3, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1808, - "time": 0.27675276752767525, + "time": 0.2767527675276753, "position": { "x": 3, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1832, - "time": 0.28044280442804426, + "time": 0.2804428044280443, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1856, + "noteOrder": 1857, "time": 0.28413284132841327, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2097, - "time": 0.3210332103321033, + "noteOrder": 2098, + "time": 0.32103321033210336, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2193, - "time": 0.3357933579335793, + "noteOrder": 2194, + "time": 0.33579335793357934, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2217, - "time": 0.3394833948339483, + "noteOrder": 2218, + "time": 0.33948339483394835, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.34317343173431736, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2482, - "time": 0.38007380073800734, + "noteOrder": 2484, + "time": 0.3800738007380074, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2579, - "time": 0.3948339483394833, + "noteOrder": 2580, + "time": 0.39483394833948343, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.39852398523985233, + "noteOrder": 2604, + "time": 0.39852398523985244, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2627, - "time": 0.4022140221402214, + "noteOrder": 2628, + "time": 0.40221402214022145, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2651, - "time": 0.4059040590405904, + "noteOrder": 2652, + "time": 0.40590405904059046, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2699, - "time": 0.41328413284132837, + "noteOrder": 2701, + "time": 0.4132841328413285, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2748, - "time": 0.4206642066420664, + "noteOrder": 2749, + "time": 0.42066420664206644, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2868, - "time": 0.43911439114391143, + "noteOrder": 2869, + "time": 0.4391143911439115, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2964, - "time": 0.4538745387453874, + "noteOrder": 2966, + "time": 0.45387453874538747, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2989, - "time": 0.4575645756457565, + "noteOrder": 2990, + "time": 0.4575645756457564, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3014, "time": 0.46125461254612543, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3038, "time": 0.46494464944649444, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3181, + "noteOrder": 3183, "time": 0.4870848708487085, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3205, - "time": 0.4907749077490774, + "noteOrder": 3207, + "time": 0.4907749077490775, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3278, + "noteOrder": 3279, "time": 0.5018450184501845, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3302, + "noteOrder": 3303, "time": 0.5055350553505535, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3374, + "noteOrder": 3376, "time": 0.5166051660516605, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3422, - "time": 0.5239852398523984, + "noteOrder": 3424, + "time": 0.5239852398523985, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3567, - "time": 0.5461254612546125, + "noteOrder": 3569, + "time": 0.5461254612546126, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3591, + "noteOrder": 3593, "time": 0.5498154981549815, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3615, - "time": 0.5535055350553505, + "noteOrder": 3617, + "time": 0.5535055350553506, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3639, - "time": 0.5571955719557194, + "noteOrder": 3641, + "time": 0.5571955719557196, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3663, - "time": 0.5608856088560885, + "noteOrder": 3665, + "time": 0.5608856088560886, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3687, + "noteOrder": 3689, "time": 0.5645756457564576, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3713, "time": 0.5682656826568265, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3736, - "time": 0.5719557195571955, + "noteOrder": 3737, + "time": 0.5719557195571956, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3760, + "noteOrder": 3761, "time": 0.5756457564575646, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3784, - "time": 0.5793357933579335, + "noteOrder": 3786, + "time": 0.5793357933579336, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3810, "time": 0.5830258302583026, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3810, "time": 0.5830258302583026, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.5867158671586715, + "noteOrder": 3834, + "time": 0.5867158671586716, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.5867158671586715, + "noteOrder": 3834, + "time": 0.5867158671586716, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3977, - "time": 0.6088560885608856, + "noteOrder": 3978, + "time": 0.6088560885608857, "position": { "x": 3, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4001, - "time": 0.6125461254612545, + "noteOrder": 4003, + "time": 0.6125461254612546, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.6162361623616235, + "noteOrder": 4027, + "time": 0.6162361623616236, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4073, + "noteOrder": 4075, "time": 0.6236162361623616, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4097, - "time": 0.6273062730627306, + "noteOrder": 4099, + "time": 0.6273062730627307, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4121, + "noteOrder": 4123, "time": 0.6309963099630996, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4170, + "noteOrder": 4171, "time": 0.6383763837638377, "position": { "x": 2, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4218, - "time": 0.6457564575645756, + "noteOrder": 4220, + "time": 0.6457564575645757, "position": { "x": 8, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4242, - "time": 0.6494464944649446, + "noteOrder": 4244, + "time": 0.6494464944649447, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4266, - "time": 0.6531365313653136, + "noteOrder": 4268, + "time": 0.6531365313653137, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.6678966789667896, + "noteOrder": 4364, + "time": 0.6678966789667897, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4386, - "time": 0.6715867158671586, + "noteOrder": 4388, + "time": 0.6715867158671587, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4411, - "time": 0.6752767527675275, + "noteOrder": 4412, + "time": 0.6752767527675277, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4459, - "time": 0.6826568265682655, + "noteOrder": 4461, + "time": 0.6826568265682658, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4483, + "noteOrder": 4485, "time": 0.6863468634686347, "position": { "x": 4, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4507, - "time": 0.6900369003690037, + "noteOrder": 4509, + "time": 0.6900369003690038, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4555, - "time": 0.6974169741697417, + "noteOrder": 4557, + "time": 0.6974169741697418, "position": { "x": 8, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4603, + "noteOrder": 4605, "time": 0.7047970479704797, "position": { "x": 2, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4627, - "time": 0.7084870848708487, + "noteOrder": 4629, + "time": 0.7084870848708488, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4652, - "time": 0.7121771217712176, + "noteOrder": 4654, + "time": 0.7121771217712177, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4748, - "time": 0.7269372693726937, + "noteOrder": 4750, + "time": 0.7269372693726938, "position": { "x": 5, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4772, - "time": 0.7306273062730626, + "noteOrder": 4774, + "time": 0.7306273062730628, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4796, - "time": 0.7343173431734317, + "noteOrder": 4798, + "time": 0.7343173431734318, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4844, - "time": 0.7416974169741696, + "noteOrder": 4846, + "time": 0.7416974169741698, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4868, - "time": 0.7453874538745388, + "noteOrder": 4871, + "time": 0.7453874538745389, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4893, - "time": 0.7490774907749077, + "noteOrder": 4895, + "time": 0.7490774907749078, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4941, - "time": 0.7564575645756457, + "noteOrder": 4943, + "time": 0.7564575645756458, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4989, - "time": 0.7638376383763837, + "noteOrder": 4991, + "time": 0.7638376383763839, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5013, - "time": 0.7675276752767527, + "noteOrder": 5015, + "time": 0.7675276752767528, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5037, - "time": 0.7712177121771218, + "noteOrder": 5039, + "time": 0.7712177121771219, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5061, - "time": 0.7749077490774907, + "noteOrder": 5063, + "time": 0.7749077490774908, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5061, - "time": 0.7749077490774907, + "noteOrder": 5063, + "time": 0.7749077490774908, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5134, - "time": 0.7859778597785977, + "noteOrder": 5136, + "time": 0.7859778597785979, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5158, - "time": 0.7896678966789666, + "noteOrder": 5160, + "time": 0.7896678966789669, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5182, - "time": 0.7933579335793357, + "noteOrder": 5184, + "time": 0.7933579335793358, "position": { "x": 3, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.8007380073800738, "position": { "x": 5, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5254, - "time": 0.8044280442804428, + "noteOrder": 5256, + "time": 0.8044280442804429, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.8081180811808117, + "noteOrder": 5280, + "time": 0.8081180811808119, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5326, - "time": 0.8154981549815498, + "noteOrder": 5329, + "time": 0.8154981549815499, "position": { "x": 5, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5399, - "time": 0.8265682656826567, + "noteOrder": 5401, + "time": 0.826568265682657, "position": { "x": 7, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5399, - "time": 0.8265682656826567, + "noteOrder": 5401, + "time": 0.826568265682657, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5688, - "time": 0.8708487084870848, + "noteOrder": 5690, + "time": 0.870848708487085, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5712, - "time": 0.8745387453874538, + "noteOrder": 5714, + "time": 0.874538745387454, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5760, - "time": 0.8819188191881918, + "noteOrder": 5763, + "time": 0.8819188191881919, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5784, - "time": 0.8856088560885608, + "noteOrder": 5787, + "time": 0.885608856088561, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5808, - "time": 0.8892988929889298, + "noteOrder": 5811, + "time": 0.88929889298893, "position": { "x": 6, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5857, + "noteOrder": 5859, "time": 0.8966789667896679, "position": { "x": 4, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5953, - "time": 0.9114391143911438, + "noteOrder": 5956, + "time": 0.9114391143911439, "position": { "x": 7, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6049, + "noteOrder": 6052, "time": 0.9261992619926199, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6170, + "noteOrder": 6173, "time": 0.9446494464944649, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6194, - "time": 0.9483394833948339, + "noteOrder": 6197, + "time": 0.948339483394834, "position": { "x": 4, "y": 0 @@ -2716,7 +2716,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.07380073800738007, @@ -2739,10 +2739,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 578, - "time": 0.08856088560885608, + "noteOrder": 579, + "time": 0.0885608856088561, "position": { "x": 6, "y": 0 @@ -2762,10 +2762,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 578, - "time": 0.08856088560885608, + "noteOrder": 579, + "time": 0.0885608856088561, "position": { "x": 4, "y": 0 @@ -2785,10 +2785,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 675, - "time": 0.10332103321033209, + "time": 0.10332103321033212, "position": { "x": 4, "y": 0 @@ -2808,10 +2808,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.10332103321033209, + "time": 0.10332103321033212, "position": { "x": 6, "y": 0 @@ -2831,10 +2831,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 723, - "time": 0.1107011070110701, + "time": 0.11070110701107012, "position": { "x": 6, "y": 0 @@ -2854,10 +2854,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, - "time": 0.1107011070110701, + "time": 0.11070110701107012, "position": { "x": 4, "y": 0 @@ -2877,9 +2877,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 771, + "noteOrder": 772, "time": 0.11808118081180811, "position": { "x": 4, @@ -2900,9 +2900,9 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 819, + "noteOrder": 820, "time": 0.12546125461254612, "position": { "x": 6, @@ -2923,7 +2923,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 844, "time": 0.12915129151291513, @@ -2946,9 +2946,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 819, + "noteOrder": 820, "time": 0.12546125461254612, "position": { "x": 4, @@ -2969,7 +2969,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 844, "time": 0.12915129151291513, @@ -2992,10 +2992,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 916, - "time": 0.14022140221402213, + "time": 0.14022140221402216, "position": { "x": 7, "y": 0 @@ -3015,7 +3015,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 940, "time": 0.14391143911439114, @@ -3038,9 +3038,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.15498154981549817, "position": { "x": 3, @@ -3061,10 +3061,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1036, - "time": 0.15867158671586715, + "noteOrder": 1037, + "time": 0.15867158671586717, "position": { "x": 4, "y": 0 @@ -3084,10 +3084,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1060, - "time": 0.16236162361623616, + "noteOrder": 1061, + "time": 0.16236162361623618, "position": { "x": 3, "y": 0 @@ -3107,10 +3107,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1085, - "time": 0.16605166051660514, + "time": 0.16605166051660517, "position": { "x": 3, "y": 0 @@ -3130,10 +3130,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1109, - "time": 0.16974169741697415, + "time": 0.16974169741697417, "position": { "x": 4, "y": 0 @@ -3153,10 +3153,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1133, - "time": 0.17343173431734316, + "time": 0.17343173431734318, "position": { "x": 4, "y": 0 @@ -3176,10 +3176,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, - "time": 0.17712177121771217, + "time": 0.1771217712177122, "position": { "x": 6, "y": 0 @@ -3199,10 +3199,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1181, - "time": 0.18081180811808117, + "time": 0.1808118081180812, "position": { "x": 6, "y": 0 @@ -3222,10 +3222,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1205, - "time": 0.18450184501845016, + "noteOrder": 1206, + "time": 0.1845018450184502, "position": { "x": 7, "y": 0 @@ -3245,9 +3245,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1229, + "noteOrder": 1230, "time": 0.1881918819188192, "position": { "x": 7, @@ -3268,10 +3268,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1253, - "time": 0.19188191881918817, + "noteOrder": 1254, + "time": 0.1918819188191882, "position": { "x": 7, "y": 0 @@ -3291,10 +3291,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1277, - "time": 0.19557195571955718, + "noteOrder": 1278, + "time": 0.1955719557195572, "position": { "x": 7, "y": 0 @@ -3314,10 +3314,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1350, - "time": 0.20664206642066418, + "time": 0.20664206642066424, "position": { "x": 4, "y": 0 @@ -3337,10 +3337,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1350, - "time": 0.20664206642066418, + "time": 0.20664206642066424, "position": { "x": 3, "y": 0 @@ -3360,10 +3360,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1374, - "time": 0.2103321033210332, + "time": 0.21033210332103322, "position": { "x": 3, "y": 0 @@ -3383,10 +3383,10 @@ }, { "lineGroupId": 57, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1446, - "time": 0.2214022140221402, + "noteOrder": 1447, + "time": 0.22140221402214025, "position": { "x": 6, "y": 0 @@ -3406,10 +3406,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, - "time": 0.2214022140221402, + "noteOrder": 1447, + "time": 0.22140221402214025, "position": { "x": 7, "y": 0 @@ -3429,10 +3429,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.2250922509225092, + "noteOrder": 1471, + "time": 0.22509225092250923, "position": { "x": 7, "y": 0 @@ -3452,9 +3452,9 @@ }, { "lineGroupId": 61, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.23247232472324722, "position": { "x": 5, @@ -3475,9 +3475,9 @@ }, { "lineGroupId": 61, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1542, + "noteOrder": 1543, "time": 0.23616236162361623, "position": { "x": 5, @@ -3498,9 +3498,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, + "noteOrder": 1640, "time": 0.25092250922509224, "position": { "x": 3, @@ -3520,11 +3520,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1663, - "time": 0.25461254612546125, + "noteOrder": 1652, + "time": 0.25276752767527677, "position": { "x": 3, "y": 0 @@ -3538,18 +3538,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1687, - "time": 0.25830258302583026, + "noteOrder": 1652, + "time": 0.25276752767527677, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3566,11 +3566,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1735, - "time": 0.2656826568265682, + "noteOrder": 1664, + "time": 0.25461254612546125, "position": { "x": 3, "y": 0 @@ -3584,16 +3584,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1759, - "time": 0.26937269372693723, + "noteOrder": 1676, + "time": 0.2564575645756458, "position": { "x": 3, "y": 0 @@ -3612,13 +3612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1783, - "time": 0.27306273062730624, + "noteOrder": 1676, + "time": 0.2564575645756458, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3630,18 +3630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, - "time": 0.2878228782287823, + "noteOrder": 1688, + "time": 0.25830258302583026, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3653,18 +3653,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1904, - "time": 0.2915129151291513, + "noteOrder": 1700, + "time": 0.2601476014760148, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3676,18 +3676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1928, - "time": 0.2952029520295203, + "noteOrder": 1700, + "time": 0.2601476014760148, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3699,18 +3699,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 3, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1952, - "time": 0.29889298892988925, + "noteOrder": 1736, + "time": 0.2656826568265683, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3722,18 +3722,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 4, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1976, - "time": 0.30258302583025826, + "noteOrder": 1748, + "time": 0.26752767527675275, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3745,18 +3745,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 5, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2000, - "time": 0.30627306273062727, + "noteOrder": 1748, + "time": 0.26752767527675275, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3768,18 +3768,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, - "time": 0.2878228782287823, + "noteOrder": 1760, + "time": 0.2693726937269373, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3791,18 +3791,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1904, - "time": 0.2915129151291513, + "noteOrder": 1772, + "time": 0.27121771217712176, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3814,18 +3814,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 2, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1928, - "time": 0.2952029520295203, + "noteOrder": 1772, + "time": 0.27121771217712176, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3837,16 +3837,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 3, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1952, - "time": 0.29889298892988925, + "noteOrder": 1784, + "time": 0.2730627306273063, "position": { "x": 3, "y": 0 @@ -3865,11 +3865,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 4, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1976, - "time": 0.30258302583025826, + "noteOrder": 1796, + "time": 0.27490774907749077, "position": { "x": 3, "y": 0 @@ -3888,13 +3888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 5, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2000, - "time": 0.30627306273062727, + "noteOrder": 1796, + "time": 0.27490774907749077, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3911,13 +3911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2025, - "time": 0.30996309963099633, + "noteOrder": 1881, + "time": 0.2878228782287823, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3934,13 +3934,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2049, - "time": 0.3136531365313653, + "noteOrder": 1905, + "time": 0.2915129151291513, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3952,18 +3952,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2073, - "time": 0.3173431734317343, + "noteOrder": 1929, + "time": 0.2952029520295203, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3980,13 +3980,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2121, - "time": 0.3247232472324723, + "noteOrder": 1953, + "time": 0.2988929889298893, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4003,13 +4003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2145, - "time": 0.3284132841328413, + "noteOrder": 1977, + "time": 0.3025830258302583, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4021,18 +4021,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2169, - "time": 0.3321033210332103, + "noteOrder": 2001, + "time": 0.3062730627306273, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4049,11 +4049,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2266, - "time": 0.3468634686346863, + "noteOrder": 1881, + "time": 0.2878228782287823, "position": { "x": 4, "y": 0 @@ -4072,11 +4072,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2290, - "time": 0.3505535055350553, + "noteOrder": 1905, + "time": 0.2915129151291513, "position": { "x": 4, "y": 0 @@ -4095,11 +4095,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 2, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2314, - "time": 0.35424354243542433, + "noteOrder": 1929, + "time": 0.2952029520295203, "position": { "x": 4, "y": 0 @@ -4118,13 +4118,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 3, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2338, - "time": 0.35793357933579334, + "noteOrder": 1953, + "time": 0.2988929889298893, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4141,13 +4141,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 4, + "lineGroupId": 78, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2362, - "time": 0.36162361623616235, + "noteOrder": 1977, + "time": 0.3025830258302583, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4164,11 +4164,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 5, + "lineGroupId": 78, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2386, - "time": 0.3653136531365313, + "noteOrder": 2001, + "time": 0.3062730627306273, "position": { "x": 4, "y": 0 @@ -4187,13 +4187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2266, - "time": 0.3468634686346863, + "noteOrder": 2025, + "time": 0.30996309963099633, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4210,13 +4210,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2290, - "time": 0.3505535055350553, + "noteOrder": 2037, + "time": 0.3118081180811808, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4233,11 +4233,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 2, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2314, - "time": 0.35424354243542433, + "noteOrder": 2037, + "time": 0.3118081180811808, "position": { "x": 6, "y": 0 @@ -4256,11 +4256,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 3, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2338, - "time": 0.35793357933579334, + "noteOrder": 2049, + "time": 0.31365313653136534, "position": { "x": 7, "y": 0 @@ -4274,16 +4274,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 4, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2362, - "time": 0.36162361623616235, + "noteOrder": 2062, + "time": 0.3154981549815498, "position": { "x": 7, "y": 0 @@ -4297,16 +4297,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 5, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2386, - "time": 0.3653136531365313, + "noteOrder": 2062, + "time": 0.3154981549815498, "position": { "x": 6, "y": 0 @@ -4320,41 +4320,18 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 97, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2410, - "time": 0.3690036900369003, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2422, - "time": 0.3708487084870848, + "noteOrder": 2074, + "time": 0.31734317343173435, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4371,11 +4348,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 84, "indexInLine": 2, "isSliding": false, - "noteOrder": 2434, - "time": 0.3726937269372694, + "noteOrder": 2086, + "time": 0.3191881918819188, "position": { "x": 7, "y": 0 @@ -4394,13 +4371,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2434, - "time": 0.3726937269372694, + "noteOrder": 2086, + "time": 0.3191881918819188, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4412,18 +4389,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2446, - "time": 0.37453874538745385, + "noteOrder": 2122, + "time": 0.32472324723247237, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4435,18 +4412,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 86, "indexInLine": 2, "isSliding": false, - "noteOrder": 2458, - "time": 0.3763837638376384, + "noteOrder": 2134, + "time": 0.32656826568265684, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4458,18 +4435,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2458, - "time": 0.3763837638376384, + "noteOrder": 2134, + "time": 0.32656826568265684, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4486,13 +4463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 2470, - "time": 0.37822878228782286, + "noteOrder": 2146, + "time": 0.3284132841328414, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4504,16 +4481,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 87, "indexInLine": 2, "isSliding": false, - "noteOrder": 2482, - "time": 0.38007380073800734, + "noteOrder": 2158, + "time": 0.33025830258302585, "position": { "x": 7, "y": 0 @@ -4527,18 +4504,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2507, - "time": 0.38376383763837635, + "noteOrder": 2158, + "time": 0.33025830258302585, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4555,13 +4532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 2519, - "time": 0.3856088560885609, + "noteOrder": 2170, + "time": 0.33210332103321033, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4573,18 +4550,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 88, "indexInLine": 2, "isSliding": false, - "noteOrder": 2531, - "time": 0.38745387453874536, + "noteOrder": 2182, + "time": 0.33394833948339486, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4596,18 +4573,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2531, - "time": 0.38745387453874536, + "noteOrder": 2182, + "time": 0.33394833948339486, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4624,13 +4601,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 2543, - "time": 0.38929889298892983, + "noteOrder": 2266, + "time": 0.34686346863468637, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4642,18 +4619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 92, "indexInLine": 2, "isSliding": false, - "noteOrder": 2555, - "time": 0.39114391143911437, + "noteOrder": 2291, + "time": 0.3505535055350554, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4665,18 +4642,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2555, - "time": 0.39114391143911437, + "noteOrder": 2315, + "time": 0.3542435424354244, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4693,13 +4670,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2567, - "time": 0.39298892988929884, + "noteOrder": 2339, + "time": 0.3579335793357934, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4716,13 +4693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 2, + "lineGroupId": 92, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2579, - "time": 0.3948339483394833, + "noteOrder": 2363, + "time": 0.3616236162361624, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4739,11 +4716,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2651, - "time": 0.4059040590405904, + "noteOrder": 2387, + "time": 0.3653136531365314, "position": { "x": 4, "y": 0 @@ -4762,13 +4739,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 2675, - "time": 0.4095940959409594, + "noteOrder": 2266, + "time": 0.34686346863468637, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4780,16 +4757,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 93, "indexInLine": 2, "isSliding": false, - "noteOrder": 2772, - "time": 0.4243542435424354, + "noteOrder": 2291, + "time": 0.3505535055350554, "position": { "x": 6, "y": 0 @@ -4803,18 +4780,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2796, - "time": 0.42804428044280435, + "noteOrder": 2315, + "time": 0.3542435424354244, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4831,13 +4808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2808, - "time": 0.42988929889298894, + "noteOrder": 2339, + "time": 0.3579335793357934, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4854,13 +4831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2820, - "time": 0.4317343173431734, + "noteOrder": 2363, + "time": 0.3616236162361624, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4877,11 +4854,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2820, - "time": 0.4317343173431734, + "noteOrder": 2387, + "time": 0.3653136531365314, "position": { "x": 6, "y": 0 @@ -4895,18 +4872,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 97, "indexInLine": 1, "isSliding": false, - "noteOrder": 2832, - "time": 0.43357933579335795, + "noteOrder": 2411, + "time": 0.3690036900369004, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4918,16 +4895,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 97, "indexInLine": 2, "isSliding": false, - "noteOrder": 2844, - "time": 0.4354243542435424, + "noteOrder": 2423, + "time": 0.3708487084870849, "position": { "x": 6, "y": 0 @@ -4941,18 +4918,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2844, - "time": 0.4354243542435424, + "noteOrder": 2435, + "time": 0.37269372693726943, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4969,13 +4946,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 2856, - "time": 0.4372693726937269, + "noteOrder": 2435, + "time": 0.37269372693726943, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4987,16 +4964,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 98, "indexInLine": 2, "isSliding": false, - "noteOrder": 2868, - "time": 0.43911439114391143, + "noteOrder": 2447, + "time": 0.3745387453874539, "position": { "x": 4, "y": 0 @@ -5010,18 +4987,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2892, - "time": 0.4428044280442804, + "noteOrder": 2459, + "time": 0.3763837638376384, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5038,13 +5015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2904, - "time": 0.4446494464944649, + "noteOrder": 2459, + "time": 0.3763837638376384, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5056,16 +5033,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 99, "indexInLine": 2, "isSliding": false, - "noteOrder": 2916, - "time": 0.4464944649446494, + "noteOrder": 2471, + "time": 0.3782287822878229, "position": { "x": 6, "y": 0 @@ -5079,18 +5056,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2916, - "time": 0.4464944649446494, + "noteOrder": 2484, + "time": 0.3800738007380074, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5107,13 +5084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 2928, - "time": 0.4483394833948339, + "noteOrder": 2508, + "time": 0.3837638376383764, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5125,16 +5102,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 101, "indexInLine": 2, "isSliding": false, - "noteOrder": 2940, - "time": 0.4501845018450184, + "noteOrder": 2520, + "time": 0.38560885608856094, "position": { "x": 4, "y": 0 @@ -5148,18 +5125,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2940, - "time": 0.4501845018450184, + "noteOrder": 2532, + "time": 0.3874538745387454, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5176,13 +5153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 2952, - "time": 0.4520295202952029, + "noteOrder": 2532, + "time": 0.3874538745387454, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5194,16 +5171,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 102, "indexInLine": 2, "isSliding": false, - "noteOrder": 2964, - "time": 0.4538745387453874, + "noteOrder": 2544, + "time": 0.38929889298892995, "position": { "x": 6, "y": 0 @@ -5217,18 +5194,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3085, - "time": 0.47232472324723246, + "noteOrder": 2556, + "time": 0.3911439114391144, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5240,18 +5217,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 3157, - "time": 0.48339483394833943, + "noteOrder": 2556, + "time": 0.3911439114391144, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5268,13 +5245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3374, - "time": 0.5166051660516605, + "noteOrder": 2568, + "time": 0.39298892988929895, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5286,18 +5263,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3398, - "time": 0.5202952029520295, + "noteOrder": 2580, + "time": 0.39483394833948343, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5309,18 +5286,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3422, - "time": 0.5239852398523984, + "noteOrder": 2652, + "time": 0.40590405904059046, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5337,11 +5314,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3446, - "time": 0.5276752767527675, + "noteOrder": 2676, + "time": 0.40959409594095947, "position": { "x": 4, "y": 0 @@ -5360,13 +5337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3471, - "time": 0.5313653136531364, + "noteOrder": 2773, + "time": 0.42435424354243545, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5378,18 +5355,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 3495, - "time": 0.5350553505535055, + "noteOrder": 2797, + "time": 0.42804428044280446, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5406,13 +5383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3495, - "time": 0.5350553505535055, + "noteOrder": 2809, + "time": 0.429889298892989, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5424,18 +5401,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3519, - "time": 0.5387453874538745, + "noteOrder": 2821, + "time": 0.43173431734317347, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5447,18 +5424,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3953, - "time": 0.6051660516605165, + "noteOrder": 2821, + "time": 0.43173431734317347, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5470,18 +5447,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4025, - "time": 0.6162361623616235, + "noteOrder": 2833, + "time": 0.433579335793358, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5493,18 +5470,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4049, - "time": 0.6199261992619927, + "noteOrder": 2845, + "time": 0.4354243542435425, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5521,13 +5498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 4121, - "time": 0.6309963099630996, + "noteOrder": 2845, + "time": 0.4354243542435425, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5539,18 +5516,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4145, - "time": 0.6346863468634686, + "noteOrder": 2857, + "time": 0.437269372693727, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5567,11 +5544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4194, - "time": 0.6420664206642066, + "noteOrder": 2869, + "time": 0.4391143911439115, "position": { "x": 4, "y": 0 @@ -5590,11 +5567,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4194, - "time": 0.6420664206642066, + "noteOrder": 2893, + "time": 0.4428044280442805, "position": { "x": 6, "y": 0 @@ -5613,13 +5590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4242, - "time": 0.6494464944649446, + "noteOrder": 2905, + "time": 0.444649446494465, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5636,13 +5613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4290, - "time": 0.6568265682656826, + "noteOrder": 2918, + "time": 0.4464944649446495, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5659,11 +5636,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 4314, - "time": 0.6605166051660516, + "noteOrder": 2918, + "time": 0.4464944649446495, "position": { "x": 4, "y": 0 @@ -5677,18 +5654,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4290, - "time": 0.6568265682656826, + "noteOrder": 2930, + "time": 0.4483394833948339, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5705,13 +5682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4314, - "time": 0.6605166051660516, + "noteOrder": 2942, + "time": 0.45018450184501846, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5728,13 +5705,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4338, - "time": 0.6642066420664205, + "noteOrder": 2942, + "time": 0.45018450184501846, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5751,13 +5728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4411, - "time": 0.6752767527675275, + "noteOrder": 2954, + "time": 0.45202952029520294, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5774,13 +5751,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4435, - "time": 0.6789667896678966, + "noteOrder": 2966, + "time": 0.45387453874538747, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5792,18 +5769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 126, "indexInLine": 1, "isSliding": false, - "noteOrder": 4507, - "time": 0.6900369003690037, + "noteOrder": 3086, + "time": 0.47232472324723246, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5815,18 +5792,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4531, - "time": 0.6937269372693726, + "noteOrder": 3159, + "time": 0.4833948339483395, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5843,13 +5820,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 4579, - "time": 0.7011070110701106, + "noteOrder": 3376, + "time": 0.5166051660516605, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5861,18 +5838,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4579, - "time": 0.7011070110701106, + "noteOrder": 3400, + "time": 0.5202952029520296, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5889,13 +5866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 4627, - "time": 0.7084870848708487, + "noteOrder": 3424, + "time": 0.5239852398523985, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5907,18 +5884,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.7158671586715867, + "noteOrder": 3448, + "time": 0.5276752767527675, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5930,18 +5907,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 4700, - "time": 0.7195571955719556, + "noteOrder": 3472, + "time": 0.5313653136531366, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5958,13 +5935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.7158671586715867, + "noteOrder": 3496, + "time": 0.5350553505535055, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5976,18 +5953,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 4700, - "time": 0.7195571955719556, + "noteOrder": 3496, + "time": 0.5350553505535055, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6004,13 +5981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4724, - "time": 0.7232472324723247, + "noteOrder": 3520, + "time": 0.5387453874538746, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6022,18 +5999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 4820, - "time": 0.7380073800738006, + "noteOrder": 3954, + "time": 0.6051660516605166, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6050,13 +6027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4820, - "time": 0.7380073800738006, + "noteOrder": 4027, + "time": 0.6162361623616236, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6068,18 +6045,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 4917, - "time": 0.7527675276752768, + "noteOrder": 4051, + "time": 0.6199261992619927, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6096,13 +6073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4917, - "time": 0.7527675276752768, + "noteOrder": 4123, + "time": 0.6309963099630996, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6114,18 +6091,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 4941, - "time": 0.7564575645756457, + "noteOrder": 4147, + "time": 0.6346863468634687, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6142,13 +6119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 165, "indexInLine": 2, "isSliding": false, - "noteOrder": 4965, - "time": 0.7601476014760147, + "noteOrder": 4195, + "time": 0.6420664206642067, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6165,13 +6142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4965, - "time": 0.7601476014760147, + "noteOrder": 4195, + "time": 0.6420664206642067, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6188,13 +6165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4989, - "time": 0.7638376383763837, + "noteOrder": 4244, + "time": 0.6494464944649447, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6211,11 +6188,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 2, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5013, - "time": 0.7675276752767527, + "noteOrder": 4292, + "time": 0.6568265682656828, "position": { "x": 4, "y": 0 @@ -6234,13 +6211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5109, - "time": 0.7822878228782287, + "noteOrder": 4316, + "time": 0.6605166051660517, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6257,11 +6234,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 5206, - "time": 0.7970479704797047, + "noteOrder": 4292, + "time": 0.6568265682656828, "position": { "x": 6, "y": 0 @@ -6275,18 +6252,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5206, - "time": 0.7970479704797047, + "noteOrder": 4316, + "time": 0.6605166051660517, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -6303,13 +6280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 5302, - "time": 0.8118081180811808, + "noteOrder": 4340, + "time": 0.6642066420664207, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6321,16 +6298,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5302, - "time": 0.8118081180811808, + "noteOrder": 4412, + "time": 0.6752767527675277, "position": { "x": 3, "y": 0 @@ -6349,13 +6326,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 5326, - "time": 0.8154981549815498, + "noteOrder": 4437, + "time": 0.6789667896678967, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6367,18 +6344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 178, "indexInLine": 2, "isSliding": false, - "noteOrder": 5350, - "time": 0.8191881918819188, + "noteOrder": 4509, + "time": 0.6900369003690038, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6390,18 +6367,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 3, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5375, - "time": 0.8228782287822878, + "noteOrder": 4533, + "time": 0.6937269372693727, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6418,13 +6395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5350, - "time": 0.8191881918819188, + "noteOrder": 4581, + "time": 0.7011070110701108, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -6436,18 +6413,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 5375, - "time": 0.8228782287822878, + "noteOrder": 4581, + "time": 0.7011070110701108, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6464,11 +6441,11 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5495, - "time": 0.8413284132841328, + "noteOrder": 4629, + "time": 0.7084870848708488, "position": { "x": 4, "y": 0 @@ -6487,13 +6464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 5519, - "time": 0.8450184501845017, + "noteOrder": 4678, + "time": 0.7158671586715868, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6510,11 +6487,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5519, - "time": 0.8450184501845017, + "noteOrder": 4702, + "time": 0.7195571955719557, "position": { "x": 6, "y": 0 @@ -6528,18 +6505,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, + "lineGroupId": 189, "indexInLine": 1, "isSliding": false, - "noteOrder": 5543, - "time": 0.8487084870848708, + "noteOrder": 4678, + "time": 0.7158671586715868, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6556,11 +6533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5543, - "time": 0.8487084870848708, + "noteOrder": 4702, + "time": 0.7195571955719557, "position": { "x": 4, "y": 0 @@ -6574,18 +6551,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 5567, - "time": 0.8523985239852397, + "noteOrder": 4726, + "time": 0.7232472324723248, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6602,13 +6579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5567, - "time": 0.8523985239852397, + "noteOrder": 4822, + "time": 0.7380073800738008, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6620,18 +6597,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 5591, - "time": 0.8560885608856087, + "noteOrder": 4822, + "time": 0.7380073800738008, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -6648,13 +6625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5591, - "time": 0.8560885608856087, + "noteOrder": 4919, + "time": 0.7527675276752768, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6666,18 +6643,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 5604, - "time": 0.8579335793357934, + "noteOrder": 4919, + "time": 0.7527675276752768, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6694,13 +6671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 199, "indexInLine": 2, "isSliding": false, - "noteOrder": 5610, - "time": 0.8588560885608855, + "noteOrder": 4943, + "time": 0.7564575645756458, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -6717,13 +6694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 199, "indexInLine": 3, "isSliding": false, - "noteOrder": 5616, - "time": 0.8597785977859779, + "noteOrder": 4967, + "time": 0.7601476014760148, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6740,13 +6717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5616, - "time": 0.8597785977859779, + "noteOrder": 4967, + "time": 0.7601476014760148, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6763,13 +6740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5628, - "time": 0.8616236162361623, + "noteOrder": 4991, + "time": 0.7638376383763839, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6786,13 +6763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5634, - "time": 0.8625461254612546, + "noteOrder": 5015, + "time": 0.7675276752767528, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6809,13 +6786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 3, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5640, - "time": 0.8634686346863468, + "noteOrder": 5112, + "time": 0.7822878228782288, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6832,13 +6809,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5640, - "time": 0.8634686346863468, + "noteOrder": 5208, + "time": 0.7970479704797049, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6850,18 +6827,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, + "lineGroupId": 211, "indexInLine": 1, "isSliding": false, - "noteOrder": 5652, - "time": 0.8653136531365313, + "noteOrder": 5208, + "time": 0.7970479704797049, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -6878,13 +6855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, + "lineGroupId": 211, "indexInLine": 2, "isSliding": false, - "noteOrder": 5658, - "time": 0.8662361623616236, + "noteOrder": 5305, + "time": 0.8118081180811809, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6901,13 +6878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 3, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5664, - "time": 0.8671586715867159, + "noteOrder": 5305, + "time": 0.8118081180811809, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6919,18 +6896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5664, - "time": 0.8671586715867159, + "noteOrder": 5329, + "time": 0.8154981549815499, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -6947,13 +6924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5676, - "time": 0.8690036900369004, + "noteOrder": 5353, + "time": 0.8191881918819189, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6970,13 +6947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5682, - "time": 0.8699261992619925, + "noteOrder": 5377, + "time": 0.8228782287822879, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6993,13 +6970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 3, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5688, - "time": 0.8708487084870848, + "noteOrder": 5353, + "time": 0.8191881918819189, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7011,18 +6988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5736, - "time": 0.8782287822878229, + "noteOrder": 5377, + "time": 0.8228782287822879, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7034,18 +7011,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5832, - "time": 0.8929889298892988, + "noteOrder": 5497, + "time": 0.8413284132841329, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7062,13 +7039,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5881, - "time": 0.9003690036900368, + "noteOrder": 5522, + "time": 0.845018450184502, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7085,13 +7062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5905, - "time": 0.9040590405904058, + "noteOrder": 5522, + "time": 0.845018450184502, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7108,13 +7085,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5929, - "time": 0.9077490774907748, + "noteOrder": 5546, + "time": 0.8487084870848709, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7126,18 +7103,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5977, - "time": 0.915129151291513, + "noteOrder": 5546, + "time": 0.8487084870848709, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7149,18 +7126,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6001, - "time": 0.9188191881918819, + "noteOrder": 5570, + "time": 0.85239852398524, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7177,13 +7154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6025, - "time": 0.9225092250922509, + "noteOrder": 5570, + "time": 0.85239852398524, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7200,13 +7177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6074, - "time": 0.9298892988929889, + "noteOrder": 5594, + "time": 0.8560885608856089, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7218,18 +7195,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6098, - "time": 0.9335793357933578, + "noteOrder": 5594, + "time": 0.8560885608856089, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7241,18 +7218,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6122, - "time": 0.9372693726937269, + "noteOrder": 5606, + "time": 0.8579335793357934, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7269,13 +7246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6146, - "time": 0.9409594095940959, + "noteOrder": 5612, + "time": 0.8588560885608857, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7287,16 +7264,1258 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5618, + "time": 0.859778597785978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5618, + "time": 0.859778597785978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5630, + "time": 0.8616236162361623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5636, + "time": 0.8625461254612546, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5642, + "time": 0.8634686346863469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5642, + "time": 0.8634686346863469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5654, + "time": 0.8653136531365314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5660, + "time": 0.8662361623616237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5666, + "time": 0.867158671586716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5666, + "time": 0.867158671586716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5678, + "time": 0.8690036900369004, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5684, + "time": 0.8699261992619927, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5690, + "time": 0.870848708487085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5739, + "time": 0.878228782287823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5751, + "time": 0.8800738007380075, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5751, + "time": 0.8800738007380075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5763, + "time": 0.8819188191881919, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5763, + "time": 0.8819188191881919, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5835, + "time": 0.892988929889299, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5847, + "time": 0.8948339483394835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5847, + "time": 0.8948339483394835, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5859, + "time": 0.8966789667896679, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5859, + "time": 0.8966789667896679, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5883, + "time": 0.9003690036900369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5895, + "time": 0.9022140221402214, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5895, + "time": 0.9022140221402214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5907, + "time": 0.9040590405904059, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5919, + "time": 0.9059040590405905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5919, + "time": 0.9059040590405905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5931, + "time": 0.9077490774907749, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5944, + "time": 0.9095940959409594, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5944, + "time": 0.9095940959409594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5980, + "time": 0.9151291512915128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5992, + "time": 0.9169741697416974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5992, + "time": 0.9169741697416974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6004, + "time": 0.9188191881918819, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6016, + "time": 0.9206642066420665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6016, + "time": 0.9206642066420665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6028, + "time": 0.9225092250922509, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6040, + "time": 0.9243542435424354, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6040, + "time": 0.9243542435424354, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6076, + "time": 0.9298892988929889, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6088, + "time": 0.9317343173431735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6088, + "time": 0.9317343173431735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6100, + "time": 0.933579335793358, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6112, + "time": 0.9354243542435425, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6112, + "time": 0.9354243542435425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6124, + "time": 0.9372693726937269, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6136, + "time": 0.9391143911439115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6136, + "time": 0.9391143911439115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6148, + "time": 0.940959409594096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6161, + "time": 0.9428044280442804, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6161, + "time": 0.9428044280442804, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6221, + "time": 0.9520295202952029, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6218, - "time": 0.9520295202952028, + "noteOrder": 6233, + "time": 0.9538745387453875, "position": { "x": 3, "y": 0 @@ -7318,8 +8537,77 @@ "lineGroupId": 252, "indexInLine": 3, "isSliding": false, - "noteOrder": 6266, - "time": 0.9594095940959408, + "noteOrder": 6233, + "time": 0.9538745387453875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6245, + "time": 0.9557195571955719, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6245, + "time": 0.9557195571955719, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 6269, + "time": 0.959409594095941, "position": { "x": 3, "y": 0 @@ -7339,10 +8627,33 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6221, + "time": 0.9520295202952029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6218, - "time": 0.9520295202952028, + "noteOrder": 6233, + "time": 0.9538745387453875, "position": { "x": 7, "y": 0 @@ -7364,8 +8675,77 @@ "lineGroupId": 253, "indexInLine": 3, "isSliding": false, - "noteOrder": 6266, - "time": 0.9594095940959408, + "noteOrder": 6233, + "time": 0.9538745387453875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6245, + "time": 0.9557195571955719, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6245, + "time": 0.9557195571955719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 6269, + "time": 0.959409594095941, "position": { "x": 7, "y": 0 diff --git a/tracks/HYPERDRIVE/181_difficulty_1b.json b/tracks/HYPERDRIVE/181_difficulty_1b.json index 674c6730..4e0aa574 100644 --- a/tracks/HYPERDRIVE/181_difficulty_1b.json +++ b/tracks/HYPERDRIVE/181_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.02214022140221402, + "time": 0.022140221402214024, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 289, - "time": 0.04428044280442804, + "time": 0.04428044280442805, "position": { "x": 5, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 337, - "time": 0.051660516605166046, + "noteOrder": 338, + "time": 0.05166051660516606, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 530, - "time": 0.08118081180811808, + "time": 0.08118081180811809, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 578, - "time": 0.08856088560885608, + "noteOrder": 579, + "time": 0.0885608856088561, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 627, - "time": 0.09594095940959409, + "time": 0.0959409594095941, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 675, - "time": 0.10332103321033209, + "time": 0.10332103321033212, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 723, - "time": 0.1107011070110701, + "time": 0.11070110701107012, "position": { "x": 5, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 771, + "noteOrder": 772, "time": 0.11808118081180811, "position": { "x": 4, @@ -294,7 +294,7 @@ }, { "noteOrder": 916, - "time": 0.14022140221402213, + "time": 0.14022140221402216, "position": { "x": 3, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.15498154981549817, "position": { "x": 4, @@ -334,7 +334,7 @@ }, { "noteOrder": 1109, - "time": 0.16974169741697415, + "time": 0.16974169741697417, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1133, - "time": 0.17343173431734316, + "time": 0.17343173431734318, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1157, - "time": 0.17712177121771217, + "time": 0.1771217712177122, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.19926199261992616, + "noteOrder": 1302, + "time": 0.19926199261992622, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1398, - "time": 0.21402214022140217, + "time": 0.21402214022140223, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1494, - "time": 0.22878228782287824, + "noteOrder": 1495, + "time": 0.2287822878228782, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.23247232472324722, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1639, + "noteOrder": 1640, "time": 0.25092250922509224, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1663, + "noteOrder": 1664, "time": 0.25461254612546125, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1688, "time": 0.25830258302583026, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1735, - "time": 0.2656826568265682, + "noteOrder": 1736, + "time": 0.2656826568265683, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1759, - "time": 0.26937269372693723, + "noteOrder": 1760, + "time": 0.2693726937269373, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1783, - "time": 0.27306273062730624, + "noteOrder": 1784, + "time": 0.2730627306273063, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 2049, - "time": 0.3136531365313653, + "time": 0.31365313653136534, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2073, - "time": 0.3173431734317343, + "noteOrder": 2074, + "time": 0.31734317343173435, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2121, - "time": 0.3247232472324723, + "noteOrder": 2122, + "time": 0.32472324723247237, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2145, - "time": 0.3284132841328413, + "noteOrder": 2146, + "time": 0.3284132841328414, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2169, - "time": 0.3321033210332103, + "noteOrder": 2170, + "time": 0.33210332103321033, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2507, - "time": 0.38376383763837635, + "noteOrder": 2508, + "time": 0.3837638376383764, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.39114391143911437, + "noteOrder": 2556, + "time": 0.3911439114391144, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2699, - "time": 0.41328413284132837, + "noteOrder": 2701, + "time": 0.4132841328413285, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2892, - "time": 0.4428044280442804, + "noteOrder": 2893, + "time": 0.4428044280442805, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2940, - "time": 0.4501845018450184, + "noteOrder": 2942, + "time": 0.45018450184501846, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3085, + "noteOrder": 3086, "time": 0.47232472324723246, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3374, + "noteOrder": 3376, "time": 0.5166051660516605, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3422, - "time": 0.5239852398523984, + "noteOrder": 3424, + "time": 0.5239852398523985, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.5313653136531364, + "noteOrder": 3472, + "time": 0.5313653136531366, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3495, + "noteOrder": 3496, "time": 0.5350553505535055, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3519, - "time": 0.5387453874538745, + "noteOrder": 3520, + "time": 0.5387453874538746, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3953, - "time": 0.6051660516605165, + "noteOrder": 3954, + "time": 0.6051660516605166, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3977, - "time": 0.6088560885608856, + "noteOrder": 3978, + "time": 0.6088560885608857, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4001, - "time": 0.6125461254612545, + "noteOrder": 4003, + "time": 0.6125461254612546, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4049, + "noteOrder": 4051, "time": 0.6199261992619927, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4073, + "noteOrder": 4075, "time": 0.6236162361623616, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4097, - "time": 0.6273062730627306, + "noteOrder": 4099, + "time": 0.6273062730627307, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4242, - "time": 0.6494464944649446, + "noteOrder": 4244, + "time": 0.6494464944649447, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4266, - "time": 0.6531365313653136, + "noteOrder": 4268, + "time": 0.6531365313653137, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4290, - "time": 0.6568265682656826, + "noteOrder": 4292, + "time": 0.6568265682656828, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4338, - "time": 0.6642066420664205, + "noteOrder": 4340, + "time": 0.6642066420664207, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4362, - "time": 0.6678966789667896, + "noteOrder": 4364, + "time": 0.6678966789667897, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4386, - "time": 0.6715867158671586, + "noteOrder": 4388, + "time": 0.6715867158671587, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4435, - "time": 0.6789667896678966, + "noteOrder": 4437, + "time": 0.6789667896678967, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4459, - "time": 0.6826568265682655, + "noteOrder": 4461, + "time": 0.6826568265682658, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4483, + "noteOrder": 4485, "time": 0.6863468634686347, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4627, - "time": 0.7084870848708487, + "noteOrder": 4629, + "time": 0.7084870848708488, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4652, - "time": 0.7121771217712176, + "noteOrder": 4654, + "time": 0.7121771217712177, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4676, - "time": 0.7158671586715867, + "noteOrder": 4678, + "time": 0.7158671586715868, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4748, - "time": 0.7269372693726937, + "noteOrder": 4750, + "time": 0.7269372693726938, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4796, - "time": 0.7343173431734317, + "noteOrder": 4798, + "time": 0.7343173431734318, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4844, - "time": 0.7416974169741696, + "noteOrder": 4846, + "time": 0.7416974169741698, "position": { "x": 8, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4893, - "time": 0.7490774907749077, + "noteOrder": 4895, + "time": 0.7490774907749078, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4941, - "time": 0.7564575645756457, + "noteOrder": 4943, + "time": 0.7564575645756458, "position": { "x": 2, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4965, - "time": 0.7601476014760147, + "noteOrder": 4967, + "time": 0.7601476014760148, "position": { "x": 2, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4989, - "time": 0.7638376383763837, + "noteOrder": 4991, + "time": 0.7638376383763839, "position": { "x": 2, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5134, - "time": 0.7859778597785977, + "noteOrder": 5136, + "time": 0.7859778597785979, "position": { "x": 8, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5182, - "time": 0.7933579335793357, + "noteOrder": 5184, + "time": 0.7933579335793358, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.8007380073800738, "position": { "x": 2, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.8081180811808117, + "noteOrder": 5280, + "time": 0.8081180811808119, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5326, - "time": 0.8154981549815498, + "noteOrder": 5329, + "time": 0.8154981549815499, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5350, - "time": 0.8191881918819188, + "noteOrder": 5353, + "time": 0.8191881918819189, "position": { "x": 8, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5375, - "time": 0.8228782287822878, + "noteOrder": 5377, + "time": 0.8228782287822879, "position": { "x": 8, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5495, - "time": 0.8413284132841328, + "noteOrder": 5497, + "time": 0.8413284132841329, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5519, - "time": 0.8450184501845017, + "noteOrder": 5522, + "time": 0.845018450184502, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5543, - "time": 0.8487084870848708, + "noteOrder": 5546, + "time": 0.8487084870848709, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5567, - "time": 0.8523985239852397, + "noteOrder": 5570, + "time": 0.85239852398524, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5591, - "time": 0.8560885608856087, + "noteOrder": 5594, + "time": 0.8560885608856089, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5616, - "time": 0.8597785977859779, + "noteOrder": 5618, + "time": 0.859778597785978, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5640, - "time": 0.8634686346863468, + "noteOrder": 5642, + "time": 0.8634686346863469, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5664, - "time": 0.8671586715867159, + "noteOrder": 5666, + "time": 0.867158671586716, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5736, - "time": 0.8782287822878229, + "noteOrder": 5739, + "time": 0.878228782287823, "position": { "x": 8, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5760, - "time": 0.8819188191881918, + "noteOrder": 5763, + "time": 0.8819188191881919, "position": { "x": 8, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5832, - "time": 0.8929889298892988, + "noteOrder": 5835, + "time": 0.892988929889299, "position": { "x": 2, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5857, + "noteOrder": 5859, "time": 0.8966789667896679, "position": { "x": 2, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6074, + "noteOrder": 6076, "time": 0.9298892988929889, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6098, - "time": 0.9335793357933578, + "noteOrder": 6100, + "time": 0.933579335793358, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6122, + "noteOrder": 6124, "time": 0.9372693726937269, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6146, - "time": 0.9409594095940959, + "noteOrder": 6148, + "time": 0.940959409594096, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6170, + "noteOrder": 6173, "time": 0.9446494464944649, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6194, - "time": 0.9483394833948339, + "noteOrder": 6197, + "time": 0.948339483394834, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6218, - "time": 0.9520295202952028, + "noteOrder": 6221, + "time": 0.9520295202952029, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6218, - "time": 0.9520295202952028, + "noteOrder": 6221, + "time": 0.9520295202952029, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.9557195571955719, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.9557195571955719, "position": { "x": 4, @@ -2016,10 +2016,10 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, - "time": 0.1328413284132841, + "time": 0.13284132841328414, "position": { "x": 6, "y": 0 @@ -2039,10 +2039,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 916, - "time": 0.14022140221402213, + "time": 0.14022140221402216, "position": { "x": 6, "y": 0 @@ -2062,7 +2062,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, "time": 0.14760147601476015, @@ -2085,9 +2085,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.15498154981549817, "position": { "x": 6, @@ -2108,10 +2108,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1060, - "time": 0.16236162361623616, + "noteOrder": 1061, + "time": 0.16236162361623618, "position": { "x": 4, "y": 0 @@ -2131,10 +2131,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1157, - "time": 0.17712177121771217, + "time": 0.1771217712177122, "position": { "x": 4, "y": 0 @@ -2154,10 +2154,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1253, - "time": 0.19188191881918817, + "noteOrder": 1254, + "time": 0.1918819188191882, "position": { "x": 4, "y": 0 @@ -2177,10 +2177,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1301, - "time": 0.19926199261992616, + "noteOrder": 1302, + "time": 0.19926199261992622, "position": { "x": 4, "y": 0 @@ -2200,10 +2200,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1350, - "time": 0.20664206642066418, + "time": 0.20664206642066424, "position": { "x": 4, "y": 0 @@ -2223,10 +2223,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1398, - "time": 0.21402214022140217, + "time": 0.21402214022140223, "position": { "x": 4, "y": 0 @@ -2246,10 +2246,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, - "time": 0.2214022140221402, + "noteOrder": 1447, + "time": 0.22140221402214025, "position": { "x": 6, "y": 0 @@ -2269,9 +2269,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1542, + "noteOrder": 1543, "time": 0.23616236162361623, "position": { "x": 6, @@ -2292,9 +2292,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1542, + "noteOrder": 1543, "time": 0.23616236162361623, "position": { "x": 4, @@ -2315,7 +2315,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1591, "time": 0.24354243542435425, @@ -2338,10 +2338,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1832, - "time": 0.28044280442804426, + "time": 0.2804428044280443, "position": { "x": 6, "y": 0 @@ -2361,9 +2361,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1856, + "noteOrder": 1857, "time": 0.28413284132841327, "position": { "x": 5, @@ -2384,9 +2384,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.2878228782287823, "position": { "x": 4, @@ -2407,9 +2407,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.2915129151291513, "position": { "x": 5, @@ -2430,10 +2430,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2217, - "time": 0.3394833948339483, + "noteOrder": 2218, + "time": 0.33948339483394835, "position": { "x": 4, "y": 0 @@ -2453,9 +2453,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2241, + "noteOrder": 2242, "time": 0.34317343173431736, "position": { "x": 5, @@ -2476,10 +2476,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2266, - "time": 0.3468634686346863, + "time": 0.34686346863468637, "position": { "x": 6, "y": 0 @@ -2499,10 +2499,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2290, - "time": 0.3505535055350553, + "noteOrder": 2291, + "time": 0.3505535055350554, "position": { "x": 5, "y": 0 @@ -2522,10 +2522,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2410, - "time": 0.3690036900369003, + "noteOrder": 2411, + "time": 0.3690036900369004, "position": { "x": 6, "y": 0 @@ -2544,11 +2544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2458, - "time": 0.3763837638376384, + "noteOrder": 2435, + "time": 0.37269372693726943, "position": { "x": 6, "y": 0 @@ -2562,16 +2562,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2603, - "time": 0.39852398523985233, + "noteOrder": 2435, + "time": 0.37269372693726943, "position": { "x": 6, "y": 0 @@ -2590,11 +2590,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2651, - "time": 0.4059040590405904, + "noteOrder": 2459, + "time": 0.3763837638376384, "position": { "x": 6, "y": 0 @@ -2613,13 +2613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2796, - "time": 0.42804428044280435, + "noteOrder": 2484, + "time": 0.3800738007380074, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2636,13 +2636,36 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2844, - "time": 0.4354243542435424, + "noteOrder": 2484, + "time": 0.3800738007380074, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2604, + "time": 0.39852398523985244, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -2659,13 +2682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2989, - "time": 0.4575645756457565, + "noteOrder": 2628, + "time": 0.40221402214022145, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2677,16 +2700,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3037, - "time": 0.46494464944649444, + "noteOrder": 2628, + "time": 0.40221402214022145, "position": { "x": 4, "y": 0 @@ -2705,11 +2728,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3181, - "time": 0.4870848708487085, + "noteOrder": 2652, + "time": 0.40590405904059046, "position": { "x": 6, "y": 0 @@ -2723,16 +2746,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3230, - "time": 0.49446494464944646, + "noteOrder": 2676, + "time": 0.40959409594095947, "position": { "x": 6, "y": 0 @@ -2746,16 +2769,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3278, - "time": 0.5018450184501845, + "noteOrder": 2676, + "time": 0.40959409594095947, "position": { "x": 4, "y": 0 @@ -2774,11 +2797,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 3326, - "time": 0.5092250922509225, + "noteOrder": 2797, + "time": 0.42804428044280446, "position": { "x": 4, "y": 0 @@ -2797,11 +2820,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3567, - "time": 0.5461254612546125, + "noteOrder": 2821, + "time": 0.43173431734317347, "position": { "x": 4, "y": 0 @@ -2820,11 +2843,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3615, - "time": 0.5535055350553505, + "noteOrder": 2821, + "time": 0.43173431734317347, "position": { "x": 4, "y": 0 @@ -2843,13 +2866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3663, - "time": 0.5608856088560885, + "noteOrder": 2845, + "time": 0.4354243542435425, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2866,13 +2889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3712, - "time": 0.5682656826568265, + "noteOrder": 2869, + "time": 0.4391143911439115, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2889,11 +2912,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3760, - "time": 0.5756457564575646, + "noteOrder": 2869, + "time": 0.4391143911439115, "position": { "x": 4, "y": 0 @@ -2907,16 +2930,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 3784, - "time": 0.5793357933579335, + "noteOrder": 2990, + "time": 0.4575645756457564, "position": { "x": 4, "y": 0 @@ -2935,13 +2958,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3760, - "time": 0.5756457564575646, + "noteOrder": 3014, + "time": 0.46125461254612543, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2953,16 +2976,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3784, - "time": 0.5793357933579335, + "noteOrder": 3014, + "time": 0.46125461254612543, "position": { "x": 6, "y": 0 @@ -2976,18 +2999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3808, - "time": 0.5830258302583026, + "noteOrder": 3038, + "time": 0.46494464944649444, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3004,13 +3027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3832, - "time": 0.5867158671586715, + "noteOrder": 3062, + "time": 0.46863468634686345, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3027,13 +3050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3808, - "time": 0.5830258302583026, + "noteOrder": 3062, + "time": 0.46863468634686345, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3045,18 +3068,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 3832, - "time": 0.5867158671586715, + "noteOrder": 3183, + "time": 0.4870848708487085, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3068,16 +3091,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4145, - "time": 0.6346863468634686, + "noteOrder": 3231, + "time": 0.4944649446494465, "position": { "x": 6, "y": 0 @@ -3096,11 +3119,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4194, - "time": 0.6420664206642066, + "noteOrder": 3279, + "time": 0.5018450184501845, "position": { "x": 4, "y": 0 @@ -3119,11 +3142,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4531, - "time": 0.6937269372693726, + "noteOrder": 3327, + "time": 0.5092250922509225, "position": { "x": 4, "y": 0 @@ -3142,13 +3165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4579, - "time": 0.7011070110701106, + "noteOrder": 3569, + "time": 0.5461254612546126, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3160,18 +3183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4724, - "time": 0.7232472324723247, + "noteOrder": 3617, + "time": 0.5535055350553506, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3183,16 +3206,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 82, "indexInLine": 1, "isSliding": false, - "noteOrder": 4748, - "time": 0.7269372693726937, + "noteOrder": 3665, + "time": 0.5608856088560886, "position": { "x": 6, "y": 0 @@ -3211,13 +3234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4772, - "time": 0.7306273062730626, + "noteOrder": 3713, + "time": 0.5682656826568265, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3234,13 +3257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 4796, - "time": 0.7343173431734317, + "noteOrder": 3761, + "time": 0.5756457564575646, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3252,16 +3275,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4820, - "time": 0.7380073800738006, + "noteOrder": 3786, + "time": 0.5793357933579336, "position": { "x": 4, "y": 0 @@ -3280,13 +3303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 4844, - "time": 0.7416974169741696, + "noteOrder": 3761, + "time": 0.5756457564575646, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3298,18 +3321,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4868, - "time": 0.7453874538745388, + "noteOrder": 3786, + "time": 0.5793357933579336, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3321,18 +3344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 4893, - "time": 0.7490774907749077, + "noteOrder": 3810, + "time": 0.5830258302583026, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3344,18 +3367,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4917, - "time": 0.7527675276752768, + "noteOrder": 3834, + "time": 0.5867158671586716, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3372,13 +3395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 4989, - "time": 0.7638376383763837, + "noteOrder": 3810, + "time": 0.5830258302583026, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3390,18 +3413,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5109, - "time": 0.7822878228782287, + "noteOrder": 3834, + "time": 0.5867158671586716, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3418,13 +3441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 95, "indexInLine": 1, "isSliding": false, - "noteOrder": 5134, - "time": 0.7859778597785977, + "noteOrder": 4147, + "time": 0.6346863468634687, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3436,16 +3459,545 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4171, + "time": 0.6383763837638377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4171, + "time": 0.6383763837638377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4195, + "time": 0.6420664206642067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4220, + "time": 0.6457564575645757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4220, + "time": 0.6457564575645757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4533, + "time": 0.6937269372693727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4557, + "time": 0.6974169741697418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4557, + "time": 0.6974169741697418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4581, + "time": 0.7011070110701108, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4605, + "time": 0.7047970479704797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4605, + "time": 0.7047970479704797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4726, + "time": 0.7232472324723248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4750, + "time": 0.7269372693726938, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4774, + "time": 0.7306273062730628, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4798, + "time": 0.7343173431734318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4822, + "time": 0.7380073800738008, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4846, + "time": 0.7416974169741698, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4871, + "time": 0.7453874538745389, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4895, + "time": 0.7490774907749078, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4919, + "time": 0.7527675276752768, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4991, + "time": 0.7638376383763839, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5112, + "time": 0.7822878228782288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5136, + "time": 0.7859778597785979, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5158, - "time": 0.7896678966789666, + "noteOrder": 5160, + "time": 0.7896678966789669, "position": { "x": 3, "y": 0 @@ -3465,10 +4017,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5182, - "time": 0.7933579335793357, + "noteOrder": 5184, + "time": 0.7933579335793358, "position": { "x": 3, "y": 0 @@ -3488,10 +4040,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5206, - "time": 0.7970479704797047, + "noteOrder": 5208, + "time": 0.7970479704797049, "position": { "x": 6, "y": 0 @@ -3511,9 +4063,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.8007380073800738, "position": { "x": 6, @@ -3534,10 +4086,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5254, - "time": 0.8044280442804428, + "noteOrder": 5256, + "time": 0.8044280442804429, "position": { "x": 7, "y": 0 @@ -3557,10 +4109,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5278, - "time": 0.8081180811808117, + "noteOrder": 5280, + "time": 0.8081180811808119, "position": { "x": 7, "y": 0 @@ -3580,10 +4132,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5302, - "time": 0.8118081180811808, + "noteOrder": 5305, + "time": 0.8118081180811809, "position": { "x": 5, "y": 0 @@ -3603,10 +4155,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5375, - "time": 0.8228782287822878, + "noteOrder": 5377, + "time": 0.8228782287822879, "position": { "x": 5, "y": 0 @@ -3626,10 +4178,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5688, - "time": 0.8708487084870848, + "noteOrder": 5690, + "time": 0.870848708487085, "position": { "x": 3, "y": 0 @@ -3649,10 +4201,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5712, - "time": 0.8745387453874538, + "noteOrder": 5714, + "time": 0.874538745387454, "position": { "x": 4, "y": 0 @@ -3672,10 +4224,10 @@ }, { "lineGroupId": 147, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5760, - "time": 0.8819188191881918, + "noteOrder": 5763, + "time": 0.8819188191881919, "position": { "x": 4, "y": 0 @@ -3695,10 +4247,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5784, - "time": 0.8856088560885608, + "noteOrder": 5787, + "time": 0.885608856088561, "position": { "x": 7, "y": 0 @@ -3718,10 +4270,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5808, - "time": 0.8892988929889298, + "noteOrder": 5811, + "time": 0.88929889298893, "position": { "x": 6, "y": 0 @@ -3741,9 +4293,9 @@ }, { "lineGroupId": 150, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5857, + "noteOrder": 5859, "time": 0.8966789667896679, "position": { "x": 6, @@ -3764,10 +4316,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5881, - "time": 0.9003690036900368, + "noteOrder": 5883, + "time": 0.9003690036900369, "position": { "x": 4, "y": 0 @@ -3789,8 +4341,54 @@ "lineGroupId": 153, "indexInLine": 2, "isSliding": false, - "noteOrder": 5929, - "time": 0.9077490774907748, + "noteOrder": 5907, + "time": 0.9040590405904059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5907, + "time": 0.9040590405904059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5931, + "time": 0.9077490774907749, "position": { "x": 4, "y": 0 @@ -3810,10 +4408,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5929, - "time": 0.9077490774907748, + "noteOrder": 5931, + "time": 0.9077490774907749, "position": { "x": 4, "y": 0 @@ -3835,8 +4433,54 @@ "lineGroupId": 154, "indexInLine": 2, "isSliding": false, - "noteOrder": 5977, - "time": 0.915129151291513, + "noteOrder": 5956, + "time": 0.9114391143911439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5956, + "time": 0.9114391143911439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5980, + "time": 0.9151291512915128, "position": { "x": 4, "y": 0 @@ -3856,10 +4500,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5977, - "time": 0.915129151291513, + "noteOrder": 5980, + "time": 0.9151291512915128, "position": { "x": 4, "y": 0 @@ -3881,7 +4525,53 @@ "lineGroupId": 155, "indexInLine": 2, "isSliding": false, - "noteOrder": 6025, + "noteOrder": 6004, + "time": 0.9188191881918819, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6004, + "time": 0.9188191881918819, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6028, "time": 0.9225092250922509, "position": { "x": 4, @@ -3902,9 +4592,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6025, + "noteOrder": 6028, "time": 0.9225092250922509, "position": { "x": 4, @@ -3927,7 +4617,53 @@ "lineGroupId": 156, "indexInLine": 2, "isSliding": false, - "noteOrder": 6074, + "noteOrder": 6052, + "time": 0.9261992619926199, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6052, + "time": 0.9261992619926199, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6076, "time": 0.9298892988929889, "position": { "x": 4, diff --git a/tracks/HYPERDRIVE/info.json b/tracks/HYPERDRIVE/info.json index 85ad5645..35c3c169 100644 --- a/tracks/HYPERDRIVE/info.json +++ b/tracks/HYPERDRIVE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HYPERDRIVE", - "SongLength": "118.857143", + "SongLength": "108.904490", "SongAuthorName": "Moe Shop", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Hello World/334_difficulty_1a.json b/tracks/Hello World/334_difficulty_1a.json index eb121087..dfd13a6c 100644 --- a/tracks/Hello World/334_difficulty_1a.json +++ b/tracks/Hello World/334_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 147, - "time": 0.024796590468810536, + "time": 0.024796590468810543, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 415, - "time": 0.07025700632829653, + "time": 0.07025700632829654, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 415, - "time": 0.07025700632829653, + "time": 0.07025700632829654, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 488, + "noteOrder": 489, "time": 0.0826553015627018, "position": { "x": 5, @@ -274,7 +274,7 @@ }, { "noteOrder": 513, - "time": 0.08678806664083688, + "time": 0.0867880666408369, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 562, - "time": 0.09505359679710706, + "time": 0.09505359679710708, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 611, - "time": 0.10331912695337725, + "time": 0.10331912695337724, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 659, - "time": 0.11158465710964743, + "noteOrder": 660, + "time": 0.11158465710964742, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 708, - "time": 0.11985018726591762, + "noteOrder": 709, + "time": 0.1198501872659176, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 757, - "time": 0.12811571742218777, + "time": 0.1281157174221878, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 830, - "time": 0.14051401265659305, + "noteOrder": 831, + "time": 0.14051401265659308, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 952, + "noteOrder": 953, "time": 0.1611778380472685, "position": { "x": 3, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1001, - "time": 0.16944336820353867, + "noteOrder": 1002, + "time": 0.1694433682035387, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1050, - "time": 0.17770889835980888, + "noteOrder": 1051, + "time": 0.17770889835980885, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1123, - "time": 0.19010719359421413, + "noteOrder": 1124, + "time": 0.19010719359421416, "position": { "x": 5, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1245, + "noteOrder": 1246, "time": 0.2107710189848896, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1393, "time": 0.23556760945370012, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1416, - "time": 0.23970037453183524, + "noteOrder": 1417, + "time": 0.2397003745318352, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.2479659046881054, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1477, - "time": 0.25003228722717297, + "noteOrder": 1478, + "time": 0.2500322872271729, "position": { "x": 4, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1490, - "time": 0.2520986697662405, + "time": 0.25209866976624046, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1502, + "noteOrder": 1503, "time": 0.25416505230530806, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1514, - "time": 0.25623143484437555, + "noteOrder": 1515, + "time": 0.2562314348443756, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1526, + "noteOrder": 1527, "time": 0.2582978173834431, "position": { "x": 4, @@ -954,7 +954,7 @@ }, { "noteOrder": 1551, - "time": 0.2624305824615782, + "time": 0.26243058246157824, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.26449696500064573, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.2686297300787808, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1636, + "noteOrder": 1637, "time": 0.276895260235051, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1636, + "noteOrder": 1637, "time": 0.276895260235051, "position": { "x": 7, @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1832, - "time": 0.3099573808601317, + "time": 0.30995738086013175, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.31822291101640193, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1905, + "noteOrder": 1906, "time": 0.322355676094537, "position": { "x": 8, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1929, - "time": 0.3264884411726721, + "noteOrder": 1930, + "time": 0.32648844117267206, "position": { "x": 4, "y": 0 @@ -1194,7 +1194,7 @@ }, { "noteOrder": 2003, - "time": 0.33888673640707734, + "time": 0.3388867364070774, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.34301950148521243, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.34301950148521243, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2173, - "time": 0.367816091954023, + "noteOrder": 2174, + "time": 0.36781609195402304, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2222, + "noteOrder": 2223, "time": 0.37608162211029317, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2271, + "noteOrder": 2272, "time": 0.38434715226656335, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2296, + "noteOrder": 2297, "time": 0.38847991734469844, "position": { "x": 2, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2321, "time": 0.39261268242283354, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2393, + "noteOrder": 2394, "time": 0.4050109776572388, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.4174092728916441, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.4174092728916441, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2491, + "noteOrder": 2492, "time": 0.4215420379697792, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2491, + "noteOrder": 2492, "time": 0.4215420379697792, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2515, - "time": 0.4256748030479142, + "noteOrder": 2516, + "time": 0.4256748030479143, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2515, - "time": 0.4256748030479142, + "noteOrder": 2516, + "time": 0.4256748030479143, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.4339403332041844, + "noteOrder": 2565, + "time": 0.43394033320418446, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2613, - "time": 0.44220586336045464, + "noteOrder": 2614, + "time": 0.4422058633604546, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2662, + "noteOrder": 2663, "time": 0.4504713935167248, "position": { "x": 5, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2686, - "time": 0.45460415859485986, + "noteOrder": 2687, + "time": 0.4546041585948599, "position": { "x": 2, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2711, + "noteOrder": 2712, "time": 0.45873692367299496, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2857, - "time": 0.4835335141418055, + "noteOrder": 2858, + "time": 0.48353351414180556, "position": { "x": 2, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2906, + "noteOrder": 2907, "time": 0.4917990442980757, "position": { "x": 8, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2955, - "time": 0.5000645744543459, + "noteOrder": 2956, + "time": 0.5000645744543458, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2979, - "time": 0.504197339532481, + "noteOrder": 2981, + "time": 0.5041973395324809, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3005, "time": 0.5083301046106161, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.5165956347668862, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3102, - "time": 0.5248611649231564, + "noteOrder": 3103, + "time": 0.5248611649231565, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3126, + "noteOrder": 3127, "time": 0.5289939300012915, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3152, "time": 0.5331266950794266, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5372594601575617, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5372594601575617, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3199, - "time": 0.5413922252356967, + "noteOrder": 3201, + "time": 0.5413922252356969, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3199, - "time": 0.5413922252356967, + "noteOrder": 3201, + "time": 0.5413922252356969, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3248, + "noteOrder": 3249, "time": 0.5496577553919669, "position": { "x": 7, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3297, - "time": 0.5579232855482371, + "noteOrder": 3298, + "time": 0.5579232855482372, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3443, + "noteOrder": 3445, "time": 0.5827198760170477, "position": { "x": 6, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3492, - "time": 0.5909854061733179, + "noteOrder": 3494, + "time": 0.590985406173318, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3517, + "noteOrder": 3518, "time": 0.5951181712514529, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3541, + "noteOrder": 3543, "time": 0.599250936329588, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.6033837014077231, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.6075164664858582, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3639, - "time": 0.6157819966421283, + "noteOrder": 3640, + "time": 0.6157819966421284, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3663, - "time": 0.6199147617202634, + "noteOrder": 3665, + "time": 0.6199147617202635, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3689, "time": 0.6240475267983985, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3736, + "noteOrder": 3738, "time": 0.6323130569546688, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3761, + "noteOrder": 3762, "time": 0.6364458220328039, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3785, + "noteOrder": 3787, "time": 0.640578587110939, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3810, + "noteOrder": 3811, "time": 0.644711352189074, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.6467777347281416, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3834, + "noteOrder": 3836, "time": 0.6488441172672091, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.6509104998062767, + "noteOrder": 3848, + "time": 0.6509104998062766, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3859, - "time": 0.6529768823453442, + "noteOrder": 3860, + "time": 0.6529768823453441, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3871, - "time": 0.6550432648844118, + "noteOrder": 3872, + "time": 0.6550432648844117, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.6571096474234793, + "noteOrder": 3885, + "time": 0.6571096474234792, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3895, + "noteOrder": 3897, "time": 0.6591760299625469, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3907, + "noteOrder": 3909, "time": 0.6612424125016144, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3932, + "noteOrder": 3933, "time": 0.6653751775797495, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 3958, "time": 0.6695079426578846, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 3958, "time": 0.6695079426578846, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6736407077360196, + "noteOrder": 3982, + "time": 0.6736407077360197, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6736407077360196, + "noteOrder": 3982, + "time": 0.6736407077360197, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4127, - "time": 0.6984372982048301, + "noteOrder": 4129, + "time": 0.6984372982048302, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4178, "time": 0.7067028283611004, "position": { "x": 3, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4225, - "time": 0.7149683585173706, + "noteOrder": 4227, + "time": 0.7149683585173705, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4249, - "time": 0.7191011235955057, + "noteOrder": 4251, + "time": 0.7191011235955056, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4274, - "time": 0.7232338886736408, + "noteOrder": 4275, + "time": 0.7232338886736407, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4347, - "time": 0.735632183908046, + "noteOrder": 4349, + "time": 0.7356321839080461, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.7397649489861811, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.7397649489861811, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4518, - "time": 0.7645615394549916, + "noteOrder": 4520, + "time": 0.7645615394549917, "position": { "x": 7, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4569, "time": 0.7728270696112618, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.781092599767532, "position": { "x": 6, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4640, + "noteOrder": 4642, "time": 0.7852253648456671, "position": { "x": 8, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4664, - "time": 0.7893581299238023, + "noteOrder": 4666, + "time": 0.7893581299238022, "position": { "x": 4, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4738, + "noteOrder": 4740, "time": 0.8017564251582074, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8141547203926127, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8141547203926127, "position": { "x": 3, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4835, + "noteOrder": 4837, "time": 0.8182874854707478, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4835, + "noteOrder": 4837, "time": 0.8182874854707478, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4860, + "noteOrder": 4862, "time": 0.8224202505488829, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4860, + "noteOrder": 4862, "time": 0.8224202505488829, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.8306857807051531, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8389513108614233, "position": { "x": 7, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8472168410176935, "position": { "x": 8, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5031, - "time": 0.8513496060958284, + "noteOrder": 5033, + "time": 0.8513496060958285, "position": { "x": 4, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5055, + "noteOrder": 5057, "time": 0.8554823711739635, "position": { "x": 3, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5177, + "noteOrder": 5179, "time": 0.8761461965646391, "position": { "x": 4, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5177, + "noteOrder": 5179, "time": 0.8761461965646391, "position": { "x": 6, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5202, + "noteOrder": 5204, "time": 0.8802789616427742, "position": { "x": 3, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5202, + "noteOrder": 5204, "time": 0.8802789616427742, "position": { "x": 7, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5226, - "time": 0.8844117267209093, + "noteOrder": 5228, + "time": 0.8844117267209092, "position": { "x": 4, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5226, - "time": 0.8844117267209093, + "noteOrder": 5228, + "time": 0.8844117267209092, "position": { "x": 6, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5251, - "time": 0.8885444917990444, + "noteOrder": 5253, + "time": 0.8885444917990443, "position": { "x": 7, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5251, - "time": 0.8885444917990444, + "noteOrder": 5253, + "time": 0.8885444917990443, "position": { "x": 3, "y": 0 @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5348, + "noteOrder": 5350, "time": 0.9050755521115847, "position": { "x": 5, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5397, + "noteOrder": 5399, "time": 0.9133410822678548, "position": { "x": 3, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5446, + "noteOrder": 5448, "time": 0.921606612424125, "position": { "x": 7, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5519, - "time": 0.9340049076585303, + "noteOrder": 5521, + "time": 0.9340049076585304, "position": { "x": 7, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5544, - "time": 0.9381376727366654, + "noteOrder": 5546, + "time": 0.9381376727366655, "position": { "x": 4, "y": 0 @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5544, - "time": 0.9381376727366654, + "noteOrder": 5546, + "time": 0.9381376727366655, "position": { "x": 6, "y": 0 @@ -3196,7 +3196,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.01653106031254036, @@ -3219,7 +3219,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 122, "time": 0.02066382539067545, @@ -3242,7 +3242,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, "time": 0.0413276507813509, @@ -3265,7 +3265,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 269, "time": 0.04546041585948599, @@ -3288,7 +3288,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, "time": 0.0413276507813509, @@ -3311,7 +3311,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 269, "time": 0.04546041585948599, @@ -3334,10 +3334,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, - "time": 0.04959318093762107, + "time": 0.049593180937621086, "position": { "x": 3, "y": 0 @@ -3357,9 +3357,9 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 317, + "noteOrder": 318, "time": 0.053725946015756164, "position": { "x": 4, @@ -3380,7 +3380,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 440, "time": 0.07438977140643162, @@ -3403,7 +3403,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 464, "time": 0.07852253648456671, @@ -3426,7 +3426,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 440, "time": 0.07438977140643162, @@ -3449,7 +3449,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 464, "time": 0.07852253648456671, @@ -3472,10 +3472,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 586, - "time": 0.09918636187524214, + "time": 0.09918636187524217, "position": { "x": 7, "y": 0 @@ -3495,10 +3495,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 611, - "time": 0.10331912695337725, + "time": 0.10331912695337724, "position": { "x": 7, "y": 0 @@ -3518,9 +3518,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 781, + "noteOrder": 782, "time": 0.13224848250032287, "position": { "x": 3, @@ -3541,7 +3541,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 806, "time": 0.13638124757845796, @@ -3564,9 +3564,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 879, + "noteOrder": 880, "time": 0.14877954281286324, "position": { "x": 7, @@ -3587,7 +3587,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 904, "time": 0.15291230789099833, @@ -3610,7 +3610,7 @@ }, { "lineGroupId": 35, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 977, "time": 0.1653106031254036, @@ -3633,7 +3633,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 977, "time": 0.1653106031254036, @@ -3656,10 +3656,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1001, - "time": 0.16944336820353867, + "noteOrder": 1002, + "time": 0.1694433682035387, "position": { "x": 4, "y": 0 @@ -3679,10 +3679,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1026, - "time": 0.17357613328167376, + "time": 0.1735761332816738, "position": { "x": 7, "y": 0 @@ -3702,10 +3702,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1050, - "time": 0.17770889835980888, + "noteOrder": 1051, + "time": 0.17770889835980885, "position": { "x": 6, "y": 0 @@ -3725,7 +3725,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1075, "time": 0.18184166343794397, @@ -3748,7 +3748,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1099, "time": 0.18597442851607904, @@ -3771,10 +3771,10 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1172, - "time": 0.1983727237504843, + "noteOrder": 1173, + "time": 0.19837272375048434, "position": { "x": 6, "y": 0 @@ -3794,10 +3794,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1172, - "time": 0.1983727237504843, + "noteOrder": 1173, + "time": 0.19837272375048434, "position": { "x": 7, "y": 0 @@ -3817,7 +3817,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1197, "time": 0.2025054888286194, @@ -3840,10 +3840,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1221, - "time": 0.2066382539067545, + "noteOrder": 1222, + "time": 0.20663825390675447, "position": { "x": 3, "y": 0 @@ -3863,9 +3863,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1245, + "noteOrder": 1246, "time": 0.2107710189848896, "position": { "x": 4, @@ -3886,7 +3886,7 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1270, "time": 0.21490378406302466, @@ -3909,10 +3909,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1282, - "time": 0.2169701666020922, + "noteOrder": 1283, + "time": 0.21697016660209223, "position": { "x": 6, "y": 0 @@ -3932,9 +3932,9 @@ }, { "lineGroupId": 51, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1294, + "noteOrder": 1295, "time": 0.21903654914115978, "position": { "x": 6, @@ -3955,9 +3955,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1294, + "noteOrder": 1295, "time": 0.21903654914115978, "position": { "x": 3, @@ -3978,10 +3978,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1307, - "time": 0.22110293168022732, + "time": 0.2211029316802273, "position": { "x": 4, "y": 0 @@ -4001,10 +4001,10 @@ }, { "lineGroupId": 52, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1319, - "time": 0.22316931421929487, + "time": 0.22316931421929484, "position": { "x": 4, "y": 0 @@ -4024,10 +4024,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1319, - "time": 0.22316931421929487, + "time": 0.22316931421929484, "position": { "x": 7, "y": 0 @@ -4047,9 +4047,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1331, + "noteOrder": 1332, "time": 0.2252356967583624, "position": { "x": 6, @@ -4070,10 +4070,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1343, - "time": 0.22730207929742993, + "noteOrder": 1344, + "time": 0.22730207929742996, "position": { "x": 6, "y": 0 @@ -4093,10 +4093,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1343, - "time": 0.22730207929742993, + "noteOrder": 1344, + "time": 0.22730207929742996, "position": { "x": 3, "y": 0 @@ -4116,9 +4116,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1355, + "noteOrder": 1356, "time": 0.22936846183649748, "position": { "x": 4, @@ -4139,10 +4139,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1661, - "time": 0.2810280253131861, + "time": 0.28102802531318616, "position": { "x": 7, "y": 0 @@ -4161,11 +4161,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1685, - "time": 0.2851607903913212, + "noteOrder": 1674, + "time": 0.28309440785225365, "position": { "x": 7, "y": 0 @@ -4179,18 +4179,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1709, - "time": 0.2892935554694563, + "noteOrder": 1674, + "time": 0.28309440785225365, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4207,13 +4207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1734, - "time": 0.2934263205475914, + "noteOrder": 1686, + "time": 0.2851607903913212, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4225,18 +4225,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1758, - "time": 0.29755908562572647, + "noteOrder": 1686, + "time": 0.2851607903913212, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4253,11 +4253,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1807, - "time": 0.30582461578199666, + "noteOrder": 1686, + "time": 0.2851607903913212, "position": { "x": 7, "y": 0 @@ -4276,11 +4276,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1856, - "time": 0.31409014593826684, + "noteOrder": 1698, + "time": 0.28722717293038874, "position": { "x": 7, "y": 0 @@ -4294,18 +4294,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1880, - "time": 0.31822291101640193, + "noteOrder": 1698, + "time": 0.28722717293038874, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4317,18 +4317,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1954, - "time": 0.3306212062508072, + "noteOrder": 1710, + "time": 0.2892935554694563, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4340,18 +4340,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1954, - "time": 0.3306212062508072, + "noteOrder": 1710, + "time": 0.2892935554694563, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4368,11 +4368,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1978, - "time": 0.3347539713289423, + "noteOrder": 1710, + "time": 0.2892935554694563, "position": { "x": 7, "y": 0 @@ -4391,13 +4391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2051, - "time": 0.3471522665633475, + "noteOrder": 1722, + "time": 0.29135993800852383, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4409,18 +4409,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2076, - "time": 0.3512850316414826, + "noteOrder": 1722, + "time": 0.29135993800852383, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4437,13 +4437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2100, - "time": 0.35541779671961776, + "noteOrder": 1735, + "time": 0.2934263205475914, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4455,18 +4455,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2125, - "time": 0.35955056179775285, + "noteOrder": 1735, + "time": 0.2934263205475914, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4483,13 +4483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2149, - "time": 0.36368332687588795, + "noteOrder": 1735, + "time": 0.2934263205475914, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4506,13 +4506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2198, - "time": 0.3719488570321581, + "noteOrder": 1747, + "time": 0.295492703086659, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4524,18 +4524,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2247, - "time": 0.38021438718842826, + "noteOrder": 1747, + "time": 0.295492703086659, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4552,13 +4552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2271, - "time": 0.38434715226656335, + "noteOrder": 1759, + "time": 0.29755908562572647, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4575,13 +4575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 2, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2344, - "time": 0.3967454475009686, + "noteOrder": 1759, + "time": 0.29755908562572647, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4598,11 +4598,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2344, - "time": 0.3967454475009686, + "noteOrder": 1759, + "time": 0.29755908562572647, "position": { "x": 7, "y": 0 @@ -4621,13 +4621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2369, - "time": 0.4008782125791037, + "noteOrder": 1771, + "time": 0.299625468164794, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4639,18 +4639,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2418, - "time": 0.4091437427353739, + "noteOrder": 1771, + "time": 0.299625468164794, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4662,18 +4662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2442, - "time": 0.413276507813509, + "noteOrder": 1783, + "time": 0.30169185070386156, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4685,18 +4685,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2418, - "time": 0.4091437427353739, + "noteOrder": 1783, + "time": 0.30169185070386156, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4713,13 +4713,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 2442, - "time": 0.413276507813509, + "noteOrder": 1808, + "time": 0.30582461578199666, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4731,18 +4731,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2540, - "time": 0.4298075681260493, + "noteOrder": 1820, + "time": 0.3078909983210642, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4759,13 +4759,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2564, - "time": 0.4339403332041844, + "noteOrder": 1820, + "time": 0.3078909983210642, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4782,13 +4782,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2589, - "time": 0.43807309828231955, + "noteOrder": 1832, + "time": 0.30995738086013175, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4800,18 +4800,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2613, - "time": 0.44220586336045464, + "noteOrder": 1832, + "time": 0.30995738086013175, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4823,18 +4823,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2638, - "time": 0.44633862843858974, + "noteOrder": 1857, + "time": 0.31409014593826684, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4846,18 +4846,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2662, - "time": 0.4504713935167248, + "noteOrder": 1881, + "time": 0.31822291101640193, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4869,18 +4869,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 2, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2735, - "time": 0.46286968875113005, + "noteOrder": 1955, + "time": 0.3306212062508072, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4892,18 +4892,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2735, - "time": 0.46286968875113005, + "noteOrder": 1955, + "time": 0.3306212062508072, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4915,18 +4915,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2760, - "time": 0.46700245382926514, + "noteOrder": 1967, + "time": 0.33268758878987476, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4943,13 +4943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 2, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2808, - "time": 0.4752679839855353, + "noteOrder": 1967, + "time": 0.33268758878987476, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4966,11 +4966,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2784, - "time": 0.47113521890740023, + "noteOrder": 1979, + "time": 0.3347539713289423, "position": { "x": 7, "y": 0 @@ -4989,13 +4989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2808, - "time": 0.4752679839855353, + "noteOrder": 1991, + "time": 0.33682035386800985, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5012,13 +5012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2833, - "time": 0.4794007490636705, + "noteOrder": 1991, + "time": 0.33682035386800985, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5030,18 +5030,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2857, - "time": 0.4835335141418055, + "noteOrder": 2003, + "time": 0.3388867364070774, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5053,16 +5053,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2882, - "time": 0.4876662792199406, + "noteOrder": 2003, + "time": 0.3388867364070774, "position": { "x": 7, "y": 0 @@ -5081,13 +5081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 2906, - "time": 0.4917990442980757, + "noteOrder": 2052, + "time": 0.3471522665633476, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5099,16 +5099,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2931, - "time": 0.4959318093762108, + "noteOrder": 2064, + "time": 0.3492186491024151, "position": { "x": 3, "y": 0 @@ -5127,13 +5127,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3028, - "time": 0.5124628696887511, + "noteOrder": 2064, + "time": 0.3492186491024151, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5150,13 +5150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3028, - "time": 0.5124628696887511, + "noteOrder": 2077, + "time": 0.35128503164148267, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5168,18 +5168,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2077, + "time": 0.35128503164148267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 3053, - "time": 0.5165956347668862, + "noteOrder": 2077, + "time": 0.35128503164148267, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5196,11 +5219,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3077, - "time": 0.5207283998450213, + "noteOrder": 2089, + "time": 0.3533514141805502, "position": { "x": 3, "y": 0 @@ -5214,16 +5237,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3102, - "time": 0.5248611649231564, + "noteOrder": 2089, + "time": 0.3533514141805502, "position": { "x": 4, "y": 0 @@ -5237,18 +5260,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3321, - "time": 0.5620560506263722, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5265,13 +5288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3346, - "time": 0.5661888157045073, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5288,11 +5311,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3370, - "time": 0.5703215807826424, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { "x": 3, "y": 0 @@ -5311,11 +5334,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3395, - "time": 0.5744543458607775, + "noteOrder": 2113, + "time": 0.35748417925868525, "position": { "x": 3, "y": 0 @@ -5334,13 +5357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3419, - "time": 0.5785871109389126, + "noteOrder": 2113, + "time": 0.35748417925868525, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5352,18 +5375,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3443, - "time": 0.5827198760170477, + "noteOrder": 2126, + "time": 0.3595505617977528, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5375,18 +5398,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3468, - "time": 0.5868526410951828, + "noteOrder": 2126, + "time": 0.3595505617977528, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5403,11 +5426,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 3492, - "time": 0.5909854061733179, + "noteOrder": 2126, + "time": 0.3595505617977528, "position": { "x": 3, "y": 0 @@ -5421,18 +5444,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3614, - "time": 0.6116492315639933, + "noteOrder": 2138, + "time": 0.36161694433682035, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5449,13 +5472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3639, - "time": 0.6157819966421283, + "noteOrder": 2138, + "time": 0.36161694433682035, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5472,11 +5495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3712, - "time": 0.6281802918765337, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { "x": 4, "y": 0 @@ -5495,13 +5518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3712, - "time": 0.6281802918765337, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5513,16 +5536,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 3736, - "time": 0.6323130569546688, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { "x": 3, "y": 0 @@ -5541,13 +5564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 94, "indexInLine": 2, "isSliding": false, - "noteOrder": 3810, - "time": 0.644711352189074, + "noteOrder": 2162, + "time": 0.3657497094149555, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5564,13 +5587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4005, - "time": 0.6777734728141547, + "noteOrder": 2162, + "time": 0.3657497094149555, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5587,13 +5610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4030, - "time": 0.6819062378922898, + "noteOrder": 2174, + "time": 0.36781609195402304, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5605,18 +5628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4054, - "time": 0.6860390029704249, + "noteOrder": 2174, + "time": 0.36781609195402304, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5633,11 +5656,11 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4078, - "time": 0.69017176804856, + "noteOrder": 2199, + "time": 0.3719488570321581, "position": { "x": 3, "y": 0 @@ -5656,11 +5679,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4103, - "time": 0.694304533126695, + "noteOrder": 2211, + "time": 0.3740152395712256, "position": { "x": 3, "y": 0 @@ -5674,18 +5697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4152, - "time": 0.7025700632829652, + "noteOrder": 2211, + "time": 0.3740152395712256, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5702,13 +5725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4200, - "time": 0.7108355934392355, + "noteOrder": 2223, + "time": 0.37608162211029317, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5720,18 +5743,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4225, - "time": 0.7149683585173706, + "noteOrder": 2223, + "time": 0.37608162211029317, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5743,18 +5766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 2, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4298, - "time": 0.7273666537517759, + "noteOrder": 2248, + "time": 0.3802143871884283, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5771,11 +5794,2932 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2272, + "time": 0.38434715226656335, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2345, + "time": 0.3967454475009687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2345, + "time": 0.3967454475009687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2358, + "time": 0.3988118300400362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2358, + "time": 0.3988118300400362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2370, + "time": 0.4008782125791037, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2382, + "time": 0.40294459511817127, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2382, + "time": 0.40294459511817127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2394, + "time": 0.4050109776572388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2394, + "time": 0.4050109776572388, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.4091437427353739, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2443, + "time": 0.41327650781350894, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.4091437427353739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2443, + "time": 0.41327650781350894, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2541, + "time": 0.4298075681260493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2565, + "time": 0.43394033320418446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2590, + "time": 0.43807309828231955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2614, + "time": 0.4422058633604546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2639, + "time": 0.4463386284385897, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2663, + "time": 0.4504713935167248, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2736, + "time": 0.46286968875113005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2736, + "time": 0.46286968875113005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2749, + "time": 0.46493607129019765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2749, + "time": 0.46493607129019765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4670024538292652, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4670024538292652, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4670024538292652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2773, + "time": 0.46906883636833274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2773, + "time": 0.46906883636833274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4752679839855353, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2785, + "time": 0.47113521890740023, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4752679839855353, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4794007490636704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2858, + "time": 0.48353351414180556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4876662792199406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4917990442980757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2932, + "time": 0.4959318093762108, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5124628696887512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5124628696887512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3054, + "time": 0.5165956347668862, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5207283998450213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3103, + "time": 0.5248611649231565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3323, + "time": 0.5620560506263723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3347, + "time": 0.5661888157045073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3372, + "time": 0.5703215807826424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3396, + "time": 0.5744543458607775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3420, + "time": 0.5785871109389126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3445, + "time": 0.5827198760170477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3469, + "time": 0.5868526410951828, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3494, + "time": 0.590985406173318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3616, + "time": 0.6116492315639933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6157819966421284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3714, + "time": 0.6281802918765337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3714, + "time": 0.6281802918765337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3738, + "time": 0.6323130569546688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3811, + "time": 0.644711352189074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4007, + "time": 0.6777734728141548, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6798398553532222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6798398553532222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6819062378922898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6819062378922898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6819062378922898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4043, + "time": 0.6839726204313573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4043, + "time": 0.6839726204313573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4056, + "time": 0.6860390029704249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4056, + "time": 0.6860390029704249, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4056, + "time": 0.6860390029704249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4068, + "time": 0.6881053855094924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4068, + "time": 0.6881053855094924, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4080, + "time": 0.69017176804856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4080, + "time": 0.69017176804856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4080, + "time": 0.69017176804856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4092, + "time": 0.6922381505876276, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4092, + "time": 0.6922381505876276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4104, + "time": 0.6943045331266952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4104, + "time": 0.6943045331266952, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4104, + "time": 0.6943045331266952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4117, + "time": 0.6963709156657627, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4117, + "time": 0.6963709156657627, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4129, + "time": 0.6984372982048302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4129, + "time": 0.6984372982048302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4153, + "time": 0.7025700632829653, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4166, + "time": 0.7046364458220329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4166, + "time": 0.7046364458220329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4178, + "time": 0.7067028283611004, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4178, + "time": 0.7067028283611004, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4202, + "time": 0.7108355934392354, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4227, + "time": 0.7149683585173705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7273666537517759, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7273666537517759, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4312, + "time": 0.7294330362908434, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4312, + "time": 0.7294330362908434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.731499418829911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4337, + "time": 0.7335658013689785, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4337, + "time": 0.7335658013689785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4349, + "time": 0.7356321839080461, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4349, + "time": 0.7356321839080461, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4398, + "time": 0.7438977140643162, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4410, + "time": 0.7459640966033837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4410, + "time": 0.7459640966033837, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4422, + "time": 0.7480304791424512, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4422, + "time": 0.7480304791424512, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4422, + "time": 0.7480304791424512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4434, + "time": 0.7500968616815188, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4434, + "time": 0.7500968616815188, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4459, + "time": 0.7542296267596539, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4459, + "time": 0.7542296267596539, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4471, + "time": 0.7562960092987214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4471, + "time": 0.7562960092987214, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4471, + "time": 0.7562960092987214, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7583623918377891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7583623918377891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4508, + "time": 0.7624951569159242, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4508, + "time": 0.7624951569159242, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7645615394549917, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7645615394549917, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7686943045331267, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7707606870721943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7707606870721943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4569, + "time": 0.7728270696112618, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4569, + "time": 0.7728270696112618, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4298, - "time": 0.7273666537517759, + "noteOrder": 4593, + "time": 0.7769598346893969, "position": { "x": 7, "y": 0 @@ -5794,11 +8738,57 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4618, + "time": 0.781092599767532, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4691, + "time": 0.7934908950019374, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.7314994188299109, + "noteOrder": 4691, + "time": 0.7934908950019374, "position": { "x": 3, "y": 0 @@ -5817,13 +8807,220 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4703, + "time": 0.7955572775410048, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4703, + "time": 0.7955572775410048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4715, + "time": 0.7976236600800723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4727, + "time": 0.7996900426191399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4727, + "time": 0.7996900426191399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4740, + "time": 0.8017564251582074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4740, + "time": 0.8017564251582074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4764, + "time": 0.8058891902363425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4789, + "time": 0.8100219553144776, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4396, - "time": 0.7438977140643162, + "noteOrder": 4764, + "time": 0.8058891902363425, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5840,13 +9037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4420, - "time": 0.7480304791424512, + "noteOrder": 4789, + "time": 0.8100219553144776, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5858,16 +9055,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4445, - "time": 0.7521632442205863, + "noteOrder": 4886, + "time": 0.8265530156270179, "position": { "x": 7, "y": 0 @@ -5886,13 +9083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4469, - "time": 0.7562960092987214, + "noteOrder": 4911, + "time": 0.8306857807051531, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5904,18 +9101,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4494, - "time": 0.7604287743768565, + "noteOrder": 4935, + "time": 0.8348185457832882, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5927,18 +9124,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4542, - "time": 0.7686943045331267, + "noteOrder": 4960, + "time": 0.8389513108614233, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5955,13 +9152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.7769598346893969, + "noteOrder": 4984, + "time": 0.8430840759395584, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5978,13 +9175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4616, - "time": 0.781092599767532, + "noteOrder": 5008, + "time": 0.8472168410176935, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6001,11 +9198,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 2, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4689, - "time": 0.7934908950019371, + "noteOrder": 5082, + "time": 0.8596151362520986, "position": { "x": 4, "y": 0 @@ -6024,11 +9221,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4689, - "time": 0.7934908950019371, + "noteOrder": 5082, + "time": 0.8596151362520986, "position": { "x": 3, "y": 0 @@ -6047,13 +9244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4713, - "time": 0.7976236600800723, + "noteOrder": 5094, + "time": 0.8616815187911663, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6065,16 +9262,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4762, - "time": 0.8058891902363425, + "noteOrder": 5094, + "time": 0.8616815187911663, "position": { "x": 4, "y": 0 @@ -6093,11 +9290,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4787, - "time": 0.8100219553144776, + "noteOrder": 5106, + "time": 0.8637479013302338, "position": { "x": 4, "y": 0 @@ -6116,13 +9313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4762, - "time": 0.8058891902363425, + "noteOrder": 5106, + "time": 0.8637479013302338, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6134,18 +9331,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 4787, - "time": 0.8100219553144776, + "noteOrder": 5106, + "time": 0.8637479013302338, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6162,13 +9359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4884, - "time": 0.826553015627018, + "noteOrder": 5118, + "time": 0.8658142838693014, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6185,13 +9382,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4909, - "time": 0.8306857807051531, + "noteOrder": 5118, + "time": 0.8658142838693014, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6208,13 +9405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4933, - "time": 0.8348185457832882, + "noteOrder": 5155, + "time": 0.872013431486504, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6226,18 +9423,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 4958, - "time": 0.8389513108614233, + "noteOrder": 5131, + "time": 0.8678806664083689, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6254,13 +9451,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.8430840759395584, + "noteOrder": 5155, + "time": 0.872013431486504, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6272,18 +9469,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.8472168410176935, + "noteOrder": 5277, + "time": 0.8926772568771794, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6300,13 +9497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 241, "indexInLine": 2, "isSliding": false, - "noteOrder": 5080, - "time": 0.8596151362520986, + "noteOrder": 5302, + "time": 0.8968100219553146, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6323,13 +9520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5080, - "time": 0.8596151362520986, + "noteOrder": 5302, + "time": 0.8968100219553146, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6346,36 +9543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5104, - "time": 0.8637479013302337, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 231, + "lineGroupId": 242, "indexInLine": 2, "isSliding": false, - "noteOrder": 5153, - "time": 0.8720134314865039, + "noteOrder": 5326, + "time": 0.9009427870334497, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6387,18 +9561,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5128, - "time": 0.8678806664083688, + "noteOrder": 5326, + "time": 0.9009427870334497, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6410,16 +9584,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5153, - "time": 0.8720134314865039, + "noteOrder": 5350, + "time": 0.9050755521115847, "position": { "x": 5, "y": 0 @@ -6433,18 +9607,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5275, - "time": 0.8926772568771795, + "noteOrder": 5375, + "time": 0.9092083171897198, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6461,13 +9635,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5299, - "time": 0.8968100219553146, + "noteOrder": 5399, + "time": 0.9133410822678548, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6484,13 +9658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5299, - "time": 0.8968100219553146, + "noteOrder": 5424, + "time": 0.9174738473459899, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6507,13 +9681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5324, - "time": 0.9009427870334497, + "noteOrder": 5448, + "time": 0.921606612424125, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6530,13 +9704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5324, - "time": 0.9009427870334497, + "noteOrder": 5473, + "time": 0.9257393775022601, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6553,13 +9727,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 1, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5348, - "time": 0.9050755521115847, + "noteOrder": 5485, + "time": 0.9278057600413278, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6576,13 +9750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5373, - "time": 0.9092083171897197, + "noteOrder": 5485, + "time": 0.9278057600413278, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6599,13 +9773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 250, "indexInLine": 1, "isSliding": false, - "noteOrder": 5397, - "time": 0.9133410822678548, + "noteOrder": 5497, + "time": 0.9298721425803953, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6617,16 +9791,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5422, - "time": 0.9174738473459899, + "noteOrder": 5509, + "time": 0.9319385251194628, "position": { "x": 3, "y": 0 @@ -6645,11 +9819,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 1, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5446, - "time": 0.921606612424125, + "noteOrder": 5509, + "time": 0.9319385251194628, "position": { "x": 4, "y": 0 @@ -6668,13 +9842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5470, - "time": 0.9257393775022601, + "noteOrder": 5521, + "time": 0.9340049076585304, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6686,16 +9860,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5495, - "time": 0.9298721425803952, + "noteOrder": 5521, + "time": 0.9340049076585304, "position": { "x": 3, "y": 0 @@ -6715,9 +9889,9 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5568, + "noteOrder": 5570, "time": 0.9422704378148005, "position": { "x": 4, @@ -6738,10 +9912,10 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.967067028283611, + "noteOrder": 5717, + "time": 0.9670670282836111, "position": { "x": 4, "y": 0 @@ -6761,9 +9935,9 @@ }, { "lineGroupId": 256, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5568, + "noteOrder": 5570, "time": 0.9422704378148005, "position": { "x": 6, @@ -6784,10 +9958,10 @@ }, { "lineGroupId": 256, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.967067028283611, + "noteOrder": 5717, + "time": 0.9670670282836111, "position": { "x": 6, "y": 0 diff --git a/tracks/Hello World/334_difficulty_1b.json b/tracks/Hello World/334_difficulty_1b.json index 8f8ed1c2..f3c55e2b 100644 --- a/tracks/Hello World/334_difficulty_1b.json +++ b/tracks/Hello World/334_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 147, - "time": 0.024796590468810536, + "time": 0.024796590468810543, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 562, - "time": 0.09505359679710706, + "time": 0.09505359679710708, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 659, - "time": 0.11158465710964743, + "noteOrder": 660, + "time": 0.11158465710964742, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 952, + "noteOrder": 953, "time": 0.1611778380472685, "position": { "x": 5, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1001, - "time": 0.16944336820353867, + "noteOrder": 1002, + "time": 0.1694433682035387, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1026, - "time": 0.17357613328167376, + "time": 0.1735761332816738, "position": { "x": 5, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1050, - "time": 0.17770889835980888, + "noteOrder": 1051, + "time": 0.17770889835980885, "position": { "x": 5, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1123, - "time": 0.19010719359421413, + "noteOrder": 1124, + "time": 0.19010719359421416, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1221, - "time": 0.2066382539067545, + "noteOrder": 1222, + "time": 0.20663825390675447, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1245, + "noteOrder": 1246, "time": 0.2107710189848896, "position": { "x": 6, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.2479659046881054, "position": { "x": 7, @@ -394,7 +394,7 @@ }, { "noteOrder": 1490, - "time": 0.2520986697662405, + "time": 0.25209866976624046, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1514, - "time": 0.25623143484437555, + "noteOrder": 1515, + "time": 0.2562314348443756, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1758, + "noteOrder": 1759, "time": 0.29755908562572647, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1807, + "noteOrder": 1808, "time": 0.30582461578199666, "position": { "x": 4, @@ -514,7 +514,7 @@ }, { "noteOrder": 1832, - "time": 0.3099573808601317, + "time": 0.30995738086013175, "position": { "x": 3, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.3306212062508072, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 1979, "time": 0.3347539713289423, "position": { "x": 4, @@ -574,7 +574,7 @@ }, { "noteOrder": 2003, - "time": 0.33888673640707734, + "time": 0.3388867364070774, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.34301950148521243, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2296, + "noteOrder": 2297, "time": 0.38847991734469844, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2321, "time": 0.39261268242283354, "position": { "x": 7, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2344, - "time": 0.3967454475009686, + "noteOrder": 2345, + "time": 0.3967454475009687, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.4008782125791037, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2393, + "noteOrder": 2394, "time": 0.4050109776572388, "position": { "x": 7, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2418, + "noteOrder": 2419, "time": 0.4091437427353739, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2540, + "noteOrder": 2541, "time": 0.4298075681260493, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.4339403332041844, + "noteOrder": 2565, + "time": 0.43394033320418446, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2589, + "noteOrder": 2590, "time": 0.43807309828231955, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2613, - "time": 0.44220586336045464, + "noteOrder": 2614, + "time": 0.4422058633604546, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2662, + "noteOrder": 2663, "time": 0.4504713935167248, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2711, + "noteOrder": 2712, "time": 0.45873692367299496, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2735, + "noteOrder": 2736, "time": 0.46286968875113005, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2760, - "time": 0.46700245382926514, + "noteOrder": 2761, + "time": 0.4670024538292652, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 2785, "time": 0.47113521890740023, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2810, "time": 0.4752679839855353, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5207283998450213, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3102, - "time": 0.5248611649231564, + "noteOrder": 3103, + "time": 0.5248611649231565, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3126, + "noteOrder": 3127, "time": 0.5289939300012915, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3152, "time": 0.5331266950794266, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5372594601575617, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3199, - "time": 0.5413922252356967, + "noteOrder": 3201, + "time": 0.5413922252356969, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3224, + "noteOrder": 3225, "time": 0.5455249903138318, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3272, + "noteOrder": 3274, "time": 0.553790520470102, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3321, - "time": 0.5620560506263722, + "noteOrder": 3323, + "time": 0.5620560506263723, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3370, + "noteOrder": 3372, "time": 0.5703215807826424, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3419, + "noteOrder": 3420, "time": 0.5785871109389126, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3469, "time": 0.5868526410951828, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3517, + "noteOrder": 3518, "time": 0.5951181712514529, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.6033837014077231, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3614, + "noteOrder": 3616, "time": 0.6116492315639933, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3663, - "time": 0.6199147617202634, + "noteOrder": 3665, + "time": 0.6199147617202635, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3689, "time": 0.6240475267983985, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3714, "time": 0.6281802918765337, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3761, + "noteOrder": 3762, "time": 0.6364458220328039, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3785, + "noteOrder": 3787, "time": 0.640578587110939, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4103, - "time": 0.694304533126695, + "noteOrder": 4104, + "time": 0.6943045331266952, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4127, - "time": 0.6984372982048301, + "noteOrder": 4129, + "time": 0.6984372982048302, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4152, - "time": 0.7025700632829652, + "noteOrder": 4153, + "time": 0.7025700632829653, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4178, "time": 0.7067028283611004, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4298, + "noteOrder": 4300, "time": 0.7273666537517759, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4323, - "time": 0.7314994188299109, + "noteOrder": 4324, + "time": 0.731499418829911, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4347, - "time": 0.735632183908046, + "noteOrder": 4349, + "time": 0.7356321839080461, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.7397649489861811, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4640, + "noteOrder": 4642, "time": 0.7852253648456671, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4664, - "time": 0.7893581299238023, + "noteOrder": 4666, + "time": 0.7893581299238022, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4689, - "time": 0.7934908950019371, + "noteOrder": 4691, + "time": 0.7934908950019374, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4713, + "noteOrder": 4715, "time": 0.7976236600800723, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4738, + "noteOrder": 4740, "time": 0.8017564251582074, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.8058891902363425, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4884, - "time": 0.826553015627018, + "noteOrder": 4886, + "time": 0.8265530156270179, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.8306857807051531, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8348185457832882, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8389513108614233, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8472168410176935, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5055, + "noteOrder": 5057, "time": 0.8554823711739635, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5080, + "noteOrder": 5082, "time": 0.8596151362520986, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5104, - "time": 0.8637479013302337, + "noteOrder": 5106, + "time": 0.8637479013302338, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5128, - "time": 0.8678806664083688, + "noteOrder": 5131, + "time": 0.8678806664083689, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5153, - "time": 0.8720134314865039, + "noteOrder": 5155, + "time": 0.872013431486504, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5422, + "noteOrder": 5424, "time": 0.9174738473459899, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5446, + "noteOrder": 5448, "time": 0.921606612424125, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5470, + "noteOrder": 5473, "time": 0.9257393775022601, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5495, - "time": 0.9298721425803952, + "noteOrder": 5497, + "time": 0.9298721425803953, "position": { "x": 6, "y": 0 @@ -1896,7 +1896,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.01653106031254036, @@ -1919,10 +1919,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 147, - "time": 0.024796590468810536, + "time": 0.024796590468810543, "position": { "x": 7, "y": 0 @@ -1942,7 +1942,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, "time": 0.03306212062508072, @@ -1965,7 +1965,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 244, "time": 0.0413276507813509, @@ -1988,10 +1988,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, - "time": 0.04959318093762107, + "time": 0.049593180937621086, "position": { "x": 6, "y": 0 @@ -2011,7 +2011,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 342, "time": 0.057858711093891256, @@ -2034,7 +2034,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 391, "time": 0.06612424125016143, @@ -2057,7 +2057,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 440, "time": 0.07438977140643162, @@ -2080,9 +2080,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 488, + "noteOrder": 489, "time": 0.0826553015627018, "position": { "x": 7, @@ -2103,7 +2103,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 537, "time": 0.09092083171897199, @@ -2126,10 +2126,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 586, - "time": 0.09918636187524214, + "time": 0.09918636187524217, "position": { "x": 3, "y": 0 @@ -2149,7 +2149,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 635, "time": 0.10745189203151233, @@ -2172,7 +2172,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 684, "time": 0.11571742218778251, @@ -2195,10 +2195,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 708, - "time": 0.11985018726591762, + "noteOrder": 709, + "time": 0.1198501872659176, "position": { "x": 7, "y": 0 @@ -2218,7 +2218,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 733, "time": 0.1239829523440527, @@ -2241,10 +2241,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 757, - "time": 0.12811571742218777, + "time": 0.1281157174221878, "position": { "x": 3, "y": 0 @@ -2264,9 +2264,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 781, + "noteOrder": 782, "time": 0.13224848250032287, "position": { "x": 6, @@ -2287,7 +2287,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 806, "time": 0.13638124757845796, @@ -2310,10 +2310,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 830, - "time": 0.14051401265659305, + "noteOrder": 831, + "time": 0.14051401265659308, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 855, "time": 0.14464677773472814, @@ -2356,9 +2356,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 879, + "noteOrder": 880, "time": 0.14877954281286324, "position": { "x": 7, @@ -2379,7 +2379,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 977, "time": 0.1653106031254036, @@ -2402,7 +2402,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 977, "time": 0.1653106031254036, @@ -2425,7 +2425,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1075, "time": 0.18184166343794397, @@ -2448,7 +2448,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1075, "time": 0.18184166343794397, @@ -2471,7 +2471,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1148, "time": 0.19423995867234922, @@ -2494,10 +2494,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1172, - "time": 0.1983727237504843, + "noteOrder": 1173, + "time": 0.19837272375048434, "position": { "x": 3, "y": 0 @@ -2517,9 +2517,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1245, + "noteOrder": 1246, "time": 0.2107710189848896, "position": { "x": 3, @@ -2540,7 +2540,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1270, "time": 0.21490378406302466, @@ -2563,9 +2563,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1294, + "noteOrder": 1295, "time": 0.21903654914115978, "position": { "x": 7, @@ -2586,10 +2586,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1319, - "time": 0.22316931421929487, + "time": 0.22316931421929484, "position": { "x": 3, "y": 0 @@ -2609,10 +2609,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1343, - "time": 0.22730207929742993, + "noteOrder": 1344, + "time": 0.22730207929742996, "position": { "x": 3, "y": 0 @@ -2632,7 +2632,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1368, "time": 0.23143484437556502, @@ -2655,9 +2655,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1392, + "noteOrder": 1393, "time": 0.23556760945370012, "position": { "x": 6, @@ -2678,10 +2678,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1416, - "time": 0.23970037453183524, + "noteOrder": 1417, + "time": 0.2397003745318352, "position": { "x": 4, "y": 0 @@ -2701,7 +2701,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1441, "time": 0.2438331396099703, @@ -2724,9 +2724,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.26449696500064573, "position": { "x": 7, @@ -2747,9 +2747,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.2686297300787808, "position": { "x": 7, @@ -2770,9 +2770,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.26449696500064573, "position": { "x": 3, @@ -2793,9 +2793,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.2686297300787808, "position": { "x": 3, @@ -2816,7 +2816,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1612, "time": 0.2727624951569159, @@ -2839,9 +2839,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, + "noteOrder": 1637, "time": 0.276895260235051, "position": { "x": 4, @@ -2862,7 +2862,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1612, "time": 0.2727624951569159, @@ -2885,9 +2885,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, + "noteOrder": 1637, "time": 0.276895260235051, "position": { "x": 6, @@ -2908,10 +2908,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1661, - "time": 0.2810280253131861, + "time": 0.28102802531318616, "position": { "x": 7, "y": 0 @@ -2930,13 +2930,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1709, - "time": 0.2892935554694563, + "noteOrder": 1686, + "time": 0.2851607903913212, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2948,18 +2948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1856, - "time": 0.31409014593826684, + "noteOrder": 1686, + "time": 0.2851607903913212, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2971,18 +2971,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1905, - "time": 0.322355676094537, + "noteOrder": 1710, + "time": 0.2892935554694563, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2994,18 +2994,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2051, - "time": 0.3471522665633475, + "noteOrder": 1735, + "time": 0.2934263205475914, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3017,18 +3017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2100, - "time": 0.35541779671961776, + "noteOrder": 1735, + "time": 0.2934263205475914, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3045,13 +3045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2149, - "time": 0.36368332687588795, + "noteOrder": 1857, + "time": 0.31409014593826684, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3063,18 +3063,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2198, - "time": 0.3719488570321581, + "noteOrder": 1881, + "time": 0.31822291101640193, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3091,13 +3091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2247, - "time": 0.38021438718842826, + "noteOrder": 1881, + "time": 0.31822291101640193, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3109,16 +3109,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2296, - "time": 0.38847991734469844, + "noteOrder": 1906, + "time": 0.322355676094537, "position": { "x": 7, "y": 0 @@ -3137,13 +3137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2442, - "time": 0.413276507813509, + "noteOrder": 1930, + "time": 0.32648844117267206, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3155,18 +3155,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2491, - "time": 0.4215420379697792, + "noteOrder": 1930, + "time": 0.32648844117267206, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3183,11 +3183,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2638, - "time": 0.44633862843858974, + "noteOrder": 2052, + "time": 0.3471522665633476, "position": { "x": 7, "y": 0 @@ -3206,11 +3206,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2662, - "time": 0.4504713935167248, + "noteOrder": 2077, + "time": 0.35128503164148267, "position": { "x": 7, "y": 0 @@ -3229,13 +3229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2686, - "time": 0.45460415859485986, + "noteOrder": 2077, + "time": 0.35128503164148267, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3247,18 +3247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2711, - "time": 0.45873692367299496, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3270,18 +3270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2833, - "time": 0.4794007490636705, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3293,18 +3293,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.4876662792199406, + "noteOrder": 2101, + "time": 0.3554177967196177, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3316,18 +3316,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2931, - "time": 0.4959318093762108, + "noteOrder": 2126, + "time": 0.3595505617977528, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3344,13 +3344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2979, - "time": 0.504197339532481, + "noteOrder": 2126, + "time": 0.3595505617977528, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3362,18 +3362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3028, - "time": 0.5124628696887511, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3390,13 +3390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3077, - "time": 0.5207283998450213, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3413,13 +3413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3639, - "time": 0.6157819966421283, + "noteOrder": 2150, + "time": 0.36368332687588795, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3431,18 +3431,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3663, - "time": 0.6199147617202634, + "noteOrder": 2174, + "time": 0.36781609195402304, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3454,18 +3454,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3736, - "time": 0.6323130569546688, + "noteOrder": 2174, + "time": 0.36781609195402304, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3482,13 +3482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3761, - "time": 0.6364458220328039, + "noteOrder": 2199, + "time": 0.3719488570321581, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3505,13 +3505,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3810, - "time": 0.644711352189074, + "noteOrder": 2199, + "time": 0.3719488570321581, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3523,18 +3523,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 3834, - "time": 0.6488441172672091, + "noteOrder": 2199, + "time": 0.3719488570321581, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3551,11 +3551,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.6529768823453442, + "noteOrder": 2223, + "time": 0.37608162211029317, "position": { "x": 7, "y": 0 @@ -3569,18 +3569,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3883, - "time": 0.6571096474234793, + "noteOrder": 2223, + "time": 0.37608162211029317, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3592,16 +3592,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3907, - "time": 0.6612424125016144, + "noteOrder": 2248, + "time": 0.3802143871884283, "position": { "x": 6, "y": 0 @@ -3615,18 +3615,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3932, - "time": 0.6653751775797495, + "noteOrder": 2248, + "time": 0.3802143871884283, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3638,18 +3638,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3907, - "time": 0.6612424125016144, + "noteOrder": 2248, + "time": 0.3802143871884283, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3661,18 +3661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3932, - "time": 0.6653751775797495, + "noteOrder": 2297, + "time": 0.38847991734469844, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3684,16 +3684,1971 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3956, + "noteOrder": 2443, + "time": 0.41327650781350894, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2468, + "time": 0.4174092728916441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2468, + "time": 0.4174092728916441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2492, + "time": 0.4215420379697792, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2516, + "time": 0.4256748030479143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2516, + "time": 0.4256748030479143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2639, + "time": 0.4463386284385897, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2663, + "time": 0.4504713935167248, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2687, + "time": 0.4546041585948599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2712, + "time": 0.45873692367299496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4794007490636704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2858, + "time": 0.48353351414180556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2858, + "time": 0.48353351414180556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4876662792199406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4876662792199406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4876662792199406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4917990442980757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4917990442980757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2932, + "time": 0.4959318093762108, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2932, + "time": 0.4959318093762108, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2932, + "time": 0.4959318093762108, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5000645744543458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2956, + "time": 0.5000645744543458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2981, + "time": 0.5041973395324809, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2981, + "time": 0.5041973395324809, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.5041973395324809, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3005, + "time": 0.5083301046106161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3005, + "time": 0.5083301046106161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5124628696887512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5124628696887512, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3029, + "time": 0.5124628696887512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5207283998450213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3640, + "time": 0.6157819966421284, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3665, + "time": 0.6199147617202635, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3738, + "time": 0.6323130569546688, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3762, + "time": 0.6364458220328039, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3811, + "time": 0.644711352189074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3836, + "time": 0.6488441172672091, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3860, + "time": 0.6529768823453441, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3885, + "time": 0.6571096474234792, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3909, + "time": 0.6612424125016144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6653751775797495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3909, + "time": 0.6612424125016144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6653751775797495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3958, + "time": 0.6695079426578846, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3982, + "time": 0.6736407077360197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3958, "time": 0.6695079426578846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3982, + "time": 0.6736407077360197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4007, + "time": 0.6777734728141548, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6819062378922898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4031, + "time": 0.6819062378922898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4056, + "time": 0.6860390029704249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4080, + "time": 0.69017176804856, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4080, + "time": 0.69017176804856, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4202, + "time": 0.7108355934392354, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4227, + "time": 0.7149683585173705, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4227, + "time": 0.7149683585173705, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4251, + "time": 0.7191011235955056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4275, + "time": 0.7232338886736407, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4275, + "time": 0.7232338886736407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4398, + "time": 0.7438977140643162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4422, + "time": 0.7480304791424512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4422, + "time": 0.7480304791424512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4446, + "time": 0.7521632442205863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4471, + "time": 0.7562960092987214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4471, + "time": 0.7562960092987214, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7604287743768566, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7645615394549917, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7645615394549917, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7686943045331267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7686943045331267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7686943045331267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4569, + "time": 0.7728270696112618, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4569, + "time": 0.7728270696112618, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7769598346893969, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7769598346893969, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4593, + "time": 0.7769598346893969, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4642, + "time": 0.7852253648456671, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4789, + "time": 0.8100219553144776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4813, + "time": 0.8141547203926127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4813, + "time": 0.8141547203926127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4837, + "time": 0.8182874854707478, "position": { "x": 3, "y": 0 @@ -3712,11 +5667,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3981, - "time": 0.6736407077360196, + "noteOrder": 4862, + "time": 0.8224202505488829, "position": { "x": 3, "y": 0 @@ -3735,13 +5690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3956, - "time": 0.6695079426578846, + "noteOrder": 4862, + "time": 0.8224202505488829, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3753,18 +5708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 144, "indexInLine": 1, "isSliding": false, - "noteOrder": 3981, - "time": 0.6736407077360196, + "noteOrder": 4984, + "time": 0.8430840759395584, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3776,16 +5731,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4005, - "time": 0.6777734728141547, + "noteOrder": 5008, + "time": 0.8472168410176935, "position": { "x": 3, "y": 0 @@ -3804,11 +5759,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4054, - "time": 0.6860390029704249, + "noteOrder": 5033, + "time": 0.8513496060958285, "position": { "x": 7, "y": 0 @@ -3827,11 +5782,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4200, - "time": 0.7108355934392355, + "noteOrder": 5057, + "time": 0.8554823711739635, "position": { "x": 7, "y": 0 @@ -3850,13 +5805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4249, - "time": 0.7191011235955057, + "noteOrder": 5179, + "time": 0.8761461965646391, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3868,18 +5823,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4396, - "time": 0.7438977140643162, + "noteOrder": 5204, + "time": 0.8802789616427742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3891,18 +5846,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4445, - "time": 0.7521632442205863, + "noteOrder": 5204, + "time": 0.8802789616427742, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3919,13 +5874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4494, - "time": 0.7604287743768565, + "noteOrder": 5228, + "time": 0.8844117267209092, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3937,18 +5892,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4542, - "time": 0.7686943045331267, + "noteOrder": 5228, + "time": 0.8844117267209092, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3965,13 +5920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.7769598346893969, + "noteOrder": 5228, + "time": 0.8844117267209092, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3988,13 +5943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4640, - "time": 0.7852253648456671, + "noteOrder": 5253, + "time": 0.8885444917990443, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4011,13 +5966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4787, - "time": 0.8100219553144776, + "noteOrder": 5253, + "time": 0.8885444917990443, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4029,18 +5984,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4835, - "time": 0.8182874854707478, + "noteOrder": 5277, + "time": 0.8926772568771794, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4057,13 +6012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4982, - "time": 0.8430840759395584, + "noteOrder": 5277, + "time": 0.8926772568771794, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4080,13 +6035,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 154, "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.8472168410176935, + "noteOrder": 5277, + "time": 0.8926772568771794, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4098,16 +6053,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5031, - "time": 0.8513496060958284, + "noteOrder": 5302, + "time": 0.8968100219553146, "position": { "x": 7, "y": 0 @@ -4126,13 +6081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5055, - "time": 0.8554823711739635, + "noteOrder": 5302, + "time": 0.8968100219553146, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4149,13 +6104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5177, - "time": 0.8761461965646391, + "noteOrder": 5326, + "time": 0.9009427870334497, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4172,11 +6127,34 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5326, + "time": 0.9009427870334497, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5226, - "time": 0.8844117267209093, + "noteOrder": 5326, + "time": 0.9009427870334497, "position": { "x": 7, "y": 0 @@ -4195,11 +6173,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5275, - "time": 0.8926772568771795, + "noteOrder": 5350, + "time": 0.9050755521115847, "position": { "x": 7, "y": 0 @@ -4213,18 +6191,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5324, - "time": 0.9009427870334497, + "noteOrder": 5350, + "time": 0.9050755521115847, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5375, + "time": 0.9092083171897198, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5375, + "time": 0.9092083171897198, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4242,10 +6266,10 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5373, - "time": 0.9092083171897197, + "noteOrder": 5375, + "time": 0.9092083171897198, "position": { "x": 7, "y": 0 @@ -4265,9 +6289,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5422, + "noteOrder": 5424, "time": 0.9174738473459899, "position": { "x": 7, @@ -4288,10 +6312,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5519, - "time": 0.9340049076585303, + "noteOrder": 5521, + "time": 0.9340049076585304, "position": { "x": 7, "y": 0 @@ -4311,10 +6335,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5544, - "time": 0.9381376727366654, + "noteOrder": 5546, + "time": 0.9381376727366655, "position": { "x": 7, "y": 0 @@ -4334,10 +6358,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5519, - "time": 0.9340049076585303, + "noteOrder": 5521, + "time": 0.9340049076585304, "position": { "x": 3, "y": 0 @@ -4357,10 +6381,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5544, - "time": 0.9381376727366654, + "noteOrder": 5546, + "time": 0.9381376727366655, "position": { "x": 3, "y": 0 @@ -4380,9 +6404,9 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5568, + "noteOrder": 5570, "time": 0.9422704378148005, "position": { "x": 6, @@ -4403,10 +6427,10 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.967067028283611, + "noteOrder": 5717, + "time": 0.9670670282836111, "position": { "x": 6, "y": 0 @@ -4426,9 +6450,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5568, + "noteOrder": 5570, "time": 0.9422704378148005, "position": { "x": 4, @@ -4449,10 +6473,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.967067028283611, + "noteOrder": 5717, + "time": 0.9670670282836111, "position": { "x": 4, "y": 0 diff --git a/tracks/Hello World/info.json b/tracks/Hello World/info.json index 13de0b6a..013a7ce6 100644 --- a/tracks/Hello World/info.json +++ b/tracks/Hello World/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Hello World", - "SongLength": "125.413878", + "SongLength": "115.461224", "SongAuthorName": "MK", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HighBALL T STEP EDITION/328_difficulty_1a.json b/tracks/HighBALL T STEP EDITION/328_difficulty_1a.json index a14ff93d..e4f87a31 100644 --- a/tracks/HighBALL T STEP EDITION/328_difficulty_1a.json +++ b/tracks/HighBALL T STEP EDITION/328_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.024042073628850486, + "time": 0.02404207362885049, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.04327573253193087, + "time": 0.04327573253193088, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 312, - "time": 0.06250939143501126, + "time": 0.06250939143501127, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 456, - "time": 0.09135987978963185, + "noteOrder": 457, + "time": 0.09135987978963186, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.10097670924117205, "position": { "x": 4, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.11059353869271225, "position": { "x": 3, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.12021036814425243, + "noteOrder": 601, + "time": 0.12021036814425246, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.12982719759579264, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.13944402704733283, "position": { "x": 6, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.14906085649887302, + "noteOrder": 745, + "time": 0.14906085649887305, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 865, - "time": 0.1731029301277235, + "time": 0.17310293012772351, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 913, - "time": 0.1827197595792637, + "time": 0.18271975957926373, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 961, - "time": 0.1923365890308039, + "time": 0.19233658903080392, "position": { "x": 8, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 985, - "time": 0.197145003756574, + "time": 0.19714500375657398, "position": { "x": 2, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1033, - "time": 0.20676183320811417, + "time": 0.2067618332081142, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1201, - "time": 0.24042073628850485, + "time": 0.2404207362885049, "position": { "x": 8, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1225, - "time": 0.24522915101427498, + "time": 0.245229151014275, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.27888805409466566, "position": { "x": 2, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1489, - "time": 0.29812171299774604, + "noteOrder": 1490, + "time": 0.2981217129977461, "position": { "x": 8, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1513, - "time": 0.30293012772351613, + "noteOrder": 1514, + "time": 0.3029301277235162, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1657, + "noteOrder": 1658, "time": 0.33178061607813675, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.33658903080390684, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.34139744552967694, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.346205860255447, + "noteOrder": 1730, + "time": 0.34620586025544703, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1753, + "noteOrder": 1754, "time": 0.3510142749812171, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.3558226897069872, + "noteOrder": 1778, + "time": 0.35582268970698727, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.3606311044327573, + "noteOrder": 1802, + "time": 0.36063110443275737, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.37024793388429755, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.37505634861006765, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1897, - "time": 0.3798647633358377, + "noteOrder": 1898, + "time": 0.37986476333583774, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 1922, + "time": 0.38467317806160783, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.3894815927873779, + "noteOrder": 1946, + "time": 0.389481592787378, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.394290007513148, + "noteOrder": 1970, + "time": 0.39429000751314797, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.3990984222389181, + "noteOrder": 1994, + "time": 0.39909842223891806, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.40871525169045825, + "noteOrder": 2042, + "time": 0.4087152516904583, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.41352366641622834, + "noteOrder": 2066, + "time": 0.4135236664162284, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.4183320811419985, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.4279489105935387, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.43275732531930877, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.4375657400450789, + "noteOrder": 2186, + "time": 0.43756574004507887, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.44718256949661905, + "noteOrder": 2234, + "time": 0.4471825694966191, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.45199098422238915, + "noteOrder": 2259, + "time": 0.4519909842223892, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2281, - "time": 0.45679939894815924, + "noteOrder": 2283, + "time": 0.4567993989481593, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2307, "time": 0.4616078136739294, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2329, + "noteOrder": 2331, "time": 0.4664162283996995, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2355, "time": 0.4712246431254696, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.4760330578512396, + "noteOrder": 2379, + "time": 0.4760330578512397, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2426, - "time": 0.48564988730277986, + "noteOrder": 2427, + "time": 0.4856498873027799, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.49045830202854995, + "noteOrder": 2451, + "time": 0.49045830202855, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.49526671675432005, + "noteOrder": 2475, + "time": 0.4952667167543201, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2522, - "time": 0.5048835462058603, + "noteOrder": 2523, + "time": 0.5048835462058602, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.5096919609316304, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.5145003756574005, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2594, + "noteOrder": 2595, "time": 0.5193087903831706, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2618, - "time": 0.5241172051089406, + "noteOrder": 2619, + "time": 0.5241172051089407, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2642, + "noteOrder": 2643, "time": 0.5289256198347108, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2666, + "noteOrder": 2667, "time": 0.5337340345604809, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2714, + "noteOrder": 2715, "time": 0.543350864012021, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2763, "time": 0.5529676934635612, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2810, + "noteOrder": 2811, "time": 0.5625845229151014, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.5673929376408715, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2859, "time": 0.5722013523666416, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2906, - "time": 0.5818181818181818, + "noteOrder": 2907, + "time": 0.5818181818181819, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.5866265965439519, + "noteOrder": 2931, + "time": 0.586626596543952, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2954, - "time": 0.591435011269722, + "noteOrder": 2955, + "time": 0.5914350112697221, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 2979, + "time": 0.5962434259954922, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.6010518407212622, + "noteOrder": 3003, + "time": 0.6010518407212623, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3026, - "time": 0.6058602554470323, + "noteOrder": 3027, + "time": 0.6058602554470324, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3050, - "time": 0.6106686701728024, + "noteOrder": 3051, + "time": 0.6106686701728025, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3196, "time": 0.639519158527423, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3220, "time": 0.6443275732531931, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3244, "time": 0.6491359879789632, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3268, "time": 0.6539444027047333, "position": { "x": 7, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3290, - "time": 0.6587528174305034, + "noteOrder": 3292, + "time": 0.6587528174305035, "position": { "x": 5, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.6635612321562735, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3338, - "time": 0.6683696468820436, + "noteOrder": 3340, + "time": 0.6683696468820437, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3386, - "time": 0.6779864763335838, + "noteOrder": 3388, + "time": 0.6779864763335837, "position": { "x": 5, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6827948910593539, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.6876033057851239, + "noteOrder": 3436, + "time": 0.687603305785124, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.692411720510894, + "noteOrder": 3460, + "time": 0.6924117205108941, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.6972201352366643, + "noteOrder": 3484, + "time": 0.6972201352366642, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3506, + "noteOrder": 3508, "time": 0.7020285499624342, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7068369646882043, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.7164537941397445, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.7212622088655146, + "noteOrder": 3604, + "time": 0.7212622088655147, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7260706235912847, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.7308790383170548, + "noteOrder": 3652, + "time": 0.7308790383170549, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.7356874530428249, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.7404958677685951, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3722, - "time": 0.7453042824943652, + "noteOrder": 3724, + "time": 0.7453042824943651, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3818, - "time": 0.7645379413974455, + "noteOrder": 3820, + "time": 0.7645379413974456, "position": { "x": 5, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.788580015026296, + "noteOrder": 3940, + "time": 0.7885800150262959, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4059, + "noteOrder": 4060, "time": 0.8126220886551465, "position": { "x": 3, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.8174305033809165, + "noteOrder": 4085, + "time": 0.8174305033809166, "position": { "x": 4, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4107, - "time": 0.8222389181066866, + "noteOrder": 4109, + "time": 0.8222389181066867, "position": { "x": 2, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.8510894064613073, + "noteOrder": 4253, + "time": 0.8510894064613074, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4275, + "noteOrder": 4277, "time": 0.8558978211870774, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8607062359128475, + "noteOrder": 4301, + "time": 0.8607062359128476, "position": { "x": 8, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4445, "time": 0.8895567242674681, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4467, - "time": 0.8943651389932381, + "noteOrder": 4469, + "time": 0.8943651389932382, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.8991735537190082, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.9280240420736289, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.932832456799399, "position": { "x": 7, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.9376408715251691, "position": { "x": 6, @@ -2316,10 +2316,10 @@ "lineNodes": [ { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.09616829451540194, + "noteOrder": 481, + "time": 0.09616829451540196, "position": { "x": 7, "y": 0 @@ -2339,9 +2339,9 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, + "noteOrder": 577, "time": 0.11540195341848235, "position": { "x": 5, @@ -2362,9 +2362,9 @@ }, { "lineGroupId": 10, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 7, @@ -2385,9 +2385,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 3, @@ -2408,9 +2408,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 768, + "noteOrder": 769, "time": 0.1538692712246431, "position": { "x": 5, @@ -2431,7 +2431,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 817, "time": 0.16348610067618333, @@ -2452,9 +2452,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 829, + "time": 0.16589030803906837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 829, + "time": 0.16589030803906837, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.16829451540195342, @@ -2475,12 +2521,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 853, + "time": 0.17069872276483847, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 853, + "time": 0.17069872276483847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 889, - "time": 0.1779113448534936, + "time": 0.17791134485349364, "position": { "x": 5, "y": 0 @@ -2500,7 +2592,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 937, "time": 0.18752817430503382, @@ -2523,7 +2615,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, "time": 0.2115702479338843, @@ -2546,10 +2638,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1129, - "time": 0.22599549211119457, + "time": 0.2259954921111946, "position": { "x": 3, "y": 0 @@ -2569,10 +2661,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1129, - "time": 0.22599549211119457, + "time": 0.2259954921111946, "position": { "x": 6, "y": 0 @@ -2592,10 +2684,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1249, - "time": 0.25003756574004504, + "time": 0.2500375657400451, "position": { "x": 6, "y": 0 @@ -2615,10 +2707,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, - "time": 0.25003756574004504, + "time": 0.2500375657400451, "position": { "x": 3, "y": 0 @@ -2638,7 +2730,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1273, "time": 0.2548459804658152, @@ -2661,7 +2753,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1273, "time": 0.2548459804658152, @@ -2684,7 +2776,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1321, "time": 0.2644628099173554, @@ -2707,7 +2799,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1321, "time": 0.2644628099173554, @@ -2730,7 +2822,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1345, "time": 0.2692712246431255, @@ -2753,7 +2845,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, "time": 0.2692712246431255, @@ -2776,9 +2868,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.27407963936889557, "position": { "x": 7, @@ -2799,9 +2891,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.27407963936889557, "position": { "x": 3, @@ -2822,9 +2914,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.28369646882043575, "position": { "x": 3, @@ -2845,9 +2937,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.28369646882043575, "position": { "x": 7, @@ -2868,9 +2960,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.28850488354620585, "position": { "x": 7, @@ -2891,9 +2983,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.28850488354620585, "position": { "x": 3, @@ -2914,10 +3006,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.29331329827197594, + "noteOrder": 1466, + "time": 0.293313298271976, "position": { "x": 3, "y": 0 @@ -2937,10 +3029,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.29331329827197594, + "noteOrder": 1466, + "time": 0.293313298271976, "position": { "x": 7, "y": 0 @@ -2960,10 +3052,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, - "time": 0.30293012772351613, + "noteOrder": 1514, + "time": 0.3029301277235162, "position": { "x": 7, "y": 0 @@ -2983,9 +3075,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.3077385424492862, "position": { "x": 7, @@ -3006,9 +3098,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 7, @@ -3029,10 +3121,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.3125469571750564, + "noteOrder": 1562, + "time": 0.3125469571750563, "position": { "x": 3, "y": 0 @@ -3052,9 +3144,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 3, @@ -3075,9 +3167,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.32697220135236665, "position": { "x": 3, @@ -3098,10 +3190,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.346205860255447, + "noteOrder": 1730, + "time": 0.34620586025544703, "position": { "x": 5, "y": 0 @@ -3121,10 +3213,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1825, - "time": 0.3654395191585274, + "noteOrder": 1826, + "time": 0.36543951915852746, "position": { "x": 3, "y": 0 @@ -3144,10 +3236,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3654395191585274, + "noteOrder": 1826, + "time": 0.36543951915852746, "position": { "x": 7, "y": 0 @@ -3167,10 +3259,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 1922, + "time": 0.38467317806160783, "position": { "x": 5, "y": 0 @@ -3190,9 +3282,9 @@ }, { "lineGroupId": 61, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.4039068369646882, "position": { "x": 5, @@ -3213,9 +3305,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.4039068369646882, "position": { "x": 3, @@ -3236,9 +3328,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.4231404958677686, "position": { "x": 5, @@ -3259,9 +3351,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.4231404958677686, "position": { "x": 7, @@ -3282,9 +3374,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.442374154770849, "position": { "x": 5, @@ -3305,9 +3397,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.442374154770849, "position": { "x": 3, @@ -3328,9 +3420,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, + "noteOrder": 2307, "time": 0.4616078136739294, "position": { "x": 5, @@ -3351,10 +3443,10 @@ }, { "lineGroupId": 77, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 2403, + "time": 0.4808414725770098, "position": { "x": 5, "y": 0 @@ -3374,10 +3466,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 2403, + "time": 0.4808414725770098, "position": { "x": 7, "y": 0 @@ -3397,10 +3489,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2426, - "time": 0.48564988730277986, + "noteOrder": 2427, + "time": 0.4856498873027799, "position": { "x": 6, "y": 0 @@ -3420,10 +3512,10 @@ }, { "lineGroupId": 85, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2450, - "time": 0.49045830202854995, + "noteOrder": 2451, + "time": 0.49045830202855, "position": { "x": 7, "y": 0 @@ -3443,10 +3535,10 @@ }, { "lineGroupId": 85, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2474, - "time": 0.49526671675432005, + "noteOrder": 2475, + "time": 0.4952667167543201, "position": { "x": 6, "y": 0 @@ -3466,10 +3558,10 @@ }, { "lineGroupId": 85, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2498, - "time": 0.5000751314800901, + "noteOrder": 2499, + "time": 0.5000751314800902, "position": { "x": 7, "y": 0 @@ -3489,10 +3581,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, - "time": 0.5000751314800901, + "noteOrder": 2499, + "time": 0.5000751314800902, "position": { "x": 5, "y": 0 @@ -3512,10 +3604,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2522, - "time": 0.5048835462058603, + "noteOrder": 2523, + "time": 0.5048835462058602, "position": { "x": 4, "y": 0 @@ -3535,9 +3627,9 @@ }, { "lineGroupId": 89, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.5096919609316304, "position": { "x": 5, @@ -3558,9 +3650,9 @@ }, { "lineGroupId": 89, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.5145003756574005, "position": { "x": 4, @@ -3581,9 +3673,9 @@ }, { "lineGroupId": 89, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2594, + "noteOrder": 2595, "time": 0.5193087903831706, "position": { "x": 5, @@ -3604,9 +3696,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, + "noteOrder": 2691, "time": 0.538542449286251, "position": { "x": 4, @@ -3627,9 +3719,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5481592787377911, "position": { "x": 4, @@ -3650,9 +3742,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5481592787377911, "position": { "x": 7, @@ -3673,9 +3765,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, + "noteOrder": 2787, "time": 0.5577761081893313, "position": { "x": 7, @@ -3696,9 +3788,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, + "noteOrder": 2787, "time": 0.5577761081893313, "position": { "x": 3, @@ -3719,9 +3811,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2810, + "noteOrder": 2811, "time": 0.5625845229151014, "position": { "x": 4, @@ -3742,9 +3834,9 @@ }, { "lineGroupId": 101, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.5673929376408715, "position": { "x": 3, @@ -3765,9 +3857,9 @@ }, { "lineGroupId": 101, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2858, + "noteOrder": 2859, "time": 0.5722013523666416, "position": { "x": 4, @@ -3788,9 +3880,9 @@ }, { "lineGroupId": 101, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.5770097670924117, "position": { "x": 3, @@ -3811,9 +3903,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.5770097670924117, "position": { "x": 5, @@ -3834,10 +3926,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2906, - "time": 0.5818181818181818, + "noteOrder": 2907, + "time": 0.5818181818181819, "position": { "x": 6, "y": 0 @@ -3857,10 +3949,10 @@ }, { "lineGroupId": 105, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2930, - "time": 0.5866265965439519, + "noteOrder": 2931, + "time": 0.586626596543952, "position": { "x": 5, "y": 0 @@ -3880,10 +3972,10 @@ }, { "lineGroupId": 105, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2954, - "time": 0.591435011269722, + "noteOrder": 2955, + "time": 0.5914350112697221, "position": { "x": 6, "y": 0 @@ -3903,10 +3995,10 @@ }, { "lineGroupId": 105, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 2979, + "time": 0.5962434259954922, "position": { "x": 5, "y": 0 @@ -3926,9 +4018,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, + "noteOrder": 3075, "time": 0.6154770848985724, "position": { "x": 4, @@ -3948,13 +4040,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3098, - "time": 0.6202854996243427, + "noteOrder": 3087, + "time": 0.6178812922614576, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3966,18 +4058,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3122, - "time": 0.6250939143501127, + "noteOrder": 3087, + "time": 0.6178812922614576, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3994,11 +4086,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3146, - "time": 0.6299023290758827, + "noteOrder": 3099, + "time": 0.6202854996243425, "position": { "x": 7, "y": 0 @@ -4017,13 +4109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3170, - "time": 0.6347107438016528, + "noteOrder": 3111, + "time": 0.6226897069872277, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4035,16 +4127,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.6539444027047333, + "noteOrder": 3111, + "time": 0.6226897069872277, "position": { "x": 5, "y": 0 @@ -4058,18 +4150,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 2, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, - "time": 0.6731780616078137, + "noteOrder": 3123, + "time": 0.6250939143501126, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4086,13 +4178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.6731780616078137, + "noteOrder": 3135, + "time": 0.6274981217129978, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4104,16 +4196,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3458, - "time": 0.692411720510894, + "noteOrder": 3135, + "time": 0.6274981217129978, "position": { "x": 5, "y": 0 @@ -4127,18 +4219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, - "time": 0.7116453794139744, + "noteOrder": 3147, + "time": 0.6299023290758828, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4155,13 +4247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.7501126972201353, + "noteOrder": 3160, + "time": 0.6323065364387679, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4173,15 +4265,222 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3160, + "time": 0.6323065364387679, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3172, + "time": 0.6347107438016529, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3268, + "time": 0.6539444027047333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3364, + "time": 0.6731780616078137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.6731780616078137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6924117205108941, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3556, + "time": 0.7116453794139745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3748, + "time": 0.7501126972201353, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3772, + "time": 0.7549211119459054, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 3770, + "noteOrder": 3772, "time": 0.7549211119459054, "position": { "x": 5, @@ -4196,18 +4495,271 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3796, + "time": 0.7597295266716755, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3796, + "time": 0.7597295266716755, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3820, + "time": 0.7645379413974456, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.7693463561232157, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3892, + "time": 0.778963185574756, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.7693463561232157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3892, + "time": 0.778963185574756, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3964, + "time": 0.7933884297520661, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3976, + "time": 0.7957926371149512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3976, + "time": 0.7957926371149512, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3988, + "time": 0.7981968444778361, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3770, - "time": 0.7549211119459054, + "noteOrder": 4000, + "time": 0.8006010518407213, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4219,16 +4771,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3794, - "time": 0.7597295266716754, + "noteOrder": 4000, + "time": 0.8006010518407213, "position": { "x": 5, "y": 0 @@ -4242,18 +4794,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3794, - "time": 0.7597295266716754, + "noteOrder": 4036, + "time": 0.8078136739293764, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4265,16 +4817,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3818, - "time": 0.7645379413974455, + "noteOrder": 4060, + "time": 0.8126220886551465, "position": { "x": 5, "y": 0 @@ -4288,18 +4840,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 4085, + "time": 0.8174305033809166, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4311,18 +4863,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3890, - "time": 0.7789631855747557, + "noteOrder": 4109, + "time": 0.8222389181066867, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4334,18 +4886,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 4133, + "time": 0.8270473328324568, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4362,13 +4914,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3890, - "time": 0.7789631855747557, + "noteOrder": 4157, + "time": 0.831855747558227, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4380,18 +4932,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3962, - "time": 0.7933884297520661, + "noteOrder": 4169, + "time": 0.834259954921112, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4403,18 +4955,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3986, - "time": 0.7981968444778362, + "noteOrder": 4169, + "time": 0.834259954921112, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4431,11 +4983,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, - "time": 0.8078136739293764, + "noteOrder": 4181, + "time": 0.836664162283997, "position": { "x": 7, "y": 0 @@ -4454,13 +5006,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4059, - "time": 0.8126220886551465, + "noteOrder": 4193, + "time": 0.839068369646882, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4477,13 +5029,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 2, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4083, - "time": 0.8174305033809165, + "noteOrder": 4193, + "time": 0.839068369646882, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4500,13 +5052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 3, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4107, - "time": 0.8222389181066866, + "noteOrder": 4229, + "time": 0.8462809917355372, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4518,18 +5070,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 4, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.8270473328324567, + "noteOrder": 4253, + "time": 0.8510894064613074, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4541,18 +5093,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4155, - "time": 0.8318557475582269, + "noteOrder": 4277, + "time": 0.8558978211870774, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4569,13 +5121,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4179, - "time": 0.836664162283997, + "noteOrder": 4301, + "time": 0.8607062359128476, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4587,18 +5139,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4227, - "time": 0.8462809917355372, + "noteOrder": 4325, + "time": 0.8655146506386175, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4615,13 +5167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 4251, - "time": 0.8510894064613073, + "noteOrder": 4349, + "time": 0.8703230653643877, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4638,13 +5190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 4275, - "time": 0.8558978211870774, + "noteOrder": 4361, + "time": 0.8727272727272727, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4661,11 +5213,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 169, "indexInLine": 3, "isSliding": false, - "noteOrder": 4299, - "time": 0.8607062359128475, + "noteOrder": 4361, + "time": 0.8727272727272727, "position": { "x": 5, "y": 0 @@ -4684,11 +5236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 4, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.8655146506386175, + "noteOrder": 4373, + "time": 0.8751314800901577, "position": { "x": 4, "y": 0 @@ -4702,18 +5254,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4347, - "time": 0.8703230653643876, + "noteOrder": 4385, + "time": 0.8775356874530429, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4725,18 +5277,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4371, - "time": 0.8751314800901578, + "noteOrder": 4385, + "time": 0.8775356874530429, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4754,9 +5306,9 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, + "noteOrder": 4421, "time": 0.884748309541698, "position": { "x": 5, @@ -4777,9 +5329,9 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4443, + "noteOrder": 4445, "time": 0.8895567242674681, "position": { "x": 6, @@ -4800,10 +5352,10 @@ }, { "lineGroupId": 172, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4467, - "time": 0.8943651389932381, + "noteOrder": 4469, + "time": 0.8943651389932382, "position": { "x": 5, "y": 0 @@ -4823,9 +5375,9 @@ }, { "lineGroupId": 172, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.8991735537190082, "position": { "x": 7, @@ -4846,10 +5398,10 @@ }, { "lineGroupId": 172, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4515, - "time": 0.9039819684447783, + "noteOrder": 4517, + "time": 0.9039819684447784, "position": { "x": 6, "y": 0 @@ -4869,9 +5421,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.9087903831705484, "position": { "x": 3, @@ -4890,12 +5442,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4553, + "time": 0.9111945905334335, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4553, + "time": 0.9111945905334335, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4565, + "time": 0.9135987978963186, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4563, - "time": 0.9135987978963185, + "noteOrder": 4577, + "time": 0.9160030052592036, "position": { "x": 6, "y": 0 @@ -4913,11 +5534,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4577, + "time": 0.9160030052592036, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.9232156273478588, "position": { "x": 5, @@ -4938,9 +5582,9 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.9280240420736289, "position": { "x": 4, @@ -4961,9 +5605,9 @@ }, { "lineGroupId": 180, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.932832456799399, "position": { "x": 5, @@ -4984,9 +5628,9 @@ }, { "lineGroupId": 180, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.9376408715251691, "position": { "x": 3, @@ -5007,9 +5651,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 3, @@ -5030,10 +5674,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.9616829451540194, + "noteOrder": 4805, + "time": 0.9616829451540196, "position": { "x": 3, "y": 0 @@ -5053,9 +5697,9 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 7, @@ -5076,10 +5720,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.9616829451540194, + "noteOrder": 4805, + "time": 0.9616829451540196, "position": { "x": 7, "y": 0 diff --git a/tracks/HighBALL T STEP EDITION/328_difficulty_1b.json b/tracks/HighBALL T STEP EDITION/328_difficulty_1b.json index 6099327a..6a9e0c52 100644 --- a/tracks/HighBALL T STEP EDITION/328_difficulty_1b.json +++ b/tracks/HighBALL T STEP EDITION/328_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.024042073628850486, + "time": 0.02404207362885049, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.04327573253193087, + "time": 0.04327573253193088, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 312, - "time": 0.06250939143501126, + "time": 0.06250939143501127, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 456, - "time": 0.09135987978963185, + "noteOrder": 457, + "time": 0.09135987978963186, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.10097670924117205, "position": { "x": 3, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.11059353869271225, "position": { "x": 3, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.12021036814425243, + "noteOrder": 601, + "time": 0.12021036814425246, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.12982719759579264, "position": { "x": 3, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.13944402704733283, "position": { "x": 7, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.14906085649887302, + "noteOrder": 745, + "time": 0.14906085649887305, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 865, - "time": 0.1731029301277235, + "time": 0.17310293012772351, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 889, - "time": 0.1779113448534936, + "time": 0.17791134485349364, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 913, - "time": 0.1827197595792637, + "time": 0.18271975957926373, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 961, - "time": 0.1923365890308039, + "time": 0.19233658903080392, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 985, - "time": 0.197145003756574, + "time": 0.19714500375657398, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1033, - "time": 0.20676183320811417, + "time": 0.2067618332081142, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1201, - "time": 0.24042073628850485, + "time": 0.2404207362885049, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1225, - "time": 0.24522915101427498, + "time": 0.245229151014275, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.27888805409466566, "position": { "x": 6, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1489, - "time": 0.29812171299774604, + "noteOrder": 1490, + "time": 0.2981217129977461, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1513, - "time": 0.30293012772351613, + "noteOrder": 1514, + "time": 0.3029301277235162, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.33658903080390684, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.3558226897069872, + "noteOrder": 1778, + "time": 0.35582268970698727, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.37505634861006765, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 1922, + "time": 0.38467317806160783, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.3894815927873779, + "noteOrder": 1946, + "time": 0.389481592787378, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.394290007513148, + "noteOrder": 1970, + "time": 0.39429000751314797, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.3990984222389181, + "noteOrder": 1994, + "time": 0.39909842223891806, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.41352366641622834, + "noteOrder": 2066, + "time": 0.4135236664162284, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.43275732531930877, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.45199098422238915, + "noteOrder": 2259, + "time": 0.4519909842223892, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2307, "time": 0.4616078136739294, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2329, + "noteOrder": 2331, "time": 0.4664162283996995, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2355, "time": 0.4712246431254696, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.4760330578512396, + "noteOrder": 2379, + "time": 0.4760330578512397, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.49045830202854995, + "noteOrder": 2451, + "time": 0.49045830202855, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.5096919609316304, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2594, + "noteOrder": 2595, "time": 0.5193087903831706, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2618, - "time": 0.5241172051089406, + "noteOrder": 2619, + "time": 0.5241172051089407, "position": { "x": 2, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2642, + "noteOrder": 2643, "time": 0.5289256198347108, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2666, + "noteOrder": 2667, "time": 0.5337340345604809, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2714, + "noteOrder": 2715, "time": 0.543350864012021, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2763, "time": 0.5529676934635612, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.5673929376408715, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.5866265965439519, + "noteOrder": 2931, + "time": 0.586626596543952, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 2979, + "time": 0.5962434259954922, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.6010518407212622, + "noteOrder": 3003, + "time": 0.6010518407212623, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3026, - "time": 0.6058602554470323, + "noteOrder": 3027, + "time": 0.6058602554470324, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3050, - "time": 0.6106686701728024, + "noteOrder": 3051, + "time": 0.6106686701728025, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3220, "time": 0.6443275732531931, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3268, "time": 0.6539444027047333, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.6635612321562735, "position": { "x": 8, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6827948910593539, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.692411720510894, + "noteOrder": 3460, + "time": 0.6924117205108941, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3506, + "noteOrder": 3508, "time": 0.7020285499624342, "position": { "x": 2, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.7164537941397445, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7260706235912847, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.7356874530428249, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3722, - "time": 0.7453042824943652, + "noteOrder": 3724, + "time": 0.7453042824943651, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3748, "time": 0.7501126972201353, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3772, "time": 0.7549211119459054, "position": { "x": 5, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3794, - "time": 0.7597295266716754, + "noteOrder": 3796, + "time": 0.7597295266716755, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3818, - "time": 0.7645379413974455, + "noteOrder": 3820, + "time": 0.7645379413974456, "position": { "x": 5, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.788580015026296, + "noteOrder": 3940, + "time": 0.7885800150262959, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.7933884297520661, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3986, - "time": 0.7981968444778362, + "noteOrder": 3988, + "time": 0.7981968444778361, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4059, + "noteOrder": 4060, "time": 0.8126220886551465, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.8174305033809165, + "noteOrder": 4085, + "time": 0.8174305033809166, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4107, - "time": 0.8222389181066866, + "noteOrder": 4109, + "time": 0.8222389181066867, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.8318557475582269, + "noteOrder": 4157, + "time": 0.831855747558227, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4179, + "noteOrder": 4181, "time": 0.836664162283997, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.8510894064613073, + "noteOrder": 4253, + "time": 0.8510894064613074, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4275, + "noteOrder": 4277, "time": 0.8558978211870774, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8607062359128475, + "noteOrder": 4301, + "time": 0.8607062359128476, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4347, - "time": 0.8703230653643876, + "noteOrder": 4349, + "time": 0.8703230653643877, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.8751314800901578, + "noteOrder": 4373, + "time": 0.8751314800901577, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4445, "time": 0.8895567242674681, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4467, - "time": 0.8943651389932381, + "noteOrder": 4469, + "time": 0.8943651389932382, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.8991735537190082, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.9087903831705484, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.9135987978963185, + "noteOrder": 4565, + "time": 0.9135987978963186, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.9280240420736289, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.932832456799399, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.9376408715251691, "position": { "x": 6, @@ -1916,10 +1916,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.09616829451540194, + "noteOrder": 481, + "time": 0.09616829451540196, "position": { "x": 7, "y": 0 @@ -1939,9 +1939,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 7, @@ -1962,9 +1962,9 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 3, @@ -1985,9 +1985,9 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 768, + "noteOrder": 769, "time": 0.1538692712246431, "position": { "x": 3, @@ -2008,9 +2008,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, + "noteOrder": 769, "time": 0.1538692712246431, "position": { "x": 7, @@ -2031,7 +2031,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, "time": 0.16348610067618333, @@ -2054,7 +2054,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, "time": 0.2115702479338843, @@ -2077,10 +2077,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1129, - "time": 0.22599549211119457, + "time": 0.2259954921111946, "position": { "x": 4, "y": 0 @@ -2100,10 +2100,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1129, - "time": 0.22599549211119457, + "time": 0.2259954921111946, "position": { "x": 6, "y": 0 @@ -2123,10 +2123,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1249, - "time": 0.25003756574004504, + "time": 0.2500375657400451, "position": { "x": 6, "y": 0 @@ -2146,10 +2146,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, - "time": 0.25003756574004504, + "time": 0.2500375657400451, "position": { "x": 3, "y": 0 @@ -2169,7 +2169,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1273, "time": 0.2548459804658152, @@ -2192,7 +2192,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1273, "time": 0.2548459804658152, @@ -2215,7 +2215,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1321, "time": 0.2644628099173554, @@ -2238,7 +2238,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1321, "time": 0.2644628099173554, @@ -2261,7 +2261,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1345, "time": 0.2692712246431255, @@ -2284,7 +2284,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, "time": 0.2692712246431255, @@ -2307,9 +2307,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.27407963936889557, "position": { "x": 6, @@ -2330,9 +2330,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.27407963936889557, "position": { "x": 3, @@ -2353,9 +2353,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.28369646882043575, "position": { "x": 3, @@ -2376,9 +2376,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.28369646882043575, "position": { "x": 6, @@ -2399,9 +2399,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.28850488354620585, "position": { "x": 6, @@ -2422,9 +2422,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.28850488354620585, "position": { "x": 3, @@ -2445,10 +2445,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.29331329827197594, + "noteOrder": 1466, + "time": 0.293313298271976, "position": { "x": 3, "y": 0 @@ -2468,10 +2468,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.29331329827197594, + "noteOrder": 1466, + "time": 0.293313298271976, "position": { "x": 6, "y": 0 @@ -2491,10 +2491,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, - "time": 0.30293012772351613, + "noteOrder": 1514, + "time": 0.3029301277235162, "position": { "x": 6, "y": 0 @@ -2514,9 +2514,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.3077385424492862, "position": { "x": 6, @@ -2537,9 +2537,9 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 6, @@ -2560,10 +2560,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.3125469571750564, + "noteOrder": 1562, + "time": 0.3125469571750563, "position": { "x": 3, "y": 0 @@ -2583,9 +2583,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 3, @@ -2606,9 +2606,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.32697220135236665, "position": { "x": 3, @@ -2629,10 +2629,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.346205860255447, + "noteOrder": 1730, + "time": 0.34620586025544703, "position": { "x": 5, "y": 0 @@ -2652,10 +2652,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1729, - "time": 0.346205860255447, + "noteOrder": 1730, + "time": 0.34620586025544703, "position": { "x": 7, "y": 0 @@ -2675,10 +2675,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.3654395191585274, + "noteOrder": 1826, + "time": 0.36543951915852746, "position": { "x": 5, "y": 0 @@ -2698,10 +2698,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3654395191585274, + "noteOrder": 1826, + "time": 0.36543951915852746, "position": { "x": 3, "y": 0 @@ -2721,10 +2721,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 1922, + "time": 0.38467317806160783, "position": { "x": 5, "y": 0 @@ -2744,9 +2744,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.4039068369646882, "position": { "x": 3, @@ -2767,9 +2767,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.4231404958677686, "position": { "x": 5, @@ -2790,9 +2790,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.4231404958677686, "position": { "x": 7, @@ -2813,9 +2813,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.442374154770849, "position": { "x": 5, @@ -2836,9 +2836,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.442374154770849, "position": { "x": 3, @@ -2859,9 +2859,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, + "noteOrder": 2307, "time": 0.4616078136739294, "position": { "x": 5, @@ -2882,10 +2882,10 @@ }, { "lineGroupId": 66, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 2403, + "time": 0.4808414725770098, "position": { "x": 5, "y": 0 @@ -2905,10 +2905,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 2403, + "time": 0.4808414725770098, "position": { "x": 7, "y": 0 @@ -2928,10 +2928,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.5000751314800901, + "noteOrder": 2499, + "time": 0.5000751314800902, "position": { "x": 5, "y": 0 @@ -2951,10 +2951,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, - "time": 0.5000751314800901, + "noteOrder": 2499, + "time": 0.5000751314800902, "position": { "x": 5, "y": 0 @@ -2974,9 +2974,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, + "noteOrder": 2595, "time": 0.5193087903831706, "position": { "x": 3, @@ -2997,9 +2997,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, + "noteOrder": 2691, "time": 0.538542449286251, "position": { "x": 4, @@ -3020,9 +3020,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5481592787377911, "position": { "x": 4, @@ -3043,9 +3043,9 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5481592787377911, "position": { "x": 7, @@ -3066,9 +3066,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, + "noteOrder": 2787, "time": 0.5577761081893313, "position": { "x": 7, @@ -3089,9 +3089,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, + "noteOrder": 2787, "time": 0.5577761081893313, "position": { "x": 3, @@ -3112,9 +3112,9 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.5770097670924117, "position": { "x": 5, @@ -3135,9 +3135,9 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.5770097670924117, "position": { "x": 5, @@ -3158,10 +3158,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 2979, + "time": 0.5962434259954922, "position": { "x": 7, "y": 0 @@ -3181,9 +3181,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, + "noteOrder": 3075, "time": 0.6154770848985724, "position": { "x": 4, @@ -3202,12 +3202,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.6202854996243425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3099, + "time": 0.6202854996243425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, - "time": 0.6250939143501127, + "noteOrder": 3123, + "time": 0.6250939143501126, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3147, + "time": 0.6299023290758828, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3147, + "time": 0.6299023290758828, "position": { "x": 6, "y": 0 @@ -3227,10 +3319,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.6347107438016528, + "noteOrder": 3172, + "time": 0.6347107438016529, "position": { "x": 3, "y": 0 @@ -3250,9 +3342,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, + "noteOrder": 3268, "time": 0.6539444027047333, "position": { "x": 5, @@ -3273,9 +3365,9 @@ }, { "lineGroupId": 94, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3362, + "noteOrder": 3364, "time": 0.6731780616078137, "position": { "x": 7, @@ -3296,9 +3388,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, + "noteOrder": 3364, "time": 0.6731780616078137, "position": { "x": 7, @@ -3319,10 +3411,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.692411720510894, + "noteOrder": 3460, + "time": 0.6924117205108941, "position": { "x": 5, "y": 0 @@ -3342,10 +3434,10 @@ }, { "lineGroupId": 98, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3554, - "time": 0.7116453794139744, + "noteOrder": 3556, + "time": 0.7116453794139745, "position": { "x": 3, "y": 0 @@ -3365,10 +3457,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 3844, + "time": 0.7693463561232157, "position": { "x": 7, "y": 0 @@ -3388,10 +3480,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3890, - "time": 0.7789631855747557, + "noteOrder": 3892, + "time": 0.778963185574756, "position": { "x": 7, "y": 0 @@ -3411,10 +3503,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 3844, + "time": 0.7693463561232157, "position": { "x": 3, "y": 0 @@ -3434,10 +3526,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3890, - "time": 0.7789631855747557, + "noteOrder": 3892, + "time": 0.778963185574756, "position": { "x": 3, "y": 0 @@ -3457,9 +3549,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, + "noteOrder": 4036, "time": 0.8078136739293764, "position": { "x": 7, @@ -3480,10 +3572,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.8270473328324567, + "noteOrder": 4133, + "time": 0.8270473328324568, "position": { "x": 5, "y": 0 @@ -3503,9 +3595,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4227, + "noteOrder": 4229, "time": 0.8462809917355372, "position": { "x": 4, @@ -3526,9 +3618,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.8655146506386175, "position": { "x": 6, @@ -3549,9 +3641,9 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, + "noteOrder": 4421, "time": 0.884748309541698, "position": { "x": 4, @@ -3572,10 +3664,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4515, - "time": 0.9039819684447783, + "noteOrder": 4517, + "time": 0.9039819684447784, "position": { "x": 6, "y": 0 @@ -3595,9 +3687,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.9232156273478588, "position": { "x": 6, @@ -3618,9 +3710,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.9376408715251691, "position": { "x": 5, @@ -3641,9 +3733,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 3, @@ -3664,10 +3756,10 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.9616829451540194, + "noteOrder": 4805, + "time": 0.9616829451540196, "position": { "x": 3, "y": 0 @@ -3687,9 +3779,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 7, @@ -3710,10 +3802,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.9616829451540194, + "noteOrder": 4805, + "time": 0.9616829451540196, "position": { "x": 7, "y": 0 diff --git a/tracks/HighBALL T STEP EDITION/info.json b/tracks/HighBALL T STEP EDITION/info.json index f887efca..353b4778 100644 --- a/tracks/HighBALL T STEP EDITION/info.json +++ b/tracks/HighBALL T STEP EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HighBALL T STEP EDITION", - "SongLength": "107.546122", + "SongLength": "97.593469", "SongAuthorName": "MK", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1a.json b/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1a.json index ec781ab4..ca8153eb 100644 --- a/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1a.json +++ b/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.02233389168062535, + "time": 0.022333891680625346, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.02680067001675042, + "time": 0.026800670016750416, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 240, - "time": 0.0446677833612507, + "time": 0.04466778336125069, "position": { "x": 5, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.09380234505862646, "position": { "x": 7, @@ -154,7 +154,7 @@ }, { "noteOrder": 553, - "time": 0.10273590173087661, + "time": 0.1027359017308766, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 601, - "time": 0.11166945840312675, + "time": 0.11166945840312674, "position": { "x": 7, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.20100502512562812, "position": { "x": 3, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.2099385817978783, + "noteOrder": 1130, + "time": 0.20993858179787828, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1177, - "time": 0.21887213847012843, + "noteOrder": 1178, + "time": 0.2188721384701284, "position": { "x": 3, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.22780569514237856, "position": { "x": 7, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.27247347850362924, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.2814070351758794, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.28587381351200447, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.41094360692350645, + "noteOrder": 2211, + "time": 0.4109436069235064, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2234, - "time": 0.41541038525963153, + "noteOrder": 2235, + "time": 0.4154103852596315, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.4198771635957566, + "noteOrder": 2259, + "time": 0.41987716359575655, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.4198771635957566, + "noteOrder": 2259, + "time": 0.41987716359575655, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.4288107202680067, + "noteOrder": 2307, + "time": 0.42881072026800665, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.4332774986041318, + "noteOrder": 2331, + "time": 0.43327749860413173, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.43774427694025686, + "noteOrder": 2355, + "time": 0.4377442769402568, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.43774427694025686, + "noteOrder": 2355, + "time": 0.4377442769402568, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2450, + "noteOrder": 2451, "time": 0.4556113902847571, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.4734785036292574, + "noteOrder": 2548, + "time": 0.47347850362925736, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.5360134003350083, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.5404801786711334, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.5449469570072585, "position": { "x": 7, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2955, + "noteOrder": 2956, "time": 0.5494137353433836, "position": { "x": 3, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3003, + "noteOrder": 3004, "time": 0.5583472920156337, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3052, "time": 0.5672808486878839, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3099, + "noteOrder": 3100, "time": 0.576214405360134, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3147, + "noteOrder": 3148, "time": 0.5851479620323842, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.5896147403685092, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3197, "time": 0.5940815187046343, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3219, - "time": 0.5985482970407594, + "noteOrder": 3221, + "time": 0.5985482970407593, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3243, - "time": 0.6030150753768845, + "noteOrder": 3245, + "time": 0.6030150753768844, "position": { "x": 4, "y": 0 @@ -896,7 +896,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01786711334450028, @@ -919,10 +919,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.02680067001675042, + "time": 0.026800670016750416, "position": { "x": 7, "y": 0 @@ -942,7 +942,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.03573422668900056, @@ -965,10 +965,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.0446677833612507, + "time": 0.04466778336125069, "position": { "x": 3, "y": 0 @@ -988,10 +988,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.05360134003350084, + "time": 0.05360134003350083, "position": { "x": 6, "y": 0 @@ -1011,10 +1011,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, - "time": 0.05806811836962591, + "time": 0.0580681183696259, "position": { "x": 7, "y": 0 @@ -1034,7 +1034,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, "time": 0.06253489670575098, @@ -1057,9 +1057,9 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 360, + "noteOrder": 361, "time": 0.06700167504187604, "position": { "x": 3, @@ -1080,9 +1080,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.07146845337800112, "position": { "x": 6, @@ -1103,9 +1103,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.08040201005025126, "position": { "x": 6, @@ -1126,10 +1126,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 408, - "time": 0.0759352317141262, + "noteOrder": 409, + "time": 0.07593523171412618, "position": { "x": 4, "y": 0 @@ -1149,9 +1149,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.08040201005025126, "position": { "x": 4, @@ -1172,10 +1172,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.0893355667225014, + "noteOrder": 481, + "time": 0.08933556672250138, "position": { "x": 6, "y": 0 @@ -1195,7 +1195,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.09826912339475152, @@ -1218,7 +1218,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.09826912339475152, @@ -1241,10 +1241,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.10720268006700168, + "time": 0.10720268006700166, "position": { "x": 4, "y": 0 @@ -1264,10 +1264,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10720268006700168, + "time": 0.10720268006700166, "position": { "x": 6, "y": 0 @@ -1287,10 +1287,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.11613623673925182, + "time": 0.1161362367392518, "position": { "x": 6, "y": 0 @@ -1310,10 +1310,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.11613623673925182, + "time": 0.1161362367392518, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.12506979341150196, @@ -1356,7 +1356,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.14293690675600224, @@ -1379,10 +1379,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, - "time": 0.1518704634282524, + "time": 0.15187046342825236, "position": { "x": 3, "y": 0 @@ -1402,7 +1402,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.14293690675600224, @@ -1425,10 +1425,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, - "time": 0.1518704634282524, + "time": 0.15187046342825236, "position": { "x": 7, "y": 0 @@ -1448,7 +1448,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.15633724176437744, @@ -1471,7 +1471,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 865, "time": 0.16080402010050251, @@ -1494,10 +1494,10 @@ }, { "lineGroupId": 29, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 889, - "time": 0.1652707984366276, + "time": 0.16527079843662756, "position": { "x": 7, "y": 0 @@ -1517,7 +1517,7 @@ }, { "lineGroupId": 29, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 913, "time": 0.16973757677275264, @@ -1540,7 +1540,7 @@ }, { "lineGroupId": 29, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 937, "time": 0.17420435510887772, @@ -1563,10 +1563,10 @@ }, { "lineGroupId": 29, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 961, - "time": 0.1786711334450028, + "time": 0.17867113344500277, "position": { "x": 7, "y": 0 @@ -1586,7 +1586,7 @@ }, { "lineGroupId": 29, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 985, "time": 0.18313791178112784, @@ -1609,7 +1609,7 @@ }, { "lineGroupId": 29, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1009, "time": 0.18760469011725292, @@ -1632,7 +1632,7 @@ }, { "lineGroupId": 29, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 1033, "time": 0.192071468453378, @@ -1655,7 +1655,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.15633724176437744, @@ -1678,7 +1678,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 865, "time": 0.16080402010050251, @@ -1701,10 +1701,10 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 889, - "time": 0.1652707984366276, + "time": 0.16527079843662756, "position": { "x": 5, "y": 0 @@ -1724,7 +1724,7 @@ }, { "lineGroupId": 30, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 913, "time": 0.16973757677275264, @@ -1747,7 +1747,7 @@ }, { "lineGroupId": 30, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 937, "time": 0.17420435510887772, @@ -1770,10 +1770,10 @@ }, { "lineGroupId": 30, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 961, - "time": 0.1786711334450028, + "time": 0.17867113344500277, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ }, { "lineGroupId": 30, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 985, "time": 0.18313791178112784, @@ -1816,7 +1816,7 @@ }, { "lineGroupId": 30, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1009, "time": 0.18760469011725292, @@ -1839,7 +1839,7 @@ }, { "lineGroupId": 30, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 1033, "time": 0.192071468453378, @@ -1862,9 +1862,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.19653824678950305, "position": { "x": 4, @@ -1885,10 +1885,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.20547180346175323, + "noteOrder": 1106, + "time": 0.2054718034617532, "position": { "x": 4, "y": 0 @@ -1908,10 +1908,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.20547180346175323, + "noteOrder": 1106, + "time": 0.2054718034617532, "position": { "x": 6, "y": 0 @@ -1931,10 +1931,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.21440536013400335, + "noteOrder": 1154, + "time": 0.21440536013400333, "position": { "x": 6, "y": 0 @@ -1954,10 +1954,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.21440536013400335, + "noteOrder": 1154, + "time": 0.21440536013400333, "position": { "x": 4, "y": 0 @@ -1977,10 +1977,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, - "time": 0.2233389168062535, + "noteOrder": 1202, + "time": 0.22333891680625348, "position": { "x": 4, "y": 0 @@ -2000,10 +2000,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1201, - "time": 0.2233389168062535, + "noteOrder": 1202, + "time": 0.22333891680625348, "position": { "x": 6, "y": 0 @@ -2023,10 +2023,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.23227247347850363, + "noteOrder": 1250, + "time": 0.2322724734785036, "position": { "x": 6, "y": 0 @@ -2046,10 +2046,10 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1273, - "time": 0.2367392518146287, + "noteOrder": 1274, + "time": 0.23673925181462868, "position": { "x": 7, "y": 0 @@ -2069,9 +2069,9 @@ }, { "lineGroupId": 37, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.24120603015075376, "position": { "x": 6, @@ -2092,9 +2092,9 @@ }, { "lineGroupId": 37, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.24567280848687884, "position": { "x": 7, @@ -2115,9 +2115,9 @@ }, { "lineGroupId": 37, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.2501395868230039, "position": { "x": 7, @@ -2138,9 +2138,9 @@ }, { "lineGroupId": 37, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.254606365159129, "position": { "x": 6, @@ -2161,9 +2161,9 @@ }, { "lineGroupId": 37, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.25907314349525407, "position": { "x": 7, @@ -2184,9 +2184,9 @@ }, { "lineGroupId": 37, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.26353992183137914, "position": { "x": 6, @@ -2207,10 +2207,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.23227247347850363, + "noteOrder": 1250, + "time": 0.2322724734785036, "position": { "x": 3, "y": 0 @@ -2230,10 +2230,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.2367392518146287, + "noteOrder": 1274, + "time": 0.23673925181462868, "position": { "x": 4, "y": 0 @@ -2253,9 +2253,9 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.24120603015075376, "position": { "x": 3, @@ -2276,9 +2276,9 @@ }, { "lineGroupId": 39, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.24567280848687884, "position": { "x": 4, @@ -2299,9 +2299,9 @@ }, { "lineGroupId": 39, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.2501395868230039, "position": { "x": 4, @@ -2322,9 +2322,9 @@ }, { "lineGroupId": 39, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.254606365159129, "position": { "x": 3, @@ -2345,9 +2345,9 @@ }, { "lineGroupId": 39, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.25907314349525407, "position": { "x": 4, @@ -2368,9 +2368,9 @@ }, { "lineGroupId": 39, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.26353992183137914, "position": { "x": 3, @@ -2391,9 +2391,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.26800670016750416, "position": { "x": 6, @@ -2414,9 +2414,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.2769402568397543, "position": { "x": 6, @@ -2437,9 +2437,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.2769402568397543, "position": { "x": 4, @@ -2460,9 +2460,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.28587381351200447, "position": { "x": 4, @@ -2483,7 +2483,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1586, "time": 0.2948073701842546, @@ -2506,10 +2506,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1634, - "time": 0.3037409268565048, + "time": 0.3037409268565047, "position": { "x": 6, "y": 0 @@ -2529,10 +2529,10 @@ }, { "lineGroupId": 46, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1658, - "time": 0.30820770519262985, + "time": 0.3082077051926298, "position": { "x": 7, "y": 0 @@ -2552,7 +2552,7 @@ }, { "lineGroupId": 46, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1682, "time": 0.3126744835287549, @@ -2575,7 +2575,7 @@ }, { "lineGroupId": 46, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1706, "time": 0.31714126186487995, @@ -2598,7 +2598,7 @@ }, { "lineGroupId": 46, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1730, "time": 0.32160804020100503, @@ -2621,10 +2621,10 @@ }, { "lineGroupId": 46, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1754, - "time": 0.3260748185371301, + "time": 0.32607481853713005, "position": { "x": 7, "y": 0 @@ -2644,10 +2644,10 @@ }, { "lineGroupId": 46, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1778, - "time": 0.3305415968732552, + "noteOrder": 1779, + "time": 0.33054159687325513, "position": { "x": 7, "y": 0 @@ -2667,10 +2667,10 @@ }, { "lineGroupId": 46, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1802, - "time": 0.33500837520938026, + "noteOrder": 1803, + "time": 0.3350083752093802, "position": { "x": 6, "y": 0 @@ -2690,9 +2690,9 @@ }, { "lineGroupId": 46, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3394751535455053, "position": { "x": 6, @@ -2713,9 +2713,9 @@ }, { "lineGroupId": 46, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.34394193188163036, "position": { "x": 6, @@ -2736,9 +2736,9 @@ }, { "lineGroupId": 46, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.34840871021775544, "position": { "x": 6, @@ -2759,9 +2759,9 @@ }, { "lineGroupId": 46, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.3528754885538805, "position": { "x": 6, @@ -2782,10 +2782,10 @@ }, { "lineGroupId": 46, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 1922, - "time": 0.3573422668900056, + "noteOrder": 1923, + "time": 0.35734226689000553, "position": { "x": 6, "y": 0 @@ -2805,10 +2805,10 @@ }, { "lineGroupId": 46, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 1946, - "time": 0.36180904522613067, + "noteOrder": 1947, + "time": 0.3618090452261306, "position": { "x": 6, "y": 0 @@ -2828,9 +2828,9 @@ }, { "lineGroupId": 46, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3662758235622557, "position": { "x": 6, @@ -2851,9 +2851,9 @@ }, { "lineGroupId": 46, - "indexInLine": 16, + "indexInLine": 17, "isSliding": false, - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.37074260189838076, "position": { "x": 6, @@ -2874,10 +2874,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1610, - "time": 0.2992741485203797, + "time": 0.29927414852037965, "position": { "x": 4, "y": 0 @@ -2897,10 +2897,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1634, - "time": 0.3037409268565048, + "time": 0.3037409268565047, "position": { "x": 4, "y": 0 @@ -2920,10 +2920,10 @@ }, { "lineGroupId": 47, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1658, - "time": 0.30820770519262985, + "time": 0.3082077051926298, "position": { "x": 4, "y": 0 @@ -2943,7 +2943,7 @@ }, { "lineGroupId": 47, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1682, "time": 0.3126744835287549, @@ -2966,7 +2966,7 @@ }, { "lineGroupId": 47, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1706, "time": 0.31714126186487995, @@ -2989,7 +2989,7 @@ }, { "lineGroupId": 47, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1730, "time": 0.32160804020100503, @@ -3012,10 +3012,10 @@ }, { "lineGroupId": 47, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1754, - "time": 0.3260748185371301, + "time": 0.32607481853713005, "position": { "x": 4, "y": 0 @@ -3035,10 +3035,10 @@ }, { "lineGroupId": 47, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1778, - "time": 0.3305415968732552, + "noteOrder": 1779, + "time": 0.33054159687325513, "position": { "x": 4, "y": 0 @@ -3058,10 +3058,10 @@ }, { "lineGroupId": 47, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1802, - "time": 0.33500837520938026, + "noteOrder": 1803, + "time": 0.3350083752093802, "position": { "x": 4, "y": 0 @@ -3081,9 +3081,9 @@ }, { "lineGroupId": 47, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3394751535455053, "position": { "x": 4, @@ -3104,9 +3104,9 @@ }, { "lineGroupId": 47, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.34394193188163036, "position": { "x": 3, @@ -3127,9 +3127,9 @@ }, { "lineGroupId": 47, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.34840871021775544, "position": { "x": 4, @@ -3150,9 +3150,9 @@ }, { "lineGroupId": 47, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.3528754885538805, "position": { "x": 3, @@ -3173,10 +3173,10 @@ }, { "lineGroupId": 47, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 1922, - "time": 0.3573422668900056, + "noteOrder": 1923, + "time": 0.35734226689000553, "position": { "x": 3, "y": 0 @@ -3196,10 +3196,10 @@ }, { "lineGroupId": 47, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 1946, - "time": 0.36180904522613067, + "noteOrder": 1947, + "time": 0.3618090452261306, "position": { "x": 4, "y": 0 @@ -3219,9 +3219,9 @@ }, { "lineGroupId": 47, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3662758235622557, "position": { "x": 3, @@ -3242,9 +3242,9 @@ }, { "lineGroupId": 47, - "indexInLine": 16, + "indexInLine": 17, "isSliding": false, - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.37074260189838076, "position": { "x": 4, @@ -3265,9 +3265,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.37520938023450584, "position": { "x": 6, @@ -3288,9 +3288,9 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.384142936906756, "position": { "x": 6, @@ -3311,9 +3311,9 @@ }, { "lineGroupId": 48, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.38860971524288107, "position": { "x": 7, @@ -3334,9 +3334,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.3796761585706309, "position": { "x": 4, @@ -3357,9 +3357,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.384142936906756, "position": { "x": 4, @@ -3380,9 +3380,9 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.38860971524288107, "position": { "x": 4, @@ -3403,9 +3403,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.3930764935790061, "position": { "x": 4, @@ -3426,9 +3426,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.40201005025125625, "position": { "x": 4, @@ -3449,10 +3449,10 @@ }, { "lineGroupId": 50, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2186, - "time": 0.4064768285873814, + "noteOrder": 2187, + "time": 0.4064768285873813, "position": { "x": 3, "y": 0 @@ -3472,9 +3472,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.39754327191513117, "position": { "x": 6, @@ -3495,9 +3495,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.40201005025125625, "position": { "x": 6, @@ -3518,10 +3518,10 @@ }, { "lineGroupId": 51, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2186, - "time": 0.4064768285873814, + "noteOrder": 2187, + "time": 0.4064768285873813, "position": { "x": 6, "y": 0 @@ -3541,9 +3541,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.4824120603015075, "position": { "x": 4, @@ -3564,9 +3564,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.4868788386376326, "position": { "x": 3, @@ -3587,9 +3587,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.49134561697375767, "position": { "x": 6, @@ -3610,10 +3610,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2667, - "time": 0.49581239530988275, + "noteOrder": 2668, + "time": 0.4958123953098827, "position": { "x": 7, "y": 0 @@ -3633,9 +3633,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.5002791736460078, "position": { "x": 6, @@ -3656,9 +3656,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.5047459519821329, "position": { "x": 7, @@ -3679,9 +3679,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.509212730318258, "position": { "x": 4, @@ -3702,9 +3702,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.513679508654383, "position": { "x": 3, @@ -3725,9 +3725,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.5181462869905081, "position": { "x": 6, @@ -3748,9 +3748,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.5226130653266332, "position": { "x": 7, @@ -3771,9 +3771,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.5270798436627583, "position": { "x": 4, @@ -3794,9 +3794,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2859, + "noteOrder": 2860, "time": 0.5315466219988833, "position": { "x": 3, @@ -3817,9 +3817,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.5538805136795086, "position": { "x": 6, @@ -3840,9 +3840,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.5628140703517588, "position": { "x": 6, @@ -3863,9 +3863,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.5628140703517588, "position": { "x": 4, @@ -3886,9 +3886,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.5717476270240089, "position": { "x": 4, @@ -3909,9 +3909,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.5717476270240089, "position": { "x": 6, @@ -3932,9 +3932,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, + "noteOrder": 3124, "time": 0.5806811836962591, "position": { "x": 6, @@ -3955,9 +3955,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3123, + "noteOrder": 3124, "time": 0.5806811836962591, "position": { "x": 4, @@ -3978,9 +3978,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.5896147403685092, "position": { "x": 4, @@ -4001,10 +4001,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.6074818537130096, + "noteOrder": 3269, + "time": 0.6074818537130094, "position": { "x": 3, "y": 0 @@ -4024,10 +4024,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, - "time": 0.6164154103852597, + "noteOrder": 3317, + "time": 0.6164154103852596, "position": { "x": 3, "y": 0 @@ -4047,10 +4047,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.6074818537130096, + "noteOrder": 3269, + "time": 0.6074818537130094, "position": { "x": 7, "y": 0 @@ -4070,10 +4070,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, - "time": 0.6164154103852597, + "noteOrder": 3317, + "time": 0.6164154103852596, "position": { "x": 7, "y": 0 @@ -4093,9 +4093,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, + "noteOrder": 3365, "time": 0.6253489670575098, "position": { "x": 4, @@ -4116,9 +4116,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3413, "time": 0.6342825237297599, "position": { "x": 4, @@ -4139,9 +4139,9 @@ }, { "lineGroupId": 89, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3435, + "noteOrder": 3437, "time": 0.638749302065885, "position": { "x": 4, @@ -4162,9 +4162,9 @@ }, { "lineGroupId": 89, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3459, + "noteOrder": 3461, "time": 0.6432160804020101, "position": { "x": 4, @@ -4185,10 +4185,10 @@ }, { "lineGroupId": 89, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3507, - "time": 0.6521496370742602, + "noteOrder": 3509, + "time": 0.6521496370742601, "position": { "x": 4, "y": 0 @@ -4208,9 +4208,9 @@ }, { "lineGroupId": 89, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3531, + "noteOrder": 3533, "time": 0.6566164154103853, "position": { "x": 3, @@ -4231,10 +4231,10 @@ }, { "lineGroupId": 89, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3555, - "time": 0.6610831937465104, + "noteOrder": 3557, + "time": 0.6610831937465103, "position": { "x": 4, "y": 0 @@ -4254,9 +4254,9 @@ }, { "lineGroupId": 89, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3579, + "noteOrder": 3581, "time": 0.6655499720826354, "position": { "x": 4, @@ -4277,10 +4277,10 @@ }, { "lineGroupId": 89, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3603, - "time": 0.6700167504187605, + "noteOrder": 3605, + "time": 0.6700167504187604, "position": { "x": 4, "y": 0 @@ -4300,9 +4300,9 @@ }, { "lineGroupId": 89, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 3628, + "noteOrder": 3629, "time": 0.6744835287548856, "position": { "x": 4, @@ -4323,9 +4323,9 @@ }, { "lineGroupId": 89, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.6789503070910106, "position": { "x": 4, @@ -4346,9 +4346,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, + "noteOrder": 3365, "time": 0.6253489670575098, "position": { "x": 6, @@ -4369,9 +4369,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3413, "time": 0.6342825237297599, "position": { "x": 6, @@ -4392,9 +4392,9 @@ }, { "lineGroupId": 90, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3435, + "noteOrder": 3437, "time": 0.638749302065885, "position": { "x": 7, @@ -4415,9 +4415,9 @@ }, { "lineGroupId": 90, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3459, + "noteOrder": 3461, "time": 0.6432160804020101, "position": { "x": 6, @@ -4438,10 +4438,10 @@ }, { "lineGroupId": 90, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3507, - "time": 0.6521496370742602, + "noteOrder": 3509, + "time": 0.6521496370742601, "position": { "x": 6, "y": 0 @@ -4461,9 +4461,9 @@ }, { "lineGroupId": 90, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3531, + "noteOrder": 3533, "time": 0.6566164154103853, "position": { "x": 6, @@ -4484,10 +4484,10 @@ }, { "lineGroupId": 90, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3555, - "time": 0.6610831937465104, + "noteOrder": 3557, + "time": 0.6610831937465103, "position": { "x": 6, "y": 0 @@ -4507,9 +4507,9 @@ }, { "lineGroupId": 90, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3579, + "noteOrder": 3581, "time": 0.6655499720826354, "position": { "x": 7, @@ -4530,10 +4530,10 @@ }, { "lineGroupId": 90, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3603, - "time": 0.6700167504187605, + "noteOrder": 3605, + "time": 0.6700167504187604, "position": { "x": 6, "y": 0 @@ -4553,9 +4553,9 @@ }, { "lineGroupId": 90, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 3628, + "noteOrder": 3629, "time": 0.6744835287548856, "position": { "x": 7, @@ -4576,9 +4576,9 @@ }, { "lineGroupId": 90, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.6789503070910106, "position": { "x": 6, @@ -4599,9 +4599,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.6968174204355109, "position": { "x": 4, @@ -4622,9 +4622,9 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.705750977107761, "position": { "x": 4, @@ -4645,9 +4645,9 @@ }, { "lineGroupId": 92, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.7102177554438861, "position": { "x": 4, @@ -4668,9 +4668,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.701284198771636, "position": { "x": 7, @@ -4691,9 +4691,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.705750977107761, "position": { "x": 7, @@ -4714,9 +4714,9 @@ }, { "lineGroupId": 93, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.7102177554438861, "position": { "x": 7, @@ -4737,10 +4737,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.7146845337800112, + "noteOrder": 3845, + "time": 0.7146845337800111, "position": { "x": 6, "y": 0 @@ -4760,10 +4760,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, - "time": 0.7236180904522613, + "noteOrder": 3894, + "time": 0.7236180904522612, "position": { "x": 6, "y": 0 @@ -4783,9 +4783,9 @@ }, { "lineGroupId": 94, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7280848687883864, "position": { "x": 6, @@ -4806,9 +4806,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3869, "time": 0.7191513121161363, "position": { "x": 3, @@ -4829,10 +4829,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, - "time": 0.7236180904522613, + "noteOrder": 3894, + "time": 0.7236180904522612, "position": { "x": 3, "y": 0 @@ -4852,9 +4852,9 @@ }, { "lineGroupId": 95, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7280848687883864, "position": { "x": 3, @@ -4875,9 +4875,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3942, "time": 0.7325516471245114, "position": { "x": 4, @@ -4898,9 +4898,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, + "noteOrder": 3990, "time": 0.7414852037967615, "position": { "x": 4, @@ -4921,10 +4921,10 @@ }, { "lineGroupId": 96, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4012, - "time": 0.7459519821328866, + "noteOrder": 4014, + "time": 0.7459519821328867, "position": { "x": 5, "y": 0 @@ -4944,10 +4944,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3964, - "time": 0.7370184254606365, + "noteOrder": 3966, + "time": 0.7370184254606366, "position": { "x": 7, "y": 0 @@ -4967,9 +4967,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, + "noteOrder": 3990, "time": 0.7414852037967615, "position": { "x": 7, @@ -4990,10 +4990,10 @@ }, { "lineGroupId": 97, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4012, - "time": 0.7459519821328866, + "noteOrder": 4014, + "time": 0.7459519821328867, "position": { "x": 8, "y": 0 @@ -5013,9 +5013,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4036, + "noteOrder": 4038, "time": 0.7504187604690117, "position": { "x": 6, @@ -5036,9 +5036,9 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.7593523171412618, "position": { "x": 6, @@ -5059,9 +5059,9 @@ }, { "lineGroupId": 98, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4108, + "noteOrder": 4110, "time": 0.7638190954773869, "position": { "x": 5, @@ -5082,9 +5082,9 @@ }, { "lineGroupId": 98, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.768285873813512, "position": { "x": 5, @@ -5105,9 +5105,9 @@ }, { "lineGroupId": 98, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4156, + "noteOrder": 4158, "time": 0.7727526521496371, "position": { "x": 6, @@ -5128,9 +5128,9 @@ }, { "lineGroupId": 98, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.7772194304857621, "position": { "x": 6, @@ -5151,10 +5151,10 @@ }, { "lineGroupId": 98, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4204, - "time": 0.7816862088218873, + "noteOrder": 4206, + "time": 0.7816862088218872, "position": { "x": 6, "y": 0 @@ -5174,9 +5174,9 @@ }, { "lineGroupId": 98, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.7861529871580122, "position": { "x": 6, @@ -5197,10 +5197,10 @@ }, { "lineGroupId": 98, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4252, - "time": 0.7906197654941373, + "noteOrder": 4254, + "time": 0.7906197654941374, "position": { "x": 7, "y": 0 @@ -5220,9 +5220,9 @@ }, { "lineGroupId": 98, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.7950865438302623, "position": { "x": 7, @@ -5243,10 +5243,10 @@ }, { "lineGroupId": 98, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4300, - "time": 0.7995533221663874, + "noteOrder": 4302, + "time": 0.7995533221663875, "position": { "x": 7, "y": 0 @@ -5266,9 +5266,9 @@ }, { "lineGroupId": 98, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.8040201005025125, "position": { "x": 7, @@ -5289,9 +5289,9 @@ }, { "lineGroupId": 98, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.8084868788386377, "position": { "x": 7, @@ -5312,10 +5312,10 @@ }, { "lineGroupId": 98, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4372, - "time": 0.8129536571747628, + "noteOrder": 4374, + "time": 0.8129536571747626, "position": { "x": 7, "y": 0 @@ -5335,10 +5335,10 @@ }, { "lineGroupId": 98, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4396, - "time": 0.8174204355108878, + "noteOrder": 4398, + "time": 0.8174204355108877, "position": { "x": 6, "y": 0 @@ -5358,10 +5358,10 @@ }, { "lineGroupId": 98, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4420, - "time": 0.8218872138470129, + "noteOrder": 4422, + "time": 0.8218872138470128, "position": { "x": 6, "y": 0 @@ -5381,9 +5381,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4060, + "noteOrder": 4062, "time": 0.7548855388051368, "position": { "x": 3, @@ -5404,9 +5404,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.7593523171412618, "position": { "x": 3, @@ -5427,9 +5427,9 @@ }, { "lineGroupId": 99, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4108, + "noteOrder": 4110, "time": 0.7638190954773869, "position": { "x": 2, @@ -5450,9 +5450,9 @@ }, { "lineGroupId": 99, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.768285873813512, "position": { "x": 2, @@ -5473,9 +5473,9 @@ }, { "lineGroupId": 99, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4156, + "noteOrder": 4158, "time": 0.7727526521496371, "position": { "x": 3, @@ -5496,9 +5496,9 @@ }, { "lineGroupId": 99, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.7772194304857621, "position": { "x": 3, @@ -5519,10 +5519,10 @@ }, { "lineGroupId": 99, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4204, - "time": 0.7816862088218873, + "noteOrder": 4206, + "time": 0.7816862088218872, "position": { "x": 3, "y": 0 @@ -5542,9 +5542,9 @@ }, { "lineGroupId": 99, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.7861529871580122, "position": { "x": 3, @@ -5565,10 +5565,10 @@ }, { "lineGroupId": 99, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4252, - "time": 0.7906197654941373, + "noteOrder": 4254, + "time": 0.7906197654941374, "position": { "x": 4, "y": 0 @@ -5588,9 +5588,9 @@ }, { "lineGroupId": 99, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.7950865438302623, "position": { "x": 4, @@ -5611,10 +5611,10 @@ }, { "lineGroupId": 99, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4300, - "time": 0.7995533221663874, + "noteOrder": 4302, + "time": 0.7995533221663875, "position": { "x": 4, "y": 0 @@ -5634,9 +5634,9 @@ }, { "lineGroupId": 99, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.8040201005025125, "position": { "x": 4, @@ -5657,9 +5657,9 @@ }, { "lineGroupId": 99, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.8084868788386377, "position": { "x": 4, @@ -5680,10 +5680,10 @@ }, { "lineGroupId": 99, - "indexInLine": 13, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4372, - "time": 0.8129536571747628, + "noteOrder": 4374, + "time": 0.8129536571747626, "position": { "x": 4, "y": 0 @@ -5703,10 +5703,10 @@ }, { "lineGroupId": 99, - "indexInLine": 14, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4396, - "time": 0.8174204355108878, + "noteOrder": 4398, + "time": 0.8174204355108877, "position": { "x": 3, "y": 0 @@ -5726,10 +5726,10 @@ }, { "lineGroupId": 99, - "indexInLine": 15, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4420, - "time": 0.8218872138470129, + "noteOrder": 4422, + "time": 0.8218872138470128, "position": { "x": 3, "y": 0 @@ -5749,10 +5749,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.8397543271915132, + "noteOrder": 4518, + "time": 0.8397543271915131, "position": { "x": 4, "y": 0 @@ -5772,9 +5772,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8442211055276382, "position": { "x": 4, @@ -5795,9 +5795,9 @@ }, { "lineGroupId": 101, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8486878838637633, "position": { "x": 4, @@ -5818,9 +5818,9 @@ }, { "lineGroupId": 101, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4588, + "noteOrder": 4591, "time": 0.8531546621998883, "position": { "x": 4, @@ -5841,10 +5841,10 @@ }, { "lineGroupId": 101, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4612, - "time": 0.8576214405360134, + "noteOrder": 4615, + "time": 0.8576214405360133, "position": { "x": 4, "y": 0 @@ -5864,9 +5864,9 @@ }, { "lineGroupId": 101, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4636, + "noteOrder": 4639, "time": 0.8620882188721385, "position": { "x": 4, @@ -5887,10 +5887,10 @@ }, { "lineGroupId": 101, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4661, - "time": 0.8665549972082636, + "noteOrder": 4663, + "time": 0.8665549972082635, "position": { "x": 4, "y": 0 @@ -5910,9 +5910,9 @@ }, { "lineGroupId": 101, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8710217755443886, "position": { "x": 4, @@ -5933,10 +5933,10 @@ }, { "lineGroupId": 101, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4709, - "time": 0.8754885538805137, + "noteOrder": 4711, + "time": 0.8754885538805136, "position": { "x": 4, "y": 0 @@ -5956,9 +5956,9 @@ }, { "lineGroupId": 101, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4829, + "noteOrder": 4831, "time": 0.897822445561139, "position": { "x": 4, @@ -5979,10 +5979,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.8397543271915132, + "noteOrder": 4518, + "time": 0.8397543271915131, "position": { "x": 6, "y": 0 @@ -6002,9 +6002,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8442211055276382, "position": { "x": 6, @@ -6025,9 +6025,9 @@ }, { "lineGroupId": 102, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8486878838637633, "position": { "x": 7, @@ -6048,9 +6048,9 @@ }, { "lineGroupId": 102, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4588, + "noteOrder": 4591, "time": 0.8531546621998883, "position": { "x": 6, @@ -6071,10 +6071,10 @@ }, { "lineGroupId": 102, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4612, - "time": 0.8576214405360134, + "noteOrder": 4615, + "time": 0.8576214405360133, "position": { "x": 7, "y": 0 @@ -6094,9 +6094,9 @@ }, { "lineGroupId": 102, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4636, + "noteOrder": 4639, "time": 0.8620882188721385, "position": { "x": 7, @@ -6117,10 +6117,10 @@ }, { "lineGroupId": 102, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4661, - "time": 0.8665549972082636, + "noteOrder": 4663, + "time": 0.8665549972082635, "position": { "x": 6, "y": 0 @@ -6140,9 +6140,9 @@ }, { "lineGroupId": 102, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8710217755443886, "position": { "x": 7, @@ -6163,10 +6163,10 @@ }, { "lineGroupId": 102, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4709, - "time": 0.8754885538805137, + "noteOrder": 4711, + "time": 0.8754885538805136, "position": { "x": 6, "y": 0 @@ -6186,9 +6186,9 @@ }, { "lineGroupId": 102, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4829, + "noteOrder": 4831, "time": 0.897822445561139, "position": { "x": 6, @@ -6209,9 +6209,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4903, "time": 0.9112227805695142, "position": { "x": 6, @@ -6232,9 +6232,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4925, + "noteOrder": 4927, "time": 0.9156895589056393, "position": { "x": 6, @@ -6255,10 +6255,10 @@ }, { "lineGroupId": 106, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4949, - "time": 0.9201563372417644, + "noteOrder": 4951, + "time": 0.9201563372417643, "position": { "x": 6, "y": 0 @@ -6278,9 +6278,9 @@ }, { "lineGroupId": 106, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.9246231155778895, "position": { "x": 6, @@ -6301,10 +6301,10 @@ }, { "lineGroupId": 106, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4997, - "time": 0.9290898939140145, + "noteOrder": 4999, + "time": 0.9290898939140144, "position": { "x": 6, "y": 0 @@ -6324,9 +6324,9 @@ }, { "lineGroupId": 106, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.9335566722501396, "position": { "x": 6, @@ -6347,10 +6347,10 @@ }, { "lineGroupId": 106, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5045, - "time": 0.9380234505862647, + "noteOrder": 5047, + "time": 0.9380234505862646, "position": { "x": 6, "y": 0 @@ -6370,9 +6370,9 @@ }, { "lineGroupId": 106, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5069, + "noteOrder": 5071, "time": 0.9424902289223898, "position": { "x": 6, @@ -6393,10 +6393,10 @@ }, { "lineGroupId": 106, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5093, - "time": 0.9469570072585148, + "noteOrder": 5095, + "time": 0.9469570072585147, "position": { "x": 6, "y": 0 @@ -6416,9 +6416,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4903, "time": 0.9112227805695142, "position": { "x": 4, @@ -6439,9 +6439,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4925, + "noteOrder": 4927, "time": 0.9156895589056393, "position": { "x": 4, @@ -6462,10 +6462,10 @@ }, { "lineGroupId": 107, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4949, - "time": 0.9201563372417644, + "noteOrder": 4951, + "time": 0.9201563372417643, "position": { "x": 3, "y": 0 @@ -6485,9 +6485,9 @@ }, { "lineGroupId": 107, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.9246231155778895, "position": { "x": 4, @@ -6508,10 +6508,10 @@ }, { "lineGroupId": 107, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4997, - "time": 0.9290898939140145, + "noteOrder": 4999, + "time": 0.9290898939140144, "position": { "x": 3, "y": 0 @@ -6531,9 +6531,9 @@ }, { "lineGroupId": 107, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.9335566722501396, "position": { "x": 3, @@ -6554,10 +6554,10 @@ }, { "lineGroupId": 107, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5045, - "time": 0.9380234505862647, + "noteOrder": 5047, + "time": 0.9380234505862646, "position": { "x": 4, "y": 0 @@ -6577,9 +6577,9 @@ }, { "lineGroupId": 107, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5069, + "noteOrder": 5071, "time": 0.9424902289223898, "position": { "x": 3, @@ -6600,10 +6600,10 @@ }, { "lineGroupId": 107, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5093, - "time": 0.9469570072585148, + "noteOrder": 5095, + "time": 0.9469570072585147, "position": { "x": 4, "y": 0 diff --git a/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1b.json b/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1b.json index 71b68a4f..3922781e 100644 --- a/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1b.json +++ b/tracks/Honey Bounce CRAB STEP EDITION/366_difficulty_1b.json @@ -74,7 +74,7 @@ }, { "noteOrder": 625, - "time": 0.11613623673925182, + "time": 0.1161362367392518, "position": { "x": 7, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.27247347850362924, "position": { "x": 4, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.2814070351758794, "position": { "x": 6, @@ -234,7 +234,7 @@ }, { "noteOrder": 1610, - "time": 0.2992741485203797, + "time": 0.29927414852037965, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1634, - "time": 0.3037409268565048, + "time": 0.3037409268565047, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.384142936906756, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.40201005025125625, "position": { "x": 3, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.4198771635957566, + "noteOrder": 2259, + "time": 0.41987716359575655, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.4198771635957566, + "noteOrder": 2259, + "time": 0.41987716359575655, "position": { "x": 4, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.4824120603015075, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.4868788386376326, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.49134561697375767, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.5002791736460078, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.5047459519821329, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.509212730318258, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.5181462869905081, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.5226130653266332, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.5270798436627583, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.5360134003350083, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.5404801786711334, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.5449469570072585, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.5538805136795086, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3003, + "noteOrder": 3004, "time": 0.5583472920156337, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.5628140703517588, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.5717476270240089, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3099, + "noteOrder": 3100, "time": 0.576214405360134, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3123, + "noteOrder": 3124, "time": 0.5806811836962591, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3197, "time": 0.5940815187046343, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3219, - "time": 0.5985482970407594, + "noteOrder": 3221, + "time": 0.5985482970407593, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3293, "time": 0.6119486320491346, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.6164154103852597, + "noteOrder": 3317, + "time": 0.6164154103852596, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3411, + "noteOrder": 3413, "time": 0.6342825237297599, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3507, - "time": 0.6521496370742602, + "noteOrder": 3509, + "time": 0.6521496370742601, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3555, - "time": 0.6610831937465104, + "noteOrder": 3557, + "time": 0.6610831937465103, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3579, + "noteOrder": 3581, "time": 0.6655499720826354, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3603, - "time": 0.6700167504187605, + "noteOrder": 3605, + "time": 0.6700167504187604, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3629, "time": 0.6744835287548856, "position": { "x": 4, @@ -936,10 +936,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.02680067001675042, + "time": 0.026800670016750416, "position": { "x": 7, "y": 0 @@ -959,10 +959,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.05360134003350084, + "time": 0.05360134003350083, "position": { "x": 7, "y": 0 @@ -982,10 +982,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 312, - "time": 0.05806811836962591, + "time": 0.0580681183696259, "position": { "x": 8, "y": 0 @@ -1005,7 +1005,7 @@ }, { "lineGroupId": 2, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 336, "time": 0.06253489670575098, @@ -1028,9 +1028,9 @@ }, { "lineGroupId": 2, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.07146845337800112, "position": { "x": 7, @@ -1051,10 +1051,10 @@ }, { "lineGroupId": 2, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 408, - "time": 0.0759352317141262, + "noteOrder": 409, + "time": 0.07593523171412618, "position": { "x": 6, "y": 0 @@ -1074,9 +1074,9 @@ }, { "lineGroupId": 2, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.08040201005025126, "position": { "x": 7, @@ -1097,10 +1097,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, - "time": 0.0446677833612507, + "time": 0.04466778336125069, "position": { "x": 3, "y": 0 @@ -1120,10 +1120,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.05360134003350084, + "time": 0.05360134003350083, "position": { "x": 3, "y": 0 @@ -1143,10 +1143,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 312, - "time": 0.05806811836962591, + "time": 0.0580681183696259, "position": { "x": 4, "y": 0 @@ -1166,7 +1166,7 @@ }, { "lineGroupId": 4, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 336, "time": 0.06253489670575098, @@ -1189,9 +1189,9 @@ }, { "lineGroupId": 4, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.07146845337800112, "position": { "x": 3, @@ -1212,10 +1212,10 @@ }, { "lineGroupId": 4, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 408, - "time": 0.0759352317141262, + "noteOrder": 409, + "time": 0.07593523171412618, "position": { "x": 2, "y": 0 @@ -1235,9 +1235,9 @@ }, { "lineGroupId": 4, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 432, + "noteOrder": 433, "time": 0.08040201005025126, "position": { "x": 3, @@ -1258,10 +1258,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.0893355667225014, + "noteOrder": 481, + "time": 0.08933556672250138, "position": { "x": 7, "y": 0 @@ -1281,7 +1281,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.09826912339475152, @@ -1304,10 +1304,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10720268006700168, + "time": 0.10720268006700166, "position": { "x": 3, "y": 0 @@ -1327,10 +1327,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.11613623673925182, + "time": 0.1161362367392518, "position": { "x": 3, "y": 0 @@ -1350,7 +1350,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.16080402010050251, @@ -1373,10 +1373,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, - "time": 0.1652707984366276, + "time": 0.16527079843662756, "position": { "x": 6, "y": 0 @@ -1396,7 +1396,7 @@ }, { "lineGroupId": 14, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 913, "time": 0.16973757677275264, @@ -1419,7 +1419,7 @@ }, { "lineGroupId": 14, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 937, "time": 0.17420435510887772, @@ -1442,7 +1442,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.16080402010050251, @@ -1465,10 +1465,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, - "time": 0.1652707984366276, + "time": 0.16527079843662756, "position": { "x": 4, "y": 0 @@ -1488,7 +1488,7 @@ }, { "lineGroupId": 15, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 913, "time": 0.16973757677275264, @@ -1511,7 +1511,7 @@ }, { "lineGroupId": 15, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 937, "time": 0.17420435510887772, @@ -1534,10 +1534,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.1786711334450028, + "time": 0.17867113344500277, "position": { "x": 6, "y": 0 @@ -1557,7 +1557,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 985, "time": 0.18313791178112784, @@ -1580,7 +1580,7 @@ }, { "lineGroupId": 16, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1009, "time": 0.18760469011725292, @@ -1603,7 +1603,7 @@ }, { "lineGroupId": 16, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1033, "time": 0.192071468453378, @@ -1626,9 +1626,9 @@ }, { "lineGroupId": 16, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.19653824678950305, "position": { "x": 6, @@ -1649,9 +1649,9 @@ }, { "lineGroupId": 16, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.20100502512562812, "position": { "x": 7, @@ -1672,10 +1672,10 @@ }, { "lineGroupId": 16, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1105, - "time": 0.20547180346175323, + "noteOrder": 1106, + "time": 0.2054718034617532, "position": { "x": 6, "y": 0 @@ -1695,10 +1695,10 @@ }, { "lineGroupId": 16, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1129, - "time": 0.2099385817978783, + "noteOrder": 1130, + "time": 0.20993858179787828, "position": { "x": 7, "y": 0 @@ -1718,10 +1718,10 @@ }, { "lineGroupId": 16, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1153, - "time": 0.21440536013400335, + "noteOrder": 1154, + "time": 0.21440536013400333, "position": { "x": 7, "y": 0 @@ -1741,10 +1741,10 @@ }, { "lineGroupId": 16, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1177, - "time": 0.21887213847012843, + "noteOrder": 1178, + "time": 0.2188721384701284, "position": { "x": 6, "y": 0 @@ -1764,10 +1764,10 @@ }, { "lineGroupId": 16, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 1201, - "time": 0.2233389168062535, + "noteOrder": 1202, + "time": 0.22333891680625348, "position": { "x": 7, "y": 0 @@ -1787,9 +1787,9 @@ }, { "lineGroupId": 16, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.22780569514237856, "position": { "x": 6, @@ -1810,10 +1810,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.1786711334450028, + "time": 0.17867113344500277, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 985, "time": 0.18313791178112784, @@ -1856,7 +1856,7 @@ }, { "lineGroupId": 17, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1009, "time": 0.18760469011725292, @@ -1879,7 +1879,7 @@ }, { "lineGroupId": 17, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1033, "time": 0.192071468453378, @@ -1902,9 +1902,9 @@ }, { "lineGroupId": 17, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.19653824678950305, "position": { "x": 4, @@ -1925,9 +1925,9 @@ }, { "lineGroupId": 17, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.20100502512562812, "position": { "x": 4, @@ -1948,10 +1948,10 @@ }, { "lineGroupId": 17, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1105, - "time": 0.20547180346175323, + "noteOrder": 1106, + "time": 0.2054718034617532, "position": { "x": 4, "y": 0 @@ -1971,10 +1971,10 @@ }, { "lineGroupId": 17, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1129, - "time": 0.2099385817978783, + "noteOrder": 1130, + "time": 0.20993858179787828, "position": { "x": 4, "y": 0 @@ -1994,10 +1994,10 @@ }, { "lineGroupId": 17, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1153, - "time": 0.21440536013400335, + "noteOrder": 1154, + "time": 0.21440536013400333, "position": { "x": 4, "y": 0 @@ -2017,10 +2017,10 @@ }, { "lineGroupId": 17, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 1177, - "time": 0.21887213847012843, + "noteOrder": 1178, + "time": 0.2188721384701284, "position": { "x": 4, "y": 0 @@ -2040,10 +2040,10 @@ }, { "lineGroupId": 17, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 1201, - "time": 0.2233389168062535, + "noteOrder": 1202, + "time": 0.22333891680625348, "position": { "x": 4, "y": 0 @@ -2063,9 +2063,9 @@ }, { "lineGroupId": 17, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.22780569514237856, "position": { "x": 4, @@ -2086,10 +2086,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.23227247347850363, + "noteOrder": 1250, + "time": 0.2322724734785036, "position": { "x": 4, "y": 0 @@ -2109,10 +2109,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.2367392518146287, + "noteOrder": 1274, + "time": 0.23673925181462868, "position": { "x": 4, "y": 0 @@ -2132,9 +2132,9 @@ }, { "lineGroupId": 18, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.24120603015075376, "position": { "x": 4, @@ -2155,9 +2155,9 @@ }, { "lineGroupId": 18, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.24567280848687884, "position": { "x": 4, @@ -2178,10 +2178,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.23227247347850363, + "noteOrder": 1250, + "time": 0.2322724734785036, "position": { "x": 6, "y": 0 @@ -2201,10 +2201,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.2367392518146287, + "noteOrder": 1274, + "time": 0.23673925181462868, "position": { "x": 6, "y": 0 @@ -2224,9 +2224,9 @@ }, { "lineGroupId": 19, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, + "noteOrder": 1298, "time": 0.24120603015075376, "position": { "x": 8, @@ -2247,9 +2247,9 @@ }, { "lineGroupId": 19, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.24567280848687884, "position": { "x": 6, @@ -2270,9 +2270,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.2501395868230039, "position": { "x": 6, @@ -2293,9 +2293,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.254606365159129, "position": { "x": 6, @@ -2316,9 +2316,9 @@ }, { "lineGroupId": 20, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.25907314349525407, "position": { "x": 6, @@ -2339,9 +2339,9 @@ }, { "lineGroupId": 20, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.26353992183137914, "position": { "x": 6, @@ -2362,9 +2362,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.2501395868230039, "position": { "x": 4, @@ -2385,9 +2385,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.254606365159129, "position": { "x": 4, @@ -2408,9 +2408,9 @@ }, { "lineGroupId": 21, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.25907314349525407, "position": { "x": 2, @@ -2431,9 +2431,9 @@ }, { "lineGroupId": 21, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.26353992183137914, "position": { "x": 4, @@ -2454,9 +2454,9 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.26800670016750416, "position": { "x": 6, @@ -2477,9 +2477,9 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.27247347850362924, "position": { "x": 6, @@ -2500,9 +2500,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.2769402568397543, "position": { "x": 4, @@ -2523,9 +2523,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.2814070351758794, "position": { "x": 4, @@ -2546,9 +2546,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.28587381351200447, "position": { "x": 6, @@ -2569,7 +2569,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1562, "time": 0.29034059184812955, @@ -2592,7 +2592,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1586, "time": 0.2948073701842546, @@ -2615,10 +2615,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1610, - "time": 0.2992741485203797, + "time": 0.29927414852037965, "position": { "x": 4, "y": 0 @@ -2638,7 +2638,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1682, "time": 0.3126744835287549, @@ -2661,9 +2661,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3394751535455053, "position": { "x": 3, @@ -2684,9 +2684,9 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.34394193188163036, "position": { "x": 2, @@ -2707,9 +2707,9 @@ }, { "lineGroupId": 31, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.34840871021775544, "position": { "x": 3, @@ -2730,10 +2730,10 @@ }, { "lineGroupId": 31, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1922, - "time": 0.3573422668900056, + "noteOrder": 1923, + "time": 0.35734226689000553, "position": { "x": 3, "y": 0 @@ -2753,10 +2753,10 @@ }, { "lineGroupId": 31, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1946, - "time": 0.36180904522613067, + "noteOrder": 1947, + "time": 0.3618090452261306, "position": { "x": 4, "y": 0 @@ -2776,9 +2776,9 @@ }, { "lineGroupId": 31, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3662758235622557, "position": { "x": 3, @@ -2799,10 +2799,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, - "time": 0.3305415968732552, + "noteOrder": 1779, + "time": 0.33054159687325513, "position": { "x": 7, "y": 0 @@ -2822,9 +2822,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.3394751535455053, "position": { "x": 7, @@ -2845,9 +2845,9 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.34394193188163036, "position": { "x": 6, @@ -2868,9 +2868,9 @@ }, { "lineGroupId": 33, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.34840871021775544, "position": { "x": 7, @@ -2891,10 +2891,10 @@ }, { "lineGroupId": 33, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1922, - "time": 0.3573422668900056, + "noteOrder": 1923, + "time": 0.35734226689000553, "position": { "x": 7, "y": 0 @@ -2914,10 +2914,10 @@ }, { "lineGroupId": 33, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1946, - "time": 0.36180904522613067, + "noteOrder": 1947, + "time": 0.3618090452261306, "position": { "x": 8, "y": 0 @@ -2937,9 +2937,9 @@ }, { "lineGroupId": 33, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.3662758235622557, "position": { "x": 7, @@ -2960,9 +2960,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.37520938023450584, "position": { "x": 3, @@ -2983,9 +2983,9 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.384142936906756, "position": { "x": 3, @@ -3006,9 +3006,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.3930764935790061, "position": { "x": 7, @@ -3029,9 +3029,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.40201005025125625, "position": { "x": 7, @@ -3052,10 +3052,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.43774427694025686, + "noteOrder": 2355, + "time": 0.4377442769402568, "position": { "x": 3, "y": 0 @@ -3075,10 +3075,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.46454494695700727, + "noteOrder": 2500, + "time": 0.4645449469570072, "position": { "x": 3, "y": 0 @@ -3098,10 +3098,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.43774427694025686, + "noteOrder": 2355, + "time": 0.4377442769402568, "position": { "x": 7, "y": 0 @@ -3121,10 +3121,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.46454494695700727, + "noteOrder": 2500, + "time": 0.4645449469570072, "position": { "x": 7, "y": 0 @@ -3144,9 +3144,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.5896147403685092, "position": { "x": 6, @@ -3167,9 +3167,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3195, + "noteOrder": 3197, "time": 0.5940815187046343, "position": { "x": 6, @@ -3190,10 +3190,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.6074818537130096, + "noteOrder": 3269, + "time": 0.6074818537130094, "position": { "x": 4, "y": 0 @@ -3213,9 +3213,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3291, + "noteOrder": 3293, "time": 0.6119486320491346, "position": { "x": 4, @@ -3236,9 +3236,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, + "noteOrder": 3365, "time": 0.6253489670575098, "position": { "x": 6, @@ -3259,9 +3259,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3413, "time": 0.6342825237297599, "position": { "x": 4, @@ -3282,9 +3282,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3459, + "noteOrder": 3461, "time": 0.6432160804020101, "position": { "x": 4, @@ -3305,10 +3305,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3507, - "time": 0.6521496370742602, + "noteOrder": 3509, + "time": 0.6521496370742601, "position": { "x": 6, "y": 0 @@ -3328,9 +3328,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.6789503070910106, "position": { "x": 4, @@ -3351,9 +3351,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.6968174204355109, "position": { "x": 4, @@ -3374,9 +3374,9 @@ }, { "lineGroupId": 78, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.701284198771636, "position": { "x": 4, @@ -3397,9 +3397,9 @@ }, { "lineGroupId": 78, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.705750977107761, "position": { "x": 4, @@ -3420,9 +3420,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.6789503070910106, "position": { "x": 6, @@ -3443,9 +3443,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.6968174204355109, "position": { "x": 6, @@ -3466,9 +3466,9 @@ }, { "lineGroupId": 79, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.701284198771636, "position": { "x": 7, @@ -3489,9 +3489,9 @@ }, { "lineGroupId": 79, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.705750977107761, "position": { "x": 6, @@ -3512,9 +3512,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.7102177554438861, "position": { "x": 6, @@ -3535,10 +3535,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3844, - "time": 0.7146845337800112, + "noteOrder": 3845, + "time": 0.7146845337800111, "position": { "x": 6, "y": 0 @@ -3558,9 +3558,9 @@ }, { "lineGroupId": 81, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3869, "time": 0.7191513121161363, "position": { "x": 6, @@ -3581,10 +3581,10 @@ }, { "lineGroupId": 81, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3892, - "time": 0.7236180904522613, + "noteOrder": 3894, + "time": 0.7236180904522612, "position": { "x": 6, "y": 0 @@ -3604,9 +3604,9 @@ }, { "lineGroupId": 81, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7280848687883864, "position": { "x": 6, @@ -3627,9 +3627,9 @@ }, { "lineGroupId": 81, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3942, "time": 0.7325516471245114, "position": { "x": 6, @@ -3650,10 +3650,10 @@ }, { "lineGroupId": 81, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3964, - "time": 0.7370184254606365, + "noteOrder": 3966, + "time": 0.7370184254606366, "position": { "x": 6, "y": 0 @@ -3673,9 +3673,9 @@ }, { "lineGroupId": 81, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3988, + "noteOrder": 3990, "time": 0.7414852037967615, "position": { "x": 6, @@ -3696,10 +3696,10 @@ }, { "lineGroupId": 81, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4012, - "time": 0.7459519821328866, + "noteOrder": 4014, + "time": 0.7459519821328867, "position": { "x": 6, "y": 0 @@ -3719,9 +3719,9 @@ }, { "lineGroupId": 81, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4036, + "noteOrder": 4038, "time": 0.7504187604690117, "position": { "x": 6, @@ -3742,9 +3742,9 @@ }, { "lineGroupId": 81, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4060, + "noteOrder": 4062, "time": 0.7548855388051368, "position": { "x": 6, @@ -3765,9 +3765,9 @@ }, { "lineGroupId": 81, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.7593523171412618, "position": { "x": 6, @@ -3788,9 +3788,9 @@ }, { "lineGroupId": 81, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4108, + "noteOrder": 4110, "time": 0.7638190954773869, "position": { "x": 6, @@ -3811,9 +3811,9 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.7102177554438861, "position": { "x": 4, @@ -3834,10 +3834,10 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3844, - "time": 0.7146845337800112, + "noteOrder": 3845, + "time": 0.7146845337800111, "position": { "x": 4, "y": 0 @@ -3857,9 +3857,9 @@ }, { "lineGroupId": 82, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3868, + "noteOrder": 3869, "time": 0.7191513121161363, "position": { "x": 3, @@ -3880,10 +3880,10 @@ }, { "lineGroupId": 82, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3892, - "time": 0.7236180904522613, + "noteOrder": 3894, + "time": 0.7236180904522612, "position": { "x": 4, "y": 0 @@ -3903,9 +3903,9 @@ }, { "lineGroupId": 82, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.7280848687883864, "position": { "x": 3, @@ -3926,9 +3926,9 @@ }, { "lineGroupId": 82, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3942, "time": 0.7325516471245114, "position": { "x": 3, @@ -3949,10 +3949,10 @@ }, { "lineGroupId": 82, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3964, - "time": 0.7370184254606365, + "noteOrder": 3966, + "time": 0.7370184254606366, "position": { "x": 4, "y": 0 @@ -3972,9 +3972,9 @@ }, { "lineGroupId": 82, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3988, + "noteOrder": 3990, "time": 0.7414852037967615, "position": { "x": 3, @@ -3995,10 +3995,10 @@ }, { "lineGroupId": 82, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4012, - "time": 0.7459519821328866, + "noteOrder": 4014, + "time": 0.7459519821328867, "position": { "x": 4, "y": 0 @@ -4018,9 +4018,9 @@ }, { "lineGroupId": 82, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4036, + "noteOrder": 4038, "time": 0.7504187604690117, "position": { "x": 4, @@ -4041,9 +4041,9 @@ }, { "lineGroupId": 82, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4060, + "noteOrder": 4062, "time": 0.7548855388051368, "position": { "x": 3, @@ -4064,9 +4064,9 @@ }, { "lineGroupId": 82, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4084, + "noteOrder": 4086, "time": 0.7593523171412618, "position": { "x": 4, @@ -4087,9 +4087,9 @@ }, { "lineGroupId": 82, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4108, + "noteOrder": 4110, "time": 0.7638190954773869, "position": { "x": 3, @@ -4110,9 +4110,9 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.768285873813512, "position": { "x": 4, @@ -4133,9 +4133,9 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4156, + "noteOrder": 4158, "time": 0.7727526521496371, "position": { "x": 4, @@ -4156,9 +4156,9 @@ }, { "lineGroupId": 83, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.7772194304857621, "position": { "x": 4, @@ -4179,10 +4179,10 @@ }, { "lineGroupId": 83, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4204, - "time": 0.7816862088218873, + "noteOrder": 4206, + "time": 0.7816862088218872, "position": { "x": 4, "y": 0 @@ -4202,9 +4202,9 @@ }, { "lineGroupId": 83, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.7861529871580122, "position": { "x": 4, @@ -4225,10 +4225,10 @@ }, { "lineGroupId": 83, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4252, - "time": 0.7906197654941373, + "noteOrder": 4254, + "time": 0.7906197654941374, "position": { "x": 4, "y": 0 @@ -4248,9 +4248,9 @@ }, { "lineGroupId": 83, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.7950865438302623, "position": { "x": 4, @@ -4271,10 +4271,10 @@ }, { "lineGroupId": 83, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4300, - "time": 0.7995533221663874, + "noteOrder": 4302, + "time": 0.7995533221663875, "position": { "x": 4, "y": 0 @@ -4294,9 +4294,9 @@ }, { "lineGroupId": 83, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.8040201005025125, "position": { "x": 4, @@ -4317,9 +4317,9 @@ }, { "lineGroupId": 83, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.8084868788386377, "position": { "x": 4, @@ -4340,10 +4340,10 @@ }, { "lineGroupId": 83, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4372, - "time": 0.8129536571747628, + "noteOrder": 4374, + "time": 0.8129536571747626, "position": { "x": 3, "y": 0 @@ -4363,10 +4363,10 @@ }, { "lineGroupId": 83, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4396, - "time": 0.8174204355108878, + "noteOrder": 4398, + "time": 0.8174204355108877, "position": { "x": 4, "y": 0 @@ -4386,10 +4386,10 @@ }, { "lineGroupId": 83, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4420, - "time": 0.8218872138470129, + "noteOrder": 4422, + "time": 0.8218872138470128, "position": { "x": 3, "y": 0 @@ -4409,9 +4409,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, + "noteOrder": 4134, "time": 0.768285873813512, "position": { "x": 6, @@ -4432,9 +4432,9 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4156, + "noteOrder": 4158, "time": 0.7727526521496371, "position": { "x": 6, @@ -4455,9 +4455,9 @@ }, { "lineGroupId": 84, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4180, + "noteOrder": 4182, "time": 0.7772194304857621, "position": { "x": 7, @@ -4478,10 +4478,10 @@ }, { "lineGroupId": 84, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4204, - "time": 0.7816862088218873, + "noteOrder": 4206, + "time": 0.7816862088218872, "position": { "x": 6, "y": 0 @@ -4501,9 +4501,9 @@ }, { "lineGroupId": 84, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4228, + "noteOrder": 4230, "time": 0.7861529871580122, "position": { "x": 7, @@ -4524,10 +4524,10 @@ }, { "lineGroupId": 84, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4252, - "time": 0.7906197654941373, + "noteOrder": 4254, + "time": 0.7906197654941374, "position": { "x": 7, "y": 0 @@ -4547,9 +4547,9 @@ }, { "lineGroupId": 84, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.7950865438302623, "position": { "x": 6, @@ -4570,10 +4570,10 @@ }, { "lineGroupId": 84, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4300, - "time": 0.7995533221663874, + "noteOrder": 4302, + "time": 0.7995533221663875, "position": { "x": 7, "y": 0 @@ -4593,9 +4593,9 @@ }, { "lineGroupId": 84, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.8040201005025125, "position": { "x": 6, @@ -4616,9 +4616,9 @@ }, { "lineGroupId": 84, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.8084868788386377, "position": { "x": 6, @@ -4639,10 +4639,10 @@ }, { "lineGroupId": 84, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4372, - "time": 0.8129536571747628, + "noteOrder": 4374, + "time": 0.8129536571747626, "position": { "x": 6, "y": 0 @@ -4662,10 +4662,10 @@ }, { "lineGroupId": 84, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4396, - "time": 0.8174204355108878, + "noteOrder": 4398, + "time": 0.8174204355108877, "position": { "x": 6, "y": 0 @@ -4685,10 +4685,10 @@ }, { "lineGroupId": 84, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4420, - "time": 0.8218872138470129, + "noteOrder": 4422, + "time": 0.8218872138470128, "position": { "x": 6, "y": 0 @@ -4708,10 +4708,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.8397543271915132, + "noteOrder": 4518, + "time": 0.8397543271915131, "position": { "x": 6, "y": 0 @@ -4731,9 +4731,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8442211055276382, "position": { "x": 6, @@ -4754,9 +4754,9 @@ }, { "lineGroupId": 87, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8486878838637633, "position": { "x": 7, @@ -4777,9 +4777,9 @@ }, { "lineGroupId": 87, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4588, + "noteOrder": 4591, "time": 0.8531546621998883, "position": { "x": 6, @@ -4800,10 +4800,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4516, - "time": 0.8397543271915132, + "noteOrder": 4518, + "time": 0.8397543271915131, "position": { "x": 4, "y": 0 @@ -4823,9 +4823,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8442211055276382, "position": { "x": 4, @@ -4846,9 +4846,9 @@ }, { "lineGroupId": 88, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8486878838637633, "position": { "x": 4, @@ -4869,9 +4869,9 @@ }, { "lineGroupId": 88, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4588, + "noteOrder": 4591, "time": 0.8531546621998883, "position": { "x": 4, @@ -4892,10 +4892,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4612, - "time": 0.8576214405360134, + "noteOrder": 4615, + "time": 0.8576214405360133, "position": { "x": 4, "y": 0 @@ -4915,9 +4915,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4636, + "noteOrder": 4639, "time": 0.8620882188721385, "position": { "x": 4, @@ -4938,10 +4938,10 @@ }, { "lineGroupId": 89, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4661, - "time": 0.8665549972082636, + "noteOrder": 4663, + "time": 0.8665549972082635, "position": { "x": 3, "y": 0 @@ -4961,9 +4961,9 @@ }, { "lineGroupId": 89, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8710217755443886, "position": { "x": 4, @@ -4984,10 +4984,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4612, - "time": 0.8576214405360134, + "noteOrder": 4615, + "time": 0.8576214405360133, "position": { "x": 6, "y": 0 @@ -5007,9 +5007,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4636, + "noteOrder": 4639, "time": 0.8620882188721385, "position": { "x": 6, @@ -5030,10 +5030,10 @@ }, { "lineGroupId": 90, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4661, - "time": 0.8665549972082636, + "noteOrder": 4663, + "time": 0.8665549972082635, "position": { "x": 6, "y": 0 @@ -5053,9 +5053,9 @@ }, { "lineGroupId": 90, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8710217755443886, "position": { "x": 6, @@ -5076,10 +5076,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, - "time": 0.8754885538805137, + "noteOrder": 4711, + "time": 0.8754885538805136, "position": { "x": 6, "y": 0 @@ -5099,9 +5099,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.8799553322166388, "position": { "x": 6, @@ -5122,10 +5122,10 @@ }, { "lineGroupId": 91, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4757, - "time": 0.8844221105527639, + "noteOrder": 4759, + "time": 0.8844221105527638, "position": { "x": 7, "y": 0 @@ -5145,10 +5145,10 @@ }, { "lineGroupId": 91, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4781, - "time": 0.888888888888889, + "noteOrder": 4783, + "time": 0.8888888888888888, "position": { "x": 6, "y": 0 @@ -5168,10 +5168,10 @@ }, { "lineGroupId": 91, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4805, - "time": 0.893355667225014, + "noteOrder": 4807, + "time": 0.8933556672250139, "position": { "x": 7, "y": 0 @@ -5191,9 +5191,9 @@ }, { "lineGroupId": 91, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4829, + "noteOrder": 4831, "time": 0.897822445561139, "position": { "x": 6, @@ -5214,9 +5214,9 @@ }, { "lineGroupId": 91, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.9022892238972641, "position": { "x": 7, @@ -5237,9 +5237,9 @@ }, { "lineGroupId": 91, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4877, + "noteOrder": 4879, "time": 0.9067560022333891, "position": { "x": 7, @@ -5260,10 +5260,10 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, - "time": 0.8754885538805137, + "noteOrder": 4711, + "time": 0.8754885538805136, "position": { "x": 4, "y": 0 @@ -5283,9 +5283,9 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.8799553322166388, "position": { "x": 4, @@ -5306,10 +5306,10 @@ }, { "lineGroupId": 92, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4757, - "time": 0.8844221105527639, + "noteOrder": 4759, + "time": 0.8844221105527638, "position": { "x": 4, "y": 0 @@ -5329,10 +5329,10 @@ }, { "lineGroupId": 92, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4781, - "time": 0.888888888888889, + "noteOrder": 4783, + "time": 0.8888888888888888, "position": { "x": 4, "y": 0 @@ -5352,10 +5352,10 @@ }, { "lineGroupId": 92, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4805, - "time": 0.893355667225014, + "noteOrder": 4807, + "time": 0.8933556672250139, "position": { "x": 4, "y": 0 @@ -5375,9 +5375,9 @@ }, { "lineGroupId": 92, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4829, + "noteOrder": 4831, "time": 0.897822445561139, "position": { "x": 4, @@ -5398,9 +5398,9 @@ }, { "lineGroupId": 92, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.9022892238972641, "position": { "x": 4, @@ -5421,9 +5421,9 @@ }, { "lineGroupId": 92, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4877, + "noteOrder": 4879, "time": 0.9067560022333891, "position": { "x": 4, @@ -5444,9 +5444,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4903, "time": 0.9112227805695142, "position": { "x": 6, @@ -5467,9 +5467,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4925, + "noteOrder": 4927, "time": 0.9156895589056393, "position": { "x": 6, @@ -5490,10 +5490,10 @@ }, { "lineGroupId": 94, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4949, - "time": 0.9201563372417644, + "noteOrder": 4951, + "time": 0.9201563372417643, "position": { "x": 6, "y": 0 @@ -5513,9 +5513,9 @@ }, { "lineGroupId": 94, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.9246231155778895, "position": { "x": 6, @@ -5536,9 +5536,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, + "noteOrder": 4903, "time": 0.9112227805695142, "position": { "x": 4, @@ -5559,9 +5559,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4925, + "noteOrder": 4927, "time": 0.9156895589056393, "position": { "x": 4, @@ -5582,10 +5582,10 @@ }, { "lineGroupId": 95, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4949, - "time": 0.9201563372417644, + "noteOrder": 4951, + "time": 0.9201563372417643, "position": { "x": 3, "y": 0 @@ -5605,9 +5605,9 @@ }, { "lineGroupId": 95, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.9246231155778895, "position": { "x": 4, @@ -5628,10 +5628,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, - "time": 0.9290898939140145, + "noteOrder": 4999, + "time": 0.9290898939140144, "position": { "x": 6, "y": 0 @@ -5651,9 +5651,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.9335566722501396, "position": { "x": 6, @@ -5674,10 +5674,10 @@ }, { "lineGroupId": 96, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5045, - "time": 0.9380234505862647, + "noteOrder": 5047, + "time": 0.9380234505862646, "position": { "x": 7, "y": 0 @@ -5697,9 +5697,9 @@ }, { "lineGroupId": 96, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5069, + "noteOrder": 5071, "time": 0.9424902289223898, "position": { "x": 6, @@ -5720,10 +5720,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, - "time": 0.9290898939140145, + "noteOrder": 4999, + "time": 0.9290898939140144, "position": { "x": 4, "y": 0 @@ -5743,9 +5743,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.9335566722501396, "position": { "x": 4, @@ -5766,10 +5766,10 @@ }, { "lineGroupId": 97, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5045, - "time": 0.9380234505862647, + "noteOrder": 5047, + "time": 0.9380234505862646, "position": { "x": 4, "y": 0 @@ -5789,9 +5789,9 @@ }, { "lineGroupId": 97, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5069, + "noteOrder": 5071, "time": 0.9424902289223898, "position": { "x": 4, diff --git a/tracks/Honey Bounce CRAB STEP EDITION/info.json b/tracks/Honey Bounce CRAB STEP EDITION/info.json index 3a5ca289..d6c33239 100644 --- a/tracks/Honey Bounce CRAB STEP EDITION/info.json +++ b/tracks/Honey Bounce CRAB STEP EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Honey Bounce CRAB STEP EDITION", - "SongLength": "115.043265", + "SongLength": "105.090612", "SongAuthorName": "nora2r", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/HoneyComb/254_difficulty_1a.json b/tracks/HoneyComb/254_difficulty_1a.json index 528e49f1..14b29643 100644 --- a/tracks/HoneyComb/254_difficulty_1a.json +++ b/tracks/HoneyComb/254_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.014927113702623908, + "time": 0.014927113702623906, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.018658892128279883, + "time": 0.01865889212827988, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.02239067055393586, + "time": 0.022390670553935857, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 168, - "time": 0.026122448979591838, + "time": 0.026122448979591834, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 192, - "time": 0.029854227405247815, + "time": 0.02985422740524781, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 216, - "time": 0.03358600583090379, + "time": 0.033586005830903785, "position": { "x": 5, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 240, - "time": 0.037317784256559766, + "time": 0.03731778425655976, "position": { "x": 8, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 264, - "time": 0.04104956268221575, + "time": 0.04104956268221574, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 288, - "time": 0.04478134110787172, + "time": 0.044781341107871714, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 312, - "time": 0.0485131195335277, + "time": 0.048513119533527695, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 336, - "time": 0.052244897959183675, + "time": 0.05224489795918367, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 360, - "time": 0.055976676384839656, + "time": 0.05597667638483965, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 384, - "time": 0.05970845481049563, + "time": 0.05970845481049562, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 408, - "time": 0.06344023323615161, + "time": 0.0634402332361516, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 432, - "time": 0.06717201166180758, + "time": 0.06717201166180757, "position": { "x": 7, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 456, - "time": 0.07090379008746356, + "noteOrder": 457, + "time": 0.07090379008746354, "position": { "x": 5, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.07463556851311953, + "noteOrder": 481, + "time": 0.07463556851311952, "position": { "x": 3, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.0783673469387755, "position": { "x": 5, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.0820991253644315, + "noteOrder": 529, + "time": 0.08209912536443148, "position": { "x": 3, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 552, - "time": 0.08583090379008747, + "noteOrder": 553, + "time": 0.08583090379008745, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.08956268221574344, + "noteOrder": 577, + "time": 0.08956268221574343, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.09329446064139942, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.0970262390670554, + "noteOrder": 625, + "time": 0.09702623906705539, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.10075801749271138, + "noteOrder": 649, + "time": 0.10075801749271136, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10448979591836735, + "noteOrder": 673, + "time": 0.10448979591836734, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.10822157434402332, "position": { "x": 5, @@ -534,7 +534,7 @@ }, { "noteOrder": 721, - "time": 0.11195335276967931, + "time": 0.1119533527696793, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 745, - "time": 0.11568513119533529, + "time": 0.11568513119533527, "position": { "x": 5, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 769, - "time": 0.11941690962099126, + "time": 0.11941690962099125, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 841, - "time": 0.1306122448979592, + "time": 0.13061224489795917, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 889, - "time": 0.13807580174927114, + "time": 0.13807580174927112, "position": { "x": 5, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 913, - "time": 0.14180758017492712, + "time": 0.1418075801749271, "position": { "x": 4, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 937, - "time": 0.1455393586005831, + "time": 0.14553935860058306, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 961, - "time": 0.14927113702623906, + "time": 0.14927113702623904, "position": { "x": 2, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1105, - "time": 0.17166180758017494, + "time": 0.1716618075801749, "position": { "x": 6, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1129, - "time": 0.1753935860058309, + "time": 0.17539358600583088, "position": { "x": 5, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1153, - "time": 0.17912536443148688, + "time": 0.17912536443148686, "position": { "x": 5, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1177, - "time": 0.18285714285714286, + "time": 0.18285714285714283, "position": { "x": 6, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1225, - "time": 0.19032069970845483, + "time": 0.19032069970845478, "position": { "x": 7, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1249, - "time": 0.1940524781341108, + "time": 0.19405247813411078, "position": { "x": 5, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1273, - "time": 0.19778425655976678, + "time": 0.19778425655976672, "position": { "x": 5, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1297, - "time": 0.20151603498542275, + "time": 0.20151603498542273, "position": { "x": 5, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.2033819241982507, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1321, - "time": 0.20524781341107873, + "noteOrder": 1322, + "time": 0.2052478134110787, "position": { "x": 5, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1345, - "time": 0.2089795918367347, + "noteOrder": 1346, + "time": 0.20897959183673467, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1357, - "time": 0.2108454810495627, + "noteOrder": 1358, + "time": 0.21084548104956266, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.21271137026239068, + "noteOrder": 1370, + "time": 0.21271137026239065, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.21644314868804665, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1405, - "time": 0.21830903790087464, + "noteOrder": 1406, + "time": 0.2183090379008746, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.22017492711370265, + "noteOrder": 1418, + "time": 0.2201749271137026, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.23883381924198252, + "noteOrder": 1538, + "time": 0.2388338192419825, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.23883381924198252, + "noteOrder": 1538, + "time": 0.2388338192419825, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.2425655976676385, + "noteOrder": 1562, + "time": 0.24256559766763847, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.2425655976676385, + "noteOrder": 1562, + "time": 0.24256559766763847, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1585, + "noteOrder": 1586, "time": 0.24629737609329447, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1585, + "noteOrder": 1586, "time": 0.24629737609329447, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1633, - "time": 0.25376093294460644, + "noteOrder": 1634, + "time": 0.2537609329446064, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.26868804664723034, + "noteOrder": 1730, + "time": 0.2686880466472303, "position": { "x": 8, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.2873469387755102, "position": { "x": 4, @@ -1334,7 +1334,7 @@ }, { "noteOrder": 2114, - "time": 0.328396501457726, + "time": 0.3283965014577259, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.34332361516034987, + "noteOrder": 2211, + "time": 0.3433236151603498, "position": { "x": 8, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.3470553935860058, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.37317784256559766, "position": { "x": 2, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2426, - "time": 0.37690962099125364, + "noteOrder": 2427, + "time": 0.3769096209912536, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.38064139941690966, + "noteOrder": 2451, + "time": 0.38064139941690955, "position": { "x": 2, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.3881049562682216, + "noteOrder": 2499, + "time": 0.38810495626822156, "position": { "x": 2, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.39556851311953356, + "noteOrder": 2547, + "time": 0.39556851311953345, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2594, - "time": 0.4030320699708455, + "noteOrder": 2595, + "time": 0.40303206997084545, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2690, - "time": 0.4179591836734694, + "noteOrder": 2691, + "time": 0.41795918367346935, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2714, - "time": 0.4216909620991254, + "noteOrder": 2715, + "time": 0.4216909620991253, "position": { "x": 8, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.42542274052478135, + "noteOrder": 2739, + "time": 0.4254227405247813, "position": { "x": 8, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2763, "time": 0.4291545189504373, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2834, - "time": 0.4403498542274053, + "noteOrder": 2835, + "time": 0.4403498542274052, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.46274052478134114, + "noteOrder": 2979, + "time": 0.4627405247813411, "position": { "x": 2, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.46647230320699706, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.47766763848396504, + "noteOrder": 3076, + "time": 0.477667638483965, "position": { "x": 8, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3122, - "time": 0.485131195335277, + "noteOrder": 3124, + "time": 0.48513119533527693, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3194, - "time": 0.4963265306122449, + "noteOrder": 3196, + "time": 0.49632653061224485, "position": { "x": 3, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3218, - "time": 0.5000583090379009, + "noteOrder": 3220, + "time": 0.5000583090379008, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.5037900874635569, + "noteOrder": 3244, + "time": 0.5037900874635568, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.5075218658892129, + "noteOrder": 3268, + "time": 0.5075218658892128, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3292, "time": 0.5112536443148687, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.5149854227405248, + "noteOrder": 3316, + "time": 0.5149854227405247, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3340, "time": 0.5187172011661807, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5224489795918368, + "noteOrder": 3364, + "time": 0.5224489795918367, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3388, "time": 0.5261807580174926, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3410, - "time": 0.5299125364431487, + "noteOrder": 3412, + "time": 0.5299125364431486, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.5336443148688047, + "noteOrder": 3436, + "time": 0.5336443148688046, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.5373760932944607, + "noteOrder": 3460, + "time": 0.5373760932944606, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.5411078717201167, + "noteOrder": 3484, + "time": 0.5411078717201165, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5448396501457726, + "noteOrder": 3508, + "time": 0.5448396501457725, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3531, - "time": 0.5485714285714286, + "noteOrder": 3532, + "time": 0.5485714285714285, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3555, - "time": 0.5523032069970846, + "noteOrder": 3556, + "time": 0.5523032069970845, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3579, + "noteOrder": 3580, "time": 0.5560349854227405, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3603, - "time": 0.5597667638483965, + "noteOrder": 3604, + "time": 0.5597667638483964, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3627, - "time": 0.5634985422740525, + "noteOrder": 3628, + "time": 0.5634985422740524, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3651, - "time": 0.5672303206997085, + "noteOrder": 3652, + "time": 0.5672303206997084, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.5709620991253644, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 3700, "time": 0.5746938775510204, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.5784256559766764, + "noteOrder": 3724, + "time": 0.5784256559766763, "position": { "x": 2, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.5821574344023324, + "noteOrder": 3748, + "time": 0.5821574344023323, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 3772, "time": 0.5858892128279883, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3796, "time": 0.5896209912536443, "position": { "x": 5, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3820, "time": 0.5933527696793003, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.5970845481049563, + "noteOrder": 3844, + "time": 0.5970845481049561, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3867, - "time": 0.6008163265306122, + "noteOrder": 3868, + "time": 0.6008163265306121, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.6045481049562683, + "noteOrder": 3892, + "time": 0.6045481049562681, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3915, - "time": 0.6082798833819242, + "noteOrder": 3917, + "time": 0.6082798833819241, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3963, - "time": 0.6157434402332362, + "noteOrder": 3965, + "time": 0.6157434402332361, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3987, - "time": 0.6194752186588922, + "noteOrder": 3989, + "time": 0.6194752186588921, "position": { "x": 6, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4011, + "noteOrder": 4013, "time": 0.6232069970845481, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4035, + "noteOrder": 4037, "time": 0.626938775510204, "position": { "x": 8, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4059, - "time": 0.6306705539358601, + "noteOrder": 4061, + "time": 0.63067055393586, "position": { "x": 7, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.6344023323615161, + "noteOrder": 4085, + "time": 0.6344023323615159, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4107, - "time": 0.638134110787172, + "noteOrder": 4109, + "time": 0.6381341107871719, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.645597667638484, + "noteOrder": 4157, + "time": 0.6455976676384839, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4179, - "time": 0.64932944606414, + "noteOrder": 4181, + "time": 0.6493294460641399, "position": { "x": 4, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.6530612244897959, "position": { "x": 5, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4227, - "time": 0.656793002915452, + "noteOrder": 4229, + "time": 0.6567930029154518, "position": { "x": 5, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.6605247813411079, + "noteOrder": 4253, + "time": 0.6605247813411078, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.6642565597667639, + "noteOrder": 4277, + "time": 0.6642565597667638, "position": { "x": 4, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4301, "time": 0.6679883381924198, "position": { "x": 3, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.6717201166180758, "position": { "x": 5, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4335, + "noteOrder": 4337, "time": 0.6735860058309038, "position": { "x": 2, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.6754518950437318, "position": { "x": 5, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.6791836734693877, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4383, - "time": 0.6810495626822157, + "noteOrder": 4385, + "time": 0.6810495626822156, "position": { "x": 3, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4395, - "time": 0.6829154518950438, + "noteOrder": 4397, + "time": 0.6829154518950437, "position": { "x": 5, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.6866472303206997, + "noteOrder": 4421, + "time": 0.6866472303206996, "position": { "x": 6, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4433, "time": 0.6885131195335277, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4443, - "time": 0.6903790087463557, + "noteOrder": 4445, + "time": 0.6903790087463556, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6941107871720116, "position": { "x": 6, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4479, - "time": 0.6959766763848397, + "noteOrder": 4481, + "time": 0.6959766763848396, "position": { "x": 4, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4491, - "time": 0.6978425655976677, + "noteOrder": 4493, + "time": 0.6978425655976676, "position": { "x": 6, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.7165014577259475, + "noteOrder": 4613, + "time": 0.7165014577259474, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.7202332361516035, + "noteOrder": 4637, + "time": 0.7202332361516034, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.7239650145772596, + "noteOrder": 4661, + "time": 0.7239650145772594, "position": { "x": 3, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4683, - "time": 0.7276967930029155, + "noteOrder": 4685, + "time": 0.7276967930029153, "position": { "x": 6, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4731, - "time": 0.7351603498542275, + "noteOrder": 4733, + "time": 0.7351603498542274, "position": { "x": 6, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.7388921282798834, "position": { "x": 5, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4782, "time": 0.7426239067055393, "position": { "x": 6, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4806, "time": 0.7463556851311953, "position": { "x": 5, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4827, - "time": 0.7500874635568514, + "noteOrder": 4830, + "time": 0.7500874635568513, "position": { "x": 6, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.7538192419825073, + "noteOrder": 4854, + "time": 0.7538192419825072, "position": { "x": 5, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.7575510204081632, + "noteOrder": 4878, + "time": 0.7575510204081631, "position": { "x": 6, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4899, - "time": 0.7612827988338193, + "noteOrder": 4902, + "time": 0.7612827988338191, "position": { "x": 5, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4923, - "time": 0.7650145772594753, + "noteOrder": 4926, + "time": 0.7650145772594752, "position": { "x": 4, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4948, + "noteOrder": 4950, "time": 0.7687463556851312, "position": { "x": 8, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 4974, "time": 0.7724781341107871, "position": { "x": 5, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4996, - "time": 0.7762099125364432, + "noteOrder": 4998, + "time": 0.7762099125364431, "position": { "x": 2, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5020, - "time": 0.7799416909620992, + "noteOrder": 5022, + "time": 0.7799416909620991, "position": { "x": 5, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.7836734693877551, "position": { "x": 8, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5092, - "time": 0.7911370262390671, + "noteOrder": 5094, + "time": 0.7911370262390669, "position": { "x": 4, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 5334, "time": 0.8284548104956269, "position": { "x": 4, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5380, - "time": 0.8359183673469388, + "noteOrder": 5382, + "time": 0.8359183673469387, "position": { "x": 2, "y": 0 @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5788, + "noteOrder": 5791, "time": 0.8993586005830904, "position": { "x": 5, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5812, + "noteOrder": 5815, "time": 0.9030903790087463, "position": { "x": 6, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5836, - "time": 0.9068221574344023, + "noteOrder": 5839, + "time": 0.9068221574344022, "position": { "x": 7, "y": 0 @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5980, + "noteOrder": 5983, "time": 0.9292128279883382, "position": { "x": 5, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6004, + "noteOrder": 6007, "time": 0.9329446064139941, "position": { "x": 4, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6028, - "time": 0.9366763848396502, + "noteOrder": 6031, + "time": 0.9366763848396501, "position": { "x": 3, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6052, - "time": 0.9404081632653062, + "noteOrder": 6055, + "time": 0.9404081632653061, "position": { "x": 2, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6196, - "time": 0.962798833819242, + "noteOrder": 6199, + "time": 0.9627988338192419, "position": { "x": 2, "y": 0 @@ -3416,10 +3416,10 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, - "time": 0.13434402332361517, + "time": 0.13434402332361514, "position": { "x": 8, "y": 0 @@ -3439,10 +3439,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 961, - "time": 0.14927113702623906, + "time": 0.14927113702623904, "position": { "x": 4, "y": 0 @@ -3462,10 +3462,10 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1057, - "time": 0.164198250728863, + "time": 0.16419825072886296, "position": { "x": 8, "y": 0 @@ -3485,10 +3485,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, - "time": 0.164198250728863, + "time": 0.16419825072886296, "position": { "x": 5, "y": 0 @@ -3508,10 +3508,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1153, - "time": 0.17912536443148688, + "time": 0.17912536443148686, "position": { "x": 2, "y": 0 @@ -3531,10 +3531,10 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1225, - "time": 0.19032069970845483, + "time": 0.19032069970845478, "position": { "x": 5, "y": 0 @@ -3554,10 +3554,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.25376093294460644, + "noteOrder": 1634, + "time": 0.2537609329446064, "position": { "x": 8, "y": 0 @@ -3576,11 +3576,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2612244897959184, + "noteOrder": 1658, + "time": 0.25749271137026236, "position": { "x": 8, "y": 0 @@ -3594,16 +3594,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 72, "indexInLine": 3, "isSliding": false, - "noteOrder": 1753, - "time": 0.2724198250728863, + "noteOrder": 1658, + "time": 0.25749271137026236, "position": { "x": 6, "y": 0 @@ -3617,18 +3617,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 72, "indexInLine": 4, "isSliding": false, - "noteOrder": 1777, - "time": 0.2761516034985423, + "noteOrder": 1682, + "time": 0.26122448979591834, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3640,18 +3640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1777, - "time": 0.2761516034985423, + "noteOrder": 1682, + "time": 0.26122448979591834, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3668,11 +3668,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.28361516034985423, + "noteOrder": 1682, + "time": 0.26122448979591834, "position": { "x": 8, "y": 0 @@ -3686,16 +3686,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1873, - "time": 0.2910787172011662, + "noteOrder": 1706, + "time": 0.2649562682215743, "position": { "x": 8, "y": 0 @@ -3709,18 +3709,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1921, - "time": 0.29854227405247813, + "noteOrder": 1706, + "time": 0.2649562682215743, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3737,13 +3737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1969, - "time": 0.3060058309037901, + "noteOrder": 1730, + "time": 0.2686880466472303, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3755,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1993, - "time": 0.3097376093294461, + "noteOrder": 1730, + "time": 0.2686880466472303, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3778,18 +3778,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 74, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2017, - "time": 0.313469387755102, + "noteOrder": 1754, + "time": 0.27241982507288626, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3801,18 +3801,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2017, - "time": 0.313469387755102, + "noteOrder": 1778, + "time": 0.27615160349854223, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3829,13 +3829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 2065, - "time": 0.320932944606414, + "noteOrder": 1778, + "time": 0.27615160349854223, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3847,18 +3847,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, - "time": 0.320932944606414, + "noteOrder": 1826, + "time": 0.2836151603498542, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3875,11 +3875,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, - "time": 0.328396501457726, + "noteOrder": 1874, + "time": 0.2910787172011661, "position": { "x": 8, "y": 0 @@ -3898,11 +3898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, - "time": 0.3358600583090379, + "noteOrder": 1898, + "time": 0.29481049562682216, "position": { "x": 8, "y": 0 @@ -3916,18 +3916,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2258, - "time": 0.3507871720116618, + "noteOrder": 1898, + "time": 0.29481049562682216, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3944,13 +3944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2306, - "time": 0.35825072886297377, + "noteOrder": 1922, + "time": 0.2985422740524781, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3967,13 +3967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2306, - "time": 0.35825072886297377, + "noteOrder": 1922, + "time": 0.2985422740524781, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3985,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.3657142857142857, + "noteOrder": 1922, + "time": 0.2985422740524781, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4008,18 +4008,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2474, - "time": 0.3843731778425656, + "noteOrder": 1946, + "time": 0.30227405247813405, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4031,18 +4031,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2498, - "time": 0.3881049562682216, + "noteOrder": 1946, + "time": 0.30227405247813405, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4054,18 +4054,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 2, + "lineGroupId": 80, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2594, - "time": 0.4030320699708455, + "noteOrder": 1970, + "time": 0.3060058309037901, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4077,18 +4077,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2642, - "time": 0.41049562682215746, + "noteOrder": 1970, + "time": 0.3060058309037901, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4105,13 +4105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 3, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2702, - "time": 0.41982507288629733, + "noteOrder": 1970, + "time": 0.3060058309037901, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4123,18 +4123,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 4, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2714, - "time": 0.4216909620991254, + "noteOrder": 1994, + "time": 0.30973760932944605, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4146,18 +4146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 5, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2726, - "time": 0.42355685131195336, + "noteOrder": 2018, + "time": 0.313469387755102, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4169,18 +4169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 6, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, - "time": 0.42542274052478135, + "noteOrder": 2018, + "time": 0.313469387755102, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4197,13 +4197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4328862973760933, + "noteOrder": 2066, + "time": 0.320932944606414, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4215,18 +4215,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.44781341107871725, + "noteOrder": 2066, + "time": 0.320932944606414, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4243,13 +4243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, - "time": 0.44781341107871725, + "noteOrder": 2114, + "time": 0.3283965014577259, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4261,18 +4261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2930, - "time": 0.4552769679300292, + "noteOrder": 2138, + "time": 0.3321282798833819, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4289,13 +4289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3026, - "time": 0.4702040816326531, + "noteOrder": 2138, + "time": 0.3321282798833819, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4307,18 +4307,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3074, - "time": 0.47766763848396504, + "noteOrder": 2162, + "time": 0.3358600583090379, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4330,18 +4330,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 2, + "lineGroupId": 83, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3122, - "time": 0.485131195335277, + "noteOrder": 2162, + "time": 0.3358600583090379, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4353,18 +4353,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3939, - "time": 0.6120116618075802, + "noteOrder": 2162, + "time": 0.3358600583090379, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4381,13 +4381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4035, - "time": 0.626938775510204, + "noteOrder": 2187, + "time": 0.33959183673469384, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4404,13 +4404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 2, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4131, - "time": 0.641865889212828, + "noteOrder": 2187, + "time": 0.33959183673469384, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4427,13 +4427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4131, - "time": 0.641865889212828, + "noteOrder": 2211, + "time": 0.3433236151603498, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4445,18 +4445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4227, - "time": 0.656793002915452, + "noteOrder": 2211, + "time": 0.3433236151603498, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4468,18 +4468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 2, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4299, - "time": 0.6679883381924198, + "noteOrder": 2259, + "time": 0.35078717201166176, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4496,13 +4496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.7314285714285714, + "noteOrder": 2307, + "time": 0.3582507288629737, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4514,18 +4514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 4731, - "time": 0.7351603498542275, + "noteOrder": 2307, + "time": 0.3582507288629737, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4542,11 +4542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 89, "indexInLine": 2, "isSliding": false, - "noteOrder": 4755, - "time": 0.7388921282798834, + "noteOrder": 2331, + "time": 0.3619825072886297, "position": { "x": 2, "y": 0 @@ -4565,11 +4565,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 89, "indexInLine": 3, "isSliding": false, - "noteOrder": 4779, - "time": 0.7426239067055393, + "noteOrder": 2331, + "time": 0.3619825072886297, "position": { "x": 4, "y": 0 @@ -4588,13 +4588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 89, "indexInLine": 4, "isSliding": false, - "noteOrder": 4803, - "time": 0.7463556851311953, + "noteOrder": 2355, + "time": 0.36571428571428566, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4611,13 +4611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 89, "indexInLine": 5, "isSliding": false, - "noteOrder": 4827, - "time": 0.7500874635568514, + "noteOrder": 2355, + "time": 0.36571428571428566, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4634,11 +4634,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 6, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4851, - "time": 0.7538192419825073, + "noteOrder": 2355, + "time": 0.36571428571428566, "position": { "x": 2, "y": 0 @@ -4652,18 +4652,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 7, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.7575510204081632, + "noteOrder": 2379, + "time": 0.3694460641399417, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4675,18 +4675,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 8, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.7612827988338193, + "noteOrder": 2379, + "time": 0.3694460641399417, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4698,18 +4698,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5092, - "time": 0.7911370262390671, + "noteOrder": 2403, + "time": 0.37317784256559766, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4726,13 +4726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5140, - "time": 0.798600583090379, + "noteOrder": 2403, + "time": 0.37317784256559766, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4744,18 +4744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5188, - "time": 0.806064139941691, + "noteOrder": 2475, + "time": 0.3843731778425656, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4772,13 +4772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5236, - "time": 0.8135276967930029, + "noteOrder": 2499, + "time": 0.38810495626822156, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4790,16 +4790,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5284, - "time": 0.8209912536443149, + "noteOrder": 2595, + "time": 0.40303206997084545, "position": { "x": 8, "y": 0 @@ -4818,11 +4818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5308, - "time": 0.8247230320699709, + "noteOrder": 2619, + "time": 0.4067638483965014, "position": { "x": 8, "y": 0 @@ -4841,13 +4841,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 2, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5380, - "time": 0.8359183673469388, + "noteOrder": 2619, + "time": 0.4067638483965014, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4864,13 +4864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5668, - "time": 0.8806997084548106, + "noteOrder": 2643, + "time": 0.4104956268221574, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4882,18 +4882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5692, - "time": 0.8844314868804666, + "noteOrder": 2643, + "time": 0.4104956268221574, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4910,13 +4910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5716, - "time": 0.8881632653061224, + "noteOrder": 2643, + "time": 0.4104956268221574, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4933,13 +4933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5740, - "time": 0.8918950437317784, + "noteOrder": 2667, + "time": 0.41422740524781343, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4951,18 +4951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5764, - "time": 0.8956268221574345, + "noteOrder": 2667, + "time": 0.41422740524781343, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4979,13 +4979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5788, - "time": 0.8993586005830904, + "noteOrder": 2691, + "time": 0.41795918367346935, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5002,13 +5002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 2, + "lineGroupId": 98, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5860, - "time": 0.9105539358600584, + "noteOrder": 2691, + "time": 0.41795918367346935, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5025,13 +5025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5860, - "time": 0.9105539358600584, + "noteOrder": 2703, + "time": 0.41982507288629733, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5043,18 +5043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5884, - "time": 0.9142857142857143, + "noteOrder": 2715, + "time": 0.4216909620991253, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5071,13 +5071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5908, - "time": 0.9180174927113702, + "noteOrder": 2727, + "time": 0.4235568513119533, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5089,18 +5089,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5932, - "time": 0.9217492711370263, + "noteOrder": 2739, + "time": 0.4254227405247813, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5117,11 +5117,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5956, - "time": 0.9254810495626823, + "noteOrder": 2787, + "time": 0.4328862973760933, "position": { "x": 8, "y": 0 @@ -5140,13 +5140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5980, - "time": 0.9292128279883382, + "noteOrder": 2883, + "time": 0.4478134110787172, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5163,13 +5163,36 @@ "isPlayAudio": false }, { - "lineGroupId": 227, + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4478134110787172, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, "indexInLine": 2, "isSliding": false, - "noteOrder": 6052, - "time": 0.9404081632653062, + "noteOrder": 2907, + "time": 0.45154518950437317, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5181,18 +5204,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6076, - "time": 0.944139941690962, + "noteOrder": 2907, + "time": 0.45154518950437317, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5204,18 +5227,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6100, - "time": 0.9478717201166181, + "noteOrder": 2931, + "time": 0.4552769679300291, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5232,11 +5255,11 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6124, - "time": 0.9516034985422741, + "noteOrder": 2931, + "time": 0.4552769679300291, "position": { "x": 6, "y": 0 @@ -5250,16 +5273,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6148, - "time": 0.9553352769679301, + "noteOrder": 2931, + "time": 0.4552769679300291, "position": { "x": 2, "y": 0 @@ -5273,18 +5296,2065 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6172, - "time": 0.9590670553935859, + "noteOrder": 2955, + "time": 0.45900874635568506, "position": { - "x": 6, + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2955, + "time": 0.45900874635568506, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4627405247813411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4627405247813411, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.47020408163265304, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3076, + "time": 0.477667638483965, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3124, + "time": 0.48513119533527693, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3941, + "time": 0.6120116618075802, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4037, + "time": 0.626938775510204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4133, + "time": 0.641865889212828, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4133, + "time": 0.641865889212828, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4229, + "time": 0.6567930029154518, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4301, + "time": 0.6679883381924198, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4709, + "time": 0.7314285714285713, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4733, + "time": 0.7351603498542274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4757, + "time": 0.7388921282798834, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4782, + "time": 0.7426239067055393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4806, + "time": 0.7463556851311953, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4830, + "time": 0.7500874635568513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4854, + "time": 0.7538192419825072, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4878, + "time": 0.7575510204081631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4902, + "time": 0.7612827988338191, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5094, + "time": 0.7911370262390669, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7948688046647229, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7948688046647229, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5142, + "time": 0.798600583090379, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5142, + "time": 0.798600583090379, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5142, + "time": 0.798600583090379, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5166, + "time": 0.8023323615160349, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5166, + "time": 0.8023323615160349, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5190, + "time": 0.8060641399416909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5190, + "time": 0.8060641399416909, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5190, + "time": 0.8060641399416909, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5214, + "time": 0.8097959183673469, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5214, + "time": 0.8097959183673469, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5238, + "time": 0.8135276967930029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5238, + "time": 0.8135276967930029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5238, + "time": 0.8135276967930029, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5262, + "time": 0.8172594752186588, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5262, + "time": 0.8172594752186588, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5286, + "time": 0.8209912536443148, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5286, + "time": 0.8209912536443148, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5286, + "time": 0.8209912536443148, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5310, + "time": 0.8247230320699708, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5382, + "time": 0.8359183673469387, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5671, + "time": 0.8806997084548104, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5683, + "time": 0.8825655976676384, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5683, + "time": 0.8825655976676384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5695, + "time": 0.8844314868804664, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5707, + "time": 0.8862973760932944, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5707, + "time": 0.8862973760932944, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5719, + "time": 0.8881632653061223, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5731, + "time": 0.8900291545189504, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5731, + "time": 0.8900291545189504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5743, + "time": 0.8918950437317784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5755, + "time": 0.8937609329446063, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5755, + "time": 0.8937609329446063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5767, + "time": 0.8956268221574344, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5791, + "time": 0.8993586005830904, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5863, + "time": 0.9105539358600582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5863, + "time": 0.9105539358600582, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5875, + "time": 0.9124198250728862, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5875, + "time": 0.9124198250728862, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5887, + "time": 0.9142857142857141, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5899, + "time": 0.9161516034985422, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5899, + "time": 0.9161516034985422, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5911, + "time": 0.9180174927113701, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5923, + "time": 0.9198833819241982, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5923, + "time": 0.9198833819241982, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5935, + "time": 0.9217492711370262, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5947, + "time": 0.9236151603498541, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5947, + "time": 0.9236151603498541, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5959, + "time": 0.9254810495626822, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5983, + "time": 0.9292128279883382, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6055, + "time": 0.9404081632653061, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6079, + "time": 0.9441399416909619, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6091, + "time": 0.9460058309037901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6091, + "time": 0.9460058309037901, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6103, + "time": 0.9478717201166179, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6115, + "time": 0.949737609329446, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6115, + "time": 0.949737609329446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6127, + "time": 0.9516034985422739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6139, + "time": 0.9534693877551019, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6139, + "time": 0.9534693877551019, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6151, + "time": 0.95533527696793, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6163, + "time": 0.9572011661807579, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6163, + "time": 0.9572011661807579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6175, + "time": 0.9590670553935859, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6187, + "time": 0.9609329446064139, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6187, + "time": 0.9609329446064139, + "position": { + "x": 5, "y": 0 }, "position2D": { diff --git a/tracks/HoneyComb/254_difficulty_1b.json b/tracks/HoneyComb/254_difficulty_1b.json index 8f7e6555..a7921478 100644 --- a/tracks/HoneyComb/254_difficulty_1b.json +++ b/tracks/HoneyComb/254_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.014927113702623908, + "time": 0.014927113702623906, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.02239067055393586, + "time": 0.022390670553935857, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 192, - "time": 0.029854227405247815, + "time": 0.02985422740524781, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 240, - "time": 0.037317784256559766, + "time": 0.03731778425655976, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 288, - "time": 0.04478134110787172, + "time": 0.044781341107871714, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 336, - "time": 0.052244897959183675, + "time": 0.05224489795918367, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 384, - "time": 0.05970845481049563, + "time": 0.05970845481049562, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 432, - "time": 0.06717201166180758, + "time": 0.06717201166180757, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.07463556851311953, + "noteOrder": 481, + "time": 0.07463556851311952, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.0820991253644315, + "noteOrder": 529, + "time": 0.08209912536443148, "position": { "x": 7, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.08956268221574344, + "noteOrder": 577, + "time": 0.08956268221574343, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.0970262390670554, + "noteOrder": 625, + "time": 0.09702623906705539, "position": { "x": 3, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10448979591836735, + "noteOrder": 673, + "time": 0.10448979591836734, "position": { "x": 2, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 721, - "time": 0.11195335276967931, + "time": 0.1119533527696793, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 769, - "time": 0.11941690962099126, + "time": 0.11941690962099125, "position": { "x": 8, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 817, - "time": 0.12688046647230322, + "time": 0.1268804664723032, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 865, - "time": 0.13434402332361517, + "time": 0.13434402332361514, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 889, - "time": 0.13807580174927114, + "time": 0.13807580174927112, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 913, - "time": 0.14180758017492712, + "time": 0.1418075801749271, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 937, - "time": 0.1455393586005831, + "time": 0.14553935860058306, "position": { "x": 2, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 961, - "time": 0.14927113702623906, + "time": 0.14927113702623904, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1057, - "time": 0.164198250728863, + "time": 0.16419825072886296, "position": { "x": 8, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1105, - "time": 0.17166180758017494, + "time": 0.1716618075801749, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1129, - "time": 0.1753935860058309, + "time": 0.17539358600583088, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1153, - "time": 0.17912536443148688, + "time": 0.17912536443148686, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1177, - "time": 0.18285714285714286, + "time": 0.18285714285714283, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1249, - "time": 0.1940524781341108, + "time": 0.19405247813411078, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1273, - "time": 0.19778425655976678, + "time": 0.19778425655976672, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1297, - "time": 0.20151603498542275, + "time": 0.20151603498542273, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1321, - "time": 0.20524781341107873, + "noteOrder": 1322, + "time": 0.2052478134110787, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1345, - "time": 0.2089795918367347, + "noteOrder": 1346, + "time": 0.20897959183673467, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.21271137026239068, + "noteOrder": 1370, + "time": 0.21271137026239065, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.21644314868804665, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.22017492711370265, + "noteOrder": 1418, + "time": 0.2201749271137026, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1441, - "time": 0.22390670553935862, + "noteOrder": 1442, + "time": 0.2239067055393586, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1465, - "time": 0.2276384839650146, + "noteOrder": 1466, + "time": 0.22763848396501454, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1489, - "time": 0.23137026239067057, + "noteOrder": 1490, + "time": 0.23137026239067054, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1513, - "time": 0.23510204081632655, + "noteOrder": 1514, + "time": 0.23510204081632652, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.23883381924198252, + "noteOrder": 1538, + "time": 0.2388338192419825, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.2425655976676385, + "noteOrder": 1562, + "time": 0.24256559766763847, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1585, + "noteOrder": 1586, "time": 0.24629737609329447, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.26868804664723034, + "noteOrder": 1730, + "time": 0.2686880466472303, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.2761516034985423, + "noteOrder": 1778, + "time": 0.27615160349854223, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.29854227405247813, + "noteOrder": 1922, + "time": 0.2985422740524781, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3060058309037901, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.320932944606414, "position": { "x": 4, @@ -1034,7 +1034,7 @@ }, { "noteOrder": 2114, - "time": 0.328396501457726, + "time": 0.3283965014577259, "position": { "x": 2, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.3507871720116618, + "noteOrder": 2259, + "time": 0.35078717201166176, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.35825072886297377, + "noteOrder": 2307, + "time": 0.3582507288629737, "position": { "x": 8, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.3657142857142857, + "noteOrder": 2355, + "time": 0.36571428571428566, "position": { "x": 8, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.37317784256559766, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.38064139941690966, + "noteOrder": 2451, + "time": 0.38064139941690955, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2594, - "time": 0.4030320699708455, + "noteOrder": 2595, + "time": 0.40303206997084545, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2642, - "time": 0.41049562682215746, + "noteOrder": 2643, + "time": 0.4104956268221574, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2834, - "time": 0.4403498542274053, + "noteOrder": 2835, + "time": 0.4403498542274052, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2882, - "time": 0.44781341107871725, + "noteOrder": 2883, + "time": 0.4478134110787172, "position": { "x": 8, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.4552769679300292, + "noteOrder": 2931, + "time": 0.4552769679300291, "position": { "x": 4, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3170, + "noteOrder": 3172, "time": 0.49259475218658894, "position": { "x": 8, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3218, - "time": 0.5000583090379009, + "noteOrder": 3220, + "time": 0.5000583090379008, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.5075218658892129, + "noteOrder": 3268, + "time": 0.5075218658892128, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.5149854227405248, + "noteOrder": 3316, + "time": 0.5149854227405247, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5224489795918368, + "noteOrder": 3364, + "time": 0.5224489795918367, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3410, - "time": 0.5299125364431487, + "noteOrder": 3412, + "time": 0.5299125364431486, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.5373760932944607, + "noteOrder": 3460, + "time": 0.5373760932944606, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5448396501457726, + "noteOrder": 3508, + "time": 0.5448396501457725, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3555, - "time": 0.5523032069970846, + "noteOrder": 3556, + "time": 0.5523032069970845, "position": { "x": 8, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3603, - "time": 0.5597667638483965, + "noteOrder": 3604, + "time": 0.5597667638483964, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3651, - "time": 0.5672303206997085, + "noteOrder": 3652, + "time": 0.5672303206997084, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 3700, "time": 0.5746938775510204, "position": { "x": 3, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.5821574344023324, + "noteOrder": 3748, + "time": 0.5821574344023323, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3796, "time": 0.5896209912536443, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.5970845481049563, + "noteOrder": 3844, + "time": 0.5970845481049561, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.6045481049562683, + "noteOrder": 3892, + "time": 0.6045481049562681, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3939, + "noteOrder": 3941, "time": 0.6120116618075802, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3963, - "time": 0.6157434402332362, + "noteOrder": 3965, + "time": 0.6157434402332361, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3987, - "time": 0.6194752186588922, + "noteOrder": 3989, + "time": 0.6194752186588921, "position": { "x": 8, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4011, + "noteOrder": 4013, "time": 0.6232069970845481, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4035, + "noteOrder": 4037, "time": 0.626938775510204, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4059, - "time": 0.6306705539358601, + "noteOrder": 4061, + "time": 0.63067055393586, "position": { "x": 3, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.6344023323615161, + "noteOrder": 4085, + "time": 0.6344023323615159, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4107, - "time": 0.638134110787172, + "noteOrder": 4109, + "time": 0.6381341107871719, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4131, + "noteOrder": 4133, "time": 0.641865889212828, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.645597667638484, + "noteOrder": 4157, + "time": 0.6455976676384839, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4179, - "time": 0.64932944606414, + "noteOrder": 4181, + "time": 0.6493294460641399, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.6530612244897959, "position": { "x": 2, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4227, - "time": 0.656793002915452, + "noteOrder": 4229, + "time": 0.6567930029154518, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.6605247813411079, + "noteOrder": 4253, + "time": 0.6605247813411078, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.6642565597667639, + "noteOrder": 4277, + "time": 0.6642565597667638, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.6717201166180758, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.6754518950437318, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.6791836734693877, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4395, - "time": 0.6829154518950438, + "noteOrder": 4397, + "time": 0.6829154518950437, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.6866472303206997, + "noteOrder": 4421, + "time": 0.6866472303206996, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4443, - "time": 0.6903790087463557, + "noteOrder": 4445, + "time": 0.6903790087463556, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6941107871720116, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4491, - "time": 0.6978425655976677, + "noteOrder": 4493, + "time": 0.6978425655976676, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4515, - "time": 0.7015743440233236, + "noteOrder": 4517, + "time": 0.7015743440233235, "position": { "x": 4, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.7053061224489796, "position": { "x": 7, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.7090379008746357, + "noteOrder": 4565, + "time": 0.7090379008746356, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.7127696793002916, "position": { "x": 6, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.7165014577259475, + "noteOrder": 4613, + "time": 0.7165014577259474, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4948, + "noteOrder": 4950, "time": 0.7687463556851312, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.7836734693877551, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5140, + "noteOrder": 5142, "time": 0.798600583090379, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.8135276967930029, "position": { "x": 6, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5476, - "time": 0.8508454810495627, + "noteOrder": 5478, + "time": 0.8508454810495626, "position": { "x": 7, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5524, + "noteOrder": 5526, "time": 0.8583090379008746, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5572, + "noteOrder": 5574, "time": 0.8657725947521866, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5620, - "time": 0.8732361516034985, + "noteOrder": 5622, + "time": 0.8732361516034984, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6100, - "time": 0.9478717201166181, + "noteOrder": 6103, + "time": 0.9478717201166179, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6196, - "time": 0.962798833819242, + "noteOrder": 6199, + "time": 0.9627988338192419, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6220, - "time": 0.966530612244898, + "noteOrder": 6223, + "time": 0.9665306122448979, "position": { "x": 7, "y": 0 @@ -2376,10 +2376,1252 @@ "lineNodes": [ { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.2537609329446064, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1658, + "time": 0.25749271137026236, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1658, + "time": 0.25749271137026236, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.26122448979591834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1706, + "time": 0.2649562682215743, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1706, + "time": 0.2649562682215743, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.2836151603498542, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2873469387755102, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2873469387755102, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.2910787172011661, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1898, + "time": 0.29481049562682216, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1898, + "time": 0.29481049562682216, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.313469387755102, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3283965014577259, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3433236151603498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2307, + "time": 0.3582507288629737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.38810495626822156, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.39183673469387753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2523, + "time": 0.39183673469387753, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2547, + "time": 0.39556851311953345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2571, + "time": 0.3993002915451895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2571, + "time": 0.3993002915451895, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.41795918367346935, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2715, + "time": 0.4216909620991253, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2715, + "time": 0.4216909620991253, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2739, + "time": 0.4254227405247813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2763, + "time": 0.4291545189504373, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2763, + "time": 0.4291545189504373, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4328862973760933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4478134110787172, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4627405247813411, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3003, + "time": 0.46647230320699706, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3003, + "time": 0.46647230320699706, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.47020408163265304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3052, + "time": 0.47393586005830896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3052, + "time": 0.47393586005830896, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.477667638483965, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3100, + "time": 0.48139941690962096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3100, + "time": 0.48139941690962096, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3124, + "time": 0.48513119533527693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3148, + "time": 0.4888629737609329, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3148, + "time": 0.4888629737609329, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4709, + "time": 0.7314285714285713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4733, + "time": 0.7351603498542274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4733, + "time": 0.7351603498542274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4757, + "time": 0.7388921282798834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4782, + "time": 0.7426239067055393, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4782, + "time": 0.7426239067055393, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4806, + "time": 0.7463556851311953, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4830, + "time": 0.7500874635568513, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4830, + "time": 0.7500874635568513, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4854, + "time": 0.7538192419825072, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4878, + "time": 0.7575510204081631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4878, + "time": 0.7575510204081631, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.25376093294460644, + "noteOrder": 4902, + "time": 0.7612827988338191, "position": { "x": 7, "y": 0 @@ -2398,13 +3640,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2612244897959184, + "noteOrder": 4998, + "time": 0.7762099125364431, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2416,18 +3658,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.28361516034985423, + "noteOrder": 4998, + "time": 0.7762099125364431, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2439,18 +3681,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1873, - "time": 0.2910787172011662, + "noteOrder": 5094, + "time": 0.7911370262390669, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2467,11 +3709,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.313469387755102, + "noteOrder": 5094, + "time": 0.7911370262390669, "position": { "x": 7, "y": 0 @@ -2490,11 +3732,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, - "time": 0.328396501457726, + "noteOrder": 5190, + "time": 0.8060641399416909, "position": { "x": 4, "y": 0 @@ -2513,11 +3755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.34332361516034987, + "noteOrder": 5190, + "time": 0.8060641399416909, "position": { "x": 3, "y": 0 @@ -2536,11 +3778,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2306, - "time": 0.35825072886297377, + "noteOrder": 5286, + "time": 0.8209912536443148, "position": { "x": 6, "y": 0 @@ -2559,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, - "time": 0.3881049562682216, + "noteOrder": 5286, + "time": 0.8209912536443148, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2577,18 +3819,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, - "time": 0.39556851311953356, + "noteOrder": 5310, + "time": 0.8247230320699708, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2605,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2690, - "time": 0.4179591836734694, + "noteOrder": 5310, + "time": 0.8247230320699708, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2623,18 +3865,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, - "time": 0.42542274052478135, + "noteOrder": 5334, + "time": 0.8284548104956269, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2646,18 +3888,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4328862973760933, + "noteOrder": 5358, + "time": 0.8321865889212827, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2674,13 +3916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2882, - "time": 0.44781341107871725, + "noteOrder": 5358, + "time": 0.8321865889212827, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2697,11 +3939,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2978, - "time": 0.46274052478134114, + "noteOrder": 5382, + "time": 0.8359183673469387, "position": { "x": 7, "y": 0 @@ -2720,11 +3962,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3026, - "time": 0.4702040816326531, + "noteOrder": 5406, + "time": 0.8396501457725947, "position": { "x": 7, "y": 0 @@ -2738,18 +3980,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3074, - "time": 0.47766763848396504, + "noteOrder": 5406, + "time": 0.8396501457725947, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2766,11 +4008,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, - "time": 0.485131195335277, + "noteOrder": 5430, + "time": 0.8433819241982506, "position": { "x": 7, "y": 0 @@ -2789,11 +4031,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.7314285714285714, + "noteOrder": 5454, + "time": 0.8471137026239066, "position": { "x": 7, "y": 0 @@ -2807,18 +4049,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4755, - "time": 0.7388921282798834, + "noteOrder": 5454, + "time": 0.8471137026239066, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2835,13 +4077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.7463556851311953, + "noteOrder": 5671, + "time": 0.8806997084548104, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2853,18 +4095,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4851, - "time": 0.7538192419825073, + "noteOrder": 5695, + "time": 0.8844314868804664, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2881,13 +4123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.7612827988338193, + "noteOrder": 5695, + "time": 0.8844314868804664, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2899,18 +4141,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 4996, - "time": 0.7762099125364432, + "noteOrder": 5719, + "time": 0.8881632653061223, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2927,11 +4169,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4996, - "time": 0.7762099125364432, + "noteOrder": 5743, + "time": 0.8918950437317784, "position": { "x": 3, "y": 0 @@ -2945,18 +4187,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5092, - "time": 0.7911370262390671, + "noteOrder": 5743, + "time": 0.8918950437317784, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2968,18 +4210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5092, - "time": 0.7911370262390671, + "noteOrder": 5767, + "time": 0.8956268221574344, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2991,18 +4233,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5188, - "time": 0.806064139941691, + "noteOrder": 5791, + "time": 0.8993586005830904, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3014,18 +4256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5188, - "time": 0.806064139941691, + "noteOrder": 5791, + "time": 0.8993586005830904, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3042,13 +4284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 5284, - "time": 0.8209912536443149, + "noteOrder": 5815, + "time": 0.9030903790087463, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3060,18 +4302,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5284, - "time": 0.8209912536443149, + "noteOrder": 5839, + "time": 0.9068221574344022, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3088,13 +4330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5332, - "time": 0.8284548104956269, + "noteOrder": 5839, + "time": 0.9068221574344022, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3106,18 +4348,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5380, - "time": 0.8359183673469388, + "noteOrder": 5863, + "time": 0.9105539358600582, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3129,18 +4371,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5428, - "time": 0.8433819241982508, + "noteOrder": 5887, + "time": 0.9142857142857141, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3157,13 +4399,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5668, - "time": 0.8806997084548106, + "noteOrder": 5887, + "time": 0.9142857142857141, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3180,11 +4422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5716, - "time": 0.8881632653061224, + "noteOrder": 5911, + "time": 0.9180174927113701, "position": { "x": 3, "y": 0 @@ -3203,11 +4445,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5764, - "time": 0.8956268221574345, + "noteOrder": 5935, + "time": 0.9217492711370262, "position": { "x": 3, "y": 0 @@ -3221,18 +4463,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5812, - "time": 0.9030903790087463, + "noteOrder": 5935, + "time": 0.9217492711370262, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3249,11 +4491,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5860, - "time": 0.9105539358600584, + "noteOrder": 5959, + "time": 0.9254810495626822, "position": { "x": 3, "y": 0 @@ -3272,11 +4514,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5908, - "time": 0.9180174927113702, + "noteOrder": 5983, + "time": 0.9292128279883382, "position": { "x": 3, "y": 0 @@ -3290,18 +4532,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5956, - "time": 0.9254810495626823, + "noteOrder": 5983, + "time": 0.9292128279883382, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3319,9 +4561,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6004, + "noteOrder": 6007, "time": 0.9329446064139941, "position": { "x": 3, @@ -3340,12 +4582,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6031, + "time": 0.9366763848396501, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6031, + "time": 0.9366763848396501, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6052, - "time": 0.9404081632653062, + "noteOrder": 6055, + "time": 0.9404081632653061, "position": { "x": 3, "y": 0 @@ -3365,10 +4653,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6148, - "time": 0.9553352769679301, + "noteOrder": 6151, + "time": 0.95533527696793, "position": { "x": 6, "y": 0 @@ -3388,10 +4676,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6148, - "time": 0.9553352769679301, + "noteOrder": 6151, + "time": 0.95533527696793, "position": { "x": 7, "y": 0 @@ -3411,10 +4699,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6196, - "time": 0.962798833819242, + "noteOrder": 6199, + "time": 0.9627988338192419, "position": { "x": 6, "y": 0 diff --git a/tracks/HoneyComb/info.json b/tracks/HoneyComb/info.json index d2ee0f48..93b2295e 100644 --- a/tracks/HoneyComb/info.json +++ b/tracks/HoneyComb/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "HoneyComb", - "SongLength": "117.263673", + "SongLength": "107.311020", "SongAuthorName": "Hylen", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/I Like To BOUNCE/266_difficulty_1a.json b/tracks/I Like To BOUNCE/266_difficulty_1a.json index d23651fb..e6bb1a1b 100644 --- a/tracks/I Like To BOUNCE/266_difficulty_1a.json +++ b/tracks/I Like To BOUNCE/266_difficulty_1a.json @@ -134,7 +134,7 @@ }, { "noteOrder": 216, - "time": 0.0332409972299169, + "time": 0.03324099722991689, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 264, - "time": 0.040627885503231764, + "time": 0.04062788550323176, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 264, - "time": 0.040627885503231764, + "time": 0.04062788550323176, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.04801477377654663, + "noteOrder": 313, + "time": 0.04801477377654662, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.055401662049861494, "position": { "x": 5, @@ -254,7 +254,7 @@ }, { "noteOrder": 433, - "time": 0.0664819944598338, + "time": 0.06648199445983378, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 529, - "time": 0.08125577100646353, + "time": 0.08125577100646351, "position": { "x": 8, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 553, - "time": 0.08494921514312095, + "time": 0.08494921514312097, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 625, - "time": 0.09602954755309326, + "time": 0.09602954755309324, "position": { "x": 2, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 649, - "time": 0.09972299168975068, + "time": 0.0997229916897507, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 697, - "time": 0.10710987996306556, + "time": 0.10710987996306555, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 793, - "time": 0.12188365650969529, + "time": 0.12188365650969528, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 793, - "time": 0.12188365650969529, + "time": 0.12188365650969528, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.14035087719298245, "position": { "x": 8, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 925, + "noteOrder": 926, "time": 0.14219759926131118, "position": { "x": 5, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.15512465373961218, "position": { "x": 2, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1021, + "noteOrder": 1022, "time": 0.1569713758079409, "position": { "x": 5, @@ -654,7 +654,7 @@ }, { "noteOrder": 1226, - "time": 0.1883656509695291, + "time": 0.18836565096952906, "position": { "x": 3, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1298, - "time": 0.19944598337950137, + "time": 0.1994459833795014, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1298, - "time": 0.19944598337950137, + "time": 0.1994459833795014, "position": { "x": 6, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1418, - "time": 0.21791320406278855, + "time": 0.21791320406278852, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.22160664819944598, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1454, - "time": 0.2234533702677747, + "noteOrder": 1455, + "time": 0.22345337026777468, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23268698060941828, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.247460757156048, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.247460757156048, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.26962142197599265, + "noteOrder": 1755, + "time": 0.2696214219759926, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1778, - "time": 0.27331486611265005, + "noteOrder": 1779, + "time": 0.27331486611265, "position": { "x": 8, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2807017543859649, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3139427516158818, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3139427516158818, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.3250230840258541, + "noteOrder": 2116, + "time": 0.32502308402585406, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2127, + "noteOrder": 2128, "time": 0.3268698060941828, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.3361034164358264, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.34349030470914127, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.3508771929824562, + "noteOrder": 2284, + "time": 0.3508771929824561, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.3656509695290859, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.3730378578024008, + "noteOrder": 2428, + "time": 0.37303785780240073, "position": { "x": 8, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3767313019390582, + "noteOrder": 2452, + "time": 0.3767313019390581, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2499, - "time": 0.38411819021237303, + "noteOrder": 2500, + "time": 0.384118190212373, "position": { "x": 8, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.3878116343490305, + "noteOrder": 2524, + "time": 0.38781163434903043, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.3915050784856879, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.3933518005540166, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.40258541089566025, + "noteOrder": 2621, + "time": 0.4025854108956602, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.40627885503231764, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.42105263157894735, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.4247460757156048, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4321329639889197, + "noteOrder": 2813, + "time": 0.43213296398891965, "position": { "x": 2, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4358264081255771, + "noteOrder": 2837, + "time": 0.43582640812557705, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.44321329639889195, "position": { "x": 2, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.4469067405355494, + "noteOrder": 2909, + "time": 0.44690674053554935, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.4506001846722068, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2944, - "time": 0.45244690674053556, + "noteOrder": 2945, + "time": 0.4524469067405355, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.46168051708217916, + "noteOrder": 3005, + "time": 0.4616805170821791, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.46537396121883656, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.48014773776546626, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.4838411819021238, + "noteOrder": 3149, + "time": 0.4838411819021237, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3222, "time": 0.494921514312096, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3232, - "time": 0.4967682363804248, + "noteOrder": 3234, + "time": 0.4967682363804247, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3268, + "noteOrder": 3270, "time": 0.5023084025854109, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3280, + "noteOrder": 3282, "time": 0.5041551246537396, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.5096952908587258, + "noteOrder": 3318, + "time": 0.5096952908587257, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3390, "time": 0.5207756232686981, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3402, "time": 0.5226223453370268, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3437, - "time": 0.528162511542013, + "noteOrder": 3438, + "time": 0.5281625115420129, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3449, - "time": 0.5300092336103417, + "noteOrder": 3450, + "time": 0.5300092336103416, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.5392428439519853, + "noteOrder": 3510, + "time": 0.5392428439519852, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3533, - "time": 0.5429362880886427, + "noteOrder": 3534, + "time": 0.5429362880886426, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.554016620498615, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3618, "time": 0.5558633425669437, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3654, "time": 0.5614035087719298, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3666, "time": 0.5632502308402585, "position": { "x": 5, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3701, + "noteOrder": 3702, "time": 0.5687903970452447, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3773, - "time": 0.579870729455217, + "noteOrder": 3775, + "time": 0.5798707294552169, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3785, - "time": 0.5817174515235458, + "noteOrder": 3787, + "time": 0.5817174515235457, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3821, - "time": 0.5872576177285319, + "noteOrder": 3823, + "time": 0.5872576177285318, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.5891043397968606, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3917, - "time": 0.6020313942751616, + "noteOrder": 3919, + "time": 0.6020313942751615, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4015, "time": 0.6168051708217913, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4015, "time": 0.6168051708217913, "position": { "x": 3, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.6352723915050785, + "noteOrder": 4135, + "time": 0.6352723915050784, "position": { "x": 8, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4146, - "time": 0.6371191135734072, + "noteOrder": 4147, + "time": 0.6371191135734071, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6426592797783934, + "noteOrder": 4183, + "time": 0.6426592797783933, "position": { "x": 2, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4194, + "noteOrder": 4195, "time": 0.6445060018467221, "position": { "x": 5, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.6574330563250231, + "noteOrder": 4279, + "time": 0.657433056325023, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4290, + "noteOrder": 4291, "time": 0.6592797783933518, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.6611265004616805, "position": { "x": 2, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4314, + "noteOrder": 4316, "time": 0.6629732225300092, "position": { "x": 5, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4376, "time": 0.6722068328716528, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4386, + "noteOrder": 4388, "time": 0.6740535549399815, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4400, "time": 0.6759002770083102, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4518, + "noteOrder": 4520, "time": 0.6943674976915974, "position": { "x": 2, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4530, + "noteOrder": 4532, "time": 0.6962142197599261, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7017543859649124, + "noteOrder": 4568, + "time": 0.7017543859649122, "position": { "x": 8, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4578, - "time": 0.703601108033241, + "noteOrder": 4580, + "time": 0.7036011080332409, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.716528162511542, + "noteOrder": 4664, + "time": 0.7165281625115419, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4674, - "time": 0.7183748845798708, + "noteOrder": 4676, + "time": 0.7183748845798706, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.7202216066481995, + "noteOrder": 4688, + "time": 0.7202216066481993, "position": { "x": 8, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4698, + "noteOrder": 4700, "time": 0.7220683287165282, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4758, + "noteOrder": 4760, "time": 0.7313019390581718, "position": { "x": 7, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4770, - "time": 0.7331486611265005, + "noteOrder": 4772, + "time": 0.7331486611265003, "position": { "x": 5, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.7349953831948292, "position": { "x": 3, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.742382271468144, + "noteOrder": 4832, + "time": 0.7423822714681441, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.7460757156048016, + "noteOrder": 4856, + "time": 0.7460757156048015, "position": { "x": 7, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.749769159741459, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4903, - "time": 0.7534626038781164, + "noteOrder": 4905, + "time": 0.7534626038781163, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.7571560480147739, + "noteOrder": 4929, + "time": 0.7571560480147738, "position": { "x": 2, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.7608494921514313, + "noteOrder": 4953, + "time": 0.7608494921514312, "position": { "x": 3, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7645429362880887, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.7719298245614035, "position": { "x": 4, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5071, + "noteOrder": 5073, "time": 0.7793167128347184, "position": { "x": 6, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7940904893813481, "position": { "x": 8, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.8014773776546631, + "noteOrder": 5217, + "time": 0.8014773776546629, "position": { "x": 3, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8088642659279779, + "noteOrder": 5265, + "time": 0.8088642659279778, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5335, - "time": 0.8199445983379502, + "noteOrder": 5337, + "time": 0.8199445983379501, "position": { "x": 3, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5347, - "time": 0.8217913204062789, + "noteOrder": 5349, + "time": 0.8217913204062788, "position": { "x": 5, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.8236380424746076, + "noteOrder": 5361, + "time": 0.8236380424746075, "position": { "x": 7, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.8310249307479225, + "noteOrder": 5409, + "time": 0.8310249307479224, "position": { "x": 5, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5455, - "time": 0.8384118190212373, + "noteOrder": 5458, + "time": 0.8384118190212372, "position": { "x": 5, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5503, - "time": 0.8457987072945522, + "noteOrder": 5506, + "time": 0.8457987072945521, "position": { "x": 5, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5530, "time": 0.8494921514312096, "position": { "x": 2, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5552, - "time": 0.853185595567867, + "noteOrder": 5554, + "time": 0.8531855955678669, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5720, - "time": 0.8790397045244691, + "noteOrder": 5722, + "time": 0.879039704524469, "position": { "x": 8, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5732, - "time": 0.8808864265927978, + "noteOrder": 5734, + "time": 0.8808864265927977, "position": { "x": 5, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5840, + "noteOrder": 5842, "time": 0.8975069252077562, "position": { "x": 7, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9012003693444136, "position": { "x": 3, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5876, - "time": 0.9030470914127423, + "noteOrder": 5878, + "time": 0.9030470914127424, "position": { "x": 5, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5912, - "time": 0.9085872576177285, + "noteOrder": 5914, + "time": 0.9085872576177284, "position": { "x": 5, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5936, - "time": 0.912280701754386, + "noteOrder": 5938, + "time": 0.9122807017543859, "position": { "x": 5, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9270544783010157, + "noteOrder": 6035, + "time": 0.9270544783010156, "position": { "x": 3, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9270544783010157, + "noteOrder": 6035, + "time": 0.9270544783010156, "position": { "x": 7, "y": 0 @@ -3016,7 +3016,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.05909510618651893, @@ -3037,9 +3037,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 397, + "time": 0.06094182825484764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 397, + "time": 0.06094182825484764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.06278855032317636, @@ -3060,9 +3106,101 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 421, + "time": 0.06463527239150507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 421, + "time": 0.06463527239150507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 433, + "time": 0.06648199445983378, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 433, + "time": 0.06648199445983378, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.07386888273314866, @@ -3085,7 +3223,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.07756232686980609, @@ -3108,7 +3246,7 @@ }, { "lineGroupId": 22, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 577, "time": 0.0886426592797784, @@ -3131,7 +3269,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.0886426592797784, @@ -3154,7 +3292,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, "time": 0.09233610341643582, @@ -3177,7 +3315,7 @@ }, { "lineGroupId": 28, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 673, "time": 0.10341643582640812, @@ -3200,7 +3338,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.10341643582640812, @@ -3222,13 +3360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 721, - "time": 0.11080332409972299, + "noteOrder": 685, + "time": 0.10526315789473684, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3240,18 +3378,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 817, - "time": 0.12557710064635272, + "noteOrder": 685, + "time": 0.10526315789473684, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3268,11 +3406,34 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 841, - "time": 0.12927054478301017, + "noteOrder": 697, + "time": 0.10710987996306555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 697, + "time": 0.10710987996306555, "position": { "x": 7, "y": 0 @@ -3291,11 +3452,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, - "time": 0.12557710064635272, + "noteOrder": 721, + "time": 0.11080332409972299, "position": { "x": 3, "y": 0 @@ -3314,11 +3475,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, - "time": 0.12927054478301017, + "noteOrder": 733, + "time": 0.1126500461680517, "position": { "x": 3, "y": 0 @@ -3337,13 +3498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.1329639889196676, + "noteOrder": 733, + "time": 0.1126500461680517, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3355,18 +3516,6205 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 889, - "time": 0.13665743305632502, + "noteOrder": 745, + "time": 0.11449676823638043, "position": { - "x": 8, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 745, + "time": 0.11449676823638043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 817, + "time": 0.12557710064635272, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 841, + "time": 0.12927054478301014, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 817, + "time": 0.12557710064635272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 841, + "time": 0.12927054478301014, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 866, + "time": 0.13296398891966757, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 878, + "time": 0.1348107109879963, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 878, + "time": 0.1348107109879963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 890, + "time": 0.136657433056325, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 890, + "time": 0.136657433056325, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 890, + "time": 0.136657433056325, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 902, + "time": 0.13850415512465375, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 902, + "time": 0.13850415512465375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 914, + "time": 0.14035087719298245, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 914, + "time": 0.14035087719298245, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 938, + "time": 0.1440443213296399, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 950, + "time": 0.1458910433979686, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 950, + "time": 0.1458910433979686, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 962, + "time": 0.14773776546629733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 962, + "time": 0.14773776546629733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 962, + "time": 0.14773776546629733, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 974, + "time": 0.14958448753462603, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 974, + "time": 0.14958448753462603, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 986, + "time": 0.15143120960295475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 986, + "time": 0.15143120960295475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 986, + "time": 0.15143120960295475, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 998, + "time": 0.15327793167128345, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 998, + "time": 0.15327793167128345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1010, + "time": 0.15512465373961218, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1010, + "time": 0.15512465373961218, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1034, + "time": 0.1588180978762696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1046, + "time": 0.16066481994459833, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1046, + "time": 0.16066481994459833, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1058, + "time": 0.16251154201292703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1070, + "time": 0.16435826408125576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1082, + "time": 0.16620498614958445, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1082, + "time": 0.16620498614958445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1094, + "time": 0.1680517082179132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1106, + "time": 0.16989843028624194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1106, + "time": 0.16989843028624194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1118, + "time": 0.17174515235457063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1130, + "time": 0.17359187442289936, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1154, + "time": 0.1772853185595568, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1166, + "time": 0.17913204062788549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1178, + "time": 0.1809787626962142, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1178, + "time": 0.1809787626962142, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1190, + "time": 0.18282548476454294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1202, + "time": 0.18467220683287164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1202, + "time": 0.18467220683287164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1214, + "time": 0.18651892890120036, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1226, + "time": 0.18836565096952906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1346, + "time": 0.20683287165281625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1358, + "time": 0.20867959372114497, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1358, + "time": 0.20867959372114497, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21052631578947367, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21052631578947367, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1370, + "time": 0.21052631578947367, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2123730378578024, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2123730378578024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1394, + "time": 0.2142197599261311, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1394, + "time": 0.2142197599261311, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1394, + "time": 0.2142197599261311, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1406, + "time": 0.21606648199445982, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1406, + "time": 0.21606648199445982, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1418, + "time": 0.21791320406278852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1418, + "time": 0.21791320406278852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2253000923361034, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.2271468144044321, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.2271468144044321, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1491, + "time": 0.22899353647276086, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1491, + "time": 0.22899353647276086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.22899353647276086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.23084025854108955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.23084025854108955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1515, + "time": 0.23268698060941828, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1515, + "time": 0.23268698060941828, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1539, + "time": 0.2363804247460757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1551, + "time": 0.23822714681440443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1575, + "time": 0.24192059095106186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1587, + "time": 0.24376731301939056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1539, + "time": 0.2363804247460757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1551, + "time": 0.23822714681440443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1575, + "time": 0.24192059095106186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1587, + "time": 0.24376731301939056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.25115420129270544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1647, + "time": 0.25300092336103414, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1647, + "time": 0.25300092336103414, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25484764542936283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25484764542936283, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25484764542936283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1671, + "time": 0.2566943674976916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1671, + "time": 0.2566943674976916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1695, + "time": 0.26038781163434904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1695, + "time": 0.26038781163434904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26223453370267774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26223453370267774, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26223453370267774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1719, + "time": 0.26408125577100644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1719, + "time": 0.26408125577100644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26592797783933514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26592797783933514, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26592797783933514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1755, + "time": 0.2696214219759926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2770083102493075, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2770083102493075, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1815, + "time": 0.2788550323176362, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1815, + "time": 0.2788550323176362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2807017543859649, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2807017543859649, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28439519852262235, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28624192059095105, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1863, + "time": 0.28624192059095105, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2880886426592798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2880886426592798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2880886426592798, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1887, + "time": 0.28993536472760845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1887, + "time": 0.28993536472760845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2917820867959372, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2917820867959372, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2917820867959372, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1911, + "time": 0.2936288088642659, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1911, + "time": 0.2936288088642659, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1923, + "time": 0.29547553093259465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1923, + "time": 0.29547553093259465, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.29547553093259465, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1935, + "time": 0.2973222530009233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1935, + "time": 0.2973222530009233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.29916897506925205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.30101569713758075, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1959, + "time": 0.30101569713758075, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1971, + "time": 0.3028624192059095, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1983, + "time": 0.3047091412742382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1983, + "time": 0.3047091412742382, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3065558633425669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3065558633425669, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2020, + "time": 0.31024930747922436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.3065558633425669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2020, + "time": 0.31024930747922436, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3176361957525392, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2092, + "time": 0.32132963988919666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2092, + "time": 0.32132963988919666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2104, + "time": 0.3231763619575254, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3287165281625115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2152, + "time": 0.33056325023084027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2152, + "time": 0.33056325023084027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3324099722991689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2176, + "time": 0.33425669436749766, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2176, + "time": 0.33425669436749766, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2188, + "time": 0.3361034164358264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2188, + "time": 0.3361034164358264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2212, + "time": 0.33979686057248387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2236, + "time": 0.34349030470914127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3471837488457987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3508771929824561, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3545706371191136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2320, + "time": 0.3564173591874423, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2332, + "time": 0.35826408125577097, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2332, + "time": 0.35826408125577097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.36011080332409967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2356, + "time": 0.3619575253924284, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2380, + "time": 0.3656509695290859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2356, + "time": 0.3619575253924284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2368, + "time": 0.3638042474607571, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.3693444136657433, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2428, + "time": 0.37303785780240073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2452, + "time": 0.3767313019390581, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2476, + "time": 0.3804247460757156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2524, + "time": 0.38781163434903043, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3951985226223453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2585, + "time": 0.39704524469067404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2585, + "time": 0.39704524469067404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.3988919667590028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2609, + "time": 0.40073868882733144, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.40073868882733144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4025854108956602, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2669, + "time": 0.40997229916897504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.40997229916897504, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2681, + "time": 0.41181902123730374, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2681, + "time": 0.41181902123730374, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.4136657433056325, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2705, + "time": 0.4155124653739612, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2705, + "time": 0.4155124653739612, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2717, + "time": 0.41735918744228995, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.4192059095106186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.4192059095106186, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.42105263157894735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2741, + "time": 0.42105263157894735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2753, + "time": 0.42289935364727604, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2753, + "time": 0.42289935364727604, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4247460757156048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4247460757156048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.4284395198522622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2813, + "time": 0.43213296398891965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2837, + "time": 0.43582640812557705, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2861, + "time": 0.4395198522622345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2909, + "time": 0.44690674053554935, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4542936288088642, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2969, + "time": 0.45614035087719296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2969, + "time": 0.45614035087719296, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4579870729455217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4598337950138504, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2993, + "time": 0.4598337950138504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3005, + "time": 0.4616805170821791, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3053, + "time": 0.469067405355494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3053, + "time": 0.469067405355494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3065, + "time": 0.47091412742382266, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3065, + "time": 0.47091412742382266, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.4727608494921514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3089, + "time": 0.4746075715604801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3089, + "time": 0.4746075715604801, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.47645429362880887, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3113, + "time": 0.4783010156971375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3113, + "time": 0.4783010156971375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3125, + "time": 0.48014773776546626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3125, + "time": 0.48014773776546626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3137, + "time": 0.48199445983379496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3137, + "time": 0.48199445983379496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4838411819021237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4838411819021237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.4875346260387811, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3186, + "time": 0.48938134810710987, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3186, + "time": 0.48938134810710987, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3198, + "time": 0.49122807017543857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3198, + "time": 0.49122807017543857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3198, + "time": 0.49122807017543857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4930747922437673, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3210, + "time": 0.4930747922437673, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3222, + "time": 0.494921514312096, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3246, + "time": 0.4986149584487534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5004616805170822, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5004616805170822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5023084025854109, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5060018467220683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5078485687903971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3306, + "time": 0.5078485687903971, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5096952908587257, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5133887349953832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5152354570637119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3354, + "time": 0.5152354570637119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5170821791320406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5189289012003693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5189289012003693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3414, + "time": 0.5244690674053555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5263157894736842, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5263157894736842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5318559556786703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5337026777469991, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5337026777469991, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3486, + "time": 0.5355493998153278, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3498, + "time": 0.5373961218836565, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3498, + "time": 0.5373961218836565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5466297322253, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5484764542936288, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5484764542936288, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5503231763619575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5503231763619575, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5503231763619575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3594, + "time": 0.5521698984302862, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3594, + "time": 0.5521698984302862, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3606, + "time": 0.554016620498615, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5577100646352724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3642, + "time": 0.5595567867036011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3642, + "time": 0.5595567867036011, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5614035087719298, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5650969529085872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3690, + "time": 0.5669436749769159, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3378,18 +9726,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 937, - "time": 0.14404432132963987, + "noteOrder": 3690, + "time": 0.5669436749769159, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3406,13 +9754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 961, - "time": 0.14773776546629733, + "noteOrder": 3702, + "time": 0.5687903970452447, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3424,18 +9772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.15143120960295475, + "noteOrder": 3727, + "time": 0.5724838411819021, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3447,18 +9795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1033, - "time": 0.15881809787626963, + "noteOrder": 3739, + "time": 0.5743305632502308, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3475,13 +9823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.16251154201292706, + "noteOrder": 3739, + "time": 0.5743305632502308, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3493,18 +9841,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 1069, - "time": 0.16435826408125578, + "noteOrder": 3751, + "time": 0.5761772853185596, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3521,13 +9869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 185, "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.16620498614958448, + "noteOrder": 3763, + "time": 0.5780240073868882, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3544,13 +9892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1081, - "time": 0.16620498614958448, + "noteOrder": 3763, + "time": 0.5780240073868882, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3562,18 +9910,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 1093, - "time": 0.1680517082179132, + "noteOrder": 3799, + "time": 0.5835641735918744, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3590,13 +9938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 188, "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.1698984302862419, + "noteOrder": 3811, + "time": 0.5854108956602031, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3613,13 +9961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.1698984302862419, + "noteOrder": 3811, + "time": 0.5854108956602031, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3631,18 +9979,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 1118, - "time": 0.17174515235457063, + "noteOrder": 3847, + "time": 0.5909510618651893, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3659,13 +10007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 191, "indexInLine": 2, "isSliding": false, - "noteOrder": 1130, - "time": 0.17359187442289936, + "noteOrder": 3859, + "time": 0.592797783933518, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3682,13 +10030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1154, - "time": 0.1772853185595568, + "noteOrder": 3859, + "time": 0.592797783933518, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3700,18 +10048,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 1166, - "time": 0.1791320406278855, + "noteOrder": 3871, + "time": 0.5946445060018466, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3728,13 +10076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 192, "indexInLine": 2, "isSliding": false, - "noteOrder": 1178, - "time": 0.1809787626962142, + "noteOrder": 3883, + "time": 0.5964912280701754, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3751,13 +10099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1178, - "time": 0.1809787626962142, + "noteOrder": 3883, + "time": 0.5964912280701754, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3769,18 +10117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 1190, - "time": 0.18282548476454294, + "noteOrder": 3895, + "time": 0.5983379501385041, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3797,13 +10145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 193, "indexInLine": 2, "isSliding": false, - "noteOrder": 1202, - "time": 0.18467220683287164, + "noteOrder": 3907, + "time": 0.6001846722068328, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3820,13 +10168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1202, - "time": 0.18467220683287164, + "noteOrder": 3907, + "time": 0.6001846722068328, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3838,16 +10186,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1214, - "time": 0.1865189289012004, + "noteOrder": 3919, + "time": 0.6020313942751615, "position": { "x": 6, "y": 0 @@ -3861,18 +10209,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 2, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1226, - "time": 0.1883656509695291, + "noteOrder": 3919, + "time": 0.6020313942751615, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3884,16 +10232,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.20683287165281625, + "noteOrder": 3943, + "time": 0.605724838411819, "position": { "x": 3, "y": 0 @@ -3907,16 +10255,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.21052631578947367, + "noteOrder": 3955, + "time": 0.6075715604801477, "position": { "x": 3, "y": 0 @@ -3935,13 +10283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, - "time": 0.21421975992613113, + "noteOrder": 3979, + "time": 0.6112650046168052, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3953,16 +10301,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1466, - "time": 0.2253000923361034, + "noteOrder": 3991, + "time": 0.6131117266851338, "position": { "x": 7, "y": 0 @@ -3981,11 +10329,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.22899353647276086, + "noteOrder": 3943, + "time": 0.605724838411819, "position": { "x": 7, "y": 0 @@ -4004,11 +10352,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.2363804247460757, + "noteOrder": 3955, + "time": 0.6075715604801477, "position": { "x": 7, "y": 0 @@ -4027,13 +10375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1550, - "time": 0.23822714681440443, + "noteOrder": 3979, + "time": 0.6112650046168052, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4050,11 +10398,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 2, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1574, - "time": 0.2419205909510619, + "noteOrder": 3991, + "time": 0.6131117266851338, "position": { "x": 3, "y": 0 @@ -4073,13 +10421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 3, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.24376731301939059, + "noteOrder": 4039, + "time": 0.6204986149584487, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4091,18 +10439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.2363804247460757, + "noteOrder": 4051, + "time": 0.6223453370267774, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4119,13 +10467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1550, - "time": 0.23822714681440443, + "noteOrder": 4051, + "time": 0.6223453370267774, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4142,13 +10490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1574, - "time": 0.2419205909510619, + "noteOrder": 4063, + "time": 0.6241920590951062, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4165,13 +10513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 3, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1586, - "time": 0.24376731301939059, + "noteOrder": 4063, + "time": 0.6241920590951062, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4188,11 +10536,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.25115420129270544, + "noteOrder": 4063, + "time": 0.6241920590951062, "position": { "x": 7, "y": 0 @@ -4206,16 +10554,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, - "time": 0.2548476454293629, + "noteOrder": 4075, + "time": 0.6260387811634349, "position": { "x": 7, "y": 0 @@ -4234,13 +10582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.25854108956602034, + "noteOrder": 4075, + "time": 0.6260387811634349, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4252,18 +10600,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1706, - "time": 0.26223453370267774, + "noteOrder": 4087, + "time": 0.6278855032317636, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4280,13 +10628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1730, - "time": 0.2659279778393352, + "noteOrder": 4087, + "time": 0.6278855032317636, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4298,16 +10646,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, - "time": 0.26962142197599265, + "noteOrder": 4087, + "time": 0.6278855032317636, "position": { "x": 7, "y": 0 @@ -4326,13 +10674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 202, "indexInLine": 2, "isSliding": false, - "noteOrder": 1802, - "time": 0.2770083102493075, + "noteOrder": 4099, + "time": 0.6297322253000922, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4349,13 +10697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1802, - "time": 0.2770083102493075, + "noteOrder": 4099, + "time": 0.6297322253000922, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4367,18 +10715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1851, - "time": 0.28439519852262235, + "noteOrder": 4111, + "time": 0.631578947368421, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4395,13 +10743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1875, - "time": 0.28808864265927975, + "noteOrder": 4111, + "time": 0.631578947368421, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4413,18 +10761,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1899, - "time": 0.29178208679593726, + "noteOrder": 4111, + "time": 0.631578947368421, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4436,18 +10784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.29547553093259465, + "noteOrder": 4123, + "time": 0.6334256694367497, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4464,13 +10812,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1947, - "time": 0.2991689750692521, + "noteOrder": 4123, + "time": 0.6334256694367497, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4482,18 +10830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1971, - "time": 0.3028624192059095, + "noteOrder": 4135, + "time": 0.6352723915050784, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4510,11 +10858,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 3, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.31024930747922436, + "noteOrder": 4159, + "time": 0.6389658356417359, "position": { "x": 3, "y": 0 @@ -4528,18 +10876,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1995, - "time": 0.30655586334256696, + "noteOrder": 4171, + "time": 0.6408125577100646, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4556,13 +10904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2019, - "time": 0.31024930747922436, + "noteOrder": 4171, + "time": 0.6408125577100646, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4579,13 +10927,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2067, - "time": 0.31763619575253926, + "noteOrder": 4183, + "time": 0.6426592797783933, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4602,13 +10950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 2091, - "time": 0.3213296398891967, + "noteOrder": 4207, + "time": 0.6463527239150508, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4620,18 +10968,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, - "time": 0.3213296398891967, + "noteOrder": 4219, + "time": 0.6481994459833794, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4648,13 +10996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2103, - "time": 0.3231763619575254, + "noteOrder": 4219, + "time": 0.6481994459833794, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4671,11 +11019,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2139, - "time": 0.32871652816251157, + "noteOrder": 4231, + "time": 0.6500461680517081, "position": { "x": 7, "y": 0 @@ -4694,13 +11042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.33240997229916897, + "noteOrder": 4243, + "time": 0.6518928901200369, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4712,18 +11060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2211, - "time": 0.3397968605724838, + "noteOrder": 4243, + "time": 0.6518928901200369, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4740,11 +11088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2235, - "time": 0.34349030470914127, + "noteOrder": 4255, + "time": 0.6537396121883656, "position": { "x": 6, "y": 0 @@ -4763,13 +11111,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2259, - "time": 0.3471837488457987, + "noteOrder": 4255, + "time": 0.6537396121883656, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4781,18 +11129,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 215, "indexInLine": 1, "isSliding": false, - "noteOrder": 2283, - "time": 0.3508771929824562, + "noteOrder": 4255, + "time": 0.6537396121883656, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4809,11 +11157,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2307, - "time": 0.3545706371191136, + "noteOrder": 4267, + "time": 0.6555863342566943, "position": { "x": 7, "y": 0 @@ -4827,16 +11175,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2319, - "time": 0.3564173591874423, + "noteOrder": 4267, + "time": 0.6555863342566943, "position": { "x": 6, "y": 0 @@ -4850,16 +11198,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2331, - "time": 0.358264081255771, + "noteOrder": 4279, + "time": 0.657433056325023, "position": { "x": 6, "y": 0 @@ -4873,18 +11221,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2331, - "time": 0.358264081255771, + "noteOrder": 4279, + "time": 0.657433056325023, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4901,13 +11249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 2343, - "time": 0.3601108033240997, + "noteOrder": 4328, + "time": 0.6648199445983378, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4919,18 +11267,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2355, - "time": 0.3619575253924284, + "noteOrder": 4340, + "time": 0.6666666666666666, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4942,18 +11290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2379, - "time": 0.3656509695290859, + "noteOrder": 4340, + "time": 0.6666666666666666, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4965,18 +11313,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2355, - "time": 0.3619575253924284, + "noteOrder": 4352, + "time": 0.6685133887349953, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4988,18 +11336,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2367, - "time": 0.3638042474607571, + "noteOrder": 4364, + "time": 0.670360110803324, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5011,18 +11359,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2403, - "time": 0.3693444136657433, + "noteOrder": 4364, + "time": 0.670360110803324, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5034,18 +11382,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 2427, - "time": 0.3730378578024008, + "noteOrder": 4424, + "time": 0.6795937211449677, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5057,18 +11405,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 227, "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.3767313019390582, + "noteOrder": 4436, + "time": 0.6814404432132963, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5080,18 +11428,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2475, - "time": 0.38042474607571564, + "noteOrder": 4436, + "time": 0.6814404432132963, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5108,13 +11456,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2523, - "time": 0.3878116343490305, + "noteOrder": 4448, + "time": 0.683287165281625, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5131,13 +11479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2571, - "time": 0.39519852262234534, + "noteOrder": 4448, + "time": 0.683287165281625, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5149,16 +11497,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.39889196675900274, + "noteOrder": 4448, + "time": 0.683287165281625, "position": { "x": 3, "y": 0 @@ -5172,18 +11520,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 228, "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.40258541089566025, + "noteOrder": 4460, + "time": 0.6851338873499537, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5195,18 +11543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 228, "indexInLine": 3, "isSliding": false, - "noteOrder": 2668, - "time": 0.4099722991689751, + "noteOrder": 4460, + "time": 0.6851338873499537, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5218,18 +11566,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2668, - "time": 0.4099722991689751, + "noteOrder": 4472, + "time": 0.6869806094182825, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5246,13 +11594,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2692, - "time": 0.4136657433056325, + "noteOrder": 4472, + "time": 0.6869806094182825, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5264,18 +11612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2716, - "time": 0.41735918744228995, + "noteOrder": 4472, + "time": 0.6869806094182825, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5287,18 +11635,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2788, - "time": 0.42843951985226225, + "noteOrder": 4484, + "time": 0.6888273314866112, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5315,11 +11663,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.4321329639889197, + "noteOrder": 4484, + "time": 0.6888273314866112, "position": { "x": 4, "y": 0 @@ -5338,13 +11686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 2, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2836, - "time": 0.4358264081255771, + "noteOrder": 4496, + "time": 0.6906740535549399, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5361,13 +11709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2860, - "time": 0.43951985226223456, + "noteOrder": 4496, + "time": 0.6906740535549399, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5379,18 +11727,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 2908, - "time": 0.4469067405355494, + "noteOrder": 4496, + "time": 0.6906740535549399, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5407,11 +11755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2956, - "time": 0.45429362880886426, + "noteOrder": 4508, + "time": 0.6925207756232686, "position": { "x": 3, "y": 0 @@ -5425,18 +11773,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2980, - "time": 0.4579870729455217, + "noteOrder": 4508, + "time": 0.6925207756232686, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5453,13 +11801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 2, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3004, - "time": 0.46168051708217916, + "noteOrder": 4520, + "time": 0.6943674976915974, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5476,13 +11824,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 3, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3052, - "time": 0.469067405355494, + "noteOrder": 4544, + "time": 0.6980609418282547, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5494,18 +11842,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3052, - "time": 0.469067405355494, + "noteOrder": 4556, + "time": 0.6999076638965834, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5522,13 +11870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3076, - "time": 0.4727608494921514, + "noteOrder": 4556, + "time": 0.6999076638965834, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5540,18 +11888,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3100, - "time": 0.47645429362880887, + "noteOrder": 4568, + "time": 0.7017543859649122, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5568,13 +11916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3172, - "time": 0.48753462603878117, + "noteOrder": 4592, + "time": 0.7054478301015696, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5591,13 +11939,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3196, - "time": 0.4912280701754386, + "noteOrder": 4604, + "time": 0.7072945521698984, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5609,18 +11957,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 2, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3220, - "time": 0.494921514312096, + "noteOrder": 4604, + "time": 0.7072945521698984, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5632,16 +11980,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3244, - "time": 0.4986149584487535, + "noteOrder": 4616, + "time": 0.7091412742382271, "position": { "x": 3, "y": 0 @@ -5655,18 +12003,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 241, "indexInLine": 2, "isSliding": false, - "noteOrder": 3268, - "time": 0.5023084025854109, + "noteOrder": 4628, + "time": 0.7109879963065558, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5678,18 +12026,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3292, - "time": 0.5060018467220683, + "noteOrder": 4628, + "time": 0.7109879963065558, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5706,13 +12054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 2, + "lineGroupId": 241, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3316, - "time": 0.5096952908587258, + "noteOrder": 4640, + "time": 0.7128347183748845, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5729,13 +12077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3341, - "time": 0.5133887349953832, + "noteOrder": 4640, + "time": 0.7128347183748845, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5747,16 +12095,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.5170821791320407, + "noteOrder": 4640, + "time": 0.7128347183748845, "position": { "x": 3, "y": 0 @@ -5770,18 +12118,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3413, - "time": 0.5244690674053555, + "noteOrder": 4652, + "time": 0.7146814404432134, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5798,13 +12146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3461, - "time": 0.5318559556786704, + "noteOrder": 4652, + "time": 0.7146814404432134, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5816,18 +12164,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3485, - "time": 0.5355493998153278, + "noteOrder": 4664, + "time": 0.7165281625115419, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5844,13 +12192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3557, - "time": 0.5466297322253001, + "noteOrder": 4664, + "time": 0.7165281625115419, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5862,16 +12210,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3581, - "time": 0.5503231763619575, + "noteOrder": 4712, + "time": 0.7239150507848569, "position": { "x": 3, "y": 0 @@ -5885,18 +12233,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 248, "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.554016620498615, + "noteOrder": 4724, + "time": 0.7257617728531855, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5908,18 +12256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3629, - "time": 0.5577100646352724, + "noteOrder": 4724, + "time": 0.7257617728531855, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5936,13 +12284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 2, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.5614035087719298, + "noteOrder": 4736, + "time": 0.7276084949215142, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5954,18 +12302,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3677, - "time": 0.5650969529085872, + "noteOrder": 4748, + "time": 0.7294552169898431, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5982,13 +12330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3701, - "time": 0.5687903970452447, + "noteOrder": 4748, + "time": 0.7294552169898431, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6005,13 +12353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3725, - "time": 0.5724838411819021, + "noteOrder": 4808, + "time": 0.7386888273314866, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6023,16 +12371,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.5761772853185595, + "noteOrder": 4832, + "time": 0.7423822714681441, "position": { "x": 7, "y": 0 @@ -6051,13 +12399,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3797, - "time": 0.5835641735918745, + "noteOrder": 4905, + "time": 0.7534626038781163, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6069,18 +12417,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3845, - "time": 0.5909510618651893, + "noteOrder": 4929, + "time": 0.7571560480147738, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6097,13 +12445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3869, - "time": 0.5946445060018467, + "noteOrder": 4977, + "time": 0.7645429362880887, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6115,18 +12463,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3893, - "time": 0.5983379501385042, + "noteOrder": 5001, + "time": 0.768236380424746, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6138,18 +12486,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, - "time": 0.605724838411819, + "noteOrder": 5025, + "time": 0.7719298245614035, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6161,18 +12509,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 264, "indexInLine": 1, "isSliding": false, - "noteOrder": 3953, - "time": 0.6075715604801477, + "noteOrder": 5049, + "time": 0.7756232686980609, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6189,13 +12537,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 264, "indexInLine": 2, "isSliding": false, - "noteOrder": 3977, - "time": 0.6112650046168052, + "noteOrder": 5073, + "time": 0.7793167128347184, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6212,13 +12560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 3, + "lineGroupId": 266, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.6131117266851339, + "noteOrder": 5097, + "time": 0.7830101569713758, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6230,18 +12578,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 266, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, - "time": 0.605724838411819, + "noteOrder": 5109, + "time": 0.7848568790397045, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6258,13 +12606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 266, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3953, - "time": 0.6075715604801477, + "noteOrder": 5121, + "time": 0.7867036011080332, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6281,11 +12629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 2, + "lineGroupId": 267, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3977, - "time": 0.6112650046168052, + "noteOrder": 5121, + "time": 0.7867036011080332, "position": { "x": 3, "y": 0 @@ -6299,18 +12647,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 3, + "lineGroupId": 267, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3989, - "time": 0.6131117266851339, + "noteOrder": 5133, + "time": 0.7885503231763619, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6322,18 +12670,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.6204986149584487, + "noteOrder": 5145, + "time": 0.7903970452446906, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6350,13 +12698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 268, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4062, - "time": 0.6241920590951061, + "noteOrder": 5145, + "time": 0.7903970452446906, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6373,13 +12721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 268, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4086, - "time": 0.6278855032317636, + "noteOrder": 5157, + "time": 0.7922437673130194, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6391,18 +12739,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 268, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4110, - "time": 0.631578947368421, + "noteOrder": 5169, + "time": 0.7940904893813481, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6419,13 +12767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 2, + "lineGroupId": 270, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.6352723915050785, + "noteOrder": 5193, + "time": 0.7977839335180056, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6437,18 +12785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4158, - "time": 0.6389658356417359, + "noteOrder": 5205, + "time": 0.7996306555863343, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6465,13 +12813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 2, + "lineGroupId": 270, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4182, - "time": 0.6426592797783934, + "noteOrder": 5205, + "time": 0.7996306555863343, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6488,13 +12836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4206, - "time": 0.6463527239150508, + "noteOrder": 5217, + "time": 0.8014773776546629, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6506,16 +12854,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4230, - "time": 0.6500461680517082, + "noteOrder": 5217, + "time": 0.8014773776546629, "position": { "x": 7, "y": 0 @@ -6534,13 +12882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4254, - "time": 0.6537396121883656, + "noteOrder": 5241, + "time": 0.8051708217913204, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6557,13 +12905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, - "time": 0.6648199445983379, + "noteOrder": 5253, + "time": 0.8070175438596491, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6575,18 +12923,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4350, - "time": 0.6685133887349953, + "noteOrder": 5253, + "time": 0.8070175438596491, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6603,13 +12951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4422, - "time": 0.6795937211449676, + "noteOrder": 5265, + "time": 0.8088642659279778, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6626,11 +12974,11 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4446, - "time": 0.683287165281625, + "noteOrder": 5265, + "time": 0.8088642659279778, "position": { "x": 3, "y": 0 @@ -6644,18 +12992,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4470, - "time": 0.6869806094182825, + "noteOrder": 5289, + "time": 0.8125577100646353, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6667,18 +13015,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4494, - "time": 0.69067405355494, + "noteOrder": 5301, + "time": 0.814404432132964, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6695,13 +13043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 2, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4518, - "time": 0.6943674976915974, + "noteOrder": 5301, + "time": 0.814404432132964, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6718,13 +13066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4542, - "time": 0.6980609418282548, + "noteOrder": 5313, + "time": 0.8162511542012927, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6741,13 +13089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, + "lineGroupId": 275, "indexInLine": 2, "isSliding": false, - "noteOrder": 4566, - "time": 0.7017543859649124, + "noteOrder": 5325, + "time": 0.8180978762696214, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6764,13 +13112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4590, - "time": 0.7054478301015698, + "noteOrder": 5325, + "time": 0.8180978762696214, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6782,16 +13130,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4614, - "time": 0.7091412742382271, + "noteOrder": 5385, + "time": 0.827331486611265, "position": { "x": 3, "y": 0 @@ -6810,11 +13158,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4638, - "time": 0.7128347183748845, + "noteOrder": 5409, + "time": 0.8310249307479224, "position": { "x": 3, "y": 0 @@ -6828,18 +13176,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4710, - "time": 0.7239150507848569, + "noteOrder": 5433, + "time": 0.8347183748845799, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6851,16 +13199,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4734, - "time": 0.7276084949215142, + "noteOrder": 5458, + "time": 0.8384118190212372, "position": { "x": 7, "y": 0 @@ -6879,13 +13227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.7386888273314866, + "noteOrder": 5482, + "time": 0.8421052631578947, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6897,18 +13245,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 1, + "lineGroupId": 285, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4831, - "time": 0.742382271468144, + "noteOrder": 5506, + "time": 0.8457987072945521, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6920,18 +13268,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 2, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4903, - "time": 0.7534626038781164, + "noteOrder": 5578, + "time": 0.8568790397045244, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6943,18 +13291,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 3, + "lineGroupId": 285, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4927, - "time": 0.7571560480147739, + "noteOrder": 5650, + "time": 0.8679593721144968, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6966,18 +13314,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 4, + "lineGroupId": 293, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4975, - "time": 0.7645429362880887, + "noteOrder": 5578, + "time": 0.8568790397045244, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6994,13 +13342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4999, - "time": 0.7682363804247461, + "noteOrder": 5602, + "time": 0.8605724838411819, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7012,18 +13360,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 1, + "lineGroupId": 293, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5023, - "time": 0.7719298245614035, + "noteOrder": 5626, + "time": 0.8642659279778393, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7035,18 +13383,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5047, - "time": 0.775623268698061, + "noteOrder": 5650, + "time": 0.8679593721144968, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7063,13 +13411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, + "lineGroupId": 295, "indexInLine": 1, "isSliding": false, - "noteOrder": 5071, - "time": 0.7793167128347184, + "noteOrder": 5674, + "time": 0.8716528162511541, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -7086,13 +13434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 266, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5095, - "time": 0.7830101569713758, + "noteOrder": 5686, + "time": 0.8734995383194828, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -7104,18 +13452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 266, - "indexInLine": 1, + "lineGroupId": 295, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5107, - "time": 0.7848568790397045, + "noteOrder": 5686, + "time": 0.8734995383194828, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7127,18 +13475,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 266, - "indexInLine": 2, + "lineGroupId": 295, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5119, - "time": 0.7867036011080332, + "noteOrder": 5698, + "time": 0.8753462603878116, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7150,18 +13498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5119, - "time": 0.7867036011080332, + "noteOrder": 5698, + "time": 0.8753462603878116, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7178,13 +13526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, + "lineGroupId": 296, "indexInLine": 1, "isSliding": false, - "noteOrder": 5131, - "time": 0.788550323176362, + "noteOrder": 5698, + "time": 0.8753462603878116, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7196,18 +13544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, + "lineGroupId": 296, "indexInLine": 2, "isSliding": false, - "noteOrder": 5143, - "time": 0.7903970452446907, + "noteOrder": 5710, + "time": 0.8771929824561403, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -7219,18 +13567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 268, - "indexInLine": 0, + "lineGroupId": 296, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5143, - "time": 0.7903970452446907, + "noteOrder": 5710, + "time": 0.8771929824561403, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7247,13 +13595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 268, - "indexInLine": 1, + "lineGroupId": 296, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5155, - "time": 0.7922437673130194, + "noteOrder": 5722, + "time": 0.879039704524469, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -7270,13 +13618,13 @@ "isPlayAudio": false }, { - "lineGroupId": 268, - "indexInLine": 2, + "lineGroupId": 296, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5167, - "time": 0.7940904893813481, + "noteOrder": 5722, + "time": 0.879039704524469, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -7293,13 +13641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, - "time": 0.7977839335180055, + "noteOrder": 5746, + "time": 0.8827331486611265, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7316,11 +13664,11 @@ "isPlayAudio": false }, { - "lineGroupId": 272, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5239, - "time": 0.8051708217913205, + "noteOrder": 5758, + "time": 0.8845798707294552, "position": { "x": 3, "y": 0 @@ -7334,18 +13682,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5287, - "time": 0.8125577100646353, + "noteOrder": 5758, + "time": 0.8845798707294552, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7362,13 +13710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5311, - "time": 0.8162511542012928, + "noteOrder": 5770, + "time": 0.8864265927977839, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7380,18 +13728,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5383, - "time": 0.827331486611265, + "noteOrder": 5770, + "time": 0.8864265927977839, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7403,16 +13751,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 280, + "lineGroupId": 300, "indexInLine": 1, "isSliding": false, - "noteOrder": 5407, - "time": 0.8310249307479225, + "noteOrder": 5770, + "time": 0.8864265927977839, "position": { "x": 3, "y": 0 @@ -7431,13 +13779,13 @@ "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5431, - "time": 0.8347183748845799, + "noteOrder": 5782, + "time": 0.8882733148661126, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7449,18 +13797,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 1, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5455, - "time": 0.8384118190212373, + "noteOrder": 5782, + "time": 0.8882733148661126, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7472,18 +13820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5479, - "time": 0.8421052631578947, + "noteOrder": 5794, + "time": 0.8901200369344413, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7500,13 +13848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 1, + "lineGroupId": 300, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5503, - "time": 0.8457987072945522, + "noteOrder": 5794, + "time": 0.8901200369344413, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7523,13 +13871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 2, + "lineGroupId": 301, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5576, - "time": 0.8568790397045245, + "noteOrder": 5794, + "time": 0.8901200369344413, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7541,18 +13889,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 3, + "lineGroupId": 301, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5648, - "time": 0.8679593721144968, + "noteOrder": 5806, + "time": 0.89196675900277, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7564,18 +13912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5576, - "time": 0.8568790397045245, + "noteOrder": 5806, + "time": 0.89196675900277, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7592,13 +13940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 1, + "lineGroupId": 301, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5600, - "time": 0.860572483841182, + "noteOrder": 5818, + "time": 0.8938134810710987, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7615,13 +13963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 2, + "lineGroupId": 301, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5624, - "time": 0.8642659279778394, + "noteOrder": 5818, + "time": 0.8938134810710987, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7638,13 +13986,13 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 3, + "lineGroupId": 302, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5648, - "time": 0.8679593721144968, + "noteOrder": 5818, + "time": 0.8938134810710987, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -7656,18 +14004,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5672, - "time": 0.8716528162511542, + "noteOrder": 5830, + "time": 0.8956602031394275, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -7679,18 +14027,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 296, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5696, - "time": 0.8753462603878117, + "noteOrder": 5830, + "time": 0.8956602031394275, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7707,13 +14055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5744, - "time": 0.8827331486611265, + "noteOrder": 5842, + "time": 0.8975069252077562, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7725,16 +14073,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5768, - "time": 0.8864265927977839, + "noteOrder": 5842, + "time": 0.8975069252077562, "position": { "x": 3, "y": 0 @@ -7753,13 +14101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5792, - "time": 0.8901200369344414, + "noteOrder": 5890, + "time": 0.904893813481071, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7776,13 +14124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 302, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5816, - "time": 0.8938134810710988, + "noteOrder": 5902, + "time": 0.9067405355493997, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7794,18 +14142,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 306, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5888, - "time": 0.9048938134810711, + "noteOrder": 5902, + "time": 0.9067405355493997, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7823,9 +14171,9 @@ }, { "lineGroupId": 309, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5960, + "noteOrder": 5962, "time": 0.9159741458910434, "position": { "x": 3, @@ -7846,9 +14194,9 @@ }, { "lineGroupId": 309, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9178208679593721, "position": { "x": 3, @@ -7869,10 +14217,10 @@ }, { "lineGroupId": 309, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5996, - "time": 0.9215143120960296, + "noteOrder": 5998, + "time": 0.9215143120960295, "position": { "x": 7, "y": 0 @@ -7892,10 +14240,10 @@ }, { "lineGroupId": 309, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6008, - "time": 0.9233610341643583, + "noteOrder": 6010, + "time": 0.9233610341643582, "position": { "x": 7, "y": 0 @@ -7915,9 +14263,9 @@ }, { "lineGroupId": 310, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5960, + "noteOrder": 5962, "time": 0.9159741458910434, "position": { "x": 7, @@ -7938,9 +14286,9 @@ }, { "lineGroupId": 310, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9178208679593721, "position": { "x": 7, @@ -7961,10 +14309,10 @@ }, { "lineGroupId": 310, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5996, - "time": 0.9215143120960296, + "noteOrder": 5998, + "time": 0.9215143120960295, "position": { "x": 3, "y": 0 @@ -7984,10 +14332,10 @@ }, { "lineGroupId": 310, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6008, - "time": 0.9233610341643583, + "noteOrder": 6010, + "time": 0.9233610341643582, "position": { "x": 3, "y": 0 diff --git a/tracks/I Like To BOUNCE/266_difficulty_1b.json b/tracks/I Like To BOUNCE/266_difficulty_1b.json index 1e71071c..0bfcf7ba 100644 --- a/tracks/I Like To BOUNCE/266_difficulty_1b.json +++ b/tracks/I Like To BOUNCE/266_difficulty_1b.json @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.0443213296398892, "position": { "x": 7, @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.04801477377654663, + "noteOrder": 313, + "time": 0.04801477377654662, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.05170821791320406, "position": { "x": 6, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.055401662049861494, "position": { "x": 4, @@ -174,7 +174,7 @@ }, { "noteOrder": 433, - "time": 0.0664819944598338, + "time": 0.06648199445983378, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 529, - "time": 0.08125577100646353, + "time": 0.08125577100646351, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 553, - "time": 0.08494921514312095, + "time": 0.08494921514312097, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 625, - "time": 0.09602954755309326, + "time": 0.09602954755309324, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 649, - "time": 0.09972299168975068, + "time": 0.0997229916897507, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 697, - "time": 0.10710987996306556, + "time": 0.10710987996306555, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 793, - "time": 0.12188365650969529, + "time": 0.12188365650969528, "position": { "x": 5, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 841, - "time": 0.12927054478301017, + "time": 0.12927054478301014, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 841, - "time": 0.12927054478301017, + "time": 0.12927054478301014, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.13665743305632502, + "noteOrder": 890, + "time": 0.136657433056325, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 937, - "time": 0.14404432132963987, + "noteOrder": 938, + "time": 0.1440443213296399, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.15143120960295475, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.15512465373961218, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.15881809787626963, + "noteOrder": 1034, + "time": 0.1588180978762696, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.16620498614958448, + "noteOrder": 1082, + "time": 0.16620498614958445, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.1698984302862419, + "noteOrder": 1106, + "time": 0.16989843028624194, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1226, - "time": 0.1883656509695291, + "time": 0.18836565096952906, "position": { "x": 4, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1298, - "time": 0.19944598337950137, + "time": 0.1994459833795014, "position": { "x": 7, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1298, - "time": 0.19944598337950137, + "time": 0.1994459833795014, "position": { "x": 3, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1394, - "time": 0.21421975992613113, + "time": 0.2142197599261311, "position": { "x": 3, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1418, - "time": 0.21791320406278855, + "time": 0.21791320406278852, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2253000923361034, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23268698060941828, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.247460757156048, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.247460757156048, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1730, - "time": 0.2659279778393352, + "noteOrder": 1731, + "time": 0.26592797783933514, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.26962142197599265, + "noteOrder": 1755, + "time": 0.2696214219759926, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1778, - "time": 0.27331486611265005, + "noteOrder": 1779, + "time": 0.27331486611265, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.2770083102493075, "position": { "x": 3, @@ -1174,7 +1174,7 @@ }, { "noteOrder": 1995, - "time": 0.30655586334256696, + "time": 0.3065558633425669, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3139427516158818, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.3139427516158818, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.31763619575253926, + "noteOrder": 2068, + "time": 0.3176361957525392, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.31763619575253926, + "noteOrder": 2068, + "time": 0.3176361957525392, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3213296398891967, + "noteOrder": 2092, + "time": 0.32132963988919666, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3213296398891967, + "noteOrder": 2092, + "time": 0.32132963988919666, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.3250230840258541, + "noteOrder": 2116, + "time": 0.32502308402585406, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.32871652816251157, + "noteOrder": 2140, + "time": 0.3287165281625115, "position": { "x": 5, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.33240997229916897, + "noteOrder": 2164, + "time": 0.3324099722991689, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.3361034164358264, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.3361034164358264, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.3545706371191136, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.358264081255771, + "noteOrder": 2332, + "time": 0.35826408125577097, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.3619575253924284, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.3656509695290859, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.3693444136657433, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.3730378578024008, + "noteOrder": 2428, + "time": 0.37303785780240073, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3767313019390582, + "noteOrder": 2452, + "time": 0.3767313019390581, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2475, - "time": 0.38042474607571564, + "noteOrder": 2476, + "time": 0.3804247460757156, "position": { "x": 3, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.3878116343490305, + "noteOrder": 2524, + "time": 0.38781163434903043, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.39519852262234534, + "noteOrder": 2572, + "time": 0.3951985226223453, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2596, - "time": 0.39889196675900274, + "noteOrder": 2597, + "time": 0.3988919667590028, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.40258541089566025, + "noteOrder": 2621, + "time": 0.4025854108956602, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.40627885503231764, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.4099722991689751, + "noteOrder": 2669, + "time": 0.40997229916897504, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.41735918744228995, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.4247460757156048, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.42843951985226225, + "noteOrder": 2789, + "time": 0.4284395198522622, "position": { "x": 3, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4321329639889197, + "noteOrder": 2813, + "time": 0.43213296398891965, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4358264081255771, + "noteOrder": 2837, + "time": 0.43582640812557705, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.43951985226223456, + "noteOrder": 2861, + "time": 0.4395198522622345, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.4469067405355494, + "noteOrder": 2909, + "time": 0.44690674053554935, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.45429362880886426, + "noteOrder": 2957, + "time": 0.4542936288088642, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2980, + "noteOrder": 2981, "time": 0.4579870729455217, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.46168051708217916, + "noteOrder": 3005, + "time": 0.4616805170821791, "position": { "x": 5, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.46537396121883656, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3053, "time": 0.469067405355494, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.47645429362880887, "position": { "x": 5, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.4838411819021238, + "noteOrder": 3149, + "time": 0.4838411819021237, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.5318559556786704, + "noteOrder": 3462, + "time": 0.5318559556786703, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3486, "time": 0.5355493998153278, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3845, + "noteOrder": 3847, "time": 0.5909510618651893, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3869, - "time": 0.5946445060018467, + "noteOrder": 3871, + "time": 0.5946445060018466, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3893, - "time": 0.5983379501385042, + "noteOrder": 3895, + "time": 0.5983379501385041, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3917, - "time": 0.6020313942751616, + "noteOrder": 3919, + "time": 0.6020313942751615, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6131117266851339, + "noteOrder": 3991, + "time": 0.6131117266851338, "position": { "x": 6, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6131117266851339, + "noteOrder": 3991, + "time": 0.6131117266851338, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.6241920590951061, + "noteOrder": 4063, + "time": 0.6241920590951062, "position": { "x": 5, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4087, "time": 0.6278855032317636, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4111, "time": 0.631578947368421, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4159, "time": 0.6389658356417359, "position": { "x": 5, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6426592797783934, + "noteOrder": 4183, + "time": 0.6426592797783933, "position": { "x": 6, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4207, "time": 0.6463527239150508, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4230, - "time": 0.6500461680517082, + "noteOrder": 4231, + "time": 0.6500461680517081, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4255, "time": 0.6537396121883656, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.6574330563250231, + "noteOrder": 4279, + "time": 0.657433056325023, "position": { "x": 3, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.6611265004616805, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4446, + "noteOrder": 4448, "time": 0.683287165281625, "position": { "x": 5, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4472, "time": 0.6869806094182825, "position": { "x": 6, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.69067405355494, + "noteOrder": 4496, + "time": 0.6906740535549399, "position": { "x": 5, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.6980609418282548, + "noteOrder": 4544, + "time": 0.6980609418282547, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7017543859649124, + "noteOrder": 4568, + "time": 0.7017543859649122, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4590, - "time": 0.7054478301015698, + "noteOrder": 4592, + "time": 0.7054478301015696, "position": { "x": 5, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.7091412742382271, "position": { "x": 3, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4638, + "noteOrder": 4640, "time": 0.7128347183748845, "position": { "x": 4, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.716528162511542, + "noteOrder": 4664, + "time": 0.7165281625115419, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.7202216066481995, + "noteOrder": 4688, + "time": 0.7202216066481993, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.7349953831948292, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.7349953831948292, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.742382271468144, + "noteOrder": 4832, + "time": 0.7423822714681441, "position": { "x": 6, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.749769159741459, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.7571560480147739, + "noteOrder": 4929, + "time": 0.7571560480147738, "position": { "x": 2, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7645429362880887, "position": { "x": 8, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.7682363804247461, + "noteOrder": 5001, + "time": 0.768236380424746, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.7719298245614035, "position": { "x": 4, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.775623268698061, + "noteOrder": 5049, + "time": 0.7756232686980609, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5071, + "noteOrder": 5073, "time": 0.7793167128347184, "position": { "x": 6, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5095, + "noteOrder": 5097, "time": 0.7830101569713758, "position": { "x": 3, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5121, "time": 0.7867036011080332, "position": { "x": 5, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5143, - "time": 0.7903970452446907, + "noteOrder": 5145, + "time": 0.7903970452446906, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7940904893813481, "position": { "x": 6, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7940904893813481, "position": { "x": 4, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.8014773776546631, + "noteOrder": 5217, + "time": 0.8014773776546629, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8088642659279779, + "noteOrder": 5265, + "time": 0.8088642659279778, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5311, - "time": 0.8162511542012928, + "noteOrder": 5313, + "time": 0.8162511542012927, "position": { "x": 8, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.8236380424746076, + "noteOrder": 5361, + "time": 0.8236380424746075, "position": { "x": 2, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.827331486611265, "position": { "x": 7, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.8310249307479225, + "noteOrder": 5409, + "time": 0.8310249307479224, "position": { "x": 6, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5431, + "noteOrder": 5433, "time": 0.8347183748845799, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5455, - "time": 0.8384118190212373, + "noteOrder": 5458, + "time": 0.8384118190212372, "position": { "x": 4, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5479, + "noteOrder": 5482, "time": 0.8421052631578947, "position": { "x": 7, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5503, - "time": 0.8457987072945522, + "noteOrder": 5506, + "time": 0.8457987072945521, "position": { "x": 5, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5530, "time": 0.8494921514312096, "position": { "x": 3, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5552, - "time": 0.853185595567867, + "noteOrder": 5554, + "time": 0.8531855955678669, "position": { "x": 4, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5552, - "time": 0.853185595567867, + "noteOrder": 5554, + "time": 0.8531855955678669, "position": { "x": 6, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5672, - "time": 0.8716528162511542, + "noteOrder": 5674, + "time": 0.8716528162511541, "position": { "x": 3, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5696, - "time": 0.8753462603878117, + "noteOrder": 5698, + "time": 0.8753462603878116, "position": { "x": 4, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5720, - "time": 0.8790397045244691, + "noteOrder": 5722, + "time": 0.879039704524469, "position": { "x": 6, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5744, + "noteOrder": 5746, "time": 0.8827331486611265, "position": { "x": 7, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5768, + "noteOrder": 5770, "time": 0.8864265927977839, "position": { "x": 7, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5792, - "time": 0.8901200369344414, + "noteOrder": 5794, + "time": 0.8901200369344413, "position": { "x": 6, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5816, - "time": 0.8938134810710988, + "noteOrder": 5818, + "time": 0.8938134810710987, "position": { "x": 4, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5840, + "noteOrder": 5842, "time": 0.8975069252077562, "position": { "x": 3, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5888, - "time": 0.9048938134810711, + "noteOrder": 5890, + "time": 0.904893813481071, "position": { "x": 4, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5936, - "time": 0.912280701754386, + "noteOrder": 5938, + "time": 0.9122807017543859, "position": { "x": 6, "y": 0 @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5960, + "noteOrder": 5962, "time": 0.9159741458910434, "position": { "x": 3, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5984, - "time": 0.9196675900277009, + "noteOrder": 5986, + "time": 0.9196675900277008, "position": { "x": 7, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6008, - "time": 0.9233610341643583, + "noteOrder": 6010, + "time": 0.9233610341643582, "position": { "x": 4, "y": 0 @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6008, - "time": 0.9233610341643583, + "noteOrder": 6010, + "time": 0.9233610341643582, "position": { "x": 6, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9270544783010157, + "noteOrder": 6035, + "time": 0.9270544783010156, "position": { "x": 3, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9270544783010157, + "noteOrder": 6035, + "time": 0.9270544783010156, "position": { "x": 7, "y": 0 @@ -3416,7 +3416,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.014773776546629732, @@ -3439,7 +3439,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.0221606648199446, @@ -3462,7 +3462,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.029547553093259463, @@ -3485,7 +3485,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.03693444136657433, @@ -3508,7 +3508,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.07386888273314866, @@ -3531,7 +3531,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, "time": 0.0886426592797784, @@ -3554,7 +3554,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.0886426592797784, @@ -3577,7 +3577,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.10341643582640812, @@ -3600,10 +3600,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.1329639889196676, + "noteOrder": 866, + "time": 0.13296398891966757, "position": { "x": 7, "y": 0 @@ -3623,10 +3623,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.13665743305632502, + "noteOrder": 890, + "time": 0.136657433056325, "position": { "x": 7, "y": 0 @@ -3646,9 +3646,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.14035087719298245, "position": { "x": 3, @@ -3669,10 +3669,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.14404432132963987, + "noteOrder": 938, + "time": 0.1440443213296399, "position": { "x": 3, "y": 0 @@ -3692,9 +3692,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.14773776546629733, "position": { "x": 7, @@ -3715,10 +3715,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.16251154201292706, + "noteOrder": 1058, + "time": 0.16251154201292703, "position": { "x": 7, "y": 0 @@ -3738,10 +3738,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.16251154201292706, + "noteOrder": 1058, + "time": 0.16251154201292703, "position": { "x": 3, "y": 0 @@ -3761,7 +3761,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1154, "time": 0.1772853185595568, @@ -3784,9 +3784,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.22160664819944598, "position": { "x": 7, @@ -3807,9 +3807,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.2253000923361034, "position": { "x": 7, @@ -3830,9 +3830,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.22899353647276086, "position": { "x": 3, @@ -3853,9 +3853,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.23268698060941828, "position": { "x": 3, @@ -3876,9 +3876,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2363804247460757, "position": { "x": 7, @@ -3899,10 +3899,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, - "time": 0.24376731301939059, + "noteOrder": 1587, + "time": 0.24376731301939056, "position": { "x": 7, "y": 0 @@ -3922,9 +3922,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2363804247460757, "position": { "x": 3, @@ -3945,10 +3945,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, - "time": 0.24376731301939059, + "noteOrder": 1587, + "time": 0.24376731301939056, "position": { "x": 3, "y": 0 @@ -3968,9 +3968,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.25115420129270544, "position": { "x": 7, @@ -3990,13 +3990,1301 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25484764542936283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1659, + "time": 0.25484764542936283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2585410895660203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26223453370267774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1707, + "time": 0.26223453370267774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26592797783933514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26592797783933514, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2807017543859649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28439519852262235, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1851, + "time": 0.28439519852262235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1875, + "time": 0.2880886426592798, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2917820867959372, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1899, + "time": 0.2917820867959372, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.29547553093259465, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1935, + "time": 0.2973222530009233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1935, + "time": 0.2973222530009233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.29916897506925205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.30101569713758075, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1959, + "time": 0.30101569713758075, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.384118190212373, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2524, + "time": 0.38781163434903043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2548, + "time": 0.3915050784856879, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2572, + "time": 0.3951985226223453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.4136657433056325, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2717, + "time": 0.41735918744228995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.42105263157894735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4247460757156048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.44321329639889195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2909, + "time": 0.44690674053554935, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2933, + "time": 0.4506001846722068, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2957, + "time": 0.4542936288088642, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.4727608494921514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3101, + "time": 0.47645429362880887, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3125, + "time": 0.48014773776546626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4838411819021237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.4875346260387811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3198, + "time": 0.49122807017543857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3198, + "time": 0.49122807017543857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3222, + "time": 0.494921514312096, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3222, + "time": 0.494921514312096, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.494921514312096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3246, + "time": 0.4986149584487534, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3246, + "time": 0.4986149584487534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5023084025854109, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5023084025854109, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5023084025854109, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5060018467220683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5060018467220683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5096952908587257, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5096952908587257, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5096952908587257, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5133887349953832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5133887349953832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5170821791320406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1682, - "time": 0.25854108956602034, + "noteOrder": 3366, + "time": 0.5170821791320406, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4013,13 +5301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2807017543859649, + "noteOrder": 3366, + "time": 0.5170821791320406, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4031,16 +5319,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.28808864265927975, + "noteOrder": 3390, + "time": 0.5207756232686981, "position": { "x": 7, "y": 0 @@ -4059,13 +5347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1923, - "time": 0.29547553093259465, + "noteOrder": 3390, + "time": 0.5207756232686981, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4077,18 +5365,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1947, - "time": 0.2991689750692521, + "noteOrder": 3414, + "time": 0.5244690674053555, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4100,16 +5388,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.38411819021237303, + "noteOrder": 3438, + "time": 0.5281625115420129, "position": { "x": 3, "y": 0 @@ -4128,13 +5416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2523, - "time": 0.3878116343490305, + "noteOrder": 3438, + "time": 0.5281625115420129, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4151,13 +5439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2547, - "time": 0.3915050784856879, + "noteOrder": 3510, + "time": 0.5392428439519852, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4174,13 +5462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2571, - "time": 0.39519852262234534, + "noteOrder": 3534, + "time": 0.5429362880886426, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4197,11 +5485,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.4136657433056325, + "noteOrder": 3510, + "time": 0.5392428439519852, "position": { "x": 4, "y": 0 @@ -4220,11 +5508,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2716, - "time": 0.41735918744228995, + "noteOrder": 3534, + "time": 0.5429362880886426, "position": { "x": 4, "y": 0 @@ -4243,13 +5531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, - "time": 0.42105263157894735, + "noteOrder": 3558, + "time": 0.5466297322253, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4261,18 +5549,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2764, - "time": 0.4247460757156048, + "noteOrder": 3582, + "time": 0.5503231763619575, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4284,18 +5572,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2884, - "time": 0.44321329639889195, + "noteOrder": 3582, + "time": 0.5503231763619575, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4307,18 +5595,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2908, - "time": 0.4469067405355494, + "noteOrder": 3606, + "time": 0.554016620498615, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4330,18 +5618,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2932, - "time": 0.4506001846722068, + "noteOrder": 3606, + "time": 0.554016620498615, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4358,11 +5646,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 2956, - "time": 0.45429362880886426, + "noteOrder": 3606, + "time": 0.554016620498615, "position": { "x": 3, "y": 0 @@ -4376,18 +5664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3076, - "time": 0.4727608494921514, + "noteOrder": 3630, + "time": 0.5577100646352724, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4404,13 +5692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3100, - "time": 0.47645429362880887, + "noteOrder": 3630, + "time": 0.5577100646352724, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4427,11 +5715,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3124, - "time": 0.48014773776546626, + "noteOrder": 3654, + "time": 0.5614035087719298, "position": { "x": 4, "y": 0 @@ -4445,18 +5733,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3148, - "time": 0.4838411819021238, + "noteOrder": 3654, + "time": 0.5614035087719298, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4468,18 +5756,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3172, - "time": 0.48753462603878117, + "noteOrder": 3654, + "time": 0.5614035087719298, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4491,18 +5779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3220, - "time": 0.494921514312096, + "noteOrder": 3678, + "time": 0.5650969529085872, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4519,13 +5807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3268, - "time": 0.5023084025854109, + "noteOrder": 3678, + "time": 0.5650969529085872, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4537,18 +5825,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3316, - "time": 0.5096952908587258, + "noteOrder": 3702, + "time": 0.5687903970452447, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4565,13 +5853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3365, - "time": 0.5170821791320407, + "noteOrder": 3702, + "time": 0.5687903970452447, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4583,16 +5871,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3413, - "time": 0.5244690674053555, + "noteOrder": 3702, + "time": 0.5687903970452447, "position": { "x": 3, "y": 0 @@ -4606,18 +5894,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3509, - "time": 0.5392428439519853, + "noteOrder": 3727, + "time": 0.5724838411819021, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4634,13 +5922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3533, - "time": 0.5429362880886427, + "noteOrder": 3727, + "time": 0.5724838411819021, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4657,11 +5945,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3509, - "time": 0.5392428439519853, + "noteOrder": 3751, + "time": 0.5761772853185596, "position": { "x": 4, "y": 0 @@ -4675,18 +5963,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3533, - "time": 0.5429362880886427, + "noteOrder": 3751, + "time": 0.5761772853185596, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4698,16 +5986,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.5466297322253001, + "noteOrder": 3751, + "time": 0.5761772853185596, "position": { "x": 3, "y": 0 @@ -4726,11 +6014,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.554016620498615, + "noteOrder": 3775, + "time": 0.5798707294552169, "position": { "x": 3, "y": 0 @@ -4744,18 +6032,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3653, - "time": 0.5614035087719298, + "noteOrder": 3775, + "time": 0.5798707294552169, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4772,13 +6060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3701, - "time": 0.5687903970452447, + "noteOrder": 3799, + "time": 0.5835641735918744, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4795,13 +6083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.5761772853185595, + "noteOrder": 3823, + "time": 0.5872576177285318, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4813,18 +6101,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3797, - "time": 0.5835641735918745, + "noteOrder": 3823, + "time": 0.5872576177285318, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4842,9 +6130,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.605724838411819, "position": { "x": 6, @@ -4865,9 +6153,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3965, + "noteOrder": 3967, "time": 0.6094182825484764, "position": { "x": 6, @@ -4888,9 +6176,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.605724838411819, "position": { "x": 4, @@ -4911,9 +6199,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3965, + "noteOrder": 3967, "time": 0.6094182825484764, "position": { "x": 4, @@ -4934,9 +6222,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4037, + "noteOrder": 4039, "time": 0.6204986149584487, "position": { "x": 7, @@ -4957,10 +6245,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4134, - "time": 0.6352723915050785, + "noteOrder": 4135, + "time": 0.6352723915050784, "position": { "x": 7, "y": 0 @@ -4980,10 +6268,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.6352723915050785, + "noteOrder": 4135, + "time": 0.6352723915050784, "position": { "x": 3, "y": 0 @@ -5003,10 +6291,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, - "time": 0.6500461680517082, + "noteOrder": 4231, + "time": 0.6500461680517081, "position": { "x": 3, "y": 0 @@ -5026,10 +6314,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.6648199445983379, + "noteOrder": 4328, + "time": 0.6648199445983378, "position": { "x": 7, "y": 0 @@ -5049,9 +6337,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4374, + "noteOrder": 4376, "time": 0.6722068328716528, "position": { "x": 7, @@ -5072,9 +6360,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.6685133887349953, "position": { "x": 3, @@ -5095,9 +6383,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4374, + "noteOrder": 4376, "time": 0.6722068328716528, "position": { "x": 3, @@ -5118,10 +6406,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4422, - "time": 0.6795937211449676, + "noteOrder": 4424, + "time": 0.6795937211449677, "position": { "x": 3, "y": 0 @@ -5141,9 +6429,9 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4520, "time": 0.6943674976915974, "position": { "x": 3, @@ -5164,9 +6452,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4520, "time": 0.6943674976915974, "position": { "x": 7, @@ -5187,9 +6475,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.7091412742382271, "position": { "x": 7, @@ -5210,9 +6498,9 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.7239150507848569, "position": { "x": 3, @@ -5233,9 +6521,9 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, + "noteOrder": 4760, "time": 0.7313019390581718, "position": { "x": 3, @@ -5256,9 +6544,9 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4734, + "noteOrder": 4736, "time": 0.7276084949215142, "position": { "x": 7, @@ -5279,9 +6567,9 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, + "noteOrder": 4760, "time": 0.7313019390581718, "position": { "x": 7, @@ -5302,9 +6590,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, + "noteOrder": 4808, "time": 0.7386888273314866, "position": { "x": 4, @@ -5325,10 +6613,10 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4831, - "time": 0.742382271468144, + "noteOrder": 4832, + "time": 0.7423822714681441, "position": { "x": 4, "y": 0 @@ -5348,10 +6636,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4855, - "time": 0.7460757156048016, + "noteOrder": 4856, + "time": 0.7460757156048015, "position": { "x": 6, "y": 0 @@ -5371,9 +6659,9 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.749769159741459, "position": { "x": 6, @@ -5394,10 +6682,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4903, - "time": 0.7534626038781164, + "noteOrder": 4905, + "time": 0.7534626038781163, "position": { "x": 4, "y": 0 @@ -5417,10 +6705,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.7571560480147739, + "noteOrder": 4929, + "time": 0.7571560480147738, "position": { "x": 4, "y": 0 @@ -5440,10 +6728,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.7608494921514313, + "noteOrder": 4953, + "time": 0.7608494921514312, "position": { "x": 6, "y": 0 @@ -5463,9 +6751,9 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.7645429362880887, "position": { "x": 6, @@ -5486,10 +6774,10 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, - "time": 0.7977839335180055, + "noteOrder": 5193, + "time": 0.7977839335180056, "position": { "x": 6, "y": 0 @@ -5509,10 +6797,10 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5215, - "time": 0.8014773776546631, + "noteOrder": 5217, + "time": 0.8014773776546629, "position": { "x": 6, "y": 0 @@ -5532,10 +6820,10 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5239, - "time": 0.8051708217913205, + "noteOrder": 5241, + "time": 0.8051708217913204, "position": { "x": 4, "y": 0 @@ -5555,10 +6843,10 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5263, - "time": 0.8088642659279779, + "noteOrder": 5265, + "time": 0.8088642659279778, "position": { "x": 4, "y": 0 @@ -5578,9 +6866,9 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.8125577100646353, "position": { "x": 6, @@ -5601,10 +6889,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5311, - "time": 0.8162511542012928, + "noteOrder": 5313, + "time": 0.8162511542012927, "position": { "x": 6, "y": 0 @@ -5624,10 +6912,10 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5335, - "time": 0.8199445983379502, + "noteOrder": 5337, + "time": 0.8199445983379501, "position": { "x": 4, "y": 0 @@ -5647,10 +6935,10 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5359, - "time": 0.8236380424746076, + "noteOrder": 5361, + "time": 0.8236380424746075, "position": { "x": 4, "y": 0 @@ -5670,10 +6958,10 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5576, - "time": 0.8568790397045245, + "noteOrder": 5578, + "time": 0.8568790397045244, "position": { "x": 6, "y": 0 @@ -5693,9 +6981,9 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5648, + "noteOrder": 5650, "time": 0.8679593721144968, "position": { "x": 6, @@ -5716,10 +7004,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5576, - "time": 0.8568790397045245, + "noteOrder": 5578, + "time": 0.8568790397045244, "position": { "x": 4, "y": 0 @@ -5739,9 +7027,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5648, + "noteOrder": 5650, "time": 0.8679593721144968, "position": { "x": 4, @@ -5762,9 +7050,9 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5864, + "noteOrder": 5866, "time": 0.9012003693444136, "position": { "x": 3, @@ -5785,10 +7073,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5888, - "time": 0.9048938134810711, + "noteOrder": 5890, + "time": 0.904893813481071, "position": { "x": 3, "y": 0 @@ -5808,10 +7096,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5912, - "time": 0.9085872576177285, + "noteOrder": 5914, + "time": 0.9085872576177284, "position": { "x": 7, "y": 0 @@ -5831,10 +7119,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5936, - "time": 0.912280701754386, + "noteOrder": 5938, + "time": 0.9122807017543859, "position": { "x": 7, "y": 0 diff --git a/tracks/I Like To BOUNCE/info.json b/tracks/I Like To BOUNCE/info.json index 88a9bb59..de6e8dcd 100644 --- a/tracks/I Like To BOUNCE/info.json +++ b/tracks/I Like To BOUNCE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "I Like To BOUNCE", - "SongLength": "131.395918", + "SongLength": "121.443265", "SongAuthorName": "BEMANI Sound Team \"Sota Fujimori Final Season\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Ideal Sunset/276_difficulty_1a.json b/tracks/Ideal Sunset/276_difficulty_1a.json index fab10277..6c12d251 100644 --- a/tracks/Ideal Sunset/276_difficulty_1a.json +++ b/tracks/Ideal Sunset/276_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.02002503128911139, + "time": 0.020025031289111386, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 170, - "time": 0.035043804755944936, + "time": 0.03504380475594493, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 194, - "time": 0.04005006257822278, + "time": 0.04005006257822277, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 267, - "time": 0.05506883604505632, + "time": 0.055068836045056316, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 291, - "time": 0.060075093867334166, + "time": 0.06007509386733417, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 364, - "time": 0.07509386733416772, + "time": 0.0750938673341677, "position": { "x": 5, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 388, - "time": 0.08010012515644556, + "noteOrder": 389, + "time": 0.08010012515644555, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 510, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 534, - "time": 0.11013767209011265, + "time": 0.11013767209011263, "position": { "x": 5, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.1151439299123905, + "noteOrder": 559, + "time": 0.11514392991239047, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 631, - "time": 0.13016270337922406, + "time": 0.13016270337922403, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.13516896120150187, "position": { "x": 3, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 728, - "time": 0.15018773466833543, + "noteOrder": 729, + "time": 0.1501877346683354, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 801, - "time": 0.165206508135169, + "noteOrder": 802, + "time": 0.16520650813516896, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 801, - "time": 0.165206508135169, + "noteOrder": 802, + "time": 0.16520650813516896, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 898, - "time": 0.18523153942428036, + "noteOrder": 899, + "time": 0.18523153942428033, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 947, - "time": 0.19524405506883605, + "time": 0.19524405506883602, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 995, + "noteOrder": 996, "time": 0.20525657071339176, "position": { "x": 5, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1165, - "time": 0.24030037546933666, + "noteOrder": 1166, + "time": 0.2403003754693367, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1190, - "time": 0.24530663329161453, + "time": 0.2453066332916145, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1238, + "noteOrder": 1239, "time": 0.2553191489361702, "position": { "x": 4, @@ -614,7 +614,7 @@ }, { "noteOrder": 1287, - "time": 0.26533166458072593, + "time": 0.2653316645807259, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1311, + "noteOrder": 1312, "time": 0.27033792240300375, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1335, + "noteOrder": 1336, "time": 0.2753441802252816, "position": { "x": 7, @@ -694,7 +694,7 @@ }, { "noteOrder": 1554, - "time": 0.32040050062578224, + "time": 0.3204005006257822, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1578, - "time": 0.32540675844806005, + "noteOrder": 1579, + "time": 0.3254067584480601, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1602, - "time": 0.330413016270338, + "noteOrder": 1603, + "time": 0.3304130162703379, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1627, - "time": 0.3354192740926158, + "time": 0.33541927409261574, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1821, + "noteOrder": 1822, "time": 0.3754693366708386, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1869, - "time": 0.3854818523153943, + "noteOrder": 1870, + "time": 0.3854818523153942, "position": { "x": 5, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1894, - "time": 0.3904881101376721, + "time": 0.39048811013767204, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1918, + "noteOrder": 1919, "time": 0.39549436795994997, "position": { "x": 2, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1942, + "noteOrder": 1943, "time": 0.4005006257822278, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1966, - "time": 0.4055068836045057, + "noteOrder": 1967, + "time": 0.4055068836045056, "position": { "x": 2, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1991, + "noteOrder": 1992, "time": 0.4105131414267835, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2016, "time": 0.41551939924906134, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2209, - "time": 0.45556946182728414, + "noteOrder": 2210, + "time": 0.4555694618272841, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.4655819774718398, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.47058823529411764, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.4755944931163955, + "noteOrder": 2307, + "time": 0.47559449311639546, "position": { "x": 8, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.4806007509386733, + "noteOrder": 2332, + "time": 0.4806007509386734, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.48560700876095125, + "noteOrder": 2356, + "time": 0.4856070087609512, "position": { "x": 8, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.49061326658322907, + "noteOrder": 2380, + "time": 0.490613266583229, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.49561952440550694, + "noteOrder": 2405, + "time": 0.49561952440550683, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2464, + "noteOrder": 2465, "time": 0.5081351689612015, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2501, + "noteOrder": 2502, "time": 0.5156445556946183, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.528160200250313, + "noteOrder": 2562, + "time": 0.5281602002503129, "position": { "x": 5, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2598, + "noteOrder": 2599, "time": 0.5356695869837297, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2695, + "noteOrder": 2696, "time": 0.5556946182728411, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2743, - "time": 0.5657071339173968, + "noteOrder": 2745, + "time": 0.5657071339173967, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2743, - "time": 0.5657071339173968, + "noteOrder": 2745, + "time": 0.5657071339173967, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.5957446808510639, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3035, - "time": 0.6257822277847309, + "noteOrder": 3036, + "time": 0.6257822277847308, "position": { "x": 4, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3132, + "noteOrder": 3133, "time": 0.6458072590738423, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.6508135168961201, + "noteOrder": 3157, + "time": 0.6508135168961202, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.6508135168961201, + "noteOrder": 3157, + "time": 0.6508135168961202, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.6558197747183981, + "noteOrder": 3182, + "time": 0.6558197747183979, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.6558197747183981, + "noteOrder": 3182, + "time": 0.6558197747183979, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.6708385481852316, + "noteOrder": 3255, + "time": 0.6708385481852315, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3350, + "noteOrder": 3352, "time": 0.690863579474343, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3447, - "time": 0.7108886107634543, + "noteOrder": 3449, + "time": 0.7108886107634542, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3472, + "noteOrder": 3473, "time": 0.7158948685857321, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3545, + "noteOrder": 3546, "time": 0.7309136420525657, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3569, + "noteOrder": 3570, "time": 0.7359198998748436, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3666, - "time": 0.755944931163955, + "noteOrder": 3668, + "time": 0.7559449311639549, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3813, "time": 0.785982478097622, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3909, - "time": 0.8060075093867334, + "noteOrder": 3910, + "time": 0.8060075093867335, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4151, - "time": 0.856070087609512, + "noteOrder": 4153, + "time": 0.8560700876095119, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.8660826032540676, + "noteOrder": 4202, + "time": 0.8660826032540675, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4226, "time": 0.8710888610763454, "position": { "x": 4, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4249, - "time": 0.8760951188986232, + "noteOrder": 4250, + "time": 0.8760951188986233, "position": { "x": 2, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4273, - "time": 0.8811013767209012, + "noteOrder": 4275, + "time": 0.881101376720901, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 4299, "time": 0.886107634543179, "position": { "x": 2, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4323, "time": 0.8911138923654569, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4346, - "time": 0.8961201501877347, + "noteOrder": 4348, + "time": 0.8961201501877346, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4540, - "time": 0.9361702127659575, + "noteOrder": 4542, + "time": 0.9361702127659574, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.9461827284105132, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4613, - "time": 0.951188986232791, + "noteOrder": 4615, + "time": 0.9511889862327909, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4637, + "noteOrder": 4639, "time": 0.9561952440550688, "position": { "x": 8, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4661, - "time": 0.9612015018773467, + "noteOrder": 4663, + "time": 0.9612015018773468, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.9662077596996247, + "noteOrder": 4688, + "time": 0.9662077596996245, "position": { "x": 8, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.9712140175219025, + "noteOrder": 4712, + "time": 0.9712140175219024, "position": { "x": 3, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.9712140175219025, + "noteOrder": 4712, + "time": 0.9712140175219024, "position": { "x": 7, "y": 0 @@ -1876,7 +1876,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 121, "time": 0.025031289111389236, @@ -1899,10 +1899,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, - "time": 0.035043804755944936, + "time": 0.03504380475594493, "position": { "x": 5, "y": 0 @@ -1922,10 +1922,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 218, - "time": 0.04505632040050062, + "noteOrder": 219, + "time": 0.04505632040050063, "position": { "x": 5, "y": 0 @@ -1945,10 +1945,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, - "time": 0.05506883604505632, + "time": 0.055068836045056316, "position": { "x": 5, "y": 0 @@ -1968,10 +1968,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 316, - "time": 0.06508135168961203, + "time": 0.06508135168961202, "position": { "x": 3, "y": 0 @@ -1991,10 +1991,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.07008760951188987, + "time": 0.07008760951188986, "position": { "x": 7, "y": 0 @@ -2014,7 +2014,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 413, "time": 0.08510638297872342, @@ -2037,10 +2037,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 437, - "time": 0.09011264080100125, + "time": 0.09011264080100126, "position": { "x": 3, "y": 0 @@ -2060,10 +2060,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, - "time": 0.12015018773466833, + "time": 0.12015018773466835, "position": { "x": 5, "y": 0 @@ -2083,9 +2083,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 655, + "noteOrder": 656, "time": 0.13516896120150187, "position": { "x": 5, @@ -2106,10 +2106,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.14017521902377975, + "time": 0.14017521902377972, "position": { "x": 5, "y": 0 @@ -2129,7 +2129,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 753, "time": 0.15519399249061328, @@ -2152,10 +2152,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, - "time": 0.1802252816020025, + "time": 0.18022528160200252, "position": { "x": 7, "y": 0 @@ -2175,12 +2175,12 @@ }, { "lineGroupId": 30, - "indexInLine": 4, + "indexInLine": 2, "isSliding": false, - "noteOrder": 971, - "time": 0.2002503128911139, + "noteOrder": 887, + "time": 0.18272841051314143, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2197,13 +2197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 971, - "time": 0.2002503128911139, + "noteOrder": 887, + "time": 0.18272841051314143, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2215,18 +2215,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 4, "isSliding": false, - "noteOrder": 995, - "time": 0.20525657071339176, + "noteOrder": 899, + "time": 0.18523153942428033, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2238,18 +2238,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 2, + "lineGroupId": 30, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1020, - "time": 0.2102628285356696, + "noteOrder": 899, + "time": 0.18523153942428033, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2261,18 +2261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1020, - "time": 0.2102628285356696, + "noteOrder": 911, + "time": 0.1877346683354193, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2289,11 +2289,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1044, - "time": 0.21526908635794745, + "noteOrder": 911, + "time": 0.1877346683354193, "position": { "x": 6, "y": 0 @@ -2312,11 +2312,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1044, - "time": 0.21526908635794745, + "noteOrder": 972, + "time": 0.2002503128911139, "position": { "x": 4, "y": 0 @@ -2330,18 +2330,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1068, - "time": 0.2202753441802253, + "noteOrder": 972, + "time": 0.2002503128911139, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2358,11 +2358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1068, - "time": 0.2202753441802253, + "noteOrder": 996, + "time": 0.20525657071339176, "position": { "x": 3, "y": 0 @@ -2376,18 +2376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1092, - "time": 0.22528160200250316, + "noteOrder": 1020, + "time": 0.21026282853566958, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2404,13 +2404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1117, - "time": 0.230287859824781, + "noteOrder": 1020, + "time": 0.21026282853566958, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2427,13 +2427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1141, - "time": 0.23529411764705882, + "noteOrder": 1044, + "time": 0.21526908635794745, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2445,18 +2445,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, + "lineGroupId": 37, "indexInLine": 1, "isSliding": false, - "noteOrder": 1165, - "time": 0.24030037546933666, + "noteOrder": 1044, + "time": 0.21526908635794745, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2473,13 +2473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, + "lineGroupId": 37, "indexInLine": 2, "isSliding": false, - "noteOrder": 1238, - "time": 0.2553191489361702, + "noteOrder": 1069, + "time": 0.22027534418022526, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2496,11 +2496,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.2603254067584481, + "noteOrder": 1069, + "time": 0.22027534418022526, "position": { "x": 3, "y": 0 @@ -2514,18 +2514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 4, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1360, - "time": 0.2803504380475595, + "noteOrder": 1081, + "time": 0.22277847309136423, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2537,18 +2537,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1360, - "time": 0.2803504380475595, + "noteOrder": 1081, + "time": 0.22277847309136423, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2565,13 +2565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1384, - "time": 0.2853566958698373, + "noteOrder": 1093, + "time": 0.22528160200250313, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2588,13 +2588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 2, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1408, - "time": 0.2903629536921152, + "noteOrder": 1093, + "time": 0.22528160200250313, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2611,13 +2611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1408, - "time": 0.2903629536921152, + "noteOrder": 1093, + "time": 0.22528160200250313, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2634,13 +2634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1432, - "time": 0.29536921151439305, + "noteOrder": 1105, + "time": 0.22778473091364204, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2657,13 +2657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1432, - "time": 0.29536921151439305, + "noteOrder": 1105, + "time": 0.22778473091364204, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2675,18 +2675,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1457, - "time": 0.30037546933667086, + "noteOrder": 1117, + "time": 0.23028785982478095, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2698,18 +2698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1457, - "time": 0.30037546933667086, + "noteOrder": 1117, + "time": 0.23028785982478095, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2726,13 +2726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1481, - "time": 0.30538172715894873, + "noteOrder": 1117, + "time": 0.23028785982478095, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2749,13 +2749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1505, - "time": 0.31038798498122655, + "noteOrder": 1129, + "time": 0.2327909887359199, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2767,18 +2767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1529, - "time": 0.31539424280350437, + "noteOrder": 1129, + "time": 0.2327909887359199, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2795,13 +2795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1554, - "time": 0.32040050062578224, + "noteOrder": 1142, + "time": 0.23529411764705882, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2818,13 +2818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 2, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1627, - "time": 0.3354192740926158, + "noteOrder": 1142, + "time": 0.23529411764705882, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2841,11 +2841,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1651, - "time": 0.34042553191489366, + "noteOrder": 1142, + "time": 0.23529411764705882, "position": { "x": 3, "y": 0 @@ -2864,11 +2864,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1675, - "time": 0.3454317897371715, + "noteOrder": 1166, + "time": 0.2403003754693367, "position": { "x": 3, "y": 0 @@ -2882,18 +2882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1699, - "time": 0.35043804755944935, + "noteOrder": 1239, + "time": 0.2553191489361702, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2910,11 +2910,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1724, - "time": 0.35544430538172717, + "noteOrder": 1263, + "time": 0.26032540675844806, "position": { "x": 3, "y": 0 @@ -2928,16 +2928,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1748, - "time": 0.360450563204005, + "noteOrder": 1275, + "time": 0.26282853566958697, "position": { "x": 3, "y": 0 @@ -2956,13 +2956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1772, - "time": 0.36545682102628285, + "noteOrder": 1275, + "time": 0.26282853566958697, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2974,18 +2974,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1797, - "time": 0.3704630788485607, + "noteOrder": 1287, + "time": 0.2653316645807259, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3002,13 +3002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1845, - "time": 0.3804755944931164, + "noteOrder": 1287, + "time": 0.2653316645807259, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3020,18 +3020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1869, - "time": 0.3854818523153943, + "noteOrder": 1299, + "time": 0.26783479349186484, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3043,16 +3043,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1918, - "time": 0.39549436795994997, + "noteOrder": 1299, + "time": 0.26783479349186484, "position": { "x": 4, "y": 0 @@ -3066,18 +3066,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 3, + "lineGroupId": 46, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1942, - "time": 0.4005006257822278, + "noteOrder": 1360, + "time": 0.28035043804755944, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3089,18 +3089,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 4, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1966, - "time": 0.4055068836045057, + "noteOrder": 1360, + "time": 0.28035043804755944, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3117,11 +3117,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2039, - "time": 0.4205256570713392, + "noteOrder": 1384, + "time": 0.2853566958698373, "position": { "x": 7, "y": 0 @@ -3140,13 +3140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2064, - "time": 0.425531914893617, + "noteOrder": 1409, + "time": 0.2903629536921152, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3158,18 +3158,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2088, - "time": 0.4305381727158949, + "noteOrder": 1409, + "time": 0.2903629536921152, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3181,18 +3181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2112, - "time": 0.4355444305381727, + "noteOrder": 1433, + "time": 0.295369211514393, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3209,13 +3209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2136, - "time": 0.4405506883604506, + "noteOrder": 1433, + "time": 0.295369211514393, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3232,13 +3232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.44555694618272845, + "noteOrder": 1457, + "time": 0.3003754693366708, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3250,16 +3250,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2185, - "time": 0.4505632040050063, + "noteOrder": 1457, + "time": 0.3003754693366708, "position": { "x": 7, "y": 0 @@ -3273,18 +3273,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2234, - "time": 0.460575719649562, + "noteOrder": 1469, + "time": 0.30287859824780977, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3301,13 +3301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2258, - "time": 0.4655819774718398, + "noteOrder": 1469, + "time": 0.30287859824780977, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3324,11 +3324,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2306, - "time": 0.4755944931163955, + "noteOrder": 1482, + "time": 0.30538172715894873, "position": { "x": 6, "y": 0 @@ -3347,11 +3347,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 3, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2331, - "time": 0.4806007509386733, + "noteOrder": 1482, + "time": 0.30538172715894873, "position": { "x": 5, "y": 0 @@ -3370,13 +3370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 4, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2355, - "time": 0.48560700876095125, + "noteOrder": 1482, + "time": 0.30538172715894873, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3388,18 +3388,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.5056320400500626, + "noteOrder": 1494, + "time": 0.3078848560700876, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3416,13 +3416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2464, - "time": 0.5081351689612015, + "noteOrder": 1494, + "time": 0.3078848560700876, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3439,13 +3439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2488, - "time": 0.5131414267834794, + "noteOrder": 1506, + "time": 0.31038798498122655, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3462,13 +3462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2549, - "time": 0.525657071339174, + "noteOrder": 1506, + "time": 0.31038798498122655, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3480,16 +3480,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 2561, - "time": 0.528160200250313, + "noteOrder": 1506, + "time": 0.31038798498122655, "position": { "x": 7, "y": 0 @@ -3508,13 +3508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 56, "indexInLine": 2, "isSliding": false, - "noteOrder": 2586, - "time": 0.5331664580725908, + "noteOrder": 1518, + "time": 0.3128911138923654, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3531,13 +3531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2646, - "time": 0.5456821026282854, + "noteOrder": 1518, + "time": 0.3128911138923654, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3554,13 +3554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2671, - "time": 0.5506883604505632, + "noteOrder": 1530, + "time": 0.31539424280350437, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3577,11 +3577,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2671, - "time": 0.5506883604505632, + "noteOrder": 1530, + "time": 0.31539424280350437, "position": { "x": 5, "y": 0 @@ -3595,18 +3595,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 2695, - "time": 0.5556946182728411, + "noteOrder": 1530, + "time": 0.31539424280350437, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3623,11 +3623,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2768, - "time": 0.5707133917396746, + "noteOrder": 1554, + "time": 0.3204005006257822, "position": { "x": 7, "y": 0 @@ -3646,13 +3646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2792, - "time": 0.5757196495619524, + "noteOrder": 1627, + "time": 0.33541927409261574, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3664,18 +3664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2816, - "time": 0.5807259073842304, + "noteOrder": 1652, + "time": 0.34042553191489366, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3687,18 +3687,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2840, - "time": 0.5857321652065082, + "noteOrder": 1664, + "time": 0.3429286608260325, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3715,13 +3715,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2865, - "time": 0.5907384230287861, + "noteOrder": 1664, + "time": 0.3429286608260325, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3733,18 +3733,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2913, - "time": 0.6007509386733417, + "noteOrder": 1676, + "time": 0.3454317897371715, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3756,16 +3756,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2938, - "time": 0.6057571964956195, + "noteOrder": 1676, + "time": 0.3454317897371715, "position": { "x": 5, "y": 0 @@ -3779,18 +3779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2962, - "time": 0.6107634543178975, + "noteOrder": 1676, + "time": 0.3454317897371715, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3807,13 +3807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 3, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.6132665832290364, + "noteOrder": 1688, + "time": 0.34793491864831033, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3830,13 +3830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 4, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2986, - "time": 0.6157697121401753, + "noteOrder": 1688, + "time": 0.34793491864831033, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3853,11 +3853,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2913, - "time": 0.6007509386733417, + "noteOrder": 1700, + "time": 0.3504380475594493, "position": { "x": 4, "y": 0 @@ -3871,18 +3871,3675 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2938, - "time": 0.6057571964956195, + "noteOrder": 1700, + "time": 0.3504380475594493, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1700, + "time": 0.3504380475594493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1712, + "time": 0.35294117647058826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1712, + "time": 0.35294117647058826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1724, + "time": 0.3554443053817271, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1724, + "time": 0.3554443053817271, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1724, + "time": 0.3554443053817271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3579474342928661, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1737, + "time": 0.3579474342928661, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1749, + "time": 0.36045056320400504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1749, + "time": 0.36045056320400504, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1749, + "time": 0.36045056320400504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1761, + "time": 0.3629536921151439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1761, + "time": 0.3629536921151439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1773, + "time": 0.36545682102628285, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1785, + "time": 0.3679599499374218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1785, + "time": 0.3679599499374218, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1797, + "time": 0.37046307884856067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1809, + "time": 0.37296620775969963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1809, + "time": 0.37296620775969963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1822, + "time": 0.3754693366708386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1822, + "time": 0.3754693366708386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1846, + "time": 0.3804755944931164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1870, + "time": 0.3854818523153942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1919, + "time": 0.39549436795994997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1943, + "time": 0.4005006257822278, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1967, + "time": 0.4055068836045056, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2040, + "time": 0.42052565707133915, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2052, + "time": 0.4230287859824781, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2052, + "time": 0.4230287859824781, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2064, + "time": 0.42553191489361697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2064, + "time": 0.42553191489361697, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2064, + "time": 0.42553191489361697, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2077, + "time": 0.42803504380475593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2077, + "time": 0.42803504380475593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2089, + "time": 0.4305381727158949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2089, + "time": 0.4305381727158949, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2089, + "time": 0.4305381727158949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2101, + "time": 0.43304130162703375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2101, + "time": 0.43304130162703375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2113, + "time": 0.4355444305381727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2113, + "time": 0.4355444305381727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2113, + "time": 0.4355444305381727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2125, + "time": 0.4380475594493117, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2125, + "time": 0.4380475594493117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2137, + "time": 0.4405506883604505, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2137, + "time": 0.4405506883604505, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2137, + "time": 0.4405506883604505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.4430538172715895, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2150, + "time": 0.4430538172715895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.44555694618272845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2174, + "time": 0.4480600750938673, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2174, + "time": 0.4480600750938673, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2186, + "time": 0.45056320400500627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2198, + "time": 0.4530663329161451, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2198, + "time": 0.4530663329161451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2210, + "time": 0.4555694618272841, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2210, + "time": 0.4555694618272841, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2235, + "time": 0.4605757196495619, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2259, + "time": 0.4655819774718398, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2307, + "time": 0.47559449311639546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2332, + "time": 0.4806007509386734, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2356, + "time": 0.4856070087609512, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.5056320400500626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.5081351689612015, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2490, + "time": 0.5131414267834793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2550, + "time": 0.5256570713391739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2562, + "time": 0.5281602002503129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2587, + "time": 0.5331664580725907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2647, + "time": 0.5456821026282853, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2672, + "time": 0.5506883604505632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2672, + "time": 0.5506883604505632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2696, + "time": 0.5556946182728411, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2769, + "time": 0.5707133917396746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2781, + "time": 0.5732165206508135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2781, + "time": 0.5732165206508135, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2793, + "time": 0.5757196495619524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2805, + "time": 0.5782227784730913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2805, + "time": 0.5782227784730913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2817, + "time": 0.5807259073842304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2830, + "time": 0.5832290362953692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2830, + "time": 0.5832290362953692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2842, + "time": 0.5857321652065081, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2842, + "time": 0.5857321652065081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2842, + "time": 0.5857321652065081, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2854, + "time": 0.5882352941176471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2854, + "time": 0.5882352941176471, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2866, + "time": 0.590738423028786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2866, + "time": 0.590738423028786, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2866, + "time": 0.590738423028786, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2878, + "time": 0.5932415519399249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2878, + "time": 0.5932415519399249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6007509386733416, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2939, + "time": 0.6057571964956195, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2963, + "time": 0.6107634543178975, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2975, + "time": 0.6132665832290363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2987, + "time": 0.6157697121401752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6007509386733416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2939, + "time": 0.6057571964956195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2963, + "time": 0.6107634543178975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2975, + "time": 0.6132665832290363, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2987, + "time": 0.6157697121401752, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3012, + "time": 0.6207759699624531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3024, + "time": 0.623279098873592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3024, + "time": 0.623279098873592, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3036, + "time": 0.6257822277847308, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3036, + "time": 0.6257822277847308, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3060, + "time": 0.6307884856070087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3072, + "time": 0.6332916145181476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3072, + "time": 0.6332916145181476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3085, + "time": 0.6357947434292867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3097, + "time": 0.6382978723404256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3097, + "time": 0.6382978723404256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3109, + "time": 0.6408010012515644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3121, + "time": 0.6433041301627034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3121, + "time": 0.6433041301627034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3133, + "time": 0.6458072590738423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3133, + "time": 0.6458072590738423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3595, + "time": 0.7409261576971213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3607, + "time": 0.7434292866082602, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3607, + "time": 0.7434292866082602, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3619, + "time": 0.7459324155193993, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3619, + "time": 0.7459324155193993, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3619, + "time": 0.7459324155193993, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3631, + "time": 0.7484355444305382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3631, + "time": 0.7484355444305382, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3643, + "time": 0.7509386733416772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3643, + "time": 0.7509386733416772, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3643, + "time": 0.7509386733416772, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.753441802252816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3655, + "time": 0.753441802252816, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.7609511889862328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3716, + "time": 0.7659574468085105, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3740, + "time": 0.7709637046307884, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3753, + "time": 0.7734668335419274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3765, + "time": 0.7759699624530664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.7609511889862328, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3716, + "time": 0.7659574468085105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3740, + "time": 0.7709637046307884, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3753, + "time": 0.7734668335419274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3765, + "time": 0.7759699624530664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3789, + "time": 0.7809762202753441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3801, + "time": 0.7834793491864831, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3801, + "time": 0.7834793491864831, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3813, + "time": 0.785982478097622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3813, + "time": 0.785982478097622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3838, + "time": 0.7909887359198999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3850, + "time": 0.7934918648310388, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3850, + "time": 0.7934918648310388, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3862, + "time": 0.7959949937421776, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3874, + "time": 0.7984981226533167, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3874, + "time": 0.7984981226533167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3886, + "time": 0.8010012515644556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3898, + "time": 0.8035043804755945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3898, + "time": 0.8035043804755945, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3910, + "time": 0.8060075093867335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3910, + "time": 0.8060075093867335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3983, + "time": 0.821026282853567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4008, + "time": 0.8260325406758448, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4008, + "time": 0.8260325406758448, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3899,11 +7556,172 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4032, + "time": 0.8310387984981227, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4032, + "time": 0.8310387984981227, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4032, + "time": 0.8310387984981227, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, "indexInLine": 2, "isSliding": false, - "noteOrder": 2962, - "time": 0.6107634543178975, + "noteOrder": 4056, + "time": 0.8360450563204004, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4056, + "time": 0.8360450563204004, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4080, + "time": 0.8410513141426783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4093, + "time": 0.8435544430538172, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4093, + "time": 0.8435544430538172, "position": { "x": 4, "y": 0 @@ -3922,11 +7740,103 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 3, + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4105, + "time": 0.8460575719649562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4117, + "time": 0.8485607008760951, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4117, + "time": 0.8485607008760951, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4129, + "time": 0.8510638297872339, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.6132665832290364, + "noteOrder": 4141, + "time": 0.853566958698373, "position": { "x": 3, "y": 0 @@ -3945,11 +7855,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 4, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2986, - "time": 0.6157697121401753, + "noteOrder": 4141, + "time": 0.853566958698373, "position": { "x": 4, "y": 0 @@ -3968,13 +7878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3010, - "time": 0.6207759699624531, + "noteOrder": 4153, + "time": 0.8560700876095119, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3986,16 +7896,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3059, - "time": 0.6307884856070087, + "noteOrder": 4153, + "time": 0.8560700876095119, "position": { "x": 3, "y": 0 @@ -4014,11 +7924,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3083, - "time": 0.6357947434292867, + "noteOrder": 4178, + "time": 0.8610763454317898, "position": { "x": 7, "y": 0 @@ -4037,13 +7947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3108, - "time": 0.6408010012515645, + "noteOrder": 4202, + "time": 0.8660826032540675, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4055,18 +7965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3593, - "time": 0.7409261576971214, + "noteOrder": 4250, + "time": 0.8760951188986233, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4078,18 +7988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3617, - "time": 0.7459324155193994, + "noteOrder": 4275, + "time": 0.881101376720901, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4106,13 +8016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3642, - "time": 0.7509386733416772, + "noteOrder": 4299, + "time": 0.886107634543179, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4124,18 +8034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, - "time": 0.7609511889862328, + "noteOrder": 4372, + "time": 0.9011264080100125, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4147,18 +8057,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, - "time": 0.7659574468085107, + "noteOrder": 4384, + "time": 0.9036295369211514, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4170,18 +8080,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 2, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3739, - "time": 0.7709637046307886, + "noteOrder": 4384, + "time": 0.9036295369211514, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4193,18 +8103,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 3, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3751, - "time": 0.7734668335419275, + "noteOrder": 4396, + "time": 0.9061326658322902, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4216,18 +8126,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 4, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3763, - "time": 0.7759699624530664, + "noteOrder": 4396, + "time": 0.9061326658322902, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4239,18 +8149,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, - "time": 0.7609511889862328, + "noteOrder": 4396, + "time": 0.9061326658322902, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4262,16 +8172,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, - "time": 0.7659574468085107, + "noteOrder": 4408, + "time": 0.9086357947434293, "position": { "x": 7, "y": 0 @@ -4285,16 +8195,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 2, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3739, - "time": 0.7709637046307886, + "noteOrder": 4408, + "time": 0.9086357947434293, "position": { "x": 6, "y": 0 @@ -4308,18 +8218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 3, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3751, - "time": 0.7734668335419275, + "noteOrder": 4420, + "time": 0.9111389236545682, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4331,18 +8241,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 4, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3763, - "time": 0.7759699624530664, + "noteOrder": 4420, + "time": 0.9111389236545682, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4354,18 +8264,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3787, - "time": 0.7809762202753442, + "noteOrder": 4420, + "time": 0.9111389236545682, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4377,16 +8287,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3836, - "time": 0.7909887359198999, + "noteOrder": 4433, + "time": 0.9136420525657071, "position": { "x": 7, "y": 0 @@ -4405,13 +8315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3860, - "time": 0.7959949937421777, + "noteOrder": 4433, + "time": 0.9136420525657071, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4423,18 +8333,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3884, - "time": 0.8010012515644556, + "noteOrder": 4445, + "time": 0.9161451814768461, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4451,13 +8361,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3982, - "time": 0.821026282853567, + "noteOrder": 4445, + "time": 0.9161451814768461, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4469,18 +8379,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4030, - "time": 0.8310387984981227, + "noteOrder": 4445, + "time": 0.9161451814768461, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4492,18 +8402,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4079, - "time": 0.8410513141426784, + "noteOrder": 4457, + "time": 0.918648310387985, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4520,13 +8430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4103, - "time": 0.8460575719649562, + "noteOrder": 4457, + "time": 0.918648310387985, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4538,18 +8448,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4127, - "time": 0.851063829787234, + "noteOrder": 4469, + "time": 0.9211514392991238, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4566,13 +8476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4176, - "time": 0.8610763454317898, + "noteOrder": 4469, + "time": 0.9211514392991238, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4584,16 +8494,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 4200, - "time": 0.8660826032540676, + "noteOrder": 4469, + "time": 0.9211514392991238, "position": { "x": 7, "y": 0 @@ -4612,13 +8522,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 4249, - "time": 0.8760951188986232, + "noteOrder": 4481, + "time": 0.9236545682102628, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4635,13 +8545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 169, "indexInLine": 3, "isSliding": false, - "noteOrder": 4273, - "time": 0.8811013767209012, + "noteOrder": 4481, + "time": 0.9236545682102628, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4658,13 +8568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 4, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4297, - "time": 0.886107634543179, + "noteOrder": 4493, + "time": 0.9261576971214017, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4676,18 +8586,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.9011264080100126, + "noteOrder": 4505, + "time": 0.9286608260325406, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4699,18 +8609,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4394, - "time": 0.9061326658322905, + "noteOrder": 4505, + "time": 0.9286608260325406, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4727,11 +8637,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, - "time": 0.9111389236545683, + "noteOrder": 4518, + "time": 0.9311639549436797, "position": { "x": 7, "y": 0 @@ -4750,11 +8660,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4443, - "time": 0.9161451814768461, + "noteOrder": 4530, + "time": 0.9336670838548186, "position": { "x": 7, "y": 0 @@ -4768,18 +8678,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4467, - "time": 0.921151439299124, + "noteOrder": 4530, + "time": 0.9336670838548186, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4796,13 +8706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4491, - "time": 0.9261576971214018, + "noteOrder": 4542, + "time": 0.9361702127659574, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4814,16 +8724,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4516, - "time": 0.9311639549436797, + "noteOrder": 4542, + "time": 0.9361702127659574, "position": { "x": 7, "y": 0 @@ -4843,9 +8753,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.9411764705882353, "position": { "x": 3, @@ -4866,9 +8776,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.9461827284105132, "position": { "x": 3, @@ -4889,9 +8799,9 @@ }, { "lineGroupId": 173, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4637, + "noteOrder": 4639, "time": 0.9561952440550688, "position": { "x": 6, @@ -4912,10 +8822,10 @@ }, { "lineGroupId": 173, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4661, - "time": 0.9612015018773467, + "noteOrder": 4663, + "time": 0.9612015018773468, "position": { "x": 5, "y": 0 @@ -4935,10 +8845,10 @@ }, { "lineGroupId": 173, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4686, - "time": 0.9662077596996247, + "noteOrder": 4688, + "time": 0.9662077596996245, "position": { "x": 6, "y": 0 diff --git a/tracks/Ideal Sunset/276_difficulty_1b.json b/tracks/Ideal Sunset/276_difficulty_1b.json index 3e087838..88ba501f 100644 --- a/tracks/Ideal Sunset/276_difficulty_1b.json +++ b/tracks/Ideal Sunset/276_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.02002503128911139, + "time": 0.020025031289111386, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 194, - "time": 0.04005006257822278, + "time": 0.04005006257822277, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 291, - "time": 0.060075093867334166, + "time": 0.06007509386733417, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 340, - "time": 0.07008760951188987, + "time": 0.07008760951188986, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 364, - "time": 0.07509386733416772, + "time": 0.0750938673341677, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 388, - "time": 0.08010012515644556, + "noteOrder": 389, + "time": 0.08010012515644555, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 437, - "time": 0.09011264080100125, + "time": 0.09011264080100126, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 510, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 534, - "time": 0.11013767209011265, + "time": 0.11013767209011263, "position": { "x": 5, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.1151439299123905, + "noteOrder": 559, + "time": 0.11514392991239047, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 583, - "time": 0.12015018773466833, + "time": 0.12015018773466835, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 631, - "time": 0.13016270337922406, + "time": 0.13016270337922403, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 680, - "time": 0.14017521902377975, + "time": 0.14017521902377972, "position": { "x": 5, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 728, - "time": 0.15018773466833543, + "noteOrder": 729, + "time": 0.1501877346683354, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 971, + "noteOrder": 972, "time": 0.2002503128911139, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 995, + "noteOrder": 996, "time": 0.20525657071339176, "position": { "x": 5, @@ -454,7 +454,7 @@ }, { "noteOrder": 1020, - "time": 0.2102628285356696, + "time": 0.21026282853566958, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1165, - "time": 0.24030037546933666, + "noteOrder": 1166, + "time": 0.2403003754693367, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1190, - "time": 0.24530663329161453, + "time": 0.2453066332916145, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1238, + "noteOrder": 1239, "time": 0.2553191489361702, "position": { "x": 4, @@ -574,7 +574,7 @@ }, { "noteOrder": 1360, - "time": 0.2803504380475595, + "time": 0.28035043804755944, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1408, + "noteOrder": 1409, "time": 0.2903629536921152, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1432, - "time": 0.29536921151439305, + "noteOrder": 1433, + "time": 0.295369211514393, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1554, - "time": 0.32040050062578224, + "time": 0.3204005006257822, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1578, - "time": 0.32540675844806005, + "noteOrder": 1579, + "time": 0.3254067584480601, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1602, - "time": 0.330413016270338, + "noteOrder": 1603, + "time": 0.3304130162703379, "position": { "x": 4, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1627, - "time": 0.3354192740926158, + "time": 0.33541927409261574, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1797, - "time": 0.3704630788485607, + "time": 0.37046307884856067, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1821, + "noteOrder": 1822, "time": 0.3754693366708386, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1845, + "noteOrder": 1846, "time": 0.3804755944931164, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1869, - "time": 0.3854818523153943, + "noteOrder": 1870, + "time": 0.3854818523153942, "position": { "x": 6, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1894, - "time": 0.3904881101376721, + "time": 0.39048811013767204, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1918, + "noteOrder": 1919, "time": 0.39549436795994997, "position": { "x": 2, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1942, + "noteOrder": 1943, "time": 0.4005006257822278, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1966, - "time": 0.4055068836045057, + "noteOrder": 1967, + "time": 0.4055068836045056, "position": { "x": 2, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1991, + "noteOrder": 1992, "time": 0.4105131414267835, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2016, "time": 0.41551939924906134, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.4505632040050063, + "noteOrder": 2186, + "time": 0.45056320400500627, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2209, - "time": 0.45556946182728414, + "noteOrder": 2210, + "time": 0.4555694618272841, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2234, - "time": 0.460575719649562, + "noteOrder": 2235, + "time": 0.4605757196495619, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.4655819774718398, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.47058823529411764, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.4755944931163955, + "noteOrder": 2307, + "time": 0.47559449311639546, "position": { "x": 8, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.4806007509386733, + "noteOrder": 2332, + "time": 0.4806007509386734, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2355, - "time": 0.48560700876095125, + "noteOrder": 2356, + "time": 0.4856070087609512, "position": { "x": 8, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.49061326658322907, + "noteOrder": 2380, + "time": 0.490613266583229, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.49561952440550694, + "noteOrder": 2405, + "time": 0.49561952440550683, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2646, - "time": 0.5456821026282854, + "noteOrder": 2647, + "time": 0.5456821026282853, "position": { "x": 5, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2671, + "noteOrder": 2672, "time": 0.5506883604505632, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2695, + "noteOrder": 2696, "time": 0.5556946182728411, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.5707133917396746, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.5757196495619524, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.5807259073842304, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.5907384230287861, + "noteOrder": 2866, + "time": 0.590738423028786, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.5957446808510639, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3035, - "time": 0.6257822277847309, + "noteOrder": 3036, + "time": 0.6257822277847308, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3085, "time": 0.6357947434292867, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3108, - "time": 0.6408010012515645, + "noteOrder": 3109, + "time": 0.6408010012515644, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3132, + "noteOrder": 3133, "time": 0.6458072590738423, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.6508135168961201, + "noteOrder": 3157, + "time": 0.6508135168961202, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3156, - "time": 0.6508135168961201, + "noteOrder": 3157, + "time": 0.6508135168961202, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.6558197747183981, + "noteOrder": 3182, + "time": 0.6558197747183979, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.6558197747183981, + "noteOrder": 3182, + "time": 0.6558197747183979, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.6708385481852316, + "noteOrder": 3255, + "time": 0.6708385481852315, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3350, + "noteOrder": 3352, "time": 0.690863579474343, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3447, - "time": 0.7108886107634543, + "noteOrder": 3449, + "time": 0.7108886107634542, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3472, + "noteOrder": 3473, "time": 0.7158948685857321, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3593, - "time": 0.7409261576971214, + "noteOrder": 3595, + "time": 0.7409261576971213, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3642, + "noteOrder": 3643, "time": 0.7509386733416772, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3666, - "time": 0.755944931163955, + "noteOrder": 3668, + "time": 0.7559449311639549, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3813, "time": 0.785982478097622, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3836, + "noteOrder": 3838, "time": 0.7909887359198999, "position": { "x": 7, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3860, - "time": 0.7959949937421777, + "noteOrder": 3862, + "time": 0.7959949937421776, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3909, - "time": 0.8060075093867334, + "noteOrder": 3910, + "time": 0.8060075093867335, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4127, - "time": 0.851063829787234, + "noteOrder": 4129, + "time": 0.8510638297872339, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4151, - "time": 0.856070087609512, + "noteOrder": 4153, + "time": 0.8560700876095119, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4178, "time": 0.8610763454317898, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.8660826032540676, + "noteOrder": 4202, + "time": 0.8660826032540675, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4226, "time": 0.8710888610763454, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4249, - "time": 0.8760951188986232, + "noteOrder": 4250, + "time": 0.8760951188986233, "position": { "x": 2, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4273, - "time": 0.8811013767209012, + "noteOrder": 4275, + "time": 0.881101376720901, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 4299, "time": 0.886107634543179, "position": { "x": 2, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4323, "time": 0.8911138923654569, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4346, - "time": 0.8961201501877347, + "noteOrder": 4348, + "time": 0.8961201501877346, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.9311639549436797, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4540, - "time": 0.9361702127659575, + "noteOrder": 4542, + "time": 0.9361702127659574, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.9411764705882353, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.9461827284105132, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4613, - "time": 0.951188986232791, + "noteOrder": 4615, + "time": 0.9511889862327909, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4637, + "noteOrder": 4639, "time": 0.9561952440550688, "position": { "x": 8, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4661, - "time": 0.9612015018773467, + "noteOrder": 4663, + "time": 0.9612015018773468, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.9662077596996247, + "noteOrder": 4688, + "time": 0.9662077596996245, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.9712140175219025, + "noteOrder": 4712, + "time": 0.9712140175219024, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4710, - "time": 0.9712140175219025, + "noteOrder": 4712, + "time": 0.9712140175219024, "position": { "x": 7, "y": 0 @@ -2076,10 +2076,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.030037546933667083, + "time": 0.030037546933667086, "position": { "x": 5, "y": 0 @@ -2099,10 +2099,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, - "time": 0.035043804755944936, + "time": 0.03504380475594493, "position": { "x": 5, "y": 0 @@ -2122,7 +2122,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 243, "time": 0.05006257822277847, @@ -2145,10 +2145,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, - "time": 0.05506883604505632, + "time": 0.055068836045056316, "position": { "x": 5, "y": 0 @@ -2168,10 +2168,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, - "time": 0.1802252816020025, + "time": 0.18022528160200252, "position": { "x": 3, "y": 0 @@ -2190,34 +2190,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 923, - "time": 0.1902377972465582, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1068, - "time": 0.2202753441802253, + "noteOrder": 899, + "time": 0.18523153942428033, "position": { "x": 3, "y": 0 @@ -2231,18 +2208,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1117, - "time": 0.230287859824781, + "noteOrder": 899, + "time": 0.18523153942428033, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2259,11 +2236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.2603254067584481, + "noteOrder": 923, + "time": 0.1902377972465582, "position": { "x": 7, "y": 0 @@ -2282,13 +2259,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1311, - "time": 0.27033792240300375, + "noteOrder": 947, + "time": 0.19524405506883602, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2300,18 +2277,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1457, - "time": 0.30037546933667086, + "noteOrder": 947, + "time": 0.19524405506883602, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2323,18 +2300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1505, - "time": 0.31038798498122655, + "noteOrder": 1069, + "time": 0.22027534418022526, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2351,11 +2328,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1651, - "time": 0.34042553191489366, + "noteOrder": 1093, + "time": 0.22528160200250313, "position": { "x": 3, "y": 0 @@ -2369,18 +2346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1699, - "time": 0.35043804755944935, + "noteOrder": 1093, + "time": 0.22528160200250313, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2397,11 +2374,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1748, - "time": 0.360450563204005, + "noteOrder": 1117, + "time": 0.23028785982478095, "position": { "x": 3, "y": 0 @@ -2420,13 +2397,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2039, - "time": 0.4205256570713392, + "noteOrder": 1142, + "time": 0.23529411764705882, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2438,18 +2415,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2088, - "time": 0.4305381727158949, + "noteOrder": 1142, + "time": 0.23529411764705882, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2466,11 +2443,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2136, - "time": 0.4405506883604506, + "noteOrder": 1263, + "time": 0.26032540675844806, "position": { "x": 7, "y": 0 @@ -2489,13 +2466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.5056320400500626, + "noteOrder": 1287, + "time": 0.2653316645807259, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2512,11 +2489,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2476, - "time": 0.5106382978723404, + "noteOrder": 1287, + "time": 0.2653316645807259, "position": { "x": 6, "y": 0 @@ -2535,13 +2512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2549, - "time": 0.525657071339174, + "noteOrder": 1312, + "time": 0.27033792240300375, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2558,13 +2535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2573, - "time": 0.5306633291614519, + "noteOrder": 1336, + "time": 0.2753441802252816, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2581,11 +2558,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2913, - "time": 0.6007509386733417, + "noteOrder": 1336, + "time": 0.2753441802252816, "position": { "x": 4, "y": 0 @@ -2604,13 +2581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 2950, - "time": 0.6082603254067585, + "noteOrder": 1457, + "time": 0.3003754693366708, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2627,13 +2604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 42, "indexInLine": 2, "isSliding": false, - "noteOrder": 2986, - "time": 0.6157697121401753, + "noteOrder": 1482, + "time": 0.30538172715894873, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2650,11 +2627,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2913, - "time": 0.6007509386733417, + "noteOrder": 1482, + "time": 0.30538172715894873, "position": { "x": 6, "y": 0 @@ -2668,18 +2645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2950, - "time": 0.6082603254067585, + "noteOrder": 1506, + "time": 0.31038798498122655, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2696,13 +2673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 43, "indexInLine": 2, "isSliding": false, - "noteOrder": 2986, - "time": 0.6157697121401753, + "noteOrder": 1530, + "time": 0.31539424280350437, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2719,13 +2696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3010, - "time": 0.6207759699624531, + "noteOrder": 1530, + "time": 0.31539424280350437, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2742,13 +2719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 3035, - "time": 0.6257822277847309, + "noteOrder": 1652, + "time": 0.34042553191489366, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2760,16 +2737,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3059, - "time": 0.6307884856070087, + "noteOrder": 1676, + "time": 0.3454317897371715, "position": { "x": 3, "y": 0 @@ -2788,13 +2765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3083, - "time": 0.6357947434292867, + "noteOrder": 1676, + "time": 0.3454317897371715, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2811,13 +2788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, - "time": 0.7609511889862328, + "noteOrder": 1700, + "time": 0.3504380475594493, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2834,13 +2811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3727, - "time": 0.7684605757196497, + "noteOrder": 1724, + "time": 0.3554443053817271, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2857,13 +2834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 2, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3763, - "time": 0.7759699624530664, + "noteOrder": 1724, + "time": 0.3554443053817271, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2880,13 +2857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, - "time": 0.7609511889862328, + "noteOrder": 1749, + "time": 0.36045056320400504, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2903,13 +2880,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3727, - "time": 0.7684605757196497, + "noteOrder": 1773, + "time": 0.36545682102628285, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2926,11 +2903,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3763, - "time": 0.7759699624530664, + "noteOrder": 1773, + "time": 0.36545682102628285, "position": { "x": 4, "y": 0 @@ -2949,13 +2926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3787, - "time": 0.7809762202753442, + "noteOrder": 2040, + "time": 0.42052565707133915, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2967,18 +2944,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3812, - "time": 0.785982478097622, + "noteOrder": 2064, + "time": 0.42553191489361697, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2990,18 +2967,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3884, - "time": 0.8010012515644556, + "noteOrder": 2064, + "time": 0.42553191489361697, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3018,11 +2995,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3909, - "time": 0.8060075093867334, + "noteOrder": 2089, + "time": 0.4305381727158949, "position": { "x": 7, "y": 0 @@ -3036,18 +3013,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3982, - "time": 0.821026282853567, + "noteOrder": 2113, + "time": 0.4355444305381727, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3064,13 +3041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4030, - "time": 0.8310387984981227, + "noteOrder": 2113, + "time": 0.4355444305381727, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3082,18 +3059,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4079, - "time": 0.8410513141426784, + "noteOrder": 2137, + "time": 0.4405506883604505, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3105,16 +3082,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.9011264080100126, + "noteOrder": 2162, + "time": 0.44555694618272845, "position": { "x": 7, "y": 0 @@ -3133,13 +3110,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4419, - "time": 0.9111389236545683, + "noteOrder": 2162, + "time": 0.44555694618272845, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3151,16 +3128,936 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.921151439299124, + "noteOrder": 2453, + "time": 0.5056320400500626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2477, + "time": 0.5106382978723404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2550, + "time": 0.5256570713391739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2575, + "time": 0.5306633291614518, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6007509386733416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2951, + "time": 0.6082603254067585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2987, + "time": 0.6157697121401752, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6007509386733416, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2951, + "time": 0.6082603254067585, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2987, + "time": 0.6157697121401752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3012, + "time": 0.6207759699624531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3036, + "time": 0.6257822277847308, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3060, + "time": 0.6307884856070087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3085, + "time": 0.6357947434292867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.7609511889862328, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7684605757196495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3765, + "time": 0.7759699624530664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.7609511889862328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7684605757196495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3765, + "time": 0.7759699624530664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3789, + "time": 0.7809762202753441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3813, + "time": 0.785982478097622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3886, + "time": 0.8010012515644556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3910, + "time": 0.8060075093867335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3983, + "time": 0.821026282853567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4008, + "time": 0.8260325406758448, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4008, + "time": 0.8260325406758448, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4032, + "time": 0.8310387984981227, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4056, + "time": 0.8360450563204004, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4056, + "time": 0.8360450563204004, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4080, + "time": 0.8410513141426783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4105, + "time": 0.8460575719649562, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4105, + "time": 0.8460575719649562, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4372, + "time": 0.9011264080100125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4396, + "time": 0.9061326658322902, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4396, + "time": 0.9061326658322902, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4420, + "time": 0.9111389236545682, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4445, + "time": 0.9161451814768461, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4445, + "time": 0.9161451814768461, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4469, + "time": 0.9211514392991238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4493, + "time": 0.9261576971214017, "position": { "x": 7, "y": 0 @@ -3177,6 +4074,29 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4493, + "time": 0.9261576971214017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Ideal Sunset/info.json b/tracks/Ideal Sunset/info.json index b35101d0..8b35dde1 100644 --- a/tracks/Ideal Sunset/info.json +++ b/tracks/Ideal Sunset/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Ideal Sunset", - "SongLength": "120.215510", + "SongLength": "110.262857", "SongAuthorName": "KAN TAKAHIKO", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Ignited Night/361_difficulty_1a.json b/tracks/Ignited Night/361_difficulty_1a.json index 957fc73a..5d83c394 100644 --- a/tracks/Ignited Night/361_difficulty_1a.json +++ b/tracks/Ignited Night/361_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 242, - "time": 0.04065557108372507, + "time": 0.04065557108372506, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 291, - "time": 0.04878668530047009, + "time": 0.048786685300470076, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 315, - "time": 0.05285224240884259, + "time": 0.052852242408842585, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 339, - "time": 0.0569177995172151, + "time": 0.05691779951721509, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 363, - "time": 0.0609833566255876, + "time": 0.060983356625587605, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 387, + "noteOrder": 388, "time": 0.06504891373396011, "position": { "x": 6, @@ -194,7 +194,7 @@ }, { "noteOrder": 460, - "time": 0.07724558505907764, + "time": 0.07724558505907762, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 484, - "time": 0.08131114216745014, + "time": 0.08131114216745013, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 484, - "time": 0.08131114216745014, + "time": 0.08131114216745013, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 508, + "noteOrder": 509, "time": 0.08537669927582264, "position": { "x": 3, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 726, - "time": 0.1219667132511752, + "noteOrder": 727, + "time": 0.12196671325117521, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 847, - "time": 0.14229449879303777, + "noteOrder": 848, + "time": 0.14229449879303774, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 944, - "time": 0.15855672722652778, + "noteOrder": 945, + "time": 0.15855672722652775, "position": { "x": 8, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 968, - "time": 0.16262228433490028, + "noteOrder": 969, + "time": 0.16262228433490025, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1041, + "noteOrder": 1042, "time": 0.1748189556600178, "position": { "x": 7, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1138, - "time": 0.19108118409350786, + "noteOrder": 1139, + "time": 0.1910811840935078, "position": { "x": 4, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1283, - "time": 0.21547452674374287, + "noteOrder": 1284, + "time": 0.21547452674374284, "position": { "x": 5, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1307, - "time": 0.21954008385211538, + "noteOrder": 1308, + "time": 0.21954008385211535, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1477, + "noteOrder": 1478, "time": 0.24799898361072292, "position": { "x": 5, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1501, + "noteOrder": 1502, "time": 0.25206454071909545, "position": { "x": 6, @@ -534,7 +534,7 @@ }, { "noteOrder": 1671, - "time": 0.280523440477703, + "time": 0.28052344047770295, "position": { "x": 5, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1695, - "time": 0.28458899758607553, + "noteOrder": 1696, + "time": 0.2845889975860755, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1840, - "time": 0.30898234023631055, + "noteOrder": 1841, + "time": 0.3089823402363105, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1864, + "noteOrder": 1865, "time": 0.313047897344683, "position": { "x": 4, @@ -614,7 +614,7 @@ }, { "noteOrder": 1889, - "time": 0.31711345445305555, + "time": 0.3171134544530555, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1961, + "noteOrder": 1962, "time": 0.32931012577817304, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1985, + "noteOrder": 1986, "time": 0.33337568288654557, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2010, - "time": 0.3374412399949181, + "noteOrder": 2011, + "time": 0.33744123999491804, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2034, + "noteOrder": 2035, "time": 0.34150679710329057, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3455723542116631, + "noteOrder": 2059, + "time": 0.34557235421166305, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.34760513276584937, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2082, + "noteOrder": 2083, "time": 0.3496379113200356, "position": { "x": 3, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2155, - "time": 0.3618345826451531, + "noteOrder": 2156, + "time": 0.36183458264515306, "position": { "x": 5, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2179, - "time": 0.36590013975352564, + "noteOrder": 2180, + "time": 0.3659001397535256, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2203, - "time": 0.3699656968618982, + "noteOrder": 2204, + "time": 0.3699656968618981, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2349, - "time": 0.3943590395121332, + "noteOrder": 2350, + "time": 0.39435903951213314, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2373, - "time": 0.39842459662050567, + "noteOrder": 2374, + "time": 0.3984245966205056, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2397, + "noteOrder": 2398, "time": 0.40249015372887814, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2421, + "noteOrder": 2422, "time": 0.4065557108372507, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2445, - "time": 0.4106212679456232, + "noteOrder": 2447, + "time": 0.41062126794562315, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2458, + "noteOrder": 2459, "time": 0.41265404649980947, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2470, + "noteOrder": 2471, "time": 0.4146868250539957, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2542, - "time": 0.4268834963791132, + "noteOrder": 2543, + "time": 0.42688349637911316, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2566, - "time": 0.43094905348748574, + "noteOrder": 2568, + "time": 0.4309490534874857, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.4350146105958583, + "noteOrder": 2592, + "time": 0.43501461059585816, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3487, + "noteOrder": 3488, "time": 0.585440223605641, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.601702452039131, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3632, + "noteOrder": 3634, "time": 0.609833566255876, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3777, - "time": 0.6342269089061111, + "noteOrder": 3779, + "time": 0.634226908906111, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3826, + "noteOrder": 3827, "time": 0.6423580231228561, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3874, - "time": 0.6504891373396011, + "noteOrder": 3876, + "time": 0.650489137339601, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3898, + "noteOrder": 3900, "time": 0.6545546944479737, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3922, + "noteOrder": 3924, "time": 0.6586202515563461, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3947, - "time": 0.6626858086647187, + "noteOrder": 3948, + "time": 0.6626858086647186, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4310, - "time": 0.7236691652903062, + "noteOrder": 4312, + "time": 0.7236691652903061, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4382, + "noteOrder": 4384, "time": 0.7358658366154237, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4407, - "time": 0.7399313937237963, + "noteOrder": 4409, + "time": 0.7399313937237962, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4433, "time": 0.7439969508321688, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4503, - "time": 0.7561936221572864, + "noteOrder": 4506, + "time": 0.7561936221572862, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4576, + "noteOrder": 4578, "time": 0.7683902934824038, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.77042307203659, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4625, + "noteOrder": 4627, "time": 0.7765214076991488, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4637, + "noteOrder": 4639, "time": 0.7785541862533351, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4673, + "noteOrder": 4675, "time": 0.7846525219158939, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4685, - "time": 0.7866853004700801, + "noteOrder": 4687, + "time": 0.78668530047008, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4697, - "time": 0.7887180790242664, + "noteOrder": 4699, + "time": 0.7887180790242663, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4770, + "noteOrder": 4772, "time": 0.8009147503493839, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4796, "time": 0.8049803074577563, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4818, - "time": 0.8090458645661289, + "noteOrder": 4820, + "time": 0.8090458645661288, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5012, + "noteOrder": 5014, "time": 0.841570321433109, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5024, - "time": 0.8436030999872952, + "noteOrder": 5026, + "time": 0.8436030999872951, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5085, - "time": 0.8537669927582264, + "noteOrder": 5087, + "time": 0.8537669927582263, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5257, "time": 0.8822258925168339, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.8862914496252066, + "noteOrder": 5281, + "time": 0.8862914496252065, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5327, - "time": 0.8944225638419515, + "noteOrder": 5329, + "time": 0.8944225638419514, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5339, + "noteOrder": 5341, "time": 0.8964553423961378, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5375, - "time": 0.9025536780586966, + "noteOrder": 5378, + "time": 0.9025536780586965, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5387, - "time": 0.9045864566128828, + "noteOrder": 5390, + "time": 0.9045864566128827, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.914750349383814, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5460, - "time": 0.9167831279380004, + "noteOrder": 5462, + "time": 0.9167831279380002, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9188159064921866, + "noteOrder": 5475, + "time": 0.9188159064921865, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5569, - "time": 0.9350781349256767, + "noteOrder": 5571, + "time": 0.9350781349256765, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5714, + "noteOrder": 5717, "time": 0.9594714775759117, "position": { "x": 5, @@ -1796,10 +1796,33 @@ "lineNodes": [ { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 533, - "time": 0.08944225638419516, + "time": 0.08944225638419515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 545, + "time": 0.0914750349383814, "position": { "x": 7, "y": 0 @@ -1817,12 +1840,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 545, + "time": 0.0914750349383814, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 557, - "time": 0.09350781349256766, + "time": 0.09350781349256765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 569, + "time": 0.0955405920467539, "position": { "x": 3, "y": 0 @@ -1840,12 +1909,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 569, + "time": 0.0955405920467539, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.09757337060094018, + "time": 0.09757337060094015, "position": { "x": 4, "y": 0 @@ -1865,10 +1957,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 678, - "time": 0.1138355990344302, + "time": 0.11383559903443018, "position": { "x": 4, "y": 0 @@ -1888,10 +1980,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.09757337060094018, + "time": 0.09757337060094015, "position": { "x": 6, "y": 0 @@ -1911,10 +2003,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 678, - "time": 0.1138355990344302, + "time": 0.11383559903443018, "position": { "x": 6, "y": 0 @@ -1934,7 +2026,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 872, "time": 0.14636005590141024, @@ -1957,10 +2049,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 920, - "time": 0.15449117011815527, + "time": 0.15449117011815525, "position": { "x": 4, "y": 0 @@ -1980,10 +2072,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 920, - "time": 0.15449117011815527, + "time": 0.15449117011815525, "position": { "x": 7, "y": 0 @@ -2003,10 +2095,33 @@ }, { "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 969, + "time": 0.16262228433490025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, "indexInLine": 1, "isSliding": false, - "noteOrder": 968, - "time": 0.16262228433490028, + "noteOrder": 1163, + "time": 0.1951467412018803, "position": { "x": 7, "y": 0 @@ -2026,10 +2141,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1162, - "time": 0.19514674120188036, + "noteOrder": 1175, + "time": 0.19717951975606657, "position": { "x": 7, "y": 0 @@ -2047,12 +2162,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1175, + "time": 0.19717951975606657, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1187, + "time": 0.1992122983102528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1186, - "time": 0.19921229831025283, + "noteOrder": 1199, + "time": 0.20124507686443907, "position": { "x": 7, "y": 0 @@ -2070,9 +2231,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1199, + "time": 0.20124507686443907, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1211, "time": 0.20327785541862534, @@ -2094,11 +2278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1235, - "time": 0.20734341252699784, + "noteOrder": 1223, + "time": 0.20531063397281157, "position": { "x": 7, "y": 0 @@ -2112,18 +2296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1259, - "time": 0.21140896963537037, + "noteOrder": 1223, + "time": 0.20531063397281157, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2140,13 +2324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 1307, - "time": 0.21954008385211538, + "noteOrder": 1235, + "time": 0.20734341252699784, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2158,18 +2342,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 38, "indexInLine": 2, "isSliding": false, - "noteOrder": 1332, - "time": 0.22360564096048788, + "noteOrder": 1248, + "time": 0.20937619108118408, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2181,18 +2365,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1356, - "time": 0.2276711980688604, + "noteOrder": 1248, + "time": 0.20937619108118408, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2209,13 +2393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1380, - "time": 0.2317367551772329, + "noteOrder": 1260, + "time": 0.21140896963537034, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2232,13 +2416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1404, - "time": 0.23580231228560541, + "noteOrder": 1308, + "time": 0.21954008385211535, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2250,18 +2434,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1429, - "time": 0.23986786939397792, + "noteOrder": 1332, + "time": 0.22360564096048785, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2278,11 +2462,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1453, - "time": 0.2439334265023504, + "noteOrder": 1357, + "time": 0.22767119806886035, "position": { "x": 3, "y": 0 @@ -2301,13 +2485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1525, - "time": 0.25613009782746793, + "noteOrder": 1369, + "time": 0.22970397662304662, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2324,13 +2508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1550, - "time": 0.26019565493584046, + "noteOrder": 1369, + "time": 0.22970397662304662, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2342,18 +2526,3031 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1381, + "time": 0.23173675517723286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1393, + "time": 0.23376953373141912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1393, + "time": 0.23376953373141912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1405, + "time": 0.23580231228560536, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1417, + "time": 0.23783509083979165, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1417, + "time": 0.23783509083979165, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1429, + "time": 0.23986786939397792, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1441, + "time": 0.24190064794816415, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1441, + "time": 0.24190064794816415, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1453, + "time": 0.24393342650235042, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1526, + "time": 0.25613009782746793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1550, + "time": 0.26019565493584046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1562, + "time": 0.26222843349002667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1562, + "time": 0.26222843349002667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1575, + "time": 0.26426121204421293, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1587, + "time": 0.2662939905983992, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1587, + "time": 0.2662939905983992, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1599, + "time": 0.26832676915258546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1611, + "time": 0.27035954770677173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1611, + "time": 0.27035954770677173, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1623, + "time": 0.27239232626095794, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1635, + "time": 0.2744251048151442, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1635, + "time": 0.2744251048151442, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1647, + "time": 0.27645788336933047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1696, + "time": 0.2845889975860755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1720, + "time": 0.288654554694448, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1744, + "time": 0.2927201118028205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1756, + "time": 0.29475289035700675, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1756, + "time": 0.29475289035700675, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1768, + "time": 0.296785668911193, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1780, + "time": 0.2988184474653792, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1780, + "time": 0.2988184474653792, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1793, + "time": 0.3008512260195655, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1805, + "time": 0.30288400457375175, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1805, + "time": 0.30288400457375175, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1817, + "time": 0.304916783127938, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3069495616821243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3069495616821243, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1938, + "time": 0.3252445686698005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1986, + "time": 0.33337568288654557, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2035, + "time": 0.34150679710329057, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2132, + "time": 0.3577690255367806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2180, + "time": 0.3659001397535256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2229, + "time": 0.3740312539702706, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2229, + "time": 0.3740312539702706, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2241, + "time": 0.3760640325244569, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2241, + "time": 0.3760640325244569, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2253, + "time": 0.3780968110786431, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2265, + "time": 0.3801295896328294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2265, + "time": 0.3801295896328294, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2277, + "time": 0.3821623681870156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2301, + "time": 0.38622792529538813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2325, + "time": 0.3902934824037606, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2374, + "time": 0.3984245966205056, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2422, + "time": 0.4065557108372507, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2519, + "time": 0.4228179392707407, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2616, + "time": 0.4390801677042307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2713, + "time": 0.4553423961377207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2737, + "time": 0.45940795324609324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2737, + "time": 0.45940795324609324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4634735103544657, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2786, + "time": 0.46753906746283824, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2786, + "time": 0.46753906746283824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4716046245712107, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2822, + "time": 0.47363740312539704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2822, + "time": 0.47363740312539704, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4756701816795833, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2846, + "time": 0.4777029602337695, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2846, + "time": 0.4777029602337695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2858, + "time": 0.47973573878795583, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.48176851734214204, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2870, + "time": 0.48176851734214204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4838012958963283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2895, + "time": 0.4858340744505145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2895, + "time": 0.4858340744505145, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2907, + "time": 0.48786685300470084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.4919324101130733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2931, + "time": 0.4919324101130733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2955, + "time": 0.49599796722144585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2980, + "time": 0.5000635243298184, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2980, + "time": 0.5000635243298184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3004, + "time": 0.5041290814381909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5061618599923771, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3016, + "time": 0.5061618599923771, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3028, + "time": 0.5081946385465633, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3040, + "time": 0.5102274171007496, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3040, + "time": 0.5102274171007496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3052, + "time": 0.5122601956549359, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3064, + "time": 0.5142929742091221, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3064, + "time": 0.5142929742091221, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.5163257527633084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3089, + "time": 0.5183585313174945, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3089, + "time": 0.5183585313174945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.5203913098716809, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3125, + "time": 0.5244568669800533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3125, + "time": 0.5244568669800533, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3149, + "time": 0.5285224240884259, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3173, + "time": 0.5325879811967984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3173, + "time": 0.5325879811967984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3198, + "time": 0.5366535383051709, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3210, + "time": 0.5386863168593571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3210, + "time": 0.5386863168593571, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5407190954135435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5427518739677296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3234, + "time": 0.5427518739677296, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5447846525219159, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5468174310761021, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3258, + "time": 0.5468174310761021, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5488502096302884, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5508829881844747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5508829881844747, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5529157667386609, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.5569813238470335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3319, + "time": 0.5569813238470335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3343, + "time": 0.5610468809554059, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5651124380637784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5651124380637784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3973, + "time": 0.6667513657730911, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4021, + "time": 0.6748824799898361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4045, + "time": 0.6789480370982087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6830135942065811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4118, + "time": 0.6911447084233261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3973, + "time": 0.6667513657730911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4021, + "time": 0.6748824799898361, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4045, + "time": 0.6789480370982087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6830135942065811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4118, + "time": 0.6911447084233261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4166, + "time": 0.6992758226400712, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4179, + "time": 0.7013086011942573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4179, + "time": 0.7013086011942573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4191, + "time": 0.7033413797484437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1574, - "time": 0.26426121204421293, + "noteOrder": 4203, + "time": 0.70537415830263, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2365,18 +5562,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1598, - "time": 0.26832676915258546, + "noteOrder": 4203, + "time": 0.70537415830263, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2393,13 +5590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1622, - "time": 0.272392326260958, + "noteOrder": 4215, + "time": 0.7074069368568161, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2416,13 +5613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1646, - "time": 0.27645788336933047, + "noteOrder": 4227, + "time": 0.7094397154110024, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2434,18 +5631,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1695, - "time": 0.28458899758607553, + "noteOrder": 4227, + "time": 0.7094397154110024, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2457,18 +5654,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1719, - "time": 0.288654554694448, + "noteOrder": 4239, + "time": 0.7114724939651887, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2485,11 +5682,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1743, - "time": 0.2927201118028205, + "noteOrder": 4251, + "time": 0.7135052725193749, "position": { "x": 3, "y": 0 @@ -2503,18 +5700,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1767, - "time": 0.296785668911193, + "noteOrder": 4251, + "time": 0.7135052725193749, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2531,11 +5728,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1792, - "time": 0.3008512260195655, + "noteOrder": 4263, + "time": 0.7155380510735612, "position": { "x": 3, "y": 0 @@ -2554,11 +5751,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1816, - "time": 0.304916783127938, + "noteOrder": 4275, + "time": 0.7175708296277473, "position": { "x": 3, "y": 0 @@ -2572,18 +5769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1937, - "time": 0.32524456866980056, + "noteOrder": 4275, + "time": 0.7175708296277473, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2595,18 +5792,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 148, "indexInLine": 1, "isSliding": false, - "noteOrder": 1985, - "time": 0.33337568288654557, + "noteOrder": 4288, + "time": 0.7196036081819337, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2623,13 +5820,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 148, "indexInLine": 2, "isSliding": false, - "noteOrder": 2034, - "time": 0.34150679710329057, + "noteOrder": 4300, + "time": 0.72163638673612, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2646,13 +5843,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2131, - "time": 0.35776902553678064, + "noteOrder": 4300, + "time": 0.72163638673612, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2664,18 +5861,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2179, - "time": 0.36590013975352564, + "noteOrder": 4312, + "time": 0.7236691652903061, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2687,18 +5884,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 2, + "lineGroupId": 148, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2228, - "time": 0.37403125397027065, + "noteOrder": 4312, + "time": 0.7236691652903061, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2710,16 +5907,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2228, - "time": 0.37403125397027065, + "noteOrder": 4360, + "time": 0.7318002795070512, "position": { "x": 7, "y": 0 @@ -2738,13 +5935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2252, - "time": 0.3780968110786432, + "noteOrder": 4457, + "time": 0.7480625079405412, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2756,18 +5953,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2276, - "time": 0.3821623681870157, + "noteOrder": 4457, + "time": 0.7480625079405412, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2779,18 +5976,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2300, - "time": 0.3862279252953882, + "noteOrder": 4469, + "time": 0.7500952864947275, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2802,18 +5999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2324, - "time": 0.3902934824037607, + "noteOrder": 4469, + "time": 0.7500952864947275, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2825,18 +6022,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 2373, - "time": 0.39842459662050567, + "noteOrder": 4481, + "time": 0.7521280650489138, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2853,13 +6050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 156, "indexInLine": 2, "isSliding": false, - "noteOrder": 2421, - "time": 0.4065557108372507, + "noteOrder": 4493, + "time": 0.7541608436031, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2876,11 +6073,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2518, - "time": 0.42281793927074074, + "noteOrder": 4493, + "time": 0.7541608436031, "position": { "x": 5, "y": 0 @@ -2894,16 +6091,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2615, - "time": 0.43908016770423075, + "noteOrder": 4506, + "time": 0.7561936221572862, "position": { "x": 5, "y": 0 @@ -2917,16 +6114,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2712, - "time": 0.4553423961377208, + "noteOrder": 4506, + "time": 0.7561936221572862, "position": { "x": 7, "y": 0 @@ -2945,11 +6142,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2760, - "time": 0.4634735103544658, + "noteOrder": 4554, + "time": 0.7643247363740312, "position": { "x": 7, "y": 0 @@ -2963,16 +6160,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2809, - "time": 0.47160462457121083, + "noteOrder": 4566, + "time": 0.7663575149282175, "position": { "x": 7, "y": 0 @@ -2991,13 +6188,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2833, - "time": 0.47567018167958336, + "noteOrder": 4566, + "time": 0.7663575149282175, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3009,16 +6206,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2857, - "time": 0.47973573878795583, + "noteOrder": 4602, + "time": 0.7724558505907763, "position": { "x": 7, "y": 0 @@ -3032,18 +6229,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2881, - "time": 0.4838012958963283, + "noteOrder": 4615, + "time": 0.7744886291449624, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3060,13 +6257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2905, - "time": 0.4878668530047008, + "noteOrder": 4615, + "time": 0.7744886291449624, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3078,18 +6275,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2954, - "time": 0.49599796722144585, + "noteOrder": 4748, + "time": 0.7968491932410112, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3101,18 +6298,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3002, - "time": 0.5041290814381909, + "noteOrder": 4845, + "time": 0.8131114216745013, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3129,11 +6326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, - "time": 0.5081946385465633, + "noteOrder": 4942, + "time": 0.8293736501079914, "position": { "x": 3, "y": 0 @@ -3147,16 +6344,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3051, - "time": 0.5122601956549359, + "noteOrder": 4954, + "time": 0.8314064286621776, "position": { "x": 3, "y": 0 @@ -3175,13 +6372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3075, - "time": 0.5163257527633084, + "noteOrder": 4954, + "time": 0.8314064286621776, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3193,18 +6390,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3099, - "time": 0.5203913098716809, + "noteOrder": 4966, + "time": 0.8334392072163639, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3216,16 +6413,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, - "time": 0.5285224240884259, + "noteOrder": 4978, + "time": 0.8354719857705502, "position": { "x": 3, "y": 0 @@ -3244,13 +6441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3196, - "time": 0.5366535383051709, + "noteOrder": 4978, + "time": 0.8354719857705502, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3262,16 +6459,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3220, - "time": 0.5407190954135435, + "noteOrder": 4990, + "time": 0.8375047643247363, "position": { "x": 3, "y": 0 @@ -3285,18 +6482,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3244, - "time": 0.544784652521916, + "noteOrder": 5002, + "time": 0.8395375428789227, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3313,13 +6510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3269, - "time": 0.5488502096302884, + "noteOrder": 5002, + "time": 0.8395375428789227, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3331,16 +6528,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3293, - "time": 0.5529157667386609, + "noteOrder": 5039, + "time": 0.8456358785414814, "position": { "x": 7, "y": 0 @@ -3354,18 +6551,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3341, - "time": 0.561046880955406, + "noteOrder": 5051, + "time": 0.8476686570956677, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3382,11 +6579,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3971, - "time": 0.6667513657730911, + "noteOrder": 5051, + "time": 0.8476686570956677, "position": { "x": 6, "y": 0 @@ -3405,13 +6602,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 183, "indexInLine": 1, "isSliding": false, - "noteOrder": 4019, - "time": 0.6748824799898362, + "noteOrder": 5063, + "time": 0.8497014356498539, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3423,18 +6620,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 183, "indexInLine": 2, "isSliding": false, - "noteOrder": 4043, - "time": 0.6789480370982087, + "noteOrder": 5075, + "time": 0.8517342142040402, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3446,18 +6643,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 183, "indexInLine": 3, "isSliding": false, - "noteOrder": 4068, - "time": 0.6830135942065811, + "noteOrder": 5075, + "time": 0.8517342142040402, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3469,18 +6666,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 183, "indexInLine": 4, "isSliding": false, - "noteOrder": 4116, - "time": 0.6911447084233262, + "noteOrder": 5087, + "time": 0.8537669927582263, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3492,18 +6689,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3971, - "time": 0.6667513657730911, + "noteOrder": 5087, + "time": 0.8537669927582263, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3520,11 +6717,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 4019, - "time": 0.6748824799898362, + "noteOrder": 5135, + "time": 0.8618981069749714, "position": { "x": 3, "y": 0 @@ -3538,18 +6735,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 186, "indexInLine": 2, "isSliding": false, - "noteOrder": 4043, - "time": 0.6789480370982087, + "noteOrder": 5148, + "time": 0.8639308855291578, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3561,18 +6758,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 186, "indexInLine": 3, "isSliding": false, - "noteOrder": 4068, - "time": 0.6830135942065811, + "noteOrder": 5148, + "time": 0.8639308855291578, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3584,18 +6781,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 4, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4116, - "time": 0.6911447084233262, + "noteOrder": 5160, + "time": 0.8659636640833439, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3612,11 +6809,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4164, - "time": 0.6992758226400712, + "noteOrder": 5172, + "time": 0.8679964426375302, "position": { "x": 3, "y": 0 @@ -3630,18 +6827,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4189, - "time": 0.7033413797484437, + "noteOrder": 5172, + "time": 0.8679964426375302, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3658,13 +6855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4213, - "time": 0.7074069368568162, + "noteOrder": 5184, + "time": 0.8700292211917163, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3681,13 +6878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4237, - "time": 0.7114724939651886, + "noteOrder": 5196, + "time": 0.8720619997459027, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3699,18 +6896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4261, - "time": 0.7155380510735613, + "noteOrder": 5196, + "time": 0.8720619997459027, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3727,13 +6924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4286, - "time": 0.7196036081819337, + "noteOrder": 5208, + "time": 0.874094778300089, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3750,13 +6947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4358, - "time": 0.7318002795070513, + "noteOrder": 5220, + "time": 0.8761275568542751, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3773,11 +6970,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4455, - "time": 0.7480625079405413, + "noteOrder": 5220, + "time": 0.8761275568542751, "position": { "x": 5, "y": 0 @@ -3796,13 +6993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4455, - "time": 0.7480625079405413, + "noteOrder": 5232, + "time": 0.8781603354084614, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3819,13 +7016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4479, - "time": 0.7521280650489137, + "noteOrder": 5305, + "time": 0.890357006733579, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3837,18 +7034,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4552, - "time": 0.7643247363740314, + "noteOrder": 5353, + "time": 0.8984881209503239, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3865,36 +7062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4600, - "time": 0.7724558505907764, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4746, - "time": 0.7968491932410113, + "noteOrder": 5366, + "time": 0.9005208995045102, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3911,11 +7085,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4842, - "time": 0.8131114216745013, + "noteOrder": 5366, + "time": 0.9005208995045102, "position": { "x": 5, "y": 0 @@ -3934,13 +7108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, - "time": 0.8293736501079914, + "noteOrder": 5402, + "time": 0.906619235167069, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3952,18 +7126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4963, - "time": 0.833439207216364, + "noteOrder": 5414, + "time": 0.9086520137212553, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3980,13 +7154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4988, - "time": 0.8375047643247364, + "noteOrder": 5414, + "time": 0.9086520137212553, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3998,16 +7172,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5036, - "time": 0.8456358785414815, + "noteOrder": 5523, + "time": 0.9269470207089314, "position": { "x": 7, "y": 0 @@ -4021,16 +7195,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5060, - "time": 0.849701435649854, + "noteOrder": 5535, + "time": 0.9289797992631178, "position": { "x": 7, "y": 0 @@ -4049,13 +7223,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5133, - "time": 0.8618981069749715, + "noteOrder": 5535, + "time": 0.9289797992631178, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4067,18 +7241,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5157, - "time": 0.865963664083344, + "noteOrder": 5547, + "time": 0.9310125778173041, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4090,16 +7264,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5181, - "time": 0.8700292211917166, + "noteOrder": 5559, + "time": 0.9330453563714902, "position": { "x": 7, "y": 0 @@ -4118,13 +7292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5206, - "time": 0.8740947783000891, + "noteOrder": 5559, + "time": 0.9330453563714902, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4136,18 +7310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5230, - "time": 0.8781603354084615, + "noteOrder": 5571, + "time": 0.9350781349256765, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4164,13 +7338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5302, - "time": 0.890357006733579, + "noteOrder": 5571, + "time": 0.9350781349256765, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4187,13 +7361,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5351, - "time": 0.898488120950324, + "noteOrder": 5584, + "time": 0.9371109134798629, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4205,18 +7379,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5399, - "time": 0.906619235167069, + "noteOrder": 5584, + "time": 0.9371109134798629, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4233,11 +7407,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5520, - "time": 0.9269470207089316, + "noteOrder": 5596, + "time": 0.939143692034049, "position": { "x": 7, "y": 0 @@ -4256,11 +7430,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5545, - "time": 0.9310125778173041, + "noteOrder": 5608, + "time": 0.9411764705882353, "position": { "x": 7, "y": 0 @@ -4274,18 +7448,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5593, - "time": 0.9391436920340491, + "noteOrder": 5608, + "time": 0.9411764705882353, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { diff --git a/tracks/Ignited Night/361_difficulty_1b.json b/tracks/Ignited Night/361_difficulty_1b.json index fac26d92..68d3469a 100644 --- a/tracks/Ignited Night/361_difficulty_1b.json +++ b/tracks/Ignited Night/361_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 242, - "time": 0.04065557108372507, + "time": 0.04065557108372506, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 387, + "noteOrder": 388, "time": 0.06504891373396011, "position": { "x": 3, @@ -94,7 +94,7 @@ }, { "noteOrder": 484, - "time": 0.08131114216745014, + "time": 0.08131114216745013, "position": { "x": 4, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 508, + "noteOrder": 509, "time": 0.08537669927582264, "position": { "x": 7, @@ -134,7 +134,7 @@ }, { "noteOrder": 533, - "time": 0.08944225638419516, + "time": 0.08944225638419515, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 557, - "time": 0.09350781349256766, + "time": 0.09350781349256765, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 726, - "time": 0.1219667132511752, + "noteOrder": 727, + "time": 0.12196671325117521, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 968, - "time": 0.16262228433490028, + "noteOrder": 969, + "time": 0.16262228433490025, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1041, + "noteOrder": 1042, "time": 0.1748189556600178, "position": { "x": 6, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1259, - "time": 0.21140896963537037, + "noteOrder": 1260, + "time": 0.21140896963537034, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1283, - "time": 0.21547452674374287, + "noteOrder": 1284, + "time": 0.21547452674374284, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1307, - "time": 0.21954008385211538, + "noteOrder": 1308, + "time": 0.21954008385211535, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1501, + "noteOrder": 1502, "time": 0.25206454071909545, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1646, + "noteOrder": 1647, "time": 0.27645788336933047, "position": { "x": 7, @@ -374,7 +374,7 @@ }, { "noteOrder": 1671, - "time": 0.280523440477703, + "time": 0.28052344047770295, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1695, - "time": 0.28458899758607553, + "noteOrder": 1696, + "time": 0.2845889975860755, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3455723542116631, + "noteOrder": 2059, + "time": 0.34557235421166305, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.34760513276584937, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2082, + "noteOrder": 2083, "time": 0.3496379113200356, "position": { "x": 4, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2228, - "time": 0.37403125397027065, + "noteOrder": 2229, + "time": 0.3740312539702706, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2252, - "time": 0.3780968110786432, + "noteOrder": 2253, + "time": 0.3780968110786431, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2276, - "time": 0.3821623681870157, + "noteOrder": 2277, + "time": 0.3821623681870156, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2300, - "time": 0.3862279252953882, + "noteOrder": 2301, + "time": 0.38622792529538813, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2445, - "time": 0.4106212679456232, + "noteOrder": 2447, + "time": 0.41062126794562315, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2458, + "noteOrder": 2459, "time": 0.41265404649980947, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2470, + "noteOrder": 2471, "time": 0.4146868250539957, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3004, "time": 0.5041290814381909, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.5081946385465633, "position": { "x": 6, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3052, "time": 0.5122601956549359, "position": { "x": 3, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.5163257527633084, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3319, "time": 0.5569813238470335, "position": { "x": 8, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5651124380637785, + "noteOrder": 3367, + "time": 0.5651124380637784, "position": { "x": 2, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3487, + "noteOrder": 3488, "time": 0.585440223605641, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4310, - "time": 0.7236691652903062, + "noteOrder": 4312, + "time": 0.7236691652903061, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4503, - "time": 0.7561936221572864, + "noteOrder": 4506, + "time": 0.7561936221572862, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4528, + "noteOrder": 4530, "time": 0.7602591792656588, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4697, - "time": 0.7887180790242664, + "noteOrder": 4699, + "time": 0.7887180790242663, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5036, - "time": 0.8456358785414815, + "noteOrder": 5039, + "time": 0.8456358785414814, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5060, - "time": 0.849701435649854, + "noteOrder": 5063, + "time": 0.8497014356498539, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5085, - "time": 0.8537669927582264, + "noteOrder": 5087, + "time": 0.8537669927582263, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5230, - "time": 0.8781603354084615, + "noteOrder": 5232, + "time": 0.8781603354084614, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5257, "time": 0.8822258925168339, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.8862914496252066, + "noteOrder": 5281, + "time": 0.8862914496252065, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.8862914496252066, + "noteOrder": 5281, + "time": 0.8862914496252065, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5302, + "noteOrder": 5305, "time": 0.890357006733579, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5424, - "time": 0.9106847922754416, + "noteOrder": 5426, + "time": 0.9106847922754414, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.914750349383814, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9188159064921866, + "noteOrder": 5475, + "time": 0.9188159064921865, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5714, + "noteOrder": 5717, "time": 0.9594714775759117, "position": { "x": 5, @@ -1076,10 +1076,10 @@ "lineNodes": [ { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.09757337060094018, + "time": 0.09757337060094015, "position": { "x": 4, "y": 0 @@ -1099,10 +1099,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 678, - "time": 0.1138355990344302, + "time": 0.11383559903443018, "position": { "x": 4, "y": 0 @@ -1122,10 +1122,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.09757337060094018, + "time": 0.09757337060094015, "position": { "x": 6, "y": 0 @@ -1145,10 +1145,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 678, - "time": 0.1138355990344302, + "time": 0.11383559903443018, "position": { "x": 6, "y": 0 @@ -1168,7 +1168,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 872, "time": 0.14636005590141024, @@ -1191,10 +1191,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 920, - "time": 0.15449117011815527, + "time": 0.15449117011815525, "position": { "x": 3, "y": 0 @@ -1214,10 +1214,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 920, - "time": 0.15449117011815527, + "time": 0.15449117011815525, "position": { "x": 7, "y": 0 @@ -1237,10 +1237,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 968, - "time": 0.16262228433490028, + "noteOrder": 969, + "time": 0.16262228433490025, "position": { "x": 7, "y": 0 @@ -1260,10 +1260,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1162, - "time": 0.19514674120188036, + "noteOrder": 1163, + "time": 0.1951467412018803, "position": { "x": 7, "y": 0 @@ -1282,11 +1282,11 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1211, - "time": 0.20327785541862534, + "noteOrder": 1187, + "time": 0.1992122983102528, "position": { "x": 7, "y": 0 @@ -1300,18 +1300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1356, - "time": 0.2276711980688604, + "noteOrder": 1187, + "time": 0.1992122983102528, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1323,18 +1323,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1404, - "time": 0.23580231228560541, + "noteOrder": 1211, + "time": 0.20327785541862534, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1346,18 +1346,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1453, - "time": 0.2439334265023504, + "noteOrder": 1235, + "time": 0.20734341252699784, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1374,13 +1374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1501, - "time": 0.25206454071909545, + "noteOrder": 1235, + "time": 0.20734341252699784, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1397,13 +1397,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1550, - "time": 0.26019565493584046, + "noteOrder": 1357, + "time": 0.22767119806886035, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1415,18 +1415,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1598, - "time": 0.26832676915258546, + "noteOrder": 1381, + "time": 0.23173675517723286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1443,13 +1443,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1743, - "time": 0.2927201118028205, + "noteOrder": 1381, + "time": 0.23173675517723286, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1466,11 +1466,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1792, - "time": 0.3008512260195655, + "noteOrder": 1405, + "time": 0.23580231228560536, "position": { "x": 3, "y": 0 @@ -1489,11 +1489,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1937, - "time": 0.32524456866980056, + "noteOrder": 1429, + "time": 0.23986786939397792, "position": { "x": 3, "y": 0 @@ -1507,18 +1507,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1985, - "time": 0.33337568288654557, + "noteOrder": 1429, + "time": 0.23986786939397792, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1530,18 +1530,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1985, - "time": 0.33337568288654557, + "noteOrder": 1453, + "time": 0.24393342650235042, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1553,18 +1553,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2034, - "time": 0.34150679710329057, + "noteOrder": 1502, + "time": 0.25206454071909545, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1576,16 +1576,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2131, - "time": 0.35776902553678064, + "noteOrder": 1550, + "time": 0.26019565493584046, "position": { "x": 7, "y": 0 @@ -1604,11 +1604,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2179, - "time": 0.36590013975352564, + "noteOrder": 1575, + "time": 0.26426121204421293, "position": { "x": 7, "y": 0 @@ -1627,13 +1627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2179, - "time": 0.36590013975352564, + "noteOrder": 1575, + "time": 0.26426121204421293, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1645,18 +1645,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 2228, - "time": 0.37403125397027065, + "noteOrder": 1599, + "time": 0.26832676915258546, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1673,13 +1673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2324, - "time": 0.3902934824037607, + "noteOrder": 1623, + "time": 0.27239232626095794, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1691,16 +1691,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2373, - "time": 0.39842459662050567, + "noteOrder": 1623, + "time": 0.27239232626095794, "position": { "x": 6, "y": 0 @@ -1714,41 +1714,18 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 63, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2373, - "time": 0.39842459662050567, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 2421, - "time": 0.4065557108372507, + "noteOrder": 1744, + "time": 0.2927201118028205, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -1765,11 +1742,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2518, - "time": 0.42281793927074074, + "noteOrder": 1768, + "time": 0.296785668911193, "position": { "x": 3, "y": 0 @@ -1788,13 +1765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2566, - "time": 0.43094905348748574, + "noteOrder": 1768, + "time": 0.296785668911193, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1811,13 +1788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2566, - "time": 0.43094905348748574, + "noteOrder": 1793, + "time": 0.3008512260195655, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1834,13 +1811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2615, - "time": 0.43908016770423075, + "noteOrder": 1817, + "time": 0.304916783127938, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1857,13 +1834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2712, - "time": 0.4553423961377208, + "noteOrder": 1817, + "time": 0.304916783127938, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1880,11 +1857,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2760, - "time": 0.4634735103544658, + "noteOrder": 1938, + "time": 0.3252445686698005, "position": { "x": 3, "y": 0 @@ -1903,11 +1880,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2905, - "time": 0.4878668530047008, + "noteOrder": 1986, + "time": 0.33337568288654557, "position": { "x": 3, "y": 0 @@ -1926,11 +1903,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2954, - "time": 0.49599796722144585, + "noteOrder": 1986, + "time": 0.33337568288654557, "position": { "x": 7, "y": 0 @@ -1949,13 +1926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3099, - "time": 0.5203913098716809, + "noteOrder": 2035, + "time": 0.34150679710329057, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1967,16 +1944,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3148, - "time": 0.5285224240884259, + "noteOrder": 2132, + "time": 0.3577690255367806, "position": { "x": 7, "y": 0 @@ -1995,13 +1972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3293, - "time": 0.5529157667386609, + "noteOrder": 2180, + "time": 0.3659001397535256, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2018,13 +1995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3341, - "time": 0.561046880955406, + "noteOrder": 2180, + "time": 0.3659001397535256, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2036,18 +2013,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3341, - "time": 0.561046880955406, + "noteOrder": 2229, + "time": 0.3740312539702706, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2064,13 +2041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3390, - "time": 0.5691779951721511, + "noteOrder": 2325, + "time": 0.3902934824037606, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2082,18 +2059,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3583, - "time": 0.601702452039131, + "noteOrder": 2374, + "time": 0.3984245966205056, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2110,13 +2087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 3632, - "time": 0.609833566255876, + "noteOrder": 2374, + "time": 0.3984245966205056, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2128,18 +2105,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3632, - "time": 0.609833566255876, + "noteOrder": 2422, + "time": 0.4065557108372507, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2156,11 +2133,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3680, - "time": 0.6179646804726211, + "noteOrder": 2519, + "time": 0.4228179392707407, "position": { "x": 3, "y": 0 @@ -2179,11 +2156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3777, - "time": 0.6342269089061111, + "noteOrder": 2568, + "time": 0.4309490534874857, "position": { "x": 3, "y": 0 @@ -2202,13 +2179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 3826, - "time": 0.6423580231228561, + "noteOrder": 2568, + "time": 0.4309490534874857, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2220,16 +2197,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3826, - "time": 0.6423580231228561, + "noteOrder": 2616, + "time": 0.4390801677042307, "position": { "x": 7, "y": 0 @@ -2248,11 +2225,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 3874, - "time": 0.6504891373396011, + "noteOrder": 2713, + "time": 0.4553423961377207, "position": { "x": 7, "y": 0 @@ -2271,13 +2248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3874, - "time": 0.6504891373396011, + "noteOrder": 2737, + "time": 0.45940795324609324, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2289,16 +2266,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3898, - "time": 0.6545546944479737, + "noteOrder": 2737, + "time": 0.45940795324609324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4634735103544657, "position": { "x": 3, "y": 0 @@ -2317,13 +2317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3898, - "time": 0.6545546944479737, + "noteOrder": 2786, + "time": 0.46753906746283824, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2335,18 +2335,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3922, - "time": 0.6586202515563461, + "noteOrder": 2786, + "time": 0.46753906746283824, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2358,16 +2358,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3922, - "time": 0.6586202515563461, + "noteOrder": 2907, + "time": 0.48786685300470084, "position": { "x": 3, "y": 0 @@ -2386,11 +2386,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3947, - "time": 0.6626858086647187, + "noteOrder": 2931, + "time": 0.4919324101130733, "position": { "x": 3, "y": 0 @@ -2409,11 +2409,34 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2931, + "time": 0.4919324101130733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3947, - "time": 0.6626858086647187, + "noteOrder": 2955, + "time": 0.49599796722144585, "position": { "x": 7, "y": 0 @@ -2432,11 +2455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3971, - "time": 0.6667513657730911, + "noteOrder": 2980, + "time": 0.5000635243298184, "position": { "x": 7, "y": 0 @@ -2455,13 +2478,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4068, - "time": 0.6830135942065811, + "noteOrder": 2980, + "time": 0.5000635243298184, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2473,18 +2496,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 4116, - "time": 0.6911447084233262, + "noteOrder": 3101, + "time": 0.5203913098716809, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2501,11 +2524,57 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4164, - "time": 0.6992758226400712, + "noteOrder": 3125, + "time": 0.5244568669800533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3125, + "time": 0.5244568669800533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3149, + "time": 0.5285224240884259, "position": { "x": 7, "y": 0 @@ -2524,11 +2593,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4213, - "time": 0.7074069368568162, + "noteOrder": 3173, + "time": 0.5325879811967984, "position": { "x": 7, "y": 0 @@ -2542,18 +2611,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4261, - "time": 0.7155380510735613, + "noteOrder": 3173, + "time": 0.5325879811967984, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2570,13 +2639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4358, - "time": 0.7318002795070513, + "noteOrder": 3294, + "time": 0.5529157667386609, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2588,18 +2657,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4407, - "time": 0.7399313937237963, + "noteOrder": 3343, + "time": 0.5610468809554059, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2616,13 +2685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4455, - "time": 0.7480625079405413, + "noteOrder": 3343, + "time": 0.5610468809554059, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2639,11 +2708,34 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3391, + "time": 0.569177995172151, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4552, - "time": 0.7643247363740314, + "noteOrder": 3585, + "time": 0.601702452039131, "position": { "x": 7, "y": 0 @@ -2662,11 +2754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4600, - "time": 0.7724558505907764, + "noteOrder": 3634, + "time": 0.609833566255876, "position": { "x": 7, "y": 0 @@ -2680,18 +2772,41 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3634, + "time": 0.609833566255876, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4649, - "time": 0.7805869648075214, + "noteOrder": 3682, + "time": 0.617964680472621, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2703,16 +2818,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4746, - "time": 0.7968491932410113, + "noteOrder": 3779, + "time": 0.634226908906111, "position": { "x": 3, "y": 0 @@ -2731,11 +2846,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4794, - "time": 0.8049803074577563, + "noteOrder": 3827, + "time": 0.6423580231228561, "position": { "x": 3, "y": 0 @@ -2749,16 +2864,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, - "time": 0.8293736501079914, + "noteOrder": 3827, + "time": 0.6423580231228561, "position": { "x": 7, "y": 0 @@ -2777,11 +2892,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4988, - "time": 0.8375047643247364, + "noteOrder": 3876, + "time": 0.650489137339601, "position": { "x": 7, "y": 0 @@ -2795,16 +2910,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5133, - "time": 0.8618981069749715, + "noteOrder": 3876, + "time": 0.650489137339601, "position": { "x": 3, "y": 0 @@ -2823,11 +2938,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5181, - "time": 0.8700292211917166, + "noteOrder": 3900, + "time": 0.6545546944479737, "position": { "x": 3, "y": 0 @@ -2841,16 +2956,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5327, - "time": 0.8944225638419515, + "noteOrder": 3900, + "time": 0.6545546944479737, "position": { "x": 7, "y": 0 @@ -2869,11 +2984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5375, - "time": 0.9025536780586966, + "noteOrder": 3924, + "time": 0.6586202515563461, "position": { "x": 7, "y": 0 @@ -2887,16 +3002,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5520, - "time": 0.9269470207089316, + "noteOrder": 3924, + "time": 0.6586202515563461, "position": { "x": 3, "y": 0 @@ -2915,11 +3030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5569, - "time": 0.9350781349256767, + "noteOrder": 3948, + "time": 0.6626858086647186, "position": { "x": 3, "y": 0 @@ -2933,6 +3048,1409 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3948, + "time": 0.6626858086647186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3973, + "time": 0.6667513657730911, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6830135942065811, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4118, + "time": 0.6911447084233261, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4166, + "time": 0.6992758226400712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4191, + "time": 0.7033413797484437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4191, + "time": 0.7033413797484437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4215, + "time": 0.7074069368568161, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4239, + "time": 0.7114724939651887, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4239, + "time": 0.7114724939651887, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4263, + "time": 0.7155380510735612, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4288, + "time": 0.7196036081819337, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4288, + "time": 0.7196036081819337, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4360, + "time": 0.7318002795070512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4384, + "time": 0.7358658366154237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4384, + "time": 0.7358658366154237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4409, + "time": 0.7399313937237962, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4433, + "time": 0.7439969508321688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4433, + "time": 0.7439969508321688, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4457, + "time": 0.7480625079405412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4481, + "time": 0.7521280650489138, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4481, + "time": 0.7521280650489138, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4554, + "time": 0.7643247363740312, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4578, + "time": 0.7683902934824038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4578, + "time": 0.7683902934824038, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7724558505907763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4627, + "time": 0.7765214076991488, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4627, + "time": 0.7765214076991488, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4651, + "time": 0.7805869648075212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7846525219158939, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7846525219158939, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4748, + "time": 0.7968491932410112, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4772, + "time": 0.8009147503493839, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4772, + "time": 0.8009147503493839, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4796, + "time": 0.8049803074577563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4820, + "time": 0.8090458645661288, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4820, + "time": 0.8090458645661288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4942, + "time": 0.8293736501079914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4966, + "time": 0.8334392072163639, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4966, + "time": 0.8334392072163639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4990, + "time": 0.8375047643247363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5014, + "time": 0.841570321433109, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5014, + "time": 0.841570321433109, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5135, + "time": 0.8618981069749714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5160, + "time": 0.8659636640833439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5160, + "time": 0.8659636640833439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5184, + "time": 0.8700292211917163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5208, + "time": 0.874094778300089, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5208, + "time": 0.874094778300089, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5329, + "time": 0.8944225638419514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5353, + "time": 0.8984881209503239, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5353, + "time": 0.8984881209503239, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5378, + "time": 0.9025536780586965, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5402, + "time": 0.906619235167069, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5402, + "time": 0.906619235167069, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5523, + "time": 0.9269470207089314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5547, + "time": 0.9310125778173041, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5547, + "time": 0.9310125778173041, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5571, + "time": 0.9350781349256765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5596, + "time": 0.939143692034049, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5596, + "time": 0.939143692034049, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false diff --git a/tracks/Ignited Night/info.json b/tracks/Ignited Night/info.json index c17ee3a3..7622b1f6 100644 --- a/tracks/Ignited Night/info.json +++ b/tracks/Ignited Night/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Ignited Night", - "SongLength": "109.923265", + "SongLength": "99.970612", "SongAuthorName": "HHH", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Insomniac Nights/309_difficulty_1a.json b/tracks/Insomniac Nights/309_difficulty_1a.json index f703956a..f6946141 100644 --- a/tracks/Insomniac Nights/309_difficulty_1a.json +++ b/tracks/Insomniac Nights/309_difficulty_1a.json @@ -94,7 +94,7 @@ }, { "noteOrder": 338, - "time": 0.05165733964700819, + "time": 0.05165733964700818, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 362, - "time": 0.05534714962179448, + "time": 0.055347149621794475, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 458, - "time": 0.07010638952093969, + "time": 0.07010638952093967, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 506, - "time": 0.07748600947051226, + "noteOrder": 507, + "time": 0.07748600947051228, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 603, - "time": 0.09224524936965747, + "time": 0.09224524936965746, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 651, - "time": 0.09962486931923008, + "time": 0.09962486931923005, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 699, - "time": 0.10700448926880265, + "noteOrder": 700, + "time": 0.10700448926880267, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 724, - "time": 0.11069429924358896, + "time": 0.11069429924358895, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 796, - "time": 0.12176372916794787, + "time": 0.12176372916794785, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 868, + "noteOrder": 869, "time": 0.13283315909230675, "position": { "x": 7, @@ -474,7 +474,7 @@ }, { "noteOrder": 1013, - "time": 0.15497201894102453, + "time": 0.15497201894102455, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1037, - "time": 0.15866182891581085, + "time": 0.15866182891581082, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.16235163889059714, "position": { "x": 5, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.16604144886538344, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1109, + "noteOrder": 1110, "time": 0.16973125884016974, "position": { "x": 3, @@ -614,7 +614,7 @@ }, { "noteOrder": 1206, - "time": 0.18449049873931495, + "time": 0.18449049873931492, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.18818030871410124, "position": { "x": 6, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.19187011868888754, "position": { "x": 5, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1278, + "noteOrder": 1279, "time": 0.19555992866367383, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1302, - "time": 0.19924973863846016, + "noteOrder": 1303, + "time": 0.1992497386384601, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1326, + "noteOrder": 1327, "time": 0.20293954861324642, "position": { "x": 8, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.3173236578316217, + "noteOrder": 2075, + "time": 0.31732365783162164, "position": { "x": 8, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2146, - "time": 0.32839308775598064, + "noteOrder": 2147, + "time": 0.3283930877559806, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2195, + "noteOrder": 2196, "time": 0.3357727077055532, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.35791156755427095, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36160137752905724, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2388, - "time": 0.3652911875038436, + "noteOrder": 2389, + "time": 0.36529118750384354, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.40218928725170655, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2654, "time": 0.40587909722649285, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2678, "time": 0.40956890720127914, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 2823, "time": 0.43170776704999697, "position": { "x": 5, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2846, - "time": 0.43539757702478327, + "noteOrder": 2847, + "time": 0.4353975770247832, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2870, - "time": 0.43908738699956956, + "noteOrder": 2871, + "time": 0.4390873869995695, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4196, - "time": 0.642026935612816, + "noteOrder": 4198, + "time": 0.6420269356128159, "position": { "x": 2, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4269, + "noteOrder": 4271, "time": 0.6530963655371749, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4293, - "time": 0.6567861755119613, + "noteOrder": 4295, + "time": 0.6567861755119612, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4317, + "noteOrder": 4319, "time": 0.6604759854867475, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4389, + "noteOrder": 4391, "time": 0.6715454154111064, "position": { "x": 8, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4462, - "time": 0.6826148453354653, + "noteOrder": 4464, + "time": 0.6826148453354652, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4486, + "noteOrder": 4488, "time": 0.6863046553102515, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4510, + "noteOrder": 4512, "time": 0.6899944652850378, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4582, + "noteOrder": 4584, "time": 0.7010638952093968, "position": { "x": 2, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4898, "time": 0.7490314248816187, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4994, "time": 0.7637906647807639, "position": { "x": 8, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5137, + "noteOrder": 5139, "time": 0.7859295246294816, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5161, - "time": 0.789619334604268, + "noteOrder": 5163, + "time": 0.7896193346042678, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5282, - "time": 0.8080683844781995, + "noteOrder": 5284, + "time": 0.8080683844781994, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5378, + "noteOrder": 5380, "time": 0.8228276243773446, "position": { "x": 2, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5547, - "time": 0.8486562942008486, + "noteOrder": 5549, + "time": 0.8486562942008488, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5622, "time": 0.8597257241252076, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5644, + "noteOrder": 5646, "time": 0.8634155340999939, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5668, + "noteOrder": 5670, "time": 0.8671053440747802, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5716, + "noteOrder": 5718, "time": 0.8744849640243527, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5740, - "time": 0.8781747739991391, + "noteOrder": 5742, + "time": 0.878174773999139, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5764, - "time": 0.8818645839739254, + "noteOrder": 5766, + "time": 0.8818645839739253, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5812, - "time": 0.889244203923498, + "noteOrder": 5815, + "time": 0.8892442039234979, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5837, - "time": 0.8929340138982843, + "noteOrder": 5839, + "time": 0.8929340138982842, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5861, - "time": 0.8966238238730706, + "noteOrder": 5863, + "time": 0.8966238238730705, "position": { "x": 5, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5909, + "noteOrder": 5911, "time": 0.9040034438226432, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5933, + "noteOrder": 5935, "time": 0.9076932537974295, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5957, - "time": 0.9113830637722159, + "noteOrder": 5960, + "time": 0.9113830637722158, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6150, + "noteOrder": 6153, "time": 0.9409015435705061, "position": { "x": 3, @@ -1576,9 +1576,9 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, + "noteOrder": 97, "time": 0.014759239899145194, "position": { "x": 3, @@ -1599,10 +1599,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.025828669823504093, + "time": 0.02582866982350409, "position": { "x": 3, "y": 0 @@ -1622,9 +1622,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, + "noteOrder": 97, "time": 0.014759239899145194, "position": { "x": 7, @@ -1645,10 +1645,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.025828669823504093, + "time": 0.02582866982350409, "position": { "x": 3, "y": 0 @@ -1668,7 +1668,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.02951847979829039, @@ -1691,7 +1691,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 265, "time": 0.040587909722649286, @@ -1714,9 +1714,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04427771969743558, "position": { "x": 8, @@ -1737,10 +1737,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, - "time": 0.05534714962179448, + "time": 0.055347149621794475, "position": { "x": 5, "y": 0 @@ -1760,7 +1760,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.05903695959658078, @@ -1783,10 +1783,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, - "time": 0.07010638952093969, + "time": 0.07010638952093967, "position": { "x": 6, "y": 0 @@ -1806,9 +1806,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, + "noteOrder": 483, "time": 0.07379619949572598, "position": { "x": 7, @@ -1829,7 +1829,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 555, "time": 0.08486562942008487, @@ -1852,7 +1852,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.08855543939487116, @@ -1875,10 +1875,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 603, - "time": 0.09224524936965747, + "time": 0.09224524936965746, "position": { "x": 3, "y": 0 @@ -1898,7 +1898,7 @@ }, { "lineGroupId": 19, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 627, "time": 0.09593505934444377, @@ -1921,10 +1921,10 @@ }, { "lineGroupId": 19, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 651, - "time": 0.09962486931923008, + "time": 0.09962486931923005, "position": { "x": 3, "y": 0 @@ -1944,10 +1944,10 @@ }, { "lineGroupId": 19, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 675, - "time": 0.10331467929401637, + "noteOrder": 676, + "time": 0.10331467929401636, "position": { "x": 4, "y": 0 @@ -1967,10 +1967,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10331467929401637, + "noteOrder": 676, + "time": 0.10331467929401636, "position": { "x": 6, "y": 0 @@ -1990,10 +1990,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 699, - "time": 0.10700448926880265, + "noteOrder": 700, + "time": 0.10700448926880267, "position": { "x": 7, "y": 0 @@ -2013,10 +2013,10 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 724, - "time": 0.11069429924358896, + "time": 0.11069429924358895, "position": { "x": 6, "y": 0 @@ -2036,7 +2036,7 @@ }, { "lineGroupId": 23, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 748, "time": 0.11438410921837526, @@ -2059,7 +2059,7 @@ }, { "lineGroupId": 23, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 772, "time": 0.11807391919316156, @@ -2082,7 +2082,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, "time": 0.11807391919316156, @@ -2105,10 +2105,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 796, - "time": 0.12176372916794787, + "time": 0.12176372916794785, "position": { "x": 3, "y": 0 @@ -2128,7 +2128,7 @@ }, { "lineGroupId": 27, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 820, "time": 0.12545353914273416, @@ -2151,7 +2151,7 @@ }, { "lineGroupId": 27, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 844, "time": 0.12914334911752046, @@ -2174,9 +2174,9 @@ }, { "lineGroupId": 27, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13283315909230675, "position": { "x": 4, @@ -2197,7 +2197,7 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, "time": 0.14759239899145196, @@ -2220,7 +2220,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 989, "time": 0.15128220896623826, @@ -2243,10 +2243,10 @@ }, { "lineGroupId": 34, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1013, - "time": 0.15497201894102453, + "time": 0.15497201894102455, "position": { "x": 7, "y": 0 @@ -2266,10 +2266,10 @@ }, { "lineGroupId": 34, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1037, - "time": 0.15866182891581085, + "time": 0.15866182891581082, "position": { "x": 6, "y": 0 @@ -2289,9 +2289,9 @@ }, { "lineGroupId": 34, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.16235163889059714, "position": { "x": 7, @@ -2312,7 +2312,7 @@ }, { "lineGroupId": 34, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1134, "time": 0.17342106881495606, @@ -2335,7 +2335,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1158, "time": 0.17711087878974233, @@ -2358,7 +2358,7 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1182, "time": 0.18080068876452862, @@ -2381,10 +2381,10 @@ }, { "lineGroupId": 42, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1206, - "time": 0.18449049873931495, + "time": 0.18449049873931492, "position": { "x": 3, "y": 0 @@ -2404,9 +2404,9 @@ }, { "lineGroupId": 42, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.18818030871410124, "position": { "x": 4, @@ -2427,9 +2427,9 @@ }, { "lineGroupId": 42, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.19187011868888754, "position": { "x": 3, @@ -2450,9 +2450,9 @@ }, { "lineGroupId": 42, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1326, + "noteOrder": 1327, "time": 0.20293954861324642, "position": { "x": 6, @@ -2473,10 +2473,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1399, - "time": 0.2140089785376053, + "time": 0.21400897853760534, "position": { "x": 6, "y": 0 @@ -2496,10 +2496,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1447, - "time": 0.22138859848717793, + "noteOrder": 1448, + "time": 0.2213885984871779, "position": { "x": 7, "y": 0 @@ -2519,9 +2519,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1495, + "noteOrder": 1496, "time": 0.22876821843675052, "position": { "x": 4, @@ -2542,7 +2542,7 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1544, "time": 0.2361478383863231, @@ -2565,9 +2565,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1736, + "noteOrder": 1737, "time": 0.2656663181846135, "position": { "x": 8, @@ -2587,11 +2587,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1761, - "time": 0.2693561281593998, + "noteOrder": 1749, + "time": 0.26751122317200665, "position": { "x": 8, "y": 0 @@ -2605,18 +2605,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1785, - "time": 0.2730459381341861, + "noteOrder": 1749, + "time": 0.26751122317200665, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2633,13 +2633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1809, - "time": 0.2767357481089724, + "noteOrder": 1761, + "time": 0.2693561281593998, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2651,18 +2651,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1833, - "time": 0.28042555808375874, + "noteOrder": 1761, + "time": 0.2693561281593998, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2679,11 +2679,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1857, - "time": 0.28411536805854504, + "noteOrder": 1761, + "time": 0.2693561281593998, "position": { "x": 8, "y": 0 @@ -2702,11 +2702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1881, - "time": 0.2878051780333313, + "noteOrder": 1773, + "time": 0.27120103314679295, "position": { "x": 8, "y": 0 @@ -2720,18 +2720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1905, - "time": 0.2914949880081176, + "noteOrder": 1773, + "time": 0.27120103314679295, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2748,13 +2748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1929, - "time": 0.2951847979829039, + "noteOrder": 1785, + "time": 0.2730459381341861, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2766,18 +2766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1954, - "time": 0.2988746079576902, + "noteOrder": 1785, + "time": 0.2730459381341861, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2794,11 +2794,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1978, - "time": 0.3025644179324765, + "noteOrder": 1785, + "time": 0.2730459381341861, "position": { "x": 8, "y": 0 @@ -2817,11 +2817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2002, - "time": 0.3062542279072628, + "noteOrder": 1798, + "time": 0.27489084312157924, "position": { "x": 8, "y": 0 @@ -2835,18 +2835,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2026, - "time": 0.30994403788204905, + "noteOrder": 1798, + "time": 0.27489084312157924, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2863,13 +2863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2050, - "time": 0.3136338478568354, + "noteOrder": 1810, + "time": 0.2767357481089724, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2881,18 +2881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2122, - "time": 0.3247032777811943, + "noteOrder": 1810, + "time": 0.2767357481089724, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2909,13 +2909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2195, - "time": 0.3357727077055532, + "noteOrder": 1810, + "time": 0.2767357481089724, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2927,18 +2927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2219, - "time": 0.33946251768033947, + "noteOrder": 1822, + "time": 0.27858065309636554, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2955,13 +2955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2243, - "time": 0.34315232765512577, + "noteOrder": 1822, + "time": 0.27858065309636554, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2973,18 +2973,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2267, - "time": 0.3468421376299121, + "noteOrder": 1834, + "time": 0.2804255580837587, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3001,13 +3001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2291, - "time": 0.3505319476046984, + "noteOrder": 1834, + "time": 0.2804255580837587, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3019,18 +3019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2315, - "time": 0.35422175757948465, + "noteOrder": 1834, + "time": 0.2804255580837587, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3042,18 +3042,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, - "time": 0.3652911875038436, + "noteOrder": 1846, + "time": 0.28227046307115183, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3065,18 +3065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2508, - "time": 0.3837402373777751, + "noteOrder": 1846, + "time": 0.28227046307115183, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3093,13 +3093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2532, - "time": 0.38743004735256137, + "noteOrder": 1858, + "time": 0.284115368058545, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3111,18 +3111,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2556, - "time": 0.39111985732734766, + "noteOrder": 1858, + "time": 0.284115368058545, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3139,11 +3139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2581, - "time": 0.394809667302134, + "noteOrder": 1858, + "time": 0.284115368058545, "position": { "x": 8, "y": 0 @@ -3162,11 +3162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2605, - "time": 0.3984994772769203, + "noteOrder": 1870, + "time": 0.28596027304593813, "position": { "x": 8, "y": 0 @@ -3180,18 +3180,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2677, - "time": 0.40956890720127914, + "noteOrder": 1870, + "time": 0.28596027304593813, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3203,18 +3203,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2701, - "time": 0.4132587171760655, + "noteOrder": 1882, + "time": 0.2878051780333313, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3231,13 +3231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2725, - "time": 0.4169485271508518, + "noteOrder": 1882, + "time": 0.2878051780333313, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3249,18 +3249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2749, - "time": 0.4206383371256381, + "noteOrder": 1882, + "time": 0.2878051780333313, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3272,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2774, - "time": 0.4243281471004243, + "noteOrder": 1894, + "time": 0.2896500830207244, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3300,13 +3300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2798, - "time": 0.4280179570752106, + "noteOrder": 1894, + "time": 0.2896500830207244, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3318,16 +3318,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2870, - "time": 0.43908738699956956, + "noteOrder": 1906, + "time": 0.2914949880081176, "position": { "x": 6, "y": 0 @@ -3341,18 +3341,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2991, - "time": 0.45753643687350104, + "noteOrder": 1906, + "time": 0.2914949880081176, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3369,11 +3369,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3015, - "time": 0.46122624684828734, + "noteOrder": 1906, + "time": 0.2914949880081176, "position": { "x": 8, "y": 0 @@ -3392,11 +3392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3039, - "time": 0.4649160568230737, + "noteOrder": 1918, + "time": 0.2933398929955107, "position": { "x": 8, "y": 0 @@ -3410,18 +3410,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3063, - "time": 0.4686058667978599, + "noteOrder": 1918, + "time": 0.2933398929955107, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3438,13 +3438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3087, - "time": 0.4722956767726462, + "noteOrder": 1930, + "time": 0.2951847979829039, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3456,18 +3456,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3111, - "time": 0.4759854867474325, + "noteOrder": 1930, + "time": 0.2951847979829039, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3484,11 +3484,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.47967529672221887, + "noteOrder": 1930, + "time": 0.2951847979829039, "position": { "x": 8, "y": 0 @@ -3507,11 +3507,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3159, - "time": 0.48336510669700516, + "noteOrder": 1942, + "time": 0.29702970297029707, "position": { "x": 8, "y": 0 @@ -3525,18 +3525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3184, - "time": 0.48705491667179146, + "noteOrder": 1942, + "time": 0.29702970297029707, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3553,13 +3553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3280, - "time": 0.5018141565709366, + "noteOrder": 1954, + "time": 0.2988746079576902, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3576,11 +3576,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3328, - "time": 0.5091937765205092, + "noteOrder": 1954, + "time": 0.2988746079576902, "position": { "x": 5, "y": 0 @@ -3594,18 +3594,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 3376, - "time": 0.5165733964700818, + "noteOrder": 1954, + "time": 0.2988746079576902, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3622,13 +3622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 66, "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, - "time": 0.5239530164196544, + "noteOrder": 1966, + "time": 0.30071951294508337, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3645,13 +3645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 66, "indexInLine": 3, "isSliding": false, - "noteOrder": 3666, - "time": 0.5608511161675175, + "noteOrder": 1966, + "time": 0.30071951294508337, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3668,11 +3668,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3425, - "time": 0.5239530164196544, + "noteOrder": 1978, + "time": 0.3025644179324765, "position": { "x": 6, "y": 0 @@ -3686,18 +3686,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3449, - "time": 0.5276428263944407, + "noteOrder": 1978, + "time": 0.3025644179324765, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3709,16 +3709,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3497, - "time": 0.5350224463440133, + "noteOrder": 1978, + "time": 0.3025644179324765, "position": { "x": 8, "y": 0 @@ -3737,13 +3737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 3, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3569, - "time": 0.5460918762683722, + "noteOrder": 1991, + "time": 0.30440932291986966, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3760,13 +3760,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 4, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3666, - "time": 0.5608511161675175, + "noteOrder": 1991, + "time": 0.30440932291986966, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3783,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3859, - "time": 0.5903695959658078, + "noteOrder": 2003, + "time": 0.3062542279072628, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3801,18 +3801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3883, - "time": 0.594059405940594, + "noteOrder": 2003, + "time": 0.3062542279072628, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3829,13 +3829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3907, - "time": 0.5977492159153804, + "noteOrder": 2003, + "time": 0.3062542279072628, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3852,13 +3852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3931, - "time": 0.6014390258901666, + "noteOrder": 2015, + "time": 0.30809913289465596, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3870,18 +3870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3955, - "time": 0.605128835864953, + "noteOrder": 2015, + "time": 0.30809913289465596, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3898,13 +3898,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3979, - "time": 0.6088186458397393, + "noteOrder": 2027, + "time": 0.3099440378820491, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3916,18 +3916,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4004, - "time": 0.6125084558145256, + "noteOrder": 2027, + "time": 0.3099440378820491, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3944,13 +3944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4028, - "time": 0.6161982657893119, + "noteOrder": 2027, + "time": 0.3099440378820491, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3967,13 +3967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4052, - "time": 0.6198880757640981, + "noteOrder": 2039, + "time": 0.3117889428694422, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3985,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4076, - "time": 0.6235778857388845, + "noteOrder": 2039, + "time": 0.3117889428694422, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4013,13 +4013,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4100, - "time": 0.6272676957136708, + "noteOrder": 2051, + "time": 0.31363384785683535, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4031,18 +4031,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4124, - "time": 0.6309575056884571, + "noteOrder": 2051, + "time": 0.31363384785683535, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4059,13 +4059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4148, - "time": 0.6346473156632434, + "noteOrder": 2051, + "time": 0.31363384785683535, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4082,13 +4082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4172, - "time": 0.6383371256380298, + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2063, + "time": 0.3154787528442285, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4100,18 +4100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4245, - "time": 0.6494065555623886, + "noteOrder": 2063, + "time": 0.3154787528442285, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4128,11 +4128,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4317, - "time": 0.6604759854867475, + "noteOrder": 2075, + "time": 0.31732365783162164, "position": { "x": 6, "y": 0 @@ -4151,13 +4151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4341, - "time": 0.6641657954615338, + "noteOrder": 2075, + "time": 0.31732365783162164, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4169,16 +4169,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4365, - "time": 0.66785560543632, + "noteOrder": 2123, + "time": 0.3247032777811943, "position": { "x": 8, "y": 0 @@ -4192,18 +4192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4438, - "time": 0.6789250353606789, + "noteOrder": 2196, + "time": 0.3357727077055532, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4220,13 +4220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 4510, - "time": 0.6899944652850378, + "noteOrder": 2220, + "time": 0.33946251768033947, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4238,16 +4238,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4534, - "time": 0.6936842752598242, + "noteOrder": 2232, + "time": 0.3413074226677326, "position": { "x": 2, "y": 0 @@ -4266,13 +4266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4558, - "time": 0.6973740852346104, + "noteOrder": 2232, + "time": 0.3413074226677326, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4284,18 +4284,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4631, - "time": 0.7084435151589693, + "noteOrder": 2244, + "time": 0.34315232765512577, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4307,18 +4307,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2244, + "time": 0.34315232765512577, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 4703, - "time": 0.7195129450833283, + "noteOrder": 2244, + "time": 0.34315232765512577, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4335,13 +4358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4631, - "time": 0.7084435151589693, + "noteOrder": 2256, + "time": 0.3449972326425189, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4353,18 +4376,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4703, - "time": 0.7195129450833283, + "noteOrder": 2256, + "time": 0.3449972326425189, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4376,18 +4399,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4727, - "time": 0.7232027550581145, + "noteOrder": 2268, + "time": 0.3468421376299121, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4404,13 +4427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4799, - "time": 0.7342721849824734, + "noteOrder": 2268, + "time": 0.3468421376299121, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4427,13 +4450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4727, - "time": 0.7232027550581145, + "noteOrder": 2268, + "time": 0.3468421376299121, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4450,13 +4473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4799, - "time": 0.7342721849824734, + "noteOrder": 2280, + "time": 0.34868704261730527, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4473,13 +4496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4824, - "time": 0.7379619949572598, + "noteOrder": 2280, + "time": 0.34868704261730527, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4491,18 +4514,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4848, - "time": 0.7416518049320461, + "noteOrder": 2292, + "time": 0.3505319476046984, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4519,13 +4542,36 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4872, - "time": 0.7453416149068324, + "noteOrder": 2292, + "time": 0.3505319476046984, "position": { - "x": 8, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2292, + "time": 0.3505319476046984, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -4542,13 +4588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4920, - "time": 0.752721234856405, + "noteOrder": 2304, + "time": 0.35237685259209156, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4560,18 +4606,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4944, - "time": 0.7564110448311913, + "noteOrder": 2304, + "time": 0.35237685259209156, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4588,13 +4634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4968, - "time": 0.7601008548059776, + "noteOrder": 2316, + "time": 0.35422175757948465, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4606,18 +4652,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5016, - "time": 0.7674804747555501, + "noteOrder": 2316, + "time": 0.35422175757948465, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4634,13 +4680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5041, - "time": 0.7711702847303364, + "noteOrder": 2316, + "time": 0.35422175757948465, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4657,13 +4703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5065, - "time": 0.7748600947051227, + "noteOrder": 2389, + "time": 0.36529118750384354, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4675,16 +4721,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5089, - "time": 0.778549904679909, + "noteOrder": 2509, + "time": 0.3837402373777751, "position": { "x": 8, "y": 0 @@ -4698,16 +4744,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5113, - "time": 0.7822397146546953, + "noteOrder": 2521, + "time": 0.3855851423651682, "position": { "x": 8, "y": 0 @@ -4726,13 +4772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5161, - "time": 0.789619334604268, + "noteOrder": 2521, + "time": 0.3855851423651682, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4749,13 +4795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5209, - "time": 0.7969989545538406, + "noteOrder": 2533, + "time": 0.38743004735256137, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4767,18 +4813,6895 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2533, + "time": 0.38743004735256137, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2533, + "time": 0.38743004735256137, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2545, + "time": 0.3892749523399545, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2545, + "time": 0.3892749523399545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2558, + "time": 0.39111985732734766, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2558, + "time": 0.39111985732734766, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2558, + "time": 0.39111985732734766, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2570, + "time": 0.3929647623147408, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2570, + "time": 0.3929647623147408, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3948096673021339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3948096673021339, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3948096673021339, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2594, + "time": 0.39665457228952705, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2594, + "time": 0.39665457228952705, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2606, + "time": 0.3984994772769202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2606, + "time": 0.3984994772769202, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.3984994772769202, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2678, + "time": 0.40956890720127914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2702, + "time": 0.41325871717606544, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2714, + "time": 0.4151036221634586, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2714, + "time": 0.4151036221634586, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2726, + "time": 0.41694852715085173, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2726, + "time": 0.41694852715085173, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2726, + "time": 0.41694852715085173, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2738, + "time": 0.4187934321382449, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2738, + "time": 0.4187934321382449, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2751, + "time": 0.42063833712563803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2751, + "time": 0.42063833712563803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2751, + "time": 0.42063833712563803, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2763, + "time": 0.4224832421130312, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2763, + "time": 0.4224832421130312, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2775, + "time": 0.4243281471004244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2775, + "time": 0.4243281471004244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2775, + "time": 0.4243281471004244, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4261730520878175, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4261730520878175, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2799, + "time": 0.4280179570752107, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2799, + "time": 0.4280179570752107, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2799, + "time": 0.4280179570752107, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2871, + "time": 0.4390873869995695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2992, + "time": 0.45753643687350104, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3004, + "time": 0.4593813418608942, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3004, + "time": 0.4593813418608942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3016, + "time": 0.46122624684828734, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3016, + "time": 0.46122624684828734, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3016, + "time": 0.46122624684828734, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3028, + "time": 0.4630711518356805, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3028, + "time": 0.4630711518356805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3040, + "time": 0.46491605682307363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3040, + "time": 0.46491605682307363, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3040, + "time": 0.46491605682307363, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3052, + "time": 0.4667609618104668, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3052, + "time": 0.4667609618104668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3064, + "time": 0.4686058667978599, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3064, + "time": 0.4686058667978599, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3064, + "time": 0.4686058667978599, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3076, + "time": 0.4704507717852531, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3076, + "time": 0.4704507717852531, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3088, + "time": 0.4722956767726462, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3088, + "time": 0.4722956767726462, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3088, + "time": 0.4722956767726462, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3100, + "time": 0.4741405817600394, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3100, + "time": 0.4741405817600394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3112, + "time": 0.4759854867474326, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3112, + "time": 0.4759854867474326, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3112, + "time": 0.4759854867474326, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3125, + "time": 0.47783039173482567, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3125, + "time": 0.47783039173482567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4796752967222188, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4796752967222188, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4796752967222188, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3149, + "time": 0.48152020170961196, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3149, + "time": 0.48152020170961196, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3161, + "time": 0.4833651066970051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3161, + "time": 0.4833651066970051, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3161, + "time": 0.4833651066970051, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3173, + "time": 0.48521001168439826, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3173, + "time": 0.48521001168439826, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4870549166717914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4870549166717914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4870549166717914, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3281, + "time": 0.5018141565709366, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5091937765205092, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5165733964700818, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5239530164196544, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3667, + "time": 0.5608511161675174, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5239530164196544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3450, + "time": 0.5276428263944407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3498, + "time": 0.5350224463440133, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3571, + "time": 0.5460918762683722, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3667, + "time": 0.5608511161675174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3860, + "time": 0.5903695959658078, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3872, + "time": 0.5922145009532009, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3872, + "time": 0.5922145009532009, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5940594059405941, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5940594059405941, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5940594059405941, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3897, + "time": 0.5959043109279872, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3897, + "time": 0.5959043109279872, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3909, + "time": 0.5977492159153804, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3909, + "time": 0.5977492159153804, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3909, + "time": 0.5977492159153804, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3921, + "time": 0.5995941209027735, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3921, + "time": 0.5995941209027735, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6014390258901667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6014390258901667, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6014390258901667, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3945, + "time": 0.6032839308775598, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3945, + "time": 0.6032839308775598, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3957, + "time": 0.605128835864953, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3957, + "time": 0.605128835864953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3957, + "time": 0.605128835864953, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3969, + "time": 0.6069737408523461, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3969, + "time": 0.6069737408523461, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3981, + "time": 0.6088186458397393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3981, + "time": 0.6088186458397393, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3981, + "time": 0.6088186458397393, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3993, + "time": 0.6106635508271324, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3993, + "time": 0.6106635508271324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6125084558145256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6125084558145256, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6125084558145256, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4017, + "time": 0.6143533608019187, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4017, + "time": 0.6143533608019187, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6161982657893119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6161982657893119, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6161982657893119, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4041, + "time": 0.618043170776705, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4041, + "time": 0.618043170776705, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4053, + "time": 0.6198880757640982, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4053, + "time": 0.6198880757640982, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4053, + "time": 0.6198880757640982, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4065, + "time": 0.6217329807514913, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4065, + "time": 0.6217329807514913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4078, + "time": 0.6235778857388844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4078, + "time": 0.6235778857388844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4078, + "time": 0.6235778857388844, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4090, + "time": 0.6254227907262776, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4090, + "time": 0.6254227907262776, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4102, + "time": 0.6272676957136707, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4102, + "time": 0.6272676957136707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4102, + "time": 0.6272676957136707, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4114, + "time": 0.6291126007010639, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4114, + "time": 0.6291126007010639, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4126, + "time": 0.630957505688457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4126, + "time": 0.630957505688457, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4126, + "time": 0.630957505688457, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4138, + "time": 0.6328024106758502, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4138, + "time": 0.6328024106758502, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4150, + "time": 0.6346473156632433, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4150, + "time": 0.6346473156632433, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4150, + "time": 0.6346473156632433, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4162, + "time": 0.6364922206506365, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4162, + "time": 0.6364922206506365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4174, + "time": 0.6383371256380296, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4174, + "time": 0.6383371256380296, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4174, + "time": 0.6383371256380296, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4186, + "time": 0.6401820306254228, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4186, + "time": 0.6401820306254228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4198, + "time": 0.6420269356128159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4198, + "time": 0.6420269356128159, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4246, + "time": 0.6494065555623886, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4319, + "time": 0.6604759854867475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4343, + "time": 0.6641657954615338, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4355, + "time": 0.6660107004489269, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4355, + "time": 0.6660107004489269, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4367, + "time": 0.66785560543632, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4367, + "time": 0.66785560543632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4367, + "time": 0.66785560543632, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4379, + "time": 0.6697005104237131, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4379, + "time": 0.6697005104237131, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4391, + "time": 0.6715454154111064, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4391, + "time": 0.6715454154111064, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6789250353606789, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4512, + "time": 0.6899944652850378, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4536, + "time": 0.6936842752598242, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4548, + "time": 0.6955291802472173, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4548, + "time": 0.6955291802472173, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6973740852346105, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6973740852346105, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6973740852346105, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4572, + "time": 0.6992189902220036, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4572, + "time": 0.6992189902220036, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4584, + "time": 0.7010638952093968, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4584, + "time": 0.7010638952093968, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.7084435151589693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4705, + "time": 0.7195129450833282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.7084435151589693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4705, + "time": 0.7195129450833282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4729, + "time": 0.7232027550581145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.7342721849824734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4729, + "time": 0.7232027550581145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.7342721849824734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4826, + "time": 0.7379619949572597, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4838, + "time": 0.7398068999446529, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4838, + "time": 0.7398068999446529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4850, + "time": 0.741651804932046, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4850, + "time": 0.741651804932046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4850, + "time": 0.741651804932046, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4862, + "time": 0.7434967099194393, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4862, + "time": 0.7434967099194393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4874, + "time": 0.7453416149068324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4874, + "time": 0.7453416149068324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4874, + "time": 0.7453416149068324, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4886, + "time": 0.7471865198942255, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4886, + "time": 0.7471865198942255, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4898, + "time": 0.7490314248816187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4898, + "time": 0.7490314248816187, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4910, + "time": 0.7508763298690118, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4910, + "time": 0.7508763298690118, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4922, + "time": 0.752721234856405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4922, + "time": 0.752721234856405, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4922, + "time": 0.752721234856405, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4934, + "time": 0.7545661398437981, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4934, + "time": 0.7545661398437981, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4946, + "time": 0.7564110448311913, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4946, + "time": 0.7564110448311913, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4946, + "time": 0.7564110448311913, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4958, + "time": 0.7582559498185844, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4958, + "time": 0.7582559498185844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4970, + "time": 0.7601008548059776, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4970, + "time": 0.7601008548059776, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4970, + "time": 0.7601008548059776, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4982, + "time": 0.7619457597933706, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4982, + "time": 0.7619457597933706, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4994, + "time": 0.7637906647807639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4994, + "time": 0.7637906647807639, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5006, + "time": 0.7656355697681569, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5006, + "time": 0.7656355697681569, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5019, + "time": 0.7674804747555501, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5019, + "time": 0.7674804747555501, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5019, + "time": 0.7674804747555501, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5031, + "time": 0.7693253797429432, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5031, + "time": 0.7693253797429432, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5043, + "time": 0.7711702847303364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5043, + "time": 0.7711702847303364, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5043, + "time": 0.7711702847303364, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5055, + "time": 0.7730151897177295, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5055, + "time": 0.7730151897177295, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5067, + "time": 0.7748600947051227, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5067, + "time": 0.7748600947051227, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5067, + "time": 0.7748600947051227, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5079, + "time": 0.7767049996925158, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5079, + "time": 0.7767049996925158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5091, + "time": 0.778549904679909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5091, + "time": 0.778549904679909, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5091, + "time": 0.778549904679909, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5103, + "time": 0.7803948096673021, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5103, + "time": 0.7803948096673021, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7822397146546953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7822397146546953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7822397146546953, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5163, + "time": 0.7896193346042678, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5212, + "time": 0.7969989545538404, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5224, + "time": 0.7988438595412337, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5224, + "time": 0.7988438595412337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5236, + "time": 0.8006887645286268, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5236, + "time": 0.8006887645286268, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5236, + "time": 0.8006887645286268, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5248, + "time": 0.80253366951602, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5248, + "time": 0.80253366951602, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5260, + "time": 0.8043785745034131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5260, + "time": 0.8043785745034131, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5260, + "time": 0.8043785745034131, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5272, + "time": 0.8062234794908063, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5272, + "time": 0.8062234794908063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5284, + "time": 0.8080683844781994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5296, + "time": 0.8099132894655926, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5296, + "time": 0.8099132894655926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5308, + "time": 0.8117581944529857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5308, + "time": 0.8117581944529857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5308, + "time": 0.8117581944529857, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5320, + "time": 0.8136030994403789, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5320, + "time": 0.8136030994403789, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5332, + "time": 0.815448004427772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5332, + "time": 0.815448004427772, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5332, + "time": 0.815448004427772, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5344, + "time": 0.8172929094151652, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5344, + "time": 0.8172929094151652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5356, + "time": 0.8191378144025583, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5356, + "time": 0.8191378144025583, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5356, + "time": 0.8191378144025583, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5368, + "time": 0.8209827193899515, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5368, + "time": 0.8209827193899515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5380, + "time": 0.8228276243773446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5380, + "time": 0.8228276243773446, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5393, + "time": 0.8246725293647378, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5393, + "time": 0.8246725293647378, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5405, + "time": 0.8265174343521309, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5405, + "time": 0.8265174343521309, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5405, + "time": 0.8265174343521309, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5453, + "time": 0.8338970543017035, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5453, + "time": 0.8338970543017035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5501, + "time": 0.8412766742512761, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5501, + "time": 0.8412766742512761, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5549, + "time": 0.8486562942008488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5598, + "time": 0.8560359141504214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5622, + "time": 0.8597257241252076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5646, + "time": 0.8634155340999939, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5234, - "time": 0.8006887645286268, + "noteOrder": 5670, + "time": 0.8671053440747802, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4795,13 +11718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5258, - "time": 0.8043785745034131, + "noteOrder": 5694, + "time": 0.8707951540495664, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4813,18 +11736,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5306, - "time": 0.8117581944529857, + "noteOrder": 5694, + "time": 0.8707951540495664, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4836,18 +11759,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5330, - "time": 0.8154480044277721, + "noteOrder": 5718, + "time": 0.8744849640243527, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4864,13 +11787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5354, - "time": 0.8191378144025583, + "noteOrder": 5742, + "time": 0.878174773999139, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4882,18 +11805,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5402, - "time": 0.826517434352131, + "noteOrder": 5766, + "time": 0.8818645839739253, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4910,13 +11833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5451, - "time": 0.8338970543017036, + "noteOrder": 5791, + "time": 0.8855543939487116, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4933,11 +11856,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5451, - "time": 0.8338970543017036, + "noteOrder": 5791, + "time": 0.8855543939487116, "position": { "x": 6, "y": 0 @@ -4956,13 +11879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5499, - "time": 0.8412766742512762, + "noteOrder": 5815, + "time": 0.8892442039234979, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4979,13 +11902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5499, - "time": 0.8412766742512762, + "noteOrder": 5839, + "time": 0.8929340138982842, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4997,18 +11920,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5547, - "time": 0.8486562942008486, + "noteOrder": 5863, + "time": 0.8966238238730705, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5020,16 +11943,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5595, - "time": 0.8560359141504212, + "noteOrder": 5887, + "time": 0.9003136338478569, "position": { "x": 6, "y": 0 @@ -5048,13 +11971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 5619, - "time": 0.8597257241252076, + "noteOrder": 5887, + "time": 0.9003136338478569, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5066,18 +11989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 198, "indexInLine": 2, "isSliding": false, - "noteOrder": 5644, - "time": 0.8634155340999939, + "noteOrder": 5911, + "time": 0.9040034438226432, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5089,18 +12012,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 198, "indexInLine": 3, "isSliding": false, - "noteOrder": 5668, - "time": 0.8671053440747802, + "noteOrder": 5935, + "time": 0.9076932537974295, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5112,18 +12035,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 198, "indexInLine": 4, "isSliding": false, - "noteOrder": 5692, - "time": 0.8707951540495665, + "noteOrder": 5960, + "time": 0.9113830637722158, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5135,16 +12058,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5692, - "time": 0.8707951540495665, + "noteOrder": 5984, + "time": 0.9150728737470021, "position": { "x": 4, "y": 0 @@ -5163,13 +12086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 5716, - "time": 0.8744849640243527, + "noteOrder": 5984, + "time": 0.9150728737470021, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5181,18 +12104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 202, "indexInLine": 2, "isSliding": false, - "noteOrder": 5740, - "time": 0.8781747739991391, + "noteOrder": 5996, + "time": 0.9169177787343952, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5204,18 +12127,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 202, "indexInLine": 3, "isSliding": false, - "noteOrder": 5764, - "time": 0.8818645839739254, + "noteOrder": 5996, + "time": 0.9169177787343952, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5227,18 +12150,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 4, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5788, - "time": 0.8855543939487117, + "noteOrder": 6008, + "time": 0.9187626837217884, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5255,13 +12178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5788, - "time": 0.8855543939487117, + "noteOrder": 6020, + "time": 0.9206075887091815, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5273,18 +12196,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5812, - "time": 0.889244203923498, + "noteOrder": 6020, + "time": 0.9206075887091815, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5296,18 +12219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 2, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5837, - "time": 0.8929340138982843, + "noteOrder": 6032, + "time": 0.9224524936965747, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5324,11 +12247,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 3, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5861, - "time": 0.8966238238730706, + "noteOrder": 6044, + "time": 0.9242973986839678, "position": { "x": 7, "y": 0 @@ -5347,13 +12270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 4, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5885, - "time": 0.9003136338478569, + "noteOrder": 6044, + "time": 0.9242973986839678, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5370,13 +12293,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5885, - "time": 0.9003136338478569, + "noteOrder": 6056, + "time": 0.926142303671361, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5393,11 +12316,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5909, - "time": 0.9040034438226432, + "noteOrder": 6068, + "time": 0.9279872086587541, "position": { "x": 3, "y": 0 @@ -5416,13 +12339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 2, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5933, - "time": 0.9076932537974295, + "noteOrder": 6068, + "time": 0.9279872086587541, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5439,13 +12362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 3, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5957, - "time": 0.9113830637722159, + "noteOrder": 6080, + "time": 0.9298321136461473, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5457,18 +12380,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 4, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5981, - "time": 0.9150728737470021, + "noteOrder": 6092, + "time": 0.9316770186335404, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5480,18 +12403,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5981, - "time": 0.9150728737470021, + "noteOrder": 6092, + "time": 0.9316770186335404, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5508,11 +12431,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6005, - "time": 0.9187626837217884, + "noteOrder": 6104, + "time": 0.9335219236209336, "position": { "x": 3, "y": 0 @@ -5531,13 +12454,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6029, - "time": 0.9224524936965747, + "noteOrder": 6116, + "time": 0.9353668286083267, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5549,18 +12472,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6054, - "time": 0.926142303671361, + "noteOrder": 6116, + "time": 0.9353668286083267, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5577,11 +12500,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6078, - "time": 0.9298321136461474, + "noteOrder": 6128, + "time": 0.9372117335957199, "position": { "x": 7, "y": 0 @@ -5600,13 +12523,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6102, - "time": 0.9335219236209336, + "noteOrder": 6140, + "time": 0.939056638583113, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5618,18 +12541,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6126, - "time": 0.9372117335957199, + "noteOrder": 6140, + "time": 0.939056638583113, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5647,9 +12570,9 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6174, + "noteOrder": 6177, "time": 0.9445913535452924, "position": { "x": 3, @@ -5670,9 +12593,9 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6198, + "noteOrder": 6201, "time": 0.9482811635200789, "position": { "x": 5, @@ -5693,9 +12616,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6174, + "noteOrder": 6177, "time": 0.9445913535452924, "position": { "x": 7, @@ -5716,9 +12639,9 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6198, + "noteOrder": 6201, "time": 0.9482811635200789, "position": { "x": 7, @@ -5739,10 +12662,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6222, - "time": 0.951970973494865, + "noteOrder": 6225, + "time": 0.9519709734948651, "position": { "x": 7, "y": 0 @@ -5762,10 +12685,10 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6247, - "time": 0.9556607834696514, + "noteOrder": 6249, + "time": 0.9556607834696513, "position": { "x": 5, "y": 0 @@ -5785,10 +12708,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6222, - "time": 0.951970973494865, + "noteOrder": 6225, + "time": 0.9519709734948651, "position": { "x": 3, "y": 0 @@ -5808,10 +12731,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6247, - "time": 0.9556607834696514, + "noteOrder": 6249, + "time": 0.9556607834696513, "position": { "x": 3, "y": 0 diff --git a/tracks/Insomniac Nights/309_difficulty_1b.json b/tracks/Insomniac Nights/309_difficulty_1b.json index 0c23daf8..845123c9 100644 --- a/tracks/Insomniac Nights/309_difficulty_1b.json +++ b/tracks/Insomniac Nights/309_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 338, - "time": 0.05165733964700819, + "time": 0.05165733964700818, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 724, - "time": 0.11069429924358896, + "time": 0.11069429924358895, "position": { "x": 2, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1109, + "noteOrder": 1110, "time": 0.16973125884016974, "position": { "x": 4, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1302, - "time": 0.19924973863846016, + "noteOrder": 1303, + "time": 0.1992497386384601, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2026, - "time": 0.30994403788204905, + "noteOrder": 2027, + "time": 0.3099440378820491, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.3173236578316217, + "noteOrder": 2075, + "time": 0.31732365783162164, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36160137752905724, "position": { "x": 5, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2412, - "time": 0.3689809974786299, + "noteOrder": 2413, + "time": 0.36898099747862984, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2654, "time": 0.40587909722649285, "position": { "x": 4, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2846, - "time": 0.43539757702478327, + "noteOrder": 2847, + "time": 0.4353975770247832, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3135, - "time": 0.47967529672221887, + "noteOrder": 3137, + "time": 0.4796752967222188, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4100, - "time": 0.6272676957136708, + "noteOrder": 4102, + "time": 0.6272676957136707, "position": { "x": 5, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4148, - "time": 0.6346473156632434, + "noteOrder": 4150, + "time": 0.6346473156632433, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4196, - "time": 0.642026935612816, + "noteOrder": 4198, + "time": 0.6420269356128159, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4486, + "noteOrder": 4488, "time": 0.6863046553102515, "position": { "x": 5, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4534, + "noteOrder": 4536, "time": 0.6936842752598242, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4582, + "noteOrder": 4584, "time": 0.7010638952093968, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4968, + "noteOrder": 4970, "time": 0.7601008548059776, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5161, - "time": 0.789619334604268, + "noteOrder": 5163, + "time": 0.7896193346042678, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5354, + "noteOrder": 5356, "time": 0.8191378144025583, "position": { "x": 6, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5740, - "time": 0.8781747739991391, + "noteOrder": 5742, + "time": 0.878174773999139, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5933, + "noteOrder": 5935, "time": 0.9076932537974295, "position": { "x": 6, @@ -576,9 +576,9 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, + "noteOrder": 97, "time": 0.014759239899145194, "position": { "x": 7, @@ -599,10 +599,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.025828669823504093, + "time": 0.02582866982350409, "position": { "x": 3, "y": 0 @@ -622,9 +622,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, + "noteOrder": 97, "time": 0.014759239899145194, "position": { "x": 3, @@ -645,10 +645,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.025828669823504093, + "time": 0.02582866982350409, "position": { "x": 3, "y": 0 @@ -668,7 +668,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.02951847979829039, @@ -691,7 +691,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, "time": 0.03689809974786299, @@ -714,9 +714,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04427771969743558, "position": { "x": 8, @@ -737,10 +737,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, - "time": 0.05165733964700819, + "time": 0.05165733964700818, "position": { "x": 6, "y": 0 @@ -760,7 +760,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.05903695959658078, @@ -783,7 +783,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 434, "time": 0.06641657954615338, @@ -806,9 +806,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, + "noteOrder": 483, "time": 0.07379619949572598, "position": { "x": 6, @@ -829,7 +829,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.08117581944529857, @@ -852,7 +852,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.08855543939487116, @@ -875,7 +875,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 627, "time": 0.09593505934444377, @@ -898,10 +898,10 @@ }, { "lineGroupId": 11, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 675, - "time": 0.10331467929401637, + "noteOrder": 676, + "time": 0.10331467929401636, "position": { "x": 4, "y": 0 @@ -921,10 +921,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10331467929401637, + "noteOrder": 676, + "time": 0.10331467929401636, "position": { "x": 6, "y": 0 @@ -944,10 +944,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 724, - "time": 0.11069429924358896, + "time": 0.11069429924358895, "position": { "x": 4, "y": 0 @@ -967,7 +967,7 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 772, "time": 0.11807391919316156, @@ -990,7 +990,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, "time": 0.11807391919316156, @@ -1013,7 +1013,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 820, "time": 0.12545353914273416, @@ -1036,9 +1036,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13283315909230675, "position": { "x": 3, @@ -1059,7 +1059,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 941, "time": 0.14390258901666564, @@ -1082,9 +1082,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13283315909230675, "position": { "x": 7, @@ -1105,7 +1105,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 941, "time": 0.14390258901666564, @@ -1128,7 +1128,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, "time": 0.14759239899145196, @@ -1150,11 +1150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1013, - "time": 0.15497201894102453, + "noteOrder": 989, + "time": 0.15128220896623826, "position": { "x": 8, "y": 0 @@ -1168,18 +1168,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1061, - "time": 0.16235163889059714, + "noteOrder": 989, + "time": 0.15128220896623826, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1196,13 +1196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 1109, - "time": 0.16973125884016974, + "noteOrder": 1013, + "time": 0.15497201894102455, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -1214,18 +1214,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1158, - "time": 0.17711087878974233, + "noteOrder": 1037, + "time": 0.15866182891581082, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1242,13 +1242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1206, - "time": 0.18449049873931495, + "noteOrder": 1037, + "time": 0.15866182891581082, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1260,18 +1260,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, - "time": 0.19187011868888754, + "noteOrder": 1062, + "time": 0.16235163889059714, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1283,16 +1283,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1302, - "time": 0.19924973863846016, + "noteOrder": 1110, + "time": 0.16973125884016974, "position": { "x": 5, "y": 0 @@ -1306,18 +1306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.20662935858803275, + "noteOrder": 1158, + "time": 0.17711087878974233, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1329,18 +1329,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1399, - "time": 0.2140089785376053, + "noteOrder": 1182, + "time": 0.18080068876452862, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -1352,18 +1352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.22138859848717793, + "noteOrder": 1182, + "time": 0.18080068876452862, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1380,13 +1380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 1495, - "time": 0.22876821843675052, + "noteOrder": 1206, + "time": 0.18449049873931492, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -1398,18 +1398,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1544, - "time": 0.2361478383863231, + "noteOrder": 1231, + "time": 0.18818030871410124, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -1421,16 +1421,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1592, - "time": 0.24352745833589573, + "noteOrder": 1231, + "time": 0.18818030871410124, "position": { "x": 4, "y": 0 @@ -1444,18 +1444,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, - "time": 0.2361478383863231, + "noteOrder": 1255, + "time": 0.19187011868888754, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -1467,18 +1467,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 1, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1592, - "time": 0.24352745833589573, + "noteOrder": 1303, + "time": 0.1992497386384601, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -1490,18 +1490,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1736, - "time": 0.2656663181846135, + "noteOrder": 1351, + "time": 0.20662935858803272, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -1518,13 +1518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1785, - "time": 0.2730459381341861, + "noteOrder": 1399, + "time": 0.21400897853760534, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -1536,18 +1536,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1833, - "time": 0.28042555808375874, + "noteOrder": 1448, + "time": 0.2213885984871779, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -1559,18 +1559,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1881, - "time": 0.2878051780333313, + "noteOrder": 1496, + "time": 0.22876821843675052, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -1587,13 +1587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1929, - "time": 0.2951847979829039, + "noteOrder": 1544, + "time": 0.2361478383863231, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -1605,16 +1605,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2074, - "time": 0.3173236578316217, + "noteOrder": 1592, + "time": 0.2435274583358957, "position": { "x": 4, "y": 0 @@ -1628,18 +1628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2122, - "time": 0.3247032777811943, + "noteOrder": 1544, + "time": 0.2361478383863231, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1651,18 +1651,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2171, - "time": 0.3320828977307669, + "noteOrder": 1592, + "time": 0.2435274583358957, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1679,13 +1679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.33946251768033947, + "noteOrder": 1737, + "time": 0.2656663181846135, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1697,18 +1697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2267, - "time": 0.3468421376299121, + "noteOrder": 1761, + "time": 0.2693561281593998, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -1725,13 +1725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2315, - "time": 0.35422175757948465, + "noteOrder": 1761, + "time": 0.2693561281593998, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -1743,18 +1743,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 2412, - "time": 0.3689809974786299, + "noteOrder": 1785, + "time": 0.2730459381341861, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -1771,11 +1771,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2508, - "time": 0.3837402373777751, + "noteOrder": 1810, + "time": 0.2767357481089724, "position": { "x": 8, "y": 0 @@ -1789,18 +1789,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2556, - "time": 0.39111985732734766, + "noteOrder": 1810, + "time": 0.2767357481089724, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -1817,11 +1817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2605, - "time": 0.3984994772769203, + "noteOrder": 1834, + "time": 0.2804255580837587, "position": { "x": 8, "y": 0 @@ -1840,11 +1840,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2701, - "time": 0.4132587171760655, + "noteOrder": 1858, + "time": 0.284115368058545, "position": { "x": 8, "y": 0 @@ -1863,11 +1863,34 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1858, + "time": 0.284115368058545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2749, - "time": 0.4206383371256381, + "noteOrder": 1882, + "time": 0.2878051780333313, "position": { "x": 8, "y": 0 @@ -1886,11 +1909,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2798, - "time": 0.4280179570752106, + "noteOrder": 1906, + "time": 0.2914949880081176, "position": { "x": 8, "y": 0 @@ -1904,18 +1927,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1906, + "time": 0.2914949880081176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 2846, - "time": 0.43539757702478327, + "noteOrder": 1930, + "time": 0.2951847979829039, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -1932,13 +1978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2991, - "time": 0.45753643687350104, + "noteOrder": 2075, + "time": 0.31732365783162164, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -1950,16 +1996,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3039, - "time": 0.4649160568230737, + "noteOrder": 2123, + "time": 0.3247032777811943, "position": { "x": 2, "y": 0 @@ -1973,16 +2019,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3087, - "time": 0.4722956767726462, + "noteOrder": 2147, + "time": 0.3283930877559806, "position": { "x": 2, "y": 0 @@ -2001,13 +2047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3184, - "time": 0.48705491667179146, + "noteOrder": 2147, + "time": 0.3283930877559806, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2024,13 +2070,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 3256, - "time": 0.49812434659615035, + "noteOrder": 2171, + "time": 0.3320828977307669, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2042,18 +2088,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3184, - "time": 0.48705491667179146, + "noteOrder": 2196, + "time": 0.3357727077055532, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2070,13 +2116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3256, - "time": 0.49812434659615035, + "noteOrder": 2196, + "time": 0.3357727077055532, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2093,13 +2139,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3280, - "time": 0.5018141565709366, + "noteOrder": 2220, + "time": 0.33946251768033947, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2116,13 +2162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3328, - "time": 0.5091937765205092, + "noteOrder": 2244, + "time": 0.34315232765512577, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2139,11 +2185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3328, - "time": 0.5091937765205092, + "noteOrder": 2244, + "time": 0.34315232765512577, "position": { "x": 4, "y": 0 @@ -2157,16 +2203,62 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 3376, - "time": 0.5165733964700818, + "noteOrder": 2268, + "time": 0.3468421376299121, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2292, + "time": 0.3505319476046984, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2292, + "time": 0.3505319476046984, "position": { "x": 4, "y": 0 @@ -2185,13 +2277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3376, - "time": 0.5165733964700818, + "noteOrder": 2316, + "time": 0.35422175757948465, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2208,13 +2300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, - "time": 0.5239530164196544, + "noteOrder": 2413, + "time": 0.36898099747862984, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2231,13 +2323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3425, - "time": 0.5239530164196544, + "noteOrder": 2509, + "time": 0.3837402373777751, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2254,13 +2346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3473, - "time": 0.531332636369227, + "noteOrder": 2533, + "time": 0.38743004735256137, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2277,13 +2369,1968 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2533, + "time": 0.38743004735256137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2558, + "time": 0.39111985732734766, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3948096673021339, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3948096673021339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2606, + "time": 0.3984994772769202, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2630, + "time": 0.40218928725170655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2630, + "time": 0.40218928725170655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2654, + "time": 0.40587909722649285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2654, + "time": 0.40587909722649285, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2702, + "time": 0.41325871717606544, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2726, + "time": 0.41694852715085173, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2726, + "time": 0.41694852715085173, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2751, + "time": 0.42063833712563803, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2775, + "time": 0.4243281471004244, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2775, + "time": 0.4243281471004244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2799, + "time": 0.4280179570752107, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2847, + "time": 0.4353975770247832, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2992, + "time": 0.45753643687350104, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3016, + "time": 0.46122624684828734, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3016, + "time": 0.46122624684828734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3040, + "time": 0.46491605682307363, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3064, + "time": 0.4686058667978599, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3064, + "time": 0.4686058667978599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3088, + "time": 0.4722956767726462, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3112, + "time": 0.4759854867474326, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3112, + "time": 0.4759854867474326, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3137, + "time": 0.4796752967222188, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4870549166717914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3257, + "time": 0.4981243465961503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3185, + "time": 0.4870549166717914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3257, + "time": 0.4981243465961503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3281, + "time": 0.5018141565709366, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5091937765205092, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3330, + "time": 0.5091937765205092, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5165733964700818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3378, + "time": 0.5165733964700818, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5239530164196544, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5239530164196544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3474, + "time": 0.531332636369227, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3474, + "time": 0.531332636369227, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3523, + "time": 0.5387122563187996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3571, + "time": 0.5460918762683722, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3619, + "time": 0.5534714962179448, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3860, + "time": 0.5903695959658078, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5940594059405941, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5940594059405941, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3909, + "time": 0.5977492159153804, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6014390258901667, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3933, + "time": 0.6014390258901667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3957, + "time": 0.605128835864953, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3981, + "time": 0.6088186458397393, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3981, + "time": 0.6088186458397393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6125084558145256, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6161982657893119, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6161982657893119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4053, + "time": 0.6198880757640982, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4198, + "time": 0.6420269356128159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4246, + "time": 0.6494065555623886, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4271, + "time": 0.6530963655371749, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4271, + "time": 0.6530963655371749, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4295, + "time": 0.6567861755119612, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4319, + "time": 0.6604759854867475, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4319, + "time": 0.6604759854867475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4343, + "time": 0.6641657954615338, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4367, + "time": 0.66785560543632, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4367, + "time": 0.66785560543632, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4391, + "time": 0.6715454154111064, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4415, + "time": 0.6752352253858926, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4415, + "time": 0.6752352253858926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6789250353606789, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4584, + "time": 0.7010638952093968, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.7084435151589693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4705, + "time": 0.7195129450833282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.7084435151589693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4705, + "time": 0.7195129450833282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4729, + "time": 0.7232027550581145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.7342721849824734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4729, + "time": 0.7232027550581145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.7342721849824734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4826, + "time": 0.7379619949572597, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4850, + "time": 0.741651804932046, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4850, + "time": 0.741651804932046, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4874, + "time": 0.7453416149068324, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4898, + "time": 0.7490314248816187, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4898, + "time": 0.7490314248816187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3473, - "time": 0.531332636369227, + "noteOrder": 4922, + "time": 0.752721234856405, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2295,18 +4342,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3521, - "time": 0.5387122563187996, + "noteOrder": 4946, + "time": 0.7564110448311913, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2318,16 +4365,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3569, - "time": 0.5460918762683722, + "noteOrder": 4946, + "time": 0.7564110448311913, "position": { "x": 6, "y": 0 @@ -2346,11 +4393,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3618, - "time": 0.5534714962179448, + "noteOrder": 4970, + "time": 0.7601008548059776, "position": { "x": 6, "y": 0 @@ -2369,11 +4416,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3859, - "time": 0.5903695959658078, + "noteOrder": 4970, + "time": 0.7601008548059776, "position": { "x": 8, "y": 0 @@ -2392,11 +4439,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3907, - "time": 0.5977492159153804, + "noteOrder": 5019, + "time": 0.7674804747555501, "position": { "x": 8, "y": 0 @@ -2410,16 +4457,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3955, - "time": 0.605128835864953, + "noteOrder": 5043, + "time": 0.7711702847303364, "position": { "x": 8, "y": 0 @@ -2438,13 +4485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4004, - "time": 0.6125084558145256, + "noteOrder": 5043, + "time": 0.7711702847303364, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2456,16 +4503,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4052, - "time": 0.6198880757640981, + "noteOrder": 5067, + "time": 0.7748600947051227, "position": { "x": 8, "y": 0 @@ -2479,18 +4526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4196, - "time": 0.642026935612816, + "noteOrder": 5091, + "time": 0.778549904679909, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2502,18 +4549,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4245, - "time": 0.6494065555623886, + "noteOrder": 5091, + "time": 0.778549904679909, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2530,13 +4577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4293, - "time": 0.6567861755119613, + "noteOrder": 5115, + "time": 0.7822397146546953, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2553,13 +4600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.6641657954615338, + "noteOrder": 5163, + "time": 0.7896193346042678, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2571,16 +4618,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4389, - "time": 0.6715454154111064, + "noteOrder": 5212, + "time": 0.7969989545538404, "position": { "x": 2, "y": 0 @@ -2594,16 +4641,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4438, - "time": 0.6789250353606789, + "noteOrder": 5236, + "time": 0.8006887645286268, "position": { "x": 2, "y": 0 @@ -2622,13 +4669,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4582, - "time": 0.7010638952093968, + "noteOrder": 5236, + "time": 0.8006887645286268, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2645,13 +4692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4631, - "time": 0.7084435151589693, + "noteOrder": 5260, + "time": 0.8043785745034131, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2663,18 +4710,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4703, - "time": 0.7195129450833283, + "noteOrder": 5284, + "time": 0.8080683844781994, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2686,18 +4733,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4631, - "time": 0.7084435151589693, + "noteOrder": 5284, + "time": 0.8080683844781994, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2714,13 +4761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 4703, - "time": 0.7195129450833283, + "noteOrder": 5308, + "time": 0.8117581944529857, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2732,18 +4779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4727, - "time": 0.7232027550581145, + "noteOrder": 5332, + "time": 0.815448004427772, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2755,18 +4802,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4799, - "time": 0.7342721849824734, + "noteOrder": 5332, + "time": 0.815448004427772, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2778,18 +4825,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4727, - "time": 0.7232027550581145, + "noteOrder": 5356, + "time": 0.8191378144025583, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2806,13 +4853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 4799, - "time": 0.7342721849824734, + "noteOrder": 5598, + "time": 0.8560359141504214, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2829,13 +4876,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4824, - "time": 0.7379619949572598, + "noteOrder": 5622, + "time": 0.8597257241252076, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2847,18 +4894,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4872, - "time": 0.7453416149068324, + "noteOrder": 5622, + "time": 0.8597257241252076, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2875,13 +4922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4920, - "time": 0.752721234856405, + "noteOrder": 5646, + "time": 0.8634155340999939, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2898,13 +4945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5016, - "time": 0.7674804747555501, + "noteOrder": 5670, + "time": 0.8671053440747802, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2921,13 +4968,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5065, - "time": 0.7748600947051227, + "noteOrder": 5670, + "time": 0.8671053440747802, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2939,18 +4986,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5113, - "time": 0.7822397146546953, + "noteOrder": 5694, + "time": 0.8707951540495664, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2962,18 +5009,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5161, - "time": 0.789619334604268, + "noteOrder": 5718, + "time": 0.8744849640243527, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2985,18 +5032,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5209, - "time": 0.7969989545538406, + "noteOrder": 5718, + "time": 0.8744849640243527, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3013,13 +5060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5258, - "time": 0.8043785745034131, + "noteOrder": 5742, + "time": 0.878174773999139, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3031,16 +5078,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5306, - "time": 0.8117581944529857, + "noteOrder": 5791, + "time": 0.8855543939487116, "position": { "x": 2, "y": 0 @@ -3059,11 +5106,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5595, - "time": 0.8560359141504212, + "noteOrder": 5815, + "time": 0.8892442039234979, "position": { "x": 2, "y": 0 @@ -3082,13 +5129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5644, - "time": 0.8634155340999939, + "noteOrder": 5815, + "time": 0.8892442039234979, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3100,16 +5147,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5692, - "time": 0.8707951540495665, + "noteOrder": 5839, + "time": 0.8929340138982842, "position": { "x": 2, "y": 0 @@ -3123,16 +5170,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5788, - "time": 0.8855543939487117, + "noteOrder": 5863, + "time": 0.8966238238730705, "position": { "x": 2, "y": 0 @@ -3146,18 +5193,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5837, - "time": 0.8929340138982843, + "noteOrder": 5863, + "time": 0.8966238238730705, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3175,9 +5222,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5885, + "noteOrder": 5887, "time": 0.9003136338478569, "position": { "x": 2, @@ -3198,9 +5245,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5933, + "noteOrder": 5935, "time": 0.9076932537974295, "position": { "x": 5, @@ -3221,9 +5268,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5981, + "noteOrder": 5984, "time": 0.9150728737470021, "position": { "x": 3, @@ -3244,9 +5291,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.926142303671361, "position": { "x": 7, @@ -3267,9 +5314,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5981, + "noteOrder": 5984, "time": 0.9150728737470021, "position": { "x": 7, @@ -3290,9 +5337,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.926142303671361, "position": { "x": 7, @@ -3313,10 +5360,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6078, - "time": 0.9298321136461474, + "noteOrder": 6080, + "time": 0.9298321136461473, "position": { "x": 7, "y": 0 @@ -3336,9 +5383,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, + "noteOrder": 6153, "time": 0.9409015435705061, "position": { "x": 3, @@ -3359,10 +5406,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6078, - "time": 0.9298321136461474, + "noteOrder": 6080, + "time": 0.9298321136461473, "position": { "x": 3, "y": 0 @@ -3382,9 +5429,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, + "noteOrder": 6153, "time": 0.9409015435705061, "position": { "x": 3, @@ -3405,9 +5452,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6174, + "noteOrder": 6177, "time": 0.9445913535452924, "position": { "x": 3, @@ -3428,10 +5475,10 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6247, - "time": 0.9556607834696514, + "noteOrder": 6249, + "time": 0.9556607834696513, "position": { "x": 7, "y": 0 @@ -3451,9 +5498,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6174, + "noteOrder": 6177, "time": 0.9445913535452924, "position": { "x": 7, @@ -3474,10 +5521,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6247, - "time": 0.9556607834696514, + "noteOrder": 6249, + "time": 0.9556607834696513, "position": { "x": 7, "y": 0 diff --git a/tracks/Insomniac Nights/info.json b/tracks/Insomniac Nights/info.json index f6d17b1f..2196d160 100644 --- a/tracks/Insomniac Nights/info.json +++ b/tracks/Insomniac Nights/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Insomniac Nights", - "SongLength": "126.720000", + "SongLength": "116.767347", "SongAuthorName": "Relect", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1a.json b/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1a.json index 0cfc6774..b0cfdee6 100644 --- a/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1a.json +++ b/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.013894919669995657, + "time": 0.013894919669995658, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 96, - "time": 0.013894919669995657, + "time": 0.013894919669995658, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 132, - "time": 0.019105514546244026, + "time": 0.01910551454624403, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 240, - "time": 0.03473729917498915, + "time": 0.03473729917498914, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 264, - "time": 0.03821102909248805, + "time": 0.03821102909248806, "position": { "x": 7, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 457, "time": 0.06600086843247938, "position": { "x": 3, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.0694745983499783, + "noteOrder": 481, + "time": 0.06947459834997828, "position": { "x": 7, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 516, - "time": 0.07468519322622666, + "noteOrder": 517, + "time": 0.07468519322622665, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.08684324793747285, "position": { "x": 3, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.09031697785497177, + "noteOrder": 625, + "time": 0.09031697785497178, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1033, - "time": 0.14937038645245332, + "time": 0.1493703864524533, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1081, - "time": 0.15631784628745113, + "time": 0.15631784628745116, "position": { "x": 2, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1225, - "time": 0.17716022579244461, + "time": 0.17716022579244464, "position": { "x": 5, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1249, - "time": 0.18063395570994353, + "time": 0.18063395570994356, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1273, - "time": 0.18410768562744248, + "time": 0.18410768562744245, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.1980026052974381, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.20147633521493702, + "noteOrder": 1394, + "time": 0.20147633521493705, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1417, - "time": 0.20495006513243594, + "noteOrder": 1418, + "time": 0.20495006513243597, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.20842379504993486, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.21189752496743378, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.2153712548849327, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.21884498480243159, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.2223187147199305, + "noteOrder": 1538, + "time": 0.22231871471993053, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.23621363438992618, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.25705601389491967, "position": { "x": 8, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1789, - "time": 0.2587928788536691, + "noteOrder": 1790, + "time": 0.25879287885366914, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.26052974381241856, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1813, + "noteOrder": 1814, "time": 0.26226660877116803, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.28831958315240985, "position": { "x": 2, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.29526704298740775, + "noteOrder": 2042, + "time": 0.2952670429874077, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.29874077290490664, + "noteOrder": 2066, + "time": 0.2987407729049066, "position": { "x": 5, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3022145028224056, + "noteOrder": 2090, + "time": 0.30221450282240553, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 2138, - "time": 0.30916196265740337, + "time": 0.3091619626574034, "position": { "x": 6, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 2162, - "time": 0.31263569257490226, + "time": 0.3126356925749023, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2282, - "time": 0.3300043421623968, + "noteOrder": 2283, + "time": 0.3300043421623969, "position": { "x": 2, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.3473729917498914, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.364741641337386, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.36821537125488496, + "noteOrder": 2547, + "time": 0.3682153712548849, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2570, - "time": 0.3716891011723838, + "noteOrder": 2571, + "time": 0.37168910117238385, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2690, - "time": 0.3890577507598784, + "noteOrder": 2691, + "time": 0.38905775075987836, "position": { "x": 8, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2702, + "noteOrder": 2703, "time": 0.39079461571862784, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2714, + "noteOrder": 2715, "time": 0.3925314806773773, "position": { "x": 8, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4131, - "time": 0.5974815458098133, + "noteOrder": 4133, + "time": 0.5974815458098132, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4131, - "time": 0.5974815458098133, + "noteOrder": 4133, + "time": 0.5974815458098132, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4167, - "time": 0.6026921406860617, + "noteOrder": 4169, + "time": 0.6026921406860616, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4251, + "noteOrder": 4253, "time": 0.6148501953973079, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.6183239253148067, + "noteOrder": 4277, + "time": 0.6183239253148068, "position": { "x": 7, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4301, "time": 0.6217976552323057, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4445, "time": 0.6426400347372991, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6461137646547981, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4491, - "time": 0.6495874945722969, + "noteOrder": 4493, + "time": 0.649587494572297, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5116, + "noteOrder": 5118, "time": 0.7399044724272688, "position": { "x": 8, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5164, + "noteOrder": 5166, "time": 0.7468519322622665, "position": { "x": 8, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5310, "time": 0.76769431176726, "position": { "x": 8, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5358, "time": 0.7746417716022579, "position": { "x": 8, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5404, + "noteOrder": 5406, "time": 0.7815892314372557, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5428, + "noteOrder": 5430, "time": 0.7850629613547546, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5452, - "time": 0.7885366912722536, + "noteOrder": 5454, + "time": 0.7885366912722535, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5500, - "time": 0.7954841511072513, + "noteOrder": 5502, + "time": 0.7954841511072515, "position": { "x": 2, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5548, + "noteOrder": 5550, "time": 0.8024316109422492, "position": { "x": 2, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5692, + "noteOrder": 5694, "time": 0.8232739904472427, "position": { "x": 2, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5740, - "time": 0.8302214502822405, + "noteOrder": 5742, + "time": 0.8302214502822406, "position": { "x": 2, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6148, - "time": 0.889274858879722, + "noteOrder": 6151, + "time": 0.8892748588797221, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6160, - "time": 0.8910117238384715, + "noteOrder": 6163, + "time": 0.8910117238384716, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6172, - "time": 0.8927485887972209, + "noteOrder": 6175, + "time": 0.8927485887972211, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6184, + "noteOrder": 6187, "time": 0.8944854537559704, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6199, "time": 0.8962223187147199, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6208, + "noteOrder": 6211, "time": 0.8979591836734694, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6220, - "time": 0.8996960486322187, + "noteOrder": 6223, + "time": 0.8996960486322189, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6232, - "time": 0.9014329135909682, + "noteOrder": 6235, + "time": 0.9014329135909683, "position": { "x": 3, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6461, + "noteOrder": 6463, "time": 0.934433347807208, "position": { "x": 8, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6509, - "time": 0.9413808076422057, + "noteOrder": 6511, + "time": 0.9413808076422058, "position": { "x": 8, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6533, + "noteOrder": 6535, "time": 0.9448545375597047, "position": { "x": 8, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6545, + "noteOrder": 6547, "time": 0.9465914025184542, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6557, + "noteOrder": 6559, "time": 0.9483282674772036, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6569, + "noteOrder": 6571, "time": 0.950065132435953, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6605, + "noteOrder": 6607, "time": 0.9552757273122015, "position": { "x": 2, @@ -1776,7 +1776,7 @@ "lineNodes": [ { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.020842379504993486, @@ -1799,10 +1799,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.027789839339991313, + "time": 0.027789839339991317, "position": { "x": 4, "y": 0 @@ -1822,7 +1822,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04168475900998697, @@ -1845,10 +1845,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, - "time": 0.0486322188449848, + "time": 0.048632218844984795, "position": { "x": 3, "y": 0 @@ -1868,10 +1868,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, - "time": 0.0486322188449848, + "time": 0.048632218844984795, "position": { "x": 7, "y": 0 @@ -1891,10 +1891,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.055579678679982626, + "time": 0.05557967867998263, "position": { "x": 7, "y": 0 @@ -1914,10 +1914,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, - "time": 0.0764220581849761, + "noteOrder": 529, + "time": 0.07642205818497612, "position": { "x": 7, "y": 0 @@ -1937,9 +1937,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, + "noteOrder": 577, "time": 0.08336951801997394, "position": { "x": 7, @@ -1960,9 +1960,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 648, + "noteOrder": 649, "time": 0.09379070777247069, "position": { "x": 3, @@ -1983,10 +1983,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.11115935735996525, + "time": 0.11115935735996527, "position": { "x": 3, "y": 0 @@ -2006,10 +2006,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, - "time": 0.0972644376899696, + "noteOrder": 673, + "time": 0.09726443768996959, "position": { "x": 7, "y": 0 @@ -2029,10 +2029,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.11115935735996525, + "time": 0.11115935735996527, "position": { "x": 7, "y": 0 @@ -2052,7 +2052,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12505427702996091, @@ -2074,11 +2074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.12852800694745983, + "noteOrder": 877, + "time": 0.1267911419887104, "position": { "x": 8, "y": 0 @@ -2092,18 +2092,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.13200173686495875, + "noteOrder": 877, + "time": 0.1267911419887104, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2120,13 +2120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 4, "isSliding": false, - "noteOrder": 937, - "time": 0.13547546678245764, + "noteOrder": 889, + "time": 0.12852800694745983, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2138,18 +2138,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 5, "isSliding": false, - "noteOrder": 961, - "time": 0.1389491966999566, + "noteOrder": 889, + "time": 0.12852800694745983, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2166,11 +2166,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, + "lineGroupId": 27, "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.14242292661745548, + "noteOrder": 889, + "time": 0.12852800694745983, "position": { "x": 8, "y": 0 @@ -2184,18 +2184,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, + "lineGroupId": 27, "indexInLine": 2, "isSliding": false, - "noteOrder": 1033, - "time": 0.14937038645245332, + "noteOrder": 901, + "time": 0.13026487190620928, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -2207,18 +2207,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.1528441163699522, + "noteOrder": 901, + "time": 0.13026487190620928, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2235,13 +2235,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1105, - "time": 0.15979157620495008, + "noteOrder": 913, + "time": 0.13200173686495875, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2253,18 +2253,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1153, - "time": 0.16673903603994789, + "noteOrder": 913, + "time": 0.13200173686495875, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2281,13 +2281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1177, - "time": 0.1702127659574468, + "noteOrder": 913, + "time": 0.13200173686495875, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2304,13 +2304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, - "time": 0.1736864958749457, + "noteOrder": 925, + "time": 0.1337386018237082, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2322,18 +2322,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1225, - "time": 0.17716022579244461, + "noteOrder": 925, + "time": 0.1337386018237082, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2345,18 +2345,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 2, + "lineGroupId": 28, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1249, - "time": 0.18063395570994353, + "noteOrder": 937, + "time": 0.13547546678245767, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2368,18 +2368,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 3, + "lineGroupId": 28, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1345, - "time": 0.1945288753799392, + "noteOrder": 937, + "time": 0.13547546678245767, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2391,18 +2391,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.1945288753799392, + "noteOrder": 937, + "time": 0.13547546678245767, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2414,18 +2414,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, - "time": 0.20842379504993486, + "noteOrder": 949, + "time": 0.13721233174120712, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2437,18 +2437,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1633, - "time": 0.23621363438992618, + "noteOrder": 949, + "time": 0.13721233174120712, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2460,18 +2460,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1657, - "time": 0.2396873643074251, + "noteOrder": 961, + "time": 0.13894919669995656, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2488,13 +2488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1681, - "time": 0.243161094224924, + "noteOrder": 961, + "time": 0.13894919669995656, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2506,16 +2506,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.2466348241424229, + "noteOrder": 961, + "time": 0.13894919669995656, "position": { "x": 8, "y": 0 @@ -2529,16 +2529,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.25010855405992183, + "noteOrder": 985, + "time": 0.14242292661745548, "position": { "x": 8, "y": 0 @@ -2557,13 +2557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1753, - "time": 0.2535822839774207, + "noteOrder": 1033, + "time": 0.1493703864524533, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2575,16 +2575,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.2640034737299175, + "noteOrder": 1057, + "time": 0.15284411636995224, "position": { "x": 2, "y": 0 @@ -2598,16 +2598,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1849, - "time": 0.2674772036474164, + "noteOrder": 1069, + "time": 0.1545809813287017, "position": { "x": 2, "y": 0 @@ -2626,13 +2626,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1873, - "time": 0.2709509335649153, + "noteOrder": 1069, + "time": 0.1545809813287017, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2644,18 +2644,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1897, - "time": 0.27442466348241423, + "noteOrder": 1081, + "time": 0.15631784628745116, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2672,13 +2672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1921, - "time": 0.2778983933999132, + "noteOrder": 1081, + "time": 0.15631784628745116, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2690,16 +2690,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1945, - "time": 0.281372123317412, + "noteOrder": 1105, + "time": 0.15979157620495008, "position": { "x": 2, "y": 0 @@ -2713,16 +2713,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, - "time": 0.28484585323491096, + "noteOrder": 1117, + "time": 0.16152844116369952, "position": { "x": 2, "y": 0 @@ -2741,13 +2741,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.2917933130699088, + "noteOrder": 1117, + "time": 0.16152844116369952, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2759,18 +2759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2041, - "time": 0.29526704298740775, + "noteOrder": 1129, + "time": 0.16326530612244897, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2782,16 +2782,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2089, - "time": 0.3022145028224056, + "noteOrder": 1129, + "time": 0.16326530612244897, "position": { "x": 5, "y": 0 @@ -2805,18 +2805,5170 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1153, + "time": 0.16673903603994789, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1165, + "time": 0.16847590099869733, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1165, + "time": 0.16847590099869733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1177, + "time": 0.1702127659574468, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1177, + "time": 0.1702127659574468, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1177, + "time": 0.1702127659574468, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1189, + "time": 0.17194963091619625, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1189, + "time": 0.17194963091619625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1201, + "time": 0.1736864958749457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1201, + "time": 0.1736864958749457, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1201, + "time": 0.1736864958749457, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1225, + "time": 0.17716022579244464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1249, + "time": 0.18063395570994356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1345, + "time": 0.19452887537993918, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.19452887537993918, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1442, + "time": 0.20842379504993486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.23621363438992618, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1646, + "time": 0.23795049934867563, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1646, + "time": 0.23795049934867563, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1658, + "time": 0.23968736430742507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1658, + "time": 0.23968736430742507, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.23968736430742507, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.24142422926617454, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1670, + "time": 0.24142422926617454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1682, + "time": 0.243161094224924, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1682, + "time": 0.243161094224924, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.243161094224924, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1694, + "time": 0.24489795918367344, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1694, + "time": 0.24489795918367344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24663482414242294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24663482414242294, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24663482414242294, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.24837168910117238, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1718, + "time": 0.24837168910117238, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25010855405992183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25010855405992183, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25010855405992183, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1742, + "time": 0.2518454190186713, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1742, + "time": 0.2518454190186713, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2535822839774208, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2535822839774208, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2535822839774208, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.2553191489361702, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1766, + "time": 0.2553191489361702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1778, + "time": 0.25705601389491967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1778, + "time": 0.25705601389491967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.2640034737299175, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1838, + "time": 0.2657403386886669, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1838, + "time": 0.2657403386886669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2674772036474164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2674772036474164, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2674772036474164, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1862, + "time": 0.26921406860616587, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1862, + "time": 0.26921406860616587, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27095093356491534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27095093356491534, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27095093356491534, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.27268779852366476, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1886, + "time": 0.27268779852366476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1898, + "time": 0.27442466348241423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1898, + "time": 0.27442466348241423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1898, + "time": 0.27442466348241423, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1910, + "time": 0.2761615284411637, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1910, + "time": 0.2761615284411637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2778983933999131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2778983933999131, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2778983933999131, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1934, + "time": 0.2796352583586626, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1934, + "time": 0.2796352583586626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1946, + "time": 0.28137212331741207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1946, + "time": 0.28137212331741207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1946, + "time": 0.28137212331741207, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1958, + "time": 0.2831089882761615, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1958, + "time": 0.2831089882761615, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28484585323491096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28484585323491096, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28484585323491096, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1982, + "time": 0.28658271819366044, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1982, + "time": 0.28658271819366044, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1994, + "time": 0.28831958315240985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1994, + "time": 0.28831958315240985, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.2917933130699088, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2952670429874077, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2090, + "time": 0.30221450282240553, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3056882327399045, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3091619626574034, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3161094224924012, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.31958315240990015, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2222, + "time": 0.32132001736864957, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2222, + "time": 0.32132001736864957, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2234, + "time": 0.32305688232739904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2234, + "time": 0.32305688232739904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.32653061224489793, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2271, + "time": 0.3282674772036474, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2271, + "time": 0.3282674772036474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2283, + "time": 0.3300043421623969, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2283, + "time": 0.3300043421623969, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.3473729917498914, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2415, + "time": 0.34910985670864086, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2415, + "time": 0.34910985670864086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2427, + "time": 0.3508467216673904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2427, + "time": 0.3508467216673904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2427, + "time": 0.3508467216673904, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2439, + "time": 0.3525835866261398, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2439, + "time": 0.3525835866261398, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3543204515848893, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3543204515848893, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3543204515848893, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2463, + "time": 0.35605731654363876, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2463, + "time": 0.35605731654363876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3577941815023882, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3577941815023882, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3577941815023882, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2487, + "time": 0.35953104646113765, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2487, + "time": 0.35953104646113765, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3612679114198871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3612679114198871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3612679114198871, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.364741641337386, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2571, + "time": 0.37168910117238385, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37516283108988274, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2607, + "time": 0.3768996960486322, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2607, + "time": 0.3768996960486322, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2619, + "time": 0.37863656100738163, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2619, + "time": 0.37863656100738163, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2619, + "time": 0.37863656100738163, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2631, + "time": 0.3803734259661311, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2631, + "time": 0.3803734259661311, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2643, + "time": 0.3821102909248806, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2643, + "time": 0.3821102909248806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.3821102909248806, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2655, + "time": 0.38384715588363, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2655, + "time": 0.38384715588363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2667, + "time": 0.38558402084237947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2667, + "time": 0.38558402084237947, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2667, + "time": 0.38558402084237947, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2679, + "time": 0.38732088580112894, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2679, + "time": 0.38732088580112894, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2691, + "time": 0.38905775075987836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2691, + "time": 0.38905775075987836, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4029526704298741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2835, + "time": 0.40990013026487193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4168475900998697, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.42379504993486755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4307425097698654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3003, + "time": 0.4342162396873643, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.43768996960486317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3051, + "time": 0.4411636995223621, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3172, + "time": 0.4585323491098567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3220, + "time": 0.4654798089448545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3172, + "time": 0.4585323491098567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3220, + "time": 0.4654798089448545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3268, + "time": 0.47242726877985236, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3316, + "time": 0.47937472861485014, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.486322188449848, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3412, + "time": 0.4932696482848459, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5002171081198437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5071645679548415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3556, + "time": 0.5141120277898393, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3604, + "time": 0.5210594876248371, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.528006947459835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3700, + "time": 0.5349544072948328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3748, + "time": 0.5419018671298307, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5453755970473295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3796, + "time": 0.5488493269648285, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3820, + "time": 0.5523230568823274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.5557967867998262, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3940, + "time": 0.5696917064698219, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4085, + "time": 0.5905340859748154, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4109, + "time": 0.5940078158923143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4181, + "time": 0.6044290056448111, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4229, + "time": 0.611376465479809, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6252713851498046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4373, + "time": 0.6322188449848024, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4373, + "time": 0.6322188449848024, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4421, + "time": 0.6391663048198003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4805, + "time": 0.6947459834997828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4901, + "time": 0.7086409031697786, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4805, + "time": 0.6947459834997828, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4901, + "time": 0.7086409031697786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5094, + "time": 0.7364307425097698, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7381676074685193, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7381676074685193, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7399044724272688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7399044724272688, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5142, + "time": 0.7433782023447677, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5154, + "time": 0.7451150673035172, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5154, + "time": 0.7451150673035172, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5166, + "time": 0.7468519322622665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5166, + "time": 0.7468519322622665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5190, + "time": 0.7503256621797655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5202, + "time": 0.752062527138515, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5202, + "time": 0.752062527138515, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5214, + "time": 0.7537993920972644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5214, + "time": 0.7537993920972644, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5214, + "time": 0.7537993920972644, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5226, + "time": 0.7555362570560139, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5226, + "time": 0.7555362570560139, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5238, + "time": 0.7572731220147633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5238, + "time": 0.7572731220147633, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5238, + "time": 0.7572731220147633, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5250, + "time": 0.7590099869735127, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5250, + "time": 0.7590099869735127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5262, + "time": 0.7607468519322622, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5262, + "time": 0.7607468519322622, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5262, + "time": 0.7607468519322622, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5274, + "time": 0.7624837168910117, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5274, + "time": 0.7624837168910117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7642205818497612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7642205818497612, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7642205818497612, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7659574468085106, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7659574468085106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5310, + "time": 0.76769431176726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5310, + "time": 0.76769431176726, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7711680416847589, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5346, + "time": 0.7729049066435084, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5346, + "time": 0.7729049066435084, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5358, + "time": 0.7746417716022579, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5358, + "time": 0.7746417716022579, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5382, + "time": 0.7781155015197567, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5406, + "time": 0.7815892314372557, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5454, + "time": 0.7885366912722535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5478, + "time": 0.7920104211897524, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.3056882327399044, + "noteOrder": 5490, + "time": 0.7937472861485019, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2828,18 +7980,87 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5490, + "time": 0.7937472861485019, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5502, + "time": 0.7954841511072515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5502, + "time": 0.7954841511072515, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, - "time": 0.30916196265740337, + "noteOrder": 5526, + "time": 0.7989578810247504, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2856,11 +8077,80 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 189, "indexInLine": 2, "isSliding": false, - "noteOrder": 2186, - "time": 0.3161094224924012, + "noteOrder": 5538, + "time": 0.8006947459834998, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5538, + "time": 0.8006947459834998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5550, + "time": 0.8024316109422492, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5550, + "time": 0.8024316109422492, "position": { "x": 5, "y": 0 @@ -2879,11 +8169,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.31958315240990015, + "noteOrder": 5574, + "time": 0.8059053408597482, "position": { "x": 2, "y": 0 @@ -2902,11 +8192,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2258, - "time": 0.32653061224489793, + "noteOrder": 5586, + "time": 0.8076422058184977, "position": { "x": 2, "y": 0 @@ -2920,18 +8210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2402, - "time": 0.3473729917498914, + "noteOrder": 5586, + "time": 0.8076422058184977, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2948,13 +8238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2426, - "time": 0.35084672166739034, + "noteOrder": 5598, + "time": 0.8093790707772471, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2966,18 +8256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2450, - "time": 0.35432045158488923, + "noteOrder": 5598, + "time": 0.8093790707772471, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2994,11 +8284,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2474, - "time": 0.3577941815023882, + "noteOrder": 5598, + "time": 0.8093790707772471, "position": { "x": 2, "y": 0 @@ -3017,11 +8307,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.36126791141988707, + "noteOrder": 5610, + "time": 0.8111159357359965, "position": { "x": 2, "y": 0 @@ -3035,18 +8325,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2522, - "time": 0.364741641337386, + "noteOrder": 5610, + "time": 0.8111159357359965, "position": { - "x": 2, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5622, + "time": 0.812852800694746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5622, + "time": 0.812852800694746, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3058,18 +8394,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2570, - "time": 0.3716891011723838, + "noteOrder": 5622, + "time": 0.812852800694746, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3086,13 +8422,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, - "time": 0.37516283108988274, + "noteOrder": 5634, + "time": 0.8145896656534954, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3104,18 +8440,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2618, - "time": 0.37863656100738163, + "noteOrder": 5634, + "time": 0.8145896656534954, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3132,13 +8468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2642, - "time": 0.3821102909248806, + "noteOrder": 5646, + "time": 0.8163265306122449, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3150,18 +8486,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2666, - "time": 0.38558402084237947, + "noteOrder": 5646, + "time": 0.8163265306122449, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3178,13 +8514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, - "time": 0.40295267042987404, + "noteOrder": 5646, + "time": 0.8163265306122449, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3201,13 +8537,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2834, - "time": 0.4099001302648719, + "noteOrder": 5658, + "time": 0.8180633955709944, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3224,13 +8560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2882, - "time": 0.4168475900998697, + "noteOrder": 5658, + "time": 0.8180633955709944, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3242,18 +8578,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2930, - "time": 0.42379504993486755, + "noteOrder": 5670, + "time": 0.8198002605297439, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3265,18 +8601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2978, - "time": 0.4307425097698654, + "noteOrder": 5670, + "time": 0.8198002605297439, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3293,13 +8629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 3002, - "time": 0.4342162396873643, + "noteOrder": 5670, + "time": 0.8198002605297439, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3311,18 +8647,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3026, - "time": 0.43768996960486317, + "noteOrder": 5682, + "time": 0.8215371254884932, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3339,13 +8675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3050, - "time": 0.4411636995223621, + "noteOrder": 5682, + "time": 0.8215371254884932, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3362,13 +8698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3170, - "time": 0.45853234910985663, + "noteOrder": 5694, + "time": 0.8232739904472427, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3380,18 +8716,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3218, - "time": 0.4654798089448545, + "noteOrder": 5694, + "time": 0.8232739904472427, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3403,18 +8739,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.45853234910985663, + "noteOrder": 5718, + "time": 0.8267477203647416, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3426,18 +8762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.4654798089448545, + "noteOrder": 5730, + "time": 0.8284845853234911, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3449,18 +8785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.47242726877985236, + "noteOrder": 5730, + "time": 0.8284845853234911, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3477,13 +8813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3314, - "time": 0.4793747286148502, + "noteOrder": 5742, + "time": 0.8302214502822406, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3500,13 +8836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3362, - "time": 0.486322188449848, + "noteOrder": 5742, + "time": 0.8302214502822406, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3518,18 +8854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, - "time": 0.4932696482848458, + "noteOrder": 5863, + "time": 0.8475900998697351, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3541,16 +8877,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.5002171081198437, + "noteOrder": 5911, + "time": 0.8545375597047329, "position": { "x": 7, "y": 0 @@ -3569,13 +8905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.5071645679548414, + "noteOrder": 5959, + "time": 0.8614850195397308, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3587,16 +8923,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3554, - "time": 0.5141120277898393, + "noteOrder": 6007, + "time": 0.8684324793747286, "position": { "x": 3, "y": 0 @@ -3615,13 +8951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 3603, - "time": 0.5210594876248371, + "noteOrder": 6247, + "time": 0.9031697785497178, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3633,18 +8969,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3651, - "time": 0.528006947459835, + "noteOrder": 6259, + "time": 0.9049066435084672, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3661,13 +8997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3699, - "time": 0.5349544072948328, + "noteOrder": 6259, + "time": 0.9049066435084672, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3684,13 +9020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3747, - "time": 0.5419018671298306, + "noteOrder": 6271, + "time": 0.9066435084672166, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3702,18 +9038,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3771, - "time": 0.5453755970473295, + "noteOrder": 6271, + "time": 0.9066435084672166, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3725,18 +9061,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3795, - "time": 0.5488493269648285, + "noteOrder": 6271, + "time": 0.9066435084672166, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3748,18 +9084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3819, - "time": 0.5523230568823274, + "noteOrder": 6283, + "time": 0.9083803734259661, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3771,18 +9107,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3843, - "time": 0.5557967867998264, + "noteOrder": 6283, + "time": 0.9083803734259661, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3799,13 +9135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3939, - "time": 0.5696917064698219, + "noteOrder": 6295, + "time": 0.9101172383847156, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3822,13 +9158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 2, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4083, - "time": 0.5905340859748155, + "noteOrder": 6295, + "time": 0.9101172383847156, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3845,13 +9181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 3, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4107, - "time": 0.5940078158923143, + "noteOrder": 6295, + "time": 0.9101172383847156, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3863,18 +9199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4179, - "time": 0.6044290056448112, + "noteOrder": 6307, + "time": 0.9118541033434651, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3891,11 +9227,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4227, - "time": 0.6113764654798088, + "noteOrder": 6307, + "time": 0.9118541033434651, "position": { "x": 6, "y": 0 @@ -3914,13 +9250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4323, - "time": 0.6252713851498045, + "noteOrder": 6319, + "time": 0.9135909683022145, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3937,13 +9273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4371, - "time": 0.6322188449848024, + "noteOrder": 6319, + "time": 0.9135909683022145, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3960,13 +9296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4371, - "time": 0.6322188449848024, + "noteOrder": 6319, + "time": 0.9135909683022145, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3983,13 +9319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4419, - "time": 0.6391663048198003, + "noteOrder": 6331, + "time": 0.9153278332609639, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4006,13 +9342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4803, - "time": 0.6947459834997828, + "noteOrder": 6331, + "time": 0.9153278332609639, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4024,18 +9360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4899, - "time": 0.7086409031697785, + "noteOrder": 6343, + "time": 0.9170646982197134, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4047,18 +9383,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4803, - "time": 0.6947459834997828, + "noteOrder": 6343, + "time": 0.9170646982197134, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4075,13 +9411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4899, - "time": 0.7086409031697785, + "noteOrder": 6343, + "time": 0.9170646982197134, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4093,16 +9429,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.7364307425097699, + "noteOrder": 6355, + "time": 0.9188015631784628, "position": { "x": 8, "y": 0 @@ -4121,13 +9457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5140, - "time": 0.7433782023447676, + "noteOrder": 6355, + "time": 0.9188015631784628, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4139,18 +9475,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5188, - "time": 0.7503256621797655, + "noteOrder": 6367, + "time": 0.9205384281372123, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4167,13 +9503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5212, - "time": 0.7537993920972644, + "noteOrder": 6367, + "time": 0.9205384281372123, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4185,16 +9521,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5236, - "time": 0.7572731220147633, + "noteOrder": 6367, + "time": 0.9205384281372123, "position": { "x": 8, "y": 0 @@ -4208,16 +9544,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5260, - "time": 0.7607468519322623, + "noteOrder": 6379, + "time": 0.9222752930959618, "position": { "x": 8, "y": 0 @@ -4236,13 +9572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5284, - "time": 0.7642205818497612, + "noteOrder": 6379, + "time": 0.9222752930959618, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4254,18 +9590,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5332, - "time": 0.7711680416847589, + "noteOrder": 6391, + "time": 0.9240121580547113, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4282,13 +9618,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5380, - "time": 0.7781155015197568, + "noteOrder": 6391, + "time": 0.9240121580547113, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4300,16 +9636,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 5404, - "time": 0.7815892314372557, + "noteOrder": 6391, + "time": 0.9240121580547113, "position": { "x": 8, "y": 0 @@ -4328,13 +9664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 222, "indexInLine": 2, "isSliding": false, - "noteOrder": 5452, - "time": 0.7885366912722536, + "noteOrder": 6403, + "time": 0.9257490230134606, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4351,13 +9687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5476, - "time": 0.7920104211897524, + "noteOrder": 6403, + "time": 0.9257490230134606, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4369,18 +9705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5524, - "time": 0.7989578810247503, + "noteOrder": 6415, + "time": 0.9274858879722101, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4397,13 +9733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5572, - "time": 0.8059053408597481, + "noteOrder": 6415, + "time": 0.9274858879722101, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4415,18 +9751,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5596, - "time": 0.809379070777247, + "noteOrder": 6415, + "time": 0.9274858879722101, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4438,18 +9774,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5620, - "time": 0.812852800694746, + "noteOrder": 6427, + "time": 0.9292227529309596, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4466,13 +9802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5644, - "time": 0.8163265306122448, + "noteOrder": 6427, + "time": 0.9292227529309596, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4484,18 +9820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5668, - "time": 0.8198002605297438, + "noteOrder": 6439, + "time": 0.930959617889709, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4512,13 +9848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5716, - "time": 0.8267477203647416, + "noteOrder": 6439, + "time": 0.930959617889709, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4530,18 +9866,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5860, - "time": 0.8475900998697351, + "noteOrder": 6439, + "time": 0.930959617889709, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4558,13 +9894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5908, - "time": 0.8545375597047329, + "noteOrder": 6451, + "time": 0.9326964828484585, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4581,13 +9917,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5956, - "time": 0.8614850195397308, + "noteOrder": 6451, + "time": 0.9326964828484585, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4599,18 +9935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6004, - "time": 0.8684324793747286, + "noteOrder": 6463, + "time": 0.934433347807208, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4622,18 +9958,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6244, - "time": 0.9031697785497177, + "noteOrder": 6463, + "time": 0.934433347807208, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4650,11 +9986,11 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6268, - "time": 0.9066435084672166, + "noteOrder": 6487, + "time": 0.9379070777247068, "position": { "x": 8, "y": 0 @@ -4673,11 +10009,11 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6292, - "time": 0.9101172383847156, + "noteOrder": 6499, + "time": 0.9396439426834563, "position": { "x": 8, "y": 0 @@ -4691,18 +10027,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6316, - "time": 0.9135909683022144, + "noteOrder": 6499, + "time": 0.9396439426834563, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4719,13 +10055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6340, - "time": 0.9170646982197133, + "noteOrder": 6511, + "time": 0.9413808076422058, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4737,18 +10073,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6364, - "time": 0.9205384281372123, + "noteOrder": 6511, + "time": 0.9413808076422058, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4765,13 +10101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6388, - "time": 0.9240121580547112, + "noteOrder": 6583, + "time": 0.9518019973947025, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4788,13 +10124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6413, - "time": 0.9274858879722101, + "noteOrder": 6595, + "time": 0.953538862353452, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4806,18 +10142,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6437, - "time": 0.930959617889709, + "noteOrder": 6595, + "time": 0.953538862353452, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4834,13 +10170,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6485, - "time": 0.9379070777247068, + "noteOrder": 6607, + "time": 0.9552757273122015, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4852,18 +10188,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6581, - "time": 0.9518019973947025, + "noteOrder": 6607, + "time": 0.9552757273122015, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { diff --git a/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1b.json b/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1b.json index 3a3b4787..99543ec5 100644 --- a/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1b.json +++ b/tracks/JOK3R RUNNING MAN EDITION/369_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 240, - "time": 0.03473729917498915, + "time": 0.03473729917498914, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 264, - "time": 0.03821102909248805, + "time": 0.03821102909248806, "position": { "x": 3, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 457, "time": 0.06600086843247938, "position": { "x": 7, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.08684324793747285, "position": { "x": 3, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.09031697785497177, + "noteOrder": 625, + "time": 0.09031697785497178, "position": { "x": 7, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.09379070777247069, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 937, - "time": 0.13547546678245764, + "time": 0.13547546678245767, "position": { "x": 8, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1033, - "time": 0.14937038645245332, + "time": 0.1493703864524533, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1081, - "time": 0.15631784628745113, + "time": 0.15631784628745116, "position": { "x": 2, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1225, - "time": 0.17716022579244461, + "time": 0.17716022579244464, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.20842379504993486, "position": { "x": 8, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.21189752496743378, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.2153712548849327, "position": { "x": 8, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.21884498480243159, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.2223187147199305, + "noteOrder": 1538, + "time": 0.22231871471993053, "position": { "x": 8, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.243161094224924, "position": { "x": 8, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.25705601389491967, "position": { "x": 8, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.2674772036474164, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.2709509335649153, + "noteOrder": 1874, + "time": 0.27095093356491534, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.27442466348241423, "position": { "x": 5, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.2778983933999132, + "noteOrder": 1922, + "time": 0.2778983933999131, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.281372123317412, + "noteOrder": 1946, + "time": 0.28137212331741207, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.28484585323491096, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.29874077290490664, + "noteOrder": 2066, + "time": 0.2987407729049066, "position": { "x": 2, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 2162, - "time": 0.31263569257490226, + "time": 0.3126356925749023, "position": { "x": 2, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.32653061224489793, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2282, - "time": 0.3300043421623968, + "noteOrder": 2283, + "time": 0.3300043421623969, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.33347807207989577, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2546, - "time": 0.36821537125488496, + "noteOrder": 2547, + "time": 0.3682153712548849, "position": { "x": 8, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2690, - "time": 0.3890577507598784, + "noteOrder": 2691, + "time": 0.38905775075987836, "position": { "x": 8, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.3960052105948762, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2834, - "time": 0.4099001302648719, + "noteOrder": 2835, + "time": 0.40990013026487193, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2930, + "noteOrder": 2931, "time": 0.42379504993486755, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2978, + "noteOrder": 2979, "time": 0.4307425097698654, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.4342162396873643, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.43768996960486317, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.45853234910985663, + "noteOrder": 3172, + "time": 0.4585323491098567, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3194, - "time": 0.4620060790273556, + "noteOrder": 3196, + "time": 0.46200607902735563, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3220, "time": 0.4654798089448545, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3268, "time": 0.47242726877985236, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3292, "time": 0.47590099869735125, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.4793747286148502, + "noteOrder": 3316, + "time": 0.47937472861485014, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3362, + "noteOrder": 3364, "time": 0.486322188449848, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3386, - "time": 0.4897959183673469, + "noteOrder": 3388, + "time": 0.48979591836734687, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3410, - "time": 0.4932696482848458, + "noteOrder": 3412, + "time": 0.4932696482848459, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3460, "time": 0.5002171081198437, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3484, "time": 0.5036908380373426, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5071645679548414, + "noteOrder": 3508, + "time": 0.5071645679548415, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3603, + "noteOrder": 3604, "time": 0.5210594876248371, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 3700, "time": 0.5349544072948328, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4515, + "noteOrder": 4517, "time": 0.6530612244897959, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.6565349544072948, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.6600086843247936, + "noteOrder": 4565, + "time": 0.6600086843247938, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.6669561441597915, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.6704298740772904, + "noteOrder": 4637, + "time": 0.6704298740772905, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.6739036039947893, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4707, + "noteOrder": 4709, "time": 0.6808510638297872, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4733, "time": 0.684324793747286, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4755, - "time": 0.6877985236647851, + "noteOrder": 4757, + "time": 0.687798523664785, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4781, "time": 0.691272253582284, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5116, + "noteOrder": 5118, "time": 0.7399044724272688, "position": { "x": 8, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5164, + "noteOrder": 5166, "time": 0.7468519322622665, "position": { "x": 8, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5212, + "noteOrder": 5214, "time": 0.7537993920972644, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.7572731220147633, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.7607468519322623, + "noteOrder": 5262, + "time": 0.7607468519322622, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5310, "time": 0.76769431176726, "position": { "x": 2, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5358, "time": 0.7746417716022579, "position": { "x": 2, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5404, + "noteOrder": 5406, "time": 0.7815892314372557, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5428, + "noteOrder": 5430, "time": 0.7850629613547546, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5452, - "time": 0.7885366912722536, + "noteOrder": 5454, + "time": 0.7885366912722535, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5668, - "time": 0.8198002605297438, + "noteOrder": 5670, + "time": 0.8198002605297439, "position": { "x": 8, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5692, + "noteOrder": 5694, "time": 0.8232739904472427, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5716, + "noteOrder": 5718, "time": 0.8267477203647416, "position": { "x": 8, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5740, - "time": 0.8302214502822405, + "noteOrder": 5742, + "time": 0.8302214502822406, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5908, + "noteOrder": 5911, "time": 0.8545375597047329, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5956, + "noteOrder": 5959, "time": 0.8614850195397308, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6004, + "noteOrder": 6007, "time": 0.8684324793747286, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6199, "time": 0.8962223187147199, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6292, + "noteOrder": 6295, "time": 0.9101172383847156, "position": { "x": 2, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6388, - "time": 0.9240121580547112, + "noteOrder": 6391, + "time": 0.9240121580547113, "position": { "x": 2, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6461, + "noteOrder": 6463, "time": 0.934433347807208, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6485, + "noteOrder": 6487, "time": 0.9379070777247068, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6509, - "time": 0.9413808076422057, + "noteOrder": 6511, + "time": 0.9413808076422058, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6533, + "noteOrder": 6535, "time": 0.9448545375597047, "position": { "x": 6, @@ -1936,10 +1936,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.013894919669995657, + "time": 0.013894919669995658, "position": { "x": 7, "y": 0 @@ -1959,7 +1959,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.020842379504993486, @@ -1982,7 +1982,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.020842379504993486, @@ -2005,10 +2005,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.027789839339991313, + "time": 0.027789839339991317, "position": { "x": 3, "y": 0 @@ -2028,7 +2028,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04168475900998697, @@ -2051,10 +2051,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, - "time": 0.0486322188449848, + "time": 0.048632218844984795, "position": { "x": 7, "y": 0 @@ -2074,10 +2074,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, - "time": 0.0486322188449848, + "time": 0.048632218844984795, "position": { "x": 3, "y": 0 @@ -2097,10 +2097,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.055579678679982626, + "time": 0.05557967867998263, "position": { "x": 3, "y": 0 @@ -2120,10 +2120,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, - "time": 0.0972644376899696, + "noteOrder": 673, + "time": 0.09726443768996959, "position": { "x": 7, "y": 0 @@ -2143,7 +2143,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, "time": 0.10421189752496743, @@ -2166,7 +2166,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 721, "time": 0.10421189752496743, @@ -2189,10 +2189,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.11115935735996525, + "time": 0.11115935735996527, "position": { "x": 3, "y": 0 @@ -2212,7 +2212,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12505427702996091, @@ -2234,11 +2234,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 913, - "time": 0.13200173686495875, + "noteOrder": 877, + "time": 0.1267911419887104, "position": { "x": 8, "y": 0 @@ -2252,18 +2252,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 961, - "time": 0.1389491966999566, + "noteOrder": 877, + "time": 0.1267911419887104, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2280,13 +2280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, + "lineGroupId": 22, "indexInLine": 1, "isSliding": false, - "noteOrder": 1033, - "time": 0.14937038645245332, + "noteOrder": 913, + "time": 0.13200173686495875, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2298,18 +2298,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.1528441163699522, + "noteOrder": 925, + "time": 0.1337386018237082, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2326,13 +2326,36 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.15979157620495008, + "noteOrder": 925, + "time": 0.1337386018237082, "position": { - "x": 2, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 961, + "time": 0.13894919669995656, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -2349,13 +2372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.16673903603994789, + "noteOrder": 1033, + "time": 0.1493703864524533, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2367,18 +2390,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1225, - "time": 0.17716022579244461, + "noteOrder": 1057, + "time": 0.15284411636995224, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2395,13 +2418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.18063395570994353, + "noteOrder": 1069, + "time": 0.1545809813287017, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2413,18 +2436,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, - "time": 0.18758141554494137, + "noteOrder": 1069, + "time": 0.1545809813287017, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2441,13 +2464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.1945288753799392, + "noteOrder": 1105, + "time": 0.15979157620495008, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2464,13 +2487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.20147633521493702, + "noteOrder": 1117, + "time": 0.16152844116369952, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2482,18 +2505,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1633, - "time": 0.23621363438992618, + "noteOrder": 1117, + "time": 0.16152844116369952, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2510,13 +2533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1657, - "time": 0.2396873643074251, + "noteOrder": 1153, + "time": 0.16673903603994789, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2533,13 +2556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.25010855405992183, + "noteOrder": 1225, + "time": 0.17716022579244464, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2551,16 +2574,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1753, - "time": 0.2535822839774207, + "noteOrder": 1249, + "time": 0.18063395570994356, "position": { "x": 8, "y": 0 @@ -2574,16 +2597,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.2640034737299175, + "noteOrder": 1273, + "time": 0.18410768562744245, "position": { "x": 8, "y": 0 @@ -2602,13 +2625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1969, - "time": 0.28484585323491096, + "noteOrder": 1273, + "time": 0.18410768562744245, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2625,13 +2648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.2917933130699088, + "noteOrder": 1297, + "time": 0.18758141554494137, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2648,13 +2671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, - "time": 0.29526704298740775, + "noteOrder": 1321, + "time": 0.1910551454624403, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2666,18 +2689,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2113, - "time": 0.3056882327399044, + "noteOrder": 1321, + "time": 0.1910551454624403, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2694,13 +2717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, - "time": 0.30916196265740337, + "noteOrder": 1345, + "time": 0.19452887537993918, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2717,13 +2740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.31958315240990015, + "noteOrder": 1370, + "time": 0.1980026052974381, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2735,18 +2758,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2306, - "time": 0.33347807207989577, + "noteOrder": 1370, + "time": 0.1980026052974381, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2758,16 +2781,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, - "time": 0.3473729917498914, + "noteOrder": 1394, + "time": 0.20147633521493705, "position": { "x": 8, "y": 0 @@ -2781,16 +2804,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2450, - "time": 0.35432045158488923, + "noteOrder": 1418, + "time": 0.20495006513243597, "position": { "x": 8, "y": 0 @@ -2809,13 +2832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2498, - "time": 0.36126791141988707, + "noteOrder": 1418, + "time": 0.20495006513243597, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2827,16 +2850,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.37516283108988274, + "noteOrder": 1634, + "time": 0.23621363438992618, "position": { "x": 8, "y": 0 @@ -2850,16 +2873,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2642, - "time": 0.3821102909248806, + "noteOrder": 1646, + "time": 0.23795049934867563, "position": { "x": 8, "y": 0 @@ -2878,13 +2901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3939, - "time": 0.5696917064698219, + "noteOrder": 1646, + "time": 0.23795049934867563, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2896,18 +2919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, - "time": 0.5835866261398176, + "noteOrder": 1658, + "time": 0.23968736430742507, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2924,13 +2947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3939, - "time": 0.5696917064698219, + "noteOrder": 1670, + "time": 0.24142422926617454, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -2942,18 +2965,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4035, - "time": 0.5835866261398176, + "noteOrder": 1670, + "time": 0.24142422926617454, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2965,18 +2988,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4131, - "time": 0.5974815458098133, + "noteOrder": 1730, + "time": 0.25010855405992183, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2993,13 +3016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4227, - "time": 0.6113764654798088, + "noteOrder": 1742, + "time": 0.2518454190186713, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3016,13 +3039,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4227, - "time": 0.6113764654798088, + "noteOrder": 1742, + "time": 0.2518454190186713, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3034,18 +3057,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.6252713851498045, + "noteOrder": 1754, + "time": 0.2535822839774208, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3061,14 +3084,1509 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.2553191489361702, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1766, + "time": 0.2553191489361702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.2640034737299175, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28484585323491096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.2917933130699088, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2935301780286582, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2935301780286582, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2952670429874077, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2054, + "time": 0.29700390794615716, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2054, + "time": 0.29700390794615716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3056882327399045, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2126, + "time": 0.30742509769865395, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2126, + "time": 0.30742509769865395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3091619626574034, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.31089882761615284, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2150, + "time": 0.31089882761615284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.31958315240990015, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2307, + "time": 0.33347807207989577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.3473729917498914, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2427, + "time": 0.3508467216673904, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2427, + "time": 0.3508467216673904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3543204515848893, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3577941815023882, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3577941815023882, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3612679114198871, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.364741641337386, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2523, + "time": 0.364741641337386, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37516283108988274, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2619, + "time": 0.37863656100738163, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2619, + "time": 0.37863656100738163, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.3821102909248806, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2667, + "time": 0.38558402084237947, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2667, + "time": 0.38558402084237947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3940, + "time": 0.5696917064698219, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4036, + "time": 0.5835866261398176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3940, + "time": 0.5696917064698219, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4036, + "time": 0.5835866261398176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4133, + "time": 0.5974815458098132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4229, + "time": 0.611376465479809, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4229, + "time": 0.611376465479809, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6252713851498046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6252713851498046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4421, + "time": 0.6391663048198003, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4421, + "time": 0.6391663048198003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6530612244897959, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4805, + "time": 0.6947459834997828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4901, + "time": 0.7086409031697786, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5094, + "time": 0.7364307425097698, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7381676074685193, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5106, + "time": 0.7381676074685193, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5142, + "time": 0.7433782023447677, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5154, + "time": 0.7451150673035172, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5154, + "time": 0.7451150673035172, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5190, + "time": 0.7503256621797655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5262, + "time": 0.7607468519322622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7642205818497612, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7659574468085106, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7659574468085106, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7711680416847589, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5346, + "time": 0.7729049066435084, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5346, + "time": 0.7729049066435084, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5382, + "time": 0.7781155015197567, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5454, + "time": 0.7885366912722535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5478, + "time": 0.7920104211897524, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5502, + "time": 0.7954841511072515, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4323, - "time": 0.6252713851498045, + "noteOrder": 5502, + "time": 0.7954841511072515, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3085,13 +4603,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, - "time": 0.6391663048198003, + "noteOrder": 5526, + "time": 0.7989578810247504, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3103,18 +4621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4419, - "time": 0.6391663048198003, + "noteOrder": 5550, + "time": 0.8024316109422492, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3131,13 +4649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4515, - "time": 0.6530612244897959, + "noteOrder": 5550, + "time": 0.8024316109422492, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3154,13 +4672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.6947459834997828, + "noteOrder": 5574, + "time": 0.8059053408597482, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3177,13 +4695,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4899, - "time": 0.7086409031697785, + "noteOrder": 5598, + "time": 0.8093790707772471, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3200,13 +4718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5092, - "time": 0.7364307425097699, + "noteOrder": 5598, + "time": 0.8093790707772471, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3223,11 +4741,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5140, - "time": 0.7433782023447676, + "noteOrder": 5622, + "time": 0.812852800694746, "position": { "x": 8, "y": 0 @@ -3246,11 +4764,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5188, - "time": 0.7503256621797655, + "noteOrder": 5646, + "time": 0.8163265306122449, "position": { "x": 8, "y": 0 @@ -3264,18 +4782,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5646, + "time": 0.8163265306122449, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 5260, - "time": 0.7607468519322623, + "noteOrder": 5766, + "time": 0.8336951801997394, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3292,13 +4833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5284, - "time": 0.7642205818497612, + "noteOrder": 5863, + "time": 0.8475900998697351, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3310,16 +4851,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5332, - "time": 0.7711680416847589, + "noteOrder": 6055, + "time": 0.8753799392097263, "position": { "x": 2, "y": 0 @@ -3333,16 +4874,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5380, - "time": 0.7781155015197568, + "noteOrder": 6079, + "time": 0.8788536691272253, "position": { "x": 2, "y": 0 @@ -3361,13 +4902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5452, - "time": 0.7885366912722536, + "noteOrder": 6079, + "time": 0.8788536691272253, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3384,13 +4925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5476, - "time": 0.7920104211897524, + "noteOrder": 6103, + "time": 0.8823273990447242, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3407,13 +4948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5524, - "time": 0.7989578810247503, + "noteOrder": 6127, + "time": 0.8858011289622231, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3425,18 +4966,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5572, - "time": 0.8059053408597481, + "noteOrder": 6127, + "time": 0.8858011289622231, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3453,13 +4994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5620, - "time": 0.812852800694746, + "noteOrder": 6151, + "time": 0.8892748588797221, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3476,13 +5017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5764, - "time": 0.8336951801997394, + "noteOrder": 6175, + "time": 0.8927485887972211, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3494,18 +5035,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5860, - "time": 0.8475900998697351, + "noteOrder": 6175, + "time": 0.8927485887972211, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3517,16 +5058,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6052, - "time": 0.8753799392097263, + "noteOrder": 6247, + "time": 0.9031697785497178, "position": { "x": 2, "y": 0 @@ -3545,11 +5086,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6100, - "time": 0.8823273990447242, + "noteOrder": 6259, + "time": 0.9049066435084672, "position": { "x": 2, "y": 0 @@ -3563,18 +5104,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6148, - "time": 0.889274858879722, + "noteOrder": 6259, + "time": 0.9049066435084672, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3591,11 +5132,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6244, - "time": 0.9031697785497177, + "noteOrder": 6271, + "time": 0.9066435084672166, "position": { "x": 2, "y": 0 @@ -3609,16 +5150,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6268, - "time": 0.9066435084672166, + "noteOrder": 6283, + "time": 0.9083803734259661, "position": { "x": 2, "y": 0 @@ -3636,12 +5177,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6283, + "time": 0.9083803734259661, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6343, + "time": 0.9170646982197134, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6340, - "time": 0.9170646982197133, + "noteOrder": 6355, + "time": 0.9188015631784628, "position": { "x": 2, "y": 0 @@ -3659,11 +5246,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6355, + "time": 0.9188015631784628, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6364, + "noteOrder": 6367, "time": 0.9205384281372123, "position": { "x": 2, @@ -3682,11 +5292,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6379, + "time": 0.9222752930959618, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6379, + "time": 0.9222752930959618, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6437, + "noteOrder": 6439, "time": 0.930959617889709, "position": { "x": 2, @@ -3707,9 +5363,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6533, + "noteOrder": 6535, "time": 0.9448545375597047, "position": { "x": 4, diff --git a/tracks/JOK3R RUNNING MAN EDITION/info.json b/tracks/JOK3R RUNNING MAN EDITION/info.json index a390c5ef..1319f160 100644 --- a/tracks/JOK3R RUNNING MAN EDITION/info.json +++ b/tracks/JOK3R RUNNING MAN EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "JOK3R RUNNING MAN EDITION", - "SongLength": "125.231020", + "SongLength": "115.278367", "SongAuthorName": "Yuta Imai", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Jumbo Drill/353_difficulty_1a.json b/tracks/Jumbo Drill/353_difficulty_1a.json index 9ff6f635..695b6a0c 100644 --- a/tracks/Jumbo Drill/353_difficulty_1a.json +++ b/tracks/Jumbo Drill/353_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.019531250000000003, + "time": 0.019531249999999997, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.0234375, + "time": 0.023437499999999997, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 168, - "time": 0.027343750000000003, + "time": 0.02734375, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.03515625000000001, + "time": 0.03515624999999999, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 240, - "time": 0.03906250000000001, + "time": 0.03906249999999999, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 264, - "time": 0.04296875000000001, + "time": 0.04296874999999999, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 384, - "time": 0.06250000000000001, + "time": 0.0625, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 408, - "time": 0.06640625000000001, + "time": 0.06640625, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 432, - "time": 0.07031250000000001, + "time": 0.07031249999999999, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 456, - "time": 0.07421875000000001, + "time": 0.07421875, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 480, - "time": 0.07812500000000001, + "time": 0.07812499999999999, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 504, - "time": 0.08203125000000001, + "time": 0.08203125, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 528, - "time": 0.08593750000000001, + "time": 0.08593749999999999, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 576, - "time": 0.09375, + "time": 0.09374999999999999, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.10546875000000001, + "noteOrder": 649, + "time": 0.10546875, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.10546875000000001, + "noteOrder": 649, + "time": 0.10546875, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10937500000000001, + "noteOrder": 673, + "time": 0.109375, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10937500000000001, + "noteOrder": 673, + "time": 0.109375, "position": { "x": 4, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.11328125000000001, + "noteOrder": 697, + "time": 0.11328125, "position": { "x": 8, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.11328125000000001, + "noteOrder": 697, + "time": 0.11328125, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.11718750000000001, + "noteOrder": 721, + "time": 0.1171875, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.11718750000000001, + "noteOrder": 721, + "time": 0.1171875, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.12109375000000001, + "noteOrder": 745, + "time": 0.12109374999999999, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.12109375000000001, + "noteOrder": 745, + "time": 0.12109374999999999, "position": { "x": 2, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.12500000000000003, + "noteOrder": 769, + "time": 0.125, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.12890625000000003, + "noteOrder": 793, + "time": 0.12890625, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 816, - "time": 0.13281250000000003, + "noteOrder": 817, + "time": 0.1328125, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 828, + "noteOrder": 829, "time": 0.134765625, "position": { "x": 5, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.13671875000000003, + "noteOrder": 841, + "time": 0.13671875, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 889, "time": 0.14453125, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 912, - "time": 0.14843750000000003, + "noteOrder": 913, + "time": 0.1484375, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 937, "time": 0.15234375, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 985, "time": 0.16015625, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1008, - "time": 0.16406250000000003, + "noteOrder": 1009, + "time": 0.1640625, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1032, - "time": 0.16796875000000003, + "noteOrder": 1033, + "time": 0.16796875, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1080, - "time": 0.17578125000000003, + "noteOrder": 1081, + "time": 0.17578124999999997, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1128, - "time": 0.18359375000000003, + "noteOrder": 1129, + "time": 0.18359375, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1152, - "time": 0.1875, + "noteOrder": 1153, + "time": 0.18749999999999997, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1176, - "time": 0.19140625000000003, + "noteOrder": 1177, + "time": 0.19140624999999997, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1201, "time": 0.1953125, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1224, - "time": 0.19921875000000003, + "noteOrder": 1225, + "time": 0.19921875, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1296, - "time": 0.21093750000000003, + "noteOrder": 1297, + "time": 0.2109375, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1320, - "time": 0.21484375000000003, + "noteOrder": 1321, + "time": 0.21484375, "position": { "x": 4, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1345, - "time": 0.21875000000000003, + "time": 0.21875, "position": { "x": 7, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1369, - "time": 0.22265625000000003, + "time": 0.22265624999999997, "position": { "x": 3, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1633, - "time": 0.26562500000000006, + "time": 0.265625, "position": { "x": 2, "y": 0 @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1645, - "time": 0.26757812500000006, + "time": 0.267578125, "position": { "x": 5, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1801, - "time": 0.29296875, + "time": 0.29296874999999994, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.31250000000000006, + "noteOrder": 1922, + "time": 0.31249999999999994, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.31640625000000006, + "noteOrder": 1946, + "time": 0.31640625, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3203125, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.32421875, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2017, - "time": 0.32812500000000006, + "noteOrder": 2018, + "time": 0.328125, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2017, - "time": 0.32812500000000006, + "noteOrder": 2018, + "time": 0.328125, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.33203125000000006, + "noteOrder": 2042, + "time": 0.33203124999999994, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.33203125000000006, + "noteOrder": 2042, + "time": 0.33203124999999994, "position": { "x": 7, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.33593750000000006, + "noteOrder": 2066, + "time": 0.3359375, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.33593750000000006, + "noteOrder": 2066, + "time": 0.3359375, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.33984375, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.33984375, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.34375000000000006, + "noteOrder": 2114, + "time": 0.34374999999999994, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2125, - "time": 0.34570312500000006, + "noteOrder": 2126, + "time": 0.345703125, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2185, + "noteOrder": 2186, "time": 0.35546875, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.38671875000000006, + "noteOrder": 2378, + "time": 0.38671875, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.390625, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2401, + "noteOrder": 2402, "time": 0.390625, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.39453125000000006, + "noteOrder": 2426, + "time": 0.39453124999999994, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.39453125000000006, + "noteOrder": 2426, + "time": 0.39453124999999994, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2449, - "time": 0.39843750000000006, + "noteOrder": 2450, + "time": 0.3984375, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2449, - "time": 0.39843750000000006, + "noteOrder": 2450, + "time": 0.3984375, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.40234375000000006, + "noteOrder": 2474, + "time": 0.40234375, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.40234375000000006, + "noteOrder": 2474, + "time": 0.40234375, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2569, - "time": 0.41796875000000006, + "noteOrder": 2570, + "time": 0.41796875, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2714, "time": 0.44140625, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2761, - "time": 0.44921875000000006, + "noteOrder": 2762, + "time": 0.44921875, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2881, - "time": 0.46875000000000006, + "noteOrder": 2882, + "time": 0.46875, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2881, - "time": 0.46875000000000006, + "noteOrder": 2882, + "time": 0.46875, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2953, - "time": 0.48046875000000006, + "noteOrder": 2954, + "time": 0.48046875, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2953, - "time": 0.48046875000000006, + "noteOrder": 2954, + "time": 0.48046875, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3193, + "noteOrder": 3195, "time": 0.51953125, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3219, "time": 0.5234375, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3241, + "noteOrder": 3243, "time": 0.52734375, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3313, + "noteOrder": 3315, "time": 0.5390625, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3337, + "noteOrder": 3339, "time": 0.54296875, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3577, - "time": 0.58203125, + "noteOrder": 3579, + "time": 0.5820312499999999, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3601, - "time": 0.5859375, + "noteOrder": 3603, + "time": 0.5859374999999999, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3625, - "time": 0.5898437500000001, + "noteOrder": 3627, + "time": 0.58984375, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3745, + "noteOrder": 3747, "time": 0.609375, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3769, + "noteOrder": 3771, "time": 0.61328125, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3793, + "noteOrder": 3795, "time": 0.6171875, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3817, - "time": 0.6210937500000001, + "noteOrder": 3819, + "time": 0.62109375, "position": { "x": 3, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3841, - "time": 0.6250000000000001, + "noteOrder": 3843, + "time": 0.6249999999999999, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3865, - "time": 0.6289062500000001, + "noteOrder": 3867, + "time": 0.62890625, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3889, - "time": 0.6328125000000001, + "noteOrder": 3891, + "time": 0.6328125, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3913, - "time": 0.6367187500000001, + "noteOrder": 3915, + "time": 0.63671875, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3937, + "noteOrder": 3939, "time": 0.640625, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3961, - "time": 0.64453125, + "noteOrder": 3963, + "time": 0.6445312499999999, "position": { "x": 7, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3985, + "noteOrder": 3987, "time": 0.6484375, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4010, + "noteOrder": 4011, "time": 0.65234375, "position": { "x": 3, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.6562500000000001, + "noteOrder": 4035, + "time": 0.65625, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4058, - "time": 0.6601562500000001, + "noteOrder": 4059, + "time": 0.66015625, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.6640625000000001, + "noteOrder": 4083, + "time": 0.6640624999999999, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4106, - "time": 0.6679687500000001, + "noteOrder": 4107, + "time": 0.6679687499999999, "position": { "x": 4, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4154, + "noteOrder": 4155, "time": 0.67578125, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4178, + "noteOrder": 4179, "time": 0.6796875, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.68359375, + "noteOrder": 4203, + "time": 0.6835937499999999, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4250, - "time": 0.6914062500000001, + "noteOrder": 4251, + "time": 0.69140625, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4274, - "time": 0.6953125000000001, + "noteOrder": 4275, + "time": 0.6953125, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4298, - "time": 0.6992187500000001, + "noteOrder": 4299, + "time": 0.69921875, "position": { "x": 6, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4346, - "time": 0.7070312500000001, + "noteOrder": 4347, + "time": 0.7070312499999999, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4395, "time": 0.71484375, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4419, "time": 0.71875, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7226562500000001, + "noteOrder": 4444, + "time": 0.72265625, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7265625000000001, + "noteOrder": 4468, + "time": 0.7265624999999999, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.7304687500000001, + "noteOrder": 4492, + "time": 0.73046875, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4562, - "time": 0.7421875000000001, + "noteOrder": 4564, + "time": 0.7421875, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4586, - "time": 0.74609375, + "noteOrder": 4588, + "time": 0.7460937499999999, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4610, - "time": 0.75, + "noteOrder": 4612, + "time": 0.7499999999999999, "position": { "x": 7, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4634, + "noteOrder": 4636, "time": 0.75390625, "position": { "x": 6, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7578125000000001, + "noteOrder": 4660, + "time": 0.7578125, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.7617187500000001, + "noteOrder": 4684, + "time": 0.76171875, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4706, - "time": 0.7656250000000001, + "noteOrder": 4708, + "time": 0.7656249999999999, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4718, - "time": 0.7675781250000001, + "noteOrder": 4720, + "time": 0.7675781249999999, "position": { "x": 5, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7929687500000001, + "noteOrder": 4876, + "time": 0.79296875, "position": { "x": 7, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5114, - "time": 0.8320312500000001, + "noteOrder": 5116, + "time": 0.8320312499999999, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5162, - "time": 0.8398437500000001, + "noteOrder": 5164, + "time": 0.83984375, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5234, - "time": 0.8515625, + "noteOrder": 5236, + "time": 0.8515624999999999, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5258, - "time": 0.8554687500000001, + "noteOrder": 5260, + "time": 0.85546875, "position": { "x": 7, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5402, - "time": 0.8789062500000001, + "noteOrder": 5404, + "time": 0.87890625, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5450, - "time": 0.88671875, + "noteOrder": 5452, + "time": 0.8867187499999999, "position": { "x": 7, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5546, - "time": 0.9023437500000001, + "noteOrder": 5548, + "time": 0.90234375, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5642, + "noteOrder": 5644, "time": 0.91796875, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5690, - "time": 0.9257812500000001, + "noteOrder": 5692, + "time": 0.92578125, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5738, - "time": 0.9335937500000001, + "noteOrder": 5741, + "time": 0.9335937499999999, "position": { "x": 7, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5762, - "time": 0.9375000000000001, + "noteOrder": 5765, + "time": 0.9375, "position": { "x": 7, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5786, - "time": 0.9414062500000001, + "noteOrder": 5789, + "time": 0.94140625, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5810, - "time": 0.9453125000000001, + "noteOrder": 5813, + "time": 0.9453125, "position": { "x": 3, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5834, - "time": 0.9492187500000001, + "noteOrder": 5837, + "time": 0.9492187499999999, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5858, - "time": 0.953125, + "noteOrder": 5861, + "time": 0.9531249999999999, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5882, - "time": 0.9570312500000001, + "noteOrder": 5885, + "time": 0.95703125, "position": { "x": 3, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5906, - "time": 0.9609375000000001, + "noteOrder": 5909, + "time": 0.9609375, "position": { "x": 4, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5906, - "time": 0.9609375000000001, + "noteOrder": 5909, + "time": 0.9609375, "position": { "x": 6, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5930, - "time": 0.9648437500000001, + "noteOrder": 5933, + "time": 0.96484375, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5930, - "time": 0.9648437500000001, + "noteOrder": 5933, + "time": 0.96484375, "position": { "x": 3, "y": 0 @@ -2976,10 +2976,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.015625000000000003, + "time": 0.015625, "position": { "x": 3, "y": 0 @@ -2999,10 +2999,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.027343750000000003, + "time": 0.02734375, "position": { "x": 3, "y": 0 @@ -3022,10 +3022,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03125000000000001, + "time": 0.03125, "position": { "x": 7, "y": 0 @@ -3045,10 +3045,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, - "time": 0.04296875000000001, + "time": 0.04296874999999999, "position": { "x": 7, "y": 0 @@ -3068,10 +3068,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.046875, + "time": 0.04687499999999999, "position": { "x": 3, "y": 0 @@ -3091,7 +3091,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, "time": 0.05078125, @@ -3114,10 +3114,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, - "time": 0.05468750000000001, + "time": 0.0546875, "position": { "x": 7, "y": 0 @@ -3137,10 +3137,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 360, - "time": 0.05859375000000001, + "time": 0.05859375, "position": { "x": 6, "y": 0 @@ -3160,10 +3160,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 864, - "time": 0.14062500000000003, + "noteOrder": 865, + "time": 0.14062499999999997, "position": { "x": 3, "y": 0 @@ -3183,9 +3183,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 936, + "noteOrder": 937, "time": 0.15234375, "position": { "x": 3, @@ -3206,10 +3206,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 960, - "time": 0.15625000000000003, + "noteOrder": 961, + "time": 0.15624999999999997, "position": { "x": 7, "y": 0 @@ -3229,10 +3229,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1032, - "time": 0.16796875000000003, + "noteOrder": 1033, + "time": 0.16796875, "position": { "x": 7, "y": 0 @@ -3252,10 +3252,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1056, - "time": 0.17187500000000003, + "noteOrder": 1057, + "time": 0.17187499999999997, "position": { "x": 3, "y": 0 @@ -3275,10 +3275,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1080, - "time": 0.17578125000000003, + "noteOrder": 1081, + "time": 0.17578124999999997, "position": { "x": 3, "y": 0 @@ -3298,9 +3298,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1104, + "noteOrder": 1105, "time": 0.1796875, "position": { "x": 7, @@ -3321,10 +3321,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1128, - "time": 0.18359375000000003, + "noteOrder": 1129, + "time": 0.18359375, "position": { "x": 7, "y": 0 @@ -3344,9 +3344,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1248, + "noteOrder": 1249, "time": 0.203125, "position": { "x": 7, @@ -3367,10 +3367,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1272, - "time": 0.20703125000000003, + "noteOrder": 1273, + "time": 0.20703124999999997, "position": { "x": 7, "y": 0 @@ -3390,9 +3390,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1248, + "noteOrder": 1249, "time": 0.203125, "position": { "x": 3, @@ -3413,10 +3413,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1272, - "time": 0.20703125000000003, + "noteOrder": 1273, + "time": 0.20703124999999997, "position": { "x": 3, "y": 0 @@ -3436,10 +3436,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1393, - "time": 0.22656250000000003, + "time": 0.2265625, "position": { "x": 6, "y": 0 @@ -3459,10 +3459,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1417, - "time": 0.23046875000000003, + "time": 0.23046875, "position": { "x": 6, "y": 0 @@ -3482,10 +3482,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1393, - "time": 0.22656250000000003, + "time": 0.2265625, "position": { "x": 4, "y": 0 @@ -3505,10 +3505,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1417, - "time": 0.23046875000000003, + "time": 0.23046875, "position": { "x": 4, "y": 0 @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1441, - "time": 0.23437500000000003, + "time": 0.234375, "position": { "x": 7, "y": 0 @@ -3550,11 +3550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.23828125, + "noteOrder": 1453, + "time": 0.236328125, "position": { "x": 7, "y": 0 @@ -3568,18 +3568,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.24218750000000003, + "noteOrder": 1453, + "time": 0.236328125, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3596,13 +3596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1513, - "time": 0.24609375000000003, + "noteOrder": 1465, + "time": 0.23828124999999997, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3614,18 +3614,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1537, - "time": 0.25000000000000006, + "noteOrder": 1465, + "time": 0.23828124999999997, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3642,13 +3642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.25390625, + "noteOrder": 1465, + "time": 0.23828124999999997, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3665,13 +3665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.25781250000000006, + "noteOrder": 1477, + "time": 0.240234375, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3683,18 +3683,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1609, - "time": 0.26171875, + "noteOrder": 1477, + "time": 0.240234375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3711,13 +3711,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1657, - "time": 0.26953125, + "noteOrder": 1489, + "time": 0.24218749999999997, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3729,18 +3729,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1681, - "time": 0.27343750000000006, + "noteOrder": 1489, + "time": 0.24218749999999997, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3757,11 +3757,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.27734375, + "noteOrder": 1489, + "time": 0.24218749999999997, "position": { "x": 7, "y": 0 @@ -3780,13 +3780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.28125000000000006, + "noteOrder": 1501, + "time": 0.24414062499999997, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3798,18 +3798,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1753, - "time": 0.28515625000000006, + "noteOrder": 1501, + "time": 0.24414062499999997, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3826,13 +3826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1777, - "time": 0.2890625, + "noteOrder": 1513, + "time": 0.24609375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3844,18 +3844,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1825, - "time": 0.29687500000000006, + "noteOrder": 1513, + "time": 0.24609375, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3872,13 +3872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 1849, - "time": 0.30078125000000006, + "noteOrder": 1513, + "time": 0.24609375, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3890,18 +3890,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1849, - "time": 0.30078125000000006, + "noteOrder": 1525, + "time": 0.24804687499999997, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3918,13 +3918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1873, - "time": 0.3046875, + "noteOrder": 1525, + "time": 0.24804687499999997, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3941,13 +3941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1873, - "time": 0.3046875, + "noteOrder": 1537, + "time": 0.25, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3959,16 +3959,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1897, - "time": 0.30859375, + "noteOrder": 1537, + "time": 0.25, "position": { "x": 5, "y": 0 @@ -3982,18 +3982,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1897, - "time": 0.30859375, + "noteOrder": 1537, + "time": 0.25, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4005,18 +4005,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.31250000000000006, + "noteOrder": 1549, + "time": 0.251953125, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4028,18 +4028,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2137, - "time": 0.34765625000000006, + "noteOrder": 1549, + "time": 0.251953125, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4056,11 +4056,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2161, - "time": 0.35156250000000006, + "noteOrder": 1561, + "time": 0.25390625, "position": { "x": 3, "y": 0 @@ -4079,13 +4079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.359375, + "noteOrder": 1573, + "time": 0.255859375, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4097,18 +4097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2221, - "time": 0.36132812500000006, + "noteOrder": 1573, + "time": 0.255859375, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4120,18 +4120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 2, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2233, - "time": 0.36328125000000006, + "noteOrder": 1585, + "time": 0.2578125, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4143,18 +4143,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2233, - "time": 0.36328125000000006, + "noteOrder": 1585, + "time": 0.2578125, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4171,13 +4171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 2245, - "time": 0.36523437500000006, + "noteOrder": 1585, + "time": 0.2578125, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4189,18 +4189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 77, "indexInLine": 2, "isSliding": false, - "noteOrder": 2257, - "time": 0.36718750000000006, + "noteOrder": 1597, + "time": 0.259765625, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4212,18 +4212,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2257, - "time": 0.36718750000000006, + "noteOrder": 1597, + "time": 0.259765625, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4240,13 +4240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2269, - "time": 0.36914062500000006, + "noteOrder": 1609, + "time": 0.26171875, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4263,13 +4263,4498 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 2, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2281, - "time": 0.37109375000000006, + "noteOrder": 1609, + "time": 0.26171875, "position": { - "x": 6, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1609, + "time": 0.26171875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1621, + "time": 0.263671875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1621, + "time": 0.263671875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1657, + "time": 0.26953125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1669, + "time": 0.271484375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1669, + "time": 0.271484375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1681, + "time": 0.2734375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1681, + "time": 0.2734375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1681, + "time": 0.2734375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1693, + "time": 0.275390625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1693, + "time": 0.275390625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1705, + "time": 0.27734375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1705, + "time": 0.27734375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1705, + "time": 0.27734375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1717, + "time": 0.279296875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1717, + "time": 0.279296875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1729, + "time": 0.28124999999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1741, + "time": 0.283203125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1741, + "time": 0.283203125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1753, + "time": 0.28515625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1765, + "time": 0.287109375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1765, + "time": 0.287109375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1777, + "time": 0.2890625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1789, + "time": 0.29101562499999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1789, + "time": 0.29101562499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1801, + "time": 0.29296874999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1801, + "time": 0.29296874999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1825, + "time": 0.296875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1849, + "time": 0.30078124999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1849, + "time": 0.30078124999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1873, + "time": 0.3046875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1873, + "time": 0.3046875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1897, + "time": 0.30859375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1897, + "time": 0.30859375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1922, + "time": 0.31249999999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2138, + "time": 0.34765625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.349609375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2150, + "time": 0.349609375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.35156249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2174, + "time": 0.35351562499999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2174, + "time": 0.35351562499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2186, + "time": 0.35546875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2186, + "time": 0.35546875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.359375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2222, + "time": 0.361328125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2234, + "time": 0.36328124999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.36328124999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2246, + "time": 0.365234375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3671875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3671875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2270, + "time": 0.369140625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37109375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37109375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2294, + "time": 0.37304687499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2306, + "time": 0.37499999999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.37499999999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2318, + "time": 0.376953125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2318, + "time": 0.376953125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37890625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37890625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37890625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2342, + "time": 0.380859375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2342, + "time": 0.380859375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2354, + "time": 0.38281249999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2354, + "time": 0.38281249999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2354, + "time": 0.38281249999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2366, + "time": 0.38476562499999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2366, + "time": 0.38476562499999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2378, + "time": 0.38671875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2378, + "time": 0.38671875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2498, + "time": 0.40625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2510, + "time": 0.408203125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2522, + "time": 0.41015625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2522, + "time": 0.41015625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2534, + "time": 0.412109375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2546, + "time": 0.41406249999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2546, + "time": 0.41406249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2558, + "time": 0.41601562499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2570, + "time": 0.41796875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2594, + "time": 0.421875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2606, + "time": 0.42382812499999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2606, + "time": 0.42382812499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2618, + "time": 0.42578124999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2630, + "time": 0.427734375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2630, + "time": 0.427734375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2642, + "time": 0.4296875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2654, + "time": 0.431640625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2654, + "time": 0.431640625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2666, + "time": 0.43359374999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2678, + "time": 0.43554687499999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2678, + "time": 0.43554687499999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.4375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2702, + "time": 0.439453125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2702, + "time": 0.439453125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2714, + "time": 0.44140625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2714, + "time": 0.44140625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2738, + "time": 0.44531249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2750, + "time": 0.44726562499999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2750, + "time": 0.44726562499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2762, + "time": 0.44921875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2762, + "time": 0.44921875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2786, + "time": 0.453125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.45703124999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4609375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2858, + "time": 0.46484374999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2906, + "time": 0.47265625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2930, + "time": 0.47656249999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2906, + "time": 0.47265625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2930, + "time": 0.47656249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2978, + "time": 0.48437499999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2990, + "time": 0.48632812499999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2990, + "time": 0.48632812499999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3002, + "time": 0.48828124999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3002, + "time": 0.48828124999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3002, + "time": 0.48828124999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3014, + "time": 0.490234375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3014, + "time": 0.490234375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3026, + "time": 0.4921875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3026, + "time": 0.4921875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3026, + "time": 0.4921875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3038, + "time": 0.494140625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3038, + "time": 0.494140625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3050, + "time": 0.49609374999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3050, + "time": 0.49609374999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3050, + "time": 0.49609374999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3062, + "time": 0.49804687499999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3062, + "time": 0.49804687499999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3074, + "time": 0.5, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3074, + "time": 0.5, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3074, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3086, + "time": 0.501953125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3086, + "time": 0.501953125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3098, + "time": 0.50390625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3098, + "time": 0.50390625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3098, + "time": 0.50390625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3110, + "time": 0.505859375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3110, + "time": 0.505859375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3122, + "time": 0.5078125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3122, + "time": 0.5078125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3122, + "time": 0.5078125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3134, + "time": 0.509765625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3134, + "time": 0.509765625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3146, + "time": 0.51171875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3146, + "time": 0.51171875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3146, + "time": 0.51171875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3158, + "time": 0.513671875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3158, + "time": 0.513671875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3171, + "time": 0.515625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3171, + "time": 0.515625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.515625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3243, + "time": 0.52734375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.53125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3279, + "time": 0.533203125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3279, + "time": 0.533203125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3291, + "time": 0.53515625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3303, + "time": 0.537109375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3303, + "time": 0.537109375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3315, + "time": 0.5390625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3315, + "time": 0.5390625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3327, + "time": 0.541015625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3327, + "time": 0.541015625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3339, + "time": 0.54296875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3339, + "time": 0.54296875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.546875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3375, + "time": 0.548828125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3375, + "time": 0.548828125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3387, + "time": 0.55078125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3387, + "time": 0.55078125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.55078125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3399, + "time": 0.552734375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3399, + "time": 0.552734375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5546875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5546875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5546875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3423, + "time": 0.556640625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3423, + "time": 0.556640625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3435, + "time": 0.55859375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3435, + "time": 0.55859375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3435, + "time": 0.55859375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3447, + "time": 0.560546875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3447, + "time": 0.560546875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5624999999999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5624999999999999, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5624999999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5644531249999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5644531249999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3483, + "time": 0.56640625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3483, + "time": 0.56640625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3483, + "time": 0.56640625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3495, + "time": 0.568359375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3495, + "time": 0.568359375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5703125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5703125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5703125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3519, + "time": 0.572265625, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4281,18 +8766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2281, - "time": 0.37109375000000006, + "noteOrder": 3519, + "time": 0.572265625, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4309,11 +8794,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2293, - "time": 0.373046875, + "noteOrder": 3531, + "time": 0.57421875, "position": { "x": 4, "y": 0 @@ -4332,13 +8817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2305, - "time": 0.375, + "noteOrder": 3531, + "time": 0.57421875, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4355,13 +8840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.375, + "noteOrder": 3531, + "time": 0.57421875, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4378,13 +8863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2329, - "time": 0.37890625000000006, + "noteOrder": 3543, + "time": 0.576171875, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4396,18 +8881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2353, - "time": 0.38281250000000006, + "noteOrder": 3543, + "time": 0.576171875, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4424,13 +8909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2497, - "time": 0.40625, + "noteOrder": 3555, + "time": 0.578125, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4447,13 +8932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2509, - "time": 0.408203125, + "noteOrder": 3555, + "time": 0.578125, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4470,13 +8955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2521, - "time": 0.41015625, + "noteOrder": 3555, + "time": 0.578125, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4488,18 +8973,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2521, - "time": 0.41015625, + "noteOrder": 3627, + "time": 0.58984375, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4516,13 +9001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 2533, - "time": 0.41210937500000006, + "noteOrder": 3651, + "time": 0.59375, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4539,13 +9024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 174, "indexInLine": 2, "isSliding": false, - "noteOrder": 2545, - "time": 0.41406250000000006, + "noteOrder": 3723, + "time": 0.6054687499999999, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4562,13 +9047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2545, - "time": 0.41406250000000006, + "noteOrder": 3651, + "time": 0.59375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4585,13 +9070,36 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3723, + "time": 0.6054687499999999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 2557, - "time": 0.41601562500000006, + "noteOrder": 4131, + "time": 0.671875, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4608,13 +9116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 194, "indexInLine": 2, "isSliding": false, - "noteOrder": 2569, - "time": 0.41796875000000006, + "noteOrder": 4203, + "time": 0.6835937499999999, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4631,11 +9139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2593, - "time": 0.42187500000000006, + "noteOrder": 4227, + "time": 0.6874999999999999, "position": { "x": 3, "y": 0 @@ -4654,13 +9162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2617, - "time": 0.42578125, + "noteOrder": 4299, + "time": 0.69921875, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4672,18 +9180,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2641, - "time": 0.42968750000000006, + "noteOrder": 4323, + "time": 0.7031249999999999, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4695,16 +9203,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2665, - "time": 0.43359375000000006, + "noteOrder": 4347, + "time": 0.7070312499999999, "position": { "x": 7, "y": 0 @@ -4723,11 +9231,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.43750000000000006, + "noteOrder": 4371, + "time": 0.7109375, "position": { "x": 3, "y": 0 @@ -4746,11 +9254,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2737, - "time": 0.44531250000000006, + "noteOrder": 4395, + "time": 0.71484375, "position": { "x": 3, "y": 0 @@ -4764,16 +9272,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, - "time": 0.45312500000000006, + "noteOrder": 4516, + "time": 0.734375, "position": { "x": 3, "y": 0 @@ -4792,13 +9300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2809, - "time": 0.45703125000000006, + "noteOrder": 4540, + "time": 0.73828125, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4815,11 +9323,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2833, - "time": 0.46093750000000006, + "noteOrder": 4516, + "time": 0.734375, "position": { "x": 7, "y": 0 @@ -4838,13 +9346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2857, - "time": 0.46484375000000006, + "noteOrder": 4540, + "time": 0.73828125, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4861,11 +9369,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2905, - "time": 0.47265625000000006, + "noteOrder": 4732, + "time": 0.7695312499999999, "position": { "x": 7, "y": 0 @@ -4884,11 +9392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2929, - "time": 0.4765625, + "noteOrder": 4744, + "time": 0.771484375, "position": { "x": 7, "y": 0 @@ -4907,13 +9415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2905, - "time": 0.47265625000000006, + "noteOrder": 4744, + "time": 0.771484375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4925,18 +9433,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2929, - "time": 0.4765625, + "noteOrder": 4756, + "time": 0.7734375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4948,18 +9456,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2977, - "time": 0.48437500000000006, + "noteOrder": 4756, + "time": 0.7734375, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4976,11 +9484,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3001, - "time": 0.48828125000000006, + "noteOrder": 4756, + "time": 0.7734375, "position": { "x": 7, "y": 0 @@ -4999,11 +9507,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3025, - "time": 0.49218750000000006, + "noteOrder": 4768, + "time": 0.775390625, "position": { "x": 7, "y": 0 @@ -5017,18 +9525,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3049, - "time": 0.49609375000000006, + "noteOrder": 4768, + "time": 0.775390625, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5045,13 +9553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3073, - "time": 0.5000000000000001, + "noteOrder": 4780, + "time": 0.77734375, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5063,18 +9571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3097, - "time": 0.50390625, + "noteOrder": 4780, + "time": 0.77734375, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5091,11 +9599,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3121, - "time": 0.5078125, + "noteOrder": 4780, + "time": 0.77734375, "position": { "x": 7, "y": 0 @@ -5114,11 +9622,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3145, - "time": 0.5117187500000001, + "noteOrder": 4792, + "time": 0.779296875, "position": { "x": 7, "y": 0 @@ -5132,18 +9640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3169, - "time": 0.5156250000000001, + "noteOrder": 4792, + "time": 0.779296875, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5160,13 +9668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 3241, - "time": 0.52734375, + "noteOrder": 4804, + "time": 0.78125, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5178,16 +9686,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3265, - "time": 0.5312500000000001, + "noteOrder": 4816, + "time": 0.783203125, "position": { "x": 3, "y": 0 @@ -5206,13 +9714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3289, - "time": 0.5351562500000001, + "noteOrder": 4816, + "time": 0.783203125, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5224,18 +9732,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3361, - "time": 0.5468750000000001, + "noteOrder": 4828, + "time": 0.7851562499999999, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4828, + "time": 0.7851562499999999, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5252,11 +9783,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3385, - "time": 0.5507812500000001, + "noteOrder": 4828, + "time": 0.7851562499999999, "position": { "x": 3, "y": 0 @@ -5275,11 +9806,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3409, - "time": 0.5546875, + "noteOrder": 4840, + "time": 0.7871093749999999, "position": { "x": 3, "y": 0 @@ -5293,18 +9824,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3433, - "time": 0.55859375, + "noteOrder": 4840, + "time": 0.7871093749999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5321,13 +9852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3457, - "time": 0.5625000000000001, + "noteOrder": 4852, + "time": 0.7890624999999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5339,18 +9870,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3481, - "time": 0.5664062500000001, + "noteOrder": 4852, + "time": 0.7890624999999999, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5367,11 +9898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3505, - "time": 0.5703125000000001, + "noteOrder": 4852, + "time": 0.7890624999999999, "position": { "x": 3, "y": 0 @@ -5390,11 +9921,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3529, - "time": 0.57421875, + "noteOrder": 4864, + "time": 0.7910156249999999, "position": { "x": 3, "y": 0 @@ -5408,18 +9939,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3553, - "time": 0.578125, + "noteOrder": 4864, + "time": 0.7910156249999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5436,13 +9967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3625, - "time": 0.5898437500000001, + "noteOrder": 4876, + "time": 0.79296875, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5459,13 +9990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3649, - "time": 0.5937500000000001, + "noteOrder": 4876, + "time": 0.79296875, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5482,11 +10013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 235, "indexInLine": 1, "isSliding": false, - "noteOrder": 3721, - "time": 0.60546875, + "noteOrder": 4900, + "time": 0.796875, "position": { "x": 4, "y": 0 @@ -5500,18 +10031,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3649, - "time": 0.5937500000000001, + "noteOrder": 4924, + "time": 0.80078125, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5528,11 +10059,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 3721, - "time": 0.60546875, + "noteOrder": 4924, + "time": 0.80078125, "position": { "x": 6, "y": 0 @@ -5546,18 +10077,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, - "time": 0.6718750000000001, + "noteOrder": 4948, + "time": 0.8046875, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5569,18 +10100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, + "lineGroupId": 237, "indexInLine": 1, "isSliding": false, - "noteOrder": 4202, - "time": 0.68359375, + "noteOrder": 4948, + "time": 0.8046875, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5597,13 +10128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4226, - "time": 0.6875000000000001, + "noteOrder": 4972, + "time": 0.8085937499999999, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5615,18 +10146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, + "lineGroupId": 238, "indexInLine": 1, "isSliding": false, - "noteOrder": 4298, - "time": 0.6992187500000001, + "noteOrder": 4972, + "time": 0.8085937499999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5643,13 +10174,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4322, - "time": 0.7031250000000001, + "noteOrder": 4996, + "time": 0.8125, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5661,16 +10192,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 239, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.7070312500000001, + "noteOrder": 4996, + "time": 0.8125, "position": { "x": 7, "y": 0 @@ -5689,13 +10220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.7109375, + "noteOrder": 5008, + "time": 0.814453125, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5707,18 +10238,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4394, - "time": 0.71484375, + "noteOrder": 5020, + "time": 0.81640625, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5730,16 +10261,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4514, - "time": 0.7343750000000001, + "noteOrder": 5020, + "time": 0.81640625, "position": { "x": 3, "y": 0 @@ -5758,13 +10289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 1, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4538, - "time": 0.7382812500000001, + "noteOrder": 5032, + "time": 0.818359375, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5781,13 +10312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4514, - "time": 0.7343750000000001, + "noteOrder": 5044, + "time": 0.8203125, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5799,16 +10330,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4538, - "time": 0.7382812500000001, + "noteOrder": 5044, + "time": 0.8203125, "position": { "x": 7, "y": 0 @@ -5827,13 +10358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4730, - "time": 0.7695312500000001, + "noteOrder": 5056, + "time": 0.822265625, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5850,36 +10381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4754, - "time": 0.7734375000000001, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4778, - "time": 0.7773437500000001, + "noteOrder": 5068, + "time": 0.82421875, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5896,11 +10404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4802, - "time": 0.78125, + "noteOrder": 5068, + "time": 0.82421875, "position": { "x": 3, "y": 0 @@ -5919,13 +10427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4826, - "time": 0.78515625, + "noteOrder": 5080, + "time": 0.8261718749999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5937,18 +10445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4850, - "time": 0.7890625000000001, + "noteOrder": 5092, + "time": 0.8281249999999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5965,13 +10473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4898, - "time": 0.7968750000000001, + "noteOrder": 5092, + "time": 0.8281249999999999, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5988,13 +10496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4922, - "time": 0.8007812500000001, + "noteOrder": 5104, + "time": 0.8300781249999999, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6011,11 +10519,11 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4922, - "time": 0.8007812500000001, + "noteOrder": 5104, + "time": 0.8300781249999999, "position": { "x": 6, "y": 0 @@ -6029,18 +10537,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4946, - "time": 0.8046875000000001, + "noteOrder": 5116, + "time": 0.8320312499999999, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6052,18 +10560,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4946, - "time": 0.8046875000000001, + "noteOrder": 5116, + "time": 0.8320312499999999, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6080,13 +10588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 4970, - "time": 0.8085937500000001, + "noteOrder": 5140, + "time": 0.8359375, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6098,18 +10606,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4970, - "time": 0.8085937500000001, + "noteOrder": 5152, + "time": 0.837890625, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6126,13 +10634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4994, - "time": 0.8125, + "noteOrder": 5152, + "time": 0.837890625, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6149,13 +10657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4994, - "time": 0.8125, + "noteOrder": 5164, + "time": 0.83984375, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6167,18 +10675,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5006, - "time": 0.814453125, + "noteOrder": 5164, + "time": 0.83984375, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6190,18 +10698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 2, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5018, - "time": 0.81640625, + "noteOrder": 5188, + "time": 0.84375, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6218,11 +10726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5018, - "time": 0.81640625, + "noteOrder": 5200, + "time": 0.845703125, "position": { "x": 3, "y": 0 @@ -6236,16 +10744,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5030, - "time": 0.818359375, + "noteOrder": 5200, + "time": 0.845703125, "position": { "x": 4, "y": 0 @@ -6259,18 +10767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 2, + "lineGroupId": 247, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5042, - "time": 0.8203125, + "noteOrder": 5212, + "time": 0.8476562499999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6282,18 +10790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5042, - "time": 0.8203125, + "noteOrder": 5212, + "time": 0.8476562499999999, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6310,13 +10818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, + "lineGroupId": 248, "indexInLine": 1, "isSliding": false, - "noteOrder": 5054, - "time": 0.8222656250000001, + "noteOrder": 5212, + "time": 0.8476562499999999, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6328,18 +10836,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, + "lineGroupId": 248, "indexInLine": 2, "isSliding": false, - "noteOrder": 5066, - "time": 0.8242187500000001, + "noteOrder": 5224, + "time": 0.8496093749999999, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6351,18 +10859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5066, - "time": 0.8242187500000001, + "noteOrder": 5224, + "time": 0.8496093749999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6379,11 +10887,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 1, + "lineGroupId": 248, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5078, - "time": 0.8261718750000001, + "noteOrder": 5236, + "time": 0.8515624999999999, "position": { "x": 4, "y": 0 @@ -6402,13 +10910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 2, + "lineGroupId": 248, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5090, - "time": 0.8281250000000001, + "noteOrder": 5236, + "time": 0.8515624999999999, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6425,13 +10933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5090, - "time": 0.8281250000000001, + "noteOrder": 5248, + "time": 0.853515625, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6443,18 +10951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5138, - "time": 0.8359375000000001, + "noteOrder": 5248, + "time": 0.853515625, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6471,13 +10979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5186, - "time": 0.8437500000000001, + "noteOrder": 5260, + "time": 0.85546875, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6489,16 +10997,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5210, - "time": 0.84765625, + "noteOrder": 5260, + "time": 0.85546875, "position": { "x": 3, "y": 0 @@ -6518,10 +11026,10 @@ }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5282, - "time": 0.8593750000000001, + "noteOrder": 5284, + "time": 0.859375, "position": { "x": 4, "y": 0 @@ -6541,10 +11049,10 @@ }, { "lineGroupId": 251, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5306, - "time": 0.8632812500000001, + "noteOrder": 5308, + "time": 0.86328125, "position": { "x": 5, "y": 0 @@ -6564,10 +11072,10 @@ }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5306, - "time": 0.8632812500000001, + "noteOrder": 5308, + "time": 0.86328125, "position": { "x": 6, "y": 0 @@ -6587,10 +11095,10 @@ }, { "lineGroupId": 252, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5330, - "time": 0.8671875000000001, + "noteOrder": 5332, + "time": 0.8671874999999999, "position": { "x": 5, "y": 0 @@ -6610,10 +11118,10 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5330, - "time": 0.8671875000000001, + "noteOrder": 5332, + "time": 0.8671874999999999, "position": { "x": 4, "y": 0 @@ -6633,10 +11141,10 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5354, - "time": 0.8710937500000001, + "noteOrder": 5356, + "time": 0.8710937499999999, "position": { "x": 5, "y": 0 @@ -6656,10 +11164,10 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5354, - "time": 0.8710937500000001, + "noteOrder": 5356, + "time": 0.8710937499999999, "position": { "x": 6, "y": 0 @@ -6679,10 +11187,10 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5378, - "time": 0.8750000000000001, + "noteOrder": 5380, + "time": 0.875, "position": { "x": 5, "y": 0 @@ -6702,10 +11210,10 @@ }, { "lineGroupId": 255, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5378, - "time": 0.8750000000000001, + "noteOrder": 5380, + "time": 0.875, "position": { "x": 7, "y": 0 @@ -6725,10 +11233,10 @@ }, { "lineGroupId": 255, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5402, - "time": 0.8789062500000001, + "noteOrder": 5404, + "time": 0.87890625, "position": { "x": 6, "y": 0 @@ -6748,9 +11256,9 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5426, + "noteOrder": 5428, "time": 0.8828125, "position": { "x": 3, @@ -6771,10 +11279,10 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5450, - "time": 0.88671875, + "noteOrder": 5452, + "time": 0.8867187499999999, "position": { "x": 4, "y": 0 @@ -6794,10 +11302,10 @@ }, { "lineGroupId": 259, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5474, - "time": 0.8906250000000001, + "noteOrder": 5476, + "time": 0.8906249999999999, "position": { "x": 3, "y": 0 @@ -6817,10 +11325,10 @@ }, { "lineGroupId": 259, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5486, - "time": 0.8925781250000001, + "noteOrder": 5488, + "time": 0.8925781249999999, "position": { "x": 4, "y": 0 @@ -6840,10 +11348,10 @@ }, { "lineGroupId": 259, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5498, - "time": 0.8945312500000001, + "noteOrder": 5500, + "time": 0.8945312499999999, "position": { "x": 4, "y": 0 @@ -6863,10 +11371,10 @@ }, { "lineGroupId": 260, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5498, - "time": 0.8945312500000001, + "noteOrder": 5500, + "time": 0.8945312499999999, "position": { "x": 7, "y": 0 @@ -6886,10 +11394,10 @@ }, { "lineGroupId": 260, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5510, - "time": 0.8964843750000001, + "noteOrder": 5512, + "time": 0.896484375, "position": { "x": 6, "y": 0 @@ -6909,10 +11417,10 @@ }, { "lineGroupId": 260, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5522, - "time": 0.8984375000000001, + "noteOrder": 5524, + "time": 0.8984375, "position": { "x": 6, "y": 0 @@ -6932,10 +11440,10 @@ }, { "lineGroupId": 261, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5522, - "time": 0.8984375000000001, + "noteOrder": 5524, + "time": 0.8984375, "position": { "x": 3, "y": 0 @@ -6955,10 +11463,10 @@ }, { "lineGroupId": 261, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5534, - "time": 0.9003906250000001, + "noteOrder": 5536, + "time": 0.900390625, "position": { "x": 4, "y": 0 @@ -6978,10 +11486,10 @@ }, { "lineGroupId": 261, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5546, - "time": 0.9023437500000001, + "noteOrder": 5548, + "time": 0.90234375, "position": { "x": 4, "y": 0 @@ -7001,10 +11509,10 @@ }, { "lineGroupId": 263, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5570, - "time": 0.9062500000000001, + "noteOrder": 5572, + "time": 0.90625, "position": { "x": 7, "y": 0 @@ -7024,10 +11532,10 @@ }, { "lineGroupId": 263, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5582, - "time": 0.9082031250000001, + "noteOrder": 5584, + "time": 0.9082031249999999, "position": { "x": 6, "y": 0 @@ -7047,10 +11555,10 @@ }, { "lineGroupId": 263, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5594, - "time": 0.9101562500000001, + "noteOrder": 5596, + "time": 0.9101562499999999, "position": { "x": 6, "y": 0 @@ -7070,10 +11578,10 @@ }, { "lineGroupId": 264, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5594, - "time": 0.9101562500000001, + "noteOrder": 5596, + "time": 0.9101562499999999, "position": { "x": 3, "y": 0 @@ -7093,10 +11601,10 @@ }, { "lineGroupId": 264, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5606, - "time": 0.9121093750000001, + "noteOrder": 5608, + "time": 0.9121093749999999, "position": { "x": 4, "y": 0 @@ -7116,10 +11624,10 @@ }, { "lineGroupId": 264, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5618, - "time": 0.9140625000000001, + "noteOrder": 5620, + "time": 0.9140624999999999, "position": { "x": 4, "y": 0 @@ -7139,10 +11647,10 @@ }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5618, - "time": 0.9140625000000001, + "noteOrder": 5620, + "time": 0.9140624999999999, "position": { "x": 7, "y": 0 @@ -7162,9 +11670,9 @@ }, { "lineGroupId": 265, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5630, + "noteOrder": 5632, "time": 0.916015625, "position": { "x": 6, @@ -7185,9 +11693,9 @@ }, { "lineGroupId": 265, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5642, + "noteOrder": 5644, "time": 0.91796875, "position": { "x": 6, @@ -7208,10 +11716,102 @@ }, { "lineGroupId": 267, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5668, + "time": 0.921875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5680, + "time": 0.923828125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5680, + "time": 0.923828125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5692, + "time": 0.92578125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5666, - "time": 0.9218750000000001, + "noteOrder": 5692, + "time": 0.92578125, "position": { "x": 7, "y": 0 @@ -7231,10 +11831,102 @@ }, { "lineGroupId": 269, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5717, + "time": 0.9296874999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5729, + "time": 0.9316406249999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5729, + "time": 0.9316406249999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5741, + "time": 0.9335937499999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5714, - "time": 0.9296875000000001, + "noteOrder": 5741, + "time": 0.9335937499999999, "position": { "x": 3, "y": 0 diff --git a/tracks/Jumbo Drill/353_difficulty_1b.json b/tracks/Jumbo Drill/353_difficulty_1b.json index 8b565e3d..294e2f47 100644 --- a/tracks/Jumbo Drill/353_difficulty_1b.json +++ b/tracks/Jumbo Drill/353_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 456, - "time": 0.07421875000000001, + "time": 0.07421875, "position": { "x": 7, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.10546875000000001, + "noteOrder": 649, + "time": 0.10546875, "position": { "x": 3, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.11718750000000001, + "noteOrder": 721, + "time": 0.1171875, "position": { "x": 3, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.12109375000000001, + "noteOrder": 745, + "time": 0.12109374999999999, "position": { "x": 7, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 864, - "time": 0.14062500000000003, + "noteOrder": 865, + "time": 0.14062499999999997, "position": { "x": 7, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 960, - "time": 0.15625000000000003, + "noteOrder": 961, + "time": 0.15624999999999997, "position": { "x": 3, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1056, - "time": 0.17187500000000003, + "noteOrder": 1057, + "time": 0.17187499999999997, "position": { "x": 6, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1105, "time": 0.1796875, "position": { "x": 4, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1152, - "time": 0.1875, + "noteOrder": 1153, + "time": 0.18749999999999997, "position": { "x": 7, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1176, - "time": 0.19140625000000003, + "noteOrder": 1177, + "time": 0.19140624999999997, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1201, "time": 0.1953125, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1201, "time": 0.1953125, "position": { "x": 4, @@ -294,7 +294,7 @@ }, { "noteOrder": 1417, - "time": 0.23046875000000003, + "time": 0.23046875, "position": { "x": 4, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1417, - "time": 0.23046875000000003, + "time": 0.23046875, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1537, - "time": 0.25000000000000006, + "time": 0.25, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1585, - "time": 0.25781250000000006, + "time": 0.2578125, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1633, - "time": 0.26562500000000006, + "time": 0.265625, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1633, - "time": 0.26562500000000006, + "time": 0.265625, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1681, - "time": 0.27343750000000006, + "time": 0.2734375, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.31250000000000006, + "noteOrder": 1922, + "time": 0.31249999999999994, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.31640625000000006, + "noteOrder": 1946, + "time": 0.31640625, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3203125, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.32421875, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2017, - "time": 0.32812500000000006, + "noteOrder": 2018, + "time": 0.328125, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2017, - "time": 0.32812500000000006, + "noteOrder": 2018, + "time": 0.328125, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.33203125000000006, + "noteOrder": 2042, + "time": 0.33203124999999994, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.33203125000000006, + "noteOrder": 2042, + "time": 0.33203124999999994, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.33593750000000006, + "noteOrder": 2066, + "time": 0.3359375, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.33984375, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.39453125000000006, + "noteOrder": 2426, + "time": 0.39453124999999994, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2473, - "time": 0.40234375000000006, + "noteOrder": 2474, + "time": 0.40234375, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2497, + "noteOrder": 2498, "time": 0.40625, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.41015625, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.41406250000000006, + "noteOrder": 2546, + "time": 0.41406249999999994, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2545, - "time": 0.41406250000000006, + "noteOrder": 2546, + "time": 0.41406249999999994, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2569, - "time": 0.41796875000000006, + "noteOrder": 2570, + "time": 0.41796875, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2569, - "time": 0.41796875000000006, + "noteOrder": 2570, + "time": 0.41796875, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2617, - "time": 0.42578125, + "noteOrder": 2618, + "time": 0.42578124999999994, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2617, - "time": 0.42578125, + "noteOrder": 2618, + "time": 0.42578124999999994, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.42968750000000006, + "noteOrder": 2642, + "time": 0.4296875, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2665, - "time": 0.43359375000000006, + "noteOrder": 2666, + "time": 0.43359374999999994, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2881, - "time": 0.46875000000000006, + "noteOrder": 2882, + "time": 0.46875, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2881, - "time": 0.46875000000000006, + "noteOrder": 2882, + "time": 0.46875, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2905, - "time": 0.47265625000000006, + "noteOrder": 2906, + "time": 0.47265625, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2905, - "time": 0.47265625000000006, + "noteOrder": 2906, + "time": 0.47265625, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3073, - "time": 0.5000000000000001, + "noteOrder": 3074, + "time": 0.5, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3097, + "noteOrder": 3098, "time": 0.50390625, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3121, + "noteOrder": 3122, "time": 0.5078125, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3145, - "time": 0.5117187500000001, + "noteOrder": 3146, + "time": 0.51171875, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3265, - "time": 0.5312500000000001, + "noteOrder": 3267, + "time": 0.53125, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3289, - "time": 0.5351562500000001, + "noteOrder": 3291, + "time": 0.53515625, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3313, + "noteOrder": 3315, "time": 0.5390625, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3337, + "noteOrder": 3339, "time": 0.54296875, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3457, - "time": 0.5625000000000001, + "noteOrder": 3459, + "time": 0.5624999999999999, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3481, - "time": 0.5664062500000001, + "noteOrder": 3483, + "time": 0.56640625, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3505, - "time": 0.5703125000000001, + "noteOrder": 3507, + "time": 0.5703125, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3529, + "noteOrder": 3531, "time": 0.57421875, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3793, + "noteOrder": 3795, "time": 0.6171875, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3817, - "time": 0.6210937500000001, + "noteOrder": 3819, + "time": 0.62109375, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3841, - "time": 0.6250000000000001, + "noteOrder": 3843, + "time": 0.6249999999999999, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3889, - "time": 0.6328125000000001, + "noteOrder": 3891, + "time": 0.6328125, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3985, + "noteOrder": 3987, "time": 0.6484375, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4010, + "noteOrder": 4011, "time": 0.65234375, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.6562500000000001, + "noteOrder": 4035, + "time": 0.65625, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.6640625000000001, + "noteOrder": 4083, + "time": 0.6640624999999999, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4178, + "noteOrder": 4179, "time": 0.6796875, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.68359375, + "noteOrder": 4203, + "time": 0.6835937499999999, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4274, - "time": 0.6953125000000001, + "noteOrder": 4275, + "time": 0.6953125, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4298, - "time": 0.6992187500000001, + "noteOrder": 4299, + "time": 0.69921875, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4322, - "time": 0.7031250000000001, + "noteOrder": 4323, + "time": 0.7031249999999999, "position": { "x": 7, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4322, - "time": 0.7031250000000001, + "noteOrder": 4323, + "time": 0.7031249999999999, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4371, "time": 0.7109375, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4371, "time": 0.7109375, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4419, "time": 0.71875, "position": { "x": 7, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7226562500000001, + "noteOrder": 4444, + "time": 0.72265625, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7265625000000001, + "noteOrder": 4468, + "time": 0.7265624999999999, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7265625000000001, + "noteOrder": 4468, + "time": 0.7265624999999999, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.7304687500000001, + "noteOrder": 4492, + "time": 0.73046875, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.7304687500000001, + "noteOrder": 4492, + "time": 0.73046875, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4610, - "time": 0.75, + "noteOrder": 4612, + "time": 0.7499999999999999, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4634, + "noteOrder": 4636, "time": 0.75390625, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7578125000000001, + "noteOrder": 4660, + "time": 0.7578125, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.7617187500000001, + "noteOrder": 4684, + "time": 0.76171875, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4706, - "time": 0.7656250000000001, + "noteOrder": 4708, + "time": 0.7656249999999999, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4706, - "time": 0.7656250000000001, + "noteOrder": 4708, + "time": 0.7656249999999999, "position": { "x": 4, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4730, - "time": 0.7695312500000001, + "noteOrder": 4732, + "time": 0.7695312499999999, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4730, - "time": 0.7695312500000001, + "noteOrder": 4732, + "time": 0.7695312499999999, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4754, - "time": 0.7734375000000001, + "noteOrder": 4756, + "time": 0.7734375, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4778, - "time": 0.7773437500000001, + "noteOrder": 4780, + "time": 0.77734375, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4802, + "noteOrder": 4804, "time": 0.78125, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.78515625, + "noteOrder": 4828, + "time": 0.7851562499999999, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.7890625000000001, + "noteOrder": 4852, + "time": 0.7890624999999999, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7929687500000001, + "noteOrder": 4876, + "time": 0.79296875, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4996, "time": 0.8125, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5018, + "noteOrder": 5020, "time": 0.81640625, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5042, + "noteOrder": 5044, "time": 0.8203125, "position": { "x": 4, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.8242187500000001, + "noteOrder": 5068, + "time": 0.82421875, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5090, - "time": 0.8281250000000001, + "noteOrder": 5092, + "time": 0.8281249999999999, "position": { "x": 6, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5090, - "time": 0.8281250000000001, + "noteOrder": 5092, + "time": 0.8281249999999999, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5114, - "time": 0.8320312500000001, + "noteOrder": 5116, + "time": 0.8320312499999999, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5114, - "time": 0.8320312500000001, + "noteOrder": 5116, + "time": 0.8320312499999999, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5138, - "time": 0.8359375000000001, + "noteOrder": 5140, + "time": 0.8359375, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5162, - "time": 0.8398437500000001, + "noteOrder": 5164, + "time": 0.83984375, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5186, - "time": 0.8437500000000001, + "noteOrder": 5188, + "time": 0.84375, "position": { "x": 7, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5210, - "time": 0.84765625, + "noteOrder": 5212, + "time": 0.8476562499999999, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5498, - "time": 0.8945312500000001, + "noteOrder": 5500, + "time": 0.8945312499999999, "position": { "x": 6, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5546, - "time": 0.9023437500000001, + "noteOrder": 5548, + "time": 0.90234375, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5666, - "time": 0.9218750000000001, + "noteOrder": 5668, + "time": 0.921875, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5690, - "time": 0.9257812500000001, + "noteOrder": 5692, + "time": 0.92578125, "position": { "x": 6, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5714, - "time": 0.9296875000000001, + "noteOrder": 5717, + "time": 0.9296874999999999, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5738, - "time": 0.9335937500000001, + "noteOrder": 5741, + "time": 0.9335937499999999, "position": { "x": 4, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5858, - "time": 0.953125, + "noteOrder": 5861, + "time": 0.9531249999999999, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5882, - "time": 0.9570312500000001, + "noteOrder": 5885, + "time": 0.95703125, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5906, - "time": 0.9609375000000001, + "noteOrder": 5909, + "time": 0.9609375, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5930, - "time": 0.9648437500000001, + "noteOrder": 5933, + "time": 0.96484375, "position": { "x": 4, "y": 0 @@ -2456,10 +2456,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.015625000000000003, + "time": 0.015625, "position": { "x": 7, "y": 0 @@ -2479,10 +2479,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.027343750000000003, + "time": 0.02734375, "position": { "x": 7, "y": 0 @@ -2502,10 +2502,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.015625000000000003, + "time": 0.015625, "position": { "x": 3, "y": 0 @@ -2525,10 +2525,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.027343750000000003, + "time": 0.02734375, "position": { "x": 3, "y": 0 @@ -2548,10 +2548,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03125000000000001, + "time": 0.03125, "position": { "x": 4, "y": 0 @@ -2571,10 +2571,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, - "time": 0.04296875000000001, + "time": 0.04296874999999999, "position": { "x": 4, "y": 0 @@ -2594,10 +2594,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03125000000000001, + "time": 0.03125, "position": { "x": 6, "y": 0 @@ -2617,10 +2617,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, - "time": 0.04296875000000001, + "time": 0.04296874999999999, "position": { "x": 6, "y": 0 @@ -2640,10 +2640,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.046875, + "time": 0.04687499999999999, "position": { "x": 7, "y": 0 @@ -2663,7 +2663,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, "time": 0.05078125, @@ -2686,10 +2686,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, - "time": 0.05468750000000001, + "time": 0.0546875, "position": { "x": 3, "y": 0 @@ -2709,10 +2709,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 360, - "time": 0.05859375000000001, + "time": 0.05859375, "position": { "x": 3, "y": 0 @@ -2732,10 +2732,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.06250000000000001, + "time": 0.0625, "position": { "x": 6, "y": 0 @@ -2755,10 +2755,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 408, - "time": 0.06640625000000001, + "time": 0.06640625, "position": { "x": 6, "y": 0 @@ -2778,10 +2778,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 432, - "time": 0.07031250000000001, + "time": 0.07031249999999999, "position": { "x": 3, "y": 0 @@ -2801,10 +2801,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 480, - "time": 0.07812500000000001, + "time": 0.07812499999999999, "position": { "x": 3, "y": 0 @@ -2824,10 +2824,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, - "time": 0.07812500000000001, + "time": 0.07812499999999999, "position": { "x": 4, "y": 0 @@ -2847,10 +2847,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 504, - "time": 0.08203125000000001, + "time": 0.08203125, "position": { "x": 4, "y": 0 @@ -2870,10 +2870,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 528, - "time": 0.08593750000000001, + "time": 0.08593749999999999, "position": { "x": 7, "y": 0 @@ -2893,10 +2893,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 576, - "time": 0.09375, + "time": 0.09374999999999999, "position": { "x": 7, "y": 0 @@ -2916,10 +2916,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 576, - "time": 0.09375, + "time": 0.09374999999999999, "position": { "x": 6, "y": 0 @@ -2939,7 +2939,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 600, "time": 0.09765625, @@ -2962,10 +2962,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, - "time": 0.10937500000000001, + "noteOrder": 673, + "time": 0.109375, "position": { "x": 6, "y": 0 @@ -2985,10 +2985,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 696, - "time": 0.11328125000000001, + "noteOrder": 697, + "time": 0.11328125, "position": { "x": 6, "y": 0 @@ -3008,10 +3008,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, - "time": 0.12500000000000003, + "noteOrder": 769, + "time": 0.125, "position": { "x": 4, "y": 0 @@ -3031,10 +3031,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 792, - "time": 0.12890625000000003, + "noteOrder": 793, + "time": 0.12890625, "position": { "x": 4, "y": 0 @@ -3054,10 +3054,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, - "time": 0.12500000000000003, + "noteOrder": 769, + "time": 0.125, "position": { "x": 6, "y": 0 @@ -3077,10 +3077,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 792, - "time": 0.12890625000000003, + "noteOrder": 793, + "time": 0.12890625, "position": { "x": 6, "y": 0 @@ -3100,10 +3100,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1224, - "time": 0.19921875000000003, + "noteOrder": 1225, + "time": 0.19921875, "position": { "x": 7, "y": 0 @@ -3123,9 +3123,9 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1248, + "noteOrder": 1249, "time": 0.203125, "position": { "x": 7, @@ -3146,10 +3146,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1224, - "time": 0.19921875000000003, + "noteOrder": 1225, + "time": 0.19921875, "position": { "x": 3, "y": 0 @@ -3169,9 +3169,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1248, + "noteOrder": 1249, "time": 0.203125, "position": { "x": 3, @@ -3192,10 +3192,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1441, - "time": 0.23437500000000003, + "time": 0.234375, "position": { "x": 3, "y": 0 @@ -3214,13 +3214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1489, - "time": 0.24218750000000003, + "noteOrder": 1465, + "time": 0.23828124999999997, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3232,18 +3232,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1513, - "time": 0.24609375000000003, + "noteOrder": 1465, + "time": 0.23828124999999997, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3260,11 +3260,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1729, - "time": 0.28125000000000006, + "noteOrder": 1489, + "time": 0.24218749999999997, "position": { "x": 7, "y": 0 @@ -3283,13 +3283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1753, - "time": 0.28515625000000006, + "noteOrder": 1501, + "time": 0.24414062499999997, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3306,13 +3306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1777, - "time": 0.2890625, + "noteOrder": 1501, + "time": 0.24414062499999997, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3324,18 +3324,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 1801, - "time": 0.29296875, + "noteOrder": 1513, + "time": 0.24609375, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3352,11 +3352,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.29687500000000006, + "noteOrder": 1525, + "time": 0.24804687499999997, "position": { "x": 7, "y": 0 @@ -3370,18 +3370,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1873, - "time": 0.3046875, + "noteOrder": 1525, + "time": 0.24804687499999997, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3398,13 +3398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1897, - "time": 0.30859375, + "noteOrder": 1729, + "time": 0.28124999999999994, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3421,13 +3421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.34375000000000006, + "noteOrder": 1753, + "time": 0.28515625, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3439,18 +3439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 2137, - "time": 0.34765625000000006, + "noteOrder": 1777, + "time": 0.2890625, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3467,13 +3467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.35156250000000006, + "noteOrder": 1801, + "time": 0.29296874999999994, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3485,18 +3485,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 2185, - "time": 0.35546875, + "noteOrder": 1825, + "time": 0.296875, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3513,13 +3513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.359375, + "noteOrder": 1849, + "time": 0.30078124999999994, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3531,18 +3531,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2257, - "time": 0.36718750000000006, + "noteOrder": 1849, + "time": 0.30078124999999994, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3559,11 +3559,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.375, + "noteOrder": 1873, + "time": 0.3046875, "position": { "x": 3, "y": 0 @@ -3582,11 +3582,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2329, - "time": 0.37890625000000006, + "noteOrder": 1885, + "time": 0.306640625, "position": { "x": 3, "y": 0 @@ -3600,18 +3600,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2353, - "time": 0.38281250000000006, + "noteOrder": 1885, + "time": 0.306640625, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3628,11 +3628,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2377, - "time": 0.38671875000000006, + "noteOrder": 1897, + "time": 0.30859375, "position": { "x": 3, "y": 0 @@ -3651,11 +3651,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.390625, + "noteOrder": 1910, + "time": 0.310546875, "position": { "x": 3, "y": 0 @@ -3669,18 +3669,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2425, - "time": 0.39453125000000006, + "noteOrder": 1910, + "time": 0.310546875, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3692,18 +3692,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2449, - "time": 0.39843750000000006, + "noteOrder": 2114, + "time": 0.34374999999999994, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3715,18 +3715,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2473, - "time": 0.40234375000000006, + "noteOrder": 2138, + "time": 0.34765625, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3738,16 +3738,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.43750000000000006, + "noteOrder": 2162, + "time": 0.35156249999999994, "position": { "x": 7, "y": 0 @@ -3766,13 +3766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2737, - "time": 0.44531250000000006, + "noteOrder": 2186, + "time": 0.35546875, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3784,18 +3784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, - "time": 0.45312500000000006, + "noteOrder": 2210, + "time": 0.359375, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3807,18 +3807,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2809, - "time": 0.45703125000000006, + "noteOrder": 2234, + "time": 0.36328124999999994, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3830,18 +3830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2833, - "time": 0.46093750000000006, + "noteOrder": 2234, + "time": 0.36328124999999994, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3858,11 +3858,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2857, - "time": 0.46484375000000006, + "noteOrder": 2258, + "time": 0.3671875, "position": { "x": 4, "y": 0 @@ -3881,13 +3881,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2929, - "time": 0.4765625, + "noteOrder": 2258, + "time": 0.3671875, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3899,18 +3899,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 2953, - "time": 0.48046875000000006, + "noteOrder": 2258, + "time": 0.3671875, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3927,13 +3927,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2929, - "time": 0.4765625, + "noteOrder": 2282, + "time": 0.37109375, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3945,16 +3945,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2953, - "time": 0.48046875000000006, + "noteOrder": 2282, + "time": 0.37109375, "position": { "x": 4, "y": 0 @@ -3968,16 +3968,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2977, - "time": 0.48437500000000006, + "noteOrder": 2306, + "time": 0.37499999999999994, "position": { "x": 4, "y": 0 @@ -3996,11 +3996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3001, - "time": 0.48828125000000006, + "noteOrder": 2306, + "time": 0.37499999999999994, "position": { "x": 5, "y": 0 @@ -4018,12 +4018,1323 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.37499999999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2318, + "time": 0.376953125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2318, + "time": 0.376953125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37890625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2342, + "time": 0.380859375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2342, + "time": 0.380859375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2354, + "time": 0.38281249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2366, + "time": 0.38476562499999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2366, + "time": 0.38476562499999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2378, + "time": 0.38671875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2390, + "time": 0.388671875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2390, + "time": 0.388671875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.390625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39453124999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2450, + "time": 0.3984375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2474, + "time": 0.40234375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2690, + "time": 0.4375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2714, + "time": 0.44140625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2714, + "time": 0.44140625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2738, + "time": 0.44531249999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2762, + "time": 0.44921875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2762, + "time": 0.44921875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2786, + "time": 0.453125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.45703124999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4609375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2858, + "time": 0.46484374999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2930, + "time": 0.47656249999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2954, + "time": 0.48046875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2930, + "time": 0.47656249999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2954, + "time": 0.48046875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2978, + "time": 0.48437499999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3002, + "time": 0.48828124999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3002, + "time": 0.48828124999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3026, + "time": 0.4921875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3026, + "time": 0.4921875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3050, + "time": 0.49609374999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3050, + "time": 0.49609374999999994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3074, + "time": 0.5, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.515625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3195, + "time": 0.51953125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3195, + "time": 0.51953125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.5234375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3231, + "time": 0.525390625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3231, + "time": 0.525390625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.52734375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3255, + "time": 0.529296875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3255, + "time": 0.529296875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.546875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3387, + "time": 0.55078125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.55078125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5546875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5546875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3435, + "time": 0.55859375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3435, + "time": 0.55859375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5624999999999999, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3555, + "time": 0.578125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3579, + "time": 0.5820312499999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3001, - "time": 0.48828125000000006, + "noteOrder": 3579, + "time": 0.5820312499999999, "position": { "x": 6, "y": 0 @@ -4037,18 +5348,110 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3603, + "time": 0.5859374999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3651, + "time": 0.59375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 3025, - "time": 0.49218750000000006, + "noteOrder": 3627, + "time": 0.58984375, "position": { - "x": 5, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3651, + "time": 0.59375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3747, + "time": 0.609375, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4065,13 +5468,174 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3819, + "time": 0.62109375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3939, + "time": 0.640625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4011, + "time": 0.65234375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4131, + "time": 0.671875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4203, + "time": 0.6835937499999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4227, + "time": 0.6874999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4299, + "time": 0.69921875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3025, - "time": 0.49218750000000006, + "noteOrder": 4516, + "time": 0.734375, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4088,13 +5652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3049, - "time": 0.49609375000000006, + "noteOrder": 4540, + "time": 0.73828125, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4111,11 +5675,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3049, - "time": 0.49609375000000006, + "noteOrder": 4540, + "time": 0.73828125, "position": { "x": 6, "y": 0 @@ -4129,18 +5693,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 3073, - "time": 0.5000000000000001, + "noteOrder": 4564, + "time": 0.7421875, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4157,11 +5721,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3169, - "time": 0.5156250000000001, + "noteOrder": 4576, + "time": 0.7441406249999999, "position": { "x": 3, "y": 0 @@ -4180,13 +5744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3217, - "time": 0.5234375, + "noteOrder": 4576, + "time": 0.7441406249999999, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4198,16 +5762,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3241, - "time": 0.52734375, + "noteOrder": 4588, + "time": 0.7460937499999999, "position": { "x": 3, "y": 0 @@ -4221,18 +5785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3361, - "time": 0.5468750000000001, + "noteOrder": 4600, + "time": 0.7480468749999999, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4244,18 +5808,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3385, - "time": 0.5507812500000001, + "noteOrder": 4600, + "time": 0.7480468749999999, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4267,18 +5831,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3385, - "time": 0.5507812500000001, + "noteOrder": 4900, + "time": 0.796875, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4290,18 +5854,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3409, - "time": 0.5546875, + "noteOrder": 4924, + "time": 0.80078125, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4313,18 +5877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3409, - "time": 0.5546875, + "noteOrder": 4924, + "time": 0.80078125, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4341,13 +5905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 3433, - "time": 0.55859375, + "noteOrder": 4948, + "time": 0.8046875, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4359,18 +5923,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3433, - "time": 0.55859375, + "noteOrder": 4960, + "time": 0.8066406249999999, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4387,13 +5951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3457, - "time": 0.5625000000000001, + "noteOrder": 4960, + "time": 0.8066406249999999, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4410,11 +5974,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3553, - "time": 0.578125, + "noteOrder": 4972, + "time": 0.8085937499999999, "position": { "x": 7, "y": 0 @@ -4428,18 +5992,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3601, - "time": 0.5859375, + "noteOrder": 4984, + "time": 0.8105468749999999, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4456,13 +6020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3649, - "time": 0.5937500000000001, + "noteOrder": 4984, + "time": 0.8105468749999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4479,13 +6043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3625, - "time": 0.5898437500000001, + "noteOrder": 5236, + "time": 0.8515624999999999, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4502,13 +6066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3649, - "time": 0.5937500000000001, + "noteOrder": 5260, + "time": 0.85546875, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4525,13 +6089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3745, - "time": 0.609375, + "noteOrder": 5236, + "time": 0.8515624999999999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4548,13 +6112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3817, - "time": 0.6210937500000001, + "noteOrder": 5260, + "time": 0.85546875, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4571,11 +6135,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3937, - "time": 0.640625, + "noteOrder": 5284, + "time": 0.859375, "position": { "x": 7, "y": 0 @@ -4594,11 +6158,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4010, - "time": 0.65234375, + "noteOrder": 5308, + "time": 0.86328125, "position": { "x": 7, "y": 0 @@ -4617,13 +6181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4130, - "time": 0.6718750000000001, + "noteOrder": 5308, + "time": 0.86328125, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4635,18 +6199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4202, - "time": 0.68359375, + "noteOrder": 5332, + "time": 0.8671874999999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4658,18 +6222,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4226, - "time": 0.6875000000000001, + "noteOrder": 5332, + "time": 0.8671874999999999, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4686,11 +6250,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 4298, - "time": 0.6992187500000001, + "noteOrder": 5332, + "time": 0.8671874999999999, "position": { "x": 7, "y": 0 @@ -4704,16 +6268,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, - "time": 0.7343750000000001, + "noteOrder": 5356, + "time": 0.8710937499999999, "position": { "x": 7, "y": 0 @@ -4727,18 +6291,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4562, - "time": 0.7421875000000001, + "noteOrder": 5356, + "time": 0.8710937499999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4755,13 +6319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4586, - "time": 0.74609375, + "noteOrder": 5380, + "time": 0.875, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4773,18 +6337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4898, - "time": 0.7968750000000001, + "noteOrder": 5380, + "time": 0.875, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4801,11 +6365,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4946, - "time": 0.8046875000000001, + "noteOrder": 5380, + "time": 0.875, "position": { "x": 7, "y": 0 @@ -4824,11 +6388,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4970, - "time": 0.8085937500000001, + "noteOrder": 5392, + "time": 0.876953125, "position": { "x": 7, "y": 0 @@ -4842,16 +6406,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5234, - "time": 0.8515625, + "noteOrder": 5392, + "time": 0.876953125, "position": { "x": 6, "y": 0 @@ -4870,13 +6434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 5258, - "time": 0.8554687500000001, + "noteOrder": 5404, + "time": 0.87890625, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4888,18 +6452,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5234, - "time": 0.8515625, + "noteOrder": 5416, + "time": 0.880859375, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4916,13 +6480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5258, - "time": 0.8554687500000001, + "noteOrder": 5416, + "time": 0.880859375, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4939,11 +6503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5282, - "time": 0.8593750000000001, + "noteOrder": 5428, + "time": 0.8828125, "position": { "x": 7, "y": 0 @@ -4962,11 +6526,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5330, - "time": 0.8671875000000001, + "noteOrder": 5440, + "time": 0.884765625, "position": { "x": 7, "y": 0 @@ -4980,18 +6544,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5378, - "time": 0.8750000000000001, + "noteOrder": 5440, + "time": 0.884765625, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5008,11 +6572,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5402, - "time": 0.8789062500000001, + "noteOrder": 5452, + "time": 0.8867187499999999, "position": { "x": 7, "y": 0 @@ -5031,11 +6595,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5426, - "time": 0.8828125, + "noteOrder": 5464, + "time": 0.8886718749999999, "position": { "x": 7, "y": 0 @@ -5049,18 +6613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5450, - "time": 0.88671875, + "noteOrder": 5464, + "time": 0.8886718749999999, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5078,10 +6642,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5474, - "time": 0.8906250000000001, + "noteOrder": 5476, + "time": 0.8906249999999999, "position": { "x": 7, "y": 0 @@ -5101,10 +6665,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5498, - "time": 0.8945312500000001, + "noteOrder": 5500, + "time": 0.8945312499999999, "position": { "x": 7, "y": 0 @@ -5124,10 +6688,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5522, - "time": 0.8984375000000001, + "noteOrder": 5524, + "time": 0.8984375, "position": { "x": 3, "y": 0 @@ -5147,10 +6711,10 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5546, - "time": 0.9023437500000001, + "noteOrder": 5548, + "time": 0.90234375, "position": { "x": 3, "y": 0 @@ -5170,10 +6734,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5570, - "time": 0.9062500000000001, + "noteOrder": 5572, + "time": 0.90625, "position": { "x": 7, "y": 0 @@ -5193,10 +6757,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5582, - "time": 0.9082031250000001, + "noteOrder": 5584, + "time": 0.9082031249999999, "position": { "x": 6, "y": 0 @@ -5216,10 +6780,10 @@ }, { "lineGroupId": 202, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5594, - "time": 0.9101562500000001, + "noteOrder": 5596, + "time": 0.9101562499999999, "position": { "x": 7, "y": 0 @@ -5239,10 +6803,10 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5594, - "time": 0.9101562500000001, + "noteOrder": 5596, + "time": 0.9101562499999999, "position": { "x": 3, "y": 0 @@ -5262,10 +6826,10 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5606, - "time": 0.9121093750000001, + "noteOrder": 5608, + "time": 0.9121093749999999, "position": { "x": 4, "y": 0 @@ -5285,10 +6849,10 @@ }, { "lineGroupId": 203, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5618, - "time": 0.9140625000000001, + "noteOrder": 5620, + "time": 0.9140624999999999, "position": { "x": 3, "y": 0 @@ -5308,10 +6872,10 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5618, - "time": 0.9140625000000001, + "noteOrder": 5620, + "time": 0.9140624999999999, "position": { "x": 7, "y": 0 @@ -5331,9 +6895,9 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5630, + "noteOrder": 5632, "time": 0.916015625, "position": { "x": 6, @@ -5354,9 +6918,9 @@ }, { "lineGroupId": 204, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5642, + "noteOrder": 5644, "time": 0.91796875, "position": { "x": 7, @@ -5377,9 +6941,9 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5642, + "noteOrder": 5644, "time": 0.91796875, "position": { "x": 3, @@ -5400,9 +6964,9 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5654, + "noteOrder": 5656, "time": 0.919921875, "position": { "x": 4, @@ -5423,10 +6987,10 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5762, - "time": 0.9375000000000001, + "noteOrder": 5765, + "time": 0.9375, "position": { "x": 4, "y": 0 @@ -5446,10 +7010,10 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5786, - "time": 0.9414062500000001, + "noteOrder": 5789, + "time": 0.94140625, "position": { "x": 5, "y": 0 @@ -5469,10 +7033,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5786, - "time": 0.9414062500000001, + "noteOrder": 5789, + "time": 0.94140625, "position": { "x": 6, "y": 0 @@ -5492,10 +7056,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5810, - "time": 0.9453125000000001, + "noteOrder": 5813, + "time": 0.9453125, "position": { "x": 5, "y": 0 @@ -5515,10 +7079,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5810, - "time": 0.9453125000000001, + "noteOrder": 5813, + "time": 0.9453125, "position": { "x": 4, "y": 0 @@ -5538,10 +7102,10 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5834, - "time": 0.9492187500000001, + "noteOrder": 5837, + "time": 0.9492187499999999, "position": { "x": 5, "y": 0 @@ -5561,10 +7125,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5834, - "time": 0.9492187500000001, + "noteOrder": 5837, + "time": 0.9492187499999999, "position": { "x": 6, "y": 0 @@ -5584,10 +7148,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5858, - "time": 0.953125, + "noteOrder": 5861, + "time": 0.9531249999999999, "position": { "x": 5, "y": 0 diff --git a/tracks/Jumbo Drill/info.json b/tracks/Jumbo Drill/info.json index 42bbf9a3..39885bc9 100644 --- a/tracks/Jumbo Drill/info.json +++ b/tracks/Jumbo Drill/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Jumbo Drill", - "SongLength": "123.820408", + "SongLength": "113.867755", "SongAuthorName": "Nizikawa", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/LIKE A VAMPIRE/293_difficulty_1a.json b/tracks/LIKE A VAMPIRE/293_difficulty_1a.json index 33fae2df..5764b7a4 100644 --- a/tracks/LIKE A VAMPIRE/293_difficulty_1a.json +++ b/tracks/LIKE A VAMPIRE/293_difficulty_1a.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 97, + "noteOrder": 98, "time": 0.007048458149779736, "position": { "x": 7, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 292, + "noteOrder": 293, "time": 0.021145374449339206, "position": { "x": 7, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 487, + "noteOrder": 488, "time": 0.035242290748898675, "position": { "x": 3, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 682, + "noteOrder": 683, "time": 0.04933920704845815, "position": { "x": 3, @@ -314,7 +314,7 @@ }, { "noteOrder": 926, - "time": 0.06696035242290749, + "time": 0.0669603524229075, "position": { "x": 5, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1023, + "noteOrder": 1024, "time": 0.07400881057268723, "position": { "x": 5, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1072, + "noteOrder": 1073, "time": 0.07753303964757709, "position": { "x": 7, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.0881057268722467, "position": { "x": 5, @@ -454,7 +454,7 @@ }, { "noteOrder": 1316, - "time": 0.09515418502202642, + "time": 0.09515418502202644, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1413, - "time": 0.10220264317180616, + "noteOrder": 1414, + "time": 0.10220264317180618, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1462, + "noteOrder": 1463, "time": 0.10572687224669604, "position": { "x": 3, @@ -534,7 +534,7 @@ }, { "noteOrder": 1511, - "time": 0.1092511013215859, + "time": 0.10925110132158591, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1609, "time": 0.11629955947136564, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1657, - "time": 0.1198237885462555, + "noteOrder": 1658, + "time": 0.11982378854625551, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1803, + "noteOrder": 1804, "time": 0.1303964757709251, "position": { "x": 5, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1852, - "time": 0.13392070484581498, + "noteOrder": 1853, + "time": 0.133920704845815, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1901, - "time": 0.13744493392070484, + "time": 0.13744493392070486, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.1409691629955947, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.1444933920704846, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.14801762114537445, "position": { "x": 4, @@ -774,7 +774,7 @@ }, { "noteOrder": 2096, - "time": 0.1515418502202643, + "time": 0.15154185022026434, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.15506607929515417, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2193, + "noteOrder": 2194, "time": 0.15859030837004406, "position": { "x": 8, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2242, + "noteOrder": 2243, "time": 0.16211453744493393, "position": { "x": 5, @@ -854,7 +854,7 @@ }, { "noteOrder": 2291, - "time": 0.1656387665198238, + "time": 0.16563876651982382, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.16916299559471365, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2388, - "time": 0.1726872246696035, + "noteOrder": 2389, + "time": 0.17268722466960354, "position": { "x": 5, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3119, + "noteOrder": 3120, "time": 0.22555066079295155, "position": { "x": 2, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3168, - "time": 0.2290748898678414, + "noteOrder": 3169, + "time": 0.22907488986784144, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3218, "time": 0.23259911894273128, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3265, - "time": 0.23612334801762114, + "noteOrder": 3267, + "time": 0.23612334801762117, "position": { "x": 3, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.239647577092511, + "noteOrder": 3315, + "time": 0.23964757709251103, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3363, - "time": 0.2431718061674009, + "noteOrder": 3364, + "time": 0.24317180616740092, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3412, + "noteOrder": 3413, "time": 0.24669603524229075, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.25022026431718064, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.2537444933920705, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3558, + "noteOrder": 3559, "time": 0.25726872246696036, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3606, + "noteOrder": 3608, "time": 0.2607929515418502, "position": { "x": 5, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.2643171806167401, + "noteOrder": 3657, + "time": 0.26431718061674014, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.26784140969162995, + "noteOrder": 3705, + "time": 0.26784140969163, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3753, - "time": 0.27136563876651987, + "noteOrder": 3754, + "time": 0.2713656387665198, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3801, - "time": 0.2748898678414097, + "noteOrder": 3803, + "time": 0.27488986784140973, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3852, "time": 0.2784140969162996, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3900, "time": 0.2819383259911894, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3948, + "noteOrder": 3949, "time": 0.2854625550660793, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4679, + "noteOrder": 4680, "time": 0.3383259911894273, "position": { "x": 8, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4827, "time": 0.34889867841409694, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4875, "time": 0.3524229074889868, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4922, + "noteOrder": 4924, "time": 0.35594713656387666, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.3594713656387665, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5020, - "time": 0.3629955947136564, + "noteOrder": 5022, + "time": 0.36299559471365644, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5069, + "noteOrder": 5070, "time": 0.36651982378854625, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5117, + "noteOrder": 5119, "time": 0.37004405286343617, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5605, + "noteOrder": 5607, "time": 0.40528634361233484, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5653, - "time": 0.40881057268722465, + "noteOrder": 5656, + "time": 0.4088105726872247, "position": { "x": 5, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5702, + "noteOrder": 5704, "time": 0.41233480176211457, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5751, + "noteOrder": 5753, "time": 0.41585903083700443, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5800, - "time": 0.4193832599118943, + "noteOrder": 5802, + "time": 0.41938325991189435, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5848, + "noteOrder": 5851, "time": 0.42290748898678415, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5897, + "noteOrder": 5899, "time": 0.426431718061674, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 6387, "time": 0.4616740088105727, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6433, + "noteOrder": 6436, "time": 0.46519823788546255, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6482, + "noteOrder": 6484, "time": 0.46872246696035247, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6531, - "time": 0.4722466960352423, + "noteOrder": 6533, + "time": 0.47224669603524233, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6579, + "noteOrder": 6582, "time": 0.4757709251101322, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6628, - "time": 0.479295154185022, + "noteOrder": 6631, + "time": 0.47929515418502205, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6677, + "noteOrder": 6679, "time": 0.4828193832599119, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6774, + "noteOrder": 6777, "time": 0.48986784140969164, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6823, + "noteOrder": 6826, "time": 0.4933920704845815, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6872, - "time": 0.49691629955947136, + "noteOrder": 6874, + "time": 0.4969162995594714, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6921, + "noteOrder": 6923, "time": 0.5004405286343613, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6969, - "time": 0.5039647577092511, + "noteOrder": 6972, + "time": 0.5039647577092512, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 7018, + "noteOrder": 7021, "time": 0.507488986784141, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7067, - "time": 0.5110132158590308, + "noteOrder": 7069, + "time": 0.5110132158590309, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 7164, - "time": 0.5180616740088105, + "noteOrder": 7167, + "time": 0.5180616740088106, "position": { "x": 7, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7213, + "noteOrder": 7216, "time": 0.5215859030837005, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7262, - "time": 0.5251101321585904, + "noteOrder": 7264, + "time": 0.5251101321585903, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 7310, - "time": 0.5286343612334802, + "noteOrder": 7313, + "time": 0.5286343612334803, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7359, - "time": 0.53215859030837, + "noteOrder": 7362, + "time": 0.5321585903083701, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 7408, - "time": 0.5356828193832599, + "noteOrder": 7411, + "time": 0.53568281938326, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 7457, + "noteOrder": 7459, "time": 0.5392070484581498, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7944, + "noteOrder": 7947, "time": 0.5744493392070485, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 7993, + "noteOrder": 7996, "time": 0.5779735682819384, "position": { "x": 5, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 8041, - "time": 0.5814977973568283, + "noteOrder": 8045, + "time": 0.5814977973568282, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 8090, + "noteOrder": 8093, "time": 0.5850220264317181, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 8139, + "noteOrder": 8142, "time": 0.588546255506608, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 8188, + "noteOrder": 8191, "time": 0.5920704845814978, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 8236, + "noteOrder": 8240, "time": 0.5955947136563877, "position": { "x": 3, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 8334, + "noteOrder": 8337, "time": 0.6026431718061674, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 8383, - "time": 0.6061674008810573, + "noteOrder": 8386, + "time": 0.6061674008810574, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 8431, + "noteOrder": 8435, "time": 0.6096916299559472, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 8480, + "noteOrder": 8483, "time": 0.6132158590308371, "position": { "x": 6, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 8529, - "time": 0.616740088105727, + "noteOrder": 8532, + "time": 0.6167400881057269, "position": { "x": 6, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 8578, + "noteOrder": 8581, "time": 0.6202643171806167, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 8626, + "noteOrder": 8630, "time": 0.6237885462555066, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 8675, + "noteOrder": 8678, "time": 0.6273127753303965, "position": { "x": 8, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 8724, + "noteOrder": 8727, "time": 0.6308370044052865, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 8773, + "noteOrder": 8776, "time": 0.6343612334801763, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 8821, + "noteOrder": 8825, "time": 0.6378854625550661, "position": { "x": 5, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 8870, + "noteOrder": 8873, "time": 0.641409691629956, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 8919, + "noteOrder": 8922, "time": 0.6449339207048459, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 8967, + "noteOrder": 8971, "time": 0.6484581497797357, "position": { "x": 6, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 9016, + "noteOrder": 9020, "time": 0.6519823788546256, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 9065, + "noteOrder": 9068, "time": 0.6555066079295154, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 9114, + "noteOrder": 9117, "time": 0.6590308370044053, "position": { "x": 3, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 9162, - "time": 0.6625550660792952, + "noteOrder": 9166, + "time": 0.6625550660792953, "position": { "x": 5, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 9211, + "noteOrder": 9215, "time": 0.6660792951541851, "position": { "x": 2, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 9260, + "noteOrder": 9263, "time": 0.669603524229075, "position": { "x": 5, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 9309, + "noteOrder": 9312, "time": 0.6731277533039648, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 9357, + "noteOrder": 9361, "time": 0.6766519823788546, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 9504, + "noteOrder": 9507, "time": 0.6872246696035244, "position": { "x": 5, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 9552, - "time": 0.690748898678414, + "noteOrder": 9556, + "time": 0.6907488986784142, "position": { "x": 3, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 9601, + "noteOrder": 9605, "time": 0.694273127753304, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 9650, + "noteOrder": 9653, "time": 0.6977973568281939, "position": { "x": 3, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 9699, + "noteOrder": 9702, "time": 0.7013215859030838, "position": { "x": 5, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 9747, + "noteOrder": 9751, "time": 0.7048458149779736, "position": { "x": 3, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 9796, - "time": 0.7083700440528634, + "noteOrder": 9800, + "time": 0.7083700440528635, "position": { "x": 5, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 9893, - "time": 0.7154185022026432, + "noteOrder": 9897, + "time": 0.7154185022026431, "position": { "x": 5, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 9942, + "noteOrder": 9946, "time": 0.718942731277533, "position": { "x": 7, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 9991, + "noteOrder": 9995, "time": 0.722466960352423, "position": { "x": 5, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 10040, - "time": 0.7259911894273128, + "noteOrder": 10043, + "time": 0.7259911894273129, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 10088, + "noteOrder": 10092, "time": 0.7295154185022027, "position": { "x": 5, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 10137, + "noteOrder": 10141, "time": 0.7330396475770925, "position": { "x": 7, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 10186, + "noteOrder": 10190, "time": 0.7365638766519824, "position": { "x": 5, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 10235, + "noteOrder": 10238, "time": 0.7400881057268723, "position": { "x": 6, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 10283, + "noteOrder": 10287, "time": 0.7436123348017621, "position": { "x": 4, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 10332, - "time": 0.747136563876652, + "noteOrder": 10336, + "time": 0.7471365638766521, "position": { "x": 3, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 10381, + "noteOrder": 10385, "time": 0.7506607929515419, "position": { "x": 5, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 10430, + "noteOrder": 10434, "time": 0.7541850220264318, "position": { "x": 7, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 10478, - "time": 0.7577092511013217, + "noteOrder": 10482, + "time": 0.7577092511013216, "position": { "x": 5, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 10527, - "time": 0.7612334801762114, + "noteOrder": 10531, + "time": 0.7612334801762115, "position": { "x": 3, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 10576, - "time": 0.7647577092511013, + "noteOrder": 10580, + "time": 0.7647577092511014, "position": { "x": 5, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 10625, + "noteOrder": 10629, "time": 0.7682819383259912, "position": { "x": 7, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 10673, - "time": 0.7718061674008811, + "noteOrder": 10677, + "time": 0.771806167400881, "position": { "x": 5, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 10722, + "noteOrder": 10726, "time": 0.775330396475771, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 10771, - "time": 0.7788546255506608, + "noteOrder": 10775, + "time": 0.7788546255506609, "position": { "x": 5, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 11209, + "noteOrder": 11214, "time": 0.8105726872246697, "position": { "x": 6, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 11258, - "time": 0.8140969162995596, + "noteOrder": 11262, + "time": 0.8140969162995595, "position": { "x": 4, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 11307, - "time": 0.8176211453744493, + "noteOrder": 11311, + "time": 0.8176211453744494, "position": { "x": 6, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 12087, - "time": 0.8740088105726872, + "noteOrder": 12091, + "time": 0.8740088105726873, "position": { "x": 8, "y": 0 @@ -3176,9 +3176,9 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 877, + "noteOrder": 878, "time": 0.06343612334801763, "position": { "x": 4, @@ -3199,10 +3199,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 926, - "time": 0.06696035242290749, + "time": 0.0669603524229075, "position": { "x": 3, "y": 0 @@ -3222,7 +3222,7 @@ }, { "lineGroupId": 17, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 975, "time": 0.07048458149779735, @@ -3245,9 +3245,9 @@ }, { "lineGroupId": 17, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1023, + "noteOrder": 1024, "time": 0.07400881057268723, "position": { "x": 3, @@ -3268,9 +3268,9 @@ }, { "lineGroupId": 17, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1072, + "noteOrder": 1073, "time": 0.07753303964757709, "position": { "x": 4, @@ -3291,7 +3291,7 @@ }, { "lineGroupId": 17, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1121, "time": 0.08105726872246696, @@ -3314,7 +3314,7 @@ }, { "lineGroupId": 17, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1170, "time": 0.08458149779735682, @@ -3337,9 +3337,9 @@ }, { "lineGroupId": 17, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.0881057268722467, "position": { "x": 3, @@ -3360,9 +3360,9 @@ }, { "lineGroupId": 17, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1267, + "noteOrder": 1268, "time": 0.09162995594713656, "position": { "x": 4, @@ -3383,9 +3383,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1267, + "noteOrder": 1268, "time": 0.09162995594713656, "position": { "x": 6, @@ -3406,10 +3406,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1316, - "time": 0.09515418502202642, + "time": 0.09515418502202644, "position": { "x": 7, "y": 0 @@ -3429,7 +3429,7 @@ }, { "lineGroupId": 25, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1365, "time": 0.0986784140969163, @@ -3452,10 +3452,10 @@ }, { "lineGroupId": 25, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1413, - "time": 0.10220264317180616, + "noteOrder": 1414, + "time": 0.10220264317180618, "position": { "x": 7, "y": 0 @@ -3475,9 +3475,9 @@ }, { "lineGroupId": 25, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1462, + "noteOrder": 1463, "time": 0.10572687224669604, "position": { "x": 6, @@ -3498,10 +3498,10 @@ }, { "lineGroupId": 25, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1511, - "time": 0.1092511013215859, + "time": 0.10925110132158591, "position": { "x": 7, "y": 0 @@ -3521,7 +3521,7 @@ }, { "lineGroupId": 25, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1560, "time": 0.11277533039647578, @@ -3544,9 +3544,9 @@ }, { "lineGroupId": 25, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1608, + "noteOrder": 1609, "time": 0.11629955947136564, "position": { "x": 7, @@ -3567,10 +3567,10 @@ }, { "lineGroupId": 25, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1657, - "time": 0.1198237885462555, + "noteOrder": 1658, + "time": 0.11982378854625551, "position": { "x": 6, "y": 0 @@ -3590,9 +3590,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.1762114537444934, "position": { "x": 2, @@ -3612,11 +3612,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2486, - "time": 0.17973568281938326, + "noteOrder": 2462, + "time": 0.17797356828193833, "position": { "x": 2, "y": 0 @@ -3630,18 +3630,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2534, - "time": 0.18325991189427313, + "noteOrder": 2462, + "time": 0.17797356828193833, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3658,11 +3658,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2583, - "time": 0.186784140969163, + "noteOrder": 2486, + "time": 0.17973568281938326, "position": { "x": 2, "y": 0 @@ -3681,11 +3681,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2632, - "time": 0.19030837004405285, + "noteOrder": 2511, + "time": 0.18149779735682822, "position": { "x": 2, "y": 0 @@ -3699,18 +3699,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2680, - "time": 0.19383259911894274, + "noteOrder": 2511, + "time": 0.18149779735682822, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3727,11 +3727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2729, - "time": 0.1973568281938326, + "noteOrder": 2535, + "time": 0.18325991189427313, "position": { "x": 2, "y": 0 @@ -3750,11 +3750,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2778, - "time": 0.20088105726872246, + "noteOrder": 2560, + "time": 0.18502202643171808, "position": { "x": 2, "y": 0 @@ -3768,18 +3768,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2827, - "time": 0.20440528634361232, + "noteOrder": 2560, + "time": 0.18502202643171808, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3796,11 +3796,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2875, - "time": 0.20792951541850221, + "noteOrder": 2584, + "time": 0.18678414096916302, "position": { "x": 2, "y": 0 @@ -3819,11 +3819,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2924, - "time": 0.21145374449339208, + "noteOrder": 2608, + "time": 0.18854625550660795, "position": { "x": 2, "y": 0 @@ -3837,18 +3837,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2973, - "time": 0.21497797356828194, + "noteOrder": 2608, + "time": 0.18854625550660795, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3865,11 +3865,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3022, - "time": 0.2185022026431718, + "noteOrder": 2633, + "time": 0.19030837004405288, "position": { "x": 2, "y": 0 @@ -3888,11 +3888,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3070, - "time": 0.22202643171806166, + "noteOrder": 2657, + "time": 0.1920704845814978, "position": { "x": 2, "y": 0 @@ -3906,18 +3906,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3996, - "time": 0.2889867841409692, + "noteOrder": 2657, + "time": 0.1920704845814978, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3929,18 +3929,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4045, - "time": 0.29251101321585904, + "noteOrder": 2682, + "time": 0.19383259911894274, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3952,18 +3952,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4094, - "time": 0.2960352422907489, + "noteOrder": 2706, + "time": 0.1955947136563877, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3980,13 +3980,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4143, - "time": 0.2995594713656388, + "noteOrder": 2706, + "time": 0.1955947136563877, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3998,18 +3998,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4191, - "time": 0.3030837004405286, + "noteOrder": 2730, + "time": 0.1973568281938326, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4021,18 +4021,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4240, - "time": 0.30660792951541854, + "noteOrder": 2755, + "time": 0.19911894273127753, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4049,13 +4049,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4289, - "time": 0.31013215859030835, + "noteOrder": 2755, + "time": 0.19911894273127753, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4067,18 +4067,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4338, - "time": 0.31365638766519827, + "noteOrder": 2779, + "time": 0.2008810572687225, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4090,18 +4090,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4386, - "time": 0.31718061674008813, + "noteOrder": 2803, + "time": 0.20264317180616742, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4118,13 +4118,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4435, - "time": 0.320704845814978, + "noteOrder": 2803, + "time": 0.20264317180616742, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4136,18 +4136,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4484, - "time": 0.32422907488986785, + "noteOrder": 2828, + "time": 0.20440528634361235, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4159,18 +4159,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4532, - "time": 0.3277533039647577, + "noteOrder": 2852, + "time": 0.20616740088105728, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4187,13 +4187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4581, - "time": 0.3312775330396476, + "noteOrder": 2852, + "time": 0.20616740088105728, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4205,18 +4205,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4630, - "time": 0.3348017621145375, + "noteOrder": 2877, + "time": 0.20792951541850221, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4228,18 +4228,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4776, - "time": 0.345374449339207, + "noteOrder": 2901, + "time": 0.20969162995594717, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4256,13 +4256,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5166, - "time": 0.373568281938326, + "noteOrder": 2901, + "time": 0.20969162995594717, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4279,11 +4279,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5556, - "time": 0.4017621145374449, + "noteOrder": 2925, + "time": 0.21145374449339208, "position": { "x": 2, "y": 0 @@ -4302,13 +4302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5946, - "time": 0.4299559471365639, + "noteOrder": 2950, + "time": 0.213215859030837, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4325,13 +4325,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6336, - "time": 0.4581497797356828, + "noteOrder": 2950, + "time": 0.213215859030837, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4348,13 +4348,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 6726, - "time": 0.4863436123348018, + "noteOrder": 2974, + "time": 0.21497797356828197, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4366,18 +4366,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6726, - "time": 0.4863436123348018, + "noteOrder": 2998, + "time": 0.21674008810572687, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4394,13 +4394,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7116, - "time": 0.5145374449339207, + "noteOrder": 2998, + "time": 0.21674008810572687, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4417,13 +4417,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7116, - "time": 0.5145374449339207, + "noteOrder": 3023, + "time": 0.21850220264317183, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4440,13 +4440,2474 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3047, + "time": 0.22026431718061676, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3047, + "time": 0.22026431718061676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3072, + "time": 0.2220264317180617, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3096, + "time": 0.22378854625550662, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3096, + "time": 0.22378854625550662, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3998, + "time": 0.2889867841409692, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4022, + "time": 0.2907488986784141, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4022, + "time": 0.2907488986784141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4047, + "time": 0.29251101321585904, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4071, + "time": 0.294273127753304, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4071, + "time": 0.294273127753304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4095, + "time": 0.2960352422907489, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4120, + "time": 0.29779735682819386, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4120, + "time": 0.29779735682819386, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4144, + "time": 0.29955947136563876, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4169, + "time": 0.3013215859030837, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4169, + "time": 0.3013215859030837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4193, + "time": 0.3030837004405287, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4217, + "time": 0.3048458149779736, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4217, + "time": 0.3048458149779736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4242, + "time": 0.30660792951541854, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4266, + "time": 0.30837004405286345, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4266, + "time": 0.30837004405286345, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4290, + "time": 0.31013215859030835, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4315, + "time": 0.3118942731277533, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4315, + "time": 0.3118942731277533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4339, + "time": 0.31365638766519827, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4364, + "time": 0.3154185022026432, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4364, + "time": 0.3154185022026432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4388, + "time": 0.31718061674008813, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4412, + "time": 0.31894273127753303, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4412, + "time": 0.31894273127753303, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4437, + "time": 0.320704845814978, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4461, + "time": 0.32246696035242295, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4461, + "time": 0.32246696035242295, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4485, + "time": 0.32422907488986785, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4510, + "time": 0.3259911894273128, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4510, + "time": 0.3259911894273128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4534, + "time": 0.3277533039647577, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4559, + "time": 0.3295154185022027, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4559, + "time": 0.3295154185022027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4583, + "time": 0.33127753303964763, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4607, + "time": 0.33303964757709253, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4607, + "time": 0.33303964757709253, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.3348017621145375, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4656, + "time": 0.3365638766519824, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4656, + "time": 0.3365638766519824, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4778, + "time": 0.3453744493392071, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5168, + "time": 0.37356828193832603, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5558, + "time": 0.401762114537445, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5948, + "time": 0.42995594713656393, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6338, + "time": 0.4581497797356829, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6728, + "time": 0.48634361233480183, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6728, + "time": 0.48634361233480183, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7118, + "time": 0.5145374449339207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7118, + "time": 0.5145374449339207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7508, + "time": 0.5427312775330396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7508, + "time": 0.5427312775330396, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7557, + "time": 0.5462555066079295, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7606, + "time": 0.5497797356828195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7654, + "time": 0.5533039647577093, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7703, + "time": 0.5568281938325992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7801, + "time": 0.5638766519823788, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7703, + "time": 0.5568281938325992, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7801, + "time": 0.5638766519823788, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7898, + "time": 0.5709251101321586, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8288, + "time": 0.5991189427312775, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8288, + "time": 0.5991189427312775, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8678, + "time": 0.6273127753303965, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9458, + "time": 0.6837004405286344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9507, + "time": 0.6872246696035244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9556, + "time": 0.6907488986784142, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 9605, + "time": 0.694273127753304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 9653, + "time": 0.6977973568281939, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 9702, + "time": 0.7013215859030838, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 9751, + "time": 0.7048458149779736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 9800, + "time": 0.7083700440528635, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 9848, + "time": 0.7118942731277533, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9848, + "time": 0.7118942731277533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9897, + "time": 0.7154185022026431, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 9946, + "time": 0.718942731277533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 9995, + "time": 0.722466960352423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 10043, + "time": 0.7259911894273129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 10092, + "time": 0.7295154185022027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 10141, + "time": 0.7330396475770925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 10190, + "time": 0.7365638766519824, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 10238, + "time": 0.7400881057268723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 10824, + "time": 0.7823788546255508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 10921, + "time": 0.7894273127753304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 10824, + "time": 0.7823788546255508, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 10921, + "time": 0.7894273127753304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11409, + "time": 0.8246696035242291, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 11433, + "time": 0.826431718061674, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11433, + "time": 0.826431718061674, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11457, + "time": 0.8281938325991189, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 11482, + "time": 0.829955947136564, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11482, + "time": 0.829955947136564, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11506, + "time": 0.8317180616740089, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 11530, + "time": 0.8334801762114538, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11530, + "time": 0.8334801762114538, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11555, + "time": 0.8352422907488988, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 11579, + "time": 0.8370044052863437, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11579, + "time": 0.8370044052863437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11604, + "time": 0.8387665198237887, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 11628, + "time": 0.8405286343612336, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11628, + "time": 0.8405286343612336, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11652, + "time": 0.8422907488986785, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7505, - "time": 0.5427312775330397, + "noteOrder": 11677, + "time": 0.8440528634361234, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4463,13 +6924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7505, - "time": 0.5427312775330397, + "noteOrder": 11677, + "time": 0.8440528634361234, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4481,18 +6942,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 7554, - "time": 0.5462555066079294, + "noteOrder": 11701, + "time": 0.8458149779735683, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4509,13 +6970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7603, - "time": 0.5497797356828193, + "noteOrder": 11726, + "time": 0.8475770925110132, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4527,18 +6988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7652, - "time": 0.5533039647577093, + "noteOrder": 11726, + "time": 0.8475770925110132, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4550,18 +7011,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7700, - "time": 0.5568281938325992, + "noteOrder": 11750, + "time": 0.8493392070484582, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4578,13 +7039,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7798, - "time": 0.5638766519823788, + "noteOrder": 11774, + "time": 0.8511013215859031, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4601,11 +7062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7700, - "time": 0.5568281938325992, + "noteOrder": 11774, + "time": 0.8511013215859031, "position": { "x": 7, "y": 0 @@ -4619,18 +7080,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 226, "indexInLine": 1, "isSliding": false, - "noteOrder": 7798, - "time": 0.5638766519823788, + "noteOrder": 11799, + "time": 0.852863436123348, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4647,11 +7108,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7895, - "time": 0.5709251101321586, + "noteOrder": 11823, + "time": 0.854625550660793, "position": { "x": 8, "y": 0 @@ -4670,13 +7131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8285, - "time": 0.5991189427312776, + "noteOrder": 11823, + "time": 0.854625550660793, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4693,13 +7154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8285, - "time": 0.5991189427312776, + "noteOrder": 11847, + "time": 0.856387665198238, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4716,13 +7177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8675, - "time": 0.6273127753303965, + "noteOrder": 11872, + "time": 0.858149779735683, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4739,13 +7200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9455, - "time": 0.6837004405286344, + "noteOrder": 11872, + "time": 0.858149779735683, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4757,18 +7218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 228, "indexInLine": 1, "isSliding": false, - "noteOrder": 9504, - "time": 0.6872246696035244, + "noteOrder": 11896, + "time": 0.8599118942731279, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4785,13 +7246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 228, "indexInLine": 2, "isSliding": false, - "noteOrder": 9552, - "time": 0.690748898678414, + "noteOrder": 11921, + "time": 0.8616740088105728, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4808,11 +7269,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 228, "indexInLine": 3, "isSliding": false, - "noteOrder": 9601, - "time": 0.694273127753304, + "noteOrder": 11921, + "time": 0.8616740088105728, "position": { "x": 7, "y": 0 @@ -4831,13 +7292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 4, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9650, - "time": 0.6977973568281939, + "noteOrder": 11945, + "time": 0.8634361233480177, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4849,16 +7310,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 5, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9699, - "time": 0.7013215859030838, + "noteOrder": 11969, + "time": 0.8651982378854626, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 11969, + "time": 0.8651982378854626, "position": { "x": 7, "y": 0 @@ -4872,18 +7356,41 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11994, + "time": 0.8669603524229075, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 6, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9747, - "time": 0.7048458149779736, + "noteOrder": 12018, + "time": 0.8687224669603525, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4900,11 +7407,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 7, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9796, - "time": 0.7083700440528634, + "noteOrder": 12018, + "time": 0.8687224669603525, "position": { "x": 7, "y": 0 @@ -4923,13 +7430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 8, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9845, - "time": 0.7118942731277533, + "noteOrder": 12042, + "time": 0.8704845814977974, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4941,18 +7448,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9845, - "time": 0.7118942731277533, + "noteOrder": 12067, + "time": 0.8722466960352423, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4969,13 +7476,36 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 12067, + "time": 0.8722466960352423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, "indexInLine": 1, "isSliding": false, - "noteOrder": 9893, - "time": 0.7154185022026432, + "noteOrder": 12189, + "time": 0.881057268722467, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4992,13 +7522,59 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 233, "indexInLine": 2, "isSliding": false, - "noteOrder": 9942, - "time": 0.718942731277533, + "noteOrder": 12213, + "time": 0.8828193832599119, "position": { - "x": 4, + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 12213, + "time": 0.8828193832599119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 12237, + "time": 0.8845814977973568, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -5010,18 +7586,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 3, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9991, - "time": 0.722466960352423, + "noteOrder": 12262, + "time": 0.8863436123348019, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5033,18 +7609,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 4, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 10040, - "time": 0.7259911894273128, + "noteOrder": 12262, + "time": 0.8863436123348019, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5056,18 +7632,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 5, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 10088, - "time": 0.7295154185022027, + "noteOrder": 12286, + "time": 0.8881057268722468, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5084,13 +7660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 6, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 10137, - "time": 0.7330396475770925, + "noteOrder": 12311, + "time": 0.8898678414096917, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5107,11 +7683,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 7, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 10186, - "time": 0.7365638766519824, + "noteOrder": 12311, + "time": 0.8898678414096917, "position": { "x": 3, "y": 0 @@ -5130,13 +7706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 8, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 10235, - "time": 0.7400881057268723, + "noteOrder": 12335, + "time": 0.8916299559471366, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5148,18 +7724,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 10819, - "time": 0.7823788546255507, + "noteOrder": 12359, + "time": 0.8933920704845816, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5176,13 +7752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 10917, - "time": 0.7894273127753304, + "noteOrder": 12359, + "time": 0.8933920704845816, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5199,13 +7775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 10819, - "time": 0.7823788546255507, + "noteOrder": 12384, + "time": 0.8951541850220265, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5222,13 +7798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 10917, - "time": 0.7894273127753304, + "noteOrder": 12408, + "time": 0.8969162995594715, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5245,13 +7821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11404, - "time": 0.8246696035242291, + "noteOrder": 12408, + "time": 0.8969162995594715, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5263,18 +7839,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11453, - "time": 0.828193832599119, + "noteOrder": 12432, + "time": 0.8986784140969164, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5286,18 +7862,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11502, - "time": 0.8317180616740089, + "noteOrder": 12457, + "time": 0.9004405286343613, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5314,13 +7890,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11551, - "time": 0.8352422907488987, + "noteOrder": 12457, + "time": 0.9004405286343613, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5332,18 +7908,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11599, - "time": 0.8387665198237886, + "noteOrder": 12481, + "time": 0.9022026431718062, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5355,18 +7931,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11648, - "time": 0.8422907488986785, + "noteOrder": 12506, + "time": 0.9039647577092511, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5383,13 +7959,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11697, - "time": 0.8458149779735683, + "noteOrder": 12506, + "time": 0.9039647577092511, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5401,18 +7977,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11745, - "time": 0.8493392070484582, + "noteOrder": 12530, + "time": 0.9057268722466961, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5424,18 +8000,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11794, - "time": 0.852863436123348, + "noteOrder": 12554, + "time": 0.907488986784141, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5452,13 +8028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11843, - "time": 0.856387665198238, + "noteOrder": 12554, + "time": 0.907488986784141, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5470,18 +8046,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11892, - "time": 0.8599118942731278, + "noteOrder": 12579, + "time": 0.9092511013215859, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5493,18 +8069,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11940, - "time": 0.8634361233480177, + "noteOrder": 12603, + "time": 0.9110132158590308, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5521,13 +8097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11989, - "time": 0.8669603524229076, + "noteOrder": 12603, + "time": 0.9110132158590308, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5539,18 +8115,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12038, - "time": 0.8704845814977974, + "noteOrder": 12627, + "time": 0.9127753303964758, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5562,16 +8138,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12184, - "time": 0.881057268722467, + "noteOrder": 12652, + "time": 0.9145374449339209, "position": { "x": 2, "y": 0 @@ -5585,18 +8161,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12233, - "time": 0.884581497797357, + "noteOrder": 12652, + "time": 0.9145374449339209, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5613,11 +8189,11 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12282, - "time": 0.8881057268722466, + "noteOrder": 12676, + "time": 0.9162995594713658, "position": { "x": 2, "y": 0 @@ -5636,11 +8212,11 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12330, - "time": 0.8916299559471366, + "noteOrder": 12701, + "time": 0.9180616740088107, "position": { "x": 2, "y": 0 @@ -5654,18 +8230,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12379, - "time": 0.8951541850220265, + "noteOrder": 12701, + "time": 0.9180616740088107, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5682,11 +8258,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12428, - "time": 0.8986784140969164, + "noteOrder": 12725, + "time": 0.9198237885462556, "position": { "x": 2, "y": 0 @@ -5705,11 +8281,11 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12476, - "time": 0.9022026431718062, + "noteOrder": 12749, + "time": 0.9215859030837005, "position": { "x": 2, "y": 0 @@ -5723,18 +8299,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12525, - "time": 0.905726872246696, + "noteOrder": 12749, + "time": 0.9215859030837005, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5751,11 +8327,11 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12574, - "time": 0.9092511013215859, + "noteOrder": 12774, + "time": 0.9233480176211454, "position": { "x": 2, "y": 0 @@ -5774,11 +8350,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12623, - "time": 0.9127753303964758, + "noteOrder": 12798, + "time": 0.9251101321585904, "position": { "x": 2, "y": 0 @@ -5792,18 +8368,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12671, - "time": 0.9162995594713657, + "noteOrder": 12798, + "time": 0.9251101321585904, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5820,11 +8396,11 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12720, - "time": 0.9198237885462556, + "noteOrder": 12822, + "time": 0.9268722466960353, "position": { "x": 2, "y": 0 @@ -5843,11 +8419,11 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12769, - "time": 0.9233480176211454, + "noteOrder": 12847, + "time": 0.9286343612334802, "position": { "x": 2, "y": 0 @@ -5861,18 +8437,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12818, - "time": 0.9268722466960353, + "noteOrder": 12847, + "time": 0.9286343612334802, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5890,9 +8466,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12866, + "noteOrder": 12871, "time": 0.9303964757709251, "position": { "x": 3, @@ -5913,9 +8489,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 13549, + "noteOrder": 13554, "time": 0.9797356828193833, "position": { "x": 3, @@ -5936,10 +8512,10 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12915, - "time": 0.933920704845815, + "noteOrder": 12920, + "time": 0.9339207048458151, "position": { "x": 7, "y": 0 @@ -5959,9 +8535,9 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 13549, + "noteOrder": 13554, "time": 0.9797356828193833, "position": { "x": 7, diff --git a/tracks/LIKE A VAMPIRE/293_difficulty_1b.json b/tracks/LIKE A VAMPIRE/293_difficulty_1b.json index 5eb44214..9e9e7094 100644 --- a/tracks/LIKE A VAMPIRE/293_difficulty_1b.json +++ b/tracks/LIKE A VAMPIRE/293_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 97, + "noteOrder": 98, "time": 0.007048458149779736, "position": { "x": 6, @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 292, + "noteOrder": 293, "time": 0.021145374449339206, "position": { "x": 7, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 487, + "noteOrder": 488, "time": 0.035242290748898675, "position": { "x": 7, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 682, + "noteOrder": 683, "time": 0.04933920704845815, "position": { "x": 4, @@ -194,7 +194,7 @@ }, { "noteOrder": 829, - "time": 0.05991189427312775, + "time": 0.05991189427312776, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 878, "time": 0.06343612334801763, "position": { "x": 6, @@ -234,7 +234,7 @@ }, { "noteOrder": 926, - "time": 0.06696035242290749, + "time": 0.0669603524229075, "position": { "x": 4, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1072, + "noteOrder": 1073, "time": 0.07753303964757709, "position": { "x": 5, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1267, + "noteOrder": 1268, "time": 0.09162995594713656, "position": { "x": 6, @@ -354,7 +354,7 @@ }, { "noteOrder": 1316, - "time": 0.09515418502202642, + "time": 0.09515418502202644, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1462, + "noteOrder": 1463, "time": 0.10572687224669604, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 1511, - "time": 0.1092511013215859, + "time": 0.10925110132158591, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.1409691629955947, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.15506607929515417, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.16916299559471365, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3218, "time": 0.23259911894273128, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3265, - "time": 0.23612334801762114, + "noteOrder": 3267, + "time": 0.23612334801762117, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.239647577092511, + "noteOrder": 3315, + "time": 0.23964757709251103, "position": { "x": 5, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3412, + "noteOrder": 3413, "time": 0.24669603524229075, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.25022026431718064, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.2537444933920705, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3606, + "noteOrder": 3608, "time": 0.2607929515418502, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.2643171806167401, + "noteOrder": 3657, + "time": 0.26431718061674014, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.26784140969162995, + "noteOrder": 3705, + "time": 0.26784140969163, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3801, - "time": 0.2748898678414097, + "noteOrder": 3803, + "time": 0.27488986784140973, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3852, "time": 0.2784140969162996, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3900, "time": 0.2819383259911894, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4776, - "time": 0.345374449339207, + "noteOrder": 4778, + "time": 0.3453744493392071, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4827, "time": 0.34889867841409694, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4875, "time": 0.3524229074889868, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.3594713656387665, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5020, - "time": 0.3629955947136564, + "noteOrder": 5022, + "time": 0.36299559471365644, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5069, + "noteOrder": 5070, "time": 0.36651982378854625, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5166, - "time": 0.373568281938326, + "noteOrder": 5168, + "time": 0.37356828193832603, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5166, - "time": 0.373568281938326, + "noteOrder": 5168, + "time": 0.37356828193832603, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5264, - "time": 0.3806167400881057, + "noteOrder": 5266, + "time": 0.38061674008810575, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5264, - "time": 0.3806167400881057, + "noteOrder": 5266, + "time": 0.38061674008810575, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5361, + "noteOrder": 5363, "time": 0.3876651982378855, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5361, + "noteOrder": 5363, "time": 0.3876651982378855, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5458, + "noteOrder": 5461, "time": 0.3947136563876652, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5653, - "time": 0.40881057268722465, + "noteOrder": 5656, + "time": 0.4088105726872247, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5848, + "noteOrder": 5851, "time": 0.42290748898678415, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6043, - "time": 0.4370044052863436, + "noteOrder": 6046, + "time": 0.43700440528634366, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6238, + "noteOrder": 6241, "time": 0.4511013215859031, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6921, + "noteOrder": 6923, "time": 0.5004405286343613, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6969, - "time": 0.5039647577092511, + "noteOrder": 6972, + "time": 0.5039647577092512, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 7262, - "time": 0.5251101321585904, + "noteOrder": 7264, + "time": 0.5251101321585903, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 7603, - "time": 0.5497797356828193, + "noteOrder": 7606, + "time": 0.5497797356828195, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 7700, + "noteOrder": 7703, "time": 0.5568281938325992, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 7749, - "time": 0.5603524229074891, + "noteOrder": 7752, + "time": 0.560352422907489, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 9552, - "time": 0.690748898678414, + "noteOrder": 9556, + "time": 0.6907488986784142, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 9747, + "noteOrder": 9751, "time": 0.7048458149779736, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 9942, + "noteOrder": 9946, "time": 0.718942731277533, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 10137, + "noteOrder": 10141, "time": 0.7330396475770925, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 10235, + "noteOrder": 10238, "time": 0.7400881057268723, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 10283, + "noteOrder": 10287, "time": 0.7436123348017621, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 10332, - "time": 0.747136563876652, + "noteOrder": 10336, + "time": 0.7471365638766521, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 10430, + "noteOrder": 10434, "time": 0.7541850220264318, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 10478, - "time": 0.7577092511013217, + "noteOrder": 10482, + "time": 0.7577092511013216, "position": { "x": 5, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 10527, - "time": 0.7612334801762114, + "noteOrder": 10531, + "time": 0.7612334801762115, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 10625, + "noteOrder": 10629, "time": 0.7682819383259912, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 10673, - "time": 0.7718061674008811, + "noteOrder": 10677, + "time": 0.771806167400881, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 10722, + "noteOrder": 10726, "time": 0.775330396475771, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 10771, - "time": 0.7788546255506608, + "noteOrder": 10775, + "time": 0.7788546255506609, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 10819, - "time": 0.7823788546255507, + "noteOrder": 10824, + "time": 0.7823788546255508, "position": { "x": 4, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 10868, + "noteOrder": 10872, "time": 0.7859030837004406, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 10917, + "noteOrder": 10921, "time": 0.7894273127753304, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 11209, + "noteOrder": 11214, "time": 0.8105726872246697, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 11258, - "time": 0.8140969162995596, + "noteOrder": 11262, + "time": 0.8140969162995595, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 12282, - "time": 0.8881057268722466, + "noteOrder": 12286, + "time": 0.8881057268722468, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 12379, + "noteOrder": 12384, "time": 0.8951541850220265, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 12476, + "noteOrder": 12481, "time": 0.9022026431718062, "position": { "x": 6, @@ -1676,10 +1676,10 @@ "lineNodes": [ { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1657, - "time": 0.1198237885462555, + "noteOrder": 1658, + "time": 0.11982378854625551, "position": { "x": 3, "y": 0 @@ -1699,7 +1699,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1755, "time": 0.12687224669603525, @@ -1722,10 +1722,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1852, - "time": 0.13392070484581498, + "noteOrder": 1853, + "time": 0.133920704845815, "position": { "x": 7, "y": 0 @@ -1745,9 +1745,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.1409691629955947, "position": { "x": 6, @@ -1768,9 +1768,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.14801762114537445, "position": { "x": 3, @@ -1791,9 +1791,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.15506607929515417, "position": { "x": 4, @@ -1814,9 +1814,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2242, + "noteOrder": 2243, "time": 0.16211453744493393, "position": { "x": 7, @@ -1837,9 +1837,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.16916299559471365, "position": { "x": 6, @@ -1860,9 +1860,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.1762114537444934, "position": { "x": 3, @@ -1882,11 +1882,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2534, - "time": 0.18325991189427313, + "noteOrder": 2486, + "time": 0.17973568281938326, "position": { "x": 3, "y": 0 @@ -1900,18 +1900,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2632, - "time": 0.19030837004405285, + "noteOrder": 2486, + "time": 0.17973568281938326, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1928,11 +1928,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2729, - "time": 0.1973568281938326, + "noteOrder": 2535, + "time": 0.18325991189427313, "position": { "x": 3, "y": 0 @@ -1951,11 +1951,11 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2827, - "time": 0.20440528634361232, + "noteOrder": 2584, + "time": 0.18678414096916302, "position": { "x": 3, "y": 0 @@ -1969,18 +1969,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2924, - "time": 0.21145374449339208, + "noteOrder": 2584, + "time": 0.18678414096916302, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1997,11 +1997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3022, - "time": 0.2185022026431718, + "noteOrder": 2633, + "time": 0.19030837004405288, "position": { "x": 3, "y": 0 @@ -2020,11 +2020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3119, - "time": 0.22555066079295155, + "noteOrder": 2682, + "time": 0.19383259911894274, "position": { "x": 3, "y": 0 @@ -2038,18 +2038,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3996, - "time": 0.2889867841409692, + "noteOrder": 2682, + "time": 0.19383259911894274, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2061,18 +2061,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4094, - "time": 0.2960352422907489, + "noteOrder": 2730, + "time": 0.1973568281938326, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2084,18 +2084,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4191, - "time": 0.3030837004405286, + "noteOrder": 2779, + "time": 0.2008810572687225, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2112,13 +2112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4289, - "time": 0.31013215859030835, + "noteOrder": 2779, + "time": 0.2008810572687225, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2130,18 +2130,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4386, - "time": 0.31718061674008813, + "noteOrder": 2828, + "time": 0.20440528634361235, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2153,18 +2153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4484, - "time": 0.32422907488986785, + "noteOrder": 2877, + "time": 0.20792951541850221, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2181,13 +2181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4581, - "time": 0.3312775330396476, + "noteOrder": 2877, + "time": 0.20792951541850221, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2199,18 +2199,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4679, - "time": 0.3383259911894273, + "noteOrder": 2925, + "time": 0.21145374449339208, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2222,18 +2222,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5556, - "time": 0.4017621145374449, + "noteOrder": 2974, + "time": 0.21497797356828197, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2250,13 +2250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5653, - "time": 0.40881057268722465, + "noteOrder": 2974, + "time": 0.21497797356828197, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2273,11 +2273,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5751, - "time": 0.41585903083700443, + "noteOrder": 3023, + "time": 0.21850220264317183, "position": { "x": 3, "y": 0 @@ -2296,13 +2296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5848, - "time": 0.42290748898678415, + "noteOrder": 3072, + "time": 0.2220264317180617, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2319,13 +2319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5946, - "time": 0.4299559471365639, + "noteOrder": 3072, + "time": 0.2220264317180617, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2337,18 +2337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 6043, - "time": 0.4370044052863436, + "noteOrder": 3120, + "time": 0.22555066079295155, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2365,11 +2365,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6141, - "time": 0.4440528634361233, + "noteOrder": 3169, + "time": 0.22907488986784144, "position": { "x": 3, "y": 0 @@ -2383,16 +2383,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6238, - "time": 0.4511013215859031, + "noteOrder": 3169, + "time": 0.22907488986784144, "position": { "x": 4, "y": 0 @@ -2406,16 +2406,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6336, - "time": 0.4581497797356828, + "noteOrder": 3998, + "time": 0.2889867841409692, "position": { "x": 7, "y": 0 @@ -2434,13 +2434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6433, - "time": 0.46519823788546255, + "noteOrder": 4047, + "time": 0.29251101321585904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2452,18 +2452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6531, - "time": 0.4722466960352423, + "noteOrder": 4047, + "time": 0.29251101321585904, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2480,13 +2480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6628, - "time": 0.479295154185022, + "noteOrder": 4095, + "time": 0.2960352422907489, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2503,11 +2503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6726, - "time": 0.4863436123348018, + "noteOrder": 4144, + "time": 0.29955947136563876, "position": { "x": 7, "y": 0 @@ -2521,18 +2521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6823, - "time": 0.4933920704845815, + "noteOrder": 4144, + "time": 0.29955947136563876, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2549,13 +2549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7116, - "time": 0.5145374449339207, + "noteOrder": 4193, + "time": 0.3030837004405287, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2567,18 +2567,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7262, - "time": 0.5251101321585904, + "noteOrder": 4242, + "time": 0.30660792951541854, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2590,18 +2590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7310, - "time": 0.5286343612334802, + "noteOrder": 4242, + "time": 0.30660792951541854, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2618,11 +2618,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7408, - "time": 0.5356828193832599, + "noteOrder": 4290, + "time": 0.31013215859030835, "position": { "x": 7, "y": 0 @@ -2641,11 +2641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7505, - "time": 0.5427312775330397, + "noteOrder": 4339, + "time": 0.31365638766519827, "position": { "x": 7, "y": 0 @@ -2659,16 +2659,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7603, - "time": 0.5497797356828193, + "noteOrder": 4339, + "time": 0.31365638766519827, "position": { "x": 6, "y": 0 @@ -2682,16 +2682,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7895, - "time": 0.5709251101321586, + "noteOrder": 4388, + "time": 0.31718061674008813, "position": { "x": 7, "y": 0 @@ -2710,11 +2710,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7993, - "time": 0.5779735682819384, + "noteOrder": 4437, + "time": 0.320704845814978, "position": { "x": 7, "y": 0 @@ -2728,16 +2728,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8090, - "time": 0.5850220264317181, + "noteOrder": 4437, + "time": 0.320704845814978, "position": { "x": 6, "y": 0 @@ -2756,13 +2756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 8188, - "time": 0.5920704845814978, + "noteOrder": 4485, + "time": 0.32422907488986785, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2774,18 +2774,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8285, - "time": 0.5991189427312776, + "noteOrder": 4534, + "time": 0.3277533039647577, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2802,13 +2802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8383, - "time": 0.6061674008810573, + "noteOrder": 4534, + "time": 0.3277533039647577, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2820,18 +2820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8480, - "time": 0.6132158590308371, + "noteOrder": 4583, + "time": 0.33127753303964763, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2843,18 +2843,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8578, - "time": 0.6202643171806167, + "noteOrder": 4632, + "time": 0.3348017621145375, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2866,16 +2866,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8675, - "time": 0.6273127753303965, + "noteOrder": 4632, + "time": 0.3348017621145375, "position": { "x": 6, "y": 0 @@ -2894,13 +2894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 8773, - "time": 0.6343612334801763, + "noteOrder": 4680, + "time": 0.3383259911894273, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2912,18 +2912,1651 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4729, + "time": 0.3418502202643172, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4729, + "time": 0.3418502202643172, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5558, + "time": 0.401762114537445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5656, + "time": 0.4088105726872247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5753, + "time": 0.41585903083700443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5851, + "time": 0.42290748898678415, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5948, + "time": 0.42995594713656393, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6046, + "time": 0.43700440528634366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6143, + "time": 0.4440528634361234, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6241, + "time": 0.4511013215859031, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6338, + "time": 0.4581497797356829, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6387, + "time": 0.4616740088105727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6387, + "time": 0.4616740088105727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6436, + "time": 0.46519823788546255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6484, + "time": 0.46872246696035247, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6484, + "time": 0.46872246696035247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6533, + "time": 0.47224669603524233, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6582, + "time": 0.4757709251101322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6582, + "time": 0.4757709251101322, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6631, + "time": 0.47929515418502205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6679, + "time": 0.4828193832599119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6679, + "time": 0.4828193832599119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6728, + "time": 0.48634361233480183, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6777, + "time": 0.48986784140969164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6777, + "time": 0.48986784140969164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6826, + "time": 0.4933920704845815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6874, + "time": 0.4969162995594714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6874, + "time": 0.4969162995594714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7118, + "time": 0.5145374449339207, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7264, + "time": 0.5251101321585903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7313, + "time": 0.5286343612334803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7362, + "time": 0.5321585903083701, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7362, + "time": 0.5321585903083701, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7411, + "time": 0.53568281938326, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7459, + "time": 0.5392070484581498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7459, + "time": 0.5392070484581498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7508, + "time": 0.5427312775330396, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7606, + "time": 0.5497797356828195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7898, + "time": 0.5709251101321586, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7947, + "time": 0.5744493392070485, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7947, + "time": 0.5744493392070485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7996, + "time": 0.5779735682819384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8045, + "time": 0.5814977973568282, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8045, + "time": 0.5814977973568282, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8093, + "time": 0.5850220264317181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8191, + "time": 0.5920704845814978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8288, + "time": 0.5991189427312775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8337, + "time": 0.6026431718061674, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8337, + "time": 0.6026431718061674, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8386, + "time": 0.6061674008810574, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8435, + "time": 0.6096916299559472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8435, + "time": 0.6096916299559472, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8483, + "time": 0.6132158590308371, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8581, + "time": 0.6202643171806167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8678, + "time": 0.6273127753303965, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8776, + "time": 0.6343612334801763, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 8873, + "time": 0.641409691629956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 8971, + "time": 0.6484581497797357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9068, + "time": 0.6555066079295154, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9166, + "time": 0.6625550660792953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9166, + "time": 0.6625550660792953, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9263, + "time": 0.669603524229075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9458, + "time": 0.6837004405286344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9556, + "time": 0.6907488986784142, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9653, + "time": 0.6977973568281939, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9751, + "time": 0.7048458149779736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 9848, + "time": 0.7118942731277533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 9946, + "time": 0.718942731277533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 10043, + "time": 0.7259911894273129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 10141, + "time": 0.7330396475770925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11409, + "time": 0.8246696035242291, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8870, - "time": 0.641409691629956, + "noteOrder": 11457, + "time": 0.8281938325991189, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2940,11 +4573,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8967, - "time": 0.6484581497797357, + "noteOrder": 11457, + "time": 0.8281938325991189, "position": { "x": 4, "y": 0 @@ -2963,13 +4596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9065, - "time": 0.6555066079295154, + "noteOrder": 11506, + "time": 0.8317180616740089, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2986,13 +4619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9162, - "time": 0.6625550660792952, + "noteOrder": 11555, + "time": 0.8352422907488988, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3009,11 +4642,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9162, - "time": 0.6625550660792952, + "noteOrder": 11555, + "time": 0.8352422907488988, "position": { "x": 4, "y": 0 @@ -3027,18 +4660,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 9260, - "time": 0.669603524229075, + "noteOrder": 11604, + "time": 0.8387665198237887, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3055,11 +4688,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9455, - "time": 0.6837004405286344, + "noteOrder": 11652, + "time": 0.8422907488986785, "position": { "x": 3, "y": 0 @@ -3078,11 +4711,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9552, - "time": 0.690748898678414, + "noteOrder": 11652, + "time": 0.8422907488986785, "position": { "x": 4, "y": 0 @@ -3101,13 +4734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9650, - "time": 0.6977973568281939, + "noteOrder": 11701, + "time": 0.8458149779735683, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3124,13 +4757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9747, - "time": 0.7048458149779736, + "noteOrder": 11750, + "time": 0.8493392070484582, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3147,11 +4780,34 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9845, - "time": 0.7118942731277533, + "noteOrder": 11750, + "time": 0.8493392070484582, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 11799, + "time": 0.852863436123348, "position": { "x": 3, "y": 0 @@ -3170,13 +4826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9942, - "time": 0.718942731277533, + "noteOrder": 11847, + "time": 0.856387665198238, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3193,13 +4849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 10040, - "time": 0.7259911894273128, + "noteOrder": 11847, + "time": 0.856387665198238, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3211,18 +4867,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 10137, - "time": 0.7330396475770925, + "noteOrder": 11896, + "time": 0.8599118942731279, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3239,11 +4895,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11404, - "time": 0.8246696035242291, + "noteOrder": 11945, + "time": 0.8634361233480177, "position": { "x": 3, "y": 0 @@ -3257,18 +4913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11502, - "time": 0.8317180616740089, + "noteOrder": 11945, + "time": 0.8634361233480177, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3285,11 +4941,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11599, - "time": 0.8387665198237886, + "noteOrder": 11994, + "time": 0.8669603524229075, "position": { "x": 3, "y": 0 @@ -3308,11 +4964,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11697, - "time": 0.8458149779735683, + "noteOrder": 12042, + "time": 0.8704845814977974, "position": { "x": 3, "y": 0 @@ -3326,18 +4982,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 11794, - "time": 0.852863436123348, + "noteOrder": 12042, + "time": 0.8704845814977974, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3354,11 +5010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 11892, - "time": 0.8599118942731278, + "noteOrder": 12091, + "time": 0.8740088105726873, "position": { "x": 3, "y": 0 @@ -3377,11 +5033,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 11989, - "time": 0.8669603524229076, + "noteOrder": 12140, + "time": 0.8775330396475772, "position": { "x": 3, "y": 0 @@ -3395,18 +5051,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 12087, - "time": 0.8740088105726872, + "noteOrder": 12140, + "time": 0.8775330396475772, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3424,9 +5080,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12184, + "noteOrder": 12189, "time": 0.881057268722467, "position": { "x": 3, @@ -3447,9 +5103,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12476, + "noteOrder": 12481, "time": 0.9022026431718062, "position": { "x": 6, @@ -3470,9 +5126,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12574, + "noteOrder": 12579, "time": 0.9092511013215859, "position": { "x": 7, @@ -3491,12 +5147,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 12627, + "time": 0.9127753303964758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 12627, + "time": 0.9127753303964758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 12676, + "time": 0.9162995594713658, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 12671, - "time": 0.9162995594713657, + "noteOrder": 12725, + "time": 0.9198237885462556, "position": { "x": 7, "y": 0 @@ -3514,11 +5239,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 12725, + "time": 0.9198237885462556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12769, + "noteOrder": 12774, "time": 0.9233480176211454, "position": { "x": 7, @@ -3537,11 +5285,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 12822, + "time": 0.9268722466960353, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 12822, + "time": 0.9268722466960353, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12866, + "noteOrder": 12871, "time": 0.9303964757709251, "position": { "x": 3, @@ -3562,9 +5356,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 13549, + "noteOrder": 13554, "time": 0.9797356828193833, "position": { "x": 3, @@ -3585,10 +5379,10 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 12915, - "time": 0.933920704845815, + "noteOrder": 12920, + "time": 0.9339207048458151, "position": { "x": 7, "y": 0 @@ -3608,9 +5402,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 13549, + "noteOrder": 13554, "time": 0.9797356828193833, "position": { "x": 7, diff --git a/tracks/LIKE A VAMPIRE/info.json b/tracks/LIKE A VAMPIRE/info.json index d8666856..d1435304 100644 --- a/tracks/LIKE A VAMPIRE/info.json +++ b/tracks/LIKE A VAMPIRE/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "LIKE A VAMPIRE", - "SongLength": "135.262041", + "SongLength": "125.309388", "SongAuthorName": "koyomi,\u661f\u91ce\u594f\u5b50 by BEMANI Sound Team \"TAKA\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Let Me See Your Dance/280_difficulty_1a.json b/tracks/Let Me See Your Dance/280_difficulty_1a.json index 694fc50a..201ebd0d 100644 --- a/tracks/Let Me See Your Dance/280_difficulty_1a.json +++ b/tracks/Let Me See Your Dance/280_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 122, - "time": 0.016242885277854856, + "time": 0.01624288527785486, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 219, - "time": 0.029237193500138738, + "time": 0.029237193500138745, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 389, - "time": 0.051977232889135534, + "time": 0.05197723288913554, "position": { "x": 8, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 414, - "time": 0.0552258099447065, + "time": 0.05522580994470652, "position": { "x": 8, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 426, - "time": 0.05685009847249199, + "time": 0.056850098472492006, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 438, - "time": 0.058474387000277475, + "time": 0.05847438700027749, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 450, - "time": 0.060098675528062966, + "time": 0.06009867552806297, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 511, - "time": 0.06822011816699039, + "time": 0.0682201181669904, "position": { "x": 8, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 535, - "time": 0.07146869522256136, + "noteOrder": 536, + "time": 0.07146869522256137, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 560, - "time": 0.07471727227813234, + "time": 0.07471727227813235, "position": { "x": 5, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 608, - "time": 0.08121442638927427, + "noteOrder": 609, + "time": 0.08121442638927429, "position": { "x": 2, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 633, - "time": 0.08446300344484524, + "time": 0.08446300344484525, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 657, - "time": 0.08771158050041622, + "time": 0.08771158050041623, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 779, - "time": 0.10395446577827107, + "time": 0.10395446577827108, "position": { "x": 2, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 791, - "time": 0.10557875430605655, + "time": 0.10557875430605658, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 803, - "time": 0.10720304283384205, + "time": 0.10720304283384206, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 815, - "time": 0.10882733136162753, + "time": 0.10882733136162755, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 827, - "time": 0.110451619889413, + "noteOrder": 828, + "time": 0.11045161988941304, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1046, + "noteOrder": 1047, "time": 0.13968881338955177, "position": { "x": 5, @@ -414,7 +414,7 @@ }, { "noteOrder": 1168, - "time": 0.1559316986674066, + "time": 0.15593169866740664, "position": { "x": 3, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1192, - "time": 0.15918027572297758, + "noteOrder": 1193, + "time": 0.1591802757229776, "position": { "x": 8, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1205, - "time": 0.16080456425076306, + "time": 0.1608045642507631, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1217, - "time": 0.16242885277854854, + "time": 0.16242885277854857, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1241, - "time": 0.16567742983411954, + "noteOrder": 1242, + "time": 0.16567742983411957, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1253, - "time": 0.167301718361905, + "noteOrder": 1254, + "time": 0.16730171836190505, "position": { "x": 2, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1338, - "time": 0.1786717380564034, + "noteOrder": 1339, + "time": 0.17867173805640343, "position": { "x": 2, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1436, - "time": 0.1916660462786873, + "time": 0.19166604627868733, "position": { "x": 8, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1509, - "time": 0.2014117774454002, + "time": 0.20141177744540023, "position": { "x": 2, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1521, - "time": 0.2030360659731857, + "time": 0.20303606597318574, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1582, - "time": 0.2111575086121131, + "time": 0.21115750861211316, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1606, - "time": 0.2144060856676841, + "noteOrder": 1607, + "time": 0.21440608566768413, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1630, - "time": 0.21765466272325507, + "noteOrder": 1631, + "time": 0.2176546627232551, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1655, - "time": 0.220903239778826, + "time": 0.2209032397788261, "position": { "x": 2, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1667, - "time": 0.22252752830661152, + "noteOrder": 1668, + "time": 0.22252752830661154, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1679, - "time": 0.224151816834397, + "noteOrder": 1680, + "time": 0.22415181683439703, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1691, - "time": 0.22577610536218248, + "noteOrder": 1692, + "time": 0.2257761053621825, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1703, - "time": 0.22740039388996797, + "noteOrder": 1704, + "time": 0.22740039388996802, "position": { "x": 2, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1716, - "time": 0.22902468241775345, + "time": 0.2290246824177535, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1728, - "time": 0.23064897094553896, + "time": 0.230648970945539, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1740, + "noteOrder": 1741, "time": 0.23227325947332444, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1752, - "time": 0.2338975480011099, + "noteOrder": 1753, + "time": 0.23389754800110996, "position": { "x": 8, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1764, - "time": 0.23552183652889538, + "noteOrder": 1765, + "time": 0.23552183652889544, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1776, - "time": 0.23714612505668087, + "noteOrder": 1777, + "time": 0.23714612505668092, "position": { "x": 4, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1789, - "time": 0.23877041358446638, + "time": 0.2387704135844664, "position": { "x": 6, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1801, - "time": 0.24039470211225186, + "time": 0.2403947021122519, "position": { "x": 8, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1813, - "time": 0.24201899064003735, + "noteOrder": 1814, + "time": 0.24201899064003737, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1825, - "time": 0.24364327916782283, + "noteOrder": 1826, + "time": 0.24364327916782286, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1837, - "time": 0.2452675676956083, + "noteOrder": 1838, + "time": 0.24526756769560834, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1849, - "time": 0.24689185622339382, + "noteOrder": 1850, + "time": 0.24689185622339385, "position": { "x": 7, "y": 0 @@ -1034,7 +1034,7 @@ }, { "noteOrder": 1862, - "time": 0.24851614475117928, + "time": 0.24851614475117934, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1886, - "time": 0.25176472180675025, + "noteOrder": 1887, + "time": 0.2517647218067503, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.25338901033453576, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1910, - "time": 0.2550132988623212, + "noteOrder": 1911, + "time": 0.25501329886232127, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1922, - "time": 0.25663758739010667, + "noteOrder": 1923, + "time": 0.2566375873901068, "position": { "x": 3, "y": 0 @@ -1154,7 +1154,7 @@ }, { "noteOrder": 1935, - "time": 0.2582618759178922, + "time": 0.25826187591789224, "position": { "x": 5, "y": 0 @@ -1174,7 +1174,7 @@ }, { "noteOrder": 1947, - "time": 0.2598861644456777, + "time": 0.25988616444567775, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1959, - "time": 0.2615104529734632, + "noteOrder": 1960, + "time": 0.26151045297346326, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1965, - "time": 0.2623225972373559, + "noteOrder": 1966, + "time": 0.26232259723735596, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1983, + "noteOrder": 1984, "time": 0.26475903002903417, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1995, + "noteOrder": 1996, "time": 0.2663833185568196, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2093, + "noteOrder": 2094, "time": 0.27937762677910355, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2093, + "noteOrder": 2094, "time": 0.27937762677910355, "position": { "x": 2, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2105, + "noteOrder": 2106, "time": 0.281001915306889, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2141, - "time": 0.28587478089024543, + "noteOrder": 2142, + "time": 0.2858747808902455, "position": { "x": 2, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2166, - "time": 0.2891233579458164, + "noteOrder": 2167, + "time": 0.28912335794581645, "position": { "x": 2, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2190, - "time": 0.2923719350013874, + "noteOrder": 2191, + "time": 0.2923719350013875, "position": { "x": 2, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2214, - "time": 0.2956205120569584, + "noteOrder": 2215, + "time": 0.29562051205695844, "position": { "x": 2, "y": 0 @@ -1414,7 +1414,7 @@ }, { "noteOrder": 2227, - "time": 0.29724480058474384, + "time": 0.2972448005847439, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2239, - "time": 0.29886908911252935, + "noteOrder": 2240, + "time": 0.2988690891125294, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2312, - "time": 0.3086148202792422, + "noteOrder": 2313, + "time": 0.3086148202792423, "position": { "x": 8, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2336, - "time": 0.3118633973348132, + "noteOrder": 2337, + "time": 0.3118633973348133, "position": { "x": 8, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2360, - "time": 0.3151119743903842, + "noteOrder": 2361, + "time": 0.31511197439038424, "position": { "x": 8, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2385, - "time": 0.31836055144595515, + "noteOrder": 2386, + "time": 0.3183605514459552, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2482, - "time": 0.3313548596682391, + "noteOrder": 2483, + "time": 0.33135485966823913, "position": { "x": 7, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2494, - "time": 0.33297914819602453, + "noteOrder": 2495, + "time": 0.3329791481960246, "position": { "x": 5, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2506, - "time": 0.33460343672381, + "noteOrder": 2507, + "time": 0.3346034367238101, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2519, - "time": 0.3362277252515955, + "noteOrder": 2520, + "time": 0.33622772525159556, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2531, - "time": 0.33785201377938096, + "noteOrder": 2532, + "time": 0.337852013779381, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2543, - "time": 0.33947630230716647, + "noteOrder": 2544, + "time": 0.3394763023071665, "position": { "x": 8, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.3411005908349519, + "noteOrder": 2556, + "time": 0.341100590834952, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2567, + "noteOrder": 2568, "time": 0.3427248793627375, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2579, - "time": 0.34434916789052294, + "noteOrder": 2580, + "time": 0.344349167890523, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 2593, "time": 0.34597345641830846, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2604, - "time": 0.3475977449460939, + "noteOrder": 2605, + "time": 0.34759774494609397, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2616, - "time": 0.34922203347387937, + "noteOrder": 2617, + "time": 0.3492220334738795, "position": { "x": 8, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2677, - "time": 0.3573434761128068, + "noteOrder": 2678, + "time": 0.35734347611280687, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2689, + "noteOrder": 2690, "time": 0.3589677646405923, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2701, + "noteOrder": 2702, "time": 0.36059205316837784, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2713, - "time": 0.3622163416961633, + "noteOrder": 2714, + "time": 0.36221634169616335, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2725, - "time": 0.36384063022394875, + "noteOrder": 2726, + "time": 0.3638406302239488, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.36546491875173426, + "noteOrder": 2739, + "time": 0.3654649187517343, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2750, - "time": 0.3670892072795197, + "noteOrder": 2751, + "time": 0.3670892072795198, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2762, - "time": 0.3687134958073052, + "noteOrder": 2763, + "time": 0.3687134958073053, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2774, - "time": 0.3703377843350907, + "noteOrder": 2775, + "time": 0.3703377843350908, "position": { "x": 2, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2786, + "noteOrder": 2787, "time": 0.3719620728628762, "position": { "x": 5, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2798, - "time": 0.37358636139066165, + "noteOrder": 2799, + "time": 0.3735863613906617, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2811, - "time": 0.3752106499184471, + "noteOrder": 2812, + "time": 0.3752106499184472, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.38495638108516006, + "noteOrder": 2885, + "time": 0.3849563810851601, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.388204958140731, + "noteOrder": 2909, + "time": 0.38820495814073114, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.394702112251873, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2981, - "time": 0.397950689307444, + "noteOrder": 2982, + "time": 0.39795068930744404, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3078, - "time": 0.41094499752972785, + "noteOrder": 3079, + "time": 0.4109449975297279, "position": { "x": 5, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3103, - "time": 0.4141935745852988, + "noteOrder": 3104, + "time": 0.4141935745852989, "position": { "x": 5, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3151, - "time": 0.42069072869644075, + "noteOrder": 3152, + "time": 0.4206907286964408, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3176, - "time": 0.4239393057520117, + "noteOrder": 3177, + "time": 0.42393930575201183, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.5360152141692102, + "noteOrder": 4017, + "time": 0.5360152141692103, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4064, - "time": 0.5425123682803521, + "noteOrder": 4065, + "time": 0.5425123682803522, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4161, - "time": 0.5555066765026361, + "noteOrder": 4163, + "time": 0.5555066765026362, "position": { "x": 4, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4187, "time": 0.5587552535582071, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4356, - "time": 0.5814952929472038, + "noteOrder": 4357, + "time": 0.5814952929472039, "position": { "x": 6, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4380, - "time": 0.5847438700027748, + "noteOrder": 4382, + "time": 0.584743870002775, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4404, - "time": 0.5879924470583457, + "noteOrder": 4406, + "time": 0.5879924470583459, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4441, - "time": 0.5928653126417022, + "noteOrder": 4443, + "time": 0.5928653126417024, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4465, - "time": 0.5961138896972732, + "noteOrder": 4467, + "time": 0.5961138896972733, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4477, - "time": 0.5977381782250587, + "noteOrder": 4479, + "time": 0.5977381782250588, "position": { "x": 4, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4502, - "time": 0.6009867552806296, + "noteOrder": 4503, + "time": 0.6009867552806297, "position": { "x": 7, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.6058596208639861, "position": { "x": 5, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.6091081979195571, + "noteOrder": 4564, + "time": 0.6091081979195572, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4575, - "time": 0.6107324864473426, + "noteOrder": 4577, + "time": 0.6107324864473427, "position": { "x": 2, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.6123567749751281, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4599, - "time": 0.6139810635029135, + "noteOrder": 4601, + "time": 0.6139810635029136, "position": { "x": 6, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4636, - "time": 0.61885392908627, + "noteOrder": 4637, + "time": 0.6188539290862701, "position": { "x": 5, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4672, - "time": 0.6237267946696264, + "noteOrder": 4674, + "time": 0.6237267946696265, "position": { "x": 7, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4696, - "time": 0.6269753717251975, + "noteOrder": 4698, + "time": 0.6269753717251976, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4721, - "time": 0.6302239487807684, + "noteOrder": 4723, + "time": 0.6302239487807685, "position": { "x": 8, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4745, - "time": 0.6334725258363394, + "noteOrder": 4747, + "time": 0.6334725258363395, "position": { "x": 6, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4769, - "time": 0.6367211028919103, + "noteOrder": 4771, + "time": 0.6367211028919104, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4796, "time": 0.6399696799474813, "position": { "x": 6, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.6448425455308378, + "noteOrder": 4832, + "time": 0.6448425455308379, "position": { "x": 5, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4856, "time": 0.6480911225864088, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4867, - "time": 0.6497154111141942, + "noteOrder": 4869, + "time": 0.6497154111141943, "position": { "x": 6, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4891, - "time": 0.6529639881697652, + "noteOrder": 4893, + "time": 0.6529639881697653, "position": { "x": 3, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4928, - "time": 0.6578368537531216, + "noteOrder": 4929, + "time": 0.6578368537531217, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.6610854308086925, + "noteOrder": 4954, + "time": 0.6610854308086928, "position": { "x": 5, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4964, - "time": 0.6627097193364782, + "noteOrder": 4966, + "time": 0.6627097193364783, "position": { "x": 8, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.6643340078642636, + "noteOrder": 4978, + "time": 0.6643340078642637, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4988, - "time": 0.6659582963920491, + "noteOrder": 4990, + "time": 0.6659582963920492, "position": { "x": 4, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.6708311619754056, "position": { "x": 5, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5061, - "time": 0.6757040275587619, + "noteOrder": 5063, + "time": 0.675704027558762, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5086, - "time": 0.6789526046143329, + "noteOrder": 5088, + "time": 0.678952604614333, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5110, - "time": 0.6822011816699038, + "noteOrder": 5112, + "time": 0.682201181669904, "position": { "x": 2, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5134, + "noteOrder": 5136, "time": 0.685449758725475, "position": { "x": 4, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5232, - "time": 0.6984440669477587, + "noteOrder": 5234, + "time": 0.698444066947759, "position": { "x": 2, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5244, - "time": 0.7000683554755442, + "noteOrder": 5246, + "time": 0.7000683554755444, "position": { "x": 2, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5250, - "time": 0.700880499739437, + "noteOrder": 5252, + "time": 0.7008804997394371, "position": { "x": 6, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5329, - "time": 0.7114383751700426, + "noteOrder": 5331, + "time": 0.7114383751700427, "position": { "x": 2, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5341, - "time": 0.7130626636978281, + "noteOrder": 5343, + "time": 0.7130626636978282, "position": { "x": 2, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5347, - "time": 0.7138748079617209, + "noteOrder": 5349, + "time": 0.713874807961721, "position": { "x": 6, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.7276812604478975, + "noteOrder": 5453, + "time": 0.7276812604478976, "position": { "x": 4, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5463, - "time": 0.729305548975683, + "noteOrder": 5465, + "time": 0.7293055489756831, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5475, - "time": 0.7309298375034685, + "noteOrder": 5477, + "time": 0.7309298375034686, "position": { "x": 4, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5487, - "time": 0.7325541260312539, + "noteOrder": 5489, + "time": 0.7325541260312541, "position": { "x": 7, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5499, - "time": 0.7341784145590394, + "noteOrder": 5502, + "time": 0.7341784145590396, "position": { "x": 4, "y": 0 @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5572, + "noteOrder": 5575, "time": 0.7439241457257524, "position": { "x": 8, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5597, - "time": 0.7471727227813233, + "noteOrder": 5599, + "time": 0.7471727227813234, "position": { "x": 3, "y": 0 @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5621, - "time": 0.7504212998368942, + "noteOrder": 5623, + "time": 0.7504212998368944, "position": { "x": 8, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5670, - "time": 0.7569184539480363, + "noteOrder": 5672, + "time": 0.7569184539480364, "position": { "x": 2, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5694, - "time": 0.7601670310036073, + "noteOrder": 5696, + "time": 0.7601670310036074, "position": { "x": 7, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5718, - "time": 0.7634156080591782, + "noteOrder": 5721, + "time": 0.7634156080591783, "position": { "x": 2, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5767, - "time": 0.7699127621703201, + "noteOrder": 5769, + "time": 0.7699127621703202, "position": { "x": 8, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5816, - "time": 0.776409916281462, + "noteOrder": 5818, + "time": 0.7764099162814623, "position": { "x": 2, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5840, - "time": 0.779658493337033, + "noteOrder": 5842, + "time": 0.7796584933370331, "position": { "x": 7, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5962, - "time": 0.795901378614888, + "noteOrder": 5964, + "time": 0.7959013786148881, "position": { "x": 7, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5974, - "time": 0.7975256671426734, + "noteOrder": 5976, + "time": 0.7975256671426735, "position": { "x": 4, "y": 0 @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6010, - "time": 0.8023985327260298, + "noteOrder": 6013, + "time": 0.80239853272603, "position": { "x": 3, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6023, - "time": 0.8040228212538154, + "noteOrder": 6025, + "time": 0.8040228212538155, "position": { "x": 6, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6059, - "time": 0.8088956868371717, + "noteOrder": 6061, + "time": 0.808895686837172, "position": { "x": 7, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6071, - "time": 0.8105199753649573, + "noteOrder": 6074, + "time": 0.8105199753649575, "position": { "x": 4, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6108, - "time": 0.8153928409483137, + "noteOrder": 6110, + "time": 0.8153928409483139, "position": { "x": 3, "y": 0 @@ -3453,8 +3453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6120, - "time": 0.8170171294760992, + "noteOrder": 6122, + "time": 0.8170171294760993, "position": { "x": 6, "y": 0 @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6156, - "time": 0.8218899950594557, + "noteOrder": 6159, + "time": 0.8218899950594558, "position": { "x": 8, "y": 0 @@ -3493,8 +3493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6169, - "time": 0.8235142835872411, + "noteOrder": 6171, + "time": 0.8235142835872412, "position": { "x": 4, "y": 0 @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6205, - "time": 0.8283871491705976, + "noteOrder": 6208, + "time": 0.8283871491705977, "position": { "x": 2, "y": 0 @@ -3533,8 +3533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6217, - "time": 0.830011437698383, + "noteOrder": 6220, + "time": 0.8300114376983833, "position": { "x": 5, "y": 0 @@ -3553,8 +3553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6327, - "time": 0.8446300344484524, + "noteOrder": 6329, + "time": 0.8446300344484526, "position": { "x": 3, "y": 0 @@ -3573,7 +3573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6400, + "noteOrder": 6402, "time": 0.8543757656151655, "position": { "x": 8, @@ -3593,8 +3593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6412, - "time": 0.8560000541429509, + "noteOrder": 6414, + "time": 0.856000054142951, "position": { "x": 8, "y": 0 @@ -3613,8 +3613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6418, - "time": 0.8568121984068435, + "noteOrder": 6421, + "time": 0.8568121984068438, "position": { "x": 4, "y": 0 @@ -3633,8 +3633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6497, - "time": 0.8673700738374492, + "noteOrder": 6500, + "time": 0.8673700738374494, "position": { "x": 8, "y": 0 @@ -3653,8 +3653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6619, - "time": 0.883612959115304, + "noteOrder": 6621, + "time": 0.8836129591153044, "position": { "x": 2, "y": 0 @@ -3673,8 +3673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6667, - "time": 0.8901101132264461, + "noteOrder": 6670, + "time": 0.8901101132264462, "position": { "x": 8, "y": 0 @@ -3693,8 +3693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6680, - "time": 0.8917344017542316, + "noteOrder": 6682, + "time": 0.8917344017542317, "position": { "x": 3, "y": 0 @@ -3713,7 +3713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6692, + "noteOrder": 6694, "time": 0.8933586902820171, "position": { "x": 5, @@ -3733,8 +3733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6698, - "time": 0.8941708345459097, + "noteOrder": 6700, + "time": 0.8941708345459098, "position": { "x": 4, "y": 0 @@ -3753,8 +3753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6704, - "time": 0.8949829788098025, + "noteOrder": 6707, + "time": 0.8949829788098026, "position": { "x": 5, "y": 0 @@ -3773,8 +3773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6741, - "time": 0.899855844393159, + "noteOrder": 6743, + "time": 0.8998558443931591, "position": { "x": 8, "y": 0 @@ -3793,8 +3793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6765, - "time": 0.9031044214487299, + "noteOrder": 6767, + "time": 0.90310442144873, "position": { "x": 3, "y": 0 @@ -3813,8 +3813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6789, - "time": 0.906352998504301, + "noteOrder": 6792, + "time": 0.9063529985043011, "position": { "x": 8, "y": 0 @@ -3833,8 +3833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6838, - "time": 0.9128501526154428, + "noteOrder": 6840, + "time": 0.912850152615443, "position": { "x": 2, "y": 0 @@ -3853,8 +3853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6862, - "time": 0.9160987296710138, + "noteOrder": 6865, + "time": 0.916098729671014, "position": { "x": 7, "y": 0 @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6887, - "time": 0.9193473067265848, + "noteOrder": 6889, + "time": 0.919347306726585, "position": { "x": 2, "y": 0 @@ -3893,7 +3893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 6962, "time": 0.9290930378932978, "position": { "x": 3, @@ -3913,8 +3913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6978, - "time": 0.9315294706849759, + "noteOrder": 6980, + "time": 0.931529470684976, "position": { "x": 7, "y": 0 @@ -3933,8 +3933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6996, - "time": 0.9339659034766541, + "noteOrder": 6999, + "time": 0.9339659034766543, "position": { "x": 3, "y": 0 @@ -3953,8 +3953,8 @@ "isPlayAudio": false }, { - "noteOrder": 7008, - "time": 0.9355901920044396, + "noteOrder": 7011, + "time": 0.9355901920044398, "position": { "x": 6, "y": 0 @@ -3973,7 +3973,7 @@ "isPlayAudio": false }, { - "noteOrder": 7020, + "noteOrder": 7023, "time": 0.9372144805322252, "position": { "x": 3, @@ -3993,8 +3993,8 @@ "isPlayAudio": false }, { - "noteOrder": 7033, - "time": 0.9388387690600106, + "noteOrder": 7035, + "time": 0.9388387690600107, "position": { "x": 6, "y": 0 @@ -4013,8 +4013,8 @@ "isPlayAudio": false }, { - "noteOrder": 7045, - "time": 0.9404630575877961, + "noteOrder": 7047, + "time": 0.9404630575877962, "position": { "x": 3, "y": 0 @@ -4033,8 +4033,8 @@ "isPlayAudio": false }, { - "noteOrder": 7057, - "time": 0.9420873461155815, + "noteOrder": 7060, + "time": 0.9420873461155818, "position": { "x": 7, "y": 0 @@ -4056,10 +4056,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.012994308222283884, + "time": 0.012994308222283885, "position": { "x": 8, "y": 0 @@ -4079,10 +4079,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 122, - "time": 0.016242885277854856, + "time": 0.01624288527785486, "position": { "x": 6, "y": 0 @@ -4102,10 +4102,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 146, - "time": 0.019491462333425826, + "time": 0.01949146233342583, "position": { "x": 4, "y": 0 @@ -4125,10 +4125,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.019491462333425826, + "time": 0.01949146233342583, "position": { "x": 2, "y": 0 @@ -4147,11 +4147,11 @@ "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 2, "isSliding": false, - "noteOrder": 170, - "time": 0.022740039388996797, + "noteOrder": 158, + "time": 0.021115750861211313, "position": { "x": 2, "y": 0 @@ -4165,18 +4165,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 3, "isSliding": false, - "noteOrder": 195, - "time": 0.025988616444567767, + "noteOrder": 158, + "time": 0.021115750861211313, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4193,11 +4193,11 @@ "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 1, + "lineGroupId": 4, + "indexInLine": 4, "isSliding": false, - "noteOrder": 219, - "time": 0.029237193500138738, + "noteOrder": 170, + "time": 0.0227400393889968, "position": { "x": 4, "y": 0 @@ -4216,11 +4216,11 @@ "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 2, + "lineGroupId": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 243, - "time": 0.03248577055570971, + "noteOrder": 170, + "time": 0.0227400393889968, "position": { "x": 6, "y": 0 @@ -4239,13 +4239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 1, "isSliding": false, - "noteOrder": 243, - "time": 0.03248577055570971, + "noteOrder": 170, + "time": 0.0227400393889968, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4262,13 +4262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 268, - "time": 0.03573434761128068, + "noteOrder": 183, + "time": 0.024364327916782284, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4280,18 +4280,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 3, "isSliding": false, - "noteOrder": 292, - "time": 0.03898292466685165, + "noteOrder": 183, + "time": 0.024364327916782284, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4308,13 +4308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 2, + "lineGroupId": 5, + "indexInLine": 4, "isSliding": false, - "noteOrder": 316, - "time": 0.04223150172242262, + "noteOrder": 195, + "time": 0.02598861644456777, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4331,13 +4331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 5, "isSliding": false, - "noteOrder": 316, - "time": 0.04223150172242262, + "noteOrder": 195, + "time": 0.02598861644456777, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4349,18 +4349,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 2, + "lineGroupId": 6, + "indexInLine": 1, "isSliding": false, - "noteOrder": 341, - "time": 0.04548007877799359, + "noteOrder": 195, + "time": 0.02598861644456777, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4377,13 +4377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 6, + "indexInLine": 2, "isSliding": false, - "noteOrder": 341, - "time": 0.04548007877799359, + "noteOrder": 219, + "time": 0.029237193500138745, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4395,18 +4395,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 6, + "indexInLine": 3, "isSliding": false, - "noteOrder": 365, - "time": 0.04872865583356456, + "noteOrder": 243, + "time": 0.03248577055570972, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4423,11 +4423,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 462, - "time": 0.061722964055848456, + "noteOrder": 243, + "time": 0.03248577055570972, "position": { "x": 8, "y": 0 @@ -4446,11 +4446,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 487, - "time": 0.06497154111141942, + "noteOrder": 256, + "time": 0.0341100590834952, "position": { "x": 8, "y": 0 @@ -4464,18 +4464,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 1, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 584, - "time": 0.0779658493337033, + "noteOrder": 256, + "time": 0.0341100590834952, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4487,18 +4487,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 4, "isSliding": false, - "noteOrder": 584, - "time": 0.0779658493337033, + "noteOrder": 268, + "time": 0.035734347611280685, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4515,13 +4515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 1, + "lineGroupId": 8, + "indexInLine": 5, "isSliding": false, - "noteOrder": 681, - "time": 0.09096015755598719, + "noteOrder": 268, + "time": 0.035734347611280685, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4538,11 +4538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 1, "isSliding": false, - "noteOrder": 681, - "time": 0.09096015755598719, + "noteOrder": 268, + "time": 0.035734347611280685, "position": { "x": 8, "y": 0 @@ -4561,13 +4561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 706, - "time": 0.09420873461155817, + "noteOrder": 280, + "time": 0.037358636139066176, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4579,18 +4579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 730, - "time": 0.09745731166712912, + "noteOrder": 280, + "time": 0.037358636139066176, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4607,13 +4607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 4, "isSliding": false, - "noteOrder": 754, - "time": 0.1007058887227001, + "noteOrder": 292, + "time": 0.03898292466685166, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4625,18 +4625,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 5, "isSliding": false, - "noteOrder": 876, - "time": 0.11694877400055495, + "noteOrder": 292, + "time": 0.03898292466685166, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4653,13 +4653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 900, - "time": 0.12019735105612593, + "noteOrder": 292, + "time": 0.03898292466685166, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4676,13 +4676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 925, - "time": 0.12344592811169691, + "noteOrder": 304, + "time": 0.04060721319463714, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4694,18 +4694,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 937, - "time": 0.1250702166394824, + "noteOrder": 304, + "time": 0.04060721319463714, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4717,18 +4717,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 2, + "lineGroupId": 10, + "indexInLine": 4, "isSliding": false, - "noteOrder": 973, - "time": 0.12994308222283885, + "noteOrder": 316, + "time": 0.042231501722422626, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4740,18 +4740,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 973, - "time": 0.12994308222283885, + "noteOrder": 316, + "time": 0.042231501722422626, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4763,18 +4763,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 998, - "time": 0.1331916592784098, + "noteOrder": 329, + "time": 0.04385579025020812, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4791,13 +4791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1022, - "time": 0.13644023633398078, + "noteOrder": 329, + "time": 0.04385579025020812, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4809,18 +4809,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 11, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1034, - "time": 0.1380645248617663, + "noteOrder": 341, + "time": 0.0454800787779936, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4832,18 +4832,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1071, - "time": 0.14293739044512271, + "noteOrder": 341, + "time": 0.0454800787779936, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4860,13 +4860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1071, - "time": 0.14293739044512271, + "noteOrder": 353, + "time": 0.047104367305779084, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4878,18 +4878,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 2, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1095, - "time": 0.1461859675006937, + "noteOrder": 353, + "time": 0.047104367305779084, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4901,18 +4901,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1095, - "time": 0.1461859675006937, + "noteOrder": 365, + "time": 0.04872865583356457, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4929,13 +4929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 2, + "lineGroupId": 12, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1119, - "time": 0.14943454455626468, + "noteOrder": 365, + "time": 0.04872865583356457, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4952,13 +4952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1119, - "time": 0.14943454455626468, + "noteOrder": 365, + "time": 0.04872865583356457, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4975,13 +4975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 13, "indexInLine": 2, "isSliding": false, - "noteOrder": 1144, - "time": 0.15268312161183564, + "noteOrder": 377, + "time": 0.05035294436135006, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4998,13 +4998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1144, - "time": 0.15268312161183564, + "noteOrder": 377, + "time": 0.05035294436135006, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5016,18 +5016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 2, + "lineGroupId": 13, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1168, - "time": 0.1559316986674066, + "noteOrder": 389, + "time": 0.05197723288913554, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5039,18 +5039,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1265, - "time": 0.16892600688969048, + "noteOrder": 389, + "time": 0.05197723288913554, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5062,18 +5062,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1290, - "time": 0.17217458394526147, + "noteOrder": 463, + "time": 0.06172296405584846, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5085,18 +5085,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1314, - "time": 0.17542316100083244, + "noteOrder": 475, + "time": 0.06334725258363394, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5113,13 +5113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1338, - "time": 0.1786717380564034, + "noteOrder": 475, + "time": 0.06334725258363394, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5136,11 +5136,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 2, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1363, - "time": 0.18192031511197437, + "noteOrder": 487, + "time": 0.06497154111141944, "position": { "x": 6, "y": 0 @@ -5159,13 +5159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1363, - "time": 0.18192031511197437, + "noteOrder": 487, + "time": 0.06497154111141944, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5177,16 +5177,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1387, - "time": 0.18516889216754534, + "noteOrder": 487, + "time": 0.06497154111141944, "position": { "x": 8, "y": 0 @@ -5200,18 +5200,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1411, - "time": 0.18841746922311634, + "noteOrder": 584, + "time": 0.07796584933370332, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5228,13 +5228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1436, - "time": 0.1916660462786873, + "noteOrder": 584, + "time": 0.07796584933370332, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5246,18 +5246,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 28, "indexInLine": 2, "isSliding": false, - "noteOrder": 1460, - "time": 0.19491462333425824, + "noteOrder": 682, + "time": 0.0909601575559872, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5269,18 +5269,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1460, - "time": 0.19491462333425824, + "noteOrder": 682, + "time": 0.0909601575559872, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5292,18 +5292,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1484, - "time": 0.19816320038982924, + "noteOrder": 694, + "time": 0.0925844460837727, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5320,13 +5320,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1533, - "time": 0.2046603545009712, + "noteOrder": 694, + "time": 0.0925844460837727, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5338,18 +5338,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1557, - "time": 0.20790893155654214, + "noteOrder": 706, + "time": 0.09420873461155817, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5366,13 +5366,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1557, - "time": 0.20790893155654214, + "noteOrder": 718, + "time": 0.09583302313934366, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5384,18 +5384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1582, - "time": 0.2111575086121131, + "noteOrder": 718, + "time": 0.09583302313934366, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5407,18 +5407,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 2, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1606, - "time": 0.2144060856676841, + "noteOrder": 730, + "time": 0.09745731166712913, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -5435,13 +5435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 3, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1630, - "time": 0.21765466272325507, + "noteOrder": 742, + "time": 0.09908160019491463, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5458,13 +5458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1971, - "time": 0.26313474150124866, + "noteOrder": 742, + "time": 0.09908160019491463, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5481,11 +5481,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 35, "indexInLine": 1, "isSliding": false, - "noteOrder": 2044, - "time": 0.27288047266796156, + "noteOrder": 755, + "time": 0.10070588872270012, "position": { "x": 3, "y": 0 @@ -5499,18 +5499,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2008, - "time": 0.2680076070846051, + "noteOrder": 767, + "time": 0.1023301772504856, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5527,13 +5527,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2044, - "time": 0.27288047266796156, + "noteOrder": 767, + "time": 0.1023301772504856, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5550,13 +5550,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2117, - "time": 0.28262620383467446, + "noteOrder": 876, + "time": 0.11694877400055498, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5568,18 +5568,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 8, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2214, - "time": 0.2956205120569584, + "noteOrder": 889, + "time": 0.11857306252834046, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5591,18 +5591,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2287, - "time": 0.3053662432236713, + "noteOrder": 889, + "time": 0.11857306252834046, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5619,11 +5619,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 8, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2385, - "time": 0.31836055144595515, + "noteOrder": 901, + "time": 0.12019735105612595, "position": { "x": 4, "y": 0 @@ -5642,13 +5642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2433, - "time": 0.3248577055570971, + "noteOrder": 901, + "time": 0.12019735105612595, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5665,13 +5665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 2446, - "time": 0.3264819940848826, + "noteOrder": 901, + "time": 0.12019735105612595, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5683,18 +5683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 44, "indexInLine": 2, "isSliding": false, - "noteOrder": 2458, - "time": 0.3281062826126681, + "noteOrder": 913, + "time": 0.12182163958391143, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5706,18 +5706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2433, - "time": 0.3248577055570971, + "noteOrder": 913, + "time": 0.12182163958391143, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5734,13 +5734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2446, - "time": 0.3264819940848826, + "noteOrder": 925, + "time": 0.12344592811169693, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5757,11 +5757,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2458, - "time": 0.3281062826126681, + "noteOrder": 925, + "time": 0.12344592811169693, "position": { "x": 6, "y": 0 @@ -5780,13 +5780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2871, - "time": 0.3833320925573746, + "noteOrder": 925, + "time": 0.12344592811169693, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5803,13 +5803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, - "time": 0.38495638108516006, + "noteOrder": 937, + "time": 0.1250702166394824, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5826,13 +5826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 2, - "isSliding": false, - "noteOrder": 2896, - "time": 0.38658066961294557, + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 974, + "time": 0.12994308222283887, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5849,13 +5849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 3, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2908, - "time": 0.388204958140731, + "noteOrder": 974, + "time": 0.12994308222283887, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5867,18 +5867,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 4, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2920, - "time": 0.3898292466685165, + "noteOrder": 986, + "time": 0.13156737075062433, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5890,18 +5890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2944, - "time": 0.3930778237240875, + "noteOrder": 986, + "time": 0.13156737075062433, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5918,13 +5918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2957, - "time": 0.394702112251873, + "noteOrder": 998, + "time": 0.1331916592784098, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5941,11 +5941,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 2, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2969, - "time": 0.39632640077965847, + "noteOrder": 998, + "time": 0.1331916592784098, "position": { "x": 4, "y": 0 @@ -5964,13 +5964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 3, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.397950689307444, + "noteOrder": 998, + "time": 0.1331916592784098, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5982,16 +5982,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 4, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2993, - "time": 0.39957497783522944, + "noteOrder": 1010, + "time": 0.13481594780619532, "position": { "x": 8, "y": 0 @@ -6005,18 +6005,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3066, - "time": 0.4093207090019424, + "noteOrder": 1010, + "time": 0.13481594780619532, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6028,18 +6028,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3078, - "time": 0.41094499752972785, + "noteOrder": 1022, + "time": 0.1364402363339808, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6051,18 +6051,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 2, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3090, - "time": 0.41256928605751336, + "noteOrder": 1022, + "time": 0.1364402363339808, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6074,18 +6074,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 3, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3103, - "time": 0.4141935745852988, + "noteOrder": 1022, + "time": 0.1364402363339808, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -6102,13 +6102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 4, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3115, - "time": 0.4158178631130843, + "noteOrder": 1035, + "time": 0.1380645248617663, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6125,13 +6125,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3139, - "time": 0.41906644016865524, + "noteOrder": 1071, + "time": 0.14293739044512274, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6143,18 +6143,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 3151, - "time": 0.42069072869644075, + "noteOrder": 1071, + "time": 0.14293739044512274, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6171,13 +6171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 51, "indexInLine": 2, "isSliding": false, - "noteOrder": 3163, - "time": 0.4223150172242262, + "noteOrder": 1083, + "time": 0.14456167897290823, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6194,13 +6194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 51, "indexInLine": 3, "isSliding": false, - "noteOrder": 3176, - "time": 0.4239393057520117, + "noteOrder": 1083, + "time": 0.14456167897290823, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6217,13 +6217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 51, "indexInLine": 4, "isSliding": false, - "noteOrder": 3188, - "time": 0.42556359427979723, + "noteOrder": 1095, + "time": 0.14618596750069374, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6240,13 +6240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3212, - "time": 0.4288121713353682, + "noteOrder": 1095, + "time": 0.14618596750069374, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6263,13 +6263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3236, - "time": 0.43206074839093916, + "noteOrder": 1108, + "time": 0.14781025602847922, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6286,13 +6286,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3261, - "time": 0.43530932544651013, + "noteOrder": 1108, + "time": 0.14781025602847922, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6304,18 +6304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3285, - "time": 0.4385579025020811, + "noteOrder": 1120, + "time": 0.1494345445562647, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6327,18 +6327,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3309, - "time": 0.441806479557652, + "noteOrder": 1120, + "time": 0.1494345445562647, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6350,18 +6350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3334, - "time": 0.44505505661322303, + "noteOrder": 1132, + "time": 0.15105883308405016, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6373,18 +6373,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3358, - "time": 0.448303633668794, + "noteOrder": 1132, + "time": 0.15105883308405016, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6401,13 +6401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3382, - "time": 0.45155221072436497, + "noteOrder": 1144, + "time": 0.15268312161183567, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6424,13 +6424,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3504, - "time": 0.4677950960022198, + "noteOrder": 1144, + "time": 0.15268312161183567, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6447,13 +6447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3553, - "time": 0.47429225011336174, + "noteOrder": 1156, + "time": 0.15430741013962115, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6470,13 +6470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3577, - "time": 0.47754082716893276, + "noteOrder": 1156, + "time": 0.15430741013962115, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6493,11 +6493,11 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3504, - "time": 0.4677950960022198, + "noteOrder": 1168, + "time": 0.15593169866740664, "position": { "x": 7, "y": 0 @@ -6511,18 +6511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 3553, - "time": 0.47429225011336174, + "noteOrder": 1266, + "time": 0.1689260068896905, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -6534,18 +6534,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 64, "indexInLine": 2, "isSliding": false, - "noteOrder": 3577, - "time": 0.47754082716893276, + "noteOrder": 1278, + "time": 0.170550295417476, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -6557,18 +6557,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3601, - "time": 0.4807894042245037, + "noteOrder": 1278, + "time": 0.170550295417476, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6585,13 +6585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3626, - "time": 0.4840379812800747, + "noteOrder": 1290, + "time": 0.1721745839452615, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6608,13 +6608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3614, - "time": 0.4824136927522892, + "noteOrder": 1290, + "time": 0.1721745839452615, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6626,18 +6626,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 3626, - "time": 0.4840379812800747, + "noteOrder": 1290, + "time": 0.1721745839452615, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -6654,13 +6654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, - "time": 0.48728655833564566, + "noteOrder": 1302, + "time": 0.17379887247304698, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -6672,18 +6672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3674, - "time": 0.4905351353912166, + "noteOrder": 1302, + "time": 0.17379887247304698, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6695,18 +6695,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3662, - "time": 0.4889108468634311, + "noteOrder": 1315, + "time": 0.17542316100083247, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6723,13 +6723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3674, - "time": 0.4905351353912166, + "noteOrder": 1315, + "time": 0.17542316100083247, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6746,13 +6746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3699, - "time": 0.49378371244678765, + "noteOrder": 1315, + "time": 0.17542316100083247, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6764,16 +6764,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3723, - "time": 0.49703228950235856, + "noteOrder": 1339, + "time": 0.17867173805640343, "position": { "x": 4, "y": 0 @@ -6787,16 +6787,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3711, - "time": 0.4954080009745731, + "noteOrder": 1363, + "time": 0.1819203151119744, "position": { "x": 6, "y": 0 @@ -6815,13 +6815,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 3723, - "time": 0.49703228950235856, + "noteOrder": 1363, + "time": 0.1819203151119744, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6833,18 +6833,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3747, - "time": 0.5002808665579296, + "noteOrder": 1375, + "time": 0.1835446036397599, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -6861,13 +6861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3772, - "time": 0.5035294436135005, + "noteOrder": 1375, + "time": 0.1835446036397599, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6884,13 +6884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3760, - "time": 0.501905155085715, + "noteOrder": 1388, + "time": 0.1851688921675454, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6902,18 +6902,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3772, - "time": 0.5035294436135005, + "noteOrder": 1388, + "time": 0.1851688921675454, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6925,18 +6925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3796, - "time": 0.5067780206690715, + "noteOrder": 1388, + "time": 0.1851688921675454, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6953,13 +6953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3820, - "time": 0.5100265977246424, + "noteOrder": 1400, + "time": 0.18679318069533085, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6976,13 +6976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3808, - "time": 0.5084023091968569, + "noteOrder": 1400, + "time": 0.18679318069533085, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6994,18 +6994,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3820, - "time": 0.5100265977246424, + "noteOrder": 1412, + "time": 0.18841746922311634, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7017,16 +7017,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3845, - "time": 0.5132751747802133, + "noteOrder": 1412, + "time": 0.18841746922311634, "position": { "x": 4, "y": 0 @@ -7040,18 +7040,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 3869, - "time": 0.5165237518357844, + "noteOrder": 1412, + "time": 0.18841746922311634, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7068,13 +7068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3857, - "time": 0.514899463307999, + "noteOrder": 1436, + "time": 0.19166604627868733, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7086,18 +7086,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3869, - "time": 0.5165237518357844, + "noteOrder": 1461, + "time": 0.19491462333425827, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7109,18 +7109,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3893, - "time": 0.5197723288913554, + "noteOrder": 1461, + "time": 0.19491462333425827, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -7137,13 +7137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3918, - "time": 0.5230209059469264, + "noteOrder": 1473, + "time": 0.19653891186204378, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -7160,13 +7160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3906, - "time": 0.5213966174191408, + "noteOrder": 1473, + "time": 0.19653891186204378, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7178,16 +7178,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3918, - "time": 0.5230209059469264, + "noteOrder": 1485, + "time": 0.19816320038982926, "position": { "x": 4, "y": 0 @@ -7201,18 +7201,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3942, - "time": 0.5262694830024973, + "noteOrder": 1485, + "time": 0.19816320038982926, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7224,18 +7224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 3966, - "time": 0.5295180600580683, + "noteOrder": 1485, + "time": 0.19816320038982926, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -7252,13 +7252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3954, - "time": 0.5278937715302827, + "noteOrder": 1497, + "time": 0.19978748891761475, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -7270,18 +7270,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3966, - "time": 0.5295180600580683, + "noteOrder": 1497, + "time": 0.19978748891761475, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7293,18 +7293,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3991, - "time": 0.5327666371136393, + "noteOrder": 1509, + "time": 0.20141177744540023, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7316,18 +7316,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4039, - "time": 0.5392637912247812, + "noteOrder": 1509, + "time": 0.20141177744540023, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7344,13 +7344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4088, - "time": 0.5457609453359231, + "noteOrder": 1534, + "time": 0.2046603545009712, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -7367,13 +7367,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4112, - "time": 0.549009522391494, + "noteOrder": 1546, + "time": 0.20628464302875668, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -7385,18 +7385,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4137, - "time": 0.5522580994470652, + "noteOrder": 1546, + "time": 0.20628464302875668, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7413,13 +7413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4210, - "time": 0.562003830613778, + "noteOrder": 1558, + "time": 0.20790893155654216, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -7436,13 +7436,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4234, - "time": 0.5652524076693489, + "noteOrder": 1558, + "time": 0.20790893155654216, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7459,13 +7459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4258, - "time": 0.5685009847249199, + "noteOrder": 1582, + "time": 0.21115750861211316, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -7477,18 +7477,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4283, - "time": 0.5717495617804909, + "noteOrder": 1607, + "time": 0.21440608566768413, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7505,13 +7505,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4307, - "time": 0.5749981388360619, + "noteOrder": 1631, + "time": 0.2176546627232551, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -7523,16 +7523,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4331, - "time": 0.5782467158916328, + "noteOrder": 1972, + "time": 0.26313474150124866, "position": { "x": 3, "y": 0 @@ -7551,13 +7551,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4429, - "time": 0.5912410241139168, + "noteOrder": 2045, + "time": 0.2728804726679616, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7574,11 +7574,11 @@ "isPlayAudio": false }, { - "lineGroupId": 240, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 4441, - "time": 0.5928653126417022, + "noteOrder": 2008, + "time": 0.26800760708460514, "position": { "x": 7, "y": 0 @@ -7592,18 +7592,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, + "lineGroupId": 117, "indexInLine": 2, "isSliding": false, - "noteOrder": 4453, - "time": 0.5944896011694877, + "noteOrder": 2045, + "time": 0.2728804726679616, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7615,16 +7615,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 3, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4465, - "time": 0.5961138896972732, + "noteOrder": 2118, + "time": 0.2826262038346745, "position": { "x": 3, "y": 0 @@ -7638,18 +7638,7539 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4526, + "noteOrder": 2130, + "time": 0.28425049236245997, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2130, + "time": 0.28425049236245997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2142, + "time": 0.2858747808902455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2142, + "time": 0.2858747808902455, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2154, + "time": 0.287499069418031, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2154, + "time": 0.287499069418031, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2167, + "time": 0.28912335794581645, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2167, + "time": 0.28912335794581645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2179, + "time": 0.29074764647360196, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2179, + "time": 0.29074764647360196, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2191, + "time": 0.2923719350013875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 2191, + "time": 0.2923719350013875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 2203, + "time": 0.29399622352917293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 2203, + "time": 0.29399622352917293, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 16, + "isSliding": false, + "noteOrder": 2215, + "time": 0.29562051205695844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2288, + "time": 0.30536624322367134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2300, + "time": 0.3069905317514568, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2300, + "time": 0.3069905317514568, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2313, + "time": 0.3086148202792423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2313, + "time": 0.3086148202792423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2325, + "time": 0.31023910880702776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2325, + "time": 0.31023910880702776, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2337, + "time": 0.3118633973348133, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2337, + "time": 0.3118633973348133, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2349, + "time": 0.3134876858625988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 2349, + "time": 0.3134876858625988, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 2361, + "time": 0.31511197439038424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 2361, + "time": 0.31511197439038424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 2373, + "time": 0.31673626291816975, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 2373, + "time": 0.31673626291816975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 16, + "isSliding": false, + "noteOrder": 2386, + "time": 0.3183605514459552, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2434, + "time": 0.32485770555709714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2446, + "time": 0.32648199408488265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2459, + "time": 0.3281062826126681, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2434, + "time": 0.32485770555709714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2446, + "time": 0.32648199408488265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2459, + "time": 0.3281062826126681, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2872, + "time": 0.38333209255737466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.3849563810851601, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2897, + "time": 0.3865806696129456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2909, + "time": 0.38820495814073114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2921, + "time": 0.38982924666851654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2946, + "time": 0.39307782372408756, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.394702112251873, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2970, + "time": 0.3963264007796585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2982, + "time": 0.39795068930744404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2994, + "time": 0.3995749778352295, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3067, + "time": 0.4093207090019424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3079, + "time": 0.4109449975297279, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3092, + "time": 0.41256928605751336, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3104, + "time": 0.4141935745852989, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3116, + "time": 0.41581786311308433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3140, + "time": 0.41906644016865535, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3152, + "time": 0.4206907286964408, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3165, + "time": 0.4223150172242263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3177, + "time": 0.42393930575201183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3189, + "time": 0.4255635942797973, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3213, + "time": 0.42881217133536825, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3238, + "time": 0.4320607483909392, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3262, + "time": 0.4353093254465102, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3286, + "time": 0.43855790250208115, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3311, + "time": 0.4418064795576522, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3335, + "time": 0.4450550566132231, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3359, + "time": 0.44830363366879405, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3384, + "time": 0.451552210724365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3505, + "time": 0.4677950960022199, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3554, + "time": 0.47429225011336185, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3578, + "time": 0.4775408271689328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3505, + "time": 0.4677950960022199, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3554, + "time": 0.47429225011336185, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3578, + "time": 0.4775408271689328, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3603, + "time": 0.4807894042245038, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3627, + "time": 0.48403798128007475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3615, + "time": 0.48241369275228924, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3627, + "time": 0.48403798128007475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3651, + "time": 0.4872865583356457, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.4905351353912167, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3664, + "time": 0.4889108468634312, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.4905351353912167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3700, + "time": 0.4937837124467877, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3725, + "time": 0.49703228950235867, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3712, + "time": 0.49540800097457316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3725, + "time": 0.49703228950235867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3749, + "time": 0.5002808665579296, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3773, + "time": 0.5035294436135006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3761, + "time": 0.5019051550857151, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3773, + "time": 0.5035294436135006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3798, + "time": 0.5067780206690715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3822, + "time": 0.5100265977246425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3810, + "time": 0.508402309196857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3822, + "time": 0.5100265977246425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5132751747802136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3871, + "time": 0.5165237518357845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3858, + "time": 0.514899463307999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3871, + "time": 0.5165237518357845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3895, + "time": 0.5197723288913555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.5230209059469265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3907, + "time": 0.521396617419141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.5230209059469265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3944, + "time": 0.5262694830024973, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3968, + "time": 0.5295180600580683, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3956, + "time": 0.5278937715302828, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3968, + "time": 0.5295180600580683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3992, + "time": 0.5327666371136393, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4004, + "time": 0.5343909256414248, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4004, + "time": 0.5343909256414248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4017, + "time": 0.5360152141692103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4017, + "time": 0.5360152141692103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4041, + "time": 0.5392637912247813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4053, + "time": 0.5408880797525668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4053, + "time": 0.5408880797525668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4065, + "time": 0.5425123682803522, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4065, + "time": 0.5425123682803522, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4090, + "time": 0.5457609453359232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4102, + "time": 0.5473852338637087, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4102, + "time": 0.5473852338637087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4114, + "time": 0.5490095223914943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4114, + "time": 0.5490095223914943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4114, + "time": 0.5490095223914943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4126, + "time": 0.5506338109192797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4126, + "time": 0.5506338109192797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4138, + "time": 0.5522580994470652, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4138, + "time": 0.5522580994470652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4138, + "time": 0.5522580994470652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4151, + "time": 0.5538823879748507, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4151, + "time": 0.5538823879748507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4163, + "time": 0.5555066765026362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4163, + "time": 0.5555066765026362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4175, + "time": 0.5571309650304217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4175, + "time": 0.5571309650304217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4187, + "time": 0.5587552535582071, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4187, + "time": 0.5587552535582071, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4211, + "time": 0.562003830613778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4224, + "time": 0.5636281191415635, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4224, + "time": 0.5636281191415635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4236, + "time": 0.565252407669349, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4248, + "time": 0.5668766961971345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4248, + "time": 0.5668766961971345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4260, + "time": 0.5685009847249199, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4272, + "time": 0.5701252732527055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4272, + "time": 0.5701252732527055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4284, + "time": 0.571749561780491, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4297, + "time": 0.5733738503082765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4297, + "time": 0.5733738503082765, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4309, + "time": 0.574998138836062, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4309, + "time": 0.574998138836062, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4309, + "time": 0.574998138836062, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4321, + "time": 0.5766224273638474, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4321, + "time": 0.5766224273638474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4333, + "time": 0.5782467158916329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4333, + "time": 0.5782467158916329, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4333, + "time": 0.5782467158916329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4345, + "time": 0.5798710044194184, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4345, + "time": 0.5798710044194184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4357, + "time": 0.5814952929472039, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4357, + "time": 0.5814952929472039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4430, + "time": 0.5912410241139169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4443, + "time": 0.5928653126417024, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4455, + "time": 0.5944896011694878, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4467, + "time": 0.5961138896972733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4528, "time": 0.6042353323362006, "position": { - "x": 3, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4540, + "time": 0.6058596208639861, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4552, + "time": 0.6074839093917717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4564, + "time": 0.6091081979195572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4625, + "time": 0.6172296405584846, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4637, + "time": 0.6188539290862701, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4650, + "time": 0.6204782176140555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4662, + "time": 0.622102506141841, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4662, + "time": 0.622102506141841, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4674, + "time": 0.6237267946696265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4723, + "time": 0.6302239487807685, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4747, + "time": 0.6334725258363395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4820, + "time": 0.6432182570030524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4832, + "time": 0.6448425455308379, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4844, + "time": 0.6464668340586234, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4856, + "time": 0.6480911225864088, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.6562125652253362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4929, + "time": 0.6578368537531217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4942, + "time": 0.6594611422809072, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4954, + "time": 0.6610854308086928, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5015, + "time": 0.6692068734476202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5027, + "time": 0.6708311619754056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5039, + "time": 0.6724554505031911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5051, + "time": 0.6740797390309765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5051, + "time": 0.6740797390309765, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5063, + "time": 0.675704027558762, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5112, + "time": 0.682201181669904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5136, + "time": 0.685449758725475, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5161, + "time": 0.688698335781046, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5173, + "time": 0.6903226243088315, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5173, + "time": 0.6903226243088315, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5185, + "time": 0.6919469128366169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5185, + "time": 0.6919469128366169, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5185, + "time": 0.6919469128366169, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5197, + "time": 0.6935712013644024, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5197, + "time": 0.6935712013644024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5209, + "time": 0.6951954898921879, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5209, + "time": 0.6951954898921879, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5209, + "time": 0.6951954898921879, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5222, + "time": 0.6968197784199734, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5222, + "time": 0.6968197784199734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5234, + "time": 0.698444066947759, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5234, + "time": 0.698444066947759, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 287, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5258, + "time": 0.7016926440033299, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 287, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5270, + "time": 0.7033169325311154, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 287, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5270, + "time": 0.7033169325311154, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 287, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7049412210589009, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 287, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7049412210589009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 289, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7049412210589009, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 289, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5295, + "time": 0.7065655095866864, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 289, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5295, + "time": 0.7065655095866864, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 289, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5307, + "time": 0.7081897981144717, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 289, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5307, + "time": 0.7081897981144717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 291, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5307, + "time": 0.7081897981144717, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 291, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5319, + "time": 0.7098140866422572, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 291, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5319, + "time": 0.7098140866422572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 291, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5331, + "time": 0.7114383751700427, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 291, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5331, + "time": 0.7114383751700427, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 297, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5355, + "time": 0.7146869522256137, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 297, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5368, + "time": 0.7163112407533992, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 297, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5368, + "time": 0.7163112407533992, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 298, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5380, + "time": 0.7179355292811846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 298, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5392, + "time": 0.7195598178089702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 298, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5392, + "time": 0.7195598178089702, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 299, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5404, + "time": 0.7211841063367557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 299, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5416, + "time": 0.7228083948645412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 299, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5416, + "time": 0.7228083948645412, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 300, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5429, + "time": 0.7244326833923267, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 300, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5441, + "time": 0.7260569719201121, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 300, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5441, + "time": 0.7260569719201121, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5550, + "time": 0.7406755686701816, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5562, + "time": 0.7422998571979671, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5562, + "time": 0.7422998571979671, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5575, + "time": 0.7439241457257524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5575, + "time": 0.7439241457257524, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5587, + "time": 0.7455484342535379, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5587, + "time": 0.7455484342535379, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5599, + "time": 0.7471727227813234, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5599, + "time": 0.7471727227813234, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5611, + "time": 0.7487970113091089, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5611, + "time": 0.7487970113091089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5623, + "time": 0.7504212998368944, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5623, + "time": 0.7504212998368944, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 5635, + "time": 0.7520455883646799, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 5635, + "time": 0.7520455883646799, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 16, + "isSliding": false, + "noteOrder": 5648, + "time": 0.7536698768924653, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 17, + "isSliding": false, + "noteOrder": 5648, + "time": 0.7536698768924653, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5648, + "time": 0.7536698768924653, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5660, + "time": 0.7552941654202509, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5660, + "time": 0.7552941654202509, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5672, + "time": 0.7569184539480364, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5672, + "time": 0.7569184539480364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5684, + "time": 0.7585427424758219, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5684, + "time": 0.7585427424758219, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5696, + "time": 0.7601670310036074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5708, + "time": 0.7617913195313928, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5708, + "time": 0.7617913195313928, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5721, + "time": 0.7634156080591783, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5721, + "time": 0.7634156080591783, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5733, + "time": 0.7650398965869638, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 5733, + "time": 0.7650398965869638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 312, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 5745, + "time": 0.7666641851147493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5745, + "time": 0.7666641851147493, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5757, + "time": 0.7682884736425348, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5757, + "time": 0.7682884736425348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5769, + "time": 0.7699127621703202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5769, + "time": 0.7699127621703202, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5782, + "time": 0.7715370506981057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5782, + "time": 0.7715370506981057, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5794, + "time": 0.7731613392258913, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 316, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5794, + "time": 0.7731613392258913, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5794, + "time": 0.7731613392258913, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5806, + "time": 0.7747856277536768, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5806, + "time": 0.7747856277536768, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5818, + "time": 0.7764099162814623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5818, + "time": 0.7764099162814623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5830, + "time": 0.7780342048092478, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5830, + "time": 0.7780342048092478, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 318, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5842, + "time": 0.7796584933370331, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 323, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5940, + "time": 0.792652801559317, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 323, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5952, + "time": 0.7942770900871026, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 323, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5952, + "time": 0.7942770900871026, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 323, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5964, + "time": 0.7959013786148881, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 323, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5964, + "time": 0.7959013786148881, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 326, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5988, + "time": 0.799149955670459, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 326, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6001, + "time": 0.8007742441982445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 326, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6001, + "time": 0.8007742441982445, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 326, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6013, + "time": 0.80239853272603, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 326, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6013, + "time": 0.80239853272603, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 329, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6037, + "time": 0.8056471097816009, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 329, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6049, + "time": 0.8072713983093864, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 329, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6049, + "time": 0.8072713983093864, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 329, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6061, + "time": 0.808895686837172, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 329, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6061, + "time": 0.808895686837172, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 332, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6086, + "time": 0.812144263892743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 332, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6098, + "time": 0.8137685524205285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 332, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6098, + "time": 0.8137685524205285, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 332, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6110, + "time": 0.8153928409483139, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 332, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6110, + "time": 0.8153928409483139, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 335, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6134, + "time": 0.8186414180038848, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 335, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6147, + "time": 0.8202657065316703, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 335, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6147, + "time": 0.8202657065316703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 335, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6159, + "time": 0.8218899950594558, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 335, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6159, + "time": 0.8218899950594558, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 338, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6183, + "time": 0.8251385721150267, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 338, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6195, + "time": 0.8267628606428122, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 338, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6195, + "time": 0.8267628606428122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 338, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6208, + "time": 0.8283871491705977, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 338, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6208, + "time": 0.8283871491705977, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 346, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6329, + "time": 0.8446300344484526, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 346, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6341, + "time": 0.8462543229762381, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 346, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6341, + "time": 0.8462543229762381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 346, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6354, + "time": 0.8478786115040237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 346, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6354, + "time": 0.8478786115040237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 347, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6354, + "time": 0.8478786115040237, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 347, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6366, + "time": 0.8495029000318091, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 347, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6366, + "time": 0.8495029000318091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 347, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6378, + "time": 0.8511271885595946, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 347, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6378, + "time": 0.8511271885595946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 348, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6378, + "time": 0.8511271885595946, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 348, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6390, + "time": 0.85275147708738, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 348, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6390, + "time": 0.85275147708738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 348, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6402, + "time": 0.8543757656151655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 348, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6402, + "time": 0.8543757656151655, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 352, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6427, + "time": 0.8576243426707365, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 352, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6439, + "time": 0.8592486311985219, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 352, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6439, + "time": 0.8592486311985219, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 352, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6451, + "time": 0.8608729197263074, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -7666,13 +15187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 1, + "lineGroupId": 352, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4538, - "time": 0.6058596208639861, + "noteOrder": 6451, + "time": 0.8608729197263074, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7689,13 +15210,36 @@ "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 353, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6451, + "time": 0.8608729197263074, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 353, "indexInLine": 2, "isSliding": false, - "noteOrder": 4550, - "time": 0.6074839093917715, + "noteOrder": 6463, + "time": 0.8624972082540929, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -7707,18 +15251,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 353, "indexInLine": 3, "isSliding": false, - "noteOrder": 4563, - "time": 0.6091081979195571, + "noteOrder": 6463, + "time": 0.8624972082540929, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7730,18 +15274,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 353, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4623, - "time": 0.6172296405584844, + "noteOrder": 6475, + "time": 0.8641214967818784, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7758,13 +15302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 1, + "lineGroupId": 353, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4636, - "time": 0.61885392908627, + "noteOrder": 6475, + "time": 0.8641214967818784, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7781,13 +15325,36 @@ "isPlayAudio": false }, { - "lineGroupId": 251, + "lineGroupId": 354, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6475, + "time": 0.8641214967818784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 354, "indexInLine": 2, "isSliding": false, - "noteOrder": 4648, - "time": 0.6204782176140555, + "noteOrder": 6487, + "time": 0.865745785309664, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -7799,18 +15366,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 251, + "lineGroupId": 354, "indexInLine": 3, "isSliding": false, - "noteOrder": 4660, - "time": 0.6221025061418409, + "noteOrder": 6487, + "time": 0.865745785309664, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7822,18 +15389,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 354, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4660, - "time": 0.6221025061418409, + "noteOrder": 6500, + "time": 0.8673700738374494, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -7850,13 +15417,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 1, + "lineGroupId": 354, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4672, - "time": 0.6237267946696264, + "noteOrder": 6500, + "time": 0.8673700738374494, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -7873,13 +15440,36 @@ "isPlayAudio": false }, { - "lineGroupId": 253, + "lineGroupId": 357, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6524, + "time": 0.8706186508930204, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 357, "indexInLine": 2, "isSliding": false, - "noteOrder": 4721, - "time": 0.6302239487807684, + "noteOrder": 6536, + "time": 0.8722429394208059, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -7891,18 +15481,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, + "lineGroupId": 357, "indexInLine": 3, "isSliding": false, - "noteOrder": 4745, - "time": 0.6334725258363394, + "noteOrder": 6536, + "time": 0.8722429394208059, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -7914,18 +15504,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 357, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4818, - "time": 0.6432182570030522, + "noteOrder": 6548, + "time": 0.8738672279485914, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7942,13 +15532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 1, + "lineGroupId": 357, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4830, - "time": 0.6448425455308378, + "noteOrder": 6548, + "time": 0.8738672279485914, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7965,13 +15555,36 @@ "isPlayAudio": false }, { - "lineGroupId": 260, + "lineGroupId": 358, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6548, + "time": 0.8738672279485914, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 358, "indexInLine": 2, "isSliding": false, - "noteOrder": 4842, - "time": 0.6464668340586232, + "noteOrder": 6560, + "time": 0.8754915164763768, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -7983,18 +15596,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 260, + "lineGroupId": 358, "indexInLine": 3, "isSliding": false, - "noteOrder": 4855, - "time": 0.6480911225864088, + "noteOrder": 6560, + "time": 0.8754915164763768, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -8006,18 +15619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 265, - "indexInLine": 0, + "lineGroupId": 358, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4915, - "time": 0.6562125652253362, + "noteOrder": 6573, + "time": 0.8771158050041623, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -8029,18 +15642,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 265, + "lineGroupId": 358, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6573, + "time": 0.8771158050041623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 359, "indexInLine": 1, "isSliding": false, - "noteOrder": 4928, - "time": 0.6578368537531216, + "noteOrder": 6573, + "time": 0.8771158050041623, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -8057,13 +15693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 265, + "lineGroupId": 359, "indexInLine": 2, "isSliding": false, - "noteOrder": 4940, - "time": 0.6594611422809071, + "noteOrder": 6585, + "time": 0.8787400935319478, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -8080,13 +15716,13 @@ "isPlayAudio": false }, { - "lineGroupId": 265, + "lineGroupId": 359, "indexInLine": 3, "isSliding": false, - "noteOrder": 4952, - "time": 0.6610854308086925, + "noteOrder": 6585, + "time": 0.8787400935319478, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -8103,13 +15739,13 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 359, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5013, - "time": 0.66920687344762, + "noteOrder": 6597, + "time": 0.8803643820597333, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -8121,18 +15757,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 1, + "lineGroupId": 359, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5025, - "time": 0.6708311619754056, + "noteOrder": 6597, + "time": 0.8803643820597333, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8144,18 +15780,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 2, + "lineGroupId": 360, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5037, - "time": 0.672455450503191, + "noteOrder": 6597, + "time": 0.8803643820597333, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -8172,13 +15808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 3, + "lineGroupId": 360, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5049, - "time": 0.6740797390309765, + "noteOrder": 6609, + "time": 0.8819886705875188, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -8195,13 +15831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 360, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5049, - "time": 0.6740797390309765, + "noteOrder": 6609, + "time": 0.8819886705875188, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -8213,18 +15849,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 1, + "lineGroupId": 360, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5061, - "time": 0.6757040275587619, + "noteOrder": 6621, + "time": 0.8836129591153044, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -8236,18 +15872,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 2, + "lineGroupId": 360, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5110, - "time": 0.6822011816699038, + "noteOrder": 6621, + "time": 0.8836129591153044, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -8259,18 +15895,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 3, + "lineGroupId": 360, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5134, - "time": 0.685449758725475, + "noteOrder": 6646, + "time": 0.8868615361708753, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -8282,18 +15918,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 360, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5159, - "time": 0.6886983357810459, + "noteOrder": 6670, + "time": 0.8901101132264462, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8310,13 +15946,13 @@ "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5183, - "time": 0.6919469128366169, + "noteOrder": 6719, + "time": 0.8966072673375881, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -8328,18 +15964,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5207, - "time": 0.6951954898921878, + "noteOrder": 6731, + "time": 0.8982315558653736, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -8356,13 +15992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 287, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5256, - "time": 0.7016926440033298, + "noteOrder": 6731, + "time": 0.8982315558653736, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -8374,18 +16010,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5280, - "time": 0.7049412210589007, + "noteOrder": 6743, + "time": 0.8998558443931591, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -8402,13 +16038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5305, - "time": 0.7081897981144717, + "noteOrder": 6743, + "time": 0.8998558443931591, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8420,18 +16056,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5353, - "time": 0.7146869522256136, + "noteOrder": 6755, + "time": 0.9014801329209446, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8448,13 +16084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 298, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5378, - "time": 0.7179355292811846, + "noteOrder": 6755, + "time": 0.9014801329209446, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8466,18 +16102,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5402, - "time": 0.7211841063367557, + "noteOrder": 6767, + "time": 0.90310442144873, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -8494,13 +16130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5426, - "time": 0.7244326833923266, + "noteOrder": 6767, + "time": 0.90310442144873, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -8512,16 +16148,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 308, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5548, - "time": 0.7406755686701814, + "noteOrder": 6780, + "time": 0.9047287099765156, "position": { "x": 8, "y": 0 @@ -8535,18 +16171,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 312, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 11, "isSliding": false, - "noteOrder": 5645, - "time": 0.7536698768924653, + "noteOrder": 6780, + "time": 0.9047287099765156, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -8563,13 +16199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 316, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 12, "isSliding": false, - "noteOrder": 5743, - "time": 0.7666641851147492, + "noteOrder": 6792, + "time": 0.9063529985043011, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -8581,18 +16217,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 318, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 13, "isSliding": false, - "noteOrder": 5791, - "time": 0.7731613392258911, + "noteOrder": 6792, + "time": 0.9063529985043011, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8609,13 +16245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 323, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 14, "isSliding": false, - "noteOrder": 5937, - "time": 0.7926528015593169, + "noteOrder": 6804, + "time": 0.9079772870320866, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -8632,13 +16268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 326, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 15, "isSliding": false, - "noteOrder": 5986, - "time": 0.7991499556704589, + "noteOrder": 6804, + "time": 0.9079772870320866, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -8650,18 +16286,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 329, - "indexInLine": 0, + "lineGroupId": 368, + "indexInLine": 16, "isSliding": false, - "noteOrder": 6035, - "time": 0.8056471097816008, + "noteOrder": 6816, + "time": 0.9096015755598721, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8678,13 +16314,13 @@ "isPlayAudio": false }, { - "lineGroupId": 332, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6083, - "time": 0.8121442638927427, + "noteOrder": 6816, + "time": 0.9096015755598721, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -8701,13 +16337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 335, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6132, - "time": 0.8186414180038848, + "noteOrder": 6828, + "time": 0.9112258640876575, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -8719,18 +16355,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6181, - "time": 0.8251385721150267, + "noteOrder": 6828, + "time": 0.9112258640876575, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8747,13 +16383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 346, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6327, - "time": 0.8446300344484524, + "noteOrder": 6840, + "time": 0.912850152615443, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -8770,13 +16406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 347, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6351, - "time": 0.8478786115040234, + "noteOrder": 6840, + "time": 0.912850152615443, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -8788,18 +16424,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 348, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6375, - "time": 0.8511271885595945, + "noteOrder": 6853, + "time": 0.9144744411432285, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -8816,13 +16452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 352, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6424, - "time": 0.8576243426707364, + "noteOrder": 6853, + "time": 0.9144744411432285, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -8834,18 +16470,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 353, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 8, "isSliding": false, - "noteOrder": 6448, - "time": 0.8608729197263073, + "noteOrder": 6865, + "time": 0.916098729671014, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -8862,13 +16498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 354, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 9, "isSliding": false, - "noteOrder": 6473, - "time": 0.8641214967818783, + "noteOrder": 6877, + "time": 0.9177230181987995, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -8880,18 +16516,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 357, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 10, "isSliding": false, - "noteOrder": 6521, - "time": 0.8706186508930203, + "noteOrder": 6877, + "time": 0.9177230181987995, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8908,13 +16544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 358, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 11, "isSliding": false, - "noteOrder": 6546, - "time": 0.8738672279485912, + "noteOrder": 6889, + "time": 0.919347306726585, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -8926,18 +16562,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 359, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 12, "isSliding": false, - "noteOrder": 6570, - "time": 0.8771158050041622, + "noteOrder": 6889, + "time": 0.919347306726585, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -8954,13 +16590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 360, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 13, "isSliding": false, - "noteOrder": 6594, - "time": 0.8803643820597331, + "noteOrder": 6901, + "time": 0.9209715952543704, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -8972,16 +16608,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 360, - "indexInLine": 3, + "lineGroupId": 372, + "indexInLine": 14, "isSliding": false, - "noteOrder": 6643, - "time": 0.8868615361708752, + "noteOrder": 6901, + "time": 0.9209715952543704, "position": { "x": 4, "y": 0 @@ -8995,16 +16631,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 360, - "indexInLine": 4, + "lineGroupId": 372, + "indexInLine": 15, "isSliding": false, - "noteOrder": 6667, - "time": 0.8901101132264461, + "noteOrder": 6913, + "time": 0.922595883782156, "position": { "x": 4, "y": 0 @@ -9018,18 +16654,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 368, - "indexInLine": 0, + "lineGroupId": 372, + "indexInLine": 16, "isSliding": false, - "noteOrder": 6716, - "time": 0.896607267337588, + "noteOrder": 6926, + "time": 0.9242201723099414, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -9041,18 +16677,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 368, - "indexInLine": 8, + "lineGroupId": 376, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6814, - "time": 0.9096015755598719, + "noteOrder": 6913, + "time": 0.922595883782156, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -9069,11 +16705,11 @@ "isPlayAudio": false }, { - "lineGroupId": 372, - "indexInLine": 0, + "lineGroupId": 376, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6814, - "time": 0.9096015755598719, + "noteOrder": 6926, + "time": 0.9242201723099414, "position": { "x": 2, "y": 0 @@ -9087,16 +16723,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 372, - "indexInLine": 8, + "lineGroupId": 376, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6911, - "time": 0.9225958837821558, + "noteOrder": 6926, + "time": 0.9242201723099414, "position": { "x": 4, "y": 0 @@ -9110,18 +16746,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 372, - "indexInLine": 9, + "lineGroupId": 376, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6923, - "time": 0.9242201723099412, + "noteOrder": 6938, + "time": 0.9258444608377269, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -9133,18 +16769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 376, - "indexInLine": 0, + "lineGroupId": 377, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6911, - "time": 0.9225958837821558, + "noteOrder": 6938, + "time": 0.9258444608377269, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -9156,18 +16792,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 376, + "lineGroupId": 377, "indexInLine": 2, "isSliding": false, - "noteOrder": 6935, - "time": 0.9258444608377268, + "noteOrder": 6950, + "time": 0.9274687493655124, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -9179,18 +16815,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 377, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6935, - "time": 0.9258444608377268, + "noteOrder": 6950, + "time": 0.9274687493655124, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -9208,9 +16844,9 @@ }, { "lineGroupId": 377, - "indexInLine": 2, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6960, + "noteOrder": 6962, "time": 0.9290930378932978, "position": { "x": 7, @@ -9231,10 +16867,10 @@ }, { "lineGroupId": 390, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7106, - "time": 0.9485845002267235, + "noteOrder": 7108, + "time": 0.9485845002267237, "position": { "x": 3, "y": 0 @@ -9254,10 +16890,10 @@ }, { "lineGroupId": 390, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.9745731166712913, + "noteOrder": 7303, + "time": 0.9745731166712914, "position": { "x": 3, "y": 0 @@ -9277,10 +16913,10 @@ }, { "lineGroupId": 391, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7106, - "time": 0.9485845002267235, + "noteOrder": 7108, + "time": 0.9485845002267237, "position": { "x": 7, "y": 0 @@ -9300,10 +16936,10 @@ }, { "lineGroupId": 391, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.9745731166712913, + "noteOrder": 7303, + "time": 0.9745731166712914, "position": { "x": 7, "y": 0 diff --git a/tracks/Let Me See Your Dance/280_difficulty_1b.json b/tracks/Let Me See Your Dance/280_difficulty_1b.json index 5994a5a2..5046a92c 100644 --- a/tracks/Let Me See Your Dance/280_difficulty_1b.json +++ b/tracks/Let Me See Your Dance/280_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.012994308222283884, + "time": 0.012994308222283885, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.016242885277854856, + "time": 0.01624288527785486, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 170, - "time": 0.022740039388996797, + "time": 0.0227400393889968, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 195, - "time": 0.025988616444567767, + "time": 0.02598861644456777, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 243, - "time": 0.03248577055570971, + "time": 0.03248577055570972, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 268, - "time": 0.03573434761128068, + "time": 0.035734347611280685, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 292, - "time": 0.03898292466685165, + "time": 0.03898292466685166, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 316, - "time": 0.04223150172242262, + "time": 0.042231501722422626, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 341, - "time": 0.04548007877799359, + "time": 0.0454800787779936, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 365, - "time": 0.04872865583356456, + "time": 0.04872865583356457, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 511, - "time": 0.06822011816699039, + "time": 0.0682201181669904, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 535, - "time": 0.07146869522256136, + "noteOrder": 536, + "time": 0.07146869522256137, "position": { "x": 4, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 608, - "time": 0.08121442638927427, + "noteOrder": 609, + "time": 0.08121442638927429, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 633, - "time": 0.08446300344484524, + "time": 0.08446300344484525, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 681, - "time": 0.09096015755598719, + "noteOrder": 682, + "time": 0.0909601575559872, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 730, - "time": 0.09745731166712912, + "time": 0.09745731166712913, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 779, - "time": 0.10395446577827107, + "time": 0.10395446577827108, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 779, - "time": 0.10395446577827107, + "time": 0.10395446577827108, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 925, - "time": 0.12344592811169691, + "time": 0.12344592811169693, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1022, - "time": 0.13644023633398078, + "time": 0.1364402363339808, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1046, + "noteOrder": 1047, "time": 0.13968881338955177, "position": { "x": 7, @@ -454,7 +454,7 @@ }, { "noteOrder": 1095, - "time": 0.1461859675006937, + "time": 0.14618596750069374, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1119, - "time": 0.14943454455626468, + "noteOrder": 1120, + "time": 0.1494345445562647, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1144, - "time": 0.15268312161183564, + "time": 0.15268312161183567, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1168, - "time": 0.1559316986674066, + "time": 0.15593169866740664, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1192, - "time": 0.15918027572297758, + "noteOrder": 1193, + "time": 0.1591802757229776, "position": { "x": 2, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1217, - "time": 0.16242885277854854, + "time": 0.16242885277854857, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1241, - "time": 0.16567742983411954, + "noteOrder": 1242, + "time": 0.16567742983411957, "position": { "x": 2, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1314, - "time": 0.17542316100083244, + "noteOrder": 1315, + "time": 0.17542316100083247, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1338, - "time": 0.1786717380564034, + "noteOrder": 1339, + "time": 0.17867173805640343, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1411, + "noteOrder": 1412, "time": 0.18841746922311634, "position": { "x": 3, @@ -654,7 +654,7 @@ }, { "noteOrder": 1436, - "time": 0.1916660462786873, + "time": 0.19166604627868733, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1484, - "time": 0.19816320038982924, + "noteOrder": 1485, + "time": 0.19816320038982926, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1509, - "time": 0.2014117774454002, + "time": 0.20141177744540023, "position": { "x": 5, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1533, + "noteOrder": 1534, "time": 0.2046603545009712, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1557, - "time": 0.20790893155654214, + "noteOrder": 1558, + "time": 0.20790893155654216, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1582, - "time": 0.2111575086121131, + "time": 0.21115750861211316, "position": { "x": 8, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1606, - "time": 0.2144060856676841, + "noteOrder": 1607, + "time": 0.21440608566768413, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1630, - "time": 0.21765466272325507, + "noteOrder": 1631, + "time": 0.2176546627232551, "position": { "x": 8, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3407, - "time": 0.45480078777993593, + "noteOrder": 3408, + "time": 0.45480078777993604, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3431, - "time": 0.4580493648355069, + "noteOrder": 3432, + "time": 0.458049364835507, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3455, - "time": 0.4612979418910779, + "noteOrder": 3457, + "time": 0.461297941891078, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3481, "time": 0.4645465189466489, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.4840379812800747, + "noteOrder": 3627, + "time": 0.48403798128007475, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.48728655833564566, + "noteOrder": 3651, + "time": 0.4872865583356457, "position": { "x": 8, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3674, - "time": 0.4905351353912166, + "noteOrder": 3676, + "time": 0.4905351353912167, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3699, - "time": 0.49378371244678765, + "noteOrder": 3700, + "time": 0.4937837124467877, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.49703228950235856, + "noteOrder": 3725, + "time": 0.49703228950235867, "position": { "x": 2, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 3749, "time": 0.5002808665579296, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3772, - "time": 0.5035294436135005, + "noteOrder": 3773, + "time": 0.5035294436135006, "position": { "x": 2, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3796, + "noteOrder": 3798, "time": 0.5067780206690715, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3820, - "time": 0.5100265977246424, + "noteOrder": 3822, + "time": 0.5100265977246425, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3845, - "time": 0.5132751747802133, + "noteOrder": 3846, + "time": 0.5132751747802136, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3869, - "time": 0.5165237518357844, + "noteOrder": 3871, + "time": 0.5165237518357845, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3893, - "time": 0.5197723288913554, + "noteOrder": 3895, + "time": 0.5197723288913555, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.5230209059469264, + "noteOrder": 3919, + "time": 0.5230209059469265, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3944, "time": 0.5262694830024973, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 3968, "time": 0.5295180600580683, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3991, + "noteOrder": 3992, "time": 0.5327666371136393, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.5360152141692102, + "noteOrder": 4017, + "time": 0.5360152141692103, "position": { "x": 8, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4039, - "time": 0.5392637912247812, + "noteOrder": 4041, + "time": 0.5392637912247813, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4064, - "time": 0.5425123682803521, + "noteOrder": 4065, + "time": 0.5425123682803522, "position": { "x": 8, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4088, - "time": 0.5457609453359231, + "noteOrder": 4090, + "time": 0.5457609453359232, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.549009522391494, + "noteOrder": 4114, + "time": 0.5490095223914943, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4137, + "noteOrder": 4138, "time": 0.5522580994470652, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4161, - "time": 0.5555066765026361, + "noteOrder": 4163, + "time": 0.5555066765026362, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4187, "time": 0.5587552535582071, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4210, + "noteOrder": 4211, "time": 0.562003830613778, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4234, - "time": 0.5652524076693489, + "noteOrder": 4236, + "time": 0.565252407669349, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4258, + "noteOrder": 4260, "time": 0.5685009847249199, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4283, - "time": 0.5717495617804909, + "noteOrder": 4284, + "time": 0.571749561780491, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4307, - "time": 0.5749981388360619, + "noteOrder": 4309, + "time": 0.574998138836062, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4331, - "time": 0.5782467158916328, + "noteOrder": 4333, + "time": 0.5782467158916329, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4356, - "time": 0.5814952929472038, + "noteOrder": 4357, + "time": 0.5814952929472039, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4429, - "time": 0.5912410241139168, + "noteOrder": 4430, + "time": 0.5912410241139169, "position": { "x": 4, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4526, + "noteOrder": 4528, "time": 0.6042353323362006, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4818, - "time": 0.6432182570030522, + "noteOrder": 4820, + "time": 0.6432182570030524, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4915, + "noteOrder": 4917, "time": 0.6562125652253362, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.6886983357810459, + "noteOrder": 5161, + "time": 0.688698335781046, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.6919469128366169, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5207, - "time": 0.6951954898921878, + "noteOrder": 5209, + "time": 0.6951954898921879, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5232, - "time": 0.6984440669477587, + "noteOrder": 5234, + "time": 0.698444066947759, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5256, - "time": 0.7016926440033298, + "noteOrder": 5258, + "time": 0.7016926440033299, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5280, - "time": 0.7049412210589007, + "noteOrder": 5282, + "time": 0.7049412210589009, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5305, + "noteOrder": 5307, "time": 0.7081897981144717, "position": { "x": 6, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5329, - "time": 0.7114383751700426, + "noteOrder": 5331, + "time": 0.7114383751700427, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5353, - "time": 0.7146869522256136, + "noteOrder": 5355, + "time": 0.7146869522256137, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5378, + "noteOrder": 5380, "time": 0.7179355292811846, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5402, + "noteOrder": 5404, "time": 0.7211841063367557, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5426, - "time": 0.7244326833923266, + "noteOrder": 5429, + "time": 0.7244326833923267, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.7276812604478975, + "noteOrder": 5453, + "time": 0.7276812604478976, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5572, + "noteOrder": 5575, "time": 0.7439241457257524, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5597, - "time": 0.7471727227813233, + "noteOrder": 5599, + "time": 0.7471727227813234, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5694, - "time": 0.7601670310036073, + "noteOrder": 5696, + "time": 0.7601670310036074, "position": { "x": 3, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5767, - "time": 0.7699127621703201, + "noteOrder": 5769, + "time": 0.7699127621703202, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5791, - "time": 0.7731613392258911, + "noteOrder": 5794, + "time": 0.7731613392258913, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5840, - "time": 0.779658493337033, + "noteOrder": 5842, + "time": 0.7796584933370331, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5889, - "time": 0.786155647448175, + "noteOrder": 5891, + "time": 0.7861556474481751, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5986, - "time": 0.7991499556704589, + "noteOrder": 5988, + "time": 0.799149955670459, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6010, - "time": 0.8023985327260298, + "noteOrder": 6013, + "time": 0.80239853272603, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6083, - "time": 0.8121442638927427, + "noteOrder": 6086, + "time": 0.812144263892743, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6108, - "time": 0.8153928409483137, + "noteOrder": 6110, + "time": 0.8153928409483139, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6156, - "time": 0.8218899950594557, + "noteOrder": 6159, + "time": 0.8218899950594558, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6181, + "noteOrder": 6183, "time": 0.8251385721150267, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6205, - "time": 0.8283871491705976, + "noteOrder": 6208, + "time": 0.8283871491705977, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6229, - "time": 0.8316357262261685, + "noteOrder": 6232, + "time": 0.8316357262261687, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6254, - "time": 0.8348843032817396, + "noteOrder": 6256, + "time": 0.8348843032817397, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6278, - "time": 0.8381328803373105, + "noteOrder": 6281, + "time": 0.8381328803373107, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6302, - "time": 0.8413814573928815, + "noteOrder": 6305, + "time": 0.8413814573928816, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6375, - "time": 0.8511271885595945, + "noteOrder": 6378, + "time": 0.8511271885595946, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6400, + "noteOrder": 6402, "time": 0.8543757656151655, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6473, - "time": 0.8641214967818783, + "noteOrder": 6475, + "time": 0.8641214967818784, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6497, - "time": 0.8673700738374492, + "noteOrder": 6500, + "time": 0.8673700738374494, "position": { "x": 7, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6546, - "time": 0.8738672279485912, + "noteOrder": 6548, + "time": 0.8738672279485914, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6570, - "time": 0.8771158050041622, + "noteOrder": 6573, + "time": 0.8771158050041623, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6594, - "time": 0.8803643820597331, + "noteOrder": 6597, + "time": 0.8803643820597333, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6619, - "time": 0.883612959115304, + "noteOrder": 6621, + "time": 0.8836129591153044, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6643, - "time": 0.8868615361708752, + "noteOrder": 6646, + "time": 0.8868615361708753, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6667, - "time": 0.8901101132264461, + "noteOrder": 6670, + "time": 0.8901101132264462, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6692, + "noteOrder": 6694, "time": 0.8933586902820171, "position": { "x": 6, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6765, - "time": 0.9031044214487299, + "noteOrder": 6767, + "time": 0.90310442144873, "position": { "x": 3, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6789, - "time": 0.906352998504301, + "noteOrder": 6792, + "time": 0.9063529985043011, "position": { "x": 3, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6862, - "time": 0.9160987296710138, + "noteOrder": 6865, + "time": 0.916098729671014, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6887, - "time": 0.9193473067265848, + "noteOrder": 6889, + "time": 0.919347306726585, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6935, - "time": 0.9258444608377268, + "noteOrder": 6938, + "time": 0.9258444608377269, "position": { "x": 4, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 6962, "time": 0.9290930378932978, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6984, - "time": 0.9323416149488687, + "noteOrder": 6986, + "time": 0.9323416149488688, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 7008, - "time": 0.9355901920044396, + "noteOrder": 7011, + "time": 0.9355901920044398, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 7057, - "time": 0.9420873461155815, + "noteOrder": 7060, + "time": 0.9420873461155818, "position": { "x": 3, "y": 0 @@ -2616,10 +2616,33 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.019491462333425826, + "time": 0.01949146233342583, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 3, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 158, + "time": 0.021115750861211313, "position": { "x": 7, "y": 0 @@ -2637,12 +2660,150 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 3, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 158, + "time": 0.021115750861211313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 219, - "time": 0.029237193500138738, + "time": 0.029237193500138745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 231, + "time": 0.03086148202792423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 231, + "time": 0.03086148202792423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 487, + "time": 0.06497154111141944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 536, + "time": 0.07146869522256137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 584, + "time": 0.07796584933370332, "position": { "x": 3, "y": 0 @@ -2656,16 +2817,1350 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 633, + "time": 0.08446300344484525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 876, + "time": 0.11694877400055498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 889, + "time": 0.11857306252834046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 889, + "time": 0.11857306252834046, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 901, + "time": 0.12019735105612595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 913, + "time": 0.12182163958391143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 913, + "time": 0.12182163958391143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 974, + "time": 0.12994308222283887, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 986, + "time": 0.13156737075062433, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 986, + "time": 0.13156737075062433, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 998, + "time": 0.1331916592784098, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1010, + "time": 0.13481594780619532, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1010, + "time": 0.13481594780619532, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1071, + "time": 0.14293739044512274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1168, + "time": 0.15593169866740664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1266, + "time": 0.1689260068896905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1278, + "time": 0.170550295417476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1278, + "time": 0.170550295417476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1290, + "time": 0.1721745839452615, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1302, + "time": 0.17379887247304698, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1302, + "time": 0.17379887247304698, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1363, + "time": 0.1819203151119744, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1375, + "time": 0.1835446036397599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1375, + "time": 0.1835446036397599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1388, + "time": 0.1851688921675454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1400, + "time": 0.18679318069533085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1400, + "time": 0.18679318069533085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1461, + "time": 0.19491462333425827, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1558, + "time": 0.20790893155654216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2045, + "time": 0.2728804726679616, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2094, + "time": 0.27937762677910355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2142, + "time": 0.2858747808902455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2191, + "time": 0.2923719350013875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2240, + "time": 0.2988690891125294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2288, + "time": 0.30536624322367134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2337, + "time": 0.3118633973348133, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2386, + "time": 0.3183605514459552, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2434, + "time": 0.32485770555709714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2483, + "time": 0.33135485966823913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2532, + "time": 0.337852013779381, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2580, + "time": 0.344349167890523, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2629, + "time": 0.35084632200166493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2678, + "time": 0.35734347611280687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2726, + "time": 0.3638406302239488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2775, + "time": 0.3703377843350908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2824, + "time": 0.37683493844623267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2872, + "time": 0.38333209255737466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2921, + "time": 0.38982924666851654, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2970, + "time": 0.3963264007796585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3019, + "time": 0.40282355489080046, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3067, + "time": 0.4093207090019424, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3116, + "time": 0.41581786311308433, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3165, + "time": 0.4223150172242263, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3213, + "time": 0.42881217133536825, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3262, + "time": 0.4353093254465102, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3311, + "time": 0.4418064795576522, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3359, + "time": 0.44830363366879405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3505, + "time": 0.4677950960022199, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 487, - "time": 0.06497154111141942, + "noteOrder": 3554, + "time": 0.47429225011336185, "position": { "x": 7, "y": 0 @@ -2684,13 +4179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 535, - "time": 0.07146869522256136, + "noteOrder": 3578, + "time": 0.4775408271689328, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2707,13 +4202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 4, "isSliding": false, - "noteOrder": 584, - "time": 0.0779658493337033, + "noteOrder": 3603, + "time": 0.4807894042245038, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2725,18 +4220,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 633, - "time": 0.08446300344484524, + "noteOrder": 3505, + "time": 0.4677950960022199, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2753,13 +4248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 876, - "time": 0.11694877400055495, + "noteOrder": 3554, + "time": 0.47429225011336185, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2771,18 +4266,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 900, - "time": 0.12019735105612593, + "noteOrder": 3578, + "time": 0.4775408271689328, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2799,13 +4294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 4, "isSliding": false, - "noteOrder": 973, - "time": 0.12994308222283885, + "noteOrder": 3603, + "time": 0.4807894042245038, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2817,18 +4312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 998, - "time": 0.1331916592784098, + "noteOrder": 4382, + "time": 0.584743870002775, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2840,16 +4335,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1071, - "time": 0.14293739044512271, + "noteOrder": 4430, + "time": 0.5912410241139169, "position": { "x": 7, "y": 0 @@ -2868,13 +4363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 1168, - "time": 0.1559316986674066, + "noteOrder": 4479, + "time": 0.5977381782250588, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2886,16 +4381,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1265, - "time": 0.16892600688969048, + "noteOrder": 4528, + "time": 0.6042353323362006, "position": { "x": 3, "y": 0 @@ -2914,13 +4409,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1290, - "time": 0.17217458394526147, + "noteOrder": 4577, + "time": 0.6107324864473427, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2932,18 +4427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1363, - "time": 0.18192031511197437, + "noteOrder": 4601, + "time": 0.6139810635029136, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2960,13 +4455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1387, - "time": 0.18516889216754534, + "noteOrder": 4601, + "time": 0.6139810635029136, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2978,18 +4473,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1460, - "time": 0.19491462333425824, + "noteOrder": 4625, + "time": 0.6172296405584846, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3001,16 +4496,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1557, - "time": 0.20790893155654214, + "noteOrder": 4650, + "time": 0.6204782176140555, "position": { "x": 6, "y": 0 @@ -3024,16 +4519,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2044, - "time": 0.27288047266796156, + "noteOrder": 4650, + "time": 0.6204782176140555, "position": { "x": 6, "y": 0 @@ -3052,13 +4547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 2093, - "time": 0.27937762677910355, + "noteOrder": 4674, + "time": 0.6237267946696265, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3070,18 +4565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2141, - "time": 0.28587478089024543, + "noteOrder": 4698, + "time": 0.6269753717251976, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3098,11 +4593,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2190, - "time": 0.2923719350013874, + "noteOrder": 4698, + "time": 0.6269753717251976, "position": { "x": 4, "y": 0 @@ -3121,11 +4616,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2239, - "time": 0.29886908911252935, + "noteOrder": 4723, + "time": 0.6302239487807685, "position": { "x": 7, "y": 0 @@ -3144,11 +4639,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2287, - "time": 0.3053662432236713, + "noteOrder": 4747, + "time": 0.6334725258363395, "position": { "x": 7, "y": 0 @@ -3167,11 +4662,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2336, - "time": 0.3118633973348132, + "noteOrder": 4747, + "time": 0.6334725258363395, "position": { "x": 6, "y": 0 @@ -3185,16 +4680,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 2385, - "time": 0.31836055144595515, + "noteOrder": 4771, + "time": 0.6367211028919104, "position": { "x": 6, "y": 0 @@ -3213,13 +4708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2433, - "time": 0.3248577055570971, + "noteOrder": 4820, + "time": 0.6432182570030524, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3236,11 +4731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 2482, - "time": 0.3313548596682391, + "noteOrder": 4869, + "time": 0.6497154111141943, "position": { "x": 4, "y": 0 @@ -3254,18 +4749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2531, - "time": 0.33785201377938096, + "noteOrder": 4917, + "time": 0.6562125652253362, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3282,13 +4777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 2579, - "time": 0.34434916789052294, + "noteOrder": 4966, + "time": 0.6627097193364783, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3305,13 +4800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2628, - "time": 0.3508463220016649, + "noteOrder": 4990, + "time": 0.6659582963920492, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3328,13 +4823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2677, - "time": 0.3573434761128068, + "noteOrder": 4990, + "time": 0.6659582963920492, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3351,13 +4846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2725, - "time": 0.36384063022394875, + "noteOrder": 5015, + "time": 0.6692068734476202, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3374,13 +4869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2774, - "time": 0.3703377843350907, + "noteOrder": 5039, + "time": 0.6724554505031911, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3397,13 +4892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2823, - "time": 0.37683493844623267, + "noteOrder": 5039, + "time": 0.6724554505031911, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3415,16 +4910,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 2871, - "time": 0.3833320925573746, + "noteOrder": 5063, + "time": 0.675704027558762, "position": { "x": 7, "y": 0 @@ -3443,13 +4938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2920, - "time": 0.3898292466685165, + "noteOrder": 5088, + "time": 0.678952604614333, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3461,18 +4956,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2969, - "time": 0.39632640077965847, + "noteOrder": 5088, + "time": 0.678952604614333, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3484,16 +4979,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3017, - "time": 0.4028235548908004, + "noteOrder": 5112, + "time": 0.682201181669904, "position": { "x": 3, "y": 0 @@ -3507,18 +5002,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3066, - "time": 0.4093207090019424, + "noteOrder": 5136, + "time": 0.685449758725475, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3530,18 +5025,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3115, - "time": 0.4158178631130843, + "noteOrder": 5136, + "time": 0.685449758725475, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3558,13 +5053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3163, - "time": 0.4223150172242262, + "noteOrder": 5550, + "time": 0.7406755686701816, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3576,18 +5071,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3212, - "time": 0.4288121713353682, + "noteOrder": 5599, + "time": 0.7471727227813234, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3604,13 +5099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 164, "indexInLine": 1, "isSliding": false, - "noteOrder": 3261, - "time": 0.43530932544651013, + "noteOrder": 5648, + "time": 0.7536698768924653, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3622,18 +5117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3309, - "time": 0.441806479557652, + "noteOrder": 5660, + "time": 0.7552941654202509, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3650,13 +5145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3358, - "time": 0.448303633668794, + "noteOrder": 5660, + "time": 0.7552941654202509, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3673,13 +5168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3504, - "time": 0.4677950960022198, + "noteOrder": 5672, + "time": 0.7569184539480364, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3696,13 +5191,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3553, - "time": 0.47429225011336174, + "noteOrder": 5684, + "time": 0.7585427424758219, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3719,13 +5214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 2, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3577, - "time": 0.47754082716893276, + "noteOrder": 5684, + "time": 0.7585427424758219, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3742,13 +5237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 3, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3601, - "time": 0.4807894042245037, + "noteOrder": 5745, + "time": 0.7666641851147493, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3760,18 +5255,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3504, - "time": 0.4677950960022198, + "noteOrder": 5794, + "time": 0.7731613392258913, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3788,11 +5283,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 3553, - "time": 0.47429225011336174, + "noteOrder": 5940, + "time": 0.792652801559317, "position": { "x": 3, "y": 0 @@ -3811,13 +5306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 174, "indexInLine": 2, "isSliding": false, - "noteOrder": 3577, - "time": 0.47754082716893276, + "noteOrder": 5952, + "time": 0.7942770900871026, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3834,11 +5329,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 174, "indexInLine": 3, "isSliding": false, - "noteOrder": 3601, - "time": 0.4807894042245037, + "noteOrder": 5952, + "time": 0.7942770900871026, "position": { "x": 4, "y": 0 @@ -3857,13 +5352,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4380, - "time": 0.5847438700027748, + "noteOrder": 5964, + "time": 0.7959013786148881, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3880,13 +5375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4429, - "time": 0.5912410241139168, + "noteOrder": 5976, + "time": 0.7975256671426735, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3903,13 +5398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4477, - "time": 0.5977381782250587, + "noteOrder": 5976, + "time": 0.7975256671426735, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3921,16 +5416,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 4526, - "time": 0.6042353323362006, + "noteOrder": 6037, + "time": 0.8056471097816009, "position": { "x": 3, "y": 0 @@ -3949,13 +5444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4575, - "time": 0.6107324864473426, + "noteOrder": 6049, + "time": 0.8072713983093864, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3972,13 +5467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4623, - "time": 0.6172296405584844, + "noteOrder": 6049, + "time": 0.8072713983093864, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3990,16 +5485,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4672, - "time": 0.6237267946696264, + "noteOrder": 6061, + "time": 0.808895686837172, "position": { "x": 3, "y": 0 @@ -4013,18 +5508,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4721, - "time": 0.6302239487807684, + "noteOrder": 6074, + "time": 0.8105199753649575, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4041,13 +5536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4769, - "time": 0.6367211028919103, + "noteOrder": 6074, + "time": 0.8105199753649575, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4059,16 +5554,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 4818, - "time": 0.6432182570030522, + "noteOrder": 6134, + "time": 0.8186414180038848, "position": { "x": 3, "y": 0 @@ -4087,13 +5582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4867, - "time": 0.6497154111141942, + "noteOrder": 6232, + "time": 0.8316357262261687, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4105,16 +5600,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 4915, - "time": 0.6562125652253362, + "noteOrder": 6329, + "time": 0.8446300344484526, "position": { "x": 7, "y": 0 @@ -4133,13 +5628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4964, - "time": 0.6627097193364782, + "noteOrder": 6341, + "time": 0.8462543229762381, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4156,13 +5651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5013, - "time": 0.66920687344762, + "noteOrder": 6341, + "time": 0.8462543229762381, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4174,16 +5669,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5061, - "time": 0.6757040275587619, + "noteOrder": 6354, + "time": 0.8478786115040237, "position": { "x": 7, "y": 0 @@ -4197,18 +5692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5110, - "time": 0.6822011816699038, + "noteOrder": 6366, + "time": 0.8495029000318091, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4225,13 +5720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5548, - "time": 0.7406755686701814, + "noteOrder": 6366, + "time": 0.8495029000318091, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4243,18 +5738,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 5597, - "time": 0.7471727227813233, + "noteOrder": 6427, + "time": 0.8576243426707365, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4271,13 +5766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5645, - "time": 0.7536698768924653, + "noteOrder": 6439, + "time": 0.8592486311985219, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4289,18 +5784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5670, - "time": 0.7569184539480363, + "noteOrder": 6439, + "time": 0.8592486311985219, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4317,13 +5812,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5743, - "time": 0.7666641851147492, + "noteOrder": 6451, + "time": 0.8608729197263074, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4340,13 +5835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5791, - "time": 0.7731613392258911, + "noteOrder": 6463, + "time": 0.8624972082540929, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4363,13 +5858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5937, - "time": 0.7926528015593169, + "noteOrder": 6463, + "time": 0.8624972082540929, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4386,13 +5881,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5962, - "time": 0.795901378614888, + "noteOrder": 6524, + "time": 0.8706186508930204, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4409,13 +5904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6035, - "time": 0.8056471097816008, + "noteOrder": 6621, + "time": 0.8836129591153044, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4427,16 +5922,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6059, - "time": 0.8088956868371717, + "noteOrder": 6719, + "time": 0.8966072673375881, "position": { "x": 3, "y": 0 @@ -4450,16 +5945,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6132, - "time": 0.8186414180038848, + "noteOrder": 6731, + "time": 0.8982315558653736, "position": { "x": 3, "y": 0 @@ -4478,13 +5973,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6229, - "time": 0.8316357262261685, + "noteOrder": 6731, + "time": 0.8982315558653736, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4501,13 +5996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6327, - "time": 0.8446300344484524, + "noteOrder": 6743, + "time": 0.8998558443931591, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4524,13 +6019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6351, - "time": 0.8478786115040234, + "noteOrder": 6755, + "time": 0.9014801329209446, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4542,18 +6037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6424, - "time": 0.8576243426707364, + "noteOrder": 6755, + "time": 0.9014801329209446, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4570,13 +6065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6448, - "time": 0.8608729197263073, + "noteOrder": 6816, + "time": 0.9096015755598721, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4593,13 +6088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6521, - "time": 0.8706186508930203, + "noteOrder": 6828, + "time": 0.9112258640876575, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4611,16 +6106,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6619, - "time": 0.883612959115304, + "noteOrder": 6828, + "time": 0.9112258640876575, "position": { "x": 4, "y": 0 @@ -4634,39 +6129,16 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 207, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 6716, - "time": 0.896607267337588, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6741, - "time": 0.899855844393159, + "noteOrder": 6840, + "time": 0.912850152615443, "position": { "x": 3, "y": 0 @@ -4685,11 +6157,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6814, - "time": 0.9096015755598719, + "noteOrder": 6853, + "time": 0.9144744411432285, "position": { "x": 3, "y": 0 @@ -4703,18 +6175,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6838, - "time": 0.9128501526154428, + "noteOrder": 6853, + "time": 0.9144744411432285, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4732,10 +6204,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6911, - "time": 0.9225958837821558, + "noteOrder": 6913, + "time": 0.922595883782156, "position": { "x": 3, "y": 0 @@ -4755,10 +6227,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7008, - "time": 0.9355901920044396, + "noteOrder": 7011, + "time": 0.9355901920044398, "position": { "x": 6, "y": 0 @@ -4778,10 +6250,10 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7106, - "time": 0.9485845002267235, + "noteOrder": 7108, + "time": 0.9485845002267237, "position": { "x": 4, "y": 0 @@ -4801,10 +6273,10 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.9745731166712913, + "noteOrder": 7303, + "time": 0.9745731166712914, "position": { "x": 4, "y": 0 @@ -4824,10 +6296,10 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7106, - "time": 0.9485845002267235, + "noteOrder": 7108, + "time": 0.9485845002267237, "position": { "x": 6, "y": 0 @@ -4847,10 +6319,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.9745731166712913, + "noteOrder": 7303, + "time": 0.9745731166712914, "position": { "x": 6, "y": 0 diff --git a/tracks/Let Me See Your Dance/info.json b/tracks/Let Me See Your Dance/info.json index 9ac57cd1..5eed3236 100644 --- a/tracks/Let Me See Your Dance/info.json +++ b/tracks/Let Me See Your Dance/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Let Me See Your Dance", - "SongLength": "134.844082", + "SongLength": "124.891429", "SongAuthorName": "kors k vs BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Let's DANCE aROUND!!/340_difficulty_1a.json b/tracks/Let's DANCE aROUND!!/340_difficulty_1a.json index 721dcb0c..8d1f9b45 100644 --- a/tracks/Let's DANCE aROUND!!/340_difficulty_1a.json +++ b/tracks/Let's DANCE aROUND!!/340_difficulty_1a.json @@ -94,7 +94,7 @@ }, { "noteOrder": 168, - "time": 0.029216883184640264, + "time": 0.029216883184640267, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 168, - "time": 0.029216883184640264, + "time": 0.029216883184640267, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 217, "time": 0.03756456409453749, "position": { "x": 4, @@ -174,7 +174,7 @@ }, { "noteOrder": 265, - "time": 0.04591224500443471, + "time": 0.0459122450044347, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 337, - "time": 0.05843376636928053, + "time": 0.058433766369280535, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 505, - "time": 0.0876506495539208, + "time": 0.08765064955392081, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 505, - "time": 0.0876506495539208, + "time": 0.08765064955392081, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 878, - "time": 0.15234517660562424, + "time": 0.15234517660562427, "position": { "x": 5, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 890, - "time": 0.15443209683309855, + "time": 0.15443209683309853, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1082, - "time": 0.18782282047268745, + "noteOrder": 1083, + "time": 0.18782282047268742, "position": { "x": 5, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1106, - "time": 0.19199666092763606, + "noteOrder": 1107, + "time": 0.19199666092763604, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1467, + "noteOrder": 1468, "time": 0.2546042677518652, "position": { "x": 5, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1491, + "noteOrder": 1492, "time": 0.2587781082068138, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1515, + "noteOrder": 1516, "time": 0.2629519486617624, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1515, + "noteOrder": 1516, "time": 0.2629519486617624, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1539, + "noteOrder": 1540, "time": 0.26712578911671103, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1563, - "time": 0.2712996295716596, + "noteOrder": 1564, + "time": 0.27129962957165965, "position": { "x": 5, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1780, - "time": 0.3088641936661971, + "noteOrder": 1781, + "time": 0.30886419366619705, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1804, - "time": 0.3130380341211457, + "noteOrder": 1805, + "time": 0.31303803412114567, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.3255595554859915, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1900, - "time": 0.3297333959409402, + "noteOrder": 1901, + "time": 0.32973339594094014, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1948, + "noteOrder": 1949, "time": 0.3380810768508374, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1996, + "noteOrder": 1997, "time": 0.3464287577607346, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2020, - "time": 0.3506025982156832, + "noteOrder": 2021, + "time": 0.35060259821568324, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2093, - "time": 0.36312411958052904, + "noteOrder": 2094, + "time": 0.363124119580529, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2141, - "time": 0.3714718004904263, + "noteOrder": 2142, + "time": 0.3714718004904262, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2189, + "noteOrder": 2190, "time": 0.37981948140032346, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2213, - "time": 0.38399332185527213, + "noteOrder": 2214, + "time": 0.3839933218552721, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2237, + "noteOrder": 2238, "time": 0.3881671623102207, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2261, + "noteOrder": 2262, "time": 0.3923410027651693, "position": { "x": 7, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2285, - "time": 0.3965148432201179, + "noteOrder": 2286, + "time": 0.39651484322011793, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2285, - "time": 0.3965148432201179, + "noteOrder": 2286, + "time": 0.39651484322011793, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2333, + "noteOrder": 2334, "time": 0.4048625241300151, "position": { "x": 8, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2381, + "noteOrder": 2382, "time": 0.41321020503991235, "position": { "x": 2, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2405, + "noteOrder": 2406, "time": 0.41738404549486097, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2429, - "time": 0.4215578859498096, + "noteOrder": 2430, + "time": 0.42155788594980953, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.42573172640475815, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.42573172640475815, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2574, + "noteOrder": 2575, "time": 0.44660092867950124, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2574, + "noteOrder": 2575, "time": 0.44660092867950124, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2622, - "time": 0.4549486095893985, + "noteOrder": 2623, + "time": 0.4549486095893984, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2646, + "noteOrder": 2647, "time": 0.45912245004434704, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2670, + "noteOrder": 2671, "time": 0.46329629049929566, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.4716439714091929, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 2767, "time": 0.4799916523190901, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2790, - "time": 0.48416549277403875, + "noteOrder": 2791, + "time": 0.4841654927740387, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2814, + "noteOrder": 2815, "time": 0.4883393332289873, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2838, + "noteOrder": 2839, "time": 0.49251317368393593, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2838, + "noteOrder": 2839, "time": 0.49251317368393593, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2935, + "noteOrder": 2936, "time": 0.5092085355037304, "position": { "x": 8, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2983, + "noteOrder": 2984, "time": 0.5175562164136276, "position": { "x": 2, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3055, + "noteOrder": 3056, "time": 0.5300777377784734, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3104, "time": 0.5384254186883707, "position": { "x": 5, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3151, - "time": 0.5467730995982679, + "noteOrder": 3152, + "time": 0.5467730995982678, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5509469400532164, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5509469400532164, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3199, + "noteOrder": 3200, "time": 0.555120780508165, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3199, + "noteOrder": 3200, "time": 0.555120780508165, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3271, + "noteOrder": 3273, "time": 0.5676423018730109, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3295, - "time": 0.5718161423279595, + "noteOrder": 3297, + "time": 0.5718161423279594, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3321, "time": 0.5759899827829081, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3343, - "time": 0.5801638232378568, + "noteOrder": 3345, + "time": 0.5801638232378566, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3343, - "time": 0.5801638232378568, + "noteOrder": 3345, + "time": 0.5801638232378566, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3367, + "noteOrder": 3369, "time": 0.5843376636928054, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3392, - "time": 0.588511504147754, + "noteOrder": 3393, + "time": 0.5885115041477539, "position": { "x": 5, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3416, - "time": 0.5926853446027025, + "noteOrder": 3417, + "time": 0.5926853446027026, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.5968591850576512, + "noteOrder": 3441, + "time": 0.5968591850576511, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.5968591850576512, + "noteOrder": 3441, + "time": 0.5968591850576511, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3488, + "noteOrder": 3489, "time": 0.6052068659675484, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3536, + "noteOrder": 3537, "time": 0.6135545468774456, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3560, - "time": 0.6177283873323942, + "noteOrder": 3561, + "time": 0.6177283873323941, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3584, + "noteOrder": 3585, "time": 0.6219022277873428, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3608, - "time": 0.6260760682422915, + "noteOrder": 3609, + "time": 0.6260760682422913, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3632, + "noteOrder": 3634, "time": 0.6302499086972401, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.6385975896071372, + "noteOrder": 3682, + "time": 0.6385975896071373, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.6427714300620859, + "noteOrder": 3706, + "time": 0.6427714300620858, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3728, + "noteOrder": 3730, "time": 0.6469452705170345, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3776, - "time": 0.6552929514269317, + "noteOrder": 3778, + "time": 0.6552929514269318, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3800, - "time": 0.6594667918818804, + "noteOrder": 3802, + "time": 0.6594667918818803, "position": { "x": 6, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3826, "time": 0.6636406323368289, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3873, + "noteOrder": 3874, "time": 0.671988313246726, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3921, - "time": 0.6803359941566234, + "noteOrder": 3922, + "time": 0.6803359941566233, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3945, - "time": 0.6845098346115719, + "noteOrder": 3946, + "time": 0.684509834611572, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3958, "time": 0.6865967548390463, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3969, - "time": 0.6886836750665206, + "noteOrder": 3970, + "time": 0.6886836750665205, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4161, + "noteOrder": 4163, "time": 0.7220743987061095, "position": { "x": 5, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4185, - "time": 0.7262482391610581, + "noteOrder": 4187, + "time": 0.726248239161058, "position": { "x": 4, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4209, + "noteOrder": 4211, "time": 0.7304220796160067, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4209, + "noteOrder": 4211, "time": 0.7304220796160067, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4257, + "noteOrder": 4259, "time": 0.7387697605259039, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4306, - "time": 0.747117441435801, + "noteOrder": 4307, + "time": 0.7471174414358012, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4546, - "time": 0.7888558459852872, + "noteOrder": 4548, + "time": 0.7888558459852871, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4570, - "time": 0.7930296864402357, + "noteOrder": 4572, + "time": 0.7930296864402359, "position": { "x": 6, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4594, - "time": 0.7972035268951845, + "noteOrder": 4596, + "time": 0.7972035268951844, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4594, - "time": 0.7972035268951845, + "noteOrder": 4596, + "time": 0.7972035268951844, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4642, + "noteOrder": 4644, "time": 0.8055512078050816, "position": { "x": 2, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.813898888714979, + "noteOrder": 4692, + "time": 0.8138988887149788, "position": { "x": 8, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8347680909897219, "position": { "x": 7, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4835, - "time": 0.8389419314446704, + "noteOrder": 4837, + "time": 0.8389419314446706, "position": { "x": 5, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.8431157718996192, + "noteOrder": 4861, + "time": 0.8431157718996191, "position": { "x": 4, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.8472896123545678, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5003, + "noteOrder": 5005, "time": 0.8681588146293108, "position": { "x": 3, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5027, + "noteOrder": 5029, "time": 0.8723326550842594, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5051, + "noteOrder": 5053, "time": 0.876506495539208, "position": { "x": 6, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5075, + "noteOrder": 5077, "time": 0.8806803359941566, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5099, + "noteOrder": 5101, "time": 0.8848541764491052, "position": { "x": 3, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5111, + "noteOrder": 5113, "time": 0.8869410966765795, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5123, + "noteOrder": 5125, "time": 0.8890280169040539, "position": { "x": 7, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5135, - "time": 0.8911149371315282, + "noteOrder": 5138, + "time": 0.8911149371315281, "position": { "x": 5, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5147, + "noteOrder": 5150, "time": 0.8932018573590025, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5159, + "noteOrder": 5162, "time": 0.8952887775864767, "position": { "x": 5, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5171, - "time": 0.8973756978139511, + "noteOrder": 5174, + "time": 0.897375697813951, "position": { "x": 7, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5268, + "noteOrder": 5270, "time": 0.9140710596337455, "position": { "x": 7, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.9182449000886941, "position": { "x": 7, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5316, - "time": 0.9224187405436428, + "noteOrder": 5318, + "time": 0.9224187405436427, "position": { "x": 3, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5532, + "noteOrder": 5535, "time": 0.9599833046381802, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5532, + "noteOrder": 5535, "time": 0.9599833046381802, "position": { "x": 7, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5556, + "noteOrder": 5559, "time": 0.9641571450931288, "position": { "x": 4, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5556, + "noteOrder": 5559, "time": 0.9641571450931288, "position": { "x": 6, @@ -2876,7 +2876,7 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.06678144727917776, @@ -2899,7 +2899,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.07095528773412636, @@ -2922,7 +2922,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, "time": 0.07512912818907498, @@ -2945,10 +2945,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, - "time": 0.07930296864402359, + "time": 0.07930296864402357, "position": { "x": 7, "y": 0 @@ -2968,10 +2968,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, - "time": 0.09182449000886941, + "time": 0.0918244900088694, "position": { "x": 6, "y": 0 @@ -2991,10 +2991,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, - "time": 0.09599833046381803, + "time": 0.09599833046381802, "position": { "x": 6, "y": 0 @@ -3014,10 +3014,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, - "time": 0.09182449000886941, + "time": 0.0918244900088694, "position": { "x": 4, "y": 0 @@ -3037,10 +3037,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, - "time": 0.09599833046381803, + "time": 0.09599833046381802, "position": { "x": 4, "y": 0 @@ -3060,9 +3060,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, + "noteOrder": 578, "time": 0.10017217091876664, "position": { "x": 3, @@ -3083,9 +3083,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 625, + "noteOrder": 626, "time": 0.10851985182866385, "position": { "x": 3, @@ -3106,9 +3106,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, + "noteOrder": 578, "time": 0.10017217091876664, "position": { "x": 7, @@ -3129,9 +3129,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 625, + "noteOrder": 626, "time": 0.10851985182866385, "position": { "x": 7, @@ -3152,10 +3152,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.11686753273856106, + "noteOrder": 674, + "time": 0.11686753273856107, "position": { "x": 6, "y": 0 @@ -3175,7 +3175,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 722, "time": 0.12521521364845828, @@ -3198,10 +3198,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.11686753273856106, + "noteOrder": 674, + "time": 0.11686753273856107, "position": { "x": 4, "y": 0 @@ -3221,7 +3221,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 722, "time": 0.12521521364845828, @@ -3244,7 +3244,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, "time": 0.13356289455835552, @@ -3267,7 +3267,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 794, "time": 0.1377367350133041, @@ -3290,7 +3290,7 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 842, "time": 0.14608441592320134, @@ -3313,10 +3313,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, - "time": 0.15860593728804717, + "time": 0.15860593728804714, "position": { "x": 6, "y": 0 @@ -3336,7 +3336,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 938, "time": 0.16277977774299576, @@ -3359,10 +3359,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, - "time": 0.15860593728804717, + "time": 0.15860593728804714, "position": { "x": 4, "y": 0 @@ -3382,7 +3382,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 938, "time": 0.16277977774299576, @@ -3405,9 +3405,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 962, + "noteOrder": 963, "time": 0.16695361819794438, "position": { "x": 3, @@ -3427,11 +3427,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 986, - "time": 0.17112745865289297, + "noteOrder": 975, + "time": 0.1690405384254187, "position": { "x": 3, "y": 0 @@ -3445,18 +3445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1010, - "time": 0.1753012991078416, + "noteOrder": 975, + "time": 0.1690405384254187, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3473,13 +3473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1034, - "time": 0.1794751395627902, + "noteOrder": 987, + "time": 0.171127458652893, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3491,18 +3491,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1058, - "time": 0.18364898001773883, + "noteOrder": 987, + "time": 0.171127458652893, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3519,13 +3519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 1106, - "time": 0.19199666092763606, + "noteOrder": 987, + "time": 0.171127458652893, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3537,18 +3537,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1251, - "time": 0.2170397036573277, + "noteOrder": 999, + "time": 0.1732143788803673, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3565,13 +3565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1275, - "time": 0.2212135441122763, + "noteOrder": 999, + "time": 0.1732143788803673, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3583,18 +3583,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1299, - "time": 0.2253873845672249, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3611,13 +3611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1323, - "time": 0.22956122502217352, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3629,18 +3629,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1347, - "time": 0.2337350654771221, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3652,18 +3652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1371, - "time": 0.23790890593207076, + "noteOrder": 1023, + "time": 0.1773882193353159, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3680,13 +3680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1395, - "time": 0.24208274638701938, + "noteOrder": 1023, + "time": 0.1773882193353159, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3698,18 +3698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1419, - "time": 0.24625658684196797, + "noteOrder": 1035, + "time": 0.1794751395627902, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3726,13 +3726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1443, - "time": 0.25043042729691656, + "noteOrder": 1035, + "time": 0.1794751395627902, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3744,18 +3744,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 1491, - "time": 0.2587781082068138, + "noteOrder": 1035, + "time": 0.1794751395627902, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3772,13 +3772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, - "time": 0.28382115093650545, + "noteOrder": 1047, + "time": 0.1815620597902645, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3795,13 +3795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1660, - "time": 0.28799499139145407, + "noteOrder": 1047, + "time": 0.1815620597902645, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3818,11 +3818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1636, - "time": 0.28382115093650545, + "noteOrder": 1059, + "time": 0.1836489800177388, "position": { "x": 4, "y": 0 @@ -3836,18 +3836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1660, - "time": 0.28799499139145407, + "noteOrder": 1059, + "time": 0.1836489800177388, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3859,16 +3859,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1708, - "time": 0.29634267230135125, + "noteOrder": 1059, + "time": 0.1836489800177388, "position": { "x": 3, "y": 0 @@ -3887,13 +3887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1732, - "time": 0.3005165127562999, + "noteOrder": 1107, + "time": 0.19199666092763604, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3910,11 +3910,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1708, - "time": 0.29634267230135125, + "noteOrder": 1251, + "time": 0.2170397036573277, "position": { "x": 7, "y": 0 @@ -3933,11 +3933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1732, - "time": 0.3005165127562999, + "noteOrder": 1263, + "time": 0.219126623884802, "position": { "x": 7, "y": 0 @@ -3956,13 +3956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2069, - "time": 0.3589502791255804, + "noteOrder": 1263, + "time": 0.219126623884802, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3974,16 +3974,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 2093, - "time": 0.36312411958052904, + "noteOrder": 1275, + "time": 0.2212135441122763, "position": { "x": 3, "y": 0 @@ -4002,13 +4002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2117, - "time": 0.36729796003547766, + "noteOrder": 1287, + "time": 0.22330046433975062, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4020,18 +4020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2141, - "time": 0.3714718004904263, + "noteOrder": 1287, + "time": 0.22330046433975062, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4043,18 +4043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2165, - "time": 0.3756456409453749, + "noteOrder": 1299, + "time": 0.2253873845672249, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4066,18 +4066,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2189, - "time": 0.37981948140032346, + "noteOrder": 1311, + "time": 0.2274743047946992, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4089,16 +4089,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2309, - "time": 0.40068868367506655, + "noteOrder": 1311, + "time": 0.2274743047946992, "position": { "x": 6, "y": 0 @@ -4117,13 +4117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 2333, - "time": 0.4048625241300151, + "noteOrder": 1323, + "time": 0.22956122502217352, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4135,18 +4135,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2357, - "time": 0.40903636458496373, + "noteOrder": 1336, + "time": 0.23164814524964783, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4163,11 +4163,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2381, - "time": 0.41321020503991235, + "noteOrder": 1336, + "time": 0.23164814524964783, "position": { "x": 4, "y": 0 @@ -4186,13 +4186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2477, - "time": 0.4299055668597068, + "noteOrder": 1348, + "time": 0.23373506547712214, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4204,18 +4204,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2502, - "time": 0.4340794073146554, + "noteOrder": 1360, + "time": 0.23582198570459645, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4227,18 +4227,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2477, - "time": 0.4299055668597068, + "noteOrder": 1360, + "time": 0.23582198570459645, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4255,13 +4255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2502, - "time": 0.4340794073146554, + "noteOrder": 1372, + "time": 0.23790890593207076, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4278,13 +4278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2598, - "time": 0.4507747691344498, + "noteOrder": 1372, + "time": 0.23790890593207076, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4296,18 +4296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 2670, - "time": 0.46329629049929566, + "noteOrder": 1372, + "time": 0.23790890593207076, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4324,13 +4324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2862, - "time": 0.49668701413888455, + "noteOrder": 1384, + "time": 0.23999582615954504, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4347,13 +4347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2886, - "time": 0.5008608545938331, + "noteOrder": 1384, + "time": 0.23999582615954504, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4370,13 +4370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2862, - "time": 0.49668701413888455, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4388,18 +4388,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2886, - "time": 0.5008608545938331, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4411,18 +4411,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2910, - "time": 0.5050346950487817, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4439,13 +4439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2935, - "time": 0.5092085355037304, + "noteOrder": 1408, + "time": 0.24416966661449366, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4462,13 +4462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2959, - "time": 0.513382375958679, + "noteOrder": 1408, + "time": 0.24416966661449366, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4480,18 +4480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2983, - "time": 0.5175562164136276, + "noteOrder": 1420, + "time": 0.24625658684196797, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4503,18 +4503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3007, - "time": 0.5217300568685762, + "noteOrder": 1420, + "time": 0.24625658684196797, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4531,13 +4531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3031, - "time": 0.5259038973235248, + "noteOrder": 1420, + "time": 0.24625658684196797, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4554,13 +4554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 3, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3103, - "time": 0.5384254186883707, + "noteOrder": 1432, + "time": 0.24834350706944225, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4577,13 +4577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3127, - "time": 0.5425992591433192, + "noteOrder": 1432, + "time": 0.24834350706944225, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4595,18 +4595,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3151, - "time": 0.5467730995982679, + "noteOrder": 1444, + "time": 0.25043042729691656, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4618,18 +4618,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3223, - "time": 0.5592946209631137, + "noteOrder": 1444, + "time": 0.25043042729691656, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4646,13 +4646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 3247, - "time": 0.5634684614180623, + "noteOrder": 1444, + "time": 0.25043042729691656, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4664,16 +4664,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3223, - "time": 0.5592946209631137, + "noteOrder": 1492, + "time": 0.2587781082068138, "position": { "x": 6, "y": 0 @@ -4692,11 +4692,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 3247, - "time": 0.5634684614180623, + "noteOrder": 1636, + "time": 0.28382115093650545, "position": { "x": 6, "y": 0 @@ -4715,13 +4715,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3464, - "time": 0.6010330255125998, + "noteOrder": 1660, + "time": 0.28799499139145407, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4738,13 +4738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 3488, - "time": 0.6052068659675484, + "noteOrder": 1636, + "time": 0.28382115093650545, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4756,18 +4756,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3512, - "time": 0.609380706422497, + "noteOrder": 1660, + "time": 0.28799499139145407, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4784,11 +4784,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 3536, - "time": 0.6135545468774456, + "noteOrder": 1708, + "time": 0.2963426723013513, "position": { "x": 3, "y": 0 @@ -4807,13 +4807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3656, - "time": 0.6344237491521887, + "noteOrder": 1733, + "time": 0.3005165127562999, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4825,16 +4825,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 3752, - "time": 0.651119110971983, + "noteOrder": 1708, + "time": 0.2963426723013513, "position": { "x": 7, "y": 0 @@ -4853,13 +4853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3752, - "time": 0.651119110971983, + "noteOrder": 1733, + "time": 0.3005165127562999, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4871,16 +4871,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 3849, - "time": 0.6678144727917775, + "noteOrder": 2069, + "time": 0.3589502791255804, "position": { "x": 3, "y": 0 @@ -4899,13 +4899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3849, - "time": 0.6678144727917775, + "noteOrder": 2094, + "time": 0.363124119580529, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4917,18 +4917,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 3873, - "time": 0.671988313246726, + "noteOrder": 2118, + "time": 0.3672979600354776, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4945,13 +4945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3897, - "time": 0.6761621537016748, + "noteOrder": 2142, + "time": 0.3714718004904262, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4963,18 +4963,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 3921, - "time": 0.6803359941566234, + "noteOrder": 2166, + "time": 0.37564564094537484, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4991,13 +4991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3993, - "time": 0.6928575155214692, + "noteOrder": 2190, + "time": 0.37981948140032346, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5014,13 +5014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 4017, - "time": 0.6970313559764177, + "noteOrder": 2310, + "time": 0.40068868367506655, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5032,16 +5032,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3993, - "time": 0.6928575155214692, + "noteOrder": 2334, + "time": 0.4048625241300151, "position": { "x": 6, "y": 0 @@ -5060,13 +5060,2382 @@ "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 4017, - "time": 0.6970313559764177, + "noteOrder": 2358, + "time": 0.40903636458496373, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2382, + "time": 0.41321020503991235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2479, + "time": 0.42990556685970677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2503, + "time": 0.4340794073146554, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2479, + "time": 0.42990556685970677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2503, + "time": 0.4340794073146554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2599, + "time": 0.4507747691344498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2671, + "time": 0.46329629049929566, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2864, + "time": 0.4966870141388845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2888, + "time": 0.5008608545938331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2864, + "time": 0.4966870141388845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2888, + "time": 0.5008608545938331, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2912, + "time": 0.5050346950487817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2936, + "time": 0.5092085355037304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2960, + "time": 0.513382375958679, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2984, + "time": 0.5175562164136276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3008, + "time": 0.5217300568685762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5238169770960505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3020, + "time": 0.5238169770960505, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3032, + "time": 0.5259038973235248, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3044, + "time": 0.5279908175509991, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3044, + "time": 0.5279908175509991, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3056, + "time": 0.5300777377784734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3056, + "time": 0.5300777377784734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3104, + "time": 0.5384254186883707, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3128, + "time": 0.5425992591433193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3152, + "time": 0.5467730995982678, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5592946209631137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3249, + "time": 0.5634684614180624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5592946209631137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3249, + "time": 0.5634684614180624, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3465, + "time": 0.6010330255125998, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3489, + "time": 0.6052068659675484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3513, + "time": 0.6093807064224971, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3537, + "time": 0.6135545468774456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3658, + "time": 0.6344237491521886, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3754, + "time": 0.651119110971983, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3754, + "time": 0.651119110971983, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3850, + "time": 0.6678144727917775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3850, + "time": 0.6678144727917775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3874, + "time": 0.671988313246726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3898, + "time": 0.6761621537016748, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3922, + "time": 0.6803359941566233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3995, + "time": 0.6928575155214692, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6970313559764177, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3995, + "time": 0.6928575155214692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6970313559764177, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4043, + "time": 0.7012051964313665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4055, + "time": 0.7032921166588407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4055, + "time": 0.7032921166588407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4067, + "time": 0.705379036886315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4067, + "time": 0.705379036886315, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4067, + "time": 0.705379036886315, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4079, + "time": 0.7074659571137892, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4079, + "time": 0.7074659571137892, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4091, + "time": 0.7095528773412636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4091, + "time": 0.7095528773412636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4091, + "time": 0.7095528773412636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4103, + "time": 0.711639797568738, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4103, + "time": 0.711639797568738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4115, + "time": 0.7137267177962122, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4115, + "time": 0.7137267177962122, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4115, + "time": 0.7137267177962122, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4127, + "time": 0.7158136380236865, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4127, + "time": 0.7158136380236865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4139, + "time": 0.7179005582511608, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4139, + "time": 0.7179005582511608, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4139, + "time": 0.7179005582511608, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4187, + "time": 0.726248239161058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4235, + "time": 0.7345959200709552, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4259, + "time": 0.7387697605259039, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4283, + "time": 0.7429436009808524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4307, + "time": 0.7471174414358012, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4331, + "time": 0.7512912818907497, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7533782021182239, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4343, + "time": 0.7533782021182239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4355, + "time": 0.7554651223456983, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4367, + "time": 0.7575520425731727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4367, + "time": 0.7575520425731727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4380, + "time": 0.7596389628006469, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4392, + "time": 0.7617258830281212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4392, + "time": 0.7617258830281212, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4404, + "time": 0.7638128032555955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4416, + "time": 0.7658997234830699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4416, + "time": 0.7658997234830699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4428, + "time": 0.7679866437105441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4440, + "time": 0.7700735639380184, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4440, + "time": 0.7700735639380184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4452, + "time": 0.7721604841654928, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4452, + "time": 0.7721604841654928, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4452, + "time": 0.7721604841654928, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4464, + "time": 0.7742474043929671, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4464, + "time": 0.7742474043929671, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4476, + "time": 0.7763343246204414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4476, + "time": 0.7763343246204414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4476, + "time": 0.7763343246204414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4488, + "time": 0.7784212448479156, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4488, + "time": 0.7784212448479156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4500, + "time": 0.7805081650753899, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4500, + "time": 0.7805081650753899, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4500, + "time": 0.7805081650753899, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4512, + "time": 0.7825950853028643, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4512, + "time": 0.7825950853028643, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5083,13 +7452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4041, - "time": 0.7012051964313664, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5106,13 +7475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4065, - "time": 0.7053790368863151, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5129,11 +7498,80 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4089, - "time": 0.7095528773412636, + "noteOrder": 4572, + "time": 0.7930296864402359, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4620, + "time": 0.8013773673501331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4644, + "time": 0.8055512078050816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4668, + "time": 0.8097250482600302, "position": { "x": 7, "y": 0 @@ -5152,11 +7590,11 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4113, - "time": 0.7137267177962122, + "noteOrder": 4692, + "time": 0.8138988887149788, "position": { "x": 7, "y": 0 @@ -5170,16 +7608,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4137, - "time": 0.7179005582511608, + "noteOrder": 4716, + "time": 0.8180727291699275, "position": { "x": 7, "y": 0 @@ -5198,11 +7636,126 @@ "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4740, + "time": 0.8222465696248761, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4716, + "time": 0.8180727291699275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4740, + "time": 0.8222465696248761, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4765, + "time": 0.8264204100798247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4789, + "time": 0.8305942505347733, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 4185, - "time": 0.7262482391610581, + "noteOrder": 4765, + "time": 0.8264204100798247, "position": { "x": 6, "y": 0 @@ -5221,11 +7774,57 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4789, + "time": 0.8305942505347733, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4909, + "time": 0.8514634528095163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4233, - "time": 0.7345959200709553, + "noteOrder": 4921, + "time": 0.8535503730369907, "position": { "x": 3, "y": 0 @@ -5244,11 +7843,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4257, - "time": 0.7387697605259039, + "noteOrder": 4921, + "time": 0.8535503730369907, "position": { "x": 4, "y": 0 @@ -5267,11 +7866,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4281, - "time": 0.7429436009808525, + "noteOrder": 4933, + "time": 0.8556372932644649, "position": { "x": 7, "y": 0 @@ -5290,13 +7889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4306, - "time": 0.747117441435801, + "noteOrder": 4945, + "time": 0.8577242134919393, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5313,13 +7912,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4330, - "time": 0.7512912818907498, + "noteOrder": 4945, + "time": 0.8577242134919393, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5331,18 +7930,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4354, - "time": 0.7554651223456984, + "noteOrder": 4957, + "time": 0.8598111337194135, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5359,13 +7958,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4378, - "time": 0.7596389628006469, + "noteOrder": 4957, + "time": 0.8598111337194135, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5377,16 +7976,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4402, - "time": 0.7638128032555955, + "noteOrder": 4981, + "time": 0.8639849741743622, "position": { "x": 7, "y": 0 @@ -5405,11 +8004,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4426, - "time": 0.7679866437105443, + "noteOrder": 4957, + "time": 0.8598111337194135, "position": { "x": 3, "y": 0 @@ -5428,11 +8027,11 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4450, - "time": 0.7721604841654928, + "noteOrder": 4981, + "time": 0.8639849741743622, "position": { "x": 3, "y": 0 @@ -5446,16 +8045,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4474, - "time": 0.7763343246204414, + "noteOrder": 5198, + "time": 0.9015495382688996, "position": { "x": 3, "y": 0 @@ -5474,11 +8073,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4498, - "time": 0.78050816507539, + "noteOrder": 5210, + "time": 0.903636458496374, "position": { "x": 3, "y": 0 @@ -5492,18 +8091,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4522, - "time": 0.7846820055303386, + "noteOrder": 5210, + "time": 0.903636458496374, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5520,11 +8119,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 235, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4570, - "time": 0.7930296864402357, + "noteOrder": 5222, + "time": 0.9057233787238482, "position": { "x": 4, "y": 0 @@ -5543,13 +8142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4618, - "time": 0.8013773673501331, + "noteOrder": 5222, + "time": 0.9057233787238482, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5566,11 +8165,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 4642, - "time": 0.8055512078050816, + "noteOrder": 5222, + "time": 0.9057233787238482, "position": { "x": 3, "y": 0 @@ -5584,18 +8183,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4666, - "time": 0.8097250482600302, + "noteOrder": 5234, + "time": 0.9078102989513226, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5612,13 +8211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4690, - "time": 0.813898888714979, + "noteOrder": 5234, + "time": 0.9078102989513226, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5635,13 +8234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4714, - "time": 0.8180727291699275, + "noteOrder": 5246, + "time": 0.9098972191787968, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5658,13 +8257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4739, - "time": 0.8222465696248761, + "noteOrder": 5246, + "time": 0.9098972191787968, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5681,11 +8280,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, - "time": 0.8180727291699275, + "noteOrder": 5246, + "time": 0.9098972191787968, "position": { "x": 3, "y": 0 @@ -5704,11 +8303,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4739, - "time": 0.8222465696248761, + "noteOrder": 5258, + "time": 0.9119841394062712, "position": { "x": 3, "y": 0 @@ -5727,11 +8326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4763, - "time": 0.8264204100798247, + "noteOrder": 5258, + "time": 0.9119841394062712, "position": { "x": 4, "y": 0 @@ -5750,11 +8349,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4787, - "time": 0.8305942505347733, + "noteOrder": 5270, + "time": 0.9140710596337455, "position": { "x": 4, "y": 0 @@ -5773,13 +8372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4763, - "time": 0.8264204100798247, + "noteOrder": 5270, + "time": 0.9140710596337455, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5791,16 +8390,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4787, - "time": 0.8305942505347733, + "noteOrder": 5342, + "time": 0.9265925809985913, "position": { "x": 6, "y": 0 @@ -5819,13 +8418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4907, - "time": 0.8514634528095163, + "noteOrder": 5366, + "time": 0.9307664214535399, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5837,18 +8436,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4931, - "time": 0.8556372932644649, + "noteOrder": 5342, + "time": 0.9265925809985913, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5860,18 +8459,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 3, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4979, - "time": 0.8639849741743622, + "noteOrder": 5366, + "time": 0.9307664214535399, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5883,16 +8482,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4955, - "time": 0.8598111337194136, + "noteOrder": 5390, + "time": 0.9349402619084886, "position": { "x": 3, "y": 0 @@ -5911,11 +8510,11 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 1, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4979, - "time": 0.8639849741743622, + "noteOrder": 5402, + "time": 0.9370271821359628, "position": { "x": 3, "y": 0 @@ -5934,13 +8533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5196, - "time": 0.9015495382688996, + "noteOrder": 5402, + "time": 0.9370271821359628, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5957,13 +8556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5220, - "time": 0.9057233787238483, + "noteOrder": 5414, + "time": 0.9391141023634372, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5980,13 +8579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5244, - "time": 0.909897219178797, + "noteOrder": 5426, + "time": 0.9412010225909114, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5998,16 +8597,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5340, - "time": 0.9265925809985913, + "noteOrder": 5426, + "time": 0.9412010225909114, "position": { "x": 6, "y": 0 @@ -6026,13 +8625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, + "lineGroupId": 246, "indexInLine": 1, "isSliding": false, - "noteOrder": 5364, - "time": 0.9307664214535399, + "noteOrder": 5438, + "time": 0.9432879428183858, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6044,18 +8643,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5340, - "time": 0.9265925809985913, + "noteOrder": 5450, + "time": 0.94537486304586, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6072,11 +8671,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 1, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5364, - "time": 0.9307664214535399, + "noteOrder": 5450, + "time": 0.94537486304586, "position": { "x": 4, "y": 0 @@ -6095,13 +8694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, - "time": 0.9349402619084884, + "noteOrder": 5462, + "time": 0.9474617832733343, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6113,16 +8712,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5412, - "time": 0.9391141023634372, + "noteOrder": 5474, + "time": 0.9495487035008087, "position": { "x": 7, "y": 0 @@ -6141,13 +8740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5436, - "time": 0.9432879428183858, + "noteOrder": 5474, + "time": 0.9495487035008087, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6159,16 +8758,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5460, - "time": 0.9474617832733343, + "noteOrder": 5486, + "time": 0.951635623728283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5486, + "time": 0.951635623728283, "position": { "x": 7, "y": 0 @@ -6188,10 +8810,10 @@ }, { "lineGroupId": 247, - "indexInLine": 3, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5508, - "time": 0.9558094641832316, + "noteOrder": 5510, + "time": 0.9558094641832315, "position": { "x": 7, "y": 0 @@ -6211,9 +8833,9 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5484, + "noteOrder": 5486, "time": 0.951635623728283, "position": { "x": 3, @@ -6234,10 +8856,10 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5508, - "time": 0.9558094641832316, + "noteOrder": 5510, + "time": 0.9558094641832315, "position": { "x": 3, "y": 0 diff --git a/tracks/Let's DANCE aROUND!!/340_difficulty_1b.json b/tracks/Let's DANCE aROUND!!/340_difficulty_1b.json index 7d8b0595..b014eb43 100644 --- a/tracks/Let's DANCE aROUND!!/340_difficulty_1b.json +++ b/tracks/Let's DANCE aROUND!!/340_difficulty_1b.json @@ -154,7 +154,7 @@ }, { "noteOrder": 505, - "time": 0.0876506495539208, + "time": 0.08765064955392081, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 529, - "time": 0.09182449000886941, + "time": 0.0918244900088694, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 553, - "time": 0.09599833046381803, + "time": 0.09599833046381802, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.10851985182866385, "position": { "x": 7, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1780, - "time": 0.3088641936661971, + "noteOrder": 1781, + "time": 0.30886419366619705, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.3255595554859915, "position": { "x": 3, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1924, + "noteOrder": 1925, "time": 0.33390723639588876, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1972, - "time": 0.34225491730578594, + "noteOrder": 1973, + "time": 0.342254917305786, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2020, - "time": 0.3506025982156832, + "noteOrder": 2021, + "time": 0.35060259821568324, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2093, - "time": 0.36312411958052904, + "noteOrder": 2094, + "time": 0.363124119580529, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.40903636458496373, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.42573172640475815, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.4340794073146554, "position": { "x": 3, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.4340794073146554, "position": { "x": 7, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2694, - "time": 0.4674701309542442, + "noteOrder": 2695, + "time": 0.4674701309542443, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2694, - "time": 0.4674701309542442, + "noteOrder": 2695, + "time": 0.4674701309542443, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2910, + "noteOrder": 2912, "time": 0.5050346950487817, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2959, + "noteOrder": 2960, "time": 0.513382375958679, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3007, + "noteOrder": 3008, "time": 0.5217300568685762, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3007, + "noteOrder": 3008, "time": 0.5217300568685762, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3055, + "noteOrder": 3056, "time": 0.5300777377784734, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3055, + "noteOrder": 3056, "time": 0.5300777377784734, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3127, - "time": 0.5425992591433192, + "noteOrder": 3128, + "time": 0.5425992591433193, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.5509469400532164, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3321, "time": 0.5759899827829081, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3343, - "time": 0.5801638232378568, + "noteOrder": 3345, + "time": 0.5801638232378566, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3416, - "time": 0.5926853446027025, + "noteOrder": 3417, + "time": 0.5926853446027026, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.5968591850576512, + "noteOrder": 3441, + "time": 0.5968591850576511, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3512, - "time": 0.609380706422497, + "noteOrder": 3513, + "time": 0.6093807064224971, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3608, - "time": 0.6260760682422915, + "noteOrder": 3609, + "time": 0.6260760682422913, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3656, - "time": 0.6344237491521887, + "noteOrder": 3658, + "time": 0.6344237491521886, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.6385975896071372, + "noteOrder": 3682, + "time": 0.6385975896071373, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.6427714300620859, + "noteOrder": 3706, + "time": 0.6427714300620858, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3728, + "noteOrder": 3730, "time": 0.6469452705170345, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3752, + "noteOrder": 3754, "time": 0.651119110971983, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3776, - "time": 0.6552929514269317, + "noteOrder": 3778, + "time": 0.6552929514269318, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3800, - "time": 0.6594667918818804, + "noteOrder": 3802, + "time": 0.6594667918818803, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3826, "time": 0.6636406323368289, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3897, + "noteOrder": 3898, "time": 0.6761621537016748, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4281, - "time": 0.7429436009808525, + "noteOrder": 4283, + "time": 0.7429436009808524, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4306, - "time": 0.747117441435801, + "noteOrder": 4307, + "time": 0.7471174414358012, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4330, - "time": 0.7512912818907498, + "noteOrder": 4331, + "time": 0.7512912818907497, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4354, - "time": 0.7554651223456984, + "noteOrder": 4355, + "time": 0.7554651223456983, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4378, + "noteOrder": 4380, "time": 0.7596389628006469, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.7638128032555955, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4666, + "noteOrder": 4668, "time": 0.8097250482600302, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.813898888714979, + "noteOrder": 4692, + "time": 0.8138988887149788, "position": { "x": 6, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4763, + "noteOrder": 4765, "time": 0.8264204100798247, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4763, + "noteOrder": 4765, "time": 0.8264204100798247, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8347680909897219, "position": { "x": 7, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4835, - "time": 0.8389419314446704, + "noteOrder": 4837, + "time": 0.8389419314446706, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.8431157718996192, + "noteOrder": 4861, + "time": 0.8431157718996191, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.8472896123545678, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5051, + "noteOrder": 5053, "time": 0.876506495539208, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5075, + "noteOrder": 5077, "time": 0.8806803359941566, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5099, + "noteOrder": 5101, "time": 0.8848541764491052, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5123, + "noteOrder": 5125, "time": 0.8890280169040539, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5171, - "time": 0.8973756978139511, + "noteOrder": 5174, + "time": 0.897375697813951, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5196, + "noteOrder": 5198, "time": 0.9015495382688996, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5220, - "time": 0.9057233787238483, + "noteOrder": 5222, + "time": 0.9057233787238482, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5244, - "time": 0.909897219178797, + "noteOrder": 5246, + "time": 0.9098972191787968, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5268, + "noteOrder": 5270, "time": 0.9140710596337455, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5388, - "time": 0.9349402619084884, + "noteOrder": 5390, + "time": 0.9349402619084886, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5412, + "noteOrder": 5414, "time": 0.9391141023634372, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5436, + "noteOrder": 5438, "time": 0.9432879428183858, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5460, + "noteOrder": 5462, "time": 0.9474617832733343, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5532, + "noteOrder": 5535, "time": 0.9599833046381802, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5532, + "noteOrder": 5535, "time": 0.9599833046381802, "position": { "x": 4, @@ -1776,7 +1776,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, "time": 0.13356289455835552, @@ -1799,7 +1799,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 794, "time": 0.1377367350133041, @@ -1822,7 +1822,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 818, "time": 0.14191057546825273, @@ -1845,7 +1845,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 842, "time": 0.14608441592320134, @@ -1868,7 +1868,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 866, "time": 0.15025825637814996, @@ -1891,10 +1891,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 914, - "time": 0.15860593728804717, + "time": 0.15860593728804714, "position": { "x": 4, "y": 0 @@ -1914,7 +1914,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 866, "time": 0.15025825637814996, @@ -1937,10 +1937,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 914, - "time": 0.15860593728804717, + "time": 0.15860593728804714, "position": { "x": 6, "y": 0 @@ -1960,9 +1960,9 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 962, + "noteOrder": 963, "time": 0.16695361819794438, "position": { "x": 7, @@ -1982,11 +1982,11 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1010, - "time": 0.1753012991078416, + "noteOrder": 987, + "time": 0.171127458652893, "position": { "x": 7, "y": 0 @@ -2000,18 +2000,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1058, - "time": 0.18364898001773883, + "noteOrder": 987, + "time": 0.171127458652893, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2028,13 +2028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1106, - "time": 0.19199666092763606, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2046,18 +2046,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1155, - "time": 0.20034434183753327, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2074,11 +2074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, + "lineGroupId": 23, "indexInLine": 1, "isSliding": false, - "noteOrder": 1227, - "time": 0.21286586320237907, + "noteOrder": 1011, + "time": 0.17530129910784162, "position": { "x": 7, "y": 0 @@ -2092,18 +2092,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1347, - "time": 0.2337350654771221, + "noteOrder": 1035, + "time": 0.1794751395627902, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2120,13 +2120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1395, - "time": 0.24208274638701938, + "noteOrder": 1035, + "time": 0.1794751395627902, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2138,18 +2138,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1443, - "time": 0.25043042729691656, + "noteOrder": 1059, + "time": 0.1836489800177388, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2166,13 +2166,36 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1491, - "time": 0.2587781082068138, + "noteOrder": 1059, + "time": 0.1836489800177388, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1059, + "time": 0.1836489800177388, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2189,13 +2212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1539, - "time": 0.26712578911671103, + "noteOrder": 1083, + "time": 0.18782282047268742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2207,18 +2230,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1612, - "time": 0.27964731048155683, + "noteOrder": 1083, + "time": 0.18782282047268742, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2230,18 +2253,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1636, - "time": 0.28382115093650545, + "noteOrder": 1107, + "time": 0.19199666092763604, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2258,11 +2281,34 @@ "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 24, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1107, + "time": 0.19199666092763604, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, "indexInLine": 1, "isSliding": false, - "noteOrder": 1660, - "time": 0.28799499139145407, + "noteOrder": 1107, + "time": 0.19199666092763604, "position": { "x": 7, "y": 0 @@ -2276,18 +2322,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, - "time": 0.28382115093650545, + "noteOrder": 1131, + "time": 0.19617050138258466, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2304,13 +2350,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1660, - "time": 0.28799499139145407, + "noteOrder": 1131, + "time": 0.19617050138258466, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2327,13 +2373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2117, - "time": 0.36729796003547766, + "noteOrder": 1155, + "time": 0.20034434183753327, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2345,16 +2391,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 25, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1155, + "time": 0.20034434183753327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 2141, - "time": 0.3714718004904263, + "noteOrder": 1155, + "time": 0.20034434183753327, "position": { "x": 7, "y": 0 @@ -2373,13 +2442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2165, - "time": 0.3756456409453749, + "noteOrder": 1227, + "time": 0.21286586320237907, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2391,16 +2460,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 33, "indexInLine": 1, "isSliding": false, - "noteOrder": 2189, - "time": 0.37981948140032346, + "noteOrder": 1348, + "time": 0.23373506547712214, "position": { "x": 3, "y": 0 @@ -2419,13 +2488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2213, - "time": 0.38399332185527213, + "noteOrder": 1372, + "time": 0.23790890593207076, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2437,18 +2506,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2237, - "time": 0.3881671623102207, + "noteOrder": 1372, + "time": 0.23790890593207076, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2460,16 +2529,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2213, - "time": 0.38399332185527213, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { "x": 4, "y": 0 @@ -2488,13 +2557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2237, - "time": 0.3881671623102207, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2511,11 +2580,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2261, - "time": 0.3923410027651693, + "noteOrder": 1396, + "time": 0.24208274638701935, "position": { "x": 3, "y": 0 @@ -2529,16 +2598,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2285, - "time": 0.3965148432201179, + "noteOrder": 1420, + "time": 0.24625658684196797, "position": { "x": 3, "y": 0 @@ -2552,18 +2621,1421 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1420, + "time": 0.24625658684196797, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1444, + "time": 0.25043042729691656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1444, + "time": 0.25043042729691656, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1444, + "time": 0.25043042729691656, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2546042677518652, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2546042677518652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2587781082068138, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2587781082068138, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2587781082068138, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1516, + "time": 0.2629519486617624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1516, + "time": 0.2629519486617624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1540, + "time": 0.26712578911671103, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1540, + "time": 0.26712578911671103, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1540, + "time": 0.26712578911671103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1612, + "time": 0.27964731048155683, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.28382115093650545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1660, + "time": 0.28799499139145407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.28382115093650545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1660, + "time": 0.28799499139145407, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2118, + "time": 0.3672979600354776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2142, + "time": 0.3714718004904262, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2166, + "time": 0.37564564094537484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2190, + "time": 0.37981948140032346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2214, + "time": 0.3839933218552721, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2238, + "time": 0.3881671623102207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2214, + "time": 0.3839933218552721, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2238, + "time": 0.3881671623102207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2262, + "time": 0.3923410027651693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.39651484322011793, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2262, + "time": 0.3923410027651693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.39651484322011793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2310, + "time": 0.40068868367506655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2358, + "time": 0.40903636458496373, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.41738404549486097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2454, + "time": 0.42573172640475815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5592946209631137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3249, + "time": 0.5634684614180624, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.5592946209631137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3249, + "time": 0.5634684614180624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3273, + "time": 0.5676423018730109, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3321, + "time": 0.5759899827829081, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3369, + "time": 0.5843376636928054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3417, + "time": 0.5926853446027026, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3465, + "time": 0.6010330255125998, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3513, + "time": 0.6093807064224971, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3561, + "time": 0.6177283873323941, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3609, + "time": 0.6260760682422913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3850, + "time": 0.6678144727917775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3898, + "time": 0.6761621537016748, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3946, + "time": 0.684509834611572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3970, + "time": 0.6886836750665205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3946, + "time": 0.684509834611572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3970, + "time": 0.6886836750665205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3995, + "time": 0.6928575155214692, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6970313559764177, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3995, + "time": 0.6928575155214692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4019, + "time": 0.6970313559764177, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4043, + "time": 0.7012051964313665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4067, + "time": 0.705379036886315, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4067, + "time": 0.705379036886315, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4091, + "time": 0.7095528773412636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2261, - "time": 0.3923410027651693, + "noteOrder": 4091, + "time": 0.7095528773412636, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2575,18 +4047,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 111, "indexInLine": 1, "isSliding": false, - "noteOrder": 2285, - "time": 0.3965148432201179, + "noteOrder": 4091, + "time": 0.7095528773412636, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2603,13 +4075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.40068868367506655, + "noteOrder": 4115, + "time": 0.7137267177962122, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2626,13 +4098,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2357, - "time": 0.40903636458496373, + "noteOrder": 4115, + "time": 0.7137267177962122, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2649,13 +4121,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2405, - "time": 0.41738404549486097, + "noteOrder": 4139, + "time": 0.7179005582511608, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2667,18 +4139,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2453, - "time": 0.42573172640475815, + "noteOrder": 4139, + "time": 0.7179005582511608, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2690,18 +4162,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3223, - "time": 0.5592946209631137, + "noteOrder": 4139, + "time": 0.7179005582511608, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2713,18 +4185,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3247, - "time": 0.5634684614180623, + "noteOrder": 4163, + "time": 0.7220743987061095, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2736,16 +4208,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3223, - "time": 0.5592946209631137, + "noteOrder": 4163, + "time": 0.7220743987061095, "position": { "x": 4, "y": 0 @@ -2764,11 +4236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3247, - "time": 0.5634684614180623, + "noteOrder": 4187, + "time": 0.726248239161058, "position": { "x": 4, "y": 0 @@ -2787,13 +4259,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3271, - "time": 0.5676423018730109, + "noteOrder": 4187, + "time": 0.726248239161058, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2810,11 +4282,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 113, "indexInLine": 1, "isSliding": false, - "noteOrder": 3319, - "time": 0.5759899827829081, + "noteOrder": 4187, + "time": 0.726248239161058, "position": { "x": 3, "y": 0 @@ -2828,18 +4300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3367, - "time": 0.5843376636928054, + "noteOrder": 4211, + "time": 0.7304220796160067, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2856,13 +4328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3416, - "time": 0.5926853446027025, + "noteOrder": 4211, + "time": 0.7304220796160067, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2879,13 +4351,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3464, - "time": 0.6010330255125998, + "noteOrder": 4235, + "time": 0.7345959200709552, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2897,18 +4369,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3512, - "time": 0.609380706422497, + "noteOrder": 4235, + "time": 0.7345959200709552, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2920,18 +4392,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3560, - "time": 0.6177283873323942, + "noteOrder": 4235, + "time": 0.7345959200709552, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2943,18 +4415,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3608, - "time": 0.6260760682422915, + "noteOrder": 4307, + "time": 0.7471174414358012, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2966,18 +4438,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3849, - "time": 0.6678144727917775, + "noteOrder": 4428, + "time": 0.7679866437105441, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2989,18 +4461,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3897, - "time": 0.6761621537016748, + "noteOrder": 4452, + "time": 0.7721604841654928, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3012,18 +4484,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3945, - "time": 0.6845098346115719, + "noteOrder": 4452, + "time": 0.7721604841654928, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3040,13 +4512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3969, - "time": 0.6886836750665206, + "noteOrder": 4476, + "time": 0.7763343246204414, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3063,13 +4535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3945, - "time": 0.6845098346115719, + "noteOrder": 4476, + "time": 0.7763343246204414, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3081,18 +4553,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 122, "indexInLine": 1, "isSliding": false, - "noteOrder": 3969, - "time": 0.6886836750665206, + "noteOrder": 4476, + "time": 0.7763343246204414, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3109,13 +4581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3993, - "time": 0.6928575155214692, + "noteOrder": 4500, + "time": 0.7805081650753899, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3132,13 +4604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4017, - "time": 0.6970313559764177, + "noteOrder": 4500, + "time": 0.7805081650753899, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3155,11 +4627,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3993, - "time": 0.6928575155214692, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { "x": 6, "y": 0 @@ -3173,18 +4645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4017, - "time": 0.6970313559764177, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3196,18 +4668,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4041, - "time": 0.7012051964313664, + "noteOrder": 4524, + "time": 0.7846820055303386, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3219,18 +4691,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4089, - "time": 0.7095528773412636, + "noteOrder": 4548, + "time": 0.7888558459852871, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3247,13 +4719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4137, - "time": 0.7179005582511608, + "noteOrder": 4548, + "time": 0.7888558459852871, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3265,18 +4737,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4185, - "time": 0.7262482391610581, + "noteOrder": 4572, + "time": 0.7930296864402359, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3293,13 +4765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4233, - "time": 0.7345959200709553, + "noteOrder": 4572, + "time": 0.7930296864402359, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3311,18 +4783,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 124, "indexInLine": 1, "isSliding": false, - "noteOrder": 4306, - "time": 0.747117441435801, + "noteOrder": 4572, + "time": 0.7930296864402359, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3339,11 +4811,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4426, - "time": 0.7679866437105443, + "noteOrder": 4596, + "time": 0.7972035268951844, "position": { "x": 7, "y": 0 @@ -3357,18 +4829,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4474, - "time": 0.7763343246204414, + "noteOrder": 4596, + "time": 0.7972035268951844, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3385,13 +4857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4522, - "time": 0.7846820055303386, + "noteOrder": 4620, + "time": 0.8013773673501331, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3403,18 +4875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4570, - "time": 0.7930296864402357, + "noteOrder": 4620, + "time": 0.8013773673501331, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3432,9 +4904,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4618, + "noteOrder": 4620, "time": 0.8013773673501331, "position": { "x": 7, @@ -3455,10 +4927,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4690, - "time": 0.813898888714979, + "noteOrder": 4692, + "time": 0.8138988887149788, "position": { "x": 7, "y": 0 @@ -3478,9 +4950,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.8180727291699275, "position": { "x": 7, @@ -3501,9 +4973,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4739, + "noteOrder": 4740, "time": 0.8222465696248761, "position": { "x": 7, @@ -3524,9 +4996,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.8180727291699275, "position": { "x": 3, @@ -3547,9 +5019,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4739, + "noteOrder": 4740, "time": 0.8222465696248761, "position": { "x": 3, @@ -3570,9 +5042,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4907, + "noteOrder": 4909, "time": 0.8514634528095163, "position": { "x": 3, @@ -3593,9 +5065,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4931, + "noteOrder": 4933, "time": 0.8556372932644649, "position": { "x": 3, @@ -3616,10 +5088,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4955, - "time": 0.8598111337194136, + "noteOrder": 4957, + "time": 0.8598111337194135, "position": { "x": 7, "y": 0 @@ -3639,9 +5111,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4979, + "noteOrder": 4981, "time": 0.8639849741743622, "position": { "x": 7, @@ -3662,9 +5134,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5003, + "noteOrder": 5005, "time": 0.8681588146293108, "position": { "x": 4, @@ -3685,9 +5157,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5075, + "noteOrder": 5077, "time": 0.8806803359941566, "position": { "x": 4, @@ -3708,9 +5180,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5147, + "noteOrder": 5150, "time": 0.8932018573590025, "position": { "x": 6, @@ -3731,10 +5203,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5171, - "time": 0.8973756978139511, + "noteOrder": 5174, + "time": 0.897375697813951, "position": { "x": 6, "y": 0 @@ -3754,9 +5226,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.9182449000886941, "position": { "x": 7, @@ -3777,10 +5249,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.9224187405436428, + "noteOrder": 5318, + "time": 0.9224187405436427, "position": { "x": 7, "y": 0 @@ -3800,9 +5272,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.9182449000886941, "position": { "x": 3, @@ -3823,10 +5295,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.9224187405436428, + "noteOrder": 5318, + "time": 0.9224187405436427, "position": { "x": 3, "y": 0 @@ -3846,9 +5318,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5340, + "noteOrder": 5342, "time": 0.9265925809985913, "position": { "x": 4, @@ -3869,9 +5341,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5364, + "noteOrder": 5366, "time": 0.9307664214535399, "position": { "x": 4, @@ -3892,9 +5364,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5340, + "noteOrder": 5342, "time": 0.9265925809985913, "position": { "x": 6, @@ -3915,9 +5387,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5364, + "noteOrder": 5366, "time": 0.9307664214535399, "position": { "x": 6, @@ -3938,9 +5410,9 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5484, + "noteOrder": 5486, "time": 0.951635623728283, "position": { "x": 3, @@ -3961,10 +5433,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5508, - "time": 0.9558094641832316, + "noteOrder": 5510, + "time": 0.9558094641832315, "position": { "x": 3, "y": 0 @@ -3984,9 +5456,9 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5484, + "noteOrder": 5486, "time": 0.951635623728283, "position": { "x": 7, @@ -4007,10 +5479,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5508, - "time": 0.9558094641832316, + "noteOrder": 5510, + "time": 0.9558094641832315, "position": { "x": 7, "y": 0 diff --git a/tracks/Let's DANCE aROUND!!/info.json b/tracks/Let's DANCE aROUND!!/info.json index 8e398d8e..bbddad46 100644 --- a/tracks/Let's DANCE aROUND!!/info.json +++ b/tracks/Let's DANCE aROUND!!/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Let's DANCE aROUND!!", - "SongLength": "124.342857", + "SongLength": "114.390204", "SongAuthorName": "kors k feat.Jaejun by NuevoStudio", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Let's Party!!/349_difficulty_1a.json b/tracks/Let's Party!!/349_difficulty_1a.json index 2897ed2a..2e7325e4 100644 --- a/tracks/Let's Party!!/349_difficulty_1a.json +++ b/tracks/Let's Party!!/349_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.03666454487587524, + "time": 0.036664544875875234, "position": { "x": 7, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.040738383195416936, "position": { "x": 7, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 252, + "noteOrder": 253, "time": 0.042775302355187776, "position": { "x": 3, @@ -134,7 +134,7 @@ }, { "noteOrder": 265, - "time": 0.04481222151495863, + "time": 0.044812221514958624, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 313, - "time": 0.052959898154042014, + "time": 0.05295989815404201, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 529, - "time": 0.08962444302991726, + "time": 0.08962444302991725, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 529, - "time": 0.08962444302991726, + "time": 0.08962444302991725, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 601, - "time": 0.10184595798854235, + "time": 0.10184595798854233, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 697, - "time": 0.11814131126670911, + "noteOrder": 698, + "time": 0.1181413112667091, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 986, - "time": 0.16702737110120944, + "time": 0.1670273711012094, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1058, - "time": 0.17924888605983452, + "time": 0.1792488860598345, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1107, "time": 0.1873965626989179, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1131, "time": 0.19147040101845958, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.19961807765754297, "position": { "x": 8, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1202, - "time": 0.2036919159770847, + "noteOrder": 1203, + "time": 0.20369191597708466, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1226, + "noteOrder": 1227, "time": 0.20776575429662636, "position": { "x": 6, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1250, - "time": 0.21183959261616805, + "noteOrder": 1251, + "time": 0.21183959261616803, "position": { "x": 7, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.21591343093570975, "position": { "x": 8, @@ -674,7 +674,7 @@ }, { "noteOrder": 1371, - "time": 0.23220878421387653, + "time": 0.2322087842138765, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1395, - "time": 0.23628262253341822, + "time": 0.2362826225334182, "position": { "x": 5, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1419, - "time": 0.24035646085295992, + "time": 0.2403564608529599, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1467, - "time": 0.24850413749204328, + "time": 0.2485041374920433, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1539, + "noteOrder": 1540, "time": 0.26072565245066837, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.2647994907702101, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.26887332908975176, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1659, - "time": 0.28109484404837687, + "noteOrder": 1660, + "time": 0.2810948440483768, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1707, + "noteOrder": 1708, "time": 0.2892425206874602, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.2973901973265436, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3014640356460853, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.305537873965627, + "noteOrder": 1804, + "time": 0.30553787396562704, "position": { "x": 5, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1852, - "time": 0.31368555060471043, + "time": 0.3136855506047104, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1972, - "time": 0.3340547422024189, + "noteOrder": 1973, + "time": 0.3340547422024188, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1996, + "noteOrder": 1997, "time": 0.33812858052196054, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2044, + "noteOrder": 2045, "time": 0.34627625716104393, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2068, + "noteOrder": 2069, "time": 0.3503500954805856, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.3788669637173775, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.38294080203691916, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.3870146403564609, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2525, - "time": 0.42775302355187783, + "noteOrder": 2526, + "time": 0.4277530235518778, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.4318268618714195, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2573, - "time": 0.43590070019096117, + "noteOrder": 2574, + "time": 0.4359007001909612, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.4399745385105029, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2621, + "noteOrder": 2622, "time": 0.44404837683004456, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.4481222151495862, + "noteOrder": 2646, + "time": 0.4481222151495863, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2669, - "time": 0.452196053469128, + "noteOrder": 2670, + "time": 0.45219605346912795, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3294, + "noteOrder": 3296, "time": 0.558115849777212, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3342, + "noteOrder": 3344, "time": 0.5662635264162954, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3392, "time": 0.5744112030553787, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3439, + "noteOrder": 3440, "time": 0.5825588796944622, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3463, - "time": 0.5866327180140039, + "noteOrder": 3464, + "time": 0.5866327180140037, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3487, + "noteOrder": 3488, "time": 0.5907065563335455, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3511, + "noteOrder": 3512, "time": 0.5947803946530872, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3524, "time": 0.5968173138128581, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3535, + "noteOrder": 3536, "time": 0.5988542329726289, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3560, "time": 0.6029280712921706, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3584, "time": 0.6070019096117123, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3607, - "time": 0.611075747931254, + "noteOrder": 3608, + "time": 0.6110757479312541, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.6131126670910249, + "noteOrder": 3620, + "time": 0.6131126670910247, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3631, + "noteOrder": 3632, "time": 0.6151495862507956, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3655, + "noteOrder": 3656, "time": 0.6192234245703374, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3668, "time": 0.6212603437301082, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3679, - "time": 0.6232972628898792, + "noteOrder": 3680, + "time": 0.6232972628898791, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3692, "time": 0.62533418204965, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3703, - "time": 0.6273711012094209, + "noteOrder": 3705, + "time": 0.6273711012094207, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3717, "time": 0.6294080203691916, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3727, - "time": 0.6314449395289625, + "noteOrder": 3729, + "time": 0.6314449395289624, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3739, + "noteOrder": 3741, "time": 0.6334818586887333, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3751, + "noteOrder": 3753, "time": 0.6355187778485042, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3751, + "noteOrder": 3753, "time": 0.6355187778485042, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3775, - "time": 0.6395926161680459, + "noteOrder": 3777, + "time": 0.6395926161680457, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3775, - "time": 0.6395926161680459, + "noteOrder": 3777, + "time": 0.6395926161680457, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3799, + "noteOrder": 3801, "time": 0.6436664544875875, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3799, + "noteOrder": 3801, "time": 0.6436664544875875, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3968, + "noteOrder": 3969, "time": 0.6721833227243794, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3992, + "noteOrder": 3993, "time": 0.6762571610439211, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4016, - "time": 0.6803309993634628, + "noteOrder": 4017, + "time": 0.6803309993634629, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4160, - "time": 0.7047740292807129, + "noteOrder": 4162, + "time": 0.704774029280713, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4184, - "time": 0.7088478676002546, + "noteOrder": 4186, + "time": 0.7088478676002545, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4208, - "time": 0.7129217059197964, + "noteOrder": 4210, + "time": 0.7129217059197963, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4256, + "noteOrder": 4258, "time": 0.7210693825588798, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4304, - "time": 0.7292170591979632, + "noteOrder": 4306, + "time": 0.7292170591979631, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4352, - "time": 0.7373647358370465, + "noteOrder": 4354, + "time": 0.7373647358370464, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4400, + "noteOrder": 4402, "time": 0.7455124124761299, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4424, + "noteOrder": 4426, "time": 0.7495862507956716, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4436, - "time": 0.7516231699554424, + "noteOrder": 4438, + "time": 0.7516231699554423, "position": { "x": 4, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4448, - "time": 0.7536600891152133, + "noteOrder": 4450, + "time": 0.7536600891152132, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4460, + "noteOrder": 4462, "time": 0.7556970082749841, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.757733927434755, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4484, - "time": 0.7597708465945259, + "noteOrder": 4486, + "time": 0.7597708465945258, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4497, + "noteOrder": 4498, "time": 0.7618077657542967, "position": { "x": 6, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4509, - "time": 0.7638446849140675, + "noteOrder": 4510, + "time": 0.7638446849140674, "position": { "x": 4, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4521, + "noteOrder": 4522, "time": 0.7658816040738383, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4521, + "noteOrder": 4522, "time": 0.7658816040738383, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4546, "time": 0.76995544239338, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4546, "time": 0.76995544239338, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.7740292807129218, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.7740292807129218, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4641, + "noteOrder": 4643, "time": 0.7862507956715468, "position": { "x": 6, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4665, - "time": 0.7903246339910884, + "noteOrder": 4667, + "time": 0.7903246339910885, "position": { "x": 5, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4689, - "time": 0.7943984723106302, + "noteOrder": 4691, + "time": 0.7943984723106301, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4737, - "time": 0.8025461489497135, + "noteOrder": 4739, + "time": 0.8025461489497137, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4761, - "time": 0.8066199872692553, + "noteOrder": 4763, + "time": 0.8066199872692552, "position": { "x": 7, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4785, + "noteOrder": 4787, "time": 0.810693825588797, "position": { "x": 8, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4809, - "time": 0.8147676639083388, + "noteOrder": 4811, + "time": 0.8147676639083387, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4833, + "noteOrder": 4835, "time": 0.8188415022278804, "position": { "x": 6, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4857, - "time": 0.8229153405474221, + "noteOrder": 4859, + "time": 0.822915340547422, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4881, + "noteOrder": 4883, "time": 0.8269891788669638, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4905, + "noteOrder": 4907, "time": 0.8310630171865054, "position": { "x": 7, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8351368555060472, + "noteOrder": 4931, + "time": 0.8351368555060471, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4953, - "time": 0.8392106938255889, + "noteOrder": 4955, + "time": 0.8392106938255888, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5001, - "time": 0.8473583704646722, + "noteOrder": 5004, + "time": 0.8473583704646721, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5026, + "noteOrder": 5028, "time": 0.8514322087842139, "position": { "x": 4, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5050, - "time": 0.8555060471037557, + "noteOrder": 5052, + "time": 0.8555060471037556, "position": { "x": 5, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5074, + "noteOrder": 5076, "time": 0.8595798854232973, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5122, + "noteOrder": 5124, "time": 0.8677275620623807, "position": { "x": 5, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.8718014003819223, + "noteOrder": 5148, + "time": 0.8718014003819224, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5170, + "noteOrder": 5172, "time": 0.875875238701464, "position": { "x": 2, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5220, "time": 0.8840229153405474, "position": { "x": 7, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5266, + "noteOrder": 5268, "time": 0.8921705919796308, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5314, + "noteOrder": 5316, "time": 0.9003182686187142, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5362, - "time": 0.9084659452577977, + "noteOrder": 5364, + "time": 0.9084659452577976, "position": { "x": 3, "y": 0 @@ -2836,7 +2836,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.016295353278166773, @@ -2859,7 +2859,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.020369191597708468, @@ -2882,7 +2882,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.02444302991725016, @@ -2905,7 +2905,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.028516868236791854, @@ -2928,7 +2928,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.06518141311266709, @@ -2951,7 +2951,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.06925525143220879, @@ -2974,10 +2974,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, - "time": 0.07332908975175048, + "time": 0.07332908975175047, "position": { "x": 6, "y": 0 @@ -2997,7 +2997,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, "time": 0.07740292807129218, @@ -3020,7 +3020,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.09777211966900064, @@ -3043,10 +3043,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.10184595798854235, + "time": 0.10184595798854233, "position": { "x": 6, "y": 0 @@ -3066,10 +3066,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10591979630808403, + "time": 0.10591979630808401, "position": { "x": 4, "y": 0 @@ -3089,7 +3089,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, "time": 0.10999363462762572, @@ -3112,9 +3112,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, + "noteOrder": 674, "time": 0.11406747294716742, "position": { "x": 6, @@ -3135,10 +3135,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 697, - "time": 0.11814131126670911, + "noteOrder": 698, + "time": 0.1181413112667091, "position": { "x": 6, "y": 0 @@ -3158,9 +3158,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, + "noteOrder": 722, "time": 0.12221514958625079, "position": { "x": 3, @@ -3179,11 +3179,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 734, + "time": 0.12425206874602165, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 734, + "time": 0.12425206874602165, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 745, + "noteOrder": 746, "time": 0.1262889879057925, "position": { "x": 7, @@ -3202,11 +3248,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 758, + "time": 0.12832590706556335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 758, + "time": 0.12832590706556335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 769, + "noteOrder": 770, "time": 0.13036282622533418, "position": { "x": 4, @@ -3227,7 +3319,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 794, "time": 0.13443666454487588, @@ -3250,7 +3342,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 818, "time": 0.13851050286441757, @@ -3273,7 +3365,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 842, "time": 0.14258434118395927, @@ -3296,7 +3388,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, "time": 0.16295353278166774, @@ -3319,10 +3411,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 986, - "time": 0.16702737110120944, + "time": 0.1670273711012094, "position": { "x": 7, "y": 0 @@ -3342,7 +3434,7 @@ }, { "lineGroupId": 41, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1034, "time": 0.1751750477402928, @@ -3365,9 +3457,9 @@ }, { "lineGroupId": 41, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1130, + "noteOrder": 1131, "time": 0.19147040101845958, "position": { "x": 7, @@ -3388,9 +3480,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.19554423933800127, "position": { "x": 7, @@ -3411,9 +3503,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1226, + "noteOrder": 1227, "time": 0.20776575429662636, "position": { "x": 4, @@ -3434,9 +3526,9 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.21591343093570975, "position": { "x": 6, @@ -3457,7 +3549,7 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1347, "time": 0.22813494589433483, @@ -3480,7 +3572,7 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1443, "time": 0.24443029917250159, @@ -3503,7 +3595,7 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1443, "time": 0.24443029917250159, @@ -3526,7 +3618,7 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1515, "time": 0.2566518141311267, @@ -3549,9 +3641,9 @@ }, { "lineGroupId": 62, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.26887332908975176, "position": { "x": 4, @@ -3572,9 +3664,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, + "noteOrder": 1636, "time": 0.27702100572883515, "position": { "x": 6, @@ -3595,10 +3687,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1659, - "time": 0.28109484404837687, + "noteOrder": 1660, + "time": 0.2810948440483768, "position": { "x": 6, "y": 0 @@ -3618,9 +3710,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.28516868236791854, "position": { "x": 4, @@ -3641,9 +3733,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1707, + "noteOrder": 1708, "time": 0.2892425206874602, "position": { "x": 4, @@ -3664,10 +3756,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.2933163590070019, + "noteOrder": 1732, + "time": 0.29331635900700187, "position": { "x": 3, "y": 0 @@ -3687,10 +3779,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.305537873965627, + "noteOrder": 1804, + "time": 0.30553787396562704, "position": { "x": 6, "y": 0 @@ -3710,9 +3802,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3096117122851687, "position": { "x": 7, @@ -3733,7 +3825,7 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1900, "time": 0.32183322724379376, @@ -3756,7 +3848,7 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1924, "time": 0.3259070655633355, @@ -3779,9 +3871,9 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1996, + "noteOrder": 1997, "time": 0.33812858052196054, "position": { "x": 6, @@ -3802,9 +3894,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2020, + "noteOrder": 2021, "time": 0.3422024188415022, "position": { "x": 7, @@ -3825,9 +3917,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2068, + "noteOrder": 2069, "time": 0.3503500954805856, "position": { "x": 5, @@ -3848,10 +3940,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2116, - "time": 0.35849777211966904, + "noteOrder": 2117, + "time": 0.358497772119669, "position": { "x": 3, "y": 0 @@ -3870,11 +3962,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2140, - "time": 0.3625716104392107, + "noteOrder": 2129, + "time": 0.3605346912794399, "position": { "x": 3, "y": 0 @@ -3888,18 +3980,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.36664544875875243, + "noteOrder": 2129, + "time": 0.3605346912794399, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3916,11 +4008,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2188, - "time": 0.3707192870782941, + "noteOrder": 2141, + "time": 0.36257161043921066, "position": { "x": 3, "y": 0 @@ -3939,11 +4031,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2212, - "time": 0.3747931253978358, + "noteOrder": 2153, + "time": 0.36460852959898155, "position": { "x": 3, "y": 0 @@ -3957,18 +4049,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2284, - "time": 0.3870146403564609, + "noteOrder": 2153, + "time": 0.36460852959898155, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3980,18 +4072,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.39108847867600255, + "noteOrder": 2165, + "time": 0.36664544875875243, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4003,18 +4095,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2332, - "time": 0.3951623169955442, + "noteOrder": 2177, + "time": 0.3686823679185232, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4026,16 +4118,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2356, - "time": 0.39923615531508594, + "noteOrder": 2177, + "time": 0.3686823679185232, "position": { "x": 4, "y": 0 @@ -4054,11 +4146,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 2381, - "time": 0.40330999363462766, + "noteOrder": 2189, + "time": 0.3707192870782941, "position": { "x": 3, "y": 0 @@ -4072,16 +4164,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2405, - "time": 0.4073838319541694, + "noteOrder": 2201, + "time": 0.37275620623806494, "position": { "x": 3, "y": 0 @@ -4095,18 +4187,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2501, - "time": 0.4236791852323361, + "noteOrder": 2201, + "time": 0.37275620623806494, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4118,18 +4210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2405, - "time": 0.4073838319541694, + "noteOrder": 2213, + "time": 0.3747931253978358, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4141,18 +4233,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2501, - "time": 0.4236791852323361, + "noteOrder": 2285, + "time": 0.3870146403564609, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4164,18 +4256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2693, - "time": 0.45626989178866967, + "noteOrder": 2309, + "time": 0.39108847867600255, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4187,18 +4279,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2717, - "time": 0.4603437301082114, + "noteOrder": 2333, + "time": 0.39516231699554427, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4210,16 +4302,154 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.39923615531508594, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2381, + "time": 0.4033099936346276, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.40738383195416933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.42367918523233605, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.40738383195416933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2502, + "time": 0.42367918523233605, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2741, - "time": 0.46441756842775306, + "noteOrder": 2694, + "time": 0.45626989178866967, "position": { "x": 4, "y": 0 @@ -4237,11 +4467,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2718, + "time": 0.46034373010821134, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 2765, + "noteOrder": 2742, + "time": 0.464417568427753, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2766, "time": 0.4684914067472947, "position": { "x": 3, @@ -4262,10 +4538,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2789, - "time": 0.47256524506683645, + "noteOrder": 2790, + "time": 0.4725652450668364, "position": { "x": 6, "y": 0 @@ -4285,9 +4561,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.4766390833863781, "position": { "x": 7, @@ -4308,10 +4584,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2837, - "time": 0.48071292170591984, + "noteOrder": 2839, + "time": 0.4807129217059198, "position": { "x": 6, "y": 0 @@ -4331,9 +4607,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2861, + "noteOrder": 2863, "time": 0.4847867600254615, "position": { "x": 7, @@ -4354,9 +4630,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2885, + "noteOrder": 2887, "time": 0.48886059834500317, "position": { "x": 4, @@ -4377,12 +4653,380 @@ }, { "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2911, + "time": 0.49293443666454484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2935, + "time": 0.4970082749840866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2959, + "time": 0.5010821133036283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 2910, - "time": 0.4929344366645449, + "noteOrder": 2983, + "time": 0.50515595162317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3007, + "time": 0.5092297899427117, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3031, + "time": 0.5133036282622534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3055, + "time": 0.5173774665817951, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3103, + "time": 0.5255251432208784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5295989815404202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3151, + "time": 0.5336728198599618, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.5377466581795035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3199, + "time": 0.5418204964990452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3223, + "time": 0.5458943348185868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3272, + "time": 0.5540420114576703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3296, + "time": 0.558115849777212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3320, + "time": 0.5621896880967536, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3344, + "time": 0.5662635264162954, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4399,11 +5043,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2934, - "time": 0.49700827498408656, + "noteOrder": 3368, + "time": 0.5703373647358371, "position": { "x": 6, "y": 0 @@ -4422,13 +5066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2958, - "time": 0.5010821133036283, + "noteOrder": 3392, + "time": 0.5744112030553787, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4445,11 +5089,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2982, - "time": 0.50515595162317, + "noteOrder": 3416, + "time": 0.5784850413749204, "position": { "x": 4, "y": 0 @@ -4468,13 +5112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3006, - "time": 0.5092297899427117, + "noteOrder": 3440, + "time": 0.5825588796944622, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4491,13 +5135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3030, - "time": 0.5133036282622534, + "noteOrder": 3849, + "time": 0.651814131126671, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4514,11 +5158,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3054, - "time": 0.5173774665817951, + "noteOrder": 3861, + "time": 0.6538510502864419, "position": { "x": 7, "y": 0 @@ -4537,11 +5181,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3102, - "time": 0.5255251432208784, + "noteOrder": 3861, + "time": 0.6538510502864419, "position": { "x": 6, "y": 0 @@ -4560,11 +5204,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 3126, - "time": 0.5295989815404202, + "noteOrder": 3873, + "time": 0.6558879694462125, "position": { "x": 7, "y": 0 @@ -4578,18 +5222,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 160, "indexInLine": 2, "isSliding": false, - "noteOrder": 3150, - "time": 0.5336728198599618, + "noteOrder": 3885, + "time": 0.6579248886059834, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4601,18 +5245,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3174, - "time": 0.5377466581795035, + "noteOrder": 3885, + "time": 0.6579248886059834, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4629,13 +5273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3198, - "time": 0.5418204964990452, + "noteOrder": 3897, + "time": 0.6599618077657543, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4647,18 +5291,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 161, "indexInLine": 2, "isSliding": false, - "noteOrder": 3222, - "time": 0.545894334818587, + "noteOrder": 3909, + "time": 0.6619987269255252, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4670,16 +5314,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3270, - "time": 0.5540420114576703, + "noteOrder": 3909, + "time": 0.6619987269255252, "position": { "x": 6, "y": 0 @@ -4698,13 +5342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 3294, - "time": 0.558115849777212, + "noteOrder": 3921, + "time": 0.6640356460852961, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4716,18 +5360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3318, - "time": 0.5621896880967537, + "noteOrder": 3933, + "time": 0.6660725652450669, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4744,13 +5388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3342, - "time": 0.5662635264162954, + "noteOrder": 3933, + "time": 0.6660725652450669, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4767,13 +5411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3366, - "time": 0.5703373647358371, + "noteOrder": 3945, + "time": 0.6681094844048376, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4790,13 +5434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3390, - "time": 0.5744112030553787, + "noteOrder": 4017, + "time": 0.6803309993634629, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4813,13 +5457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3414, - "time": 0.5784850413749204, + "noteOrder": 4041, + "time": 0.6844048376830044, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4836,13 +5480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3439, - "time": 0.5825588796944622, + "noteOrder": 4053, + "time": 0.6864417568427753, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4859,13 +5503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3847, - "time": 0.651814131126671, + "noteOrder": 4053, + "time": 0.6864417568427753, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4877,18 +5521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3871, - "time": 0.6558879694462126, + "noteOrder": 4065, + "time": 0.6884786760025462, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4900,18 +5544,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3895, - "time": 0.6599618077657543, + "noteOrder": 4077, + "time": 0.690515595162317, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4928,13 +5572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3919, - "time": 0.664035646085296, + "noteOrder": 4077, + "time": 0.690515595162317, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4946,18 +5590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3943, - "time": 0.6681094844048378, + "noteOrder": 4089, + "time": 0.6925525143220879, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4969,18 +5613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4016, - "time": 0.6803309993634628, + "noteOrder": 4101, + "time": 0.6945894334818588, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4992,18 +5636,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4040, - "time": 0.6844048376830044, + "noteOrder": 4101, + "time": 0.6945894334818588, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5020,11 +5664,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4064, - "time": 0.6884786760025462, + "noteOrder": 4113, + "time": 0.6966263526416295, "position": { "x": 3, "y": 0 @@ -5043,11 +5687,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4088, - "time": 0.6925525143220879, + "noteOrder": 4125, + "time": 0.6986632718014004, "position": { "x": 3, "y": 0 @@ -5061,18 +5705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4112, - "time": 0.6966263526416295, + "noteOrder": 4125, + "time": 0.6986632718014004, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5090,9 +5734,9 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4136, + "noteOrder": 4138, "time": 0.7007001909611712, "position": { "x": 3, @@ -5113,10 +5757,10 @@ }, { "lineGroupId": 171, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4208, - "time": 0.7129217059197964, + "noteOrder": 4210, + "time": 0.7129217059197963, "position": { "x": 6, "y": 0 @@ -5136,10 +5780,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4232, - "time": 0.7169955442393381, + "noteOrder": 4234, + "time": 0.716995544239338, "position": { "x": 6, "y": 0 @@ -5159,9 +5803,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4256, + "noteOrder": 4258, "time": 0.7210693825588798, "position": { "x": 6, @@ -5182,10 +5826,10 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4280, - "time": 0.7251432208784214, + "noteOrder": 4282, + "time": 0.7251432208784213, "position": { "x": 4, "y": 0 @@ -5205,10 +5849,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4304, - "time": 0.7292170591979632, + "noteOrder": 4306, + "time": 0.7292170591979631, "position": { "x": 4, "y": 0 @@ -5228,9 +5872,9 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4328, + "noteOrder": 4330, "time": 0.7332908975175049, "position": { "x": 6, @@ -5251,10 +5895,10 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4352, - "time": 0.7373647358370465, + "noteOrder": 4354, + "time": 0.7373647358370464, "position": { "x": 6, "y": 0 @@ -5274,9 +5918,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4376, + "noteOrder": 4378, "time": 0.7414385741565882, "position": { "x": 4, @@ -5297,9 +5941,9 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4400, + "noteOrder": 4402, "time": 0.7455124124761299, "position": { "x": 4, @@ -5320,9 +5964,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4617, + "noteOrder": 4619, "time": 0.7821769573520051, "position": { "x": 8, @@ -5343,9 +5987,9 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4713, + "noteOrder": 4715, "time": 0.7984723106301719, "position": { "x": 4, @@ -5366,9 +6010,9 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4713, + "noteOrder": 4715, "time": 0.7984723106301719, "position": { "x": 3, @@ -5389,9 +6033,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4785, + "noteOrder": 4787, "time": 0.810693825588797, "position": { "x": 6, @@ -5412,9 +6056,9 @@ }, { "lineGroupId": 206, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4881, + "noteOrder": 4883, "time": 0.8269891788669638, "position": { "x": 3, @@ -5435,10 +6079,10 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5001, - "time": 0.8473583704646722, + "noteOrder": 5004, + "time": 0.8473583704646721, "position": { "x": 2, "y": 0 @@ -5458,9 +6102,9 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.863653723742839, "position": { "x": 6, @@ -5481,9 +6125,9 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.863653723742839, "position": { "x": 7, @@ -5504,9 +6148,9 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5170, + "noteOrder": 5172, "time": 0.875875238701464, "position": { "x": 4, @@ -5527,9 +6171,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5194, + "noteOrder": 5196, "time": 0.8799490770210058, "position": { "x": 6, @@ -5550,9 +6194,9 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5218, + "noteOrder": 5220, "time": 0.8840229153405474, "position": { "x": 6, @@ -5573,9 +6217,9 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5242, + "noteOrder": 5244, "time": 0.8880967536600891, "position": { "x": 4, @@ -5596,9 +6240,9 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5266, + "noteOrder": 5268, "time": 0.8921705919796308, "position": { "x": 4, @@ -5619,10 +6263,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5290, - "time": 0.8962444302991724, + "noteOrder": 5292, + "time": 0.8962444302991726, "position": { "x": 6, "y": 0 @@ -5642,9 +6286,9 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5314, + "noteOrder": 5316, "time": 0.9003182686187142, "position": { "x": 6, @@ -5665,10 +6309,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5338, - "time": 0.904392106938256, + "noteOrder": 5340, + "time": 0.9043921069382559, "position": { "x": 4, "y": 0 @@ -5688,10 +6332,10 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5362, - "time": 0.9084659452577977, + "noteOrder": 5364, + "time": 0.9084659452577976, "position": { "x": 4, "y": 0 @@ -5711,9 +6355,9 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5386, + "noteOrder": 5388, "time": 0.9125397835773393, "position": { "x": 6, @@ -5734,10 +6378,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5410, - "time": 0.916613621896881, + "noteOrder": 5412, + "time": 0.9166136218968809, "position": { "x": 7, "y": 0 @@ -5757,10 +6401,10 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5434, - "time": 0.9206874602164228, + "noteOrder": 5436, + "time": 0.9206874602164227, "position": { "x": 6, "y": 0 @@ -5780,10 +6424,10 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5458, - "time": 0.9247612985359644, + "noteOrder": 5461, + "time": 0.9247612985359643, "position": { "x": 7, "y": 0 @@ -5803,10 +6447,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5482, - "time": 0.9288351368555061, + "noteOrder": 5485, + "time": 0.928835136855506, "position": { "x": 4, "y": 0 @@ -5826,9 +6470,9 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5506, + "noteOrder": 5509, "time": 0.9329089751750478, "position": { "x": 3, @@ -5849,9 +6493,9 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5530, + "noteOrder": 5533, "time": 0.9369828134945895, "position": { "x": 4, @@ -5872,9 +6516,9 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5555, + "noteOrder": 5557, "time": 0.9410566518141312, "position": { "x": 3, @@ -5895,10 +6539,10 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5579, - "time": 0.9451304901336729, + "noteOrder": 5581, + "time": 0.9451304901336728, "position": { "x": 6, "y": 0 @@ -5918,9 +6562,9 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5603, + "noteOrder": 5605, "time": 0.9492043284532146, "position": { "x": 7, @@ -5941,9 +6585,9 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5627, + "noteOrder": 5629, "time": 0.9532781667727562, "position": { "x": 4, @@ -5964,9 +6608,9 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5651, + "noteOrder": 5653, "time": 0.9573520050922979, "position": { "x": 3, @@ -5987,10 +6631,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5675, - "time": 0.9614258434118397, + "noteOrder": 5677, + "time": 0.9614258434118396, "position": { "x": 6, "y": 0 @@ -6010,9 +6654,9 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5699, + "noteOrder": 5701, "time": 0.9654996817313813, "position": { "x": 7, @@ -6033,9 +6677,9 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5723, + "noteOrder": 5725, "time": 0.969573520050923, "position": { "x": 4, @@ -6056,9 +6700,9 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5747, + "noteOrder": 5749, "time": 0.9736473583704647, "position": { "x": 3, diff --git a/tracks/Let's Party!!/349_difficulty_1b.json b/tracks/Let's Party!!/349_difficulty_1b.json index 9a2d6af7..255cd4c1 100644 --- a/tracks/Let's Party!!/349_difficulty_1b.json +++ b/tracks/Let's Party!!/349_difficulty_1b.json @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.03666454487587524, + "time": 0.036664544875875234, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 265, - "time": 0.04481222151495863, + "time": 0.044812221514958624, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 313, - "time": 0.052959898154042014, + "time": 0.05295989815404201, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 625, - "time": 0.10591979630808403, + "time": 0.10591979630808401, "position": { "x": 6, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.12221514958625079, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.13036282622533418, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.13036282622533418, "position": { "x": 3, @@ -334,7 +334,7 @@ }, { "noteOrder": 866, - "time": 0.14665817950350096, + "time": 0.14665817950350094, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 866, - "time": 0.14665817950350096, + "time": 0.14665817950350094, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1107, "time": 0.1873965626989179, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 1395, - "time": 0.23628262253341822, + "time": 0.2362826225334182, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3014640356460853, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1972, - "time": 0.3340547422024189, + "noteOrder": 1973, + "time": 0.3340547422024188, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2116, - "time": 0.35849777211966904, + "noteOrder": 2117, + "time": 0.358497772119669, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2140, - "time": 0.3625716104392107, + "noteOrder": 2141, + "time": 0.36257161043921066, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2308, + "noteOrder": 2309, "time": 0.39108847867600255, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2332, - "time": 0.3951623169955442, + "noteOrder": 2333, + "time": 0.39516231699554427, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.39923615531508594, "position": { "x": 3, @@ -594,7 +594,7 @@ }, { "noteOrder": 2381, - "time": 0.40330999363462766, + "time": 0.4033099936346276, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2405, - "time": 0.4073838319541694, + "noteOrder": 2406, + "time": 0.40738383195416933, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2429, - "time": 0.41145767027371105, + "noteOrder": 2430, + "time": 0.411457670273711, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.4155315085932527, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2477, - "time": 0.41960534691279444, + "noteOrder": 2478, + "time": 0.4196053469127944, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2934, - "time": 0.49700827498408656, + "noteOrder": 2935, + "time": 0.4970082749840866, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2934, - "time": 0.49700827498408656, + "noteOrder": 2935, + "time": 0.4970082749840866, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3270, + "noteOrder": 3272, "time": 0.5540420114576703, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3270, + "noteOrder": 3272, "time": 0.5540420114576703, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3895, + "noteOrder": 3897, "time": 0.6599618077657543, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3992, + "noteOrder": 3993, "time": 0.6762571610439211, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4280, - "time": 0.7251432208784214, + "noteOrder": 4282, + "time": 0.7251432208784213, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4376, + "noteOrder": 4378, "time": 0.7414385741565882, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.757733927434755, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.7740292807129218, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4761, - "time": 0.8066199872692553, + "noteOrder": 4763, + "time": 0.8066199872692552, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4905, + "noteOrder": 4907, "time": 0.8310630171865054, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8351368555060472, + "noteOrder": 4931, + "time": 0.8351368555060471, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4953, - "time": 0.8392106938255889, + "noteOrder": 4955, + "time": 0.8392106938255888, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4977, + "noteOrder": 4979, "time": 0.8432845321451305, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.8718014003819223, + "noteOrder": 5148, + "time": 0.8718014003819224, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5170, + "noteOrder": 5172, "time": 0.875875238701464, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5194, + "noteOrder": 5196, "time": 0.8799490770210058, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5220, "time": 0.8840229153405474, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5242, + "noteOrder": 5244, "time": 0.8880967536600891, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5266, + "noteOrder": 5268, "time": 0.8921705919796308, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5386, + "noteOrder": 5388, "time": 0.9125397835773393, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5386, + "noteOrder": 5388, "time": 0.9125397835773393, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5410, - "time": 0.916613621896881, + "noteOrder": 5412, + "time": 0.9166136218968809, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5458, - "time": 0.9247612985359644, + "noteOrder": 5461, + "time": 0.9247612985359643, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5506, + "noteOrder": 5509, "time": 0.9329089751750478, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5555, + "noteOrder": 5557, "time": 0.9410566518141312, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5603, + "noteOrder": 5605, "time": 0.9492043284532146, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5651, + "noteOrder": 5653, "time": 0.9573520050922979, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5699, + "noteOrder": 5701, "time": 0.9654996817313813, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5747, + "noteOrder": 5749, "time": 0.9736473583704647, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5771, + "noteOrder": 5773, "time": 0.9777211966900063, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5771, + "noteOrder": 5773, "time": 0.9777211966900063, "position": { "x": 7, @@ -1356,7 +1356,7 @@ "lineNodes": [ { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, "time": 0.16295353278166774, @@ -1379,7 +1379,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1010, "time": 0.1711012094207511, @@ -1402,10 +1402,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.17924888605983452, + "time": 0.1792488860598345, "position": { "x": 3, "y": 0 @@ -1425,9 +1425,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1106, + "noteOrder": 1107, "time": 0.1873965626989179, "position": { "x": 4, @@ -1448,9 +1448,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.19554423933800127, "position": { "x": 7, @@ -1469,12 +1469,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1179, + "time": 0.19961807765754297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1179, + "time": 0.19961807765754297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1203, + "time": 0.20369191597708466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1202, - "time": 0.2036919159770847, + "noteOrder": 1227, + "time": 0.20776575429662636, "position": { "x": 7, "y": 0 @@ -1492,12 +1561,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1227, + "time": 0.20776575429662636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.21183959261616805, + "noteOrder": 1251, + "time": 0.21183959261616803, "position": { "x": 7, "y": 0 @@ -1517,9 +1609,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.21998726925525144, "position": { "x": 7, @@ -1540,7 +1632,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1347, "time": 0.22813494589433483, @@ -1563,10 +1655,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1395, - "time": 0.23628262253341822, + "time": 0.2362826225334182, "position": { "x": 4, "y": 0 @@ -1586,7 +1678,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1443, "time": 0.24443029917250159, @@ -1609,7 +1701,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1491, "time": 0.252577975811585, @@ -1632,9 +1724,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1539, + "noteOrder": 1540, "time": 0.26072565245066837, "position": { "x": 3, @@ -1653,11 +1745,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1564, + "time": 0.2647994907702101, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1564, + "time": 0.2647994907702101, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.26887332908975176, "position": { "x": 3, @@ -1676,11 +1814,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1612, + "time": 0.2729471674092934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1612, + "time": 0.2729471674092934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, + "noteOrder": 1636, "time": 0.27702100572883515, "position": { "x": 3, @@ -1701,9 +1885,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.28516868236791854, "position": { "x": 3, @@ -1724,10 +1908,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.2933163590070019, + "noteOrder": 1732, + "time": 0.29331635900700187, "position": { "x": 3, "y": 0 @@ -1747,9 +1931,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3014640356460853, "position": { "x": 4, @@ -1770,9 +1954,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3096117122851687, "position": { "x": 7, @@ -1791,9 +1975,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3136855506047104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3136855506047104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1876, "time": 0.3177593889242521, @@ -1815,11 +2045,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1924, - "time": 0.3259070655633355, + "noteOrder": 1900, + "time": 0.32183322724379376, "position": { "x": 7, "y": 0 @@ -1833,16 +2063,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1972, - "time": 0.3340547422024189, + "noteOrder": 1900, + "time": 0.32183322724379376, "position": { "x": 6, "y": 0 @@ -1856,18 +2086,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2020, - "time": 0.3422024188415022, + "noteOrder": 1924, + "time": 0.3259070655633355, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1879,18 +2109,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2068, - "time": 0.3503500954805856, + "noteOrder": 1973, + "time": 0.3340547422024188, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1907,11 +2137,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2164, - "time": 0.36664544875875243, + "noteOrder": 2021, + "time": 0.3422024188415022, "position": { "x": 3, "y": 0 @@ -1930,11 +2160,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2212, - "time": 0.3747931253978358, + "noteOrder": 2045, + "time": 0.34627625716104393, "position": { "x": 3, "y": 0 @@ -1948,15 +2178,245 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2045, + "time": 0.34627625716104393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2069, + "time": 0.3503500954805856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2093, + "time": 0.35442393380012727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2093, + "time": 0.35442393380012727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2165, + "time": 0.36664544875875243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2189, + "time": 0.3707192870782941, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2189, + "time": 0.3707192870782941, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3747931253978358, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3788669637173775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3788669637173775, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.38294080203691916, "position": { "x": 3, @@ -1976,13 +2436,519 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.3870146403564609, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2285, + "time": 0.3870146403564609, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2550, + "time": 0.4318268618714195, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2598, + "time": 0.4399745385105029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.4481222151495863, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2694, + "time": 0.45626989178866967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2742, + "time": 0.464417568427753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2790, + "time": 0.4725652450668364, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2839, + "time": 0.4807129217059198, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2887, + "time": 0.48886059834500317, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3079, + "time": 0.5214513049013367, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3127, + "time": 0.5295989815404202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.5377466581795035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.5458943348185868, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3464, + "time": 0.5866327180140037, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3512, + "time": 0.5947803946530872, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3560, + "time": 0.6029280712921706, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3608, + "time": 0.6110757479312541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6192234245703374, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3705, + "time": 0.6273711012094207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3753, + "time": 0.6355187778485042, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3801, + "time": 0.6436664544875875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2549, - "time": 0.4318268618714195, + "noteOrder": 3849, + "time": 0.651814131126671, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -1999,11 +2965,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2597, - "time": 0.4399745385105029, + "noteOrder": 3897, + "time": 0.6599618077657543, "position": { "x": 4, "y": 0 @@ -2022,13 +2988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2645, - "time": 0.4481222151495862, + "noteOrder": 3945, + "time": 0.6681094844048376, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2045,11 +3011,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2693, - "time": 0.45626989178866967, + "noteOrder": 3993, + "time": 0.6762571610439211, "position": { "x": 6, "y": 0 @@ -2068,11 +3034,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2741, - "time": 0.46441756842775306, + "noteOrder": 4041, + "time": 0.6844048376830044, "position": { "x": 3, "y": 0 @@ -2091,11 +3057,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2789, - "time": 0.47256524506683645, + "noteOrder": 4065, + "time": 0.6884786760025462, "position": { "x": 3, "y": 0 @@ -2114,13 +3080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2837, - "time": 0.48071292170591984, + "noteOrder": 4065, + "time": 0.6884786760025462, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2132,18 +3098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 2885, - "time": 0.48886059834500317, + "noteOrder": 4089, + "time": 0.6925525143220879, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2160,13 +3126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3078, - "time": 0.5214513049013367, + "noteOrder": 4113, + "time": 0.6966263526416295, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2183,13 +3149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3126, - "time": 0.5295989815404202, + "noteOrder": 4113, + "time": 0.6966263526416295, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2206,11 +3172,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3174, - "time": 0.5377466581795035, + "noteOrder": 4138, + "time": 0.7007001909611712, "position": { "x": 3, "y": 0 @@ -2229,11 +3195,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3222, - "time": 0.545894334818587, + "noteOrder": 4186, + "time": 0.7088478676002545, "position": { "x": 3, "y": 0 @@ -2252,13 +3218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3463, - "time": 0.5866327180140039, + "noteOrder": 4234, + "time": 0.716995544239338, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2275,11 +3241,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3511, - "time": 0.5947803946530872, + "noteOrder": 4282, + "time": 0.7251432208784213, "position": { "x": 6, "y": 0 @@ -2298,13 +3264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3559, - "time": 0.6029280712921706, + "noteOrder": 4330, + "time": 0.7332908975175049, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2321,11 +3287,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3607, - "time": 0.611075747931254, + "noteOrder": 4378, + "time": 0.7414385741565882, "position": { "x": 4, "y": 0 @@ -2344,13 +3310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3655, - "time": 0.6192234245703374, + "noteOrder": 4426, + "time": 0.7495862507956716, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2367,11 +3333,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3703, - "time": 0.6273711012094209, + "noteOrder": 4474, + "time": 0.757733927434755, "position": { "x": 6, "y": 0 @@ -2390,36 +3356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 3751, - "time": 0.6355187778485042, - "position": { - "x": 2, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 82, + "lineGroupId": 97, "indexInLine": 1, "isSliding": false, - "noteOrder": 3799, - "time": 0.6436664544875875, + "noteOrder": 4522, + "time": 0.7658816040738383, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2436,13 +3379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3847, - "time": 0.651814131126671, + "noteOrder": 4571, + "time": 0.7740292807129218, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2459,13 +3402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3895, - "time": 0.6599618077657543, + "noteOrder": 4619, + "time": 0.7821769573520051, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2477,16 +3420,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3943, - "time": 0.6681094844048378, + "noteOrder": 4643, + "time": 0.7862507956715468, "position": { "x": 7, "y": 0 @@ -2505,11 +3448,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3992, - "time": 0.6762571610439211, + "noteOrder": 4643, + "time": 0.7862507956715468, "position": { "x": 6, "y": 0 @@ -2528,13 +3471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4040, - "time": 0.6844048376830044, + "noteOrder": 4667, + "time": 0.7903246339910885, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2551,36 +3494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4088, - "time": 0.6925525143220879, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4136, - "time": 0.7007001909611712, + "noteOrder": 4691, + "time": 0.7943984723106301, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2597,13 +3517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4184, - "time": 0.7088478676002546, + "noteOrder": 4691, + "time": 0.7943984723106301, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2620,11 +3540,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4232, - "time": 0.7169955442393381, + "noteOrder": 4715, + "time": 0.7984723106301719, "position": { "x": 7, "y": 0 @@ -2643,11 +3563,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4280, - "time": 0.7251432208784214, + "noteOrder": 4763, + "time": 0.8066199872692552, "position": { "x": 6, "y": 0 @@ -2666,11 +3586,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4328, - "time": 0.7332908975175049, + "noteOrder": 4811, + "time": 0.8147676639083387, "position": { "x": 3, "y": 0 @@ -2689,13 +3609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4376, - "time": 0.7414385741565882, + "noteOrder": 4835, + "time": 0.8188415022278804, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2712,13 +3632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4424, - "time": 0.7495862507956716, + "noteOrder": 4835, + "time": 0.8188415022278804, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2730,18 +3650,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 4472, - "time": 0.757733927434755, + "noteOrder": 4859, + "time": 0.822915340547422, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2758,11 +3678,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4521, - "time": 0.7658816040738383, + "noteOrder": 4883, + "time": 0.8269891788669638, "position": { "x": 3, "y": 0 @@ -2776,16 +3696,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4569, - "time": 0.7740292807129218, + "noteOrder": 4883, + "time": 0.8269891788669638, "position": { "x": 4, "y": 0 @@ -2799,16 +3719,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4617, - "time": 0.7821769573520051, + "noteOrder": 5004, + "time": 0.8473583704646721, "position": { "x": 7, "y": 0 @@ -2827,11 +3747,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4665, - "time": 0.7903246339910884, + "noteOrder": 5028, + "time": 0.8514322087842139, "position": { "x": 7, "y": 0 @@ -2845,18 +3765,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4713, - "time": 0.7984723106301719, + "noteOrder": 5028, + "time": 0.8514322087842139, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2873,13 +3793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 4761, - "time": 0.8066199872692553, + "noteOrder": 5052, + "time": 0.8555060471037556, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2891,18 +3811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4809, - "time": 0.8147676639083388, + "noteOrder": 5076, + "time": 0.8595798854232973, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2919,13 +3839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4857, - "time": 0.8229153405474221, + "noteOrder": 5076, + "time": 0.8595798854232973, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2937,16 +3857,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5001, - "time": 0.8473583704646722, + "noteOrder": 5100, + "time": 0.863653723742839, "position": { "x": 7, "y": 0 @@ -2965,11 +3885,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5050, - "time": 0.8555060471037557, + "noteOrder": 5124, + "time": 0.8677275620623807, "position": { "x": 7, "y": 0 @@ -2983,18 +3903,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5098, - "time": 0.863653723742839, + "noteOrder": 5124, + "time": 0.8677275620623807, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { diff --git a/tracks/Let's Party!!/info.json b/tracks/Let's Party!!/info.json index b15c6d84..79d24c6c 100644 --- a/tracks/Let's Party!!/info.json +++ b/tracks/Let's Party!!/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Let's Party!!", - "SongLength": "127.111837", + "SongLength": "117.159184", "SongAuthorName": "Relect", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1a.json" "b/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1a.json" index d5041395..ed81fb4f 100644 --- "a/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1a.json" +++ "b/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1a.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 240, - "time": 0.032493907392363935, + "time": 0.03249390739236393, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 264, - "time": 0.03574329813160033, + "time": 0.03574329813160032, "position": { "x": 5, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.042242079610073105, "position": { "x": 5, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.045491470349309504, "position": { "x": 5, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.048740861088545896, "position": { "x": 5, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 385, "time": 0.05199025182778229, "position": { "x": 3, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 408, - "time": 0.05523964256701869, + "noteOrder": 409, + "time": 0.05523964256701868, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 457, - "time": 0.06173842404549147, + "time": 0.061738424045491465, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 529, - "time": 0.07148659626320066, + "time": 0.07148659626320064, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 553, - "time": 0.07473598700243704, + "time": 0.07473598700243703, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 577, - "time": 0.07798537774167344, + "time": 0.07798537774167343, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 601, - "time": 0.08123476848090982, + "time": 0.08123476848090981, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 649, - "time": 0.08773354995938262, + "time": 0.0877335499593826, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 649, - "time": 0.08773354995938262, + "time": 0.0877335499593826, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 745, - "time": 0.10073111291632818, + "time": 0.10073111291632819, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 745, - "time": 0.10073111291632818, + "time": 0.10073111291632819, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 817, - "time": 0.11047928513403737, + "time": 0.11047928513403736, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.12672623883021933, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.1462225832656377, "position": { "x": 5, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.14947197400487408, + "noteOrder": 1106, + "time": 0.14947197400487405, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.1527213647441105, + "noteOrder": 1130, + "time": 0.15272136474411047, "position": { "x": 3, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1298, - "time": 0.17546709991876525, + "time": 0.1754670999187652, "position": { "x": 6, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1322, - "time": 0.17871649065800163, + "time": 0.1787164906580016, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1514, - "time": 0.20471161657189277, + "time": 0.20471161657189274, "position": { "x": 6, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1514, - "time": 0.20471161657189277, + "time": 0.20471161657189274, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.23070674248578393, + "noteOrder": 1707, + "time": 0.23070674248578388, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.23070674248578393, + "noteOrder": 1707, + "time": 0.23070674248578388, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1826, - "time": 0.2469536961819659, + "noteOrder": 1827, + "time": 0.24695369618196586, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.25020308692120224, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.25345247766043866, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.272948822095857, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.27619821283509344, + "noteOrder": 2043, + "time": 0.2761982128350934, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.2794476035743298, "position": { "x": 5, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2235, - "time": 0.3021933387489846, + "noteOrder": 2236, + "time": 0.3021933387489845, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2235, - "time": 0.3021933387489846, + "noteOrder": 2236, + "time": 0.3021933387489845, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.305442729488221, + "noteOrder": 2260, + "time": 0.30544272948822093, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.305442729488221, + "noteOrder": 2260, + "time": 0.30544272948822093, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.30869212022745735, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.30869212022745735, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.31194151096669376, + "noteOrder": 2308, + "time": 0.3119415109666937, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.31519090170593017, + "noteOrder": 2332, + "time": 0.3151909017059301, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.31844029244516653, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.32168968318440294, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.3249390739236393, + "noteOrder": 2404, + "time": 0.32493907392363924, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.3281884646628757, + "noteOrder": 2428, + "time": 0.32818846466287566, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3314378554021121, + "noteOrder": 2452, + "time": 0.33143785540211207, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2475, - "time": 0.33468724614134854, + "noteOrder": 2476, + "time": 0.3346872461413485, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2535, - "time": 0.3428107229894395, + "noteOrder": 2536, + "time": 0.34281072298943943, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.34606011372867584, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.3476848090982941, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2727, - "time": 0.3688058489033306, + "noteOrder": 2728, + "time": 0.36880584890333057, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2751, - "time": 0.37205523964256704, + "noteOrder": 2752, + "time": 0.372055239642567, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.3736799350121852, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2859, + "noteOrder": 2861, "time": 0.38667749796913076, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2859, + "noteOrder": 2861, "time": 0.38667749796913076, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2919, - "time": 0.39480097481722176, + "noteOrder": 2921, + "time": 0.3948009748172217, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2944, - "time": 0.3980503655564582, + "noteOrder": 2945, + "time": 0.3980503655564581, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.3996750609260764, + "noteOrder": 2957, + "time": 0.39967506092607635, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3112, - "time": 0.42079610073111295, + "noteOrder": 3113, + "time": 0.42079610073111284, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3136, + "noteOrder": 3137, "time": 0.42404549147034926, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4256701868399675, "position": { "x": 5, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.4386677497969131, + "noteOrder": 3245, + "time": 0.43866774979691303, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.4386677497969131, + "noteOrder": 3245, + "time": 0.43866774979691303, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4419171405361495, + "noteOrder": 3269, + "time": 0.44191714053614944, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3292, - "time": 0.4451665312753859, + "noteOrder": 3293, + "time": 0.44516653127538586, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.4484159220146222, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3341, "time": 0.4516653127538586, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.45491470349309504, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3388, - "time": 0.45816409423233145, + "noteOrder": 3389, + "time": 0.4581640942323314, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.4679122664500406, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3484, + "noteOrder": 3486, "time": 0.471161657189277, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.4744110479285134, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.4776604386677498, + "noteOrder": 3534, + "time": 0.47766043866774976, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3556, + "noteOrder": 3558, "time": 0.4809098294069862, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.4841592201462226, + "noteOrder": 3582, + "time": 0.48415922014622254, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3652, - "time": 0.4939073923639318, + "noteOrder": 3654, + "time": 0.4939073923639317, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.49715678310316813, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5004061738424045, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.503655564581641, + "noteOrder": 3726, + "time": 0.5036555645816408, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.5069049553208773, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3773, + "noteOrder": 3774, "time": 0.5101543460601137, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3845, - "time": 0.519902518277823, + "noteOrder": 3846, + "time": 0.5199025182778229, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3869, - "time": 0.5231519090170593, + "noteOrder": 3870, + "time": 0.5231519090170592, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3894, "time": 0.5264012997562957, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3918, "time": 0.529650690495532, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3941, - "time": 0.5329000812347685, + "noteOrder": 3942, + "time": 0.5329000812347684, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3965, + "noteOrder": 3966, "time": 0.5361494719740049, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4061, + "noteOrder": 4063, "time": 0.5491470349309504, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.5556458164094232, "position": { "x": 5, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4133, + "noteOrder": 4135, "time": 0.5588952071486596, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4157, + "noteOrder": 4159, "time": 0.5621445978878961, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4181, - "time": 0.5653939886271324, + "noteOrder": 4183, + "time": 0.5653939886271323, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4205, + "noteOrder": 4207, "time": 0.5686433793663688, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4205, + "noteOrder": 4207, "time": 0.5686433793663688, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4253, - "time": 0.5751421608448416, + "noteOrder": 4255, + "time": 0.5751421608448415, "position": { "x": 5, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4301, - "time": 0.5816409423233144, + "noteOrder": 4303, + "time": 0.5816409423233143, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4325, + "noteOrder": 4327, "time": 0.5848903330625508, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4349, + "noteOrder": 4351, "time": 0.5881397238017871, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4373, - "time": 0.5913891145410235, + "noteOrder": 4375, + "time": 0.5913891145410236, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4397, - "time": 0.59463850528026, + "noteOrder": 4399, + "time": 0.5946385052802599, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4397, - "time": 0.59463850528026, + "noteOrder": 4399, + "time": 0.5946385052802599, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4445, + "noteOrder": 4447, "time": 0.6011372867587327, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4493, + "noteOrder": 4495, "time": 0.6076360682372055, "position": { "x": 5, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4517, - "time": 0.610885458976442, + "noteOrder": 4519, + "time": 0.6108854589764419, "position": { "x": 5, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4543, "time": 0.6141348497156783, "position": { "x": 6, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4589, - "time": 0.6206336311941512, + "noteOrder": 4591, + "time": 0.620633631194151, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4638, - "time": 0.627132412672624, + "noteOrder": 4639, + "time": 0.6271324126726238, "position": { "x": 5, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.6336311941510966, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.6368805848903331, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4734, + "noteOrder": 4736, "time": 0.6401299756295694, "position": { "x": 4, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4782, - "time": 0.6466287571080422, + "noteOrder": 4784, + "time": 0.6466287571080421, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.6498781478472786, + "noteOrder": 4808, + "time": 0.6498781478472785, "position": { "x": 7, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.6531275385865151, + "noteOrder": 4832, + "time": 0.653127538586515, "position": { "x": 3, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.6563769293257514, + "noteOrder": 4856, + "time": 0.6563769293257513, "position": { "x": 6, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.6596263200649878, "position": { "x": 4, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4902, - "time": 0.6628757108042242, + "noteOrder": 4904, + "time": 0.6628757108042241, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4926, + "noteOrder": 4928, "time": 0.6661251015434606, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5034, + "noteOrder": 5036, "time": 0.6807473598700243, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5058, - "time": 0.6839967506092607, + "noteOrder": 5060, + "time": 0.6839967506092608, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5070, - "time": 0.685621445978879, + "noteOrder": 5072, + "time": 0.6856214459788789, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5190, - "time": 0.701868399675061, + "noteOrder": 5192, + "time": 0.7018683996750608, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5214, - "time": 0.7051177904142973, + "noteOrder": 5216, + "time": 0.7051177904142972, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5238, - "time": 0.7083671811535337, + "noteOrder": 5240, + "time": 0.7083671811535336, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5262, - "time": 0.7116165718927702, + "noteOrder": 5264, + "time": 0.7116165718927701, "position": { "x": 5, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5286, - "time": 0.7148659626320065, + "noteOrder": 5288, + "time": 0.7148659626320064, "position": { "x": 3, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5310, - "time": 0.718115353371243, + "noteOrder": 5313, + "time": 0.7181153533712429, "position": { "x": 5, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5358, - "time": 0.7246141348497156, + "noteOrder": 5361, + "time": 0.7246141348497157, "position": { "x": 6, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.7408610885458976, "position": { "x": 3, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5503, - "time": 0.7441104792851341, + "noteOrder": 5505, + "time": 0.744110479285134, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.7506092607636069, + "noteOrder": 5553, + "time": 0.7506092607636068, "position": { "x": 7, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5671, - "time": 0.7668562144597888, + "noteOrder": 5673, + "time": 0.7668562144597887, "position": { "x": 7, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5697, "time": 0.7701056051990252, "position": { "x": 3, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5721, "time": 0.7733549959382615, "position": { "x": 4, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5721, "time": 0.7733549959382615, "position": { "x": 6, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5745, "time": 0.776604386677498, "position": { "x": 3, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5745, "time": 0.776604386677498, "position": { "x": 7, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5803, - "time": 0.784727863525589, + "noteOrder": 5805, + "time": 0.7847278635255889, "position": { "x": 7, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5827, + "noteOrder": 5829, "time": 0.7879772542648253, "position": { "x": 7, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5839, - "time": 0.7896019496344435, + "noteOrder": 5841, + "time": 0.7896019496344434, "position": { "x": 5, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5959, - "time": 0.8058489033306254, + "noteOrder": 5962, + "time": 0.8058489033306255, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5983, + "noteOrder": 5986, "time": 0.8090982940698619, "position": { "x": 5, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6007, - "time": 0.8123476848090982, + "noteOrder": 6010, + "time": 0.8123476848090981, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6031, - "time": 0.8155970755483347, + "noteOrder": 6034, + "time": 0.8155970755483346, "position": { "x": 5, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6055, - "time": 0.8188464662875711, + "noteOrder": 6058, + "time": 0.818846466287571, "position": { "x": 7, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6079, + "noteOrder": 6082, "time": 0.8220958570268074, "position": { "x": 5, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6127, + "noteOrder": 6130, "time": 0.8285946385052803, "position": { "x": 4, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6247, - "time": 0.8448415922014623, + "noteOrder": 6250, + "time": 0.8448415922014622, "position": { "x": 7, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6272, + "noteOrder": 6274, "time": 0.8480909829406985, "position": { "x": 6, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6320, + "noteOrder": 6322, "time": 0.8545897644191713, "position": { "x": 3, @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6440, - "time": 0.8708367181153533, + "noteOrder": 6442, + "time": 0.8708367181153532, "position": { "x": 3, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6464, - "time": 0.8740861088545898, + "noteOrder": 6466, + "time": 0.8740861088545897, "position": { "x": 7, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.8773354995938262, + "noteOrder": 6490, + "time": 0.8773354995938261, "position": { "x": 6, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.8773354995938262, + "noteOrder": 6490, + "time": 0.8773354995938261, "position": { "x": 4, "y": 0 @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6608, + "noteOrder": 6611, "time": 0.8935824532900081, "position": { "x": 6, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6608, + "noteOrder": 6611, "time": 0.8935824532900081, "position": { "x": 4, @@ -3393,7 +3393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9358245329000812, "position": { "x": 4, @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6944, - "time": 0.9390739236393176, + "noteOrder": 6947, + "time": 0.9390739236393175, "position": { "x": 6, "y": 0 @@ -3436,7 +3436,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.012997562956945572, @@ -3459,10 +3459,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.03899268887083672, + "time": 0.03899268887083671, "position": { "x": 3, "y": 0 @@ -3482,7 +3482,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.012997562956945572, @@ -3505,7 +3505,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.022745735174654752, @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.03899268887083672, + "time": 0.03899268887083671, "position": { "x": 7, "y": 0 @@ -3551,10 +3551,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, - "time": 0.06498781478472787, + "time": 0.06498781478472786, "position": { "x": 7, "y": 0 @@ -3574,10 +3574,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.06498781478472787, + "time": 0.06498781478472786, "position": { "x": 3, "y": 0 @@ -3597,10 +3597,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, - "time": 0.07473598700243704, + "time": 0.07473598700243703, "position": { "x": 3, "y": 0 @@ -3620,7 +3620,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.11697806661251015, @@ -3643,7 +3643,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 871, "time": 0.11779041429731925, @@ -3666,7 +3666,7 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 877, "time": 0.11860276198212835, @@ -3689,10 +3689,10 @@ }, { "lineGroupId": 39, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 883, - "time": 0.11941510966693746, + "time": 0.11941510966693744, "position": { "x": 3, "y": 0 @@ -3712,7 +3712,7 @@ }, { "lineGroupId": 39, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 889, "time": 0.12022745735174654, @@ -3735,10 +3735,10 @@ }, { "lineGroupId": 39, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 895, - "time": 0.12103980503655565, + "time": 0.12103980503655563, "position": { "x": 3, "y": 0 @@ -3758,10 +3758,10 @@ }, { "lineGroupId": 39, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 901, - "time": 0.12185215272136475, + "time": 0.12185215272136474, "position": { "x": 3, "y": 0 @@ -3781,10 +3781,10 @@ }, { "lineGroupId": 39, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 907, - "time": 0.12266450040617384, + "time": 0.12266450040617383, "position": { "x": 3, "y": 0 @@ -3804,10 +3804,10 @@ }, { "lineGroupId": 39, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 913, - "time": 0.12347684809098294, + "time": 0.12347684809098293, "position": { "x": 3, "y": 0 @@ -3827,7 +3827,7 @@ }, { "lineGroupId": 39, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, "noteOrder": 919, "time": 0.12428919577579203, @@ -3850,7 +3850,7 @@ }, { "lineGroupId": 39, - "indexInLine": 10, + "indexInLine": 11, "isSliding": false, "noteOrder": 925, "time": 0.12510154346060112, @@ -3873,10 +3873,10 @@ }, { "lineGroupId": 39, - "indexInLine": 11, + "indexInLine": 12, "isSliding": false, "noteOrder": 931, - "time": 0.12591389114541024, + "time": 0.1259138911454102, "position": { "x": 3, "y": 0 @@ -3896,9 +3896,9 @@ }, { "lineGroupId": 39, - "indexInLine": 12, + "indexInLine": 13, "isSliding": false, - "noteOrder": 937, + "noteOrder": 938, "time": 0.12672623883021933, "position": { "x": 3, @@ -3919,7 +3919,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.11697806661251015, @@ -3942,10 +3942,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, - "time": 0.12347684809098294, + "time": 0.12347684809098293, "position": { "x": 6, "y": 0 @@ -3965,10 +3965,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.12997562956945574, + "noteOrder": 962, + "time": 0.12997562956945571, "position": { "x": 7, "y": 0 @@ -3987,11 +3987,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, - "time": 0.1364744110479285, + "noteOrder": 986, + "time": 0.1332250203086921, "position": { "x": 7, "y": 0 @@ -4005,18 +4005,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.1429731925264013, + "noteOrder": 986, + "time": 0.1332250203086921, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4033,13 +4033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1081, - "time": 0.1462225832656377, + "noteOrder": 1010, + "time": 0.1364744110479285, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4056,13 +4056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 2, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1153, - "time": 0.15597075548334688, + "noteOrder": 1010, + "time": 0.1364744110479285, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4079,13 +4079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.15597075548334688, + "noteOrder": 1010, + "time": 0.1364744110479285, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4102,13 +4102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, - "time": 0.16246953696181965, + "noteOrder": 1034, + "time": 0.1397238017871649, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4120,18 +4120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, - "time": 0.16896831844029242, + "noteOrder": 1034, + "time": 0.1397238017871649, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4148,13 +4148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1274, - "time": 0.17221770917952883, + "noteOrder": 1058, + "time": 0.14297319252640128, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4171,13 +4171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 2, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1346, - "time": 0.18196588139723802, + "noteOrder": 1058, + "time": 0.14297319252640128, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4194,11 +4194,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.18196588139723802, + "noteOrder": 1058, + "time": 0.14297319252640128, "position": { "x": 7, "y": 0 @@ -4217,11 +4217,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.18846466287571081, + "noteOrder": 1082, + "time": 0.1462225832656377, "position": { "x": 7, "y": 0 @@ -4235,18 +4235,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1442, - "time": 0.19496344435418358, + "noteOrder": 1154, + "time": 0.15597075548334685, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4263,13 +4263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.20146222583265636, + "noteOrder": 1154, + "time": 0.15597075548334685, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4281,16 +4281,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.19821283509342, + "noteOrder": 1178, + "time": 0.15922014622258326, "position": { "x": 3, "y": 0 @@ -4309,13 +4309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1490, - "time": 0.20146222583265636, + "noteOrder": 1178, + "time": 0.15922014622258326, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4332,13 +4332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1538, - "time": 0.20796100731112915, + "noteOrder": 1202, + "time": 0.16246953696181962, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4355,13 +4355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1586, - "time": 0.21445978878960195, + "noteOrder": 1202, + "time": 0.16246953696181962, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4373,16 +4373,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.22095857026807475, + "noteOrder": 1202, + "time": 0.16246953696181962, "position": { "x": 3, "y": 0 @@ -4396,16 +4396,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, - "time": 0.22745735174654752, + "noteOrder": 1226, + "time": 0.16571892770105603, "position": { "x": 3, "y": 0 @@ -4419,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1658, - "time": 0.2242079610073111, + "noteOrder": 1226, + "time": 0.16571892770105603, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4447,13 +4447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1682, - "time": 0.22745735174654752, + "noteOrder": 1250, + "time": 0.16896831844029242, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4470,13 +4470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1754, - "time": 0.2372055239642567, + "noteOrder": 1250, + "time": 0.16896831844029242, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4493,13 +4493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, - "time": 0.2404549147034931, + "noteOrder": 1250, + "time": 0.16896831844029242, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4511,16 +4511,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1802, - "time": 0.2437043054427295, + "noteOrder": 1274, + "time": 0.17221770917952883, "position": { "x": 3, "y": 0 @@ -4539,13 +4539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1898, - "time": 0.25670186839967507, + "noteOrder": 1346, + "time": 0.18196588139723802, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4562,13 +4562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1898, - "time": 0.25670186839967507, + "noteOrder": 1346, + "time": 0.18196588139723802, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4585,13 +4585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.2599512591389115, + "noteOrder": 1370, + "time": 0.1852152721364744, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4608,13 +4608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1946, - "time": 0.26320064987814784, + "noteOrder": 1370, + "time": 0.1852152721364744, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4626,18 +4626,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1970, - "time": 0.26645004061738425, + "noteOrder": 1394, + "time": 0.18846466287571081, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4649,18 +4649,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1994, - "time": 0.26969943135662067, + "noteOrder": 1394, + "time": 0.18846466287571081, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4677,11 +4677,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 2091, - "time": 0.2826969943135662, + "noteOrder": 1394, + "time": 0.18846466287571081, "position": { "x": 7, "y": 0 @@ -4695,18 +4695,1375 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1418, + "time": 0.19171405361494717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1418, + "time": 0.19171405361494717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1442, + "time": 0.19496344435418358, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1442, + "time": 0.19496344435418358, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1442, + "time": 0.19496344435418358, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1490, + "time": 0.20146222583265638, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1466, + "time": 0.19821283509341997, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1490, + "time": 0.20146222583265638, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1538, + "time": 0.20796100731112915, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1563, + "time": 0.21121039805036554, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1563, + "time": 0.21121039805036554, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1587, + "time": 0.21445978878960195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1587, + "time": 0.21445978878960195, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1587, + "time": 0.21445978878960195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2177091795288383, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2177091795288383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1635, + "time": 0.22095857026807472, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1635, + "time": 0.22095857026807472, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.22095857026807472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1683, + "time": 0.22745735174654752, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1659, + "time": 0.2242079610073111, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1683, + "time": 0.22745735174654752, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1755, + "time": 0.2372055239642567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1779, + "time": 0.2404549147034931, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.24370430544272947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1899, + "time": 0.25670186839967507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1899, + "time": 0.25670186839967507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1923, + "time": 0.25995125913891143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1947, + "time": 0.26320064987814784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1971, + "time": 0.2664500406173842, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1995, + "time": 0.2696994313566206, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2091, + "time": 0.28269699431356615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2091, + "time": 0.28269699431356615, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2115, + "time": 0.28594638505280257, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2139, + "time": 0.289195775792039, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2163, + "time": 0.2924451665312754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2188, + "time": 0.2956945572705118, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2212, + "time": 0.2989439480097481, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.33793663688058484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.34281072298943943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.3509341998375304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3574329813160032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.3541835905767668, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2644, + "time": 0.3574329813160032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.36393176279447603, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2728, + "time": 0.36880584890333057, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.37692932575142163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.38342810722989434, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2813, + "time": 0.38017871649065793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2837, + "time": 0.38342810722989434, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2885, + "time": 0.38992688870836717, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2921, + "time": 0.3948009748172217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.40292445166531277, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3029, + "time": 0.4094232331437855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.40617384240454907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3029, + "time": 0.4094232331437855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3077, + "time": 0.4159220146222583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3113, + "time": 0.42079610073111284, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.4289195775792039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, - "time": 0.2826969943135662, + "noteOrder": 3221, + "time": 0.4354183590576766, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4723,13 +6080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.2859463850528026, + "noteOrder": 3197, + "time": 0.43216896831844026, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4741,16 +6098,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.28919577579203903, + "noteOrder": 3221, + "time": 0.4354183590576766, "position": { "x": 7, "y": 0 @@ -4769,13 +6126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.2924451665312754, + "noteOrder": 3413, + "time": 0.46141348497156776, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4787,18 +6144,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2187, - "time": 0.29569455727051175, + "noteOrder": 3438, + "time": 0.46466287571080417, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4815,13 +6172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 144, "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, - "time": 0.29894394800974816, + "noteOrder": 3413, + "time": 0.46141348497156776, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4833,18 +6190,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.33793663688058484, + "noteOrder": 3438, + "time": 0.46466287571080417, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4861,11 +6218,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 2535, - "time": 0.3428107229894395, + "noteOrder": 3606, + "time": 0.48740861088545895, "position": { "x": 7, "y": 0 @@ -4884,11 +6241,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.3509341998375305, + "noteOrder": 3630, + "time": 0.4906580016246953, "position": { "x": 7, "y": 0 @@ -4907,13 +6264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.35743298131600326, + "noteOrder": 3606, + "time": 0.48740861088545895, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4925,16 +6282,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2619, - "time": 0.35418359057676685, + "noteOrder": 3630, + "time": 0.4906580016246953, "position": { "x": 3, "y": 0 @@ -4953,13 +6310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.35743298131600326, + "noteOrder": 3798, + "time": 0.5134037367993501, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4971,18 +6328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2691, - "time": 0.36393176279447603, + "noteOrder": 3822, + "time": 0.5166531275385865, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4994,18 +6351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 2727, - "time": 0.3688058489033306, + "noteOrder": 3798, + "time": 0.5134037367993501, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5022,13 +6379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, - "time": 0.37692932575142163, + "noteOrder": 3822, + "time": 0.5166531275385865, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5045,11 +6402,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 2835, - "time": 0.3834281072298944, + "noteOrder": 3990, + "time": 0.5393988627132412, "position": { "x": 3, "y": 0 @@ -5068,13 +6425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2811, - "time": 0.38017871649065804, + "noteOrder": 4014, + "time": 0.5426482534524777, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5086,16 +6443,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 2835, - "time": 0.3834281072298944, + "noteOrder": 3990, + "time": 0.5393988627132412, "position": { "x": 7, "y": 0 @@ -5114,11 +6471,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2883, - "time": 0.38992688870836717, + "noteOrder": 4014, + "time": 0.5426482534524777, "position": { "x": 7, "y": 0 @@ -5137,13 +6494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 2919, - "time": 0.39480097481722176, + "noteOrder": 4038, + "time": 0.545897644191714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5160,13 +6517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4029244516653127, + "noteOrder": 4063, + "time": 0.5491470349309504, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5183,13 +6540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 3028, - "time": 0.40942323314378554, + "noteOrder": 4087, + "time": 0.5523964256701868, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5201,18 +6558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3004, - "time": 0.4061738424045491, + "noteOrder": 4111, + "time": 0.5556458164094232, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5229,13 +6586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 3028, - "time": 0.40942323314378554, + "noteOrder": 4231, + "time": 0.5718927701056051, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5252,13 +6609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3076, - "time": 0.4159220146222583, + "noteOrder": 4255, + "time": 0.5751421608448415, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5275,13 +6632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 3112, - "time": 0.42079610073111295, + "noteOrder": 4279, + "time": 0.578391551584078, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5293,18 +6650,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.4289195775792039, + "noteOrder": 4303, + "time": 0.5816409423233143, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5316,18 +6673,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 3220, - "time": 0.4354183590576767, + "noteOrder": 4423, + "time": 0.5978878960194962, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4447, + "time": 0.6011372867587327, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4471, + "time": 0.604386677497969, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -5344,11 +6747,34 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3196, - "time": 0.43216896831844026, + "noteOrder": 4495, + "time": 0.6076360682372055, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4567, + "time": 0.6173842404549147, "position": { "x": 7, "y": 0 @@ -5367,11 +6793,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3220, - "time": 0.4354183590576767, + "noteOrder": 4591, + "time": 0.620633631194151, "position": { "x": 7, "y": 0 @@ -5390,11 +6816,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3412, - "time": 0.46141348497156787, + "noteOrder": 4615, + "time": 0.6238830219333874, "position": { "x": 4, "y": 0 @@ -5413,13 +6839,36 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4639, + "time": 0.6271324126726238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 3436, - "time": 0.4646628757108042, + "noteOrder": 4663, + "time": 0.6303818034118602, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5431,16 +6880,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3412, - "time": 0.46141348497156787, + "noteOrder": 4688, + "time": 0.6336311941510966, "position": { "x": 6, "y": 0 @@ -5459,13 +6908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 3436, - "time": 0.4646628757108042, + "noteOrder": 4760, + "time": 0.6433793663688059, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5477,18 +6926,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3604, - "time": 0.487408610885459, + "noteOrder": 4784, + "time": 0.6466287571080421, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5500,18 +6949,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 3628, - "time": 0.49065800162469536, + "noteOrder": 4952, + "time": 0.669374492282697, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5523,18 +6972,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3604, - "time": 0.487408610885459, + "noteOrder": 4976, + "time": 0.6726238830219334, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5551,13 +7000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 3628, - "time": 0.49065800162469536, + "noteOrder": 4952, + "time": 0.669374492282697, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5569,16 +7018,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3797, - "time": 0.5134037367993501, + "noteOrder": 4976, + "time": 0.6726238830219334, "position": { "x": 6, "y": 0 @@ -5597,13 +7046,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 3821, - "time": 0.5166531275385865, + "noteOrder": 5000, + "time": 0.6758732737611697, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5620,13 +7069,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3797, - "time": 0.5134037367993501, + "noteOrder": 5036, + "time": 0.6807473598700243, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5638,18 +7087,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 3821, - "time": 0.5166531275385865, + "noteOrder": 5096, + "time": 0.6888708367181153, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5661,18 +7110,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3989, - "time": 0.5393988627132413, + "noteOrder": 5120, + "time": 0.6921202274573517, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5684,18 +7133,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4013, - "time": 0.5426482534524776, + "noteOrder": 5144, + "time": 0.6953696181965882, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5707,18 +7156,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.5393988627132413, + "noteOrder": 5144, + "time": 0.6953696181965882, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5730,18 +7179,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5426482534524776, + "noteOrder": 5168, + "time": 0.6986190089358245, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5753,18 +7202,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.545897644191714, + "noteOrder": 5192, + "time": 0.7018683996750608, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5776,18 +7225,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 228, "indexInLine": 1, "isSliding": false, - "noteOrder": 4061, - "time": 0.5491470349309504, + "noteOrder": 5337, + "time": 0.7213647441104792, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5804,13 +7253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4085, - "time": 0.5523964256701869, + "noteOrder": 5361, + "time": 0.7246141348497157, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5822,18 +7271,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 4109, - "time": 0.5556458164094232, + "noteOrder": 5385, + "time": 0.7278635255889521, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5850,13 +7299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4229, - "time": 0.5718927701056052, + "noteOrder": 5409, + "time": 0.7311129163281883, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5873,11 +7322,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4253, - "time": 0.5751421608448416, + "noteOrder": 5409, + "time": 0.7311129163281883, "position": { "x": 4, "y": 0 @@ -5896,13 +7345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4277, - "time": 0.5783915515840781, + "noteOrder": 5433, + "time": 0.7343623070674248, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5914,18 +7363,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4301, - "time": 0.5816409423233144, + "noteOrder": 5433, + "time": 0.7343623070674248, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5937,18 +7386,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.5978878960194963, + "noteOrder": 5433, + "time": 0.7343623070674248, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5965,13 +7414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4445, - "time": 0.6011372867587327, + "noteOrder": 5457, + "time": 0.7376116978066611, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5988,11 +7437,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4469, - "time": 0.6043866774979691, + "noteOrder": 5457, + "time": 0.7376116978066611, "position": { "x": 4, "y": 0 @@ -6006,16 +7455,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4493, - "time": 0.6076360682372055, + "noteOrder": 5481, + "time": 0.7408610885458976, "position": { "x": 4, "y": 0 @@ -6029,18 +7478,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4565, - "time": 0.6173842404549147, + "noteOrder": 5481, + "time": 0.7408610885458976, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6057,13 +7506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 234, "indexInLine": 1, "isSliding": false, - "noteOrder": 4589, - "time": 0.6206336311941512, + "noteOrder": 5529, + "time": 0.7473598700243704, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6075,18 +7524,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, - "time": 0.6238830219333875, + "noteOrder": 5553, + "time": 0.7506092607636068, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6103,13 +7552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 4638, - "time": 0.627132412672624, + "noteOrder": 5577, + "time": 0.7538586515028433, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6121,18 +7570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4662, - "time": 0.6303818034118603, + "noteOrder": 5601, + "time": 0.7571080422420795, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6149,11 +7598,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4686, - "time": 0.6336311941510966, + "noteOrder": 5601, + "time": 0.7571080422420795, "position": { "x": 6, "y": 0 @@ -6172,13 +7621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4758, - "time": 0.6433793663688059, + "noteOrder": 5625, + "time": 0.7603574329813159, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6190,18 +7639,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4782, - "time": 0.6466287571080422, + "noteOrder": 5625, + "time": 0.7603574329813159, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6213,18 +7662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4950, - "time": 0.6693744922826971, + "noteOrder": 5625, + "time": 0.7603574329813159, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6241,13 +7690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4974, - "time": 0.6726238830219334, + "noteOrder": 5649, + "time": 0.7636068237205523, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6264,11 +7713,11 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4950, - "time": 0.6693744922826971, + "noteOrder": 5649, + "time": 0.7636068237205523, "position": { "x": 6, "y": 0 @@ -6282,16 +7731,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4974, - "time": 0.6726238830219334, + "noteOrder": 5673, + "time": 0.7668562144597887, "position": { "x": 6, "y": 0 @@ -6305,18 +7754,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4998, - "time": 0.6758732737611697, + "noteOrder": 5673, + "time": 0.7668562144597887, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6328,18 +7777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, + "lineGroupId": 244, "indexInLine": 1, "isSliding": false, - "noteOrder": 5034, - "time": 0.6807473598700243, + "noteOrder": 5769, + "time": 0.7798537774167343, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6351,18 +7800,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.6888708367181153, + "noteOrder": 5805, + "time": 0.7847278635255889, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6374,18 +7823,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, + "lineGroupId": 248, "indexInLine": 1, "isSliding": false, - "noteOrder": 5118, - "time": 0.6921202274573517, + "noteOrder": 5865, + "time": 0.7928513403736799, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6397,18 +7846,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, + "lineGroupId": 248, "indexInLine": 2, "isSliding": false, - "noteOrder": 5142, - "time": 0.6953696181965882, + "noteOrder": 5889, + "time": 0.7961007311129162, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6420,18 +7869,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5142, - "time": 0.6953696181965882, + "noteOrder": 5913, + "time": 0.7993501218521527, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6448,13 +7897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, + "lineGroupId": 249, "indexInLine": 1, "isSliding": false, - "noteOrder": 5166, - "time": 0.6986190089358245, + "noteOrder": 5913, + "time": 0.7993501218521527, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6466,18 +7915,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, + "lineGroupId": 249, "indexInLine": 2, "isSliding": false, - "noteOrder": 5190, - "time": 0.701868399675061, + "noteOrder": 5938, + "time": 0.8025995125913891, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6489,18 +7938,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5334, - "time": 0.7213647441104792, + "noteOrder": 5962, + "time": 0.8058489033306255, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6517,13 +7966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, + "lineGroupId": 256, "indexInLine": 1, "isSliding": false, - "noteOrder": 5358, - "time": 0.7246141348497156, + "noteOrder": 6106, + "time": 0.8253452477660438, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6535,16 +7984,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5382, - "time": 0.7278635255889521, + "noteOrder": 6130, + "time": 0.8285946385052803, "position": { "x": 3, "y": 0 @@ -6563,13 +8012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5430, - "time": 0.7343623070674249, + "noteOrder": 6154, + "time": 0.8318440292445166, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6586,11 +8035,34 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5527, - "time": 0.7473598700243704, + "noteOrder": 6178, + "time": 0.8350934199837531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6178, + "time": 0.8350934199837531, "position": { "x": 6, "y": 0 @@ -6604,16 +8076,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 1, + "lineGroupId": 258, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5551, - "time": 0.7506092607636069, + "noteOrder": 6202, + "time": 0.8383428107229894, "position": { "x": 6, "y": 0 @@ -6627,18 +8099,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5575, - "time": 0.7538586515028433, + "noteOrder": 6202, + "time": 0.8383428107229894, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6655,11 +8127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 259, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5623, - "time": 0.7603574329813161, + "noteOrder": 6202, + "time": 0.8383428107229894, "position": { "x": 7, "y": 0 @@ -6678,13 +8150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 259, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5767, - "time": 0.7798537774167343, + "noteOrder": 6226, + "time": 0.8415922014622257, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6701,13 +8173,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 1, + "lineGroupId": 259, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5803, - "time": 0.784727863525589, + "noteOrder": 6226, + "time": 0.8415922014622257, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6724,13 +8196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 259, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5863, - "time": 0.79285134037368, + "noteOrder": 6250, + "time": 0.8448415922014622, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6747,13 +8219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 1, + "lineGroupId": 259, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5887, - "time": 0.7961007311129163, + "noteOrder": 6250, + "time": 0.8448415922014622, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6770,11 +8242,11 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 2, + "lineGroupId": 262, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5911, - "time": 0.7993501218521528, + "noteOrder": 6298, + "time": 0.851340373679935, "position": { "x": 4, "y": 0 @@ -6788,18 +8260,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5911, - "time": 0.7993501218521528, + "noteOrder": 6322, + "time": 0.8545897644191713, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6816,13 +8288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, + "lineGroupId": 264, "indexInLine": 1, "isSliding": false, - "noteOrder": 5935, - "time": 0.8025995125913892, + "noteOrder": 6346, + "time": 0.8578391551584078, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6834,18 +8306,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, + "lineGroupId": 264, "indexInLine": 2, "isSliding": false, - "noteOrder": 5959, - "time": 0.8058489033306254, + "noteOrder": 6370, + "time": 0.8610885458976442, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6857,18 +8329,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6103, - "time": 0.8253452477660439, + "noteOrder": 6370, + "time": 0.8610885458976442, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6885,13 +8357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 1, + "lineGroupId": 264, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6127, - "time": 0.8285946385052803, + "noteOrder": 6394, + "time": 0.8643379366368805, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6908,13 +8380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6151, - "time": 0.8318440292445166, + "noteOrder": 6394, + "time": 0.8643379366368805, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6926,18 +8398,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6199, - "time": 0.8383428107229894, + "noteOrder": 6394, + "time": 0.8643379366368805, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6949,18 +8421,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6296, - "time": 0.851340373679935, + "noteOrder": 6418, + "time": 0.8675873273761169, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6977,11 +8449,11 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 1, + "lineGroupId": 265, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6320, - "time": 0.8545897644191713, + "noteOrder": 6418, + "time": 0.8675873273761169, "position": { "x": 4, "y": 0 @@ -7000,13 +8472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6344, - "time": 0.8578391551584078, + "noteOrder": 6442, + "time": 0.8708367181153532, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7018,18 +8490,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6392, - "time": 0.8643379366368805, + "noteOrder": 6442, + "time": 0.8708367181153532, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7047,9 +8519,9 @@ }, { "lineGroupId": 270, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6512, + "noteOrder": 6514, "time": 0.8805848903330625, "position": { "x": 3, @@ -7070,10 +8542,10 @@ }, { "lineGroupId": 270, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6584, - "time": 0.8903330625507718, + "noteOrder": 6587, + "time": 0.8903330625507717, "position": { "x": 3, "y": 0 @@ -7093,9 +8565,9 @@ }, { "lineGroupId": 271, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6512, + "noteOrder": 6514, "time": 0.8805848903330625, "position": { "x": 7, @@ -7116,10 +8588,10 @@ }, { "lineGroupId": 271, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6584, - "time": 0.8903330625507718, + "noteOrder": 6587, + "time": 0.8903330625507717, "position": { "x": 7, "y": 0 @@ -7139,9 +8611,9 @@ }, { "lineGroupId": 275, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6632, + "noteOrder": 6635, "time": 0.8968318440292444, "position": { "x": 7, @@ -7162,9 +8634,9 @@ }, { "lineGroupId": 275, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6680, + "noteOrder": 6683, "time": 0.9033306255077173, "position": { "x": 7, @@ -7185,9 +8657,9 @@ }, { "lineGroupId": 277, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6680, + "noteOrder": 6683, "time": 0.9033306255077173, "position": { "x": 3, @@ -7208,9 +8680,9 @@ }, { "lineGroupId": 277, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6731, "time": 0.9098294069861901, "position": { "x": 3, @@ -7231,9 +8703,9 @@ }, { "lineGroupId": 278, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6731, "time": 0.9098294069861901, "position": { "x": 7, @@ -7254,10 +8726,10 @@ }, { "lineGroupId": 278, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6776, - "time": 0.9163281884646629, + "noteOrder": 6779, + "time": 0.9163281884646628, "position": { "x": 7, "y": 0 @@ -7277,9 +8749,9 @@ }, { "lineGroupId": 279, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6752, + "noteOrder": 6755, "time": 0.9130787977254264, "position": { "x": 3, @@ -7300,10 +8772,10 @@ }, { "lineGroupId": 279, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6776, - "time": 0.9163281884646629, + "noteOrder": 6779, + "time": 0.9163281884646628, "position": { "x": 3, "y": 0 @@ -7323,10 +8795,10 @@ }, { "lineGroupId": 282, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6824, - "time": 0.9228269699431357, + "noteOrder": 6827, + "time": 0.9228269699431355, "position": { "x": 3, "y": 0 @@ -7346,10 +8818,10 @@ }, { "lineGroupId": 282, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6872, - "time": 0.9293257514216084, + "noteOrder": 6875, + "time": 0.9293257514216083, "position": { "x": 3, "y": 0 @@ -7369,10 +8841,10 @@ }, { "lineGroupId": 284, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6872, - "time": 0.9293257514216084, + "noteOrder": 6875, + "time": 0.9293257514216083, "position": { "x": 7, "y": 0 @@ -7392,9 +8864,9 @@ }, { "lineGroupId": 284, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9358245329000812, "position": { "x": 7, @@ -7415,9 +8887,9 @@ }, { "lineGroupId": 288, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6968, + "noteOrder": 6971, "time": 0.942323314378554, "position": { "x": 3, @@ -7438,9 +8910,9 @@ }, { "lineGroupId": 288, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6992, + "noteOrder": 6995, "time": 0.9455727051177903, "position": { "x": 3, @@ -7461,9 +8933,9 @@ }, { "lineGroupId": 289, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6968, + "noteOrder": 6971, "time": 0.942323314378554, "position": { "x": 7, @@ -7484,9 +8956,9 @@ }, { "lineGroupId": 289, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6992, + "noteOrder": 6995, "time": 0.9455727051177903, "position": { "x": 7, diff --git "a/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1b.json" "b/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1b.json" index 49ddffbb..7becb6de 100644 --- "a/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1b.json" +++ "b/tracks/MA\343\203\273TSU\343\203\273RI/289_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 288, - "time": 0.03899268887083672, + "time": 0.03899268887083671, "position": { "x": 7, "y": 0 @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.042242079610073105, "position": { "x": 5, @@ -54,7 +54,7 @@ }, { "noteOrder": 481, - "time": 0.06498781478472787, + "time": 0.06498781478472786, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 529, - "time": 0.07148659626320066, + "time": 0.07148659626320064, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 745, - "time": 0.10073111291632818, + "time": 0.10073111291632819, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 745, - "time": 0.10073111291632818, + "time": 0.10073111291632819, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 913, - "time": 0.12347684809098294, + "time": 0.12347684809098293, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 913, - "time": 0.12347684809098294, + "time": 0.12347684809098293, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.12672623883021933, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.12672623883021933, "position": { "x": 6, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1153, - "time": 0.15597075548334688, + "noteOrder": 1154, + "time": 0.15597075548334685, "position": { "x": 7, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.15922014622258326, "position": { "x": 5, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.16246953696181965, + "noteOrder": 1202, + "time": 0.16246953696181962, "position": { "x": 3, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1225, - "time": 0.16571892770105606, + "noteOrder": 1226, + "time": 0.16571892770105603, "position": { "x": 5, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.16896831844029242, "position": { "x": 7, @@ -394,7 +394,7 @@ }, { "noteOrder": 1298, - "time": 0.17546709991876525, + "time": 0.1754670999187652, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1322, - "time": 0.17871649065800163, + "time": 0.1787164906580016, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.21445978878960195, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.22745735174654752, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.22745735174654752, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2404549147034931, "position": { "x": 7, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.25345247766043866, "position": { "x": 3, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.305442729488221, + "noteOrder": 2260, + "time": 0.30544272948822093, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2475, - "time": 0.33468724614134854, + "noteOrder": 2476, + "time": 0.3346872461413485, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2475, - "time": 0.33468724614134854, + "noteOrder": 2476, + "time": 0.3346872461413485, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2885, "time": 0.38992688870836717, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2885, "time": 0.38992688870836717, "position": { "x": 3, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.39642567018684, + "noteOrder": 2933, + "time": 0.39642567018683994, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.39642567018684, + "noteOrder": 2933, + "time": 0.39642567018683994, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.4029244516653127, + "noteOrder": 2981, + "time": 0.40292445166531277, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.4061738424045491, + "noteOrder": 3005, + "time": 0.40617384240454907, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3028, - "time": 0.40942323314378554, + "noteOrder": 3029, + "time": 0.4094232331437855, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3052, - "time": 0.41267262388302195, + "noteOrder": 3053, + "time": 0.4126726238830219, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.4159220146222583, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.4159220146222583, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.42242079610073113, + "noteOrder": 3125, + "time": 0.4224207961007311, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.42242079610073113, + "noteOrder": 3125, + "time": 0.4224207961007311, "position": { "x": 3, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3173, "time": 0.4289195775792039, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3196, + "noteOrder": 3197, "time": 0.43216896831844026, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3220, - "time": 0.4354183590576767, + "noteOrder": 3221, + "time": 0.4354183590576766, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.4386677497969131, + "noteOrder": 3245, + "time": 0.43866774979691303, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.4484159220146222, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.46141348497156787, + "noteOrder": 3413, + "time": 0.46141348497156776, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.4679122664500406, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3484, + "noteOrder": 3486, "time": 0.471161657189277, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.4744110479285134, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.4776604386677498, + "noteOrder": 3534, + "time": 0.47766043866774976, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3556, + "noteOrder": 3558, "time": 0.4809098294069862, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.4841592201462226, + "noteOrder": 3582, + "time": 0.48415922014622254, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5004061738424045, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3797, + "noteOrder": 3798, "time": 0.5134037367993501, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3845, - "time": 0.519902518277823, + "noteOrder": 3846, + "time": 0.5199025182778229, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3869, - "time": 0.5231519090170593, + "noteOrder": 3870, + "time": 0.5231519090170592, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3894, "time": 0.5264012997562957, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3918, "time": 0.529650690495532, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3941, - "time": 0.5329000812347685, + "noteOrder": 3942, + "time": 0.5329000812347684, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3965, + "noteOrder": 3966, "time": 0.5361494719740049, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4085, - "time": 0.5523964256701869, + "noteOrder": 4087, + "time": 0.5523964256701868, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4181, - "time": 0.5653939886271324, + "noteOrder": 4183, + "time": 0.5653939886271323, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4325, + "noteOrder": 4327, "time": 0.5848903330625508, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4349, + "noteOrder": 4351, "time": 0.5881397238017871, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4397, - "time": 0.59463850528026, + "noteOrder": 4399, + "time": 0.5946385052802599, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4469, - "time": 0.6043866774979691, + "noteOrder": 4471, + "time": 0.604386677497969, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.6173842404549147, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.6368805848903331, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4734, + "noteOrder": 4736, "time": 0.6401299756295694, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4782, - "time": 0.6466287571080422, + "noteOrder": 4784, + "time": 0.6466287571080421, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4902, - "time": 0.6628757108042242, + "noteOrder": 4904, + "time": 0.6628757108042241, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4902, - "time": 0.6628757108042242, + "noteOrder": 4904, + "time": 0.6628757108042241, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4950, - "time": 0.6693744922826971, + "noteOrder": 4952, + "time": 0.669374492282697, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4950, - "time": 0.6693744922826971, + "noteOrder": 4952, + "time": 0.669374492282697, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.6953696181965882, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.6953696181965882, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5430, - "time": 0.7343623070674249, + "noteOrder": 5433, + "time": 0.7343623070674248, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5455, - "time": 0.7376116978066612, + "noteOrder": 5457, + "time": 0.7376116978066611, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.7473598700243704, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.7506092607636069, + "noteOrder": 5553, + "time": 0.7506092607636068, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5671, - "time": 0.7668562144597888, + "noteOrder": 5673, + "time": 0.7668562144597887, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5697, "time": 0.7701056051990252, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5721, "time": 0.7733549959382615, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5721, "time": 0.7733549959382615, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.7993501218521528, + "noteOrder": 5913, + "time": 0.7993501218521527, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.7993501218521528, + "noteOrder": 5913, + "time": 0.7993501218521527, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6199, + "noteOrder": 6202, "time": 0.8383428107229894, "position": { "x": 6, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6223, - "time": 0.8415922014622259, + "noteOrder": 6226, + "time": 0.8415922014622257, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6296, + "noteOrder": 6298, "time": 0.851340373679935, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6320, + "noteOrder": 6322, "time": 0.8545897644191713, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6440, - "time": 0.8708367181153533, + "noteOrder": 6442, + "time": 0.8708367181153532, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6464, - "time": 0.8740861088545898, + "noteOrder": 6466, + "time": 0.8740861088545897, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.8773354995938262, + "noteOrder": 6490, + "time": 0.8773354995938261, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.8773354995938262, + "noteOrder": 6490, + "time": 0.8773354995938261, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6512, + "noteOrder": 6514, "time": 0.8805848903330625, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6512, + "noteOrder": 6514, "time": 0.8805848903330625, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6776, - "time": 0.9163281884646629, + "noteOrder": 6779, + "time": 0.9163281884646628, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6968, + "noteOrder": 6971, "time": 0.942323314378554, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6992, + "noteOrder": 6995, "time": 0.9455727051177903, "position": { "x": 7, @@ -2036,7 +2036,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.012997562956945572, @@ -2059,7 +2059,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.025995125913891144, @@ -2082,7 +2082,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.012997562956945572, @@ -2105,10 +2105,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.03899268887083672, + "time": 0.03899268887083671, "position": { "x": 3, "y": 0 @@ -2128,9 +2128,9 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.045491470349309504, "position": { "x": 7, @@ -2151,10 +2151,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, - "time": 0.06498781478472787, + "time": 0.06498781478472786, "position": { "x": 7, "y": 0 @@ -2174,10 +2174,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.07798537774167344, + "time": 0.07798537774167343, "position": { "x": 7, "y": 0 @@ -2197,10 +2197,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.08123476848090982, + "time": 0.08123476848090981, "position": { "x": 7, "y": 0 @@ -2220,7 +2220,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, "time": 0.08448415922014621, @@ -2243,10 +2243,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.08773354995938262, + "time": 0.0877335499593826, "position": { "x": 3, "y": 0 @@ -2266,7 +2266,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.09098294069861901, @@ -2289,7 +2289,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, "time": 0.09423233143785541, @@ -2312,7 +2312,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.09098294069861901, @@ -2335,7 +2335,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, "time": 0.09423233143785541, @@ -2358,7 +2358,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.10398050365556458, @@ -2381,7 +2381,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 793, "time": 0.10722989439480098, @@ -2404,10 +2404,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 817, - "time": 0.11047928513403737, + "time": 0.11047928513403736, "position": { "x": 7, "y": 0 @@ -2427,7 +2427,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, "time": 0.11372867587327376, @@ -2450,7 +2450,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.11697806661251015, @@ -2473,7 +2473,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, "time": 0.12022745735174654, @@ -2496,7 +2496,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.11697806661251015, @@ -2519,7 +2519,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 889, "time": 0.12022745735174654, @@ -2542,10 +2542,33 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 962, + "time": 0.12997562956945571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, - "time": 0.12997562956945574, + "noteOrder": 1010, + "time": 0.1364744110479285, "position": { "x": 7, "y": 0 @@ -2563,12 +2586,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1010, + "time": 0.1364744110479285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1058, + "time": 0.14297319252640128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1058, + "time": 0.14297319252640128, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.1429731925264013, + "noteOrder": 1058, + "time": 0.14297319252640128, "position": { "x": 7, "y": 0 @@ -2586,9 +2678,101 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1106, + "time": 0.14947197400487405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1106, + "time": 0.14947197400487405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1154, + "time": 0.15597075548334685, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1154, + "time": 0.15597075548334685, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, "time": 0.18196588139723802, @@ -2611,7 +2795,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1394, "time": 0.18846466287571081, @@ -2634,7 +2818,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, "time": 0.19496344435418358, @@ -2657,10 +2841,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1490, - "time": 0.20146222583265636, + "time": 0.20146222583265638, "position": { "x": 4, "y": 0 @@ -2680,7 +2864,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1538, "time": 0.20796100731112915, @@ -2703,9 +2887,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.21445978878960195, "position": { "x": 7, @@ -2726,10 +2910,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.22095857026807475, + "noteOrder": 1635, + "time": 0.22095857026807472, "position": { "x": 7, "y": 0 @@ -2749,9 +2933,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2242079610073111, "position": { "x": 7, @@ -2772,10 +2956,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.22095857026807475, + "noteOrder": 1635, + "time": 0.22095857026807472, "position": { "x": 3, "y": 0 @@ -2795,9 +2979,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2242079610073111, "position": { "x": 3, @@ -2818,10 +3002,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.2599512591389115, + "noteOrder": 1923, + "time": 0.25995125913891143, "position": { "x": 7, "y": 0 @@ -2841,10 +3025,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.26645004061738425, + "noteOrder": 1971, + "time": 0.2664500406173842, "position": { "x": 7, "y": 0 @@ -2864,9 +3048,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.272948822095857, "position": { "x": 3, @@ -2887,9 +3071,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.2794476035743298, "position": { "x": 3, @@ -2910,10 +3094,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.31194151096669376, + "noteOrder": 2308, + "time": 0.3119415109666937, "position": { "x": 7, "y": 0 @@ -2933,10 +3117,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2331, - "time": 0.31519090170593017, + "noteOrder": 2332, + "time": 0.3151909017059301, "position": { "x": 7, "y": 0 @@ -2956,9 +3140,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.31844029244516653, "position": { "x": 3, @@ -2979,9 +3163,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.32168968318440294, "position": { "x": 3, @@ -3002,10 +3186,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.3249390739236393, + "noteOrder": 2404, + "time": 0.32493907392363924, "position": { "x": 6, "y": 0 @@ -3025,10 +3209,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.3314378554021121, + "noteOrder": 2452, + "time": 0.33143785540211207, "position": { "x": 6, "y": 0 @@ -3048,10 +3232,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.3249390739236393, + "noteOrder": 2404, + "time": 0.32493907392363924, "position": { "x": 4, "y": 0 @@ -3071,10 +3255,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.3314378554021121, + "noteOrder": 2452, + "time": 0.33143785540211207, "position": { "x": 4, "y": 0 @@ -3094,9 +3278,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.33793663688058484, "position": { "x": 7, @@ -3117,10 +3301,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.3509341998375305, + "noteOrder": 2596, + "time": 0.3509341998375304, "position": { "x": 7, "y": 0 @@ -3140,9 +3324,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.34443541835905767, "position": { "x": 3, @@ -3163,10 +3347,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.3509341998375305, + "noteOrder": 2596, + "time": 0.3509341998375304, "position": { "x": 3, "y": 0 @@ -3186,9 +3370,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.36393176279447603, "position": { "x": 3, @@ -3209,9 +3393,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.37692932575142163, "position": { "x": 3, @@ -3232,9 +3416,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.3704305442729488, "position": { "x": 7, @@ -3255,9 +3439,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.37692932575142163, "position": { "x": 7, @@ -3278,10 +3462,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3268, - "time": 0.4419171405361495, + "noteOrder": 3269, + "time": 0.44191714053614944, "position": { "x": 7, "y": 0 @@ -3301,9 +3485,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.4484159220146222, "position": { "x": 7, @@ -3324,9 +3508,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.45491470349309504, "position": { "x": 3, @@ -3347,10 +3531,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3412, - "time": 0.46141348497156787, + "noteOrder": 3413, + "time": 0.46141348497156776, "position": { "x": 3, "y": 0 @@ -3370,10 +3554,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.487408610885459, + "noteOrder": 3606, + "time": 0.48740861088545895, "position": { "x": 4, "y": 0 @@ -3393,10 +3577,10 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.49065800162469536, + "noteOrder": 3630, + "time": 0.4906580016246953, "position": { "x": 4, "y": 0 @@ -3416,10 +3600,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.487408610885459, + "noteOrder": 3606, + "time": 0.48740861088545895, "position": { "x": 6, "y": 0 @@ -3439,10 +3623,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.49065800162469536, + "noteOrder": 3630, + "time": 0.4906580016246953, "position": { "x": 6, "y": 0 @@ -3462,10 +3646,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, - "time": 0.4939073923639318, + "noteOrder": 3654, + "time": 0.4939073923639317, "position": { "x": 3, "y": 0 @@ -3485,9 +3669,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5004061738424045, "position": { "x": 3, @@ -3508,9 +3692,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.5069049553208773, "position": { "x": 7, @@ -3531,9 +3715,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3797, + "noteOrder": 3798, "time": 0.5134037367993501, "position": { "x": 7, @@ -3554,10 +3738,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.5393988627132413, + "noteOrder": 3990, + "time": 0.5393988627132412, "position": { "x": 6, "y": 0 @@ -3577,10 +3761,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5426482534524776, + "noteOrder": 4014, + "time": 0.5426482534524777, "position": { "x": 6, "y": 0 @@ -3600,10 +3784,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.5393988627132413, + "noteOrder": 3990, + "time": 0.5393988627132412, "position": { "x": 4, "y": 0 @@ -3623,10 +3807,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5426482534524776, + "noteOrder": 4014, + "time": 0.5426482534524777, "position": { "x": 4, "y": 0 @@ -3646,9 +3830,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4037, + "noteOrder": 4038, "time": 0.545897644191714, "position": { "x": 4, @@ -3669,10 +3853,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4085, - "time": 0.5523964256701869, + "noteOrder": 4087, + "time": 0.5523964256701868, "position": { "x": 4, "y": 0 @@ -3692,9 +3876,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4133, + "noteOrder": 4135, "time": 0.5588952071486596, "position": { "x": 6, @@ -3715,10 +3899,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4181, - "time": 0.5653939886271324, + "noteOrder": 4183, + "time": 0.5653939886271323, "position": { "x": 6, "y": 0 @@ -3738,10 +3922,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.5718927701056052, + "noteOrder": 4231, + "time": 0.5718927701056051, "position": { "x": 3, "y": 0 @@ -3761,10 +3945,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4253, - "time": 0.5751421608448416, + "noteOrder": 4255, + "time": 0.5751421608448415, "position": { "x": 3, "y": 0 @@ -3784,10 +3968,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.5783915515840781, + "noteOrder": 4279, + "time": 0.578391551584078, "position": { "x": 7, "y": 0 @@ -3807,10 +3991,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4301, - "time": 0.5816409423233144, + "noteOrder": 4303, + "time": 0.5816409423233143, "position": { "x": 7, "y": 0 @@ -3830,10 +4014,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.5913891145410235, + "noteOrder": 4375, + "time": 0.5913891145410236, "position": { "x": 4, "y": 0 @@ -3853,10 +4037,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4397, - "time": 0.59463850528026, + "noteOrder": 4399, + "time": 0.5946385052802599, "position": { "x": 4, "y": 0 @@ -3876,10 +4060,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.5978878960194963, + "noteOrder": 4423, + "time": 0.5978878960194962, "position": { "x": 6, "y": 0 @@ -3899,10 +4083,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4469, - "time": 0.6043866774979691, + "noteOrder": 4471, + "time": 0.604386677497969, "position": { "x": 6, "y": 0 @@ -3922,10 +4106,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.610885458976442, + "noteOrder": 4519, + "time": 0.6108854589764419, "position": { "x": 4, "y": 0 @@ -3945,9 +4129,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.6173842404549147, "position": { "x": 4, @@ -3968,10 +4152,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4614, - "time": 0.6238830219333875, + "noteOrder": 4615, + "time": 0.6238830219333874, "position": { "x": 7, "y": 0 @@ -3991,10 +4175,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4638, - "time": 0.627132412672624, + "noteOrder": 4639, + "time": 0.6271324126726238, "position": { "x": 7, "y": 0 @@ -4014,10 +4198,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4662, - "time": 0.6303818034118603, + "noteOrder": 4663, + "time": 0.6303818034118602, "position": { "x": 3, "y": 0 @@ -4037,9 +4221,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.6336311941510966, "position": { "x": 3, @@ -4060,9 +4244,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4758, + "noteOrder": 4760, "time": 0.6433793663688059, "position": { "x": 6, @@ -4083,10 +4267,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4782, - "time": 0.6466287571080422, + "noteOrder": 4784, + "time": 0.6466287571080421, "position": { "x": 6, "y": 0 @@ -4106,9 +4290,9 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4998, + "noteOrder": 5000, "time": 0.6758732737611697, "position": { "x": 7, @@ -4129,9 +4313,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, + "noteOrder": 5096, "time": 0.6888708367181153, "position": { "x": 7, @@ -4152,9 +4336,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5046, + "noteOrder": 5048, "time": 0.6823720552396425, "position": { "x": 3, @@ -4175,9 +4359,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, + "noteOrder": 5096, "time": 0.6888708367181153, "position": { "x": 3, @@ -4198,10 +4382,10 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5190, - "time": 0.701868399675061, + "noteOrder": 5192, + "time": 0.7018683996750608, "position": { "x": 7, "y": 0 @@ -4221,10 +4405,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5238, - "time": 0.7083671811535337, + "noteOrder": 5240, + "time": 0.7083671811535336, "position": { "x": 6, "y": 0 @@ -4244,10 +4428,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, - "time": 0.7148659626320065, + "noteOrder": 5288, + "time": 0.7148659626320064, "position": { "x": 3, "y": 0 @@ -4267,9 +4451,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5334, + "noteOrder": 5337, "time": 0.7213647441104792, "position": { "x": 4, @@ -4290,9 +4474,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, + "noteOrder": 5385, "time": 0.7278635255889521, "position": { "x": 7, @@ -4313,10 +4497,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5455, - "time": 0.7376116978066612, + "noteOrder": 5457, + "time": 0.7376116978066611, "position": { "x": 7, "y": 0 @@ -4336,9 +4520,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.7408610885458976, "position": { "x": 3, @@ -4359,10 +4543,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5551, - "time": 0.7506092607636069, + "noteOrder": 5553, + "time": 0.7506092607636068, "position": { "x": 3, "y": 0 @@ -4382,9 +4566,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.7538586515028433, "position": { "x": 7, @@ -4405,10 +4589,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, - "time": 0.7571080422420796, + "noteOrder": 5601, + "time": 0.7571080422420795, "position": { "x": 7, "y": 0 @@ -4428,10 +4612,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5623, - "time": 0.7603574329813161, + "noteOrder": 5625, + "time": 0.7603574329813159, "position": { "x": 3, "y": 0 @@ -4451,9 +4635,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5647, + "noteOrder": 5649, "time": 0.7636068237205523, "position": { "x": 3, @@ -4474,9 +4658,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5767, + "noteOrder": 5769, "time": 0.7798537774167343, "position": { "x": 3, @@ -4497,10 +4681,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, - "time": 0.79285134037368, + "noteOrder": 5865, + "time": 0.7928513403736799, "position": { "x": 3, "y": 0 @@ -4520,10 +4704,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5815, - "time": 0.7863525588952072, + "noteOrder": 5817, + "time": 0.786352558895207, "position": { "x": 7, "y": 0 @@ -4543,10 +4727,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, - "time": 0.79285134037368, + "noteOrder": 5865, + "time": 0.7928513403736799, "position": { "x": 7, "y": 0 @@ -4566,10 +4750,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5959, - "time": 0.8058489033306254, + "noteOrder": 5962, + "time": 0.8058489033306255, "position": { "x": 3, "y": 0 @@ -4589,10 +4773,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6007, - "time": 0.8123476848090982, + "noteOrder": 6010, + "time": 0.8123476848090981, "position": { "x": 4, "y": 0 @@ -4612,10 +4796,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6055, - "time": 0.8188464662875711, + "noteOrder": 6058, + "time": 0.818846466287571, "position": { "x": 7, "y": 0 @@ -4635,10 +4819,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, - "time": 0.8253452477660439, + "noteOrder": 6106, + "time": 0.8253452477660438, "position": { "x": 6, "y": 0 @@ -4658,9 +4842,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6151, + "noteOrder": 6154, "time": 0.8318440292445166, "position": { "x": 3, @@ -4681,10 +4865,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6223, - "time": 0.8415922014622259, + "noteOrder": 6226, + "time": 0.8415922014622257, "position": { "x": 3, "y": 0 @@ -4704,10 +4888,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6247, - "time": 0.8448415922014623, + "noteOrder": 6250, + "time": 0.8448415922014622, "position": { "x": 7, "y": 0 @@ -4727,9 +4911,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6320, + "noteOrder": 6322, "time": 0.8545897644191713, "position": { "x": 7, @@ -4750,9 +4934,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6344, + "noteOrder": 6346, "time": 0.8578391551584078, "position": { "x": 3, @@ -4773,9 +4957,9 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6368, + "noteOrder": 6370, "time": 0.8610885458976442, "position": { "x": 3, @@ -4796,9 +4980,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6392, + "noteOrder": 6394, "time": 0.8643379366368805, "position": { "x": 7, @@ -4819,10 +5003,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6416, - "time": 0.867587327376117, + "noteOrder": 6418, + "time": 0.8675873273761169, "position": { "x": 7, "y": 0 @@ -4842,9 +5026,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6728, + "noteOrder": 6731, "time": 0.9098294069861901, "position": { "x": 7, @@ -4865,10 +5049,10 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6776, - "time": 0.9163281884646629, + "noteOrder": 6779, + "time": 0.9163281884646628, "position": { "x": 7, "y": 0 @@ -4888,9 +5072,9 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6920, + "noteOrder": 6923, "time": 0.9358245329000812, "position": { "x": 3, @@ -4911,9 +5095,9 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6992, + "noteOrder": 6995, "time": 0.9455727051177903, "position": { "x": 3, diff --git "a/tracks/MA\343\203\273TSU\343\203\273RI/info.json" "b/tracks/MA\343\203\273TSU\343\203\273RI/info.json" index f5b38044..84ac8be5 100644 --- "a/tracks/MA\343\203\273TSU\343\203\273RI/info.json" +++ "b/tracks/MA\343\203\273TSU\343\203\273RI/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "MA\u30fbTSU\u30fbRI", - "SongLength": "125.544490", + "SongLength": "115.591837", "SongAuthorName": "\u304b\u306a\u305f\u3093,\u30a2\u30de\u30ae\u30bb\u30fc\u30e9,\u3041\u3085 by BEMANI Sound Team \"\u85e4\u68ee\u5d07\u591a\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/MOVE! (We Keep It Movin')/342_difficulty_1a.json b/tracks/MOVE! (We Keep It Movin')/342_difficulty_1a.json index ea22f09a..4acd9fd7 100644 --- a/tracks/MOVE! (We Keep It Movin')/342_difficulty_1a.json +++ b/tracks/MOVE! (We Keep It Movin')/342_difficulty_1a.json @@ -154,7 +154,7 @@ }, { "noteOrder": 264, - "time": 0.03769489976583471, + "time": 0.03769489976583472, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.05140213604432006, "position": { "x": 3, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 385, "time": 0.0548289451139414, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 409, "time": 0.05825575418356274, "position": { "x": 3, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 433, "time": 0.06168256325318408, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 457, "time": 0.06510937232280542, "position": { "x": 3, @@ -374,7 +374,7 @@ }, { "noteOrder": 529, - "time": 0.07538979953166942, + "time": 0.07538979953166944, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 649, - "time": 0.09252384487977612, + "time": 0.09252384487977611, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 745, - "time": 0.10623108115826146, + "time": 0.10623108115826148, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 841, - "time": 0.11993831743674681, + "time": 0.11993831743674682, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.18504768975955224, + "noteOrder": 1298, + "time": 0.18504768975955221, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.1987549260380376, "position": { "x": 6, @@ -694,7 +694,7 @@ }, { "noteOrder": 1490, - "time": 0.21246216231652293, + "time": 0.21246216231652296, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1682, - "time": 0.23987663487349362, + "time": 0.23987663487349364, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.25015706208235766, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.253583871151979, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.25701068022160034, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.2878519618481924, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.2912787709178137, + "noteOrder": 2043, + "time": 0.29127877091781373, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.294705579987435, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.2981323890570564, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2114, - "time": 0.3015591981266777, + "noteOrder": 2115, + "time": 0.30155919812667775, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.30498600719629904, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2162, - "time": 0.30841281626592043, + "noteOrder": 2163, + "time": 0.3084128162659204, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2187, "time": 0.3118396253355417, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.34953452510137645, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.3529613341709978, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.3563881432406191, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.35981495231024047, + "noteOrder": 2524, + "time": 0.3598149523102404, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.36324176137986175, + "noteOrder": 2548, + "time": 0.3632417613798618, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2619, - "time": 0.37352218858872577, + "noteOrder": 2620, + "time": 0.3735221885887258, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.37694899765834716, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2667, + "noteOrder": 2668, "time": 0.38037580672796845, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.38380261579758984, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2715, + "noteOrder": 2716, "time": 0.3872294248672112, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.39065623393683246, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.4009366611456965, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.4043634702153179, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2859, + "noteOrder": 2860, "time": 0.40779027928493916, "position": { "x": 5, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.4112170883545605, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.4146438974241819, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.4180707064938032, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3003, + "noteOrder": 3004, "time": 0.4283511337026672, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.43177794277228854, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.4352047518419099, + "noteOrder": 3052, + "time": 0.43520475184190993, "position": { "x": 5, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.4386315609115312, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3099, - "time": 0.4420583699811526, + "noteOrder": 3100, + "time": 0.44205836998115255, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3123, - "time": 0.4454851790507739, + "noteOrder": 3125, + "time": 0.44548517905077395, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4060, + "noteOrder": 4062, "time": 0.5791307327660061, "position": { "x": 5, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4084, - "time": 0.5825575418356274, + "noteOrder": 4086, + "time": 0.5825575418356275, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4108, + "noteOrder": 4110, "time": 0.5859843509052487, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4254, "time": 0.6065452053229767, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4278, "time": 0.6099720143925981, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4301, - "time": 0.6133988234622195, + "noteOrder": 4302, + "time": 0.6133988234622194, "position": { "x": 5, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4349, - "time": 0.6202524416014621, + "noteOrder": 4350, + "time": 0.6202524416014622, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4373, + "noteOrder": 4374, "time": 0.6236792506710834, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4397, + "noteOrder": 4398, "time": 0.6271060597407048, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6339596778799476, + "noteOrder": 4446, + "time": 0.6339596778799474, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4469, + "noteOrder": 4470, "time": 0.6373864869495688, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4493, - "time": 0.6408132960191901, + "noteOrder": 4494, + "time": 0.6408132960191902, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.6716545776457822, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4733, + "noteOrder": 4735, "time": 0.6750813867154035, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4757, + "noteOrder": 4759, "time": 0.6785081957850249, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4781, + "noteOrder": 4783, "time": 0.6819350048546462, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4805, + "noteOrder": 4807, "time": 0.6853618139242675, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4829, - "time": 0.6887886229938888, + "noteOrder": 4831, + "time": 0.6887886229938889, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.6922154320635102, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4877, + "noteOrder": 4879, "time": 0.6956422411331316, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4901, + "noteOrder": 4903, "time": 0.6990690502027529, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4925, + "noteOrder": 4927, "time": 0.7024958592723742, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4949, + "noteOrder": 4951, "time": 0.7059226683419956, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4975, "time": 0.7093494774116169, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4997, + "noteOrder": 4999, "time": 0.7127762864812383, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.7162030955508596, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.7196299046204809, + "noteOrder": 5047, + "time": 0.7196299046204808, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5214, - "time": 0.7436175681078302, + "noteOrder": 5216, + "time": 0.7436175681078303, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5238, - "time": 0.7470443771774515, + "noteOrder": 5240, + "time": 0.7470443771774516, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5262, + "noteOrder": 5264, "time": 0.750471186247073, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5406, + "noteOrder": 5408, "time": 0.771032040664801, "position": { "x": 5, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.7744588497344224, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5454, - "time": 0.7778856588040437, + "noteOrder": 5456, + "time": 0.7778856588040436, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5502, - "time": 0.7847392769432863, + "noteOrder": 5504, + "time": 0.7847392769432864, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5526, + "noteOrder": 5528, "time": 0.7881660860129077, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5550, + "noteOrder": 5552, "time": 0.7915928950825291, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5598, + "noteOrder": 5600, "time": 0.7984465132217716, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.801873322291393, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5646, + "noteOrder": 5648, "time": 0.8053001313610143, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5694, + "noteOrder": 5696, "time": 0.8121537495002571, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5718, + "noteOrder": 5720, "time": 0.8155805585698783, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5742, + "noteOrder": 5744, "time": 0.8190073676394997, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5886, + "noteOrder": 5888, "time": 0.8395682220572277, "position": { "x": 6, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5910, + "noteOrder": 5913, "time": 0.842995031126849, "position": { "x": 5, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5934, - "time": 0.8464218401964705, + "noteOrder": 5937, + "time": 0.8464218401964704, "position": { "x": 5, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5958, - "time": 0.8498486492660917, + "noteOrder": 5961, + "time": 0.8498486492660918, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5982, - "time": 0.853275458335713, + "noteOrder": 5985, + "time": 0.8532754583357132, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6078, - "time": 0.8669826946141985, + "noteOrder": 6081, + "time": 0.8669826946141984, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6102, - "time": 0.8704095036838198, + "noteOrder": 6105, + "time": 0.8704095036838199, "position": { "x": 5, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6126, + "noteOrder": 6129, "time": 0.8738363127534411, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6151, + "noteOrder": 6153, "time": 0.8772631218230624, "position": { "x": 6, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6175, + "noteOrder": 6177, "time": 0.8806899308926838, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6271, + "noteOrder": 6273, "time": 0.8943971671711691, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6295, + "noteOrder": 6297, "time": 0.8978239762407905, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6319, + "noteOrder": 6321, "time": 0.9012507853104118, "position": { "x": 5, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6343, + "noteOrder": 6345, "time": 0.9046775943800331, "position": { "x": 4, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6367, + "noteOrder": 6369, "time": 0.9081044034496545, "position": { "x": 6, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6463, - "time": 0.9218116397281397, + "noteOrder": 6465, + "time": 0.9218116397281398, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6487, + "noteOrder": 6489, "time": 0.9252384487977612, "position": { "x": 5, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6511, + "noteOrder": 6513, "time": 0.9286652578673825, "position": { "x": 5, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6535, + "noteOrder": 6537, "time": 0.9320920669370039, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6559, + "noteOrder": 6561, "time": 0.9355188760066252, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6583, + "noteOrder": 6585, "time": 0.9389456850762465, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6607, + "noteOrder": 6610, "time": 0.9423724941458679, "position": { "x": 4, @@ -2756,7 +2756,7 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12336512650636816, @@ -2779,7 +2779,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, "time": 0.13021874464561084, @@ -2800,12 +2800,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 961, + "time": 0.1370723627848535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 961, + "time": 0.1370723627848535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.15077959906333885, + "noteOrder": 1058, + "time": 0.15077959906333888, "position": { "x": 2, "y": 0 @@ -2825,9 +2871,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.15763321720258153, "position": { "x": 3, @@ -2846,11 +2892,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1154, + "time": 0.1644868353418242, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1154, + "time": 0.1644868353418242, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.17819407162030956, "position": { "x": 7, @@ -2871,10 +2963,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.18504768975955224, + "noteOrder": 1298, + "time": 0.18504768975955221, "position": { "x": 7, "y": 0 @@ -2894,9 +2986,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.19190130789879492, "position": { "x": 3, @@ -2917,9 +3009,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.1987549260380376, "position": { "x": 3, @@ -2940,7 +3032,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, "time": 0.20560854417728025, @@ -2963,10 +3055,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1490, - "time": 0.21246216231652293, + "time": 0.21246216231652296, "position": { "x": 7, "y": 0 @@ -2986,7 +3078,7 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1634, "time": 0.23302301673425097, @@ -3009,7 +3101,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1730, "time": 0.24673025301273632, @@ -3032,7 +3124,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1730, "time": 0.24673025301273632, @@ -3055,9 +3147,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2604374892912217, "position": { "x": 4, @@ -3078,9 +3170,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2604374892912217, "position": { "x": 7, @@ -3101,9 +3193,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.26729110743046436, "position": { "x": 7, @@ -3124,9 +3216,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, + "noteOrder": 1923, "time": 0.274144725569707, "position": { "x": 3, @@ -3147,9 +3239,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.2809983437089497, "position": { "x": 3, @@ -3170,9 +3262,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, + "noteOrder": 2211, "time": 0.31526643440516305, "position": { "x": 7, @@ -3191,11 +3283,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3186932434747844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3186932434747844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.32212005254440573, "position": { "x": 3, @@ -3214,9 +3352,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2283, + "time": 0.32554686161402707, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2283, + "time": 0.32554686161402707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2403, "time": 0.34268090696213377, @@ -3239,10 +3423,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2547, - "time": 0.36324176137986175, + "noteOrder": 2548, + "time": 0.3632417613798618, "position": { "x": 4, "y": 0 @@ -3262,10 +3446,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.3700953795191045, + "noteOrder": 2596, + "time": 0.37009537951910443, "position": { "x": 3, "y": 0 @@ -3285,9 +3469,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.39065623393683246, "position": { "x": 6, @@ -3308,9 +3492,9 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.3975098520760752, "position": { "x": 7, @@ -3331,9 +3515,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.4180707064938032, "position": { "x": 4, @@ -3354,10 +3538,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, - "time": 0.42492432463304586, + "noteOrder": 2980, + "time": 0.4249243246330459, "position": { "x": 3, "y": 0 @@ -3377,10 +3561,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, - "time": 0.4454851790507739, + "noteOrder": 3125, + "time": 0.44548517905077395, "position": { "x": 6, "y": 0 @@ -3400,9 +3584,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.4523387971900166, "position": { "x": 7, @@ -3423,9 +3607,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3221, "time": 0.45919241532925925, "position": { "x": 7, @@ -3446,9 +3630,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, + "noteOrder": 3269, "time": 0.46604603346850193, "position": { "x": 3, @@ -3469,9 +3653,9 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.4728996516077446, "position": { "x": 3, @@ -3492,10 +3676,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.47975326974698723, + "noteOrder": 3365, + "time": 0.4797532697469873, "position": { "x": 6, "y": 0 @@ -3515,9 +3699,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3412, + "noteOrder": 3413, "time": 0.48660688788622997, "position": { "x": 6, @@ -3538,9 +3722,9 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.49346050602547264, "position": { "x": 4, @@ -3561,9 +3745,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.5003141241647153, "position": { "x": 4, @@ -3584,9 +3768,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3556, + "noteOrder": 3557, "time": 0.507167742303958, "position": { "x": 7, @@ -3607,9 +3791,9 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3604, + "noteOrder": 3605, "time": 0.5140213604432007, "position": { "x": 7, @@ -3630,9 +3814,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.5208749785824434, "position": { "x": 3, @@ -3653,10 +3837,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3700, - "time": 0.527728596721686, + "noteOrder": 3701, + "time": 0.5277285967216859, "position": { "x": 3, "y": 0 @@ -3676,9 +3860,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.5345822148609287, "position": { "x": 7, @@ -3699,9 +3883,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.5414358330001714, "position": { "x": 7, @@ -3722,9 +3906,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.5345822148609287, "position": { "x": 3, @@ -3745,9 +3929,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.5414358330001714, "position": { "x": 3, @@ -3768,9 +3952,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, + "noteOrder": 3846, "time": 0.548289451139414, "position": { "x": 7, @@ -3791,9 +3975,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, + "noteOrder": 3894, "time": 0.5551430692786568, "position": { "x": 7, @@ -3814,9 +3998,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, + "noteOrder": 3846, "time": 0.548289451139414, "position": { "x": 3, @@ -3837,9 +4021,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, + "noteOrder": 3894, "time": 0.5551430692786568, "position": { "x": 3, @@ -3860,9 +4044,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3942, "time": 0.5619966874178994, "position": { "x": 7, @@ -3882,11 +4066,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3964, - "time": 0.5654234964875207, + "noteOrder": 3954, + "time": 0.56371009195271, "position": { "x": 7, "y": 0 @@ -3900,18 +4084,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3988, - "time": 0.568850305557142, + "noteOrder": 3954, + "time": 0.56371009195271, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3928,11 +4112,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4012, - "time": 0.5722771146267633, + "noteOrder": 3966, + "time": 0.5654234964875208, "position": { "x": 7, "y": 0 @@ -3951,11 +4135,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4036, - "time": 0.5757039236963848, + "noteOrder": 3978, + "time": 0.5671369010223314, "position": { "x": 7, "y": 0 @@ -3969,18 +4153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4084, - "time": 0.5825575418356274, + "noteOrder": 3978, + "time": 0.5671369010223314, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3992,18 +4176,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4132, - "time": 0.58941115997487, + "noteOrder": 3990, + "time": 0.568850305557142, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4015,18 +4199,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4156, - "time": 0.5928379690444915, + "noteOrder": 4002, + "time": 0.5705637100919527, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4043,13 +4227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4180, - "time": 0.5962647781141128, + "noteOrder": 4002, + "time": 0.5705637100919527, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4061,16 +4245,775 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4204, - "time": 0.599691587183734, + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5722771146267633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4026, + "time": 0.5739905191615741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4026, + "time": 0.5739905191615741, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4038, + "time": 0.5757039236963848, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4086, + "time": 0.5825575418356275, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.58941115997487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4146, + "time": 0.5911245645096808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4146, + "time": 0.5911245645096808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4158, + "time": 0.5928379690444914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4170, + "time": 0.5945513735793021, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4170, + "time": 0.5945513735793021, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4182, + "time": 0.5962647781141128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4194, + "time": 0.5979781826489234, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4194, + "time": 0.5979781826489234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4206, + "time": 0.5996915871837342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4218, + "time": 0.6014049917185448, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4218, + "time": 0.6014049917185448, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4230, + "time": 0.6031183962533555, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4278, + "time": 0.6099720143925981, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4326, + "time": 0.6168256325318408, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4422, + "time": 0.6305328688103261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4422, + "time": 0.6305328688103261, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6442401050888115, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6442401050888115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4567, + "time": 0.6510937232280541, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4615, + "time": 0.6579473413672968, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4663, + "time": 0.6648009595065395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5095, + "time": 0.7264835227597236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5107, + "time": 0.7281969272945342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5107, + "time": 0.7281969272945342, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5119, + "time": 0.729910331829345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7316237363641556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7316237363641556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5143, + "time": 0.7333371408989663, "position": { "x": 3, "y": 0 @@ -4084,16 +5027,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4228, - "time": 0.6031183962533554, + "noteOrder": 5155, + "time": 0.735050545433777, "position": { "x": 3, "y": 0 @@ -4112,13 +5055,105 @@ "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5155, + "time": 0.735050545433777, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.6099720143925981, + "noteOrder": 5167, + "time": 0.7367639499685876, "position": { - "x": 5, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5179, + "time": 0.7384773545033984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5179, + "time": 0.7384773545033984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5191, + "time": 0.7401907590382089, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4135,11 +5170,80 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5264, + "time": 0.750471186247073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5288, + "time": 0.7538979953166943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5300, + "time": 0.755611399851505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4325, - "time": 0.6168256325318409, + "noteOrder": 5300, + "time": 0.755611399851505, "position": { "x": 6, "y": 0 @@ -4158,13 +5262,105 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5312, + "time": 0.7573248043863157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7590382089211263, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5324, + "time": 0.7590382089211263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.6305328688103261, + "noteOrder": 5336, + "time": 0.7607516134559369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5348, + "time": 0.7624650179907476, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4181,13 +5377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4421, - "time": 0.6305328688103261, + "noteOrder": 5348, + "time": 0.7624650179907476, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4199,18 +5395,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.6442401050888115, + "noteOrder": 5360, + "time": 0.7641784225255583, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4227,11 +5423,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4517, - "time": 0.6442401050888115, + "noteOrder": 5372, + "time": 0.765891827060369, "position": { "x": 7, "y": 0 @@ -4245,18 +5441,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4565, - "time": 0.6510937232280543, + "noteOrder": 5372, + "time": 0.765891827060369, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4268,18 +5464,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4613, - "time": 0.6579473413672968, + "noteOrder": 5384, + "time": 0.7676052315951797, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4291,18 +5487,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4661, - "time": 0.6648009595065395, + "noteOrder": 5456, + "time": 0.7778856588040436, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4314,18 +5510,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5093, - "time": 0.7264835227597235, + "noteOrder": 5480, + "time": 0.7813124678736649, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4342,13 +5538,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5117, - "time": 0.729910331829345, + "noteOrder": 5576, + "time": 0.7950197041521504, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4360,18 +5556,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5141, - "time": 0.7333371408989663, + "noteOrder": 5576, + "time": 0.7950197041521504, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4383,18 +5579,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5165, - "time": 0.7367639499685876, + "noteOrder": 5672, + "time": 0.8087269404306358, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4411,13 +5607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5189, - "time": 0.740190759038209, + "noteOrder": 5672, + "time": 0.8087269404306358, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4434,13 +5630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5262, - "time": 0.750471186247073, + "noteOrder": 5768, + "time": 0.822434176709121, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4457,13 +5653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, - "time": 0.7538979953166943, + "noteOrder": 5768, + "time": 0.822434176709121, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4480,13 +5676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5310, - "time": 0.7573248043863157, + "noteOrder": 5816, + "time": 0.8292877948483638, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4498,16 +5694,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5334, - "time": 0.7607516134559369, + "noteOrder": 5864, + "time": 0.8361414129876064, "position": { "x": 7, "y": 0 @@ -4526,13 +5722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5358, - "time": 0.7641784225255582, + "noteOrder": 6009, + "time": 0.8567022674053344, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4544,18 +5740,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, - "time": 0.7676052315951797, + "noteOrder": 6009, + "time": 0.8567022674053344, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4567,18 +5763,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5454, - "time": 0.7778856588040437, + "noteOrder": 6021, + "time": 0.8584156719401451, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4590,18 +5786,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5478, - "time": 0.7813124678736649, + "noteOrder": 6021, + "time": 0.8584156719401451, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4618,13 +5814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 5574, - "time": 0.7950197041521504, + "noteOrder": 6033, + "time": 0.8601290764749557, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4636,18 +5832,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5574, - "time": 0.7950197041521504, + "noteOrder": 6045, + "time": 0.8618424810097665, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4664,13 +5860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5670, - "time": 0.8087269404306358, + "noteOrder": 6045, + "time": 0.8618424810097665, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4687,13 +5883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5670, - "time": 0.8087269404306358, + "noteOrder": 6057, + "time": 0.8635558855445771, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4710,13 +5906,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5766, - "time": 0.822434176709121, + "noteOrder": 6201, + "time": 0.8841167399623051, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4733,13 +5929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5766, - "time": 0.822434176709121, + "noteOrder": 6201, + "time": 0.8841167399623051, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4756,13 +5952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5814, - "time": 0.8292877948483638, + "noteOrder": 6213, + "time": 0.8858301444971158, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4779,13 +5975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5862, - "time": 0.8361414129876064, + "noteOrder": 6213, + "time": 0.8858301444971158, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4802,13 +5998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 6006, - "time": 0.8567022674053344, + "noteOrder": 6225, + "time": 0.8875435490319264, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4820,16 +6016,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6006, - "time": 0.8567022674053344, + "noteOrder": 6237, + "time": 0.8892569535667372, "position": { "x": 3, "y": 0 @@ -4848,13 +6044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6030, - "time": 0.8601290764749557, + "noteOrder": 6237, + "time": 0.8892569535667372, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4866,18 +6062,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6054, - "time": 0.8635558855445771, + "noteOrder": 6249, + "time": 0.8909703581015479, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4889,18 +6085,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6199, - "time": 0.8841167399623052, + "noteOrder": 6393, + "time": 0.9115312125192758, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4912,18 +6108,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6199, - "time": 0.8841167399623052, + "noteOrder": 6393, + "time": 0.9115312125192758, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4935,16 +6131,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6223, - "time": 0.8875435490319264, + "noteOrder": 6405, + "time": 0.9132446170540864, "position": { "x": 3, "y": 0 @@ -4963,13 +6159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6247, - "time": 0.8909703581015478, + "noteOrder": 6405, + "time": 0.9132446170540864, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4981,18 +6177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 6391, - "time": 0.9115312125192758, + "noteOrder": 6417, + "time": 0.9149580215888972, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5009,13 +6205,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6391, - "time": 0.9115312125192758, + "noteOrder": 6429, + "time": 0.9166714261237078, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5027,18 +6223,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6415, - "time": 0.9149580215888972, + "noteOrder": 6429, + "time": 0.9166714261237078, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5056,9 +6252,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6439, + "noteOrder": 6441, "time": 0.9183848306585185, "position": { "x": 3, @@ -5079,9 +6275,9 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6583, + "noteOrder": 6585, "time": 0.9389456850762465, "position": { "x": 6, @@ -5102,9 +6298,9 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6631, + "noteOrder": 6634, "time": 0.9457993032154892, "position": { "x": 5, @@ -5125,9 +6321,9 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6679, + "noteOrder": 6682, "time": 0.9526529213547319, "position": { "x": 5, @@ -5148,10 +6344,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6727, - "time": 0.9595065394939745, + "noteOrder": 6730, + "time": 0.9595065394939746, "position": { "x": 5, "y": 0 @@ -5171,9 +6367,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6775, + "noteOrder": 6778, "time": 0.9663601576332173, "position": { "x": 5, diff --git a/tracks/MOVE! (We Keep It Movin')/342_difficulty_1b.json b/tracks/MOVE! (We Keep It Movin')/342_difficulty_1b.json index 76982622..b01a935c 100644 --- a/tracks/MOVE! (We Keep It Movin')/342_difficulty_1b.json +++ b/tracks/MOVE! (We Keep It Movin')/342_difficulty_1b.json @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 385, "time": 0.0548289451139414, "position": { "x": 4, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 433, "time": 0.06168256325318408, "position": { "x": 3, @@ -194,7 +194,7 @@ }, { "noteOrder": 529, - "time": 0.07538979953166942, + "time": 0.07538979953166944, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 745, - "time": 0.10623108115826146, + "time": 0.10623108115826148, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 841, - "time": 0.11993831743674681, + "time": 0.11993831743674682, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.15763321720258153, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.17134045348106688, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.17819407162030956, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.18504768975955224, + "noteOrder": 1298, + "time": 0.18504768975955221, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.19190130789879492, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1393, + "noteOrder": 1394, "time": 0.1987549260380376, "position": { "x": 4, @@ -554,7 +554,7 @@ }, { "noteOrder": 1490, - "time": 0.21246216231652293, + "time": 0.21246216231652296, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1682, - "time": 0.23987663487349362, + "time": 0.23987663487349364, "position": { "x": 5, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.253583871151979, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.26729110743046436, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1922, + "noteOrder": 1923, "time": 0.274144725569707, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.2809983437089497, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.2878519618481924, "position": { "x": 8, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2042, - "time": 0.2912787709178137, + "noteOrder": 2043, + "time": 0.29127877091781373, "position": { "x": 8, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2066, + "noteOrder": 2067, "time": 0.294705579987435, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2114, - "time": 0.3015591981266777, + "noteOrder": 2115, + "time": 0.30155919812667775, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.30498600719629904, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2162, - "time": 0.30841281626592043, + "noteOrder": 2163, + "time": 0.3084128162659204, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2211, "time": 0.31526643440516305, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2235, "time": 0.3186932434747844, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.32212005254440573, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.3289736706836484, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.3289736706836484, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.34953452510137645, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.3563881432406191, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.36324176137986175, + "noteOrder": 2548, + "time": 0.3632417613798618, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.3700953795191045, + "noteOrder": 2596, + "time": 0.37009537951910443, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.37694899765834716, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.38380261579758984, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.39065623393683246, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.3975098520760752, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.4043634702153179, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.4112170883545605, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2931, + "noteOrder": 2932, "time": 0.4180707064938032, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4084, - "time": 0.5825575418356274, + "noteOrder": 4086, + "time": 0.5825575418356275, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4278, "time": 0.6099720143925981, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4373, + "noteOrder": 4374, "time": 0.6236792506710834, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4469, + "noteOrder": 4470, "time": 0.6373864869495688, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.6442401050888115, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4543, "time": 0.6476669141584328, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4565, - "time": 0.6510937232280543, + "noteOrder": 4567, + "time": 0.6510937232280541, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4589, + "noteOrder": 4591, "time": 0.6545205322976755, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.6579473413672968, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4637, - "time": 0.6613741504369182, + "noteOrder": 4639, + "time": 0.6613741504369183, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.6648009595065395, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.6682277685761608, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5238, - "time": 0.7470443771774515, + "noteOrder": 5240, + "time": 0.7470443771774516, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.7744588497344224, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5526, + "noteOrder": 5528, "time": 0.7881660860129077, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5574, + "noteOrder": 5576, "time": 0.7950197041521504, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.801873322291393, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5718, + "noteOrder": 5720, "time": 0.8155805585698783, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5766, + "noteOrder": 5768, "time": 0.822434176709121, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.8292877948483638, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6102, - "time": 0.8704095036838198, + "noteOrder": 6105, + "time": 0.8704095036838199, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6151, + "noteOrder": 6153, "time": 0.8772631218230624, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6199, - "time": 0.8841167399623052, + "noteOrder": 6201, + "time": 0.8841167399623051, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6487, + "noteOrder": 6489, "time": 0.9252384487977612, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6535, + "noteOrder": 6537, "time": 0.9320920669370039, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6583, + "noteOrder": 6585, "time": 0.9389456850762465, "position": { "x": 3, @@ -1676,10 +1676,10 @@ "lineNodes": [ { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.15077959906333885, + "noteOrder": 1058, + "time": 0.15077959906333888, "position": { "x": 6, "y": 0 @@ -1699,9 +1699,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.15763321720258153, "position": { "x": 6, @@ -1722,9 +1722,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.1644868353418242, "position": { "x": 4, @@ -1745,9 +1745,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.17134045348106688, "position": { "x": 4, @@ -1768,7 +1768,7 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1634, "time": 0.23302301673425097, @@ -1791,9 +1791,9 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.253583871151979, "position": { "x": 4, @@ -1814,9 +1814,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2604374892912217, "position": { "x": 3, @@ -1837,9 +1837,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.2809983437089497, "position": { "x": 6, @@ -1860,9 +1860,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, + "noteOrder": 3173, "time": 0.4523387971900166, "position": { "x": 7, @@ -1883,9 +1883,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3221, "time": 0.45919241532925925, "position": { "x": 6, @@ -1906,9 +1906,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, + "noteOrder": 3269, "time": 0.46604603346850193, "position": { "x": 3, @@ -1929,9 +1929,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.4728996516077446, "position": { "x": 4, @@ -1952,10 +1952,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.47975326974698723, + "noteOrder": 3365, + "time": 0.4797532697469873, "position": { "x": 6, "y": 0 @@ -1975,9 +1975,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3412, + "noteOrder": 3413, "time": 0.48660688788622997, "position": { "x": 7, @@ -1998,9 +1998,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.49346050602547264, "position": { "x": 4, @@ -2021,9 +2021,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.5003141241647153, "position": { "x": 3, @@ -2044,9 +2044,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3556, + "noteOrder": 3557, "time": 0.507167742303958, "position": { "x": 7, @@ -2067,9 +2067,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3604, + "noteOrder": 3605, "time": 0.5140213604432007, "position": { "x": 6, @@ -2090,9 +2090,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.5208749785824434, "position": { "x": 6, @@ -2113,10 +2113,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3700, - "time": 0.527728596721686, + "noteOrder": 3701, + "time": 0.5277285967216859, "position": { "x": 7, "y": 0 @@ -2136,9 +2136,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.5345822148609287, "position": { "x": 4, @@ -2159,9 +2159,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, + "noteOrder": 3797, "time": 0.5414358330001714, "position": { "x": 3, @@ -2182,9 +2182,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, + "noteOrder": 3846, "time": 0.548289451139414, "position": { "x": 3, @@ -2205,9 +2205,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3892, + "noteOrder": 3894, "time": 0.5551430692786568, "position": { "x": 4, @@ -2228,9 +2228,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, + "noteOrder": 3942, "time": 0.5619966874178994, "position": { "x": 7, @@ -2250,11 +2250,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3988, - "time": 0.568850305557142, + "noteOrder": 3966, + "time": 0.5654234964875208, "position": { "x": 7, "y": 0 @@ -2268,18 +2268,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4036, - "time": 0.5757039236963848, + "noteOrder": 3966, + "time": 0.5654234964875208, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2296,13 +2296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 4084, - "time": 0.5825575418356274, + "noteOrder": 3990, + "time": 0.568850305557142, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2314,18 +2314,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4132, - "time": 0.58941115997487, + "noteOrder": 4014, + "time": 0.5722771146267633, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2342,13 +2342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4180, - "time": 0.5962647781141128, + "noteOrder": 4014, + "time": 0.5722771146267633, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2360,18 +2360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, - "time": 0.6031183962533554, + "noteOrder": 4038, + "time": 0.5757039236963848, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2383,16 +2383,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4277, - "time": 0.6099720143925981, + "noteOrder": 4086, + "time": 0.5825575418356275, "position": { "x": 5, "y": 0 @@ -2406,18 +2406,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4325, - "time": 0.6168256325318409, + "noteOrder": 4134, + "time": 0.58941115997487, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2429,18 +2429,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4373, - "time": 0.6236792506710834, + "noteOrder": 4158, + "time": 0.5928379690444914, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2452,16 +2452,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4421, - "time": 0.6305328688103261, + "noteOrder": 4158, + "time": 0.5928379690444914, "position": { "x": 4, "y": 0 @@ -2480,13 +2480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 80, "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, - "time": 0.6373864869495688, + "noteOrder": 4182, + "time": 0.5962647781141128, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2498,18 +2498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4805, - "time": 0.6853618139242675, + "noteOrder": 4206, + "time": 0.5996915871837342, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2526,13 +2526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4853, - "time": 0.6922154320635102, + "noteOrder": 4206, + "time": 0.5996915871837342, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2549,13 +2549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, - "time": 0.6990690502027529, + "noteOrder": 4230, + "time": 0.6031183962533555, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2572,13 +2572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4949, - "time": 0.7059226683419956, + "noteOrder": 4278, + "time": 0.6099720143925981, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2595,13 +2595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, - "time": 0.7127762864812383, + "noteOrder": 4326, + "time": 0.6168256325318408, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2618,11 +2618,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5045, - "time": 0.7196299046204809, + "noteOrder": 4374, + "time": 0.6236792506710834, "position": { "x": 6, "y": 0 @@ -2641,13 +2641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5093, - "time": 0.7264835227597235, + "noteOrder": 4422, + "time": 0.6305328688103261, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2664,13 +2664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5141, - "time": 0.7333371408989663, + "noteOrder": 4470, + "time": 0.6373864869495688, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2682,18 +2682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5189, - "time": 0.740190759038209, + "noteOrder": 4807, + "time": 0.6853618139242675, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2705,18 +2705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5238, - "time": 0.7470443771774515, + "noteOrder": 4855, + "time": 0.6922154320635102, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2728,18 +2728,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, - "time": 0.7538979953166943, + "noteOrder": 4903, + "time": 0.6990690502027529, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2751,18 +2751,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5334, - "time": 0.7607516134559369, + "noteOrder": 4951, + "time": 0.7059226683419956, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2779,11 +2779,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5382, - "time": 0.7676052315951797, + "noteOrder": 4999, + "time": 0.7127762864812383, "position": { "x": 7, "y": 0 @@ -2802,13 +2802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5430, - "time": 0.7744588497344224, + "noteOrder": 5047, + "time": 0.7196299046204808, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2825,11 +2825,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5478, - "time": 0.7813124678736649, + "noteOrder": 5095, + "time": 0.7264835227597236, "position": { "x": 3, "y": 0 @@ -2848,13 +2848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5622, - "time": 0.801873322291393, + "noteOrder": 5119, + "time": 0.729910331829345, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2871,13 +2871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5670, - "time": 0.8087269404306358, + "noteOrder": 5119, + "time": 0.729910331829345, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2889,18 +2889,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 5814, - "time": 0.8292877948483638, + "noteOrder": 5143, + "time": 0.7333371408989663, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2917,11 +2917,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5862, - "time": 0.8361414129876064, + "noteOrder": 5167, + "time": 0.7367639499685876, "position": { "x": 3, "y": 0 @@ -2935,18 +2935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5910, - "time": 0.842995031126849, + "noteOrder": 5167, + "time": 0.7367639499685876, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2963,11 +2963,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5958, - "time": 0.8498486492660917, + "noteOrder": 5191, + "time": 0.7401907590382089, "position": { "x": 3, "y": 0 @@ -2986,13 +2986,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6006, - "time": 0.8567022674053344, + "noteOrder": 5240, + "time": 0.7470443771774516, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3004,18 +3004,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6054, - "time": 0.8635558855445771, + "noteOrder": 5288, + "time": 0.7538979953166943, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3027,18 +3027,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6199, - "time": 0.8841167399623052, + "noteOrder": 5312, + "time": 0.7573248043863157, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3050,18 +3050,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6247, - "time": 0.8909703581015478, + "noteOrder": 5312, + "time": 0.7573248043863157, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3078,11 +3078,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6295, - "time": 0.8978239762407905, + "noteOrder": 5336, + "time": 0.7607516134559369, "position": { "x": 7, "y": 0 @@ -3101,11 +3101,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6343, - "time": 0.9046775943800331, + "noteOrder": 5360, + "time": 0.7641784225255583, "position": { "x": 7, "y": 0 @@ -3119,15 +3119,705 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5360, + "time": 0.7641784225255583, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5384, + "time": 0.7676052315951797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5432, + "time": 0.7744588497344224, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5480, + "time": 0.7813124678736649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5624, + "time": 0.801873322291393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5672, + "time": 0.8087269404306358, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5816, + "time": 0.8292877948483638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5864, + "time": 0.8361414129876064, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5888, + "time": 0.8395682220572277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5888, + "time": 0.8395682220572277, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5913, + "time": 0.842995031126849, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5937, + "time": 0.8464218401964704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5937, + "time": 0.8464218401964704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5961, + "time": 0.8498486492660918, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5985, + "time": 0.8532754583357132, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5985, + "time": 0.8532754583357132, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6009, + "time": 0.8567022674053344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6033, + "time": 0.8601290764749557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6033, + "time": 0.8601290764749557, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6057, + "time": 0.8635558855445771, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6201, + "time": 0.8841167399623051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6249, + "time": 0.8909703581015479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6273, + "time": 0.8943971671711691, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6273, + "time": 0.8943971671711691, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6297, + "time": 0.8978239762407905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6321, + "time": 0.9012507853104118, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6321, + "time": 0.9012507853104118, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6345, + "time": 0.9046775943800331, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6369, + "time": 0.9081044034496545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6369, + "time": 0.9081044034496545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6391, + "noteOrder": 6393, "time": 0.9115312125192758, "position": { "x": 7, @@ -3146,11 +3836,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6417, + "time": 0.9149580215888972, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6417, + "time": 0.9149580215888972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6439, + "noteOrder": 6441, "time": 0.9183848306585185, "position": { "x": 7, @@ -3171,9 +3907,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6583, + "noteOrder": 6585, "time": 0.9389456850762465, "position": { "x": 4, diff --git a/tracks/MOVE! (We Keep It Movin')/info.json b/tracks/MOVE! (We Keep It Movin')/info.json index 4913dd8c..52a66f18 100644 --- a/tracks/MOVE! (We Keep It Movin')/info.json +++ b/tracks/MOVE! (We Keep It Movin')/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "MOVE! (We Keep It Movin')", - "SongLength": "133.433469", + "SongLength": "123.480816", "SongAuthorName": "Jonny Dynamite!,Lisa - paint with stars -,Rio Hiiragi by BEMANI Sound Team \"U1-ASAMi\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Make That Body/352_difficulty_1a.json b/tracks/Make That Body/352_difficulty_1a.json index 9a348224..020b8d78 100644 --- a/tracks/Make That Body/352_difficulty_1a.json +++ b/tracks/Make That Body/352_difficulty_1a.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 216, + "noteOrder": 217, "time": 0.030005000833472247, "position": { "x": 6, @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.033338889814969165, "position": { "x": 7, @@ -94,7 +94,7 @@ }, { "noteOrder": 337, - "time": 0.046674445740956826, + "time": 0.04667444574095683, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 409, - "time": 0.056676112685447574, + "time": 0.05667611268544758, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.08668111351891983, "position": { "x": 3, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 649, - "time": 0.09001500250041675, + "noteOrder": 650, + "time": 0.09001500250041673, "position": { "x": 4, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 698, "time": 0.09668278046341057, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.10001666944490749, "position": { "x": 7, @@ -334,7 +334,7 @@ }, { "noteOrder": 818, - "time": 0.11335222537089515, + "time": 0.11335222537089516, "position": { "x": 2, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 998, - "time": 0.13835639273212205, + "time": 0.13835639273212202, "position": { "x": 5, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1010, - "time": 0.1400233372228705, + "time": 0.14002333722287047, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1046, - "time": 0.1450241706951159, + "noteOrder": 1047, + "time": 0.14502417069511586, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1094, - "time": 0.1516919486581097, + "noteOrder": 1095, + "time": 0.15169194865810967, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.16002667111185198, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1166, - "time": 0.16169361560260045, + "noteOrder": 1167, + "time": 0.16169361560260043, "position": { "x": 5, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.1633605600933489, "position": { "x": 2, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1190, + "noteOrder": 1191, "time": 0.16502750458409737, "position": { "x": 5, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.16669444907484582, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 1239, - "time": 0.1716952825470912, + "time": 0.17169528254709118, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1287, - "time": 0.17836306051008505, + "time": 0.17836306051008502, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1371, - "time": 0.19003167194532425, + "time": 0.19003167194532422, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1419, - "time": 0.19669944990831809, + "time": 0.19669944990831806, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.21670278379729957, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1611, - "time": 0.2233705617602934, + "noteOrder": 1612, + "time": 0.22337056176029338, "position": { "x": 5, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1852, - "time": 0.2567094515752626, + "time": 0.25670945157526254, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1864, + "noteOrder": 1865, "time": 0.25837639606601104, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1876, - "time": 0.2600433405567595, + "noteOrder": 1877, + "time": 0.26004334055675943, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1888, - "time": 0.261710285047508, + "noteOrder": 1889, + "time": 0.26171028504750793, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1894, - "time": 0.2625437572928822, + "noteOrder": 1895, + "time": 0.26254375729288215, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1996, - "time": 0.2767127854642441, + "noteOrder": 1997, + "time": 0.27671278546424405, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2008, - "time": 0.2783797299549925, + "noteOrder": 2009, + "time": 0.27837972995499255, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2092, - "time": 0.2900483413902318, + "noteOrder": 2093, + "time": 0.2900483413902317, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2104, + "noteOrder": 2105, "time": 0.29171528588098017, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2140, + "noteOrder": 2141, "time": 0.29671611935322556, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.3000500083347225, + "noteOrder": 2165, + "time": 0.30005000833472245, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.3033838973162194, + "noteOrder": 2189, + "time": 0.30338389731621934, "position": { "x": 5, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2333, - "time": 0.3233872312052009, + "noteOrder": 2334, + "time": 0.32338723120520085, "position": { "x": 5, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.3267211201866978, "position": { "x": 2, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2381, + "noteOrder": 2382, "time": 0.33005500916819475, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2405, + "noteOrder": 2406, "time": 0.33338889814969164, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2417, + "noteOrder": 2418, "time": 0.3350558426404401, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2423, + "noteOrder": 2424, "time": 0.3358893148858143, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2429, - "time": 0.3367227871311886, + "noteOrder": 2430, + "time": 0.33672278713118853, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.33838973162193703, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.3400566761126855, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.3400566761126855, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2465, - "time": 0.341723620603434, + "noteOrder": 2466, + "time": 0.3417236206034339, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2465, - "time": 0.341723620603434, + "noteOrder": 2466, + "time": 0.3417236206034339, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2477, - "time": 0.3433905650941824, + "noteOrder": 2478, + "time": 0.34339056509418237, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2477, - "time": 0.3433905650941824, + "noteOrder": 2478, + "time": 0.34339056509418237, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.35339223203867315, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.3550591765294216, + "noteOrder": 2562, + "time": 0.35505917652942154, "position": { "x": 5, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2669, - "time": 0.37006167694615777, + "noteOrder": 2670, + "time": 0.3700616769461577, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2766, - "time": 0.38339723287214544, + "noteOrder": 2767, + "time": 0.3833972328721454, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2778, + "noteOrder": 2779, "time": 0.38506417736289383, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2838, - "time": 0.39339889981663617, + "noteOrder": 2839, + "time": 0.3933988998166361, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.3950658443073846, + "noteOrder": 2851, + "time": 0.39506584430738456, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.39673278879813306, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2875, "time": 0.3983997332888815, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2898, - "time": 0.4017336222703784, + "noteOrder": 2899, + "time": 0.40173362227037845, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2922, + "noteOrder": 2923, "time": 0.40506751125187535, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2946, - "time": 0.4084014002333723, + "noteOrder": 2947, + "time": 0.40840140023337224, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3030, + "noteOrder": 3031, "time": 0.42007001166861146, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3042, - "time": 0.42173695615935997, + "noteOrder": 3043, + "time": 0.4217369561593599, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3054, - "time": 0.4234039006501084, + "noteOrder": 3055, + "time": 0.42340390065010836, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3102, - "time": 0.4300716786131022, + "noteOrder": 3104, + "time": 0.43007167861310225, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3150, - "time": 0.4367394565760961, + "noteOrder": 3152, + "time": 0.43673945657609603, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3319, - "time": 0.4600766794465745, + "noteOrder": 3320, + "time": 0.46007667944657443, "position": { "x": 8, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3331, + "noteOrder": 3332, "time": 0.46174362393732293, "position": { "x": 5, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3343, - "time": 0.46341056842807143, + "noteOrder": 3344, + "time": 0.4634105684280714, "position": { "x": 8, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3355, - "time": 0.4650775129188199, + "noteOrder": 3356, + "time": 0.4650775129188198, "position": { "x": 5, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3367, + "noteOrder": 3368, "time": 0.46674445740956827, "position": { "x": 2, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3379, + "noteOrder": 3380, "time": 0.46841140190031677, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3511, + "noteOrder": 3513, "time": 0.4867477912985498, "position": { "x": 2, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3523, - "time": 0.4884147357892983, + "noteOrder": 3525, + "time": 0.4884147357892982, "position": { "x": 5, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3535, - "time": 0.4900816802800467, + "noteOrder": 3537, + "time": 0.49008168028004667, "position": { "x": 2, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3547, - "time": 0.49174862477079523, + "noteOrder": 3549, + "time": 0.4917486247707952, "position": { "x": 5, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3561, "time": 0.4934155692615436, "position": { "x": 8, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3571, + "noteOrder": 3573, "time": 0.49508251375229206, "position": { "x": 5, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.5134189031505252, + "noteOrder": 3705, + "time": 0.5134189031505251, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3716, - "time": 0.5150858476412736, + "noteOrder": 3717, + "time": 0.5150858476412735, "position": { "x": 5, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3728, + "noteOrder": 3729, "time": 0.5167527921320221, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3740, + "noteOrder": 3741, "time": 0.5184197366227705, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.520086681113519, + "noteOrder": 3753, + "time": 0.5200866811135189, "position": { "x": 3, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3764, + "noteOrder": 3765, "time": 0.5217536256042674, "position": { "x": 5, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3800, - "time": 0.5267544590765127, + "noteOrder": 3801, + "time": 0.5267544590765129, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3825, "time": 0.5300883480580096, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3896, + "noteOrder": 3897, "time": 0.5400900150025004, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3908, + "noteOrder": 3909, "time": 0.541756959493249, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3920, - "time": 0.5434239039839974, + "noteOrder": 3921, + "time": 0.5434239039839973, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3932, - "time": 0.5450908484747459, + "noteOrder": 3934, + "time": 0.5450908484747458, "position": { "x": 5, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3944, + "noteOrder": 3946, "time": 0.5467577929654943, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 3958, "time": 0.5484247374562428, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3962, + "noteOrder": 3964, "time": 0.549258209701617, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3968, + "noteOrder": 3970, "time": 0.5500916819469912, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3980, - "time": 0.5517586264377398, + "noteOrder": 3982, + "time": 0.5517586264377397, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3992, - "time": 0.5534255709284882, + "noteOrder": 3994, + "time": 0.5534255709284881, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3992, - "time": 0.5534255709284882, + "noteOrder": 3994, + "time": 0.5534255709284881, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.5550925154192365, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.5550925154192365, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4016, - "time": 0.556759459909985, + "noteOrder": 4018, + "time": 0.5567594599099851, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4016, - "time": 0.556759459909985, + "noteOrder": 4018, + "time": 0.5567594599099851, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.560093348891482, + "noteOrder": 4042, + "time": 0.5600933488914819, "position": { "x": 5, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4064, + "noteOrder": 4066, "time": 0.5634272378729789, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4088, - "time": 0.5667611268544758, + "noteOrder": 4090, + "time": 0.5667611268544759, "position": { "x": 7, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4197, + "noteOrder": 4198, "time": 0.5817636272712119, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4209, + "noteOrder": 4210, "time": 0.5834305717619603, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4221, + "noteOrder": 4222, "time": 0.5850975162527088, "position": { "x": 8, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4233, + "noteOrder": 4234, "time": 0.5867644607434572, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4257, + "noteOrder": 4258, "time": 0.5900983497249542, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4281, + "noteOrder": 4282, "time": 0.5934322387064511, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4449, - "time": 0.6167694615769296, + "noteOrder": 4451, + "time": 0.6167694615769295, "position": { "x": 5, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4497, + "noteOrder": 4499, "time": 0.6234372395399234, "position": { "x": 5, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4547, "time": 0.6301050175029173, "position": { "x": 5, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4571, "time": 0.6334389064844141, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4593, + "noteOrder": 4595, "time": 0.636772795465911, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4834, + "noteOrder": 4836, "time": 0.6701116852808802, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 4884, "time": 0.6767794632438741, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.7067844640773463, "position": { "x": 3, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5111, + "noteOrder": 5112, "time": 0.7084514085680947, "position": { "x": 4, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5123, - "time": 0.7101183530588432, + "noteOrder": 5124, + "time": 0.7101183530588431, "position": { "x": 6, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5135, - "time": 0.7117852975495917, + "noteOrder": 5136, + "time": 0.7117852975495916, "position": { "x": 7, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5147, - "time": 0.7134522420403402, + "noteOrder": 5148, + "time": 0.7134522420403401, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.7151191865310886, + "noteOrder": 5160, + "time": 0.7151191865310885, "position": { "x": 4, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5171, - "time": 0.716786131021837, + "noteOrder": 5173, + "time": 0.7167861310218371, "position": { "x": 3, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.7184530755125854, "position": { "x": 6, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5339, - "time": 0.7401233538923155, + "noteOrder": 5341, + "time": 0.7401233538923154, "position": { "x": 3, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5351, - "time": 0.741790298383064, + "noteOrder": 5353, + "time": 0.7417902983830639, "position": { "x": 7, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5435, + "noteOrder": 5437, "time": 0.7534589098183031, "position": { "x": 3, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5459, - "time": 0.7567927987998, + "noteOrder": 5461, + "time": 0.7567927987998001, "position": { "x": 3, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5507, + "noteOrder": 5509, "time": 0.7634605767627939, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5555, + "noteOrder": 5557, "time": 0.7701283547257877, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5604, - "time": 0.7767961326887816, + "noteOrder": 5606, + "time": 0.7767961326887814, "position": { "x": 5, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5628, + "noteOrder": 5630, "time": 0.7801300216702785, "position": { "x": 3, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5676, - "time": 0.7867977996332723, + "noteOrder": 5678, + "time": 0.7867977996332722, "position": { "x": 4, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5700, - "time": 0.7901316886147692, + "noteOrder": 5702, + "time": 0.7901316886147691, "position": { "x": 7, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5724, + "noteOrder": 5726, "time": 0.7934655775962661, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5736, - "time": 0.7951325220870147, + "noteOrder": 5738, + "time": 0.7951325220870146, "position": { "x": 6, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5820, - "time": 0.8068011335222538, + "noteOrder": 5822, + "time": 0.8068011335222537, "position": { "x": 7, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5844, + "noteOrder": 5846, "time": 0.8101350225037507, "position": { "x": 7, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5892, - "time": 0.8168028004667446, + "noteOrder": 5894, + "time": 0.8168028004667445, "position": { "x": 3, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5940, - "time": 0.8234705784297385, + "noteOrder": 5942, + "time": 0.8234705784297384, "position": { "x": 7, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5988, + "noteOrder": 5991, "time": 0.8301383563927321, "position": { "x": 5, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6012, + "noteOrder": 6015, "time": 0.8334722453742291, "position": { "x": 7, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6036, - "time": 0.836806134355726, + "noteOrder": 6039, + "time": 0.8368061343557259, "position": { "x": 3, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6060, + "noteOrder": 6063, "time": 0.8401400233372229, "position": { "x": 2, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6072, + "noteOrder": 6075, "time": 0.8418069678279714, "position": { "x": 5, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6078, + "noteOrder": 6081, "time": 0.8426404400733456, "position": { "x": 3, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6085, - "time": 0.8434739123187199, + "noteOrder": 6087, + "time": 0.8434739123187198, "position": { "x": 6, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6097, - "time": 0.8451408568094684, + "noteOrder": 6099, + "time": 0.8451408568094683, "position": { "x": 4, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6109, - "time": 0.8468078013002168, + "noteOrder": 6111, + "time": 0.8468078013002167, "position": { "x": 3, "y": 0 @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6109, - "time": 0.8468078013002168, + "noteOrder": 6111, + "time": 0.8468078013002167, "position": { "x": 7, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.8484747457909653, + "noteOrder": 6123, + "time": 0.8484747457909652, "position": { "x": 4, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.8484747457909653, + "noteOrder": 6123, + "time": 0.8484747457909652, "position": { "x": 6, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6133, + "noteOrder": 6135, "time": 0.8501416902817137, "position": { "x": 3, @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6133, + "noteOrder": 6135, "time": 0.8501416902817137, "position": { "x": 7, @@ -3453,8 +3453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6205, - "time": 0.8601433572262044, + "noteOrder": 6207, + "time": 0.8601433572262045, "position": { "x": 6, "y": 0 @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6217, - "time": 0.8618103017169529, + "noteOrder": 6219, + "time": 0.8618103017169528, "position": { "x": 4, "y": 0 @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6277, + "noteOrder": 6279, "time": 0.8701450241706952, "position": { "x": 7, @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6301, - "time": 0.8734789131521922, + "noteOrder": 6303, + "time": 0.8734789131521921, "position": { "x": 3, "y": 0 @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6313, + "noteOrder": 6315, "time": 0.8751458576429406, "position": { "x": 5, @@ -3553,8 +3553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6325, - "time": 0.8768128021336891, + "noteOrder": 6327, + "time": 0.876812802133689, "position": { "x": 7, "y": 0 @@ -3573,7 +3573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6337, + "noteOrder": 6339, "time": 0.8784797466244374, "position": { "x": 5, @@ -3593,7 +3593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6373, + "noteOrder": 6375, "time": 0.8834805800966828, "position": { "x": 3, @@ -3613,7 +3613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6397, + "noteOrder": 6399, "time": 0.8868144690781797, "position": { "x": 7, @@ -3633,7 +3633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6409, + "noteOrder": 6412, "time": 0.8884814135689282, "position": { "x": 5, @@ -3653,7 +3653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6421, + "noteOrder": 6424, "time": 0.8901483580596767, "position": { "x": 3, @@ -3673,7 +3673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6433, + "noteOrder": 6436, "time": 0.8918153025504252, "position": { "x": 5, @@ -3693,7 +3693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6457, + "noteOrder": 6460, "time": 0.8951491915319221, "position": { "x": 3, @@ -3713,8 +3713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6481, - "time": 0.8984830805134191, + "noteOrder": 6484, + "time": 0.898483080513419, "position": { "x": 6, "y": 0 @@ -3733,8 +3733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6505, - "time": 0.901816969494916, + "noteOrder": 6508, + "time": 0.9018169694949159, "position": { "x": 3, "y": 0 @@ -3753,7 +3753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6532, "time": 0.9051508584764127, "position": { "x": 6, @@ -3773,8 +3773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6565, - "time": 0.9101516919486582, + "noteOrder": 6568, + "time": 0.9101516919486581, "position": { "x": 3, "y": 0 @@ -3793,7 +3793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6578, + "noteOrder": 6580, "time": 0.9118186364394066, "position": { "x": 5, @@ -3813,7 +3813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6614, + "noteOrder": 6616, "time": 0.916819469911652, "position": { "x": 7, @@ -3833,8 +3833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6626, - "time": 0.9184864144024005, + "noteOrder": 6628, + "time": 0.9184864144024004, "position": { "x": 5, "y": 0 @@ -3853,8 +3853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6686, - "time": 0.9268211368561429, + "noteOrder": 6688, + "time": 0.9268211368561428, "position": { "x": 4, "y": 0 @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6698, - "time": 0.9284880813468913, + "noteOrder": 6700, + "time": 0.9284880813468912, "position": { "x": 6, "y": 0 @@ -3893,7 +3893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6806, + "noteOrder": 6808, "time": 0.9434905817636273, "position": { "x": 5, @@ -3913,7 +3913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6818, + "noteOrder": 6821, "time": 0.9451575262543758, "position": { "x": 5, @@ -3936,10 +3936,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02667111185197533, + "time": 0.026671111851975328, "position": { "x": 3, "y": 0 @@ -3959,9 +3959,9 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 240, + "noteOrder": 241, "time": 0.033338889814969165, "position": { "x": 6, @@ -3982,7 +3982,7 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 265, "time": 0.03667277879646608, @@ -4005,7 +4005,7 @@ }, { "lineGroupId": 2, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 289, "time": 0.040006667777962995, @@ -4028,7 +4028,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.040006667777962995, @@ -4051,10 +4051,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, - "time": 0.046674445740956826, + "time": 0.04667444574095683, "position": { "x": 4, "y": 0 @@ -4074,7 +4074,7 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 361, "time": 0.050008334722453744, @@ -4097,10 +4097,10 @@ }, { "lineGroupId": 6, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 385, - "time": 0.05334222370395066, + "time": 0.053342223703950656, "position": { "x": 4, "y": 0 @@ -4120,10 +4120,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, - "time": 0.05334222370395066, + "time": 0.053342223703950656, "position": { "x": 3, "y": 0 @@ -4143,12 +4143,12 @@ }, { "lineGroupId": 10, - "indexInLine": 3, + "indexInLine": 2, "isSliding": false, - "noteOrder": 433, - "time": 0.06001000166694449, + "noteOrder": 397, + "time": 0.05500916819469912, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4166,12 +4166,12 @@ }, { "lineGroupId": 10, - "indexInLine": 4, + "indexInLine": 3, "isSliding": false, - "noteOrder": 481, - "time": 0.06667777962993833, + "noteOrder": 397, + "time": 0.05500916819469912, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4188,13 +4188,13 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 4, "isSliding": false, - "noteOrder": 481, - "time": 0.06667777962993833, + "noteOrder": 409, + "time": 0.05667611268544758, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4206,18 +4206,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 5, "isSliding": false, - "noteOrder": 505, - "time": 0.07001166861143525, + "noteOrder": 409, + "time": 0.05667611268544758, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4234,13 +4234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 6, "isSliding": false, - "noteOrder": 529, - "time": 0.07334555759293215, + "noteOrder": 433, + "time": 0.06001000166694449, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4252,18 +4252,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 7, "isSliding": false, - "noteOrder": 553, - "time": 0.07667944657442907, + "noteOrder": 481, + "time": 0.06667777962993833, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4280,13 +4280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, - "time": 0.08001333555592599, + "noteOrder": 481, + "time": 0.06667777962993833, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4303,13 +4303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 625, - "time": 0.08668111351891983, + "noteOrder": 493, + "time": 0.06834472412068679, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4326,13 +4326,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 2, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 649, - "time": 0.09001500250041675, + "noteOrder": 493, + "time": 0.06834472412068679, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4349,13 +4349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 3, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.09334889148191365, + "noteOrder": 505, + "time": 0.07001166861143523, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4367,18 +4367,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 673, - "time": 0.09334889148191365, + "noteOrder": 517, + "time": 0.07167861310218371, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4395,13 +4395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 1, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 721, - "time": 0.10001666944490749, + "noteOrder": 517, + "time": 0.07167861310218371, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4418,13 +4418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 2, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 746, - "time": 0.1033505584264044, + "noteOrder": 529, + "time": 0.07334555759293215, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4436,16 +4436,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 3, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 770, - "time": 0.10668444740790133, + "noteOrder": 541, + "time": 0.07501250208368061, "position": { "x": 6, "y": 0 @@ -4459,18 +4459,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 770, - "time": 0.10668444740790133, + "noteOrder": 541, + "time": 0.07501250208368061, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4487,13 +4487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 3, + "lineGroupId": 17, + "indexInLine": 1, "isSliding": false, - "noteOrder": 818, - "time": 0.11335222537089515, + "noteOrder": 553, + "time": 0.07667944657442909, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4505,18 +4505,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 4, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 866, - "time": 0.12002000333388899, + "noteOrder": 565, + "time": 0.07834639106517753, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4528,16 +4528,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 866, - "time": 0.12002000333388899, + "noteOrder": 565, + "time": 0.07834639106517753, "position": { "x": 4, "y": 0 @@ -4556,13 +4556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 890, - "time": 0.1233538923153859, + "noteOrder": 577, + "time": 0.08001333555592599, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4579,11 +4579,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 914, - "time": 0.12668778129688282, + "noteOrder": 626, + "time": 0.08668111351891983, "position": { "x": 4, "y": 0 @@ -4597,18 +4597,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 938, - "time": 0.13002167027837974, + "noteOrder": 650, + "time": 0.09001500250041673, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4625,13 +4625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1034, - "time": 0.14335722620436742, + "noteOrder": 674, + "time": 0.09334889148191367, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4648,11 +4648,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 22, "indexInLine": 1, "isSliding": false, - "noteOrder": 1046, - "time": 0.1450241706951159, + "noteOrder": 674, + "time": 0.09334889148191367, "position": { "x": 3, "y": 0 @@ -4666,18 +4666,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 22, "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, - "time": 0.1466911151858643, + "noteOrder": 722, + "time": 0.10001666944490749, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4689,18 +4689,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1082, - "time": 0.15002500416736125, + "noteOrder": 746, + "time": 0.1033505584264044, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4717,13 +4717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1094, - "time": 0.1516919486581097, + "noteOrder": 770, + "time": 0.10668444740790131, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4740,13 +4740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 2, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1106, - "time": 0.15335889314885814, + "noteOrder": 770, + "time": 0.10668444740790131, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4758,16 +4758,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1227, - "time": 0.17002833805634274, + "noteOrder": 782, + "time": 0.10835139189864978, "position": { "x": 7, "y": 0 @@ -4781,18 +4781,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1239, - "time": 0.1716952825470912, + "noteOrder": 782, + "time": 0.10835139189864978, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4804,18 +4804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 2, + "lineGroupId": 26, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1251, - "time": 0.17336222703783966, + "noteOrder": 794, + "time": 0.11001833638939824, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4827,16 +4827,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1275, - "time": 0.17669611601933657, + "noteOrder": 794, + "time": 0.11001833638939824, "position": { "x": 3, "y": 0 @@ -4855,11 +4855,6980 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 26, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 818, + "time": 0.11335222537089516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 866, + "time": 0.12002000333388899, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 866, + "time": 0.12002000333388899, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 878, + "time": 0.12168694782463745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 878, + "time": 0.12168694782463745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 890, + "time": 0.1233538923153859, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 902, + "time": 0.12502083680613438, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 902, + "time": 0.12502083680613438, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 914, + "time": 0.12668778129688282, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 926, + "time": 0.12835472578763127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 926, + "time": 0.12835472578763127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 938, + "time": 0.13002167027837971, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 950, + "time": 0.13168861476912821, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 950, + "time": 0.13168861476912821, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1035, + "time": 0.14335722620436742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1047, + "time": 0.14502417069511586, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1059, + "time": 0.1466911151858643, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1083, + "time": 0.15002500416736123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1095, + "time": 0.15169194865810967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1107, + "time": 0.15335889314885817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1227, + "time": 0.17002833805634274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1239, + "time": 0.17169528254709118, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1251, + "time": 0.17336222703783966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1275, + "time": 0.17669611601933657, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1287, + "time": 0.17836306051008502, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1299, + "time": 0.18003000500083347, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1347, + "time": 0.18669778296382733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1359, + "time": 0.18836472745457578, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1359, + "time": 0.18836472745457578, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1371, + "time": 0.19003167194532422, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1371, + "time": 0.19003167194532422, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1395, + "time": 0.19336556092682114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1407, + "time": 0.1950325054175696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1407, + "time": 0.1950325054175696, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1419, + "time": 0.19669944990831806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1419, + "time": 0.19669944990831806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.20003333888981498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1456, + "time": 0.20170028338056342, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1456, + "time": 0.20170028338056342, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2033672278713119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2033672278713119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.20003333888981498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1456, + "time": 0.20170028338056342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1456, + "time": 0.20170028338056342, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2033672278713119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2033672278713119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2067011168528088, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2083680613435573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2083680613435573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1516, + "time": 0.21003500583430573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1516, + "time": 0.21003500583430573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2067011168528088, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2083680613435573, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2083680613435573, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1516, + "time": 0.21003500583430573, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1516, + "time": 0.21003500583430573, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.22670445074179033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1648, + "time": 0.22837139523253877, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1648, + "time": 0.22837139523253877, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1660, + "time": 0.23003833972328722, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1660, + "time": 0.23003833972328722, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1660, + "time": 0.23003833972328722, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1672, + "time": 0.2317052842140357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1672, + "time": 0.2317052842140357, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1684, + "time": 0.23337222870478413, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1684, + "time": 0.23337222870478413, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1684, + "time": 0.23337222870478413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1696, + "time": 0.23503917319553258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1696, + "time": 0.23503917319553258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1708, + "time": 0.23670611768628108, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1708, + "time": 0.23670611768628108, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1708, + "time": 0.23670611768628108, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1720, + "time": 0.23837306217702953, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1720, + "time": 0.23837306217702953, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.24004000666777797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.25004167361226876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.24004000666777797, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.25004167361226876, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1925, + "time": 0.2667111185197533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1937, + "time": 0.26837806301050177, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1937, + "time": 0.26837806301050177, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1949, + "time": 0.2700450075012502, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1949, + "time": 0.2700450075012502, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1949, + "time": 0.2700450075012502, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1961, + "time": 0.27171195199199866, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1961, + "time": 0.27171195199199866, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1973, + "time": 0.27337889648274716, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1973, + "time": 0.27337889648274716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1973, + "time": 0.27337889648274716, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1985, + "time": 0.2750458409734956, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1985, + "time": 0.2750458409734956, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1997, + "time": 0.27671278546424405, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1997, + "time": 0.27671278546424405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2021, + "time": 0.28004667444574094, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2033, + "time": 0.28171361893648944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2033, + "time": 0.28171361893648944, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2045, + "time": 0.28338056342723794, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2045, + "time": 0.28338056342723794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2045, + "time": 0.28338056342723794, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2057, + "time": 0.28504750791798633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2057, + "time": 0.28504750791798633, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2069, + "time": 0.28671445240873483, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2069, + "time": 0.28671445240873483, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2069, + "time": 0.28671445240873483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2081, + "time": 0.2883813968994832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2081, + "time": 0.2883813968994832, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2093, + "time": 0.2900483413902317, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2093, + "time": 0.2900483413902317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2117, + "time": 0.2933822303717286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.29671611935322556, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2165, + "time": 0.30005000833472245, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2189, + "time": 0.30338389731621934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.30671778629771634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2225, + "time": 0.30838473078846473, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2225, + "time": 0.30838473078846473, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2237, + "time": 0.31005167527921323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.31005167527921323, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3117186197699617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3117186197699617, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2261, + "time": 0.3133855642607101, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2261, + "time": 0.3133855642607101, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2274, + "time": 0.3150525087514586, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2274, + "time": 0.3150525087514586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2286, + "time": 0.31671945324220707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2286, + "time": 0.31671945324220707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2298, + "time": 0.3183863977329555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2298, + "time": 0.3183863977329555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2310, + "time": 0.32005334222370396, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2310, + "time": 0.32005334222370396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2334, + "time": 0.32338723120520085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2406, + "time": 0.33338889814969164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2502, + "time": 0.3467244540756793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2550, + "time": 0.35339223203867315, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.36006001000166693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2610, + "time": 0.36172695449241543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2610, + "time": 0.36172695449241543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2622, + "time": 0.3633938989831639, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2622, + "time": 0.3633938989831639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2622, + "time": 0.3633938989831639, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2634, + "time": 0.3650608434739123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2634, + "time": 0.3650608434739123, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2646, + "time": 0.3667277879646608, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2646, + "time": 0.3667277879646608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.3667277879646608, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.36839473245540927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2658, + "time": 0.36839473245540927, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2670, + "time": 0.3700616769461577, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2670, + "time": 0.3700616769461577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2695, + "time": 0.37339556592765466, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2707, + "time": 0.37506251041840305, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2707, + "time": 0.37506251041840305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2719, + "time": 0.37672945490915155, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2719, + "time": 0.37672945490915155, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2719, + "time": 0.37672945490915155, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2731, + "time": 0.37839639939990005, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2731, + "time": 0.37839639939990005, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2743, + "time": 0.38006334389064844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2743, + "time": 0.38006334389064844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2743, + "time": 0.38006334389064844, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2755, + "time": 0.38173028838139694, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2755, + "time": 0.38173028838139694, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2767, + "time": 0.3833972328721454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2767, + "time": 0.3833972328721454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2791, + "time": 0.3867311218536423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3883980663443907, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3883980663443907, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2815, + "time": 0.3900650108351392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2827, + "time": 0.39173195532588767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2827, + "time": 0.39173195532588767, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2887, + "time": 0.40006667777962995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2899, + "time": 0.40173362227037845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2911, + "time": 0.40340056676112684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2923, + "time": 0.40506751125187535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2935, + "time": 0.4067344557426238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2947, + "time": 0.40840140023337224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2959, + "time": 0.41006834472412074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2983, + "time": 0.4134022337056176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2995, + "time": 0.4150691781963661, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2995, + "time": 0.4150691781963661, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4167361226871146, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4167361226871146, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4167361226871146, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3019, + "time": 0.41840306717786296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3019, + "time": 0.41840306717786296, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3031, + "time": 0.42007001166861146, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3031, + "time": 0.42007001166861146, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3079, + "time": 0.42673778963160525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3128, + "time": 0.43340556759459914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3128, + "time": 0.43340556759459914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3176, + "time": 0.440073345557593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3176, + "time": 0.440073345557593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3188, + "time": 0.4417402900483414, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3188, + "time": 0.4417402900483414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3200, + "time": 0.44340723453908987, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3200, + "time": 0.44340723453908987, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3200, + "time": 0.44340723453908987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3212, + "time": 0.44507417902983837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3212, + "time": 0.44507417902983837, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3224, + "time": 0.44674112352058676, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3224, + "time": 0.44674112352058676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3236, + "time": 0.44840806801133526, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3236, + "time": 0.44840806801133526, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3248, + "time": 0.4500750125020837, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3248, + "time": 0.4500750125020837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.44674112352058676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3236, + "time": 0.44840806801133526, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3236, + "time": 0.44840806801133526, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3248, + "time": 0.4500750125020837, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3248, + "time": 0.4500750125020837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3392, + "time": 0.47007834639106516, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3404, + "time": 0.47174529088181366, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3404, + "time": 0.47174529088181366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3416, + "time": 0.47341223537256216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3428, + "time": 0.47507917986331055, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3428, + "time": 0.47507917986331055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3440, + "time": 0.47674612435405905, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3452, + "time": 0.4784130688448075, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3452, + "time": 0.4784130688448075, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3585, + "time": 0.49674945824304056, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3597, + "time": 0.49841640273378895, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3597, + "time": 0.49841640273378895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3609, + "time": 0.5000833472245375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3621, + "time": 0.501750291715286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3621, + "time": 0.501750291715286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3633, + "time": 0.5034172362060344, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3645, + "time": 0.5050841806967827, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3645, + "time": 0.5050841806967827, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3777, + "time": 0.5234205700950159, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3789, + "time": 0.5250875145857643, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3789, + "time": 0.5250875145857643, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3801, + "time": 0.5267544590765129, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3801, + "time": 0.5267544590765129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3813, + "time": 0.5284214035672612, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3813, + "time": 0.5284214035672612, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3825, + "time": 0.5300883480580096, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3825, + "time": 0.5300883480580096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3837, + "time": 0.5317552925487582, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3837, + "time": 0.5317552925487582, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4114, + "time": 0.5700950158359727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4186, + "time": 0.5800966827804634, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4306, + "time": 0.596766127687948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4355, + "time": 0.6034339056509419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4403, + "time": 0.6101016836139357, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4427, + "time": 0.6134355725954327, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4475, + "time": 0.6201033505584265, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4475, + "time": 0.6201033505584265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4523, + "time": 0.6267711285214203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4523, + "time": 0.6267711285214203, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4595, + "time": 0.636772795465911, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4619, + "time": 0.6401066844474079, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4631, + "time": 0.6417736289381564, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4631, + "time": 0.6417736289381564, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4643, + "time": 0.6434405734289048, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4655, + "time": 0.6451075179196534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4655, + "time": 0.6451075179196534, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4667, + "time": 0.6467744624104017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4715, + "time": 0.6534422403733956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4691, + "time": 0.6501083513918987, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4715, + "time": 0.6534422403733956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4764, + "time": 0.6601100183363895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4788, + "time": 0.6634439073178863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4764, + "time": 0.6601100183363895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4788, + "time": 0.6634439073178863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4812, + "time": 0.6667777962993833, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4824, + "time": 0.6684447407901317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4824, + "time": 0.6684447407901317, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6701116852808802, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6701116852808802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4860, + "time": 0.6734455742623771, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4872, + "time": 0.6751125187531256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4872, + "time": 0.6751125187531256, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4884, + "time": 0.6767794632438741, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4884, + "time": 0.6767794632438741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4908, + "time": 0.680113352225371, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6817802967161194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6817802967161194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4932, + "time": 0.6834472412068678, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4932, + "time": 0.6834472412068678, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4908, + "time": 0.680113352225371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6817802967161194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6817802967161194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4932, + "time": 0.6834472412068678, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4932, + "time": 0.6834472412068678, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4956, + "time": 0.6867811301883647, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6884480746791132, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6884480746791132, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4980, + "time": 0.6901150191698617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4980, + "time": 0.6901150191698617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4956, + "time": 0.6867811301883647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6884480746791132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6884480746791132, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4980, + "time": 0.6901150191698617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4980, + "time": 0.6901150191698617, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5004, + "time": 0.6934489081513586, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5016, + "time": 0.6951158526421071, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5016, + "time": 0.6951158526421071, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5028, + "time": 0.6967827971328555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5028, + "time": 0.6967827971328555, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5028, + "time": 0.6967827971328555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5040, + "time": 0.698449741623604, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5040, + "time": 0.698449741623604, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5052, + "time": 0.7001166861143525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5052, + "time": 0.7001166861143525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 256, "indexInLine": 1, "isSliding": false, - "noteOrder": 1287, - "time": 0.17836306051008505, + "noteOrder": 5052, + "time": 0.7001166861143525, "position": { "x": 3, "y": 0 @@ -4878,13 +11847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 256, "indexInLine": 2, "isSliding": false, - "noteOrder": 1299, - "time": 0.1800300050008335, + "noteOrder": 5064, + "time": 0.701783630605101, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4901,13 +11870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1347, - "time": 0.1866977829638273, + "noteOrder": 5064, + "time": 0.701783630605101, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4919,18 +11888,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1395, - "time": 0.19336556092682114, + "noteOrder": 5076, + "time": 0.7034505750958493, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4947,13 +11916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1443, - "time": 0.20003333888981498, + "noteOrder": 5076, + "time": 0.7034505750958493, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4970,13 +11939,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1443, - "time": 0.20003333888981498, + "noteOrder": 5076, + "time": 0.7034505750958493, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4993,13 +11962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1491, - "time": 0.2067011168528088, + "noteOrder": 5088, + "time": 0.7051175195865977, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5016,11 +11985,34 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1491, - "time": 0.2067011168528088, + "noteOrder": 5088, + "time": 0.7051175195865977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5389, + "time": 0.7467911318553093, "position": { "x": 6, "y": 0 @@ -5039,13 +12031,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.2267044507417903, + "noteOrder": 5401, + "time": 0.7484580763460578, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5062,13 +12054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1659, - "time": 0.23003833972328724, + "noteOrder": 5401, + "time": 0.7484580763460578, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5080,18 +12072,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1683, - "time": 0.23337222870478413, + "noteOrder": 5413, + "time": 0.7501250208368061, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5108,13 +12100,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1708, - "time": 0.23670611768628108, + "noteOrder": 5413, + "time": 0.7501250208368061, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5131,13 +12123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1732, - "time": 0.24004000666777797, + "noteOrder": 5425, + "time": 0.7517919653275547, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5149,16 +12141,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 277, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5425, + "time": 0.7517919653275547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, "indexInLine": 1, "isSliding": false, - "noteOrder": 1804, - "time": 0.2500416736122687, + "noteOrder": 5437, + "time": 0.7534589098183031, "position": { "x": 7, "y": 0 @@ -5177,13 +12192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1732, - "time": 0.24004000666777797, + "noteOrder": 5449, + "time": 0.7551258543090515, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5195,18 +12210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 279, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1804, - "time": 0.2500416736122687, + "noteOrder": 5449, + "time": 0.7551258543090515, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5218,18 +12233,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1924, - "time": 0.2667111185197533, + "noteOrder": 5461, + "time": 0.7567927987998001, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5241,18 +12256,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1948, - "time": 0.2700450075012502, + "noteOrder": 5473, + "time": 0.7584597432905484, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5269,13 +12284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1972, - "time": 0.27337889648274716, + "noteOrder": 5473, + "time": 0.7584597432905484, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5287,18 +12302,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2020, - "time": 0.280046674445741, + "noteOrder": 5485, + "time": 0.7601266877812969, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5315,13 +12330,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2044, - "time": 0.2833805634272379, + "noteOrder": 5485, + "time": 0.7601266877812969, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5333,16 +12348,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2068, - "time": 0.28671445240873483, + "noteOrder": 5485, + "time": 0.7601266877812969, "position": { "x": 7, "y": 0 @@ -5356,16 +12371,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2116, - "time": 0.2933822303717286, + "noteOrder": 5497, + "time": 0.7617936322720454, "position": { "x": 7, "y": 0 @@ -5384,11 +12399,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 282, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2140, - "time": 0.29671611935322556, + "noteOrder": 5497, + "time": 0.7617936322720454, "position": { "x": 5, "y": 0 @@ -5407,11 +12422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 282, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2164, - "time": 0.3000500083347225, + "noteOrder": 5509, + "time": 0.7634605767627939, "position": { "x": 5, "y": 0 @@ -5430,11 +12445,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 3, + "lineGroupId": 282, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2188, - "time": 0.3033838973162194, + "noteOrder": 5509, + "time": 0.7634605767627939, "position": { "x": 3, "y": 0 @@ -5453,11 +12468,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2213, - "time": 0.3067177862977163, + "noteOrder": 5521, + "time": 0.7651275212535423, "position": { "x": 3, "y": 0 @@ -5471,16 +12486,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 282, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2237, - "time": 0.31005167527921323, + "noteOrder": 5521, + "time": 0.7651275212535423, "position": { "x": 5, "y": 0 @@ -5494,18 +12509,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2237, - "time": 0.31005167527921323, + "noteOrder": 5533, + "time": 0.7667944657442908, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5522,13 +12537,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 282, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2261, - "time": 0.3133855642607102, + "noteOrder": 5533, + "time": 0.7667944657442908, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5545,13 +12560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2261, - "time": 0.3133855642607102, + "noteOrder": 5533, + "time": 0.7667944657442908, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5568,13 +12583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 284, "indexInLine": 2, "isSliding": false, - "noteOrder": 2285, - "time": 0.31671945324220707, + "noteOrder": 5545, + "time": 0.7684614102350392, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5591,13 +12606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2285, - "time": 0.31671945324220707, + "noteOrder": 5545, + "time": 0.7684614102350392, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5609,16 +12624,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 2, + "lineGroupId": 284, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2309, - "time": 0.32005334222370396, + "noteOrder": 5557, + "time": 0.7701283547257877, "position": { "x": 5, "y": 0 @@ -5632,18 +12647,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2309, - "time": 0.32005334222370396, + "noteOrder": 5557, + "time": 0.7701283547257877, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5660,13 +12675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2333, - "time": 0.3233872312052009, + "noteOrder": 5569, + "time": 0.7717952992165361, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5683,13 +12698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 2, + "lineGroupId": 284, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2405, - "time": 0.33338889814969164, + "noteOrder": 5569, + "time": 0.7717952992165361, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5706,13 +12721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2501, - "time": 0.3467244540756793, + "noteOrder": 5582, + "time": 0.7734622437072846, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5724,18 +12739,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2549, - "time": 0.35339223203867315, + "noteOrder": 5582, + "time": 0.7734622437072846, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5747,18 +12762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2597, - "time": 0.360060010001667, + "noteOrder": 5582, + "time": 0.7734622437072846, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5770,18 +12785,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2621, - "time": 0.3633938989831639, + "noteOrder": 5654, + "time": 0.7834639106517753, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5798,11 +12813,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2645, - "time": 0.3667277879646608, + "noteOrder": 5654, + "time": 0.7834639106517753, "position": { "x": 7, "y": 0 @@ -5821,13 +12836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2694, - "time": 0.3733955659276546, + "noteOrder": 5726, + "time": 0.7934655775962661, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5839,18 +12854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2718, - "time": 0.37672945490915155, + "noteOrder": 5774, + "time": 0.8001333555592599, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5862,18 +12877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2742, - "time": 0.3800633438906485, + "noteOrder": 5786, + "time": 0.8018003000500084, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5890,13 +12905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2790, - "time": 0.3867311218536423, + "noteOrder": 5786, + "time": 0.8018003000500084, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5908,18 +12923,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2814, - "time": 0.3900650108351392, + "noteOrder": 5798, + "time": 0.8034672445407569, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5936,13 +12951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2886, - "time": 0.40006667777962995, + "noteOrder": 5798, + "time": 0.8034672445407569, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5954,18 +12969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 296, "indexInLine": 1, "isSliding": false, - "noteOrder": 2898, - "time": 0.4017336222703784, + "noteOrder": 5798, + "time": 0.8034672445407569, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5982,13 +12997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 296, "indexInLine": 2, "isSliding": false, - "noteOrder": 2910, - "time": 0.4034005667611269, + "noteOrder": 5810, + "time": 0.8051341890315052, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6005,13 +13020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 296, "indexInLine": 3, "isSliding": false, - "noteOrder": 2922, - "time": 0.40506751125187535, + "noteOrder": 5810, + "time": 0.8051341890315052, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6028,11 +13043,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 4, + "lineGroupId": 297, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2934, - "time": 0.4067344557426238, + "noteOrder": 5822, + "time": 0.8068011335222537, "position": { "x": 3, "y": 0 @@ -6046,16 +13061,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 5, + "lineGroupId": 297, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2946, - "time": 0.4084014002333723, + "noteOrder": 5834, + "time": 0.8084680780130022, "position": { "x": 3, "y": 0 @@ -6069,18 +13084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 6, + "lineGroupId": 297, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2958, - "time": 0.41006834472412074, + "noteOrder": 5834, + "time": 0.8084680780130022, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6092,16 +13107,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2982, - "time": 0.4134022337056176, + "noteOrder": 5846, + "time": 0.8101350225037507, "position": { "x": 3, "y": 0 @@ -6120,11 +13135,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3006, - "time": 0.4167361226871146, + "noteOrder": 5858, + "time": 0.8118019669944991, "position": { "x": 3, "y": 0 @@ -6138,16 +13153,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3078, - "time": 0.4267377896316053, + "noteOrder": 5858, + "time": 0.8118019669944991, "position": { "x": 5, "y": 0 @@ -6161,16 +13176,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 300, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3126, - "time": 0.43340556759459914, + "noteOrder": 5870, + "time": 0.8134689114852476, "position": { "x": 5, "y": 0 @@ -6184,18 +13199,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3126, - "time": 0.43340556759459914, + "noteOrder": 5870, + "time": 0.8134689114852476, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6212,13 +13227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 301, "indexInLine": 1, "isSliding": false, - "noteOrder": 3175, - "time": 0.440073345557593, + "noteOrder": 5870, + "time": 0.8134689114852476, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6230,18 +13245,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3175, - "time": 0.440073345557593, + "noteOrder": 5882, + "time": 0.815135855975996, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6258,13 +13273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3199, - "time": 0.44340723453908987, + "noteOrder": 5882, + "time": 0.815135855975996, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6276,18 +13291,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3223, - "time": 0.4467411235205868, + "noteOrder": 5894, + "time": 0.8168028004667445, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6304,13 +13319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3391, - "time": 0.4700783463910652, + "noteOrder": 5894, + "time": 0.8168028004667445, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6327,13 +13342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3415, - "time": 0.47341223537256216, + "noteOrder": 5906, + "time": 0.818469744957493, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6345,18 +13360,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3439, - "time": 0.47674612435405905, + "noteOrder": 5906, + "time": 0.818469744957493, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6373,13 +13388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3583, - "time": 0.49674945824304056, + "noteOrder": 5918, + "time": 0.8201366894482415, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6391,18 +13406,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3607, - "time": 0.5000833472245374, + "noteOrder": 5918, + "time": 0.8201366894482415, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6419,13 +13434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3631, - "time": 0.5034172362060344, + "noteOrder": 5918, + "time": 0.8201366894482415, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6442,13 +13457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3776, - "time": 0.523420570095016, + "noteOrder": 5930, + "time": 0.8218036339389898, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6460,18 +13475,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4112, - "time": 0.5700950158359728, + "noteOrder": 5930, + "time": 0.8218036339389898, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6488,11 +13503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 1, + "lineGroupId": 303, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4185, - "time": 0.5800966827804636, + "noteOrder": 5942, + "time": 0.8234705784297384, "position": { "x": 5, "y": 0 @@ -6511,13 +13526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4305, - "time": 0.596766127687948, + "noteOrder": 5942, + "time": 0.8234705784297384, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6529,18 +13544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 303, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4353, - "time": 0.6034339056509419, + "noteOrder": 5954, + "time": 0.8251375229204868, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6552,18 +13567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 2, + "lineGroupId": 303, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4401, - "time": 0.6101016836139357, + "noteOrder": 5954, + "time": 0.8251375229204868, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6575,18 +13590,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4425, - "time": 0.6134355725954326, + "noteOrder": 5966, + "time": 0.8268044674112353, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6603,11 +13618,11 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 1, + "lineGroupId": 303, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4473, - "time": 0.6201033505584265, + "noteOrder": 5966, + "time": 0.8268044674112353, "position": { "x": 3, "y": 0 @@ -6626,11 +13641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4473, - "time": 0.6201033505584265, + "noteOrder": 5966, + "time": 0.8268044674112353, "position": { "x": 7, "y": 0 @@ -6649,13 +13664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 305, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4521, - "time": 0.6267711285214204, + "noteOrder": 6063, + "time": 0.8401400233372229, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6672,13 +13687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.6267711285214204, + "noteOrder": 6255, + "time": 0.8668111351891983, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6690,18 +13705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 326, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4593, - "time": 0.636772795465911, + "noteOrder": 6267, + "time": 0.8684780796799466, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6713,18 +13728,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4617, - "time": 0.6401066844474079, + "noteOrder": 6267, + "time": 0.8684780796799466, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6741,13 +13756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4642, - "time": 0.6434405734289048, + "noteOrder": 6279, + "time": 0.8701450241706952, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6759,18 +13774,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4666, - "time": 0.6467744624104018, + "noteOrder": 6279, + "time": 0.8701450241706952, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6787,13 +13802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 1, + "lineGroupId": 326, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4714, - "time": 0.6534422403733956, + "noteOrder": 6291, + "time": 0.8718119686614436, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6810,13 +13825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4690, - "time": 0.6501083513918987, + "noteOrder": 6291, + "time": 0.8718119686614436, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6828,18 +13843,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 1, + "lineGroupId": 326, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4714, - "time": 0.6534422403733956, + "noteOrder": 6303, + "time": 0.8734789131521921, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6851,18 +13866,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4762, - "time": 0.6601100183363895, + "noteOrder": 6303, + "time": 0.8734789131521921, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6879,13 +13894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, + "lineGroupId": 332, "indexInLine": 1, "isSliding": false, - "noteOrder": 4786, - "time": 0.6634439073178864, + "noteOrder": 6351, + "time": 0.880146691115186, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6897,18 +13912,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4762, - "time": 0.6601100183363895, + "noteOrder": 6363, + "time": 0.8818136356059344, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6925,13 +13940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 1, + "lineGroupId": 332, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4786, - "time": 0.6634439073178864, + "noteOrder": 6363, + "time": 0.8818136356059344, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6948,13 +13963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4810, - "time": 0.6667777962993833, + "noteOrder": 6375, + "time": 0.8834805800966828, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6971,11 +13986,11 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4858, - "time": 0.6734455742623772, + "noteOrder": 6375, + "time": 0.8834805800966828, "position": { "x": 7, "y": 0 @@ -6989,18 +14004,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4906, - "time": 0.680113352225371, + "noteOrder": 6387, + "time": 0.8851475245874313, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7017,13 +14032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4906, - "time": 0.680113352225371, + "noteOrder": 6387, + "time": 0.8851475245874313, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7035,18 +14050,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4954, - "time": 0.6867811301883648, + "noteOrder": 6399, + "time": 0.8868144690781797, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7063,13 +14078,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 332, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4954, - "time": 0.6867811301883648, + "noteOrder": 6399, + "time": 0.8868144690781797, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7081,18 +14096,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5002, - "time": 0.6934489081513586, + "noteOrder": 6448, + "time": 0.8934822470411735, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7109,13 +14124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5026, - "time": 0.6967827971328555, + "noteOrder": 6460, + "time": 0.8951491915319221, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7127,16 +14142,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5050, - "time": 0.7001166861143524, + "noteOrder": 6472, + "time": 0.8968161360226705, "position": { "x": 3, "y": 0 @@ -7155,13 +14170,13 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5074, - "time": 0.7034505750958494, + "noteOrder": 6484, + "time": 0.898483080513419, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7173,16 +14188,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 276, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5387, - "time": 0.7467911318553092, + "noteOrder": 6496, + "time": 0.9001500250041674, "position": { "x": 6, "y": 0 @@ -7201,11 +14216,11 @@ "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5411, - "time": 0.7501250208368062, + "noteOrder": 6508, + "time": 0.9018169694949159, "position": { "x": 6, "y": 0 @@ -7219,18 +14234,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5435, - "time": 0.7534589098183031, + "noteOrder": 6520, + "time": 0.9034839139856643, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7247,13 +14262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5459, - "time": 0.7567927987998, + "noteOrder": 6532, + "time": 0.9051508584764127, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7270,13 +14285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 338, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5483, - "time": 0.760126687781297, + "noteOrder": 6544, + "time": 0.9068178029671613, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7288,18 +14303,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 284, - "indexInLine": 0, + "lineGroupId": 343, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5531, - "time": 0.7667944657442909, + "noteOrder": 6544, + "time": 0.9068178029671613, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7311,16 +14326,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 0, + "lineGroupId": 343, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5579, - "time": 0.7734622437072846, + "noteOrder": 6556, + "time": 0.9084847474579096, "position": { "x": 3, "y": 0 @@ -7339,13 +14354,13 @@ "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 1, + "lineGroupId": 343, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5652, - "time": 0.7834639106517753, + "noteOrder": 6556, + "time": 0.9084847474579096, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7362,13 +14377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 343, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5652, - "time": 0.7834639106517753, + "noteOrder": 6568, + "time": 0.9101516919486581, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7380,18 +14395,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 1, + "lineGroupId": 343, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5724, - "time": 0.7934655775962661, + "noteOrder": 6568, + "time": 0.9101516919486581, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7403,18 +14418,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 0, + "lineGroupId": 346, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5772, - "time": 0.8001333555592599, + "noteOrder": 6592, + "time": 0.9134855809301551, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7426,18 +14441,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 296, - "indexInLine": 0, + "lineGroupId": 346, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5796, - "time": 0.8034672445407568, + "noteOrder": 6604, + "time": 0.9151525254209035, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7454,13 +14469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 0, + "lineGroupId": 346, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5820, - "time": 0.8068011335222538, + "noteOrder": 6604, + "time": 0.9151525254209035, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7472,18 +14487,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 346, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5844, - "time": 0.8101350225037507, + "noteOrder": 6616, + "time": 0.916819469911652, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7495,16 +14510,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 346, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5868, - "time": 0.8134689114852476, + "noteOrder": 6616, + "time": 0.916819469911652, "position": { "x": 3, "y": 0 @@ -7523,11 +14538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 303, - "indexInLine": 0, + "lineGroupId": 349, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5916, - "time": 0.8201366894482415, + "noteOrder": 6640, + "time": 0.9201533588931489, "position": { "x": 3, "y": 0 @@ -7546,13 +14561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 305, - "indexInLine": 0, + "lineGroupId": 349, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5964, - "time": 0.8268044674112353, + "noteOrder": 6652, + "time": 0.9218203033838974, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7564,18 +14579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 305, - "indexInLine": 1, + "lineGroupId": 349, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6060, - "time": 0.8401400233372229, + "noteOrder": 6664, + "time": 0.9234872478746459, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7587,16 +14602,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 326, - "indexInLine": 0, + "lineGroupId": 350, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6253, - "time": 0.8668111351891983, + "noteOrder": 6664, + "time": 0.9234872478746459, "position": { "x": 7, "y": 0 @@ -7615,13 +14630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 332, - "indexInLine": 0, + "lineGroupId": 350, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6349, - "time": 0.880146691115186, + "noteOrder": 6676, + "time": 0.9251541923653942, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7633,18 +14648,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 0, + "lineGroupId": 350, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6445, - "time": 0.8934822470411736, + "noteOrder": 6688, + "time": 0.9268211368561428, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7661,13 +14676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 338, + "lineGroupId": 354, "indexInLine": 1, "isSliding": false, - "noteOrder": 6457, - "time": 0.8951491915319221, + "noteOrder": 6736, + "time": 0.9334889148191365, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7684,13 +14699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 338, + "lineGroupId": 354, "indexInLine": 2, "isSliding": false, - "noteOrder": 6469, - "time": 0.8968161360226705, + "noteOrder": 6754, + "time": 0.9359893315552592, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7707,11 +14722,11 @@ "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 3, + "lineGroupId": 356, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6481, - "time": 0.8984830805134191, + "noteOrder": 6772, + "time": 0.938489748291382, "position": { "x": 3, "y": 0 @@ -7725,18 +14740,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 4, + "lineGroupId": 356, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6493, - "time": 0.9001500250041675, + "noteOrder": 6790, + "time": 0.9409901650275047, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7748,18 +14763,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 5, + "lineGroupId": 360, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6505, - "time": 0.901816969494916, + "noteOrder": 6833, + "time": 0.9468244707451243, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7776,13 +14791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 6, + "lineGroupId": 360, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6517, - "time": 0.9034839139856644, + "noteOrder": 6845, + "time": 0.9484914152358727, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7799,13 +14814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 7, + "lineGroupId": 360, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6529, - "time": 0.9051508584764127, + "noteOrder": 6845, + "time": 0.9484914152358727, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7822,13 +14837,13 @@ "isPlayAudio": false }, { - "lineGroupId": 338, - "indexInLine": 8, + "lineGroupId": 360, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6541, - "time": 0.9068178029671612, + "noteOrder": 6857, + "time": 0.9501583597266211, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7845,13 +14860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 343, - "indexInLine": 0, + "lineGroupId": 360, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6541, - "time": 0.9068178029671612, + "noteOrder": 6857, + "time": 0.9501583597266211, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7863,18 +14878,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 346, - "indexInLine": 0, + "lineGroupId": 361, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6590, - "time": 0.9134855809301551, + "noteOrder": 6857, + "time": 0.9501583597266211, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7886,16 +14901,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 349, - "indexInLine": 0, + "lineGroupId": 361, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6638, - "time": 0.920153358893149, + "noteOrder": 6869, + "time": 0.9518253042173697, "position": { "x": 3, "y": 0 @@ -7914,13 +14929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 349, - "indexInLine": 1, + "lineGroupId": 361, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6650, - "time": 0.9218203033838974, + "noteOrder": 6869, + "time": 0.9518253042173697, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7937,13 +14952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 349, - "indexInLine": 2, + "lineGroupId": 361, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6662, - "time": 0.9234872478746459, + "noteOrder": 6881, + "time": 0.9534922487081181, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7960,13 +14975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 350, - "indexInLine": 0, + "lineGroupId": 361, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6662, - "time": 0.9234872478746459, + "noteOrder": 6881, + "time": 0.9534922487081181, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7978,18 +14993,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 350, - "indexInLine": 1, + "lineGroupId": 361, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6674, - "time": 0.9251541923653943, + "noteOrder": 6893, + "time": 0.9551591931988666, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -8001,18 +15016,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 350, - "indexInLine": 2, + "lineGroupId": 361, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6686, - "time": 0.9268211368561429, + "noteOrder": 6893, + "time": 0.9551591931988666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -8024,18 +15039,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 354, - "indexInLine": 0, + "lineGroupId": 361, + "indexInLine": 8, "isSliding": false, - "noteOrder": 6734, - "time": 0.9334889148191365, + "noteOrder": 6905, + "time": 0.956826137689615, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -8047,18 +15062,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 354, - "indexInLine": 1, + "lineGroupId": 361, + "indexInLine": 9, "isSliding": false, - "noteOrder": 6752, - "time": 0.9359893315552593, + "noteOrder": 6905, + "time": 0.956826137689615, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -8070,18 +15085,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 356, - "indexInLine": 0, + "lineGroupId": 362, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6770, - "time": 0.938489748291382, + "noteOrder": 6881, + "time": 0.9534922487081181, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -8093,18 +15108,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 356, - "indexInLine": 1, + "lineGroupId": 362, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6788, - "time": 0.9409901650275048, + "noteOrder": 6893, + "time": 0.9551591931988666, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -8116,18 +15131,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 360, - "indexInLine": 0, + "lineGroupId": 362, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6830, - "time": 0.9468244707451243, + "noteOrder": 6893, + "time": 0.9551591931988666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -8144,13 +15159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 361, - "indexInLine": 0, + "lineGroupId": 362, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6854, - "time": 0.9501583597266212, + "noteOrder": 6905, + "time": 0.956826137689615, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -8162,16 +15177,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 362, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6878, - "time": 0.9534922487081181, + "noteOrder": 6905, + "time": 0.956826137689615, "position": { "x": 7, "y": 0 @@ -8191,9 +15206,9 @@ }, { "lineGroupId": 364, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6926, + "noteOrder": 6929, "time": 0.9601600266711119, "position": { "x": 7, @@ -8214,9 +15229,9 @@ }, { "lineGroupId": 364, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7022, + "noteOrder": 7025, "time": 0.9734955825970996, "position": { "x": 7, @@ -8237,9 +15252,9 @@ }, { "lineGroupId": 365, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6926, + "noteOrder": 6929, "time": 0.9601600266711119, "position": { "x": 3, @@ -8260,9 +15275,9 @@ }, { "lineGroupId": 365, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7022, + "noteOrder": 7025, "time": 0.9734955825970996, "position": { "x": 3, diff --git a/tracks/Make That Body/352_difficulty_1b.json b/tracks/Make That Body/352_difficulty_1b.json index 7f5e2aba..43eda91d 100644 --- a/tracks/Make That Body/352_difficulty_1b.json +++ b/tracks/Make That Body/352_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 216, + "noteOrder": 217, "time": 0.030005000833472247, "position": { "x": 4, @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.033338889814969165, "position": { "x": 8, @@ -94,7 +94,7 @@ }, { "noteOrder": 337, - "time": 0.046674445740956826, + "time": 0.04667444574095683, "position": { "x": 2, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 409, - "time": 0.056676112685447574, + "time": 0.05667611268544758, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 505, - "time": 0.07001166861143525, + "time": 0.07001166861143523, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 553, - "time": 0.07667944657442907, + "time": 0.07667944657442909, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.08668111351891983, "position": { "x": 2, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 649, - "time": 0.09001500250041675, + "noteOrder": 650, + "time": 0.09001500250041673, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 698, "time": 0.09668278046341057, "position": { "x": 4, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.10001666944490749, "position": { "x": 8, @@ -374,7 +374,7 @@ }, { "noteOrder": 818, - "time": 0.11335222537089515, + "time": 0.11335222537089516, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 938, - "time": 0.13002167027837974, + "time": 0.13002167027837971, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1010, - "time": 0.1400233372228705, + "time": 0.14002333722287047, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1035, "time": 0.14335722620436742, "position": { "x": 2, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1082, - "time": 0.15002500416736125, + "noteOrder": 1083, + "time": 0.15002500416736123, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1106, - "time": 0.15335889314885814, + "noteOrder": 1107, + "time": 0.15335889314885817, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.16002667111185198, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1178, + "noteOrder": 1179, "time": 0.1633605600933489, "position": { "x": 2, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.16669444907484582, "position": { "x": 6, @@ -674,7 +674,7 @@ }, { "noteOrder": 1299, - "time": 0.1800300050008335, + "time": 0.18003000500083347, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1347, - "time": 0.1866977829638273, + "time": 0.18669778296382733, "position": { "x": 8, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1491, + "noteOrder": 1492, "time": 0.2067011168528088, "position": { "x": 2, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1539, - "time": 0.21336889481580265, + "noteOrder": 1540, + "time": 0.21336889481580262, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1563, + "noteOrder": 1564, "time": 0.21670278379729957, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.2200366727787965, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1611, - "time": 0.2233705617602934, + "noteOrder": 1612, + "time": 0.22337056176029338, "position": { "x": 5, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1852, - "time": 0.2567094515752626, + "time": 0.25670945157526254, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1876, - "time": 0.2600433405567595, + "noteOrder": 1877, + "time": 0.26004334055675943, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1888, - "time": 0.261710285047508, + "noteOrder": 1889, + "time": 0.26171028504750793, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1924, + "noteOrder": 1925, "time": 0.2667111185197533, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1924, + "noteOrder": 1925, "time": 0.2667111185197533, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1948, + "noteOrder": 1949, "time": 0.2700450075012502, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1948, + "noteOrder": 1949, "time": 0.2700450075012502, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2020, - "time": 0.280046674445741, + "noteOrder": 2021, + "time": 0.28004667444574094, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2044, - "time": 0.2833805634272379, + "noteOrder": 2045, + "time": 0.28338056342723794, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2140, + "noteOrder": 2141, "time": 0.29671611935322556, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.3000500083347225, + "noteOrder": 2165, + "time": 0.30005000833472245, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.3033838973162194, + "noteOrder": 2189, + "time": 0.30338389731621934, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2285, + "noteOrder": 2286, "time": 0.31671945324220707, "position": { "x": 2, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2333, - "time": 0.3233872312052009, + "noteOrder": 2334, + "time": 0.32338723120520085, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.3267211201866978, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2381, + "noteOrder": 2382, "time": 0.33005500916819475, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2405, + "noteOrder": 2406, "time": 0.33338889814969164, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2429, - "time": 0.3367227871311886, + "noteOrder": 2430, + "time": 0.33672278713118853, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.3400566761126855, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2465, - "time": 0.341723620603434, + "noteOrder": 2466, + "time": 0.3417236206034339, "position": { "x": 5, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2597, - "time": 0.360060010001667, + "noteOrder": 2598, + "time": 0.36006001000166693, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2597, - "time": 0.360060010001667, + "noteOrder": 2598, + "time": 0.36006001000166693, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2621, + "noteOrder": 2622, "time": 0.3633938989831639, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2621, + "noteOrder": 2622, "time": 0.3633938989831639, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2694, - "time": 0.3733955659276546, + "noteOrder": 2695, + "time": 0.37339556592765466, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.37672945490915155, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2790, + "noteOrder": 2791, "time": 0.3867311218536423, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2814, + "noteOrder": 2815, "time": 0.3900650108351392, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2910, - "time": 0.4034005667611269, + "noteOrder": 2911, + "time": 0.40340056676112684, "position": { "x": 5, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2958, + "noteOrder": 2959, "time": 0.41006834472412074, "position": { "x": 5, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3054, - "time": 0.4234039006501084, + "noteOrder": 3055, + "time": 0.42340390065010836, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3175, + "noteOrder": 3176, "time": 0.440073345557593, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3199, + "noteOrder": 3200, "time": 0.44340723453908987, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3223, - "time": 0.4467411235205868, + "noteOrder": 3224, + "time": 0.44674112352058676, "position": { "x": 3, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3235, + "noteOrder": 3236, "time": 0.44840806801133526, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3247, - "time": 0.45007501250208376, + "noteOrder": 3248, + "time": 0.4500750125020837, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3367, + "noteOrder": 3368, "time": 0.46674445740956827, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.4700783463910652, + "noteOrder": 3392, + "time": 0.47007834639106516, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3415, + "noteOrder": 3416, "time": 0.47341223537256216, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3439, + "noteOrder": 3440, "time": 0.47674612435405905, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3439, + "noteOrder": 3440, "time": 0.47674612435405905, "position": { "x": 8, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3561, "time": 0.4934155692615436, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.49674945824304056, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3607, - "time": 0.5000833472245374, + "noteOrder": 3609, + "time": 0.5000833472245375, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3631, + "noteOrder": 3633, "time": 0.5034172362060344, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3631, + "noteOrder": 3633, "time": 0.5034172362060344, "position": { "x": 2, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.520086681113519, + "noteOrder": 3753, + "time": 0.5200866811135189, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3776, - "time": 0.523420570095016, + "noteOrder": 3777, + "time": 0.5234205700950159, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3800, - "time": 0.5267544590765127, + "noteOrder": 3801, + "time": 0.5267544590765129, "position": { "x": 5, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3825, "time": 0.5300883480580096, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3944, + "noteOrder": 3946, "time": 0.5467577929654943, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3968, + "noteOrder": 3970, "time": 0.5500916819469912, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3992, - "time": 0.5534255709284882, + "noteOrder": 3994, + "time": 0.5534255709284881, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4004, + "noteOrder": 4006, "time": 0.5550925154192365, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.560093348891482, + "noteOrder": 4042, + "time": 0.5600933488914819, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4064, + "noteOrder": 4066, "time": 0.5634272378729789, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4088, - "time": 0.5667611268544758, + "noteOrder": 4090, + "time": 0.5667611268544759, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4233, + "noteOrder": 4234, "time": 0.5867644607434572, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4257, + "noteOrder": 4258, "time": 0.5900983497249542, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4281, + "noteOrder": 4282, "time": 0.5934322387064511, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4449, - "time": 0.6167694615769296, + "noteOrder": 4451, + "time": 0.6167694615769295, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4497, + "noteOrder": 4499, "time": 0.6234372395399234, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4547, "time": 0.6301050175029173, "position": { "x": 8, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4593, + "noteOrder": 4595, "time": 0.636772795465911, "position": { "x": 2, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4617, + "noteOrder": 4619, "time": 0.6401066844474079, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4642, + "noteOrder": 4643, "time": 0.6434405734289048, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4666, - "time": 0.6467744624104018, + "noteOrder": 4667, + "time": 0.6467744624104017, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4690, + "noteOrder": 4691, "time": 0.6501083513918987, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4810, + "noteOrder": 4812, "time": 0.6667777962993833, "position": { "x": 5, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4858, - "time": 0.6734455742623772, + "noteOrder": 4860, + "time": 0.6734455742623771, "position": { "x": 3, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 4908, "time": 0.680113352225371, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4954, - "time": 0.6867811301883648, + "noteOrder": 4956, + "time": 0.6867811301883647, "position": { "x": 7, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5026, + "noteOrder": 5028, "time": 0.6967827971328555, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5050, - "time": 0.7001166861143524, + "noteOrder": 5052, + "time": 0.7001166861143525, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5074, - "time": 0.7034505750958494, + "noteOrder": 5076, + "time": 0.7034505750958493, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.7067844640773463, "position": { "x": 2, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5111, + "noteOrder": 5112, "time": 0.7084514085680947, "position": { "x": 6, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5123, - "time": 0.7101183530588432, + "noteOrder": 5124, + "time": 0.7101183530588431, "position": { "x": 3, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5135, - "time": 0.7117852975495917, + "noteOrder": 5136, + "time": 0.7117852975495916, "position": { "x": 6, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5147, - "time": 0.7134522420403402, + "noteOrder": 5148, + "time": 0.7134522420403401, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.7151191865310886, + "noteOrder": 5160, + "time": 0.7151191865310885, "position": { "x": 6, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5171, - "time": 0.716786131021837, + "noteOrder": 5173, + "time": 0.7167861310218371, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.7184530755125854, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5435, + "noteOrder": 5437, "time": 0.7534589098183031, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5447, + "noteOrder": 5449, "time": 0.7551258543090515, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5459, - "time": 0.7567927987998, + "noteOrder": 5461, + "time": 0.7567927987998001, "position": { "x": 6, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5531, - "time": 0.7667944657442909, + "noteOrder": 5533, + "time": 0.7667944657442908, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5543, - "time": 0.7684614102350393, + "noteOrder": 5545, + "time": 0.7684614102350392, "position": { "x": 2, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5555, + "noteOrder": 5557, "time": 0.7701283547257877, "position": { "x": 6, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5604, - "time": 0.7767961326887816, + "noteOrder": 5606, + "time": 0.7767961326887814, "position": { "x": 4, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5628, + "noteOrder": 5630, "time": 0.7801300216702785, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5652, + "noteOrder": 5654, "time": 0.7834639106517753, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5676, - "time": 0.7867977996332723, + "noteOrder": 5678, + "time": 0.7867977996332722, "position": { "x": 2, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5700, - "time": 0.7901316886147692, + "noteOrder": 5702, + "time": 0.7901316886147691, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5724, + "noteOrder": 5726, "time": 0.7934655775962661, "position": { "x": 4, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5748, + "noteOrder": 5750, "time": 0.796799466577763, "position": { "x": 6, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5820, - "time": 0.8068011335222538, + "noteOrder": 5822, + "time": 0.8068011335222537, "position": { "x": 3, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5832, + "noteOrder": 5834, "time": 0.8084680780130022, "position": { "x": 6, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5844, + "noteOrder": 5846, "time": 0.8101350225037507, "position": { "x": 4, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5916, + "noteOrder": 5918, "time": 0.8201366894482415, "position": { "x": 4, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5928, - "time": 0.8218036339389899, + "noteOrder": 5930, + "time": 0.8218036339389898, "position": { "x": 8, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5940, - "time": 0.8234705784297385, + "noteOrder": 5942, + "time": 0.8234705784297384, "position": { "x": 4, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5988, + "noteOrder": 5991, "time": 0.8301383563927321, "position": { "x": 6, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6012, + "noteOrder": 6015, "time": 0.8334722453742291, "position": { "x": 6, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6036, - "time": 0.836806134355726, + "noteOrder": 6039, + "time": 0.8368061343557259, "position": { "x": 7, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6060, + "noteOrder": 6063, "time": 0.8401400233372229, "position": { "x": 8, @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6085, - "time": 0.8434739123187199, + "noteOrder": 6087, + "time": 0.8434739123187198, "position": { "x": 6, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6109, - "time": 0.8468078013002168, + "noteOrder": 6111, + "time": 0.8468078013002167, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.8484747457909653, + "noteOrder": 6123, + "time": 0.8484747457909652, "position": { "x": 5, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6301, - "time": 0.8734789131521922, + "noteOrder": 6303, + "time": 0.8734789131521921, "position": { "x": 3, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6313, + "noteOrder": 6315, "time": 0.8751458576429406, "position": { "x": 6, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6325, - "time": 0.8768128021336891, + "noteOrder": 6327, + "time": 0.876812802133689, "position": { "x": 4, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6373, + "noteOrder": 6375, "time": 0.8834805800966828, "position": { "x": 6, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6397, + "noteOrder": 6399, "time": 0.8868144690781797, "position": { "x": 7, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6421, + "noteOrder": 6424, "time": 0.8901483580596767, "position": { "x": 6, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6469, + "noteOrder": 6472, "time": 0.8968161360226705, "position": { "x": 4, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6493, - "time": 0.9001500250041675, + "noteOrder": 6496, + "time": 0.9001500250041674, "position": { "x": 3, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6517, - "time": 0.9034839139856644, + "noteOrder": 6520, + "time": 0.9034839139856643, "position": { "x": 4, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6638, - "time": 0.920153358893149, + "noteOrder": 6640, + "time": 0.9201533588931489, "position": { "x": 3, "y": 0 @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6662, + "noteOrder": 6664, "time": 0.9234872478746459, "position": { "x": 6, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6806, + "noteOrder": 6808, "time": 0.9434905817636273, "position": { "x": 7, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6830, + "noteOrder": 6833, "time": 0.9468244707451243, "position": { "x": 4, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6854, - "time": 0.9501583597266212, + "noteOrder": 6857, + "time": 0.9501583597266211, "position": { "x": 6, "y": 0 @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6878, + "noteOrder": 6881, "time": 0.9534922487081181, "position": { "x": 3, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6890, - "time": 0.9551591931988667, + "noteOrder": 6893, + "time": 0.9551591931988666, "position": { "x": 5, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6902, - "time": 0.9568261376896151, + "noteOrder": 6905, + "time": 0.956826137689615, "position": { "x": 7, "y": 0 @@ -3436,10 +3436,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02667111185197533, + "time": 0.026671111851975328, "position": { "x": 6, "y": 0 @@ -3459,7 +3459,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.040006667777962995, @@ -3482,7 +3482,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.040006667777962995, @@ -3505,10 +3505,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 385, - "time": 0.05334222370395066, + "time": 0.053342223703950656, "position": { "x": 4, "y": 0 @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, - "time": 0.05334222370395066, + "time": 0.053342223703950656, "position": { "x": 7, "y": 0 @@ -3551,7 +3551,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.06001000166694449, @@ -3574,7 +3574,7 @@ }, { "lineGroupId": 10, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 481, "time": 0.06667777962993833, @@ -3597,7 +3597,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.06667777962993833, @@ -3618,9 +3618,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 493, + "time": 0.06834472412068679, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 493, + "time": 0.06834472412068679, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.07334555759293215, @@ -3641,9 +3687,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 16, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 541, + "time": 0.07501250208368061, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 541, + "time": 0.07501250208368061, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.08001333555592599, @@ -3666,10 +3758,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 673, - "time": 0.09334889148191365, + "noteOrder": 674, + "time": 0.09334889148191367, "position": { "x": 4, "y": 0 @@ -3689,10 +3781,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.09334889148191365, + "noteOrder": 674, + "time": 0.09334889148191367, "position": { "x": 6, "y": 0 @@ -3712,10 +3804,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 770, - "time": 0.10668444740790133, + "time": 0.10668444740790131, "position": { "x": 6, "y": 0 @@ -3735,10 +3827,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, - "time": 0.10668444740790133, + "time": 0.10668444740790131, "position": { "x": 3, "y": 0 @@ -3758,10 +3850,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 818, - "time": 0.11335222537089515, + "time": 0.11335222537089516, "position": { "x": 4, "y": 0 @@ -3781,7 +3873,7 @@ }, { "lineGroupId": 26, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 866, "time": 0.12002000333388899, @@ -3804,7 +3896,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 866, "time": 0.12002000333388899, @@ -3825,9 +3917,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 878, + "time": 0.12168694782463745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 878, + "time": 0.12168694782463745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, "time": 0.12668778129688282, @@ -3848,11 +3986,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 926, + "time": 0.12835472578763127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 926, + "time": 0.12835472578763127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1058, + "noteOrder": 1059, "time": 0.1466911151858643, "position": { "x": 3, @@ -3873,10 +4057,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1130, - "time": 0.1566927821303551, + "noteOrder": 1131, + "time": 0.15669278213035506, "position": { "x": 5, "y": 0 @@ -3896,7 +4080,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1251, "time": 0.17336222703783966, @@ -3919,7 +4103,7 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1323, "time": 0.1833638939823304, @@ -3942,10 +4126,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.2267044507417903, + "noteOrder": 1636, + "time": 0.22670445074179033, "position": { "x": 6, "y": 0 @@ -3965,10 +4149,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1659, - "time": 0.23003833972328724, + "noteOrder": 1660, + "time": 0.23003833972328722, "position": { "x": 6, "y": 0 @@ -3988,10 +4172,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1659, - "time": 0.23003833972328724, + "noteOrder": 1660, + "time": 0.23003833972328722, "position": { "x": 4, "y": 0 @@ -4011,9 +4195,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.23337222870478413, "position": { "x": 4, @@ -4034,9 +4218,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.23337222870478413, "position": { "x": 6, @@ -4057,7 +4241,7 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1708, "time": 0.23670611768628108, @@ -4080,7 +4264,7 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1708, "time": 0.23670611768628108, @@ -4103,7 +4287,7 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1732, "time": 0.24004000666777797, @@ -4126,9 +4310,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1972, + "noteOrder": 1973, "time": 0.27337889648274716, "position": { "x": 7, @@ -4148,11 +4332,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1996, - "time": 0.2767127854642441, + "noteOrder": 1985, + "time": 0.2750458409734956, "position": { "x": 7, "y": 0 @@ -4166,16 +4350,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2068, - "time": 0.28671445240873483, + "noteOrder": 1985, + "time": 0.2750458409734956, "position": { "x": 6, "y": 0 @@ -4194,13 +4378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2092, - "time": 0.2900483413902318, + "noteOrder": 1997, + "time": 0.27671278546424405, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4217,13 +4401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2116, - "time": 0.2933822303717286, + "noteOrder": 2009, + "time": 0.27837972995499255, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4235,16 +4419,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2140, - "time": 0.29671611935322556, + "noteOrder": 2009, + "time": 0.27837972995499255, "position": { "x": 6, "y": 0 @@ -4258,18 +4442,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 2, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2213, - "time": 0.3067177862977163, + "noteOrder": 2069, + "time": 0.28671445240873483, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4286,13 +4470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2213, - "time": 0.3067177862977163, + "noteOrder": 2081, + "time": 0.2883813968994832, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4304,16 +4488,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2225, - "time": 0.3083847307884648, + "noteOrder": 2081, + "time": 0.2883813968994832, "position": { "x": 4, "y": 0 @@ -4327,7 +4511,168 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2093, + "time": 0.2900483413902317, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2105, + "time": 0.29171528588098017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2105, + "time": 0.29171528588098017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2117, + "time": 0.2933822303717286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2141, + "time": 0.29671611935322556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2213, + "time": 0.30671778629771634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.30671778629771634, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, @@ -4335,6 +4680,29 @@ "lineGroupId": 91, "indexInLine": 2, "isSliding": false, + "noteOrder": 2225, + "time": 0.30838473078846473, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, "noteOrder": 2237, "time": 0.31005167527921323, "position": { @@ -4356,10 +4724,10 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2261, - "time": 0.3133855642607102, + "time": 0.3133855642607101, "position": { "x": 6, "y": 0 @@ -4379,9 +4747,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2273, + "noteOrder": 2274, "time": 0.3150525087514586, "position": { "x": 5, @@ -4402,9 +4770,9 @@ }, { "lineGroupId": 93, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2285, + "noteOrder": 2286, "time": 0.31671945324220707, "position": { "x": 6, @@ -4425,9 +4793,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2309, + "noteOrder": 2310, "time": 0.32005334222370396, "position": { "x": 4, @@ -4448,9 +4816,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2381, + "noteOrder": 2382, "time": 0.33005500916819475, "position": { "x": 6, @@ -4471,12 +4839,1392 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2502, + "time": 0.3467244540756793, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2550, + "time": 0.35339223203867315, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.3667277879646608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.36839473245540927, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2658, + "time": 0.36839473245540927, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2670, + "time": 0.3700616769461577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2682, + "time": 0.37172862143690616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2682, + "time": 0.37172862143690616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2743, + "time": 0.38006334389064844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2755, + "time": 0.38173028838139694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2755, + "time": 0.38173028838139694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2767, + "time": 0.3833972328721454, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2779, + "time": 0.38506417736289383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2779, + "time": 0.38506417736289383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2839, + "time": 0.3933988998166361, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2851, + "time": 0.39506584430738456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2851, + "time": 0.39506584430738456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2863, + "time": 0.39673278879813306, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2875, + "time": 0.3983997332888815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2875, + "time": 0.3983997332888815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2887, + "time": 0.40006667777962995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2911, + "time": 0.40340056676112684, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2935, + "time": 0.4067344557426238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2959, + "time": 0.41006834472412074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2983, + "time": 0.4134022337056176, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4167361226871146, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4167361226871146, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3031, + "time": 0.42007001166861146, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3031, + "time": 0.42007001166861146, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3055, + "time": 0.42340390065010836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3079, + "time": 0.42673778963160525, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3104, + "time": 0.43007167861310225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3152, + "time": 0.43673945657609603, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3128, + "time": 0.43340556759459914, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3152, + "time": 0.43673945657609603, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3320, + "time": 0.46007667944657443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3332, + "time": 0.46174362393732293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3332, + "time": 0.46174362393732293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3344, + "time": 0.4634105684280714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3356, + "time": 0.4650775129188198, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3356, + "time": 0.4650775129188198, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3513, + "time": 0.4867477912985498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3525, + "time": 0.4884147357892982, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3525, + "time": 0.4884147357892982, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3537, + "time": 0.49008168028004667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3549, + "time": 0.4917486247707952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3549, + "time": 0.4917486247707952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3705, + "time": 0.5134189031505251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3717, + "time": 0.5150858476412735, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3717, + "time": 0.5150858476412735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3729, + "time": 0.5167527921320221, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3741, + "time": 0.5184197366227705, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3741, + "time": 0.5184197366227705, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3897, + "time": 0.5400900150025004, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3909, + "time": 0.541756959493249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3909, + "time": 0.541756959493249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3921, + "time": 0.5434239039839973, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3934, + "time": 0.5450908484747458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3934, + "time": 0.5450908484747458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4114, + "time": 0.5700950158359727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2501, - "time": 0.3467244540756793, + "noteOrder": 4186, + "time": 0.5800966827804634, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4488,18 +6236,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 2549, - "time": 0.35339223203867315, + "noteOrder": 4306, + "time": 0.596766127687948, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4516,13 +6264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2645, - "time": 0.3667277879646608, + "noteOrder": 4379, + "time": 0.6067677946324387, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4539,13 +6287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2669, - "time": 0.37006167694615777, + "noteOrder": 4427, + "time": 0.6134355725954327, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4562,13 +6310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2742, - "time": 0.3800633438906485, + "noteOrder": 4475, + "time": 0.6201033505584265, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4580,16 +6328,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2766, - "time": 0.38339723287214544, + "noteOrder": 4475, + "time": 0.6201033505584265, "position": { "x": 4, "y": 0 @@ -4603,18 +6351,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2838, - "time": 0.39339889981663617, + "noteOrder": 4523, + "time": 0.6267711285214203, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4631,13 +6379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2862, - "time": 0.39673278879813306, + "noteOrder": 4523, + "time": 0.6267711285214203, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4654,13 +6402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2886, - "time": 0.40006667777962995, + "noteOrder": 4571, + "time": 0.6334389064844141, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4672,18 +6420,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 2910, - "time": 0.4034005667611269, + "noteOrder": 4571, + "time": 0.6334389064844141, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4700,13 +6448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2934, - "time": 0.4067344557426238, + "noteOrder": 4619, + "time": 0.6401066844474079, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4718,18 +6466,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 2958, - "time": 0.41006834472412074, + "noteOrder": 4715, + "time": 0.6534422403733956, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4741,16 +6489,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2982, - "time": 0.4134022337056176, + "noteOrder": 4739, + "time": 0.6567761293548925, "position": { "x": 4, "y": 0 @@ -4764,18 +6512,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 3006, - "time": 0.4167361226871146, + "noteOrder": 4715, + "time": 0.6534422403733956, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4792,11 +6540,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3006, - "time": 0.4167361226871146, + "noteOrder": 4739, + "time": 0.6567761293548925, "position": { "x": 6, "y": 0 @@ -4810,18 +6558,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3030, - "time": 0.42007001166861146, + "noteOrder": 4764, + "time": 0.6601100183363895, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4833,18 +6581,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3030, - "time": 0.42007001166861146, + "noteOrder": 4788, + "time": 0.6634439073178863, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4861,13 +6609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 3054, - "time": 0.4234039006501084, + "noteOrder": 4764, + "time": 0.6601100183363895, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4879,16 +6627,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3078, - "time": 0.4267377896316053, + "noteOrder": 4788, + "time": 0.6634439073178863, "position": { "x": 3, "y": 0 @@ -4907,13 +6655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 3102, - "time": 0.4300716786131022, + "noteOrder": 5004, + "time": 0.6934489081513586, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4925,18 +6673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 202, "indexInLine": 2, "isSliding": false, - "noteOrder": 3150, - "time": 0.4367394565760961, + "noteOrder": 5076, + "time": 0.7034505750958493, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4948,18 +6696,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3126, - "time": 0.43340556759459914, + "noteOrder": 5389, + "time": 0.7467911318553093, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4976,13 +6724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3150, - "time": 0.4367394565760961, + "noteOrder": 5401, + "time": 0.7484580763460578, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4999,13 +6747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3319, - "time": 0.4600766794465745, + "noteOrder": 5401, + "time": 0.7484580763460578, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5017,18 +6765,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3343, - "time": 0.46341056842807143, + "noteOrder": 5413, + "time": 0.7501250208368061, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5040,16 +6788,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3511, - "time": 0.4867477912985498, + "noteOrder": 5425, + "time": 0.7517919653275547, "position": { "x": 7, "y": 0 @@ -5063,18 +6811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3535, - "time": 0.4900816802800467, + "noteOrder": 5425, + "time": 0.7517919653275547, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5091,13 +6839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3704, - "time": 0.5134189031505252, + "noteOrder": 5485, + "time": 0.7601266877812969, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5114,11 +6862,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3728, - "time": 0.5167527921320221, + "noteOrder": 5497, + "time": 0.7617936322720454, "position": { "x": 6, "y": 0 @@ -5132,18 +6880,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3896, - "time": 0.5400900150025004, + "noteOrder": 5497, + "time": 0.7617936322720454, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5160,13 +6908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3920, - "time": 0.5434239039839974, + "noteOrder": 5509, + "time": 0.7634605767627939, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5183,13 +6931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4112, - "time": 0.5700950158359728, + "noteOrder": 5521, + "time": 0.7651275212535423, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5201,18 +6949,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4185, - "time": 0.5800966827804636, + "noteOrder": 5521, + "time": 0.7651275212535423, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5224,18 +6972,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4305, - "time": 0.596766127687948, + "noteOrder": 5582, + "time": 0.7734622437072846, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5247,18 +6995,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4377, - "time": 0.6067677946324388, + "noteOrder": 5606, + "time": 0.7767961326887814, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5270,18 +7018,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4425, - "time": 0.6134355725954326, + "noteOrder": 5678, + "time": 0.7867977996332722, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5298,13 +7046,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 237, "indexInLine": 1, "isSliding": false, - "noteOrder": 4473, - "time": 0.6201033505584265, + "noteOrder": 5774, + "time": 0.8001333555592599, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5316,18 +7064,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4473, - "time": 0.6201033505584265, + "noteOrder": 5786, + "time": 0.8018003000500084, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5344,11 +7092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4521, - "time": 0.6267711285214204, + "noteOrder": 5786, + "time": 0.8018003000500084, "position": { "x": 4, "y": 0 @@ -5367,13 +7115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.6267711285214204, + "noteOrder": 5798, + "time": 0.8034672445407569, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5390,13 +7138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4569, - "time": 0.6334389064844141, + "noteOrder": 5810, + "time": 0.8051341890315052, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5413,11 +7161,11 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4569, - "time": 0.6334389064844141, + "noteOrder": 5810, + "time": 0.8051341890315052, "position": { "x": 4, "y": 0 @@ -5431,16 +7179,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 242, "indexInLine": 1, "isSliding": false, - "noteOrder": 4617, - "time": 0.6401066844474079, + "noteOrder": 5870, + "time": 0.8134689114852476, "position": { "x": 4, "y": 0 @@ -5459,11 +7207,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4714, - "time": 0.6534422403733956, + "noteOrder": 5882, + "time": 0.815135855975996, "position": { "x": 4, "y": 0 @@ -5482,13 +7230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4738, - "time": 0.6567761293548926, + "noteOrder": 5882, + "time": 0.815135855975996, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5505,13 +7253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, - "time": 0.6534422403733956, + "noteOrder": 5894, + "time": 0.8168028004667445, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5528,13 +7276,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4738, - "time": 0.6567761293548926, + "noteOrder": 5906, + "time": 0.818469744957493, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5551,13 +7299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4762, - "time": 0.6601100183363895, + "noteOrder": 5906, + "time": 0.818469744957493, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5574,13 +7322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 247, "indexInLine": 1, "isSliding": false, - "noteOrder": 4786, - "time": 0.6634439073178864, + "noteOrder": 5966, + "time": 0.8268044674112353, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5592,18 +7340,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4762, - "time": 0.6601100183363895, + "noteOrder": 5991, + "time": 0.8301383563927321, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5620,13 +7368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4786, - "time": 0.6634439073178864, + "noteOrder": 6063, + "time": 0.8401400233372229, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5643,13 +7391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5002, - "time": 0.6934489081513586, + "noteOrder": 6159, + "time": 0.8534755792632105, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5666,13 +7414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 256, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5074, - "time": 0.7034505750958494, + "noteOrder": 6207, + "time": 0.8601433572262045, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5689,13 +7437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5387, - "time": 0.7467911318553092, + "noteOrder": 6255, + "time": 0.8668111351891983, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5707,18 +7455,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5411, - "time": 0.7501250208368062, + "noteOrder": 6267, + "time": 0.8684780796799466, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5735,13 +7483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5483, - "time": 0.760126687781297, + "noteOrder": 6267, + "time": 0.8684780796799466, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5753,18 +7501,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 259, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5507, - "time": 0.7634605767627939, + "noteOrder": 6279, + "time": 0.8701450241706952, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5776,18 +7524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 259, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5579, - "time": 0.7734622437072846, + "noteOrder": 6291, + "time": 0.8718119686614436, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5804,13 +7552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 259, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5604, - "time": 0.7767961326887816, + "noteOrder": 6291, + "time": 0.8718119686614436, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5827,11 +7575,11 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 2, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5676, - "time": 0.7867977996332723, + "noteOrder": 6351, + "time": 0.880146691115186, "position": { "x": 4, "y": 0 @@ -5845,18 +7593,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5772, - "time": 0.8001333555592599, + "noteOrder": 6399, + "time": 0.8868144690781797, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5873,13 +7621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5796, - "time": 0.8034672445407568, + "noteOrder": 6448, + "time": 0.8934822470411735, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5891,18 +7639,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5868, - "time": 0.8134689114852476, + "noteOrder": 6448, + "time": 0.8934822470411735, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5914,16 +7662,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5892, - "time": 0.8168028004667446, + "noteOrder": 6496, + "time": 0.9001500250041674, "position": { "x": 4, "y": 0 @@ -5942,13 +7690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5964, - "time": 0.8268044674112353, + "noteOrder": 6544, + "time": 0.9068178029671613, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5960,18 +7708,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, + "lineGroupId": 271, "indexInLine": 1, "isSliding": false, - "noteOrder": 5988, - "time": 0.8301383563927321, + "noteOrder": 6544, + "time": 0.9068178029671613, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5988,13 +7736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, + "lineGroupId": 271, "indexInLine": 2, "isSliding": false, - "noteOrder": 6060, - "time": 0.8401400233372229, + "noteOrder": 6556, + "time": 0.9084847474579096, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6011,13 +7759,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6157, - "time": 0.8534755792632106, + "noteOrder": 6556, + "time": 0.9084847474579096, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6029,18 +7777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, + "lineGroupId": 272, "indexInLine": 1, "isSliding": false, - "noteOrder": 6205, - "time": 0.8601433572262044, + "noteOrder": 6568, + "time": 0.9101516919486581, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6057,11 +7805,11 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6253, - "time": 0.8668111351891983, + "noteOrder": 6580, + "time": 0.9118186364394066, "position": { "x": 3, "y": 0 @@ -6075,18 +7823,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6277, - "time": 0.8701450241706952, + "noteOrder": 6580, + "time": 0.9118186364394066, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6103,13 +7851,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6349, - "time": 0.880146691115186, + "noteOrder": 6592, + "time": 0.9134855809301551, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6126,13 +7874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 1, + "lineGroupId": 273, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6397, - "time": 0.8868144690781797, + "noteOrder": 6604, + "time": 0.9151525254209035, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6149,11 +7897,11 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 2, + "lineGroupId": 273, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6445, - "time": 0.8934822470411736, + "noteOrder": 6604, + "time": 0.9151525254209035, "position": { "x": 4, "y": 0 @@ -6172,13 +7920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6445, - "time": 0.8934822470411736, + "noteOrder": 6616, + "time": 0.916819469911652, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6195,13 +7943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 1, + "lineGroupId": 274, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6493, - "time": 0.9001500250041675, + "noteOrder": 6628, + "time": 0.9184864144024004, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6218,13 +7966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 2, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6541, - "time": 0.9068178029671612, + "noteOrder": 6628, + "time": 0.9184864144024004, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6241,13 +7989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6541, - "time": 0.9068178029671612, + "noteOrder": 6688, + "time": 0.9268211368561428, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6264,13 +8012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 272, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6565, - "time": 0.9101516919486582, + "noteOrder": 6700, + "time": 0.9284880813468912, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6282,18 +8030,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6590, - "time": 0.9134855809301551, + "noteOrder": 6700, + "time": 0.9284880813468912, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6310,13 +8058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6614, - "time": 0.916819469911652, + "noteOrder": 6712, + "time": 0.9301550258376396, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6333,13 +8081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6686, - "time": 0.9268211368561429, + "noteOrder": 6724, + "time": 0.9318219703283881, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6351,18 +8099,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 278, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6710, - "time": 0.9301550258376398, + "noteOrder": 6724, + "time": 0.9318219703283881, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6380,9 +8128,9 @@ }, { "lineGroupId": 279, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6734, + "noteOrder": 6736, "time": 0.9334889148191365, "position": { "x": 3, @@ -6403,9 +8151,9 @@ }, { "lineGroupId": 279, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6758, + "noteOrder": 6760, "time": 0.9368228038006335, "position": { "x": 4, @@ -6426,9 +8174,9 @@ }, { "lineGroupId": 280, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6758, + "noteOrder": 6760, "time": 0.9368228038006335, "position": { "x": 7, @@ -6449,10 +8197,10 @@ }, { "lineGroupId": 280, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6782, - "time": 0.9401566927821304, + "noteOrder": 6784, + "time": 0.9401566927821303, "position": { "x": 6, "y": 0 @@ -6472,10 +8220,10 @@ }, { "lineGroupId": 281, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6782, - "time": 0.9401566927821304, + "noteOrder": 6784, + "time": 0.9401566927821303, "position": { "x": 3, "y": 0 @@ -6495,9 +8243,9 @@ }, { "lineGroupId": 281, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6806, + "noteOrder": 6808, "time": 0.9434905817636273, "position": { "x": 4, @@ -6518,9 +8266,9 @@ }, { "lineGroupId": 288, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6926, + "noteOrder": 6929, "time": 0.9601600266711119, "position": { "x": 7, @@ -6541,9 +8289,9 @@ }, { "lineGroupId": 288, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7022, + "noteOrder": 7025, "time": 0.9734955825970996, "position": { "x": 7, @@ -6564,9 +8312,9 @@ }, { "lineGroupId": 289, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6926, + "noteOrder": 6929, "time": 0.9601600266711119, "position": { "x": 3, @@ -6587,9 +8335,9 @@ }, { "lineGroupId": 289, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7022, + "noteOrder": 7025, "time": 0.9734955825970996, "position": { "x": 3, diff --git a/tracks/Make That Body/info.json b/tracks/Make That Body/info.json index e53a3fe1..616c2ba0 100644 --- a/tracks/Make That Body/info.json +++ b/tracks/Make That Body/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Make That Body", - "SongLength": "138.814694", + "SongLength": "128.862041", "SongAuthorName": "kors k vs Yooh", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Make you happy/303_difficulty_1a.json b/tracks/Make you happy/303_difficulty_1a.json index afd50992..edaf1f65 100644 --- a/tracks/Make you happy/303_difficulty_1a.json +++ b/tracks/Make you happy/303_difficulty_1a.json @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 703, - "time": 0.08985282726568553, + "noteOrder": 704, + "time": 0.08985282726568551, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 728, - "time": 0.09295120061967468, + "time": 0.09295120061967467, "position": { "x": 5, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 897, + "noteOrder": 898, "time": 0.11463981409759877, "position": { "x": 4, @@ -194,7 +194,7 @@ }, { "noteOrder": 946, - "time": 0.12083656080557707, + "time": 0.12083656080557709, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.13632842757552285, "position": { "x": 7, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1091, - "time": 0.13942680092951204, + "noteOrder": 1092, + "time": 0.139426800929512, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1261, + "noteOrder": 1262, "time": 0.1611154144074361, "position": { "x": 3, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1285, + "noteOrder": 1286, "time": 0.16421378776142526, "position": { "x": 6, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1455, - "time": 0.18590240123934937, + "noteOrder": 1456, + "time": 0.18590240123934934, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1529, "time": 0.19519752130131682, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1649, + "noteOrder": 1650, "time": 0.2106893880712626, "position": { "x": 3, @@ -414,7 +414,7 @@ }, { "noteOrder": 1868, - "time": 0.23857474825716501, + "time": 0.238574748257165, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1916, + "noteOrder": 1917, "time": 0.2447714949651433, "position": { "x": 5, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2037, + "noteOrder": 2038, "time": 0.26026336173508907, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2037, + "noteOrder": 2038, "time": 0.26026336173508907, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2134, + "noteOrder": 2135, "time": 0.2726568551510457, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2183, - "time": 0.2788536018590241, + "noteOrder": 2184, + "time": 0.278853601859024, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2207, + "noteOrder": 2208, "time": 0.2819519752130132, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2231, + "noteOrder": 2232, "time": 0.28505034856700234, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2281, "time": 0.29124709527498066, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2304, - "time": 0.2943454686289698, + "noteOrder": 2305, + "time": 0.29434546862896976, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.30054221533694814, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.30673896204492646, + "noteOrder": 2402, + "time": 0.3067389620449264, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.31603408210689393, + "noteOrder": 2475, + "time": 0.3160340821068939, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.3191324554608831, + "noteOrder": 2499, + "time": 0.31913245546088304, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2619, - "time": 0.3346243222308289, + "noteOrder": 2620, + "time": 0.33462432223082883, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.337722695584818, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.34082106893880715, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2692, + "noteOrder": 2693, "time": 0.3439194422927963, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2813, - "time": 0.3594113090627421, + "noteOrder": 2815, + "time": 0.35941130906274205, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2838, - "time": 0.36250968241673126, + "noteOrder": 2839, + "time": 0.3625096824167312, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.3656080557707204, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2886, + "noteOrder": 2887, "time": 0.3687064291247095, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2910, - "time": 0.37180480247869874, + "noteOrder": 2912, + "time": 0.3718048024786987, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2935, - "time": 0.3749031758326879, + "noteOrder": 2936, + "time": 0.37490317583268784, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2959, - "time": 0.378001549186677, + "noteOrder": 2960, + "time": 0.37800154918667705, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2983, + "noteOrder": 2984, "time": 0.38109992254066616, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3007, + "noteOrder": 3009, "time": 0.3841982958946553, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3032, + "noteOrder": 3033, "time": 0.3872966692486445, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3056, + "noteOrder": 3057, "time": 0.39039504260263364, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3080, + "noteOrder": 3081, "time": 0.3934934159566228, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3201, - "time": 0.40898528272656853, + "noteOrder": 3203, + "time": 0.4089852827265686, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3226, - "time": 0.41208365608055775, + "noteOrder": 3227, + "time": 0.4120836560805577, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3250, - "time": 0.4151820294345469, + "noteOrder": 3251, + "time": 0.41518202943454685, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3300, "time": 0.4213787761425252, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3323, + "noteOrder": 3324, "time": 0.4244771494965143, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3347, + "noteOrder": 3348, "time": 0.4275755228505035, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3371, + "noteOrder": 3373, "time": 0.4306738962044927, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3396, + "noteOrder": 3397, "time": 0.4337722695584818, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3420, + "noteOrder": 3421, "time": 0.43687064291247096, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.4399690162664602, + "noteOrder": 3445, + "time": 0.4399690162664601, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3468, - "time": 0.4430673896204493, + "noteOrder": 3470, + "time": 0.44306738962044934, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3687, + "noteOrder": 3688, "time": 0.4709527498063517, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3711, - "time": 0.4740511231603408, + "noteOrder": 3712, + "time": 0.47405112316034087, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3735, - "time": 0.47714949651433003, + "noteOrder": 3737, + "time": 0.47714949651433, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3759, - "time": 0.4802478698683192, + "noteOrder": 3761, + "time": 0.48024786986831913, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3906, "time": 0.4988381099922541, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3953, + "noteOrder": 3955, "time": 0.5050348567002324, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3978, - "time": 0.5081332300542216, + "noteOrder": 3979, + "time": 0.5081332300542215, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4003, "time": 0.5112316034082107, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4293, - "time": 0.5484120836560806, + "noteOrder": 4295, + "time": 0.5484120836560805, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4341, - "time": 0.5546088303640588, + "noteOrder": 4343, + "time": 0.554608830364059, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.5608055770720373, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4438, + "noteOrder": 4440, "time": 0.5670023237800155, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4464, "time": 0.5701006971340047, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4487, + "noteOrder": 4489, "time": 0.5731990704879938, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4561, "time": 0.5824941905499613, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4584, - "time": 0.5855925639039504, + "noteOrder": 4586, + "time": 0.5855925639039505, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4657, + "noteOrder": 4658, "time": 0.594887683965918, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4657, + "noteOrder": 4658, "time": 0.594887683965918, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4681, - "time": 0.5979860573199072, + "noteOrder": 4683, + "time": 0.5979860573199071, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4754, - "time": 0.6072811773818745, + "noteOrder": 4756, + "time": 0.6072811773818746, "position": { "x": 5, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4778, + "noteOrder": 4780, "time": 0.6103795507358637, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.6196746707978312, + "noteOrder": 4853, + "time": 0.6196746707978311, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4875, + "noteOrder": 4877, "time": 0.6227730441518203, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4948, - "time": 0.6320681642137879, + "noteOrder": 4950, + "time": 0.6320681642137878, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 4974, "time": 0.635166537567777, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.6444616576297444, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.6444616576297444, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.6475600309837335, + "noteOrder": 5071, + "time": 0.6475600309837336, "position": { "x": 5, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.656855151045701, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5166, + "noteOrder": 5168, "time": 0.6599535243996902, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5338, "time": 0.6816421378776143, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.6847405112316034, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.6878388845855926, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5530, + "noteOrder": 5532, "time": 0.7064291247095276, "position": { "x": 3, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5554, - "time": 0.7095274980635168, + "noteOrder": 5556, + "time": 0.7095274980635167, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5578, + "noteOrder": 5580, "time": 0.7126258714175059, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5651, + "noteOrder": 5653, "time": 0.7219209914794733, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5700, + "noteOrder": 5702, "time": 0.7281177381874516, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5748, + "noteOrder": 5750, "time": 0.7343144848954299, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5797, + "noteOrder": 5799, "time": 0.7405112316034083, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5845, + "noteOrder": 5847, "time": 0.7467079783113866, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5894, + "noteOrder": 5896, "time": 0.7529047250193649, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6015, + "noteOrder": 6017, "time": 0.7683965917893106, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6039, + "noteOrder": 6041, "time": 0.7714949651432998, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6063, + "noteOrder": 6066, "time": 0.774593338497289, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6088, - "time": 0.7776917118512781, + "noteOrder": 6090, + "time": 0.7776917118512782, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6112, + "noteOrder": 6114, "time": 0.7807900852052673, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6136, - "time": 0.7838884585592565, + "noteOrder": 6139, + "time": 0.7838884585592564, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6160, + "noteOrder": 6163, "time": 0.7869868319132456, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6185, - "time": 0.7900852052672348, + "noteOrder": 6187, + "time": 0.7900852052672347, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6209, + "noteOrder": 6211, "time": 0.7931835786212239, "position": { "x": 6, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6233, - "time": 0.796281951975213, + "noteOrder": 6236, + "time": 0.7962819519752131, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6257, + "noteOrder": 6260, "time": 0.7993803253292022, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6282, - "time": 0.8024786986831914, + "noteOrder": 6284, + "time": 0.8024786986831913, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6403, - "time": 0.8179705654531371, + "noteOrder": 6405, + "time": 0.8179705654531372, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6427, + "noteOrder": 6430, "time": 0.8210689388071264, "position": { "x": 5, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6451, - "time": 0.8241673121611155, + "noteOrder": 6454, + "time": 0.8241673121611154, "position": { "x": 3, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6500, - "time": 0.8303640588690938, + "noteOrder": 6502, + "time": 0.8303640588690937, "position": { "x": 4, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6524, + "noteOrder": 6527, "time": 0.8334624322230829, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6548, - "time": 0.836560805577072, + "noteOrder": 6551, + "time": 0.8365608055770721, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6573, - "time": 0.8396591789310613, + "noteOrder": 6575, + "time": 0.8396591789310612, "position": { "x": 4, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6597, + "noteOrder": 6600, "time": 0.8427575522850504, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6621, + "noteOrder": 6624, "time": 0.8458559256390396, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6645, + "noteOrder": 6648, "time": 0.8489542989930287, "position": { "x": 4, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6670, + "noteOrder": 6672, "time": 0.8520526723470179, "position": { "x": 6, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6888, - "time": 0.8799380325329204, + "noteOrder": 6891, + "time": 0.8799380325329202, "position": { "x": 7, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 6915, "time": 0.8830364058869095, "position": { "x": 6, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6937, - "time": 0.8861347792408986, + "noteOrder": 6939, + "time": 0.8861347792408987, "position": { "x": 4, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6961, + "noteOrder": 6963, "time": 0.8892331525948877, "position": { "x": 3, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 7106, - "time": 0.9078233927188226, + "noteOrder": 7109, + "time": 0.9078233927188227, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 7155, - "time": 0.914020139426801, + "noteOrder": 7158, + "time": 0.9140201394268009, "position": { "x": 6, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 7179, + "noteOrder": 7182, "time": 0.9171185127807902, "position": { "x": 7, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 7203, - "time": 0.9202168861347794, + "noteOrder": 7206, + "time": 0.9202168861347793, "position": { "x": 3, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 7494, + "noteOrder": 7497, "time": 0.9573973663826492, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 7543, + "noteOrder": 7546, "time": 0.9635941130906275, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 7591, - "time": 0.9697908597986059, + "noteOrder": 7594, + "time": 0.9697908597986058, "position": { "x": 3, "y": 0 @@ -2836,7 +2836,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.024786986831913247, @@ -2859,7 +2859,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, "time": 0.03718048024786987, @@ -2882,7 +2882,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 218, "time": 0.027885360185902403, @@ -2905,7 +2905,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, "time": 0.03718048024786987, @@ -2928,7 +2928,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 485, "time": 0.06196746707978312, @@ -2951,7 +2951,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, "time": 0.06816421378776143, @@ -2974,7 +2974,7 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 558, "time": 0.07126258714175059, @@ -2997,9 +2997,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 509, + "noteOrder": 510, "time": 0.06506584043377227, "position": { "x": 6, @@ -3020,7 +3020,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, "time": 0.06816421378776143, @@ -3043,7 +3043,7 @@ }, { "lineGroupId": 7, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 558, "time": 0.07126258714175059, @@ -3066,7 +3066,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 582, "time": 0.07436096049573974, @@ -3089,7 +3089,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 631, "time": 0.08055770720371805, @@ -3112,7 +3112,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 776, "time": 0.09914794732765299, @@ -3135,7 +3135,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 825, "time": 0.1053446940356313, @@ -3158,9 +3158,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 970, + "noteOrder": 971, "time": 0.12393493415956625, "position": { "x": 3, @@ -3181,7 +3181,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1019, "time": 0.13013168086754454, @@ -3204,9 +3204,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1164, + "noteOrder": 1165, "time": 0.1487219209914795, "position": { "x": 3, @@ -3226,13 +3226,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1213, - "time": 0.1549186676994578, + "noteOrder": 1189, + "time": 0.15182029434546865, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3244,18 +3244,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1358, - "time": 0.17350890782339273, + "noteOrder": 1189, + "time": 0.15182029434546865, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3267,18 +3267,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1407, - "time": 0.17970565453137105, + "noteOrder": 1213, + "time": 0.15491866769945778, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3290,18 +3290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1552, - "time": 0.19829589465530598, + "noteOrder": 1237, + "time": 0.15801704105344694, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3313,18 +3313,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1601, - "time": 0.20449264136328427, + "noteOrder": 1237, + "time": 0.15801704105344694, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3341,11 +3341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1746, - "time": 0.22308288148721922, + "noteOrder": 1359, + "time": 0.17350890782339273, "position": { "x": 7, "y": 0 @@ -3359,18 +3359,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1795, - "time": 0.22927962819519754, + "noteOrder": 1383, + "time": 0.1766072811773819, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3382,18 +3382,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1843, - "time": 0.23547637490317586, + "noteOrder": 1383, + "time": 0.1766072811773819, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3410,11 +3410,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 1868, - "time": 0.23857474825716501, + "noteOrder": 1407, + "time": 0.17970565453137102, "position": { "x": 7, "y": 0 @@ -3428,18 +3428,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1892, - "time": 0.24167312161115415, + "noteOrder": 1432, + "time": 0.1828040278853602, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3456,13 +3456,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1916, - "time": 0.2447714949651433, + "noteOrder": 1432, + "time": 0.1828040278853602, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3479,13 +3479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1940, - "time": 0.2478698683191325, + "noteOrder": 1553, + "time": 0.19829589465530598, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3497,18 +3497,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1965, - "time": 0.2509682416731216, + "noteOrder": 1577, + "time": 0.20139426800929514, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3520,16 +3520,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1940, - "time": 0.2478698683191325, + "noteOrder": 1577, + "time": 0.20139426800929514, "position": { "x": 4, "y": 0 @@ -3548,13 +3548,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 1965, - "time": 0.2509682416731216, + "noteOrder": 1601, + "time": 0.2044926413632843, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3566,18 +3566,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1989, - "time": 0.2540666150271108, + "noteOrder": 1626, + "time": 0.20759101471727343, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3594,11 +3594,34 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1626, + "time": 0.20759101471727343, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 2013, - "time": 0.25716498838109997, + "noteOrder": 1747, + "time": 0.22308288148721922, "position": { "x": 7, "y": 0 @@ -3612,18 +3635,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1989, - "time": 0.2540666150271108, + "noteOrder": 1795, + "time": 0.22927962819519754, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3640,13 +3663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 2013, - "time": 0.25716498838109997, + "noteOrder": 1844, + "time": 0.23547637490317586, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3658,18 +3681,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2328, - "time": 0.297443841982959, + "noteOrder": 1868, + "time": 0.238574748257165, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3681,18 +3704,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.30054221533694814, + "noteOrder": 1893, + "time": 0.24167312161115417, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3709,13 +3732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2377, - "time": 0.30364058869093724, + "noteOrder": 1917, + "time": 0.2447714949651433, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3727,16 +3750,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.30673896204492646, + "noteOrder": 1941, + "time": 0.2478698683191325, "position": { "x": 6, "y": 0 @@ -3755,13 +3778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2522, - "time": 0.3222308288148722, + "noteOrder": 1965, + "time": 0.25096824167312165, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3778,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2571, - "time": 0.3284275755228505, + "noteOrder": 1941, + "time": 0.2478698683191325, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3801,11 +3824,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3104, - "time": 0.39659178931061195, + "noteOrder": 1965, + "time": 0.25096824167312165, "position": { "x": 4, "y": 0 @@ -3824,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3153, - "time": 0.40278853601859027, + "noteOrder": 1990, + "time": 0.25406661502711075, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3842,18 +3865,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3129, - "time": 0.3996901626646011, + "noteOrder": 2014, + "time": 0.2571649883810999, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3870,13 +3893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 3153, - "time": 0.40278853601859027, + "noteOrder": 1990, + "time": 0.25406661502711075, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3888,18 +3911,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3493, - "time": 0.44616576297443844, + "noteOrder": 2014, + "time": 0.2571649883810999, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3916,11 +3939,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3541, - "time": 0.45236250968241676, + "noteOrder": 2329, + "time": 0.297443841982959, "position": { "x": 4, "y": 0 @@ -3939,13 +3962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3517, - "time": 0.4492641363284276, + "noteOrder": 2354, + "time": 0.30054221533694814, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3957,16 +3980,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 3541, - "time": 0.45236250968241676, + "noteOrder": 2378, + "time": 0.3036405886909373, "position": { "x": 6, "y": 0 @@ -3985,11 +4008,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3590, - "time": 0.4585592563903951, + "noteOrder": 2402, + "time": 0.3067389620449264, "position": { "x": 6, "y": 0 @@ -4008,11 +4031,57 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3638, - "time": 0.46475600309837334, + "noteOrder": 2523, + "time": 0.3222308288148722, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2548, + "time": 0.3253292021688614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2548, + "time": 0.3253292021688614, "position": { "x": 6, "y": 0 @@ -4031,13 +4100,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3614, - "time": 0.46165762974438423, + "noteOrder": 2572, + "time": 0.3284275755228505, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4054,13 +4123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3638, - "time": 0.46475600309837334, + "noteOrder": 2596, + "time": 0.33152594887683967, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4077,13 +4146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3784, - "time": 0.4833462432223083, + "noteOrder": 2596, + "time": 0.33152594887683967, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4095,18 +4164,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 3808, - "time": 0.4864446165762975, + "noteOrder": 3106, + "time": 0.39659178931061195, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4118,16 +4187,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3832, - "time": 0.4895429899302866, + "noteOrder": 3154, + "time": 0.40278853601859027, "position": { "x": 4, "y": 0 @@ -4146,13 +4215,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 3856, - "time": 0.49264136328427577, + "noteOrder": 3130, + "time": 0.3996901626646011, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4164,18 +4233,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3881, - "time": 0.495739736638265, + "noteOrder": 3154, + "time": 0.40278853601859027, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4192,13 +4261,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 3905, - "time": 0.4988381099922541, + "noteOrder": 3494, + "time": 0.44616576297443844, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4210,18 +4279,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3929, - "time": 0.5019364833462432, + "noteOrder": 3542, + "time": 0.45236250968241676, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4238,13 +4307,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 3953, - "time": 0.5050348567002324, + "noteOrder": 3518, + "time": 0.4492641363284276, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4256,16 +4325,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4050, - "time": 0.517428350116189, + "noteOrder": 3542, + "time": 0.45236250968241676, "position": { "x": 6, "y": 0 @@ -4284,11 +4353,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 4099, - "time": 0.5236250968241674, + "noteOrder": 3591, + "time": 0.4585592563903951, "position": { "x": 6, "y": 0 @@ -4307,11 +4376,34 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4075, - "time": 0.5205267234701781, + "noteOrder": 3639, + "time": 0.46475600309837334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3615, + "time": 0.46165762974438423, "position": { "x": 4, "y": 0 @@ -4330,11 +4422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4099, - "time": 0.5236250968241674, + "noteOrder": 3639, + "time": 0.46475600309837334, "position": { "x": 4, "y": 0 @@ -4353,13 +4445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4147, - "time": 0.5298218435321457, + "noteOrder": 3785, + "time": 0.48334624322230835, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4376,13 +4468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4196, - "time": 0.5360185902401239, + "noteOrder": 3809, + "time": 0.48644461657629745, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4399,11 +4491,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4172, - "time": 0.5329202168861348, + "noteOrder": 3834, + "time": 0.4895429899302866, "position": { "x": 4, "y": 0 @@ -4422,11 +4514,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4196, - "time": 0.5360185902401239, + "noteOrder": 3858, + "time": 0.49264136328427577, "position": { "x": 4, "y": 0 @@ -4445,13 +4537,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4269, - "time": 0.5453137103020914, + "noteOrder": 3882, + "time": 0.495739736638265, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4468,13 +4560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4317, - "time": 0.5515104570100697, + "noteOrder": 3906, + "time": 0.4988381099922541, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4491,13 +4583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4317, - "time": 0.5515104570100697, + "noteOrder": 3931, + "time": 0.5019364833462433, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4514,13 +4606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4366, - "time": 0.5577072037180482, + "noteOrder": 3955, + "time": 0.5050348567002324, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4537,11 +4629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4366, - "time": 0.5577072037180482, + "noteOrder": 4052, + "time": 0.517428350116189, "position": { "x": 6, "y": 0 @@ -4560,11 +4652,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4414, - "time": 0.5639039504260264, + "noteOrder": 4100, + "time": 0.5236250968241672, "position": { "x": 6, "y": 0 @@ -4583,11 +4675,34 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4414, - "time": 0.5639039504260264, + "noteOrder": 4076, + "time": 0.5205267234701781, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4100, + "time": 0.5236250968241672, "position": { "x": 4, "y": 0 @@ -4601,18 +4716,685 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.5298218435321457, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4197, + "time": 0.536018590240124, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4173, + "time": 0.5329202168861348, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4197, + "time": 0.536018590240124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4270, + "time": 0.5453137103020914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4319, + "time": 0.5515104570100697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4319, + "time": 0.5515104570100697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4367, + "time": 0.557707203718048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4367, + "time": 0.557707203718048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4416, + "time": 0.5639039504260264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4416, + "time": 0.5639039504260264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4464, + "time": 0.5701006971340047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4513, + "time": 0.576297443841983, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4537, + "time": 0.5793958171959721, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4610, + "time": 0.5886909372579395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4634, + "time": 0.5917893106119287, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4707, + "time": 0.6010844306738963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4731, + "time": 0.6041828040278854, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4707, + "time": 0.6010844306738963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4731, + "time": 0.6041828040278854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4901, + "time": 0.6258714175058095, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4925, + "time": 0.6289697908597986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4998, + "time": 0.6382649109217661, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5022, + "time": 0.6413632842757553, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5095, + "time": 0.6506584043377228, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5119, + "time": 0.6537567776917118, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5095, + "time": 0.6506584043377228, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5119, + "time": 0.6537567776917118, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5241, + "time": 0.6692486444616577, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4463, - "time": 0.5701006971340047, + "noteOrder": 5265, + "time": 0.6723470178156469, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4624,18 +5406,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4511, - "time": 0.576297443841983, + "noteOrder": 5265, + "time": 0.6723470178156469, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4652,13 +5434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, - "time": 0.5793958171959722, + "noteOrder": 5289, + "time": 0.675445391169636, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4670,18 +5452,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4608, - "time": 0.5886909372579396, + "noteOrder": 5314, + "time": 0.6785437645236251, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4698,13 +5480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4632, - "time": 0.5917893106119287, + "noteOrder": 5314, + "time": 0.6785437645236251, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4721,13 +5503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4705, - "time": 0.6010844306738963, + "noteOrder": 5435, + "time": 0.6940356312935709, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4739,18 +5521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4729, - "time": 0.6041828040278854, + "noteOrder": 5459, + "time": 0.69713400464756, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4762,18 +5544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4705, - "time": 0.6010844306738963, + "noteOrder": 5459, + "time": 0.69713400464756, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4790,13 +5572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 4729, - "time": 0.6041828040278854, + "noteOrder": 5483, + "time": 0.7002323780015492, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4808,18 +5590,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4899, - "time": 0.6258714175058094, + "noteOrder": 5508, + "time": 0.7033307513555384, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4831,18 +5613,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4923, - "time": 0.6289697908597986, + "noteOrder": 5508, + "time": 0.7033307513555384, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4854,18 +5636,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4996, - "time": 0.6382649109217662, + "noteOrder": 5629, + "time": 0.7188226181254841, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4877,18 +5659,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5020, - "time": 0.6413632842757553, + "noteOrder": 5641, + "time": 0.7203718048024788, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4900,18 +5682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5093, - "time": 0.6506584043377228, + "noteOrder": 5641, + "time": 0.7203718048024788, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4923,18 +5705,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 5118, - "time": 0.6537567776917119, + "noteOrder": 5678, + "time": 0.7250193648334624, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4951,13 +5733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5093, - "time": 0.6506584043377228, + "noteOrder": 5702, + "time": 0.7281177381874516, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4969,18 +5751,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 5118, - "time": 0.6537567776917119, + "noteOrder": 5726, + "time": 0.7312161115414408, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4992,16 +5774,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5239, - "time": 0.6692486444616578, + "noteOrder": 5738, + "time": 0.7327652982184354, "position": { "x": 7, "y": 0 @@ -5020,13 +5802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5287, - "time": 0.675445391169636, + "noteOrder": 5738, + "time": 0.7327652982184354, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5038,18 +5820,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5433, - "time": 0.6940356312935709, + "noteOrder": 5775, + "time": 0.737412858249419, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5066,13 +5848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5481, - "time": 0.7002323780015492, + "noteOrder": 5799, + "time": 0.7405112316034083, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5084,18 +5866,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5627, - "time": 0.7188226181254842, + "noteOrder": 5823, + "time": 0.7436096049573974, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5107,16 +5889,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5675, - "time": 0.7250193648334625, + "noteOrder": 5835, + "time": 0.745158791634392, "position": { "x": 6, "y": 0 @@ -5135,13 +5917,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5700, - "time": 0.7281177381874516, + "noteOrder": 5835, + "time": 0.745158791634392, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5158,13 +5940,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5724, - "time": 0.7312161115414408, + "noteOrder": 5872, + "time": 0.7498063516653757, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5176,18 +5958,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5772, - "time": 0.737412858249419, + "noteOrder": 5884, + "time": 0.7513555383423702, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5204,13 +5986,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5797, - "time": 0.7405112316034083, + "noteOrder": 5884, + "time": 0.7513555383423702, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5227,11 +6009,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5821, - "time": 0.7436096049573975, + "noteOrder": 5920, + "time": 0.7560030983733541, "position": { "x": 6, "y": 0 @@ -5250,11 +6032,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5869, - "time": 0.7498063516653758, + "noteOrder": 5932, + "time": 0.7575522850503486, "position": { "x": 6, "y": 0 @@ -5268,18 +6050,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5918, - "time": 0.756003098373354, + "noteOrder": 5932, + "time": 0.7575522850503486, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5297,9 +6079,9 @@ }, { "lineGroupId": 187, - "indexInLine": 2, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5966, + "noteOrder": 5969, "time": 0.7621998450813323, "position": { "x": 5, @@ -5320,10 +6102,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5942, - "time": 0.7591014717273432, + "noteOrder": 5944, + "time": 0.7591014717273431, "position": { "x": 7, "y": 0 @@ -5343,9 +6125,9 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5966, + "noteOrder": 5969, "time": 0.7621998450813323, "position": { "x": 3, @@ -5366,9 +6148,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6306, + "noteOrder": 6308, "time": 0.8055770720371805, "position": { "x": 4, @@ -5389,9 +6171,9 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6354, + "noteOrder": 6357, "time": 0.8117738187451589, "position": { "x": 4, @@ -5412,9 +6194,9 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6330, + "noteOrder": 6333, "time": 0.8086754453911696, "position": { "x": 6, @@ -5435,9 +6217,9 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6354, + "noteOrder": 6357, "time": 0.8117738187451589, "position": { "x": 6, @@ -5458,9 +6240,9 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6694, + "noteOrder": 6697, "time": 0.855151045701007, "position": { "x": 4, @@ -5481,9 +6263,9 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6743, + "noteOrder": 6745, "time": 0.8613477924089854, "position": { "x": 4, @@ -5504,9 +6286,9 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6718, + "noteOrder": 6721, "time": 0.8582494190549962, "position": { "x": 6, @@ -5527,9 +6309,9 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6743, + "noteOrder": 6745, "time": 0.8613477924089854, "position": { "x": 6, @@ -5550,9 +6332,9 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6791, + "noteOrder": 6794, "time": 0.8675445391169636, "position": { "x": 6, @@ -5573,9 +6355,9 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6840, + "noteOrder": 6842, "time": 0.8737412858249419, "position": { "x": 6, @@ -5596,10 +6378,10 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6815, - "time": 0.8706429124709528, + "noteOrder": 6818, + "time": 0.8706429124709527, "position": { "x": 4, "y": 0 @@ -5619,9 +6401,9 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6840, + "noteOrder": 6842, "time": 0.8737412858249419, "position": { "x": 4, @@ -5642,9 +6424,9 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6985, + "noteOrder": 6988, "time": 0.8923315259488769, "position": { "x": 6, @@ -5665,10 +6447,10 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7009, - "time": 0.8954298993028661, + "noteOrder": 7012, + "time": 0.895429899302866, "position": { "x": 6, "y": 0 @@ -5688,9 +6470,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7034, + "noteOrder": 7036, "time": 0.8985282726568552, "position": { "x": 4, @@ -5711,9 +6493,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7058, + "noteOrder": 7061, "time": 0.9016266460108444, "position": { "x": 4, @@ -5734,9 +6516,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7082, + "noteOrder": 7085, "time": 0.9047250193648335, "position": { "x": 7, @@ -5757,10 +6539,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7106, - "time": 0.9078233927188226, + "noteOrder": 7109, + "time": 0.9078233927188227, "position": { "x": 7, "y": 0 @@ -5780,9 +6562,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7131, + "noteOrder": 7133, "time": 0.9109217660728118, "position": { "x": 3, @@ -5803,10 +6585,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7155, - "time": 0.914020139426801, + "noteOrder": 7158, + "time": 0.9140201394268009, "position": { "x": 3, "y": 0 @@ -5826,10 +6608,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7252, - "time": 0.9264136328427576, + "noteOrder": 7255, + "time": 0.9264136328427577, "position": { "x": 6, "y": 0 @@ -5849,10 +6631,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.932610379550736, + "noteOrder": 7303, + "time": 0.9326103795507359, "position": { "x": 6, "y": 0 @@ -5872,9 +6654,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7276, + "noteOrder": 7279, "time": 0.9295120061967467, "position": { "x": 4, @@ -5895,10 +6677,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7300, - "time": 0.932610379550736, + "noteOrder": 7303, + "time": 0.9326103795507359, "position": { "x": 4, "y": 0 @@ -5918,9 +6700,9 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7349, + "noteOrder": 7352, "time": 0.9388071262587142, "position": { "x": 7, @@ -5941,9 +6723,9 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7397, + "noteOrder": 7400, "time": 0.9450038729666925, "position": { "x": 7, @@ -5964,9 +6746,9 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7373, + "noteOrder": 7376, "time": 0.9419054996127034, "position": { "x": 4, @@ -5987,9 +6769,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7397, + "noteOrder": 7400, "time": 0.9450038729666925, "position": { "x": 4, @@ -6010,10 +6792,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7470, - "time": 0.9542989930286601, + "noteOrder": 7473, + "time": 0.95429899302866, "position": { "x": 6, "y": 0 @@ -6033,10 +6815,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7519, - "time": 0.9604957397366384, + "noteOrder": 7522, + "time": 0.9604957397366383, "position": { "x": 6, "y": 0 @@ -6056,10 +6838,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7519, - "time": 0.9604957397366384, + "noteOrder": 7522, + "time": 0.9604957397366383, "position": { "x": 4, "y": 0 @@ -6079,10 +6861,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7567, - "time": 0.9666924864446166, + "noteOrder": 7570, + "time": 0.9666924864446167, "position": { "x": 4, "y": 0 @@ -6102,10 +6884,10 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7567, - "time": 0.9666924864446166, + "noteOrder": 7570, + "time": 0.9666924864446167, "position": { "x": 6, "y": 0 @@ -6125,10 +6907,10 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7616, - "time": 0.972889233152595, + "noteOrder": 7619, + "time": 0.9728892331525949, "position": { "x": 6, "y": 0 @@ -6148,10 +6930,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7616, - "time": 0.972889233152595, + "noteOrder": 7619, + "time": 0.9728892331525949, "position": { "x": 4, "y": 0 @@ -6171,9 +6953,9 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7664, + "noteOrder": 7667, "time": 0.9790859798605732, "position": { "x": 4, @@ -6194,10 +6976,10 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7640, - "time": 0.9759876065065841, + "noteOrder": 7643, + "time": 0.975987606506584, "position": { "x": 7, "y": 0 @@ -6217,9 +6999,9 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7664, + "noteOrder": 7667, "time": 0.9790859798605732, "position": { "x": 7, diff --git a/tracks/Make you happy/303_difficulty_1b.json b/tracks/Make you happy/303_difficulty_1b.json index 0345fe88..fe90e032 100644 --- a/tracks/Make you happy/303_difficulty_1b.json +++ b/tracks/Make you happy/303_difficulty_1b.json @@ -74,7 +74,7 @@ }, { "noteOrder": 728, - "time": 0.09295120061967468, + "time": 0.09295120061967467, "position": { "x": 4, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.13632842757552285, "position": { "x": 4, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1164, + "noteOrder": 1165, "time": 0.1487219209914795, "position": { "x": 4, @@ -154,7 +154,7 @@ }, { "noteOrder": 1213, - "time": 0.1549186676994578, + "time": 0.15491866769945778, "position": { "x": 6, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1843, + "noteOrder": 1844, "time": 0.23547637490317586, "position": { "x": 4, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1892, - "time": 0.24167312161115415, + "noteOrder": 1893, + "time": 0.24167312161115417, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1940, + "noteOrder": 1941, "time": 0.2478698683191325, "position": { "x": 6, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1989, - "time": 0.2540666150271108, + "noteOrder": 1990, + "time": 0.25406661502711075, "position": { "x": 5, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2231, + "noteOrder": 2232, "time": 0.28505034856700234, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2281, "time": 0.29124709527498066, "position": { "x": 4, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2328, + "noteOrder": 2329, "time": 0.297443841982959, "position": { "x": 4, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.30364058869093724, + "noteOrder": 2378, + "time": 0.3036405886909373, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.31603408210689393, + "noteOrder": 2475, + "time": 0.3160340821068939, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2619, - "time": 0.3346243222308289, + "noteOrder": 2620, + "time": 0.33462432223082883, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.337722695584818, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.34082106893880715, "position": { "x": 5, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2813, - "time": 0.3594113090627421, + "noteOrder": 2815, + "time": 0.35941130906274205, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.3656080557707204, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2910, - "time": 0.37180480247869874, + "noteOrder": 2912, + "time": 0.3718048024786987, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2959, - "time": 0.378001549186677, + "noteOrder": 2960, + "time": 0.37800154918667705, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3007, + "noteOrder": 3009, "time": 0.3841982958946553, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3056, + "noteOrder": 3057, "time": 0.39039504260263364, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3300, "time": 0.4213787761425252, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3347, + "noteOrder": 3348, "time": 0.4275755228505035, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3396, + "noteOrder": 3397, "time": 0.4337722695584818, "position": { "x": 6, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.4399690162664602, + "noteOrder": 3445, + "time": 0.4399690162664601, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3881, + "noteOrder": 3882, "time": 0.495739736638265, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3929, - "time": 0.5019364833462432, + "noteOrder": 3931, + "time": 0.5019364833462433, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3978, - "time": 0.5081332300542216, + "noteOrder": 3979, + "time": 0.5081332300542215, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4050, + "noteOrder": 4052, "time": 0.517428350116189, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4075, + "noteOrder": 4076, "time": 0.5205267234701781, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4147, + "noteOrder": 4149, "time": 0.5298218435321457, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4172, + "noteOrder": 4173, "time": 0.5329202168861348, "position": { "x": 5, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4464, "time": 0.5701006971340047, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4511, + "noteOrder": 4513, "time": 0.576297443841983, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4561, "time": 0.5824941905499613, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4608, - "time": 0.5886909372579396, + "noteOrder": 4610, + "time": 0.5886909372579395, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.6196746707978312, + "noteOrder": 4853, + "time": 0.6196746707978311, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4899, - "time": 0.6258714175058094, + "noteOrder": 4901, + "time": 0.6258714175058095, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4948, - "time": 0.6320681642137879, + "noteOrder": 4950, + "time": 0.6320681642137878, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4996, - "time": 0.6382649109217662, + "noteOrder": 4998, + "time": 0.6382649109217661, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5239, - "time": 0.6692486444616578, + "noteOrder": 5241, + "time": 0.6692486444616577, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5287, + "noteOrder": 5289, "time": 0.675445391169636, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5338, "time": 0.6816421378776143, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.6847405112316034, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.6878388845855926, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.6940356312935709, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5481, + "noteOrder": 5483, "time": 0.7002323780015492, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5530, + "noteOrder": 5532, "time": 0.7064291247095276, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5554, - "time": 0.7095274980635168, + "noteOrder": 5556, + "time": 0.7095274980635167, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5578, + "noteOrder": 5580, "time": 0.7126258714175059, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5918, - "time": 0.756003098373354, + "noteOrder": 5920, + "time": 0.7560030983733541, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5942, - "time": 0.7591014717273432, + "noteOrder": 5944, + "time": 0.7591014717273431, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6112, + "noteOrder": 6114, "time": 0.7807900852052673, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6160, + "noteOrder": 6163, "time": 0.7869868319132456, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6209, + "noteOrder": 6211, "time": 0.7931835786212239, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6257, + "noteOrder": 6260, "time": 0.7993803253292022, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6500, - "time": 0.8303640588690938, + "noteOrder": 6502, + "time": 0.8303640588690937, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6548, - "time": 0.836560805577072, + "noteOrder": 6551, + "time": 0.8365608055770721, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6597, + "noteOrder": 6600, "time": 0.8427575522850504, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6645, + "noteOrder": 6648, "time": 0.8489542989930287, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 7082, + "noteOrder": 7085, "time": 0.9047250193648335, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 7131, + "noteOrder": 7133, "time": 0.9109217660728118, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 7179, + "noteOrder": 7182, "time": 0.9171185127807902, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 7252, - "time": 0.9264136328427576, + "noteOrder": 7255, + "time": 0.9264136328427577, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 7276, + "noteOrder": 7279, "time": 0.9295120061967467, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 7349, + "noteOrder": 7352, "time": 0.9388071262587142, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 7373, + "noteOrder": 7376, "time": 0.9419054996127034, "position": { "x": 5, @@ -1476,7 +1476,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.024786986831913247, @@ -1499,7 +1499,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, "time": 0.03718048024786987, @@ -1522,7 +1522,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 485, "time": 0.06196746707978312, @@ -1545,7 +1545,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, "time": 0.06816421378776143, @@ -1568,7 +1568,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 582, "time": 0.07436096049573974, @@ -1591,7 +1591,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 631, "time": 0.08055770720371805, @@ -1614,7 +1614,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 776, "time": 0.09914794732765299, @@ -1637,7 +1637,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 825, "time": 0.1053446940356313, @@ -1660,9 +1660,9 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 970, + "noteOrder": 971, "time": 0.12393493415956625, "position": { "x": 6, @@ -1683,7 +1683,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1019, "time": 0.13013168086754454, @@ -1706,9 +1706,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1261, + "noteOrder": 1262, "time": 0.1611154144074361, "position": { "x": 4, @@ -1729,10 +1729,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1310, - "time": 0.16731216111541444, + "time": 0.16731216111541442, "position": { "x": 4, "y": 0 @@ -1752,9 +1752,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1261, + "noteOrder": 1262, "time": 0.1611154144074361, "position": { "x": 6, @@ -1775,10 +1775,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1310, - "time": 0.16731216111541444, + "time": 0.16731216111541442, "position": { "x": 6, "y": 0 @@ -1798,9 +1798,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1358, + "noteOrder": 1359, "time": 0.17350890782339273, "position": { "x": 3, @@ -1821,10 +1821,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1455, - "time": 0.18590240123934937, + "noteOrder": 1456, + "time": 0.18590240123934934, "position": { "x": 3, "y": 0 @@ -1844,10 +1844,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1407, - "time": 0.17970565453137105, + "time": 0.17970565453137102, "position": { "x": 7, "y": 0 @@ -1867,10 +1867,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1455, - "time": 0.18590240123934937, + "noteOrder": 1456, + "time": 0.18590240123934934, "position": { "x": 5, "y": 0 @@ -1890,9 +1890,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1552, + "noteOrder": 1553, "time": 0.19829589465530598, "position": { "x": 7, @@ -1913,9 +1913,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1649, + "noteOrder": 1650, "time": 0.2106893880712626, "position": { "x": 7, @@ -1936,10 +1936,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1601, - "time": 0.20449264136328427, + "time": 0.2044926413632843, "position": { "x": 3, "y": 0 @@ -1959,9 +1959,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1649, + "noteOrder": 1650, "time": 0.2106893880712626, "position": { "x": 5, @@ -1982,9 +1982,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1746, + "noteOrder": 1747, "time": 0.22308288148721922, "position": { "x": 6, @@ -2005,7 +2005,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1795, "time": 0.22927962819519754, @@ -2028,9 +2028,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2134, + "noteOrder": 2135, "time": 0.2726568551510457, "position": { "x": 6, @@ -2051,10 +2051,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2183, - "time": 0.2788536018590241, + "noteOrder": 2184, + "time": 0.278853601859024, "position": { "x": 6, "y": 0 @@ -2074,10 +2074,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2183, - "time": 0.2788536018590241, + "noteOrder": 2184, + "time": 0.278853601859024, "position": { "x": 4, "y": 0 @@ -2097,9 +2097,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2231, + "noteOrder": 2232, "time": 0.28505034856700234, "position": { "x": 4, @@ -2120,9 +2120,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.3222308288148722, "position": { "x": 6, @@ -2143,9 +2143,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.3253292021688614, "position": { "x": 6, @@ -2166,9 +2166,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.3284275755228505, "position": { "x": 4, @@ -2189,9 +2189,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.33152594887683967, "position": { "x": 4, @@ -2212,9 +2212,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3104, + "noteOrder": 3106, "time": 0.39659178931061195, "position": { "x": 4, @@ -2235,9 +2235,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3153, + "noteOrder": 3154, "time": 0.40278853601859027, "position": { "x": 4, @@ -2258,9 +2258,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3129, + "noteOrder": 3130, "time": 0.3996901626646011, "position": { "x": 6, @@ -2281,9 +2281,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3153, + "noteOrder": 3154, "time": 0.40278853601859027, "position": { "x": 6, @@ -2304,9 +2304,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3493, + "noteOrder": 3494, "time": 0.44616576297443844, "position": { "x": 4, @@ -2327,9 +2327,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3541, + "noteOrder": 3542, "time": 0.45236250968241676, "position": { "x": 4, @@ -2350,9 +2350,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3517, + "noteOrder": 3518, "time": 0.4492641363284276, "position": { "x": 6, @@ -2373,9 +2373,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3541, + "noteOrder": 3542, "time": 0.45236250968241676, "position": { "x": 6, @@ -2396,9 +2396,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.4585592563903951, "position": { "x": 6, @@ -2419,9 +2419,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3638, + "noteOrder": 3639, "time": 0.46475600309837334, "position": { "x": 6, @@ -2442,9 +2442,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3614, + "noteOrder": 3615, "time": 0.46165762974438423, "position": { "x": 4, @@ -2465,9 +2465,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3638, + "noteOrder": 3639, "time": 0.46475600309837334, "position": { "x": 4, @@ -2488,9 +2488,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3687, + "noteOrder": 3688, "time": 0.4709527498063517, "position": { "x": 7, @@ -2511,10 +2511,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3711, - "time": 0.4740511231603408, + "noteOrder": 3712, + "time": 0.47405112316034087, "position": { "x": 6, "y": 0 @@ -2534,10 +2534,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3735, - "time": 0.47714949651433003, + "noteOrder": 3737, + "time": 0.47714949651433, "position": { "x": 3, "y": 0 @@ -2557,10 +2557,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3759, - "time": 0.4802478698683192, + "noteOrder": 3761, + "time": 0.48024786986831913, "position": { "x": 4, "y": 0 @@ -2580,10 +2580,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3784, - "time": 0.4833462432223083, + "noteOrder": 3785, + "time": 0.48334624322230835, "position": { "x": 7, "y": 0 @@ -2603,10 +2603,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3808, - "time": 0.4864446165762975, + "noteOrder": 3809, + "time": 0.48644461657629745, "position": { "x": 6, "y": 0 @@ -2626,9 +2626,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3832, + "noteOrder": 3834, "time": 0.4895429899302866, "position": { "x": 3, @@ -2649,9 +2649,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3856, + "noteOrder": 3858, "time": 0.49264136328427577, "position": { "x": 4, @@ -2672,9 +2672,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4269, + "noteOrder": 4270, "time": 0.5453137103020914, "position": { "x": 6, @@ -2695,9 +2695,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4317, + "noteOrder": 4319, "time": 0.5515104570100697, "position": { "x": 6, @@ -2718,9 +2718,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4317, + "noteOrder": 4319, "time": 0.5515104570100697, "position": { "x": 4, @@ -2741,10 +2741,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4366, - "time": 0.5577072037180482, + "noteOrder": 4367, + "time": 0.557707203718048, "position": { "x": 4, "y": 0 @@ -2764,10 +2764,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4366, - "time": 0.5577072037180482, + "noteOrder": 4367, + "time": 0.557707203718048, "position": { "x": 6, "y": 0 @@ -2787,9 +2787,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4414, + "noteOrder": 4416, "time": 0.5639039504260264, "position": { "x": 6, @@ -2810,9 +2810,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4414, + "noteOrder": 4416, "time": 0.5639039504260264, "position": { "x": 4, @@ -2833,9 +2833,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4463, + "noteOrder": 4464, "time": 0.5701006971340047, "position": { "x": 4, @@ -2856,9 +2856,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4657, + "noteOrder": 4658, "time": 0.594887683965918, "position": { "x": 6, @@ -2879,10 +2879,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4681, - "time": 0.5979860573199072, + "noteOrder": 4683, + "time": 0.5979860573199071, "position": { "x": 6, "y": 0 @@ -2902,9 +2902,9 @@ }, { "lineGroupId": 84, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4705, + "noteOrder": 4707, "time": 0.6010844306738963, "position": { "x": 6, @@ -2925,10 +2925,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4754, - "time": 0.6072811773818745, + "noteOrder": 4756, + "time": 0.6072811773818746, "position": { "x": 4, "y": 0 @@ -2948,9 +2948,9 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4778, + "noteOrder": 4780, "time": 0.6103795507358637, "position": { "x": 4, @@ -2971,10 +2971,10 @@ }, { "lineGroupId": 86, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4802, - "time": 0.6134779240898529, + "noteOrder": 4804, + "time": 0.6134779240898528, "position": { "x": 4, "y": 0 @@ -2994,9 +2994,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.6444616576297444, "position": { "x": 4, @@ -3017,10 +3017,10 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5069, - "time": 0.6475600309837335, + "noteOrder": 5071, + "time": 0.6475600309837336, "position": { "x": 4, "y": 0 @@ -3040,9 +3040,9 @@ }, { "lineGroupId": 92, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.6506584043377228, "position": { "x": 4, @@ -3063,9 +3063,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5142, + "noteOrder": 5144, "time": 0.656855151045701, "position": { "x": 6, @@ -3086,9 +3086,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5166, + "noteOrder": 5168, "time": 0.6599535243996902, "position": { "x": 6, @@ -3109,9 +3109,9 @@ }, { "lineGroupId": 94, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.6630518977536793, "position": { "x": 6, @@ -3132,9 +3132,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6306, + "noteOrder": 6308, "time": 0.8055770720371805, "position": { "x": 4, @@ -3155,9 +3155,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6354, + "noteOrder": 6357, "time": 0.8117738187451589, "position": { "x": 4, @@ -3178,9 +3178,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6330, + "noteOrder": 6333, "time": 0.8086754453911696, "position": { "x": 6, @@ -3201,9 +3201,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6354, + "noteOrder": 6357, "time": 0.8117738187451589, "position": { "x": 6, @@ -3224,9 +3224,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6694, + "noteOrder": 6697, "time": 0.855151045701007, "position": { "x": 4, @@ -3247,9 +3247,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6743, + "noteOrder": 6745, "time": 0.8613477924089854, "position": { "x": 4, @@ -3270,9 +3270,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6718, + "noteOrder": 6721, "time": 0.8582494190549962, "position": { "x": 6, @@ -3293,9 +3293,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6743, + "noteOrder": 6745, "time": 0.8613477924089854, "position": { "x": 6, @@ -3316,9 +3316,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6791, + "noteOrder": 6794, "time": 0.8675445391169636, "position": { "x": 6, @@ -3339,9 +3339,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6840, + "noteOrder": 6842, "time": 0.8737412858249419, "position": { "x": 6, @@ -3362,10 +3362,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6815, - "time": 0.8706429124709528, + "noteOrder": 6818, + "time": 0.8706429124709527, "position": { "x": 4, "y": 0 @@ -3385,9 +3385,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6840, + "noteOrder": 6842, "time": 0.8737412858249419, "position": { "x": 4, @@ -3408,10 +3408,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6888, - "time": 0.8799380325329204, + "noteOrder": 6891, + "time": 0.8799380325329202, "position": { "x": 7, "y": 0 @@ -3431,9 +3431,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6912, + "noteOrder": 6915, "time": 0.8830364058869095, "position": { "x": 6, @@ -3454,10 +3454,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6937, - "time": 0.8861347792408986, + "noteOrder": 6939, + "time": 0.8861347792408987, "position": { "x": 3, "y": 0 @@ -3477,9 +3477,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6961, + "noteOrder": 6963, "time": 0.8892331525948877, "position": { "x": 4, @@ -3500,9 +3500,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6985, + "noteOrder": 6988, "time": 0.8923315259488769, "position": { "x": 7, @@ -3523,10 +3523,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7009, - "time": 0.8954298993028661, + "noteOrder": 7012, + "time": 0.895429899302866, "position": { "x": 6, "y": 0 @@ -3546,9 +3546,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7034, + "noteOrder": 7036, "time": 0.8985282726568552, "position": { "x": 3, @@ -3569,9 +3569,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7058, + "noteOrder": 7061, "time": 0.9016266460108444, "position": { "x": 4, @@ -3592,10 +3592,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7470, - "time": 0.9542989930286601, + "noteOrder": 7473, + "time": 0.95429899302866, "position": { "x": 6, "y": 0 @@ -3615,10 +3615,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7519, - "time": 0.9604957397366384, + "noteOrder": 7522, + "time": 0.9604957397366383, "position": { "x": 6, "y": 0 @@ -3638,10 +3638,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7519, - "time": 0.9604957397366384, + "noteOrder": 7522, + "time": 0.9604957397366383, "position": { "x": 4, "y": 0 @@ -3661,10 +3661,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7567, - "time": 0.9666924864446166, + "noteOrder": 7570, + "time": 0.9666924864446167, "position": { "x": 4, "y": 0 @@ -3684,10 +3684,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7567, - "time": 0.9666924864446166, + "noteOrder": 7570, + "time": 0.9666924864446167, "position": { "x": 6, "y": 0 @@ -3707,9 +3707,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7664, + "noteOrder": 7667, "time": 0.9790859798605732, "position": { "x": 6, @@ -3730,10 +3730,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7616, - "time": 0.972889233152595, + "noteOrder": 7619, + "time": 0.9728892331525949, "position": { "x": 4, "y": 0 @@ -3753,9 +3753,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7664, + "noteOrder": 7667, "time": 0.9790859798605732, "position": { "x": 4, diff --git a/tracks/Make you happy/info.json b/tracks/Make you happy/info.json index d0061b38..2420a446 100644 --- a/tracks/Make you happy/info.json +++ b/tracks/Make you happy/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Make you happy", - "SongLength": "132.310204", + "SongLength": "122.357551", "SongAuthorName": "NiziU", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Mermaid girl/341_difficulty_1a.json b/tracks/Mermaid girl/341_difficulty_1a.json index 20698097..f1771487 100644 --- a/tracks/Mermaid girl/341_difficulty_1a.json +++ b/tracks/Mermaid girl/341_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 290, - "time": 0.042557907569544494, + "time": 0.0425579075695445, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 387, - "time": 0.05674387675939266, + "time": 0.056743876759392665, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 435, - "time": 0.06383686135431674, + "time": 0.06383686135431675, "position": { "x": 5, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 459, - "time": 0.06738335365177878, + "noteOrder": 460, + "time": 0.06738335365177879, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 508, - "time": 0.07447633824670287, + "time": 0.07447633824670288, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 508, - "time": 0.07447633824670287, + "time": 0.07447633824670288, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 580, - "time": 0.08511581513908899, + "noteOrder": 581, + "time": 0.085115815139089, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 653, - "time": 0.09575529203147512, + "time": 0.09575529203147513, "position": { "x": 4, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 701, + "noteOrder": 702, "time": 0.1028482766263992, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 701, + "noteOrder": 702, "time": 0.1028482766263992, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 725, + "noteOrder": 726, "time": 0.10639476892386125, "position": { "x": 7, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 725, + "noteOrder": 726, "time": 0.10639476892386125, "position": { "x": 3, @@ -494,7 +494,7 @@ }, { "noteOrder": 774, - "time": 0.11348775351878532, + "time": 0.11348775351878533, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 798, - "time": 0.11703424581624737, + "time": 0.11703424581624738, "position": { "x": 5, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 822, + "noteOrder": 823, "time": 0.12058073811370941, "position": { "x": 7, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 846, - "time": 0.12412723041117146, + "noteOrder": 847, + "time": 0.12412723041117145, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 846, - "time": 0.12412723041117146, + "noteOrder": 847, + "time": 0.12412723041117145, "position": { "x": 4, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 871, - "time": 0.12767372270863347, + "time": 0.1276737227086335, "position": { "x": 7, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 919, - "time": 0.13476670730355755, + "time": 0.13476670730355758, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1161, - "time": 0.17023163027817798, + "time": 0.170231630278178, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1209, + "noteOrder": 1210, "time": 0.17732461487310208, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1233, + "noteOrder": 1234, "time": 0.18087110717056412, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1258, "time": 0.18441759946802616, "position": { "x": 3, @@ -814,7 +814,7 @@ }, { "noteOrder": 1548, - "time": 0.22697550703757063, + "time": 0.22697550703757066, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1596, - "time": 0.23406849163249474, + "noteOrder": 1597, + "time": 0.23406849163249477, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1620, + "noteOrder": 1621, "time": 0.23761498392995678, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1644, + "noteOrder": 1645, "time": 0.24116147622741882, "position": { "x": 7, @@ -914,7 +914,7 @@ }, { "noteOrder": 1669, - "time": 0.24470796852488086, + "time": 0.2447079685248809, "position": { "x": 3, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1814, - "time": 0.26598692230965315, + "time": 0.2659869223096531, "position": { "x": 6, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1814, - "time": 0.26598692230965315, + "time": 0.2659869223096531, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1959, + "noteOrder": 1960, "time": 0.28726587609442533, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1983, + "noteOrder": 1984, "time": 0.2908123683918874, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2007, + "noteOrder": 2008, "time": 0.29435886068934947, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2128, - "time": 0.3120913221766597, + "noteOrder": 2129, + "time": 0.31209132217665964, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2152, + "noteOrder": 2153, "time": 0.3156378144741217, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.31918430677158377, "position": { "x": 6, @@ -1114,7 +1114,7 @@ }, { "noteOrder": 2201, - "time": 0.3227307990690458, + "time": 0.32273079906904584, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2225, - "time": 0.32627729136650785, + "noteOrder": 2226, + "time": 0.3262772913665078, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2249, - "time": 0.3298237836639698, + "noteOrder": 2250, + "time": 0.32982378366396986, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2273, - "time": 0.3333702759614319, + "noteOrder": 2274, + "time": 0.33337027596143193, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.33691676825889394, "position": { "x": 4, @@ -1214,7 +1214,7 @@ }, { "noteOrder": 2322, - "time": 0.34046326055635595, + "time": 0.340463260556356, "position": { "x": 3, "y": 0 @@ -1234,7 +1234,7 @@ }, { "noteOrder": 2322, - "time": 0.34046326055635595, + "time": 0.340463260556356, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2346, - "time": 0.344009752853818, + "noteOrder": 2347, + "time": 0.3440097528538181, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2346, - "time": 0.344009752853818, + "noteOrder": 2347, + "time": 0.3440097528538181, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2442, - "time": 0.3581957220436662, + "noteOrder": 2443, + "time": 0.35819572204366623, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2491, - "time": 0.36528870663859025, + "noteOrder": 2492, + "time": 0.3652887066385903, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2563, + "noteOrder": 2564, "time": 0.3759281835309764, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2563, + "noteOrder": 2564, "time": 0.3759281835309764, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2636, + "noteOrder": 2637, "time": 0.38656766042336255, "position": { "x": 2, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2684, - "time": 0.39366064501828657, + "noteOrder": 2685, + "time": 0.3936606450182866, "position": { "x": 8, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2733, - "time": 0.40075362961321065, + "noteOrder": 2734, + "time": 0.4007536296132107, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.4078466142081348, + "noteOrder": 2782, + "time": 0.40784661420813484, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2805, + "noteOrder": 2806, "time": 0.4113931065055968, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2829, + "noteOrder": 2830, "time": 0.41493959880305886, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3023, + "noteOrder": 3024, "time": 0.44331153718275523, "position": { "x": 8, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3071, - "time": 0.45040452177767926, + "noteOrder": 3072, + "time": 0.4504045217776793, "position": { "x": 2, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3095, - "time": 0.45395101407514127, + "noteOrder": 3097, + "time": 0.4539510140751413, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.45749750637260334, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3217, "time": 0.4716834755624515, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3265, + "noteOrder": 3266, "time": 0.4787764601573756, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.48232295245483764, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.48232295245483764, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3579, + "noteOrder": 3580, "time": 0.5248808600243822, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3603, + "noteOrder": 3605, "time": 0.5284273523218441, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3627, - "time": 0.5319738446193063, + "noteOrder": 3629, + "time": 0.5319738446193062, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.5355203369167683, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.5390668292142302, + "noteOrder": 3677, + "time": 0.5390668292142303, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3701, "time": 0.5426133215116924, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 3967, "time": 0.5816247367837748, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.5851712290812369, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.5887177213786989, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4038, + "noteOrder": 4040, "time": 0.592264213676161, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4063, - "time": 0.595810705973623, + "noteOrder": 4064, + "time": 0.5958107059736231, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.5993571982710849, + "noteOrder": 4088, + "time": 0.599357198271085, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4256, - "time": 0.6241826443533194, + "noteOrder": 4258, + "time": 0.6241826443533193, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4280, + "noteOrder": 4282, "time": 0.6277291366507813, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4304, + "noteOrder": 4306, "time": 0.6312756289482434, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4353, + "noteOrder": 4355, "time": 0.6383686135431675, "position": { "x": 5, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4377, - "time": 0.6419151058406295, + "noteOrder": 4379, + "time": 0.6419151058406296, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4401, - "time": 0.6454615981380916, + "noteOrder": 4403, + "time": 0.6454615981380917, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4425, + "noteOrder": 4427, "time": 0.6490080904355536, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.6525545827330157, + "noteOrder": 4451, + "time": 0.6525545827330156, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4475, "time": 0.6561010750304777, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4475, "time": 0.6561010750304777, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4546, - "time": 0.6667405519228637, + "noteOrder": 4548, + "time": 0.6667405519228639, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4570, - "time": 0.6702870442203258, + "noteOrder": 4572, + "time": 0.6702870442203259, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4595, + "noteOrder": 4596, "time": 0.6738335365177879, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.67738002881525, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4643, - "time": 0.6809265211127119, + "noteOrder": 4645, + "time": 0.680926521112712, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4643, - "time": 0.6809265211127119, + "noteOrder": 4645, + "time": 0.680926521112712, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4667, + "noteOrder": 4669, "time": 0.6844730134101741, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4667, + "noteOrder": 4669, "time": 0.6844730134101741, "position": { "x": 6, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4691, - "time": 0.688019505707636, + "noteOrder": 4693, + "time": 0.6880195057076361, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4691, - "time": 0.688019505707636, + "noteOrder": 4693, + "time": 0.6880195057076361, "position": { "x": 7, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4716, - "time": 0.6915659980050981, + "noteOrder": 4717, + "time": 0.6915659980050982, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4716, - "time": 0.6915659980050981, + "noteOrder": 4717, + "time": 0.6915659980050982, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4740, + "noteOrder": 4742, "time": 0.6951124903025601, "position": { "x": 7, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4764, - "time": 0.6986589826000222, + "noteOrder": 4766, + "time": 0.6986589826000221, "position": { "x": 5, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4788, + "noteOrder": 4790, "time": 0.7022054748974842, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4812, + "noteOrder": 4814, "time": 0.7057519671949463, "position": { "x": 6, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4812, + "noteOrder": 4814, "time": 0.7057519671949463, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4836, + "noteOrder": 4838, "time": 0.7092984594924083, "position": { "x": 3, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4861, + "noteOrder": 4863, "time": 0.7128449517898704, "position": { "x": 5, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.7163914440873324, + "noteOrder": 4887, + "time": 0.7163914440873325, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.7199379363847944, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.7199379363847944, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.7234844286822565, "position": { "x": 3, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5032, "time": 0.7376703978721046, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5127, + "noteOrder": 5129, "time": 0.7518563670619528, "position": { "x": 3, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5175, + "noteOrder": 5177, "time": 0.7589493516568769, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5344, + "noteOrder": 5346, "time": 0.7837747977391112, "position": { "x": 3, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5368, - "time": 0.7873212900365731, + "noteOrder": 5371, + "time": 0.7873212900365733, "position": { "x": 4, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5417, + "noteOrder": 5419, "time": 0.7944142746314973, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5441, + "noteOrder": 5443, "time": 0.7979607669289593, "position": { "x": 6, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5465, - "time": 0.8015072592264213, + "noteOrder": 5467, + "time": 0.8015072592264214, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5538, - "time": 0.8121467361188075, + "noteOrder": 5540, + "time": 0.8121467361188076, "position": { "x": 3, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5586, - "time": 0.8192397207137316, + "noteOrder": 5588, + "time": 0.8192397207137315, "position": { "x": 7, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5612, "time": 0.8227862130111936, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5612, "time": 0.8227862130111936, "position": { "x": 6, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5707, - "time": 0.8369721822010417, + "noteOrder": 5709, + "time": 0.8369721822010419, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5707, - "time": 0.8369721822010417, + "noteOrder": 5709, + "time": 0.8369721822010419, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5731, - "time": 0.8405186744985038, + "noteOrder": 5733, + "time": 0.8405186744985039, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5731, - "time": 0.8405186744985038, + "noteOrder": 5733, + "time": 0.8405186744985039, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5780, - "time": 0.8476116590934278, + "noteOrder": 5782, + "time": 0.847611659093428, "position": { "x": 6, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5780, - "time": 0.8476116590934278, + "noteOrder": 5782, + "time": 0.847611659093428, "position": { "x": 4, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5804, + "noteOrder": 5806, "time": 0.85115815139089, "position": { "x": 5, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5828, - "time": 0.854704643688352, + "noteOrder": 5830, + "time": 0.8547046436883521, "position": { "x": 5, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5852, - "time": 0.858251135985814, + "noteOrder": 5854, + "time": 0.8582511359858142, "position": { "x": 5, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5876, - "time": 0.861797628283276, + "noteOrder": 5879, + "time": 0.8617976282832761, "position": { "x": 5, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5997, + "noteOrder": 6000, "time": 0.8795300897705863, "position": { "x": 7, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6021, - "time": 0.8830765820680483, + "noteOrder": 6024, + "time": 0.8830765820680484, "position": { "x": 6, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6046, + "noteOrder": 6048, "time": 0.8866230743655105, "position": { "x": 5, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6070, + "noteOrder": 6072, "time": 0.8901695666629724, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6191, - "time": 0.9079020281502825, + "noteOrder": 6193, + "time": 0.9079020281502826, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6215, + "noteOrder": 6217, "time": 0.9114485204477447, "position": { "x": 4, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6239, + "noteOrder": 6241, "time": 0.9149950127452067, "position": { "x": 5, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6263, + "noteOrder": 6266, "time": 0.9185415050426687, "position": { "x": 7, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6287, + "noteOrder": 6290, "time": 0.9220879973401308, "position": { "x": 7, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6312, + "noteOrder": 6314, "time": 0.9256344896375929, "position": { "x": 6, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6336, - "time": 0.9291809819350548, + "noteOrder": 6338, + "time": 0.9291809819350549, "position": { "x": 5, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6360, - "time": 0.9327274742325169, + "noteOrder": 6362, + "time": 0.932727474232517, "position": { "x": 3, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6408, + "noteOrder": 6411, "time": 0.939820458827441, "position": { "x": 2, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6457, - "time": 0.9469134434223652, + "noteOrder": 6459, + "time": 0.946913443422365, "position": { "x": 8, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6481, + "noteOrder": 6483, "time": 0.9504599357198271, "position": { "x": 3, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6505, + "noteOrder": 6508, "time": 0.9540064280172892, "position": { "x": 7, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6532, "time": 0.9575529203147513, "position": { "x": 4, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6532, "time": 0.9575529203147513, "position": { "x": 6, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9610994126122132, + "noteOrder": 6556, + "time": 0.9610994126122133, "position": { "x": 3, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9610994126122132, + "noteOrder": 6556, + "time": 0.9610994126122133, "position": { "x": 7, "y": 0 @@ -3396,10 +3396,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 193, - "time": 0.02837193837969633, + "noteOrder": 194, + "time": 0.028371938379696333, "position": { "x": 3, "y": 0 @@ -3419,10 +3419,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.03901141527208246, + "time": 0.039011415272082454, "position": { "x": 3, "y": 0 @@ -3442,10 +3442,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 193, - "time": 0.02837193837969633, + "noteOrder": 194, + "time": 0.028371938379696333, "position": { "x": 7, "y": 0 @@ -3465,10 +3465,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.03901141527208246, + "time": 0.039011415272082454, "position": { "x": 7, "y": 0 @@ -3488,7 +3488,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 363, "time": 0.053197384461930626, @@ -3511,10 +3511,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 459, - "time": 0.06738335365177878, + "noteOrder": 460, + "time": 0.06738335365177879, "position": { "x": 3, "y": 0 @@ -3534,10 +3534,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 532, - "time": 0.07802283054416492, + "time": 0.07802283054416491, "position": { "x": 7, "y": 0 @@ -3557,10 +3557,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 556, - "time": 0.08156932284162696, + "time": 0.08156932284162695, "position": { "x": 7, "y": 0 @@ -3580,10 +3580,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 532, - "time": 0.07802283054416492, + "time": 0.07802283054416491, "position": { "x": 3, "y": 0 @@ -3603,10 +3603,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 556, - "time": 0.08156932284162696, + "time": 0.08156932284162695, "position": { "x": 3, "y": 0 @@ -3626,9 +3626,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 967, + "noteOrder": 968, "time": 0.14185969189848166, "position": { "x": 7, @@ -3648,11 +3648,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1016, - "time": 0.14895267649340574, + "noteOrder": 992, + "time": 0.1454061841959437, "position": { "x": 7, "y": 0 @@ -3666,18 +3666,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1064, - "time": 0.15604566108832985, + "noteOrder": 992, + "time": 0.1454061841959437, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3694,13 +3694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1088, - "time": 0.15959215338579189, + "noteOrder": 1016, + "time": 0.14895267649340577, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3712,18 +3712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1112, - "time": 0.16313864568325392, + "noteOrder": 1016, + "time": 0.14895267649340577, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3740,11 +3740,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1137, - "time": 0.16668513798071594, + "noteOrder": 1016, + "time": 0.14895267649340577, "position": { "x": 7, "y": 0 @@ -3763,13 +3763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1306, - "time": 0.19151058406295024, + "noteOrder": 1040, + "time": 0.15249916879086778, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3781,16 +3781,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1330, - "time": 0.19505707636041228, + "noteOrder": 1040, + "time": 0.15249916879086778, "position": { "x": 6, "y": 0 @@ -3804,18 +3804,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1306, - "time": 0.19151058406295024, + "noteOrder": 1064, + "time": 0.15604566108832982, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3832,13 +3832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1330, - "time": 0.19505707636041228, + "noteOrder": 1064, + "time": 0.15604566108832982, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3855,13 +3855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, - "time": 0.19860356865787432, + "noteOrder": 1064, + "time": 0.15604566108832982, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3873,18 +3873,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1403, - "time": 0.2056965532527984, + "noteOrder": 1077, + "time": 0.15781890723706085, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3901,13 +3901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1451, - "time": 0.2127895378477225, + "noteOrder": 1077, + "time": 0.15781890723706085, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3919,18 +3919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1475, - "time": 0.21633603014518454, + "noteOrder": 1089, + "time": 0.15959215338579189, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3947,13 +3947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1499, - "time": 0.21988252244264658, + "noteOrder": 1089, + "time": 0.15959215338579189, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3965,18 +3965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1523, - "time": 0.22342901474010862, + "noteOrder": 1089, + "time": 0.15959215338579189, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3988,18 +3988,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1693, - "time": 0.24825446082234293, + "noteOrder": 1101, + "time": 0.16136539953452292, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4011,16 +4011,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1717, - "time": 0.25180095311980494, + "noteOrder": 1101, + "time": 0.16136539953452292, "position": { "x": 6, "y": 0 @@ -4034,18 +4034,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1693, - "time": 0.24825446082234293, + "noteOrder": 1113, + "time": 0.1631386456832539, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4062,13 +4062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1717, - "time": 0.25180095311980494, + "noteOrder": 1113, + "time": 0.1631386456832539, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4085,11 +4085,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, - "time": 0.25534744541726695, + "noteOrder": 1113, + "time": 0.1631386456832539, "position": { "x": 7, "y": 0 @@ -4108,11 +4108,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1789, - "time": 0.2624404300121911, + "noteOrder": 1125, + "time": 0.16491189183198493, "position": { "x": 7, "y": 0 @@ -4131,13 +4131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1765, - "time": 0.258893937714729, + "noteOrder": 1125, + "time": 0.16491189183198493, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4149,18 +4149,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1789, - "time": 0.2624404300121911, + "noteOrder": 1137, + "time": 0.16668513798071596, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4172,18 +4172,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1838, - "time": 0.2695334146071151, + "noteOrder": 1137, + "time": 0.16668513798071596, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4200,11 +4200,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 1862, - "time": 0.2730799069045772, + "noteOrder": 1137, + "time": 0.16668513798071596, "position": { "x": 7, "y": 0 @@ -4218,18 +4218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1886, - "time": 0.27662639920203924, + "noteOrder": 1149, + "time": 0.16845838412944697, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4246,13 +4246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1910, - "time": 0.28017289149950125, + "noteOrder": 1149, + "time": 0.16845838412944697, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4269,13 +4269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2031, - "time": 0.2979053529868115, + "noteOrder": 1161, + "time": 0.170231630278178, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4287,18 +4287,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2055, - "time": 0.30145184528427355, + "noteOrder": 1161, + "time": 0.170231630278178, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4310,18 +4310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2080, - "time": 0.30499833758173556, + "noteOrder": 1306, + "time": 0.19151058406295027, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4333,18 +4333,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2104, - "time": 0.3085448298791976, + "noteOrder": 1331, + "time": 0.19505707636041228, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4356,18 +4356,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2370, - "time": 0.34755624515128003, + "noteOrder": 1306, + "time": 0.19151058406295027, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4384,13 +4384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2394, - "time": 0.3511027374487421, + "noteOrder": 1331, + "time": 0.19505707636041228, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4406,12 +4406,2634 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1355, + "time": 0.19860356865787432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1379, + "time": 0.20215006095533639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1379, + "time": 0.20215006095533639, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1403, + "time": 0.2056965532527984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1403, + "time": 0.2056965532527984, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1403, + "time": 0.2056965532527984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1427, + "time": 0.20924304555026046, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1427, + "time": 0.20924304555026046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1452, + "time": 0.2127895378477225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1452, + "time": 0.2127895378477225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1452, + "time": 0.2127895378477225, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1464, + "time": 0.21456278399645354, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1464, + "time": 0.21456278399645354, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1476, + "time": 0.21633603014518454, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1476, + "time": 0.21633603014518454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1476, + "time": 0.21633603014518454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1488, + "time": 0.21810927629391555, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1488, + "time": 0.21810927629391555, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1500, + "time": 0.21988252244264658, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1500, + "time": 0.21988252244264658, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1500, + "time": 0.21988252244264658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1512, + "time": 0.22165576859137762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1512, + "time": 0.22165576859137762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1524, + "time": 0.22342901474010862, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1524, + "time": 0.22342901474010862, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1524, + "time": 0.22342901474010862, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1536, + "time": 0.22520226088883966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1536, + "time": 0.22520226088883966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1548, + "time": 0.22697550703757066, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1548, + "time": 0.22697550703757066, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1693, + "time": 0.2482544608223429, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25180095311980494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1693, + "time": 0.2482544608223429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25180095311980494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1742, + "time": 0.255347445417267, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1790, + "time": 0.2624404300121911, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1766, + "time": 0.25889393771472907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1790, + "time": 0.2624404300121911, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1839, + "time": 0.26953341460711516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.27307990690457723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1887, + "time": 0.27662639920203924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1911, + "time": 0.2801728914995013, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2032, + "time": 0.29790535298681153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.30145184528427355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2080, + "time": 0.30499833758173556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2105, + "time": 0.3085448298791976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2371, + "time": 0.34755624515128003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2395, + "time": 0.3511027374487421, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2371, + "time": 0.34755624515128003, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2395, + "time": 0.3511027374487421, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.35464922974620416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2443, + "time": 0.35819572204366623, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2468, + "time": 0.36174221434112824, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2492, + "time": 0.3652887066385903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2613, + "time": 0.38302116812590054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2637, + "time": 0.38656766042336255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2661, + "time": 0.39011415272082456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2685, + "time": 0.3936606450182866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2709, + "time": 0.39720713731574864, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2734, + "time": 0.4007536296132107, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2758, + "time": 0.40430012191067277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2782, + "time": 0.40784661420813484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2855, + "time": 0.41848609110052093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2891, + "time": 0.423805829546714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2903, + "time": 0.425579075695445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2915, + "time": 0.42735232184417604, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2927, + "time": 0.4291255679929071, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2939, + "time": 0.43089881414163805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2951, + "time": 0.4326720602903691, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2963, + "time": 0.43444530643910007, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2976, + "time": 0.4362185525878311, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2879, + "time": 0.42203258339798294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2891, + "time": 0.423805829546714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2903, + "time": 0.425579075695445, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2915, + "time": 0.42735232184417604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2927, + "time": 0.4291255679929071, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2939, + "time": 0.43089881414163805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2951, + "time": 0.4326720602903691, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2963, + "time": 0.43444530643910007, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2976, + "time": 0.4362185525878311, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3000, + "time": 0.43976504488529317, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3024, + "time": 0.44331153718275523, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3048, + "time": 0.44685802948021724, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3169, + "time": 0.46459049096752747, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3145, + "time": 0.4610439986700654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3169, + "time": 0.46459049096752747, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3193, + "time": 0.46813698326498954, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4716834755624515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3242, + "time": 0.47522996785991356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3266, + "time": 0.4787764601573756, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3314, + "time": 0.4858694447522997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3363, + "time": 0.49296242934722384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3314, + "time": 0.4858694447522997, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3363, + "time": 0.49296242934722384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.4965089216446858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5000554139421479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5000554139421479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5036019062396099, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5036019062396099, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5036019062396099, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5071483985370719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5071483985370719, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3484, + "time": 0.510694890834534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3484, + "time": 0.510694890834534, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3484, + "time": 0.510694890834534, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3496, + "time": 0.512468136983265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3496, + "time": 0.512468136983265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5142413831319961, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5142413831319961, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5142413831319961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3520, + "time": 0.516014629280727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3520, + "time": 0.516014629280727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5177878754294581, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5177878754294581, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2370, - "time": 0.34755624515128003, + "noteOrder": 3532, + "time": 0.5177878754294581, "position": { "x": 7, "y": 0 @@ -4430,11 +7052,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2394, - "time": 0.3511027374487421, + "noteOrder": 3544, + "time": 0.5195611215781891, "position": { "x": 7, "y": 0 @@ -4453,13 +7075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2418, - "time": 0.35464922974620416, + "noteOrder": 3544, + "time": 0.5195611215781891, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4476,11 +7098,57 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3556, + "time": 0.5213343677269201, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3556, + "time": 0.5213343677269201, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 2442, - "time": 0.3581957220436662, + "noteOrder": 3556, + "time": 0.5213343677269201, "position": { "x": 7, "y": 0 @@ -4494,18 +7162,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2467, - "time": 0.36174221434112824, + "noteOrder": 3568, + "time": 0.5231076138756512, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4522,13 +7190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2491, - "time": 0.36528870663859025, + "noteOrder": 3568, + "time": 0.5231076138756512, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4545,13 +7213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2612, - "time": 0.3830211681259005, + "noteOrder": 3580, + "time": 0.5248808600243822, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4568,11 +7236,34 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3580, + "time": 0.5248808600243822, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 2636, - "time": 0.38656766042336255, + "noteOrder": 3726, + "time": 0.5461598138091545, "position": { "x": 4, "y": 0 @@ -4591,13 +7282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2660, - "time": 0.39011415272082456, + "noteOrder": 3750, + "time": 0.5497063061066164, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4609,16 +7300,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 2684, - "time": 0.39366064501828657, + "noteOrder": 3726, + "time": 0.5461598138091545, "position": { "x": 6, "y": 0 @@ -4637,13 +7328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2708, - "time": 0.39720713731574864, + "noteOrder": 3750, + "time": 0.5497063061066164, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4655,18 +7346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 2733, - "time": 0.40075362961321065, + "noteOrder": 3774, + "time": 0.5532527984040785, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4683,11 +7374,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2757, - "time": 0.4043001219106727, + "noteOrder": 3798, + "time": 0.5567992907015406, "position": { "x": 3, "y": 0 @@ -4706,13 +7397,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2781, - "time": 0.4078466142081348, + "noteOrder": 3798, + "time": 0.5567992907015406, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4729,13 +7420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2854, - "time": 0.4184860911005209, + "noteOrder": 3822, + "time": 0.5603457829990026, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4747,18 +7438,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3822, + "time": 0.5603457829990026, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 2890, - "time": 0.4238058295467139, + "noteOrder": 3822, + "time": 0.5603457829990026, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4775,13 +7489,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 150, "indexInLine": 2, "isSliding": false, - "noteOrder": 2902, - "time": 0.425579075695445, + "noteOrder": 3846, + "time": 0.5638922752964647, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4798,13 +7512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 150, "indexInLine": 3, "isSliding": false, - "noteOrder": 2914, - "time": 0.427352321844176, + "noteOrder": 3846, + "time": 0.5638922752964647, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4821,13 +7535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 150, "indexInLine": 4, "isSliding": false, - "noteOrder": 2926, - "time": 0.429125567992907, + "noteOrder": 3871, + "time": 0.5674387675939266, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4844,13 +7558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 150, "indexInLine": 5, "isSliding": false, - "noteOrder": 2938, - "time": 0.430898814141638, + "noteOrder": 3871, + "time": 0.5674387675939266, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4867,13 +7581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 6, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2950, - "time": 0.4326720602903691, + "noteOrder": 3871, + "time": 0.5674387675939266, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4885,18 +7599,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 7, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2962, - "time": 0.43444530643910007, + "noteOrder": 3883, + "time": 0.5692120137426576, "position": { - "x": 7, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3883, + "time": 0.5692120137426576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3895, + "time": 0.5709852598913887, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4908,18 +7668,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 8, + "lineGroupId": 151, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2974, - "time": 0.4362185525878311, + "noteOrder": 3895, + "time": 0.5709852598913887, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4931,18 +7691,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2878, - "time": 0.42203258339798294, + "noteOrder": 3895, + "time": 0.5709852598913887, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4954,18 +7714,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2890, - "time": 0.4238058295467139, + "noteOrder": 3907, + "time": 0.5727585060401197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4977,16 +7737,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 2, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2902, - "time": 0.425579075695445, + "noteOrder": 3907, + "time": 0.5727585060401197, "position": { "x": 4, "y": 0 @@ -5000,16 +7760,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 3, + "lineGroupId": 152, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2914, - "time": 0.427352321844176, + "noteOrder": 3919, + "time": 0.5745317521888507, "position": { "x": 4, "y": 0 @@ -5023,18 +7783,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 4, + "lineGroupId": 152, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2926, - "time": 0.429125567992907, + "noteOrder": 3919, + "time": 0.5745317521888507, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5046,18 +7806,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 5, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2938, - "time": 0.430898814141638, + "noteOrder": 3919, + "time": 0.5745317521888507, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5074,13 +7834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 6, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2950, - "time": 0.4326720602903691, + "noteOrder": 3931, + "time": 0.5763049983375818, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5097,11 +7857,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 7, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2962, - "time": 0.43444530643910007, + "noteOrder": 3931, + "time": 0.5763049983375818, "position": { "x": 4, "y": 0 @@ -5120,11 +7880,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 8, + "lineGroupId": 153, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2974, - "time": 0.4362185525878311, + "noteOrder": 3943, + "time": 0.5780782444863127, "position": { "x": 4, "y": 0 @@ -5143,13 +7903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2999, - "time": 0.43976504488529317, + "noteOrder": 3943, + "time": 0.5780782444863127, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5161,18 +7921,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 154, "indexInLine": 1, "isSliding": false, - "noteOrder": 3023, - "time": 0.44331153718275523, + "noteOrder": 3943, + "time": 0.5780782444863127, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5189,13 +7949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3047, - "time": 0.44685802948021724, + "noteOrder": 3955, + "time": 0.5798514906350438, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5207,16 +7967,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3168, - "time": 0.4645904909675274, + "noteOrder": 3955, + "time": 0.5798514906350438, "position": { "x": 4, "y": 0 @@ -5230,18 +7990,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3144, - "time": 0.4610439986700654, + "noteOrder": 3967, + "time": 0.5816247367837748, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5258,13 +8018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3168, - "time": 0.4645904909675274, + "noteOrder": 3967, + "time": 0.5816247367837748, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5281,13 +8041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3192, - "time": 0.4681369832649895, + "noteOrder": 4113, + "time": 0.6029036905685471, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5304,13 +8064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3216, - "time": 0.4716834755624515, + "noteOrder": 4137, + "time": 0.6064501828660092, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5327,13 +8087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3240, - "time": 0.47522996785991356, + "noteOrder": 4113, + "time": 0.6029036905685471, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5350,13 +8110,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3265, - "time": 0.4787764601573756, + "noteOrder": 4137, + "time": 0.6064501828660092, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5373,13 +8133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3313, - "time": 0.4858694447522997, + "noteOrder": 4161, + "time": 0.6099966751634711, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5396,11 +8156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3361, - "time": 0.4929624293472238, + "noteOrder": 4234, + "time": 0.6206361520558573, "position": { "x": 3, "y": 0 @@ -5419,13 +8179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3313, - "time": 0.4858694447522997, + "noteOrder": 4161, + "time": 0.6099966751634711, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5442,11 +8202,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3361, - "time": 0.4929624293472238, + "noteOrder": 4234, + "time": 0.6206361520558573, "position": { "x": 7, "y": 0 @@ -5465,11 +8225,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.49650892164468585, + "noteOrder": 4330, + "time": 0.6348221212457055, "position": { "x": 7, "y": 0 @@ -5488,11 +8248,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, - "time": 0.5036019062396099, + "noteOrder": 4427, + "time": 0.6490080904355536, "position": { "x": 7, "y": 0 @@ -5506,16 +8266,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3482, - "time": 0.5106948908345339, + "noteOrder": 4500, + "time": 0.6596475673279397, "position": { "x": 7, "y": 0 @@ -5534,11 +8294,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, - "time": 0.514241383131996, + "noteOrder": 4524, + "time": 0.6631940596254018, "position": { "x": 7, "y": 0 @@ -5552,18 +8312,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3531, - "time": 0.517787875429458, + "noteOrder": 4500, + "time": 0.6596475673279397, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5575,18 +8335,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3555, - "time": 0.5213343677269201, + "noteOrder": 4524, + "time": 0.6631940596254018, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5603,13 +8363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3724, - "time": 0.5461598138091543, + "noteOrder": 5225, + "time": 0.7660423362518011, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5621,18 +8381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3748, - "time": 0.5497063061066164, + "noteOrder": 5298, + "time": 0.776681813144187, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5644,18 +8404,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3724, - "time": 0.5461598138091543, + "noteOrder": 5225, + "time": 0.7660423362518011, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5667,18 +8427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3748, - "time": 0.5497063061066164, + "noteOrder": 5298, + "time": 0.776681813144187, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5690,18 +8450,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3772, - "time": 0.5532527984040785, + "noteOrder": 5322, + "time": 0.7802283054416491, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5713,18 +8473,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3821, - "time": 0.5603457829990025, + "noteOrder": 5395, + "time": 0.7908677823340353, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5741,11 +8501,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3869, - "time": 0.5674387675939266, + "noteOrder": 5395, + "time": 0.7908677823340353, "position": { "x": 3, "y": 0 @@ -5764,11 +8524,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3893, - "time": 0.5709852598913887, + "noteOrder": 5467, + "time": 0.8015072592264214, "position": { "x": 3, "y": 0 @@ -5782,18 +8542,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3918, - "time": 0.5745317521888507, + "noteOrder": 5637, + "time": 0.8263327053086557, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5805,18 +8565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.5780782444863128, + "noteOrder": 5685, + "time": 0.8334256899035798, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5833,13 +8593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4111, - "time": 0.6029036905685471, + "noteOrder": 5637, + "time": 0.8263327053086557, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5856,13 +8616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4135, - "time": 0.606450182866009, + "noteOrder": 5685, + "time": 0.8334256899035798, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5879,13 +8639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4111, - "time": 0.6029036905685471, + "noteOrder": 5903, + "time": 0.8653441205807382, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5902,13 +8662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4135, - "time": 0.606450182866009, + "noteOrder": 5915, + "time": 0.8671173667294692, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5925,13 +8685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4159, - "time": 0.6099966751634711, + "noteOrder": 5915, + "time": 0.8671173667294692, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5943,18 +8703,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 234, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4232, - "time": 0.6206361520558572, + "noteOrder": 5927, + "time": 0.8688906128782001, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5966,18 +8726,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4159, - "time": 0.6099966751634711, + "noteOrder": 5927, + "time": 0.8688906128782001, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5994,11 +8754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 235, "indexInLine": 1, "isSliding": false, - "noteOrder": 4232, - "time": 0.6206361520558572, + "noteOrder": 5927, + "time": 0.8688906128782001, "position": { "x": 7, "y": 0 @@ -6012,16 +8772,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4329, - "time": 0.6348221212457054, + "noteOrder": 5939, + "time": 0.8706638590269312, "position": { "x": 7, "y": 0 @@ -6035,18 +8795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4425, - "time": 0.6490080904355536, + "noteOrder": 5939, + "time": 0.8706638590269312, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6058,18 +8818,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4498, - "time": 0.6596475673279396, + "noteOrder": 5951, + "time": 0.8724371051756622, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6081,18 +8841,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 235, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4522, - "time": 0.6631940596254018, + "noteOrder": 5951, + "time": 0.8724371051756622, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6104,18 +8864,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4498, - "time": 0.6596475673279396, + "noteOrder": 5951, + "time": 0.8724371051756622, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6127,18 +8887,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4522, - "time": 0.6631940596254018, + "noteOrder": 5963, + "time": 0.8742103513243933, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6150,16 +8910,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5223, - "time": 0.766042336251801, + "noteOrder": 5963, + "time": 0.8742103513243933, "position": { "x": 6, "y": 0 @@ -6178,11 +8938,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5296, - "time": 0.776681813144187, + "noteOrder": 5975, + "time": 0.8759835974731243, "position": { "x": 6, "y": 0 @@ -6201,13 +8961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5223, - "time": 0.766042336251801, + "noteOrder": 5975, + "time": 0.8759835974731243, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6219,18 +8979,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, + "lineGroupId": 237, "indexInLine": 1, "isSliding": false, - "noteOrder": 5296, - "time": 0.776681813144187, + "noteOrder": 5975, + "time": 0.8759835974731243, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6247,11 +9007,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5320, - "time": 0.7802283054416491, + "noteOrder": 5987, + "time": 0.8777568436218552, "position": { "x": 7, "y": 0 @@ -6265,18 +9025,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5393, - "time": 0.7908677823340353, + "noteOrder": 5987, + "time": 0.8777568436218552, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6288,18 +9048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5393, - "time": 0.7908677823340353, + "noteOrder": 6000, + "time": 0.8795300897705863, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6316,13 +9076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5465, - "time": 0.8015072592264213, + "noteOrder": 6000, + "time": 0.8795300897705863, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6339,13 +9099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5634, - "time": 0.8263327053086558, + "noteOrder": 6096, + "time": 0.8937160589604345, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6357,18 +9117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5683, - "time": 0.8334256899035798, + "noteOrder": 6108, + "time": 0.8954893051091656, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6380,18 +9140,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5634, - "time": 0.8263327053086558, + "noteOrder": 6108, + "time": 0.8954893051091656, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6408,13 +9168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 5683, - "time": 0.8334256899035798, + "noteOrder": 6120, + "time": 0.8972625512578966, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6426,16 +9186,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5900, - "time": 0.8653441205807382, + "noteOrder": 6133, + "time": 0.8990357974066276, "position": { "x": 7, "y": 0 @@ -6454,13 +9214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5925, - "time": 0.8688906128782001, + "noteOrder": 6133, + "time": 0.8990357974066276, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6472,18 +9232,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5949, - "time": 0.8724371051756622, + "noteOrder": 6145, + "time": 0.9008090435553586, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6495,18 +9255,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5973, - "time": 0.8759835974731243, + "noteOrder": 6157, + "time": 0.9025822897040895, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6523,13 +9283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6094, - "time": 0.8937160589604345, + "noteOrder": 6157, + "time": 0.9025822897040895, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6546,11 +9306,11 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6118, - "time": 0.8972625512578964, + "noteOrder": 6169, + "time": 0.9043555358528206, "position": { "x": 7, "y": 0 @@ -6569,13 +9329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6142, - "time": 0.9008090435553585, + "noteOrder": 6181, + "time": 0.9061287820015516, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6587,18 +9347,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6166, - "time": 0.9043555358528206, + "noteOrder": 6181, + "time": 0.9061287820015516, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6616,10 +9376,10 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6384, - "time": 0.936273966529979, + "noteOrder": 6387, + "time": 0.9362739665299791, "position": { "x": 4, "y": 0 @@ -6639,9 +9399,9 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6408, + "noteOrder": 6411, "time": 0.939820458827441, "position": { "x": 4, @@ -6662,9 +9422,9 @@ }, { "lineGroupId": 256, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6432, + "noteOrder": 6435, "time": 0.943366951124903, "position": { "x": 6, @@ -6685,10 +9445,10 @@ }, { "lineGroupId": 256, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6457, - "time": 0.9469134434223652, + "noteOrder": 6459, + "time": 0.946913443422365, "position": { "x": 6, "y": 0 diff --git a/tracks/Mermaid girl/341_difficulty_1b.json b/tracks/Mermaid girl/341_difficulty_1b.json index b8ef6e43..590555c4 100644 --- a/tracks/Mermaid girl/341_difficulty_1b.json +++ b/tracks/Mermaid girl/341_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 290, - "time": 0.042557907569544494, + "time": 0.0425579075695445, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 387, - "time": 0.05674387675939266, + "time": 0.056743876759392665, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 435, - "time": 0.06383686135431674, + "time": 0.06383686135431675, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 701, + "noteOrder": 702, "time": 0.1028482766263992, "position": { "x": 4, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 725, + "noteOrder": 726, "time": 0.10639476892386125, "position": { "x": 7, @@ -174,7 +174,7 @@ }, { "noteOrder": 774, - "time": 0.11348775351878532, + "time": 0.11348775351878533, "position": { "x": 8, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 798, - "time": 0.11703424581624737, + "time": 0.11703424581624738, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 822, + "noteOrder": 823, "time": 0.12058073811370941, "position": { "x": 4, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 822, + "noteOrder": 823, "time": 0.12058073811370941, "position": { "x": 6, @@ -254,7 +254,7 @@ }, { "noteOrder": 871, - "time": 0.12767372270863347, + "time": 0.1276737227086335, "position": { "x": 2, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 919, - "time": 0.13476670730355755, + "time": 0.13476670730355758, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 919, - "time": 0.13476670730355755, + "time": 0.13476670730355758, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 967, + "noteOrder": 968, "time": 0.14185969189848166, "position": { "x": 4, @@ -354,7 +354,7 @@ }, { "noteOrder": 1016, - "time": 0.14895267649340574, + "time": 0.14895267649340577, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1161, - "time": 0.17023163027817798, + "time": 0.170231630278178, "position": { "x": 4, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1209, + "noteOrder": 1210, "time": 0.17732461487310208, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 1548, - "time": 0.22697550703757063, + "time": 0.22697550703757066, "position": { "x": 8, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1596, - "time": 0.23406849163249474, + "noteOrder": 1597, + "time": 0.23406849163249477, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1596, - "time": 0.23406849163249474, + "noteOrder": 1597, + "time": 0.23406849163249477, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1644, + "noteOrder": 1645, "time": 0.24116147622741882, "position": { "x": 2, @@ -514,7 +514,7 @@ }, { "noteOrder": 1669, - "time": 0.24470796852488086, + "time": 0.2447079685248809, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1693, - "time": 0.24825446082234293, + "time": 0.2482544608223429, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1693, - "time": 0.24825446082234293, + "time": 0.2482544608223429, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1838, - "time": 0.2695334146071151, + "noteOrder": 1839, + "time": 0.26953341460711516, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1886, + "noteOrder": 1887, "time": 0.27662639920203924, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1983, + "noteOrder": 1984, "time": 0.2908123683918874, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2418, + "noteOrder": 2419, "time": 0.35464922974620416, "position": { "x": 8, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.36174221434112824, "position": { "x": 2, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2515, + "noteOrder": 2516, "time": 0.3688351989360523, "position": { "x": 7, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2612, - "time": 0.3830211681259005, + "noteOrder": 2613, + "time": 0.38302116812590054, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2636, + "noteOrder": 2637, "time": 0.38656766042336255, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2660, + "noteOrder": 2661, "time": 0.39011415272082456, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2805, + "noteOrder": 2806, "time": 0.4113931065055968, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2854, - "time": 0.4184860911005209, + "noteOrder": 2855, + "time": 0.41848609110052093, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2902, + "noteOrder": 2903, "time": 0.425579075695445, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.5106948908345339, + "noteOrder": 3484, + "time": 0.510694890834534, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.514241383131996, + "noteOrder": 3508, + "time": 0.5142413831319961, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3531, - "time": 0.517787875429458, + "noteOrder": 3532, + "time": 0.5177878754294581, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3701, "time": 0.5426133215116924, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.5461598138091543, + "noteOrder": 3726, + "time": 0.5461598138091545, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3871, "time": 0.5674387675939266, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3895, "time": 0.5709852598913887, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 3919, "time": 0.5745317521888507, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4208, + "noteOrder": 4209, "time": 0.6170896597583952, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4256, - "time": 0.6241826443533194, + "noteOrder": 4258, + "time": 0.6241826443533193, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4280, + "noteOrder": 4282, "time": 0.6277291366507813, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4304, + "noteOrder": 4306, "time": 0.6312756289482434, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4329, - "time": 0.6348221212457054, + "noteOrder": 4330, + "time": 0.6348221212457055, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4401, - "time": 0.6454615981380916, + "noteOrder": 4403, + "time": 0.6454615981380917, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.6525545827330157, + "noteOrder": 4451, + "time": 0.6525545827330156, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4475, "time": 0.6561010750304777, "position": { "x": 5, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4498, - "time": 0.6596475673279396, + "noteOrder": 4500, + "time": 0.6596475673279397, "position": { "x": 5, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4522, + "noteOrder": 4524, "time": 0.6631940596254018, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4546, - "time": 0.6667405519228637, + "noteOrder": 4548, + "time": 0.6667405519228639, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4595, + "noteOrder": 4596, "time": 0.6738335365177879, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4740, + "noteOrder": 4742, "time": 0.6951124903025601, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4764, - "time": 0.6986589826000222, + "noteOrder": 4766, + "time": 0.6986589826000221, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4788, + "noteOrder": 4790, "time": 0.7022054748974842, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4788, + "noteOrder": 4790, "time": 0.7022054748974842, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4836, + "noteOrder": 4838, "time": 0.7092984594924083, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4861, + "noteOrder": 4863, "time": 0.7128449517898704, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.7163914440873324, + "noteOrder": 4887, + "time": 0.7163914440873325, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.7163914440873324, + "noteOrder": 4887, + "time": 0.7163914440873325, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5368, - "time": 0.7873212900365731, + "noteOrder": 5371, + "time": 0.7873212900365733, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5417, + "noteOrder": 5419, "time": 0.7944142746314973, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5465, - "time": 0.8015072592264213, + "noteOrder": 5467, + "time": 0.8015072592264214, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5900, + "noteOrder": 5903, "time": 0.8653441205807382, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5925, + "noteOrder": 5927, "time": 0.8688906128782001, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5949, + "noteOrder": 5951, "time": 0.8724371051756622, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5997, + "noteOrder": 6000, "time": 0.8795300897705863, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6046, + "noteOrder": 6048, "time": 0.8866230743655105, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6287, + "noteOrder": 6290, "time": 0.9220879973401308, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6312, + "noteOrder": 6314, "time": 0.9256344896375929, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6336, - "time": 0.9291809819350548, + "noteOrder": 6338, + "time": 0.9291809819350549, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6384, - "time": 0.936273966529979, + "noteOrder": 6387, + "time": 0.9362739665299791, "position": { "x": 8, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6408, + "noteOrder": 6411, "time": 0.939820458827441, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 6435, "time": 0.943366951124903, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 6435, "time": 0.943366951124903, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6481, + "noteOrder": 6483, "time": 0.9504599357198271, "position": { "x": 2, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6505, + "noteOrder": 6508, "time": 0.9540064280172892, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6532, "time": 0.9575529203147513, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6532, "time": 0.9575529203147513, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6698, - "time": 0.9823783663969855, + "noteOrder": 6701, + "time": 0.9823783663969856, "position": { "x": 2, "y": 0 @@ -1796,10 +1796,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 193, - "time": 0.02837193837969633, + "noteOrder": 194, + "time": 0.028371938379696333, "position": { "x": 8, "y": 0 @@ -1819,10 +1819,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.03901141527208246, + "time": 0.039011415272082454, "position": { "x": 8, "y": 0 @@ -1842,10 +1842,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 580, - "time": 0.08511581513908899, + "noteOrder": 581, + "time": 0.085115815139089, "position": { "x": 6, "y": 0 @@ -1865,10 +1865,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 653, - "time": 0.09575529203147512, + "time": 0.09575529203147513, "position": { "x": 6, "y": 0 @@ -1888,10 +1888,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1064, - "time": 0.15604566108832985, + "time": 0.15604566108832982, "position": { "x": 4, "y": 0 @@ -1911,10 +1911,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1137, - "time": 0.16668513798071594, + "time": 0.16668513798071596, "position": { "x": 4, "y": 0 @@ -1934,9 +1934,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1257, + "noteOrder": 1258, "time": 0.18441759946802616, "position": { "x": 4, @@ -1957,9 +1957,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1330, + "noteOrder": 1331, "time": 0.19505707636041228, "position": { "x": 4, @@ -1980,9 +1980,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, + "noteOrder": 1355, "time": 0.19860356865787432, "position": { "x": 7, @@ -2003,10 +2003,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1427, - "time": 0.20924304555026044, + "time": 0.20924304555026046, "position": { "x": 7, "y": 0 @@ -2026,9 +2026,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1451, + "noteOrder": 1452, "time": 0.2127895378477225, "position": { "x": 3, @@ -2049,9 +2049,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1523, + "noteOrder": 1524, "time": 0.22342901474010862, "position": { "x": 3, @@ -2072,10 +2072,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2031, - "time": 0.2979053529868115, + "noteOrder": 2032, + "time": 0.29790535298681153, "position": { "x": 7, "y": 0 @@ -2095,9 +2095,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2055, + "noteOrder": 2056, "time": 0.30145184528427355, "position": { "x": 7, @@ -2118,7 +2118,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2080, "time": 0.30499833758173556, @@ -2141,9 +2141,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2104, + "noteOrder": 2105, "time": 0.3085448298791976, "position": { "x": 3, @@ -2164,10 +2164,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2128, - "time": 0.3120913221766597, + "noteOrder": 2129, + "time": 0.31209132217665964, "position": { "x": 7, "y": 0 @@ -2187,9 +2187,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.31918430677158377, "position": { "x": 3, @@ -2210,10 +2210,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2128, - "time": 0.3120913221766597, + "noteOrder": 2129, + "time": 0.31209132217665964, "position": { "x": 3, "y": 0 @@ -2233,9 +2233,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.31918430677158377, "position": { "x": 7, @@ -2256,10 +2256,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2225, - "time": 0.32627729136650785, + "noteOrder": 2226, + "time": 0.3262772913665078, "position": { "x": 7, "y": 0 @@ -2279,10 +2279,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2249, - "time": 0.3298237836639698, + "noteOrder": 2250, + "time": 0.32982378366396986, "position": { "x": 7, "y": 0 @@ -2302,10 +2302,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2273, - "time": 0.3333702759614319, + "noteOrder": 2274, + "time": 0.33337027596143193, "position": { "x": 3, "y": 0 @@ -2325,9 +2325,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.33691676825889394, "position": { "x": 3, @@ -2348,10 +2348,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2322, - "time": 0.34046326055635595, + "time": 0.340463260556356, "position": { "x": 6, "y": 0 @@ -2371,9 +2371,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2370, + "noteOrder": 2371, "time": 0.34755624515128003, "position": { "x": 6, @@ -2394,10 +2394,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2539, - "time": 0.3723816912335144, + "noteOrder": 2540, + "time": 0.37238169123351433, "position": { "x": 3, "y": 0 @@ -2417,9 +2417,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2588, + "noteOrder": 2589, "time": 0.37947467582843847, "position": { "x": 3, @@ -2440,10 +2440,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2684, - "time": 0.39366064501828657, + "noteOrder": 2685, + "time": 0.3936606450182866, "position": { "x": 4, "y": 0 @@ -2463,9 +2463,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2708, + "noteOrder": 2709, "time": 0.39720713731574864, "position": { "x": 4, @@ -2486,10 +2486,10 @@ }, { "lineGroupId": 56, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2733, - "time": 0.40075362961321065, + "noteOrder": 2734, + "time": 0.4007536296132107, "position": { "x": 4, "y": 0 @@ -2509,10 +2509,10 @@ }, { "lineGroupId": 56, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2757, - "time": 0.4043001219106727, + "noteOrder": 2758, + "time": 0.40430012191067277, "position": { "x": 4, "y": 0 @@ -2532,10 +2532,10 @@ }, { "lineGroupId": 56, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2781, - "time": 0.4078466142081348, + "noteOrder": 2782, + "time": 0.40784661420813484, "position": { "x": 4, "y": 0 @@ -2555,9 +2555,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2999, + "noteOrder": 3000, "time": 0.43976504488529317, "position": { "x": 6, @@ -2578,10 +2578,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3071, - "time": 0.45040452177767926, + "noteOrder": 3072, + "time": 0.4504045217776793, "position": { "x": 6, "y": 0 @@ -2601,10 +2601,10 @@ }, { "lineGroupId": 60, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3095, - "time": 0.45395101407514127, + "noteOrder": 3097, + "time": 0.4539510140751413, "position": { "x": 7, "y": 0 @@ -2624,9 +2624,9 @@ }, { "lineGroupId": 60, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.45749750637260334, "position": { "x": 6, @@ -2647,9 +2647,9 @@ }, { "lineGroupId": 60, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.4610439986700654, "position": { "x": 7, @@ -2670,9 +2670,9 @@ }, { "lineGroupId": 60, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3216, + "noteOrder": 3217, "time": 0.4716834755624515, "position": { "x": 7, @@ -2693,9 +2693,9 @@ }, { "lineGroupId": 60, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3240, + "noteOrder": 3242, "time": 0.47522996785991356, "position": { "x": 6, @@ -2716,9 +2716,9 @@ }, { "lineGroupId": 60, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3265, + "noteOrder": 3266, "time": 0.4787764601573756, "position": { "x": 7, @@ -2739,9 +2739,9 @@ }, { "lineGroupId": 60, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.48232295245483764, "position": { "x": 6, @@ -2762,9 +2762,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3023, + "noteOrder": 3024, "time": 0.44331153718275523, "position": { "x": 4, @@ -2785,10 +2785,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3071, - "time": 0.45040452177767926, + "noteOrder": 3072, + "time": 0.4504045217776793, "position": { "x": 4, "y": 0 @@ -2808,10 +2808,10 @@ }, { "lineGroupId": 61, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3095, - "time": 0.45395101407514127, + "noteOrder": 3097, + "time": 0.4539510140751413, "position": { "x": 4, "y": 0 @@ -2831,9 +2831,9 @@ }, { "lineGroupId": 61, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.45749750637260334, "position": { "x": 4, @@ -2854,9 +2854,9 @@ }, { "lineGroupId": 61, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.4610439986700654, "position": { "x": 4, @@ -2877,9 +2877,9 @@ }, { "lineGroupId": 61, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3216, + "noteOrder": 3217, "time": 0.4716834755624515, "position": { "x": 4, @@ -2900,9 +2900,9 @@ }, { "lineGroupId": 61, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3240, + "noteOrder": 3242, "time": 0.47522996785991356, "position": { "x": 4, @@ -2923,9 +2923,9 @@ }, { "lineGroupId": 61, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3265, + "noteOrder": 3266, "time": 0.4787764601573756, "position": { "x": 4, @@ -2946,9 +2946,9 @@ }, { "lineGroupId": 61, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.48232295245483764, "position": { "x": 4, @@ -2969,10 +2969,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.49650892164468585, + "noteOrder": 3387, + "time": 0.4965089216446858, "position": { "x": 8, "y": 0 @@ -2992,9 +2992,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, + "noteOrder": 3459, "time": 0.5071483985370719, "position": { "x": 8, @@ -3015,9 +3015,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3579, + "noteOrder": 3580, "time": 0.5248808600243822, "position": { "x": 5, @@ -3038,9 +3038,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.5355203369167683, "position": { "x": 5, @@ -3061,10 +3061,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3676, - "time": 0.5390668292142302, + "noteOrder": 3677, + "time": 0.5390668292142303, "position": { "x": 3, "y": 0 @@ -3084,10 +3084,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3724, - "time": 0.5461598138091543, + "noteOrder": 3726, + "time": 0.5461598138091545, "position": { "x": 3, "y": 0 @@ -3107,9 +3107,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3772, + "noteOrder": 3774, "time": 0.5532527984040785, "position": { "x": 3, @@ -3130,10 +3130,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.5638922752964646, + "noteOrder": 3846, + "time": 0.5638922752964647, "position": { "x": 3, "y": 0 @@ -3153,9 +3153,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3966, + "noteOrder": 3967, "time": 0.5816247367837748, "position": { "x": 7, @@ -3176,9 +3176,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, + "noteOrder": 4040, "time": 0.592264213676161, "position": { "x": 7, @@ -3199,10 +3199,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4063, - "time": 0.595810705973623, + "noteOrder": 4064, + "time": 0.5958107059736231, "position": { "x": 3, "y": 0 @@ -3222,9 +3222,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.6029036905685471, "position": { "x": 3, @@ -3245,9 +3245,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4159, + "noteOrder": 4161, "time": 0.6099966751634711, "position": { "x": 3, @@ -3268,9 +3268,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4184, + "noteOrder": 4185, "time": 0.6135431674609332, "position": { "x": 3, @@ -3291,9 +3291,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4353, + "noteOrder": 4355, "time": 0.6383686135431675, "position": { "x": 7, @@ -3314,10 +3314,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4377, - "time": 0.6419151058406295, + "noteOrder": 4379, + "time": 0.6419151058406296, "position": { "x": 7, "y": 0 @@ -3337,9 +3337,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.7234844286822565, "position": { "x": 4, @@ -3360,10 +3360,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.7305774132771805, + "noteOrder": 4983, + "time": 0.7305774132771806, "position": { "x": 4, "y": 0 @@ -3383,9 +3383,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.7234844286822565, "position": { "x": 6, @@ -3406,10 +3406,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.7305774132771805, + "noteOrder": 4983, + "time": 0.7305774132771806, "position": { "x": 6, "y": 0 @@ -3429,9 +3429,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5030, + "noteOrder": 5032, "time": 0.7376703978721046, "position": { "x": 3, @@ -3452,10 +3452,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5078, - "time": 0.7447633824670288, + "noteOrder": 5080, + "time": 0.7447633824670287, "position": { "x": 3, "y": 0 @@ -3475,9 +3475,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5320, + "noteOrder": 5322, "time": 0.7802283054416491, "position": { "x": 6, @@ -3498,10 +3498,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5465, - "time": 0.8015072592264213, + "noteOrder": 5467, + "time": 0.8015072592264214, "position": { "x": 6, "y": 0 @@ -3521,10 +3521,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5514, - "time": 0.8086002438213454, + "noteOrder": 5516, + "time": 0.8086002438213455, "position": { "x": 4, "y": 0 @@ -3544,10 +3544,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5707, - "time": 0.8369721822010417, + "noteOrder": 5709, + "time": 0.8369721822010419, "position": { "x": 4, "y": 0 @@ -3567,10 +3567,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5562, - "time": 0.8156932284162696, + "noteOrder": 5564, + "time": 0.8156932284162697, "position": { "x": 6, "y": 0 @@ -3590,10 +3590,10 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5707, - "time": 0.8369721822010417, + "noteOrder": 5709, + "time": 0.8369721822010419, "position": { "x": 6, "y": 0 @@ -3613,9 +3613,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5804, + "noteOrder": 5806, "time": 0.85115815139089, "position": { "x": 8, @@ -3636,10 +3636,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5876, - "time": 0.861797628283276, + "noteOrder": 5879, + "time": 0.8617976282832761, "position": { "x": 8, "y": 0 @@ -3659,10 +3659,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6191, - "time": 0.9079020281502825, + "noteOrder": 6193, + "time": 0.9079020281502826, "position": { "x": 6, "y": 0 @@ -3682,9 +3682,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6263, + "noteOrder": 6266, "time": 0.9185415050426687, "position": { "x": 6, @@ -3705,9 +3705,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6578, + "noteOrder": 6580, "time": 0.9646459049096753, "position": { "x": 7, @@ -3728,9 +3728,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6626, + "noteOrder": 6629, "time": 0.9717388895045994, "position": { "x": 4, @@ -3751,10 +3751,10 @@ }, { "lineGroupId": 136, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6698, - "time": 0.9823783663969855, + "noteOrder": 6701, + "time": 0.9823783663969856, "position": { "x": 4, "y": 0 diff --git a/tracks/Mermaid girl/info.json b/tracks/Mermaid girl/info.json index 4663912d..dee9371f 100644 --- a/tracks/Mermaid girl/info.json +++ b/tracks/Mermaid girl/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Mermaid girl", - "SongLength": "131.761633", + "SongLength": "121.808980", "SongAuthorName": "Cream puff", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Metric/312_difficulty_1a.json b/tracks/Metric/312_difficulty_1a.json index ac697501..00aa57d0 100644 --- a/tracks/Metric/312_difficulty_1a.json +++ b/tracks/Metric/312_difficulty_1a.json @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.04804804804804805, "position": { "x": 3, @@ -134,7 +134,7 @@ }, { "noteOrder": 481, - "time": 0.0800800800800801, + "time": 0.08008008008008007, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 481, - "time": 0.0800800800800801, + "time": 0.08008008008008007, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 673, - "time": 0.11211211211211211, + "time": 0.1121121121121121, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.12812812812812813, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.14414414414414414, "position": { "x": 7, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.15215215215215214, "position": { "x": 3, @@ -314,7 +314,7 @@ }, { "noteOrder": 962, - "time": 0.1601601601601602, + "time": 0.16016016016016013, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1106, - "time": 0.1841841841841842, + "time": 0.18418418418418417, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.22022022022022023, "position": { "x": 2, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.23623623623623624, + "noteOrder": 1419, + "time": 0.2362362362362362, "position": { "x": 8, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.25625625625625625, "position": { "x": 7, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1562, - "time": 0.2602602602602603, + "noteOrder": 1563, + "time": 0.2602602602602602, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1755, - "time": 0.2922922922922923, + "time": 0.29229229229229226, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.2962962962962963, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.3003003003003003, + "noteOrder": 1804, + "time": 0.30030030030030025, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3043043043043043, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.3083083083083083, "position": { "x": 6, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1863, + "noteOrder": 1864, "time": 0.3103103103103103, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.31231231231231227, + "noteOrder": 1876, + "time": 0.3123123123123123, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.31631631631631635, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.3203203203203204, + "noteOrder": 1924, + "time": 0.32032032032032026, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1935, - "time": 0.32232232232232233, + "noteOrder": 1936, + "time": 0.3223223223223223, "position": { "x": 5, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.32432432432432434, + "noteOrder": 1948, + "time": 0.3243243243243243, "position": { "x": 2, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.33633633633633636, + "noteOrder": 2020, + "time": 0.3363363363363363, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.35235235235235235, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.3563563563563563, "position": { "x": 7, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2151, - "time": 0.3583583583583584, + "noteOrder": 2152, + "time": 0.35835835835835833, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.36036036036036034, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3643643643643644, + "noteOrder": 2188, + "time": 0.36436436436436437, "position": { "x": 5, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 2212, - "time": 0.3683683683683684, + "time": 0.36836836836836834, "position": { "x": 4, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 2236, - "time": 0.3723723723723724, + "time": 0.3723723723723723, "position": { "x": 6, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 2260, - "time": 0.3763763763763764, + "time": 0.37637637637637633, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.3803803803803804, + "noteOrder": 2285, + "time": 0.38038038038038036, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2308, + "noteOrder": 2309, "time": 0.3843843843843844, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.3883883883883884, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2404, + "noteOrder": 2405, "time": 0.40040040040040037, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.41641641641641647, + "noteOrder": 2501, + "time": 0.4164164164164164, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2596, - "time": 0.43243243243243246, + "noteOrder": 2597, + "time": 0.4324324324324324, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.44844844844844844, + "noteOrder": 2693, + "time": 0.4484484484484484, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.45245245245245247, + "noteOrder": 2717, + "time": 0.4524524524524524, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.4644644644644645, + "noteOrder": 2790, + "time": 0.46446446446446443, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.4684684684684685, + "noteOrder": 2814, + "time": 0.46846846846846846, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.4804804804804805, "position": { "x": 8, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2981, - "time": 0.4964964964964965, + "noteOrder": 2982, + "time": 0.49649649649649646, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3005, - "time": 0.5005005005005005, + "noteOrder": 3006, + "time": 0.5005005005005004, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5125125125125125, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5285285285285285, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3750, - "time": 0.6246246246246245, + "noteOrder": 3751, + "time": 0.6246246246246246, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3799, "time": 0.6326326326326327, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.6486486486486487, + "noteOrder": 3896, + "time": 0.6486486486486486, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.6686686686686686, + "noteOrder": 4016, + "time": 0.6686686686686687, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4038, - "time": 0.6726726726726727, + "noteOrder": 4040, + "time": 0.6726726726726726, "position": { "x": 8, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4135, - "time": 0.6886886886886887, + "noteOrder": 4136, + "time": 0.6886886886886886, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4183, + "noteOrder": 4184, "time": 0.6966966966966966, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.7007007007007008, + "noteOrder": 4208, + "time": 0.7007007007007007, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4232, "time": 0.7047047047047047, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7207207207207207, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.7287287287287288, + "noteOrder": 4377, + "time": 0.7287287287287287, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4401, "time": 0.7327327327327328, "position": { "x": 7, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4423, - "time": 0.7367367367367368, + "noteOrder": 4425, + "time": 0.7367367367367367, "position": { "x": 8, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4519, - "time": 0.7527527527527528, + "noteOrder": 4521, + "time": 0.7527527527527527, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7567567567567567, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4593, "time": 0.7647647647647647, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4617, "time": 0.7687687687687688, "position": { "x": 8, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4689, "time": 0.7807807807807808, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4784, - "time": 0.7967967967967968, + "noteOrder": 4785, + "time": 0.7967967967967967, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4880, + "noteOrder": 4882, "time": 0.8128128128128128, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5000, - "time": 0.8328328328328329, + "noteOrder": 5002, + "time": 0.8328328328328328, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5024, + "noteOrder": 5026, "time": 0.8368368368368369, "position": { "x": 7, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8408408408408409, + "noteOrder": 5050, + "time": 0.8408408408408408, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.8648648648648649, + "noteOrder": 5194, + "time": 0.8648648648648648, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.8688688688688688, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.8728728728728729, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5264, - "time": 0.876876876876877, + "noteOrder": 5266, + "time": 0.8768768768768769, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.8808808808808809, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.8848848848848849, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5324, + "noteOrder": 5327, "time": 0.8868868868868869, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5339, "time": 0.8888888888888888, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5361, - "time": 0.892892892892893, + "noteOrder": 5363, + "time": 0.8928928928928928, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5385, - "time": 0.8968968968968969, + "noteOrder": 5387, + "time": 0.8968968968968968, "position": { "x": 3, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5397, - "time": 0.898898898898899, + "noteOrder": 5399, + "time": 0.8988988988988988, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5409, - "time": 0.9009009009009009, + "noteOrder": 5411, + "time": 0.9009009009009008, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5481, + "noteOrder": 5483, "time": 0.9129129129129129, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5577, - "time": 0.928928928928929, + "noteOrder": 5579, + "time": 0.9289289289289289, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5673, - "time": 0.944944944944945, + "noteOrder": 5675, + "time": 0.9449449449449449, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5697, - "time": 0.948948948948949, + "noteOrder": 5699, + "time": 0.9489489489489489, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5721, - "time": 0.952952952952953, + "noteOrder": 5723, + "time": 0.9529529529529529, "position": { "x": 4, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.9569569569569569, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.960960960960961, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5817, - "time": 0.968968968968969, + "noteOrder": 5819, + "time": 0.9689689689689689, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5817, - "time": 0.968968968968969, + "noteOrder": 5819, + "time": 0.9689689689689689, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5841, - "time": 0.972972972972973, + "noteOrder": 5844, + "time": 0.9729729729729729, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5841, - "time": 0.972972972972973, + "noteOrder": 5844, + "time": 0.9729729729729729, "position": { "x": 3, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5865, + "noteOrder": 5868, "time": 0.9769769769769769, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5865, + "noteOrder": 5868, "time": 0.9769769769769769, "position": { "x": 7, @@ -2216,10 +2216,33 @@ "lineNodes": [ { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10410410410410412, + "time": 0.1041041041041041, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 637, + "time": 0.1061061061061061, "position": { "x": 7, "y": 0 @@ -2237,12 +2260,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 637, + "time": 0.1061061061061061, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 649, - "time": 0.10810810810810811, + "time": 0.1081081081081081, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 661, + "time": 0.11011011011011011, "position": { "x": 7, "y": 0 @@ -2260,12 +2329,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 661, + "time": 0.11011011011011011, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 673, + "time": 0.1121121121121121, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 673, + "time": 0.1121121121121121, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 818, + "time": 0.13613613613613612, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 817, - "time": 0.13613613613613615, + "noteOrder": 830, + "time": 0.13813813813813813, "position": { "x": 3, "y": 0 @@ -2283,11 +2444,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 830, + "time": 0.13813813813813813, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.14014014014014015, "position": { "x": 3, @@ -2307,13 +2491,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1010, - "time": 0.16816816816816818, + "noteOrder": 854, + "time": 0.14214214214214213, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2330,13 +2514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1034, - "time": 0.17217217217217218, + "noteOrder": 854, + "time": 0.14214214214214213, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2348,18 +2532,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1250, - "time": 0.20820820820820823, + "noteOrder": 866, + "time": 0.14414414414414414, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -2371,18 +2555,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1274, - "time": 0.21221221221221223, + "noteOrder": 866, + "time": 0.14414414414414414, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2399,13 +2583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, - "time": 0.21621621621621623, + "noteOrder": 1010, + "time": 0.16816816816816815, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2417,18 +2601,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1346, - "time": 0.22422422422422422, + "noteOrder": 1022, + "time": 0.17017017017017017, "position": { - "x": 8, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1022, + "time": 0.17017017017017017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1034, + "time": 0.17217217217217215, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2445,13 +2675,5257 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.22822822822822822, + "noteOrder": 1046, + "time": 0.17417417417417416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1046, + "time": 0.17417417417417416, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1058, + "time": 0.17617617617617617, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1058, + "time": 0.17617617617617617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1250, + "time": 0.2082082082082082, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1262, + "time": 0.2102102102102102, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1262, + "time": 0.2102102102102102, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2122122122122122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2122122122122122, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2122122122122122, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1287, + "time": 0.2142142142142142, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1287, + "time": 0.2142142142142142, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1299, + "time": 0.2162162162162162, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1299, + "time": 0.2162162162162162, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1299, + "time": 0.2162162162162162, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1311, + "time": 0.2182182182182182, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1311, + "time": 0.2182182182182182, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1323, + "time": 0.22022022022022023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1323, + "time": 0.22022022022022023, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1347, + "time": 0.2242242242242242, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1359, + "time": 0.2262262262262262, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1359, + "time": 0.2262262262262262, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1371, + "time": 0.22822822822822822, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1371, + "time": 0.22822822822822822, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1371, + "time": 0.22822822822822822, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1383, + "time": 0.23023023023023023, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1383, + "time": 0.23023023023023023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1395, + "time": 0.23223223223223222, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1395, + "time": 0.23223223223223222, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1395, + "time": 0.23223223223223222, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1407, + "time": 0.23423423423423423, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1407, + "time": 0.23423423423423423, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2362362362362362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2362362362362362, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.24024024024024024, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1455, + "time": 0.24224224224224222, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1455, + "time": 0.24224224224224222, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1467, + "time": 0.24424424424424424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.24624624624624625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.24624624624624625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.24824824824824823, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2502502502502502, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2502502502502502, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.25225225225225223, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1527, + "time": 0.25425425425425424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1527, + "time": 0.25425425425425424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.27227227227227224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1647, + "time": 0.27427427427427425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1647, + "time": 0.27427427427427425, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1659, + "time": 0.27627627627627627, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1659, + "time": 0.27627627627627627, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1659, + "time": 0.27627627627627627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1671, + "time": 0.2782782782782783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1671, + "time": 0.2782782782782783, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2802802802802803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2802802802802803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2802802802802803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1695, + "time": 0.28228228228228225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1695, + "time": 0.28228228228228225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1707, + "time": 0.28428428428428426, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1707, + "time": 0.28428428428428426, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1707, + "time": 0.28428428428428426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1719, + "time": 0.2862862862862863, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1719, + "time": 0.2862862862862863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1731, + "time": 0.2882882882882883, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1731, + "time": 0.2882882882882883, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1972, + "time": 0.3283283283283283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3303303303303303, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3303303303303303, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1996, + "time": 0.33233233233233234, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1996, + "time": 0.33233233233233234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1996, + "time": 0.33233233233233234, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2008, + "time": 0.33433433433433435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2008, + "time": 0.33433433433433435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3363363363363363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3363363363363363, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.34034034034034033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.34234234234234234, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2056, + "time": 0.34234234234234234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3443443443443443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3443443443443443, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3443443443443443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3463463463463463, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2080, + "time": 0.3463463463463463, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3483483483483483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3483483483483483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3483483483483483, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2104, + "time": 0.35035035035035034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2104, + "time": 0.35035035035035034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2116, + "time": 0.35235235235235235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2116, + "time": 0.35235235235235235, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.3923923923923924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2369, + "time": 0.39439439439439433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.39439439439439433, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.39639639639639634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2381, + "time": 0.39639639639639634, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2381, + "time": 0.39639639639639634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2393, + "time": 0.39839839839839836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2393, + "time": 0.39839839839839836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2405, + "time": 0.40040040040040037, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2405, + "time": 0.40040040040040037, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2429, + "time": 0.4044044044044044, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4164164164164164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2549, + "time": 0.4244244244244244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2561, + "time": 0.4264264264264264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2561, + "time": 0.4264264264264264, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2573, + "time": 0.4284284284284284, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2573, + "time": 0.4284284284284284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2573, + "time": 0.4284284284284284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2585, + "time": 0.4304304304304304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2585, + "time": 0.4304304304304304, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4324324324324324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4324324324324324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4364364364364364, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2693, + "time": 0.4484484484484484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2741, + "time": 0.45645645645645644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2753, + "time": 0.45845845845845845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2753, + "time": 0.45845845845845845, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2765, + "time": 0.46046046046046046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2765, + "time": 0.46046046046046046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2765, + "time": 0.46046046046046046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4624624624624625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2777, + "time": 0.4624624624624625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2790, + "time": 0.46446446446446443, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2790, + "time": 0.46446446446446443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.4724724724724724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2886, + "time": 0.4804804804804805, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2910, + "time": 0.48448448448448445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2922, + "time": 0.48648648648648646, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2922, + "time": 0.48648648648648646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2934, + "time": 0.48848848848848847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2934, + "time": 0.48848848848848847, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2934, + "time": 0.48848848848848847, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2946, + "time": 0.4904904904904905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2946, + "time": 0.4904904904904905, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2958, + "time": 0.4924924924924925, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2958, + "time": 0.4924924924924925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2958, + "time": 0.4924924924924925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2970, + "time": 0.4944944944944945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2970, + "time": 0.4944944944944945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2982, + "time": 0.49649649649649646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2982, + "time": 0.49649649649649646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5045045045045045, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5125125125125125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5205205205205204, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5225225225225225, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5225225225225225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5245245245245246, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5245245245245246, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5245245245245246, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5265265265265265, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5265265265265265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5285285285285285, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3174, + "time": 0.5285285285285285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5445445445445445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3415, + "time": 0.5685685685685685, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5605605605605606, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5765765765765766, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3511, + "time": 0.5845845845845845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5765765765765766, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3559, + "time": 0.5925925925925926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6006006006006005, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.5925925925925926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6086086086086085, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3703, + "time": 0.6166166166166166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6086086086086085, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6246246246246246, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6326326326326327, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3848, + "time": 0.6406406406406405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3944, + "time": 0.6566566566566566, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3992, + "time": 0.6646646646646647, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4040, + "time": 0.6726726726726726, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4088, + "time": 0.6806806806806807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4100, + "time": 0.6826826826826826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4100, + "time": 0.6826826826826826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4112, + "time": 0.6846846846846847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4112, + "time": 0.6846846846846847, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4112, + "time": 0.6846846846846847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4124, + "time": 0.6866866866866866, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4124, + "time": 0.6866866866866866, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4136, + "time": 0.6886886886886886, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4136, + "time": 0.6886886886886886, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4160, + "time": 0.6926926926926926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7047047047047047, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4280, + "time": 0.7127127127127126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4292, + "time": 0.7147147147147146, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4292, + "time": 0.7147147147147146, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4304, + "time": 0.7167167167167167, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4304, + "time": 0.7167167167167167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4304, + "time": 0.7167167167167167, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4317, + "time": 0.7187187187187186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4317, + "time": 0.7187187187187186, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4329, + "time": 0.7207207207207207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4329, + "time": 0.7207207207207207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4353, + "time": 0.7247247247247247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4425, + "time": 0.7367367367367367, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4473, + "time": 0.7447447447447446, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4485, + "time": 0.7467467467467467, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4485, + "time": 0.7467467467467467, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7487487487487486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7487487487487486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4497, + "time": 0.7487487487487486, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4509, + "time": 0.7507507507507507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4509, + "time": 0.7507507507507507, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7527527527527527, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4521, + "time": 0.7527527527527527, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4569, + "time": 0.7607607607607607, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4617, + "time": 0.7687687687687688, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7767767767767768, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4677, + "time": 0.7787787787787788, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4677, + "time": 0.7787787787787788, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7807807807807808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7807807807807808, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.7847847847847848, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4725, + "time": 0.7867867867867867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4725, + "time": 0.7867867867867867, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7887887887887887, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7887887887887887, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7887887887887887, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4749, + "time": 0.7907907907907907, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4749, + "time": 0.7907907907907907, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7927927927927927, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7927927927927927, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7927927927927927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4773, + "time": 0.7947947947947948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4773, + "time": 0.7947947947947948, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4785, + "time": 0.7967967967967967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4785, + "time": 0.7967967967967967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8008008008008007, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2463,18 +7937,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.23223223223223224, + "noteOrder": 4822, + "time": 0.8028028028028028, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2491,11 +7965,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1442, - "time": 0.24024024024024024, + "noteOrder": 4822, + "time": 0.8028028028028028, "position": { "x": 6, "y": 0 @@ -2514,13 +7988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1466, - "time": 0.24424424424424424, + "noteOrder": 4834, + "time": 0.8048048048048048, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2532,18 +8006,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1490, - "time": 0.24824824824824826, + "noteOrder": 4834, + "time": 0.8048048048048048, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2560,11 +8034,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1514, - "time": 0.25225225225225223, + "noteOrder": 4834, + "time": 0.8048048048048048, "position": { "x": 4, "y": 0 @@ -2583,13 +8057,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.2722722722722723, + "noteOrder": 4846, + "time": 0.8068068068068068, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2606,13 +8080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1659, - "time": 0.2762762762762763, + "noteOrder": 4846, + "time": 0.8068068068068068, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2624,18 +8098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1683, - "time": 0.2802802802802803, + "noteOrder": 4858, + "time": 0.8088088088088088, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2652,11 +8126,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1707, - "time": 0.2842842842842843, + "noteOrder": 4858, + "time": 0.8088088088088088, "position": { "x": 7, "y": 0 @@ -2670,18 +8144,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1971, - "time": 0.32832832832832837, + "noteOrder": 4858, + "time": 0.8088088088088088, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2698,13 +8172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1995, - "time": 0.33233233233233234, + "noteOrder": 4870, + "time": 0.8108108108108109, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2716,18 +8190,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2043, - "time": 0.34034034034034033, + "noteOrder": 4870, + "time": 0.8108108108108109, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2739,18 +8213,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2067, - "time": 0.34434434434434436, + "noteOrder": 4882, + "time": 0.8128128128128128, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2767,13 +8241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2091, - "time": 0.3483483483483483, + "noteOrder": 4882, + "time": 0.8128128128128128, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2785,18 +8259,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2356, - "time": 0.3923923923923924, + "noteOrder": 4906, + "time": 0.8168168168168168, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2813,13 +8287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.3963963963963964, + "noteOrder": 4918, + "time": 0.8188188188188187, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2831,18 +8305,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2428, - "time": 0.4044044044044044, + "noteOrder": 4918, + "time": 0.8188188188188187, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2859,13 +8333,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.41641641641641647, + "noteOrder": 4930, + "time": 0.8208208208208208, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2877,18 +8351,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2548, - "time": 0.42442442442442446, + "noteOrder": 4942, + "time": 0.8228228228228227, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2905,13 +8379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2572, - "time": 0.42842842842842843, + "noteOrder": 4942, + "time": 0.8228228228228227, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2923,18 +8397,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.4364364364364364, + "noteOrder": 4954, + "time": 0.8248248248248248, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2946,18 +8420,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.44844844844844844, + "noteOrder": 4966, + "time": 0.8268268268268267, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2969,18 +8443,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2740, - "time": 0.45645645645645644, + "noteOrder": 4966, + "time": 0.8268268268268267, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2992,18 +8466,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2764, - "time": 0.4604604604604605, + "noteOrder": 4978, + "time": 0.8288288288288288, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3015,18 +8489,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2837, - "time": 0.4724724724724725, + "noteOrder": 4990, + "time": 0.8308308308308308, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3043,11 +8517,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2885, - "time": 0.4804804804804805, + "noteOrder": 4990, + "time": 0.8308308308308308, "position": { "x": 5, "y": 0 @@ -3066,11 +8540,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2909, - "time": 0.4844844844844845, + "noteOrder": 5098, + "time": 0.8488488488488488, "position": { "x": 7, "y": 0 @@ -3084,16 +8558,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2933, - "time": 0.48848848848848847, + "noteOrder": 5110, + "time": 0.8508508508508509, "position": { "x": 7, "y": 0 @@ -3112,13 +8586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2957, - "time": 0.4924924924924925, + "noteOrder": 5110, + "time": 0.8508508508508509, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3130,18 +8604,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3029, - "time": 0.5045045045045045, + "noteOrder": 5122, + "time": 0.8528528528528528, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3158,13 +8632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3077, - "time": 0.5125125125125125, + "noteOrder": 5122, + "time": 0.8528528528528528, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3181,13 +8655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, - "time": 0.5205205205205206, + "noteOrder": 5122, + "time": 0.8528528528528528, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3199,18 +8673,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, - "time": 0.5245245245245246, + "noteOrder": 5134, + "time": 0.8548548548548548, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3227,13 +8701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3269, - "time": 0.5445445445445446, + "noteOrder": 5134, + "time": 0.8548548548548548, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3250,11 +8724,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3413, - "time": 0.5685685685685686, + "noteOrder": 5146, + "time": 0.8568568568568568, "position": { "x": 5, "y": 0 @@ -3273,13 +8747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3365, - "time": 0.5605605605605606, + "noteOrder": 5146, + "time": 0.8568568568568568, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3291,18 +8765,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.5765765765765766, + "noteOrder": 5146, + "time": 0.8568568568568568, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3319,11 +8793,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 172, "indexInLine": 2, "isSliding": false, - "noteOrder": 3510, - "time": 0.5845845845845846, + "noteOrder": 5158, + "time": 0.8588588588588588, "position": { "x": 7, "y": 0 @@ -3342,11 +8816,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3461, - "time": 0.5765765765765766, + "noteOrder": 5158, + "time": 0.8588588588588588, "position": { "x": 5, "y": 0 @@ -3360,18 +8834,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3558, - "time": 0.5925925925925926, + "noteOrder": 5170, + "time": 0.8608608608608608, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3383,16 +8857,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3606, - "time": 0.6006006006006006, + "noteOrder": 5170, + "time": 0.8608608608608608, "position": { "x": 4, "y": 0 @@ -3406,18 +8880,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3558, - "time": 0.5925925925925926, + "noteOrder": 5170, + "time": 0.8608608608608608, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3429,18 +8903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 117, - "indexInLine": 1, + { + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.6086086086086085, + "noteOrder": 5182, + "time": 0.8628628628628627, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3452,18 +8926,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 2, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3702, - "time": 0.6166166166166166, + "noteOrder": 5182, + "time": 0.8628628628628627, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3475,16 +8949,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3654, - "time": 0.6086086086086085, + "noteOrder": 5194, + "time": 0.8648648648648648, "position": { "x": 5, "y": 0 @@ -3503,13 +8977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3750, - "time": 0.6246246246246245, + "noteOrder": 5194, + "time": 0.8648648648648648, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3526,11 +9000,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 2, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6326326326326327, + "noteOrder": 5435, + "time": 0.9049049049049048, "position": { "x": 4, "y": 0 @@ -3549,13 +9023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.6406406406406407, + "noteOrder": 5447, + "time": 0.9069069069069069, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3567,18 +9041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3942, - "time": 0.6566566566566567, + "noteOrder": 5447, + "time": 0.9069069069069069, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3590,18 +9064,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3990, - "time": 0.6646646646646647, + "noteOrder": 5459, + "time": 0.9089089089089089, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3618,13 +9092,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4038, - "time": 0.6726726726726727, + "noteOrder": 5459, + "time": 0.9089089089089089, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3641,13 +9115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4086, - "time": 0.6806806806806807, + "noteOrder": 5459, + "time": 0.9089089089089089, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3659,18 +9133,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4111, - "time": 0.6846846846846848, + "noteOrder": 5471, + "time": 0.9109109109109109, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3687,13 +9161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4159, - "time": 0.6926926926926927, + "noteOrder": 5471, + "time": 0.9109109109109109, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3710,13 +9184,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4231, - "time": 0.7047047047047047, + "noteOrder": 5483, + "time": 0.9129129129129129, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3733,11 +9207,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4279, - "time": 0.7127127127127126, + "noteOrder": 5483, + "time": 0.9129129129129129, "position": { "x": 7, "y": 0 @@ -3756,11 +9230,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4303, - "time": 0.7167167167167168, + "noteOrder": 5507, + "time": 0.9169169169169169, "position": { "x": 7, "y": 0 @@ -3774,18 +9248,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4351, - "time": 0.7247247247247247, + "noteOrder": 5519, + "time": 0.9189189189189189, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3797,16 +9271,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.7367367367367368, + "noteOrder": 5519, + "time": 0.9189189189189189, "position": { "x": 5, "y": 0 @@ -3820,18 +9294,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4471, - "time": 0.7447447447447448, + "noteOrder": 5531, + "time": 0.9209209209209209, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3843,18 +9317,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4495, - "time": 0.7487487487487487, + "noteOrder": 5531, + "time": 0.9209209209209209, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3871,13 +9345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4567, - "time": 0.7607607607607608, + "noteOrder": 5531, + "time": 0.9209209209209209, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3894,13 +9368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4615, - "time": 0.7687687687687688, + "noteOrder": 5543, + "time": 0.9229229229229229, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3917,13 +9391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4663, - "time": 0.7767767767767768, + "noteOrder": 5543, + "time": 0.9229229229229229, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3935,18 +9409,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4711, - "time": 0.7847847847847848, + "noteOrder": 5555, + "time": 0.924924924924925, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3963,13 +9437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4736, - "time": 0.7887887887887889, + "noteOrder": 5555, + "time": 0.924924924924925, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3981,16 +9455,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4760, - "time": 0.7927927927927928, + "noteOrder": 5555, + "time": 0.924924924924925, "position": { "x": 7, "y": 0 @@ -4004,18 +9478,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4808, - "time": 0.8008008008008007, + "noteOrder": 5567, + "time": 0.9269269269269268, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4032,13 +9506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4832, - "time": 0.8048048048048049, + "noteOrder": 5567, + "time": 0.9269269269269268, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4050,18 +9524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4856, - "time": 0.8088088088088088, + "noteOrder": 5579, + "time": 0.9289289289289289, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4078,13 +9552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4904, - "time": 0.8168168168168168, + "noteOrder": 5579, + "time": 0.9289289289289289, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4101,13 +9575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4928, - "time": 0.8208208208208209, + "noteOrder": 5603, + "time": 0.9329329329329329, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4119,18 +9593,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4952, - "time": 0.8248248248248249, + "noteOrder": 5615, + "time": 0.9349349349349348, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4147,13 +9621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4976, - "time": 0.8288288288288288, + "noteOrder": 5615, + "time": 0.9349349349349348, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4165,18 +9639,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5096, - "time": 0.8488488488488489, + "noteOrder": 5627, + "time": 0.9369369369369369, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4193,13 +9667,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5120, - "time": 0.8528528528528528, + "noteOrder": 5627, + "time": 0.9369369369369369, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4211,18 +9685,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5144, - "time": 0.8568568568568569, + "noteOrder": 5627, + "time": 0.9369369369369369, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4234,18 +9708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5168, - "time": 0.8608608608608609, + "noteOrder": 5639, + "time": 0.9389389389389389, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4262,13 +9736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5433, - "time": 0.9049049049049049, + "noteOrder": 5639, + "time": 0.9389389389389389, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4285,13 +9759,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5457, - "time": 0.908908908908909, + "noteOrder": 5651, + "time": 0.9409409409409408, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4303,18 +9777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5505, - "time": 0.9169169169169169, + "noteOrder": 5651, + "time": 0.9409409409409408, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4326,18 +9800,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5529, - "time": 0.920920920920921, + "noteOrder": 5651, + "time": 0.9409409409409408, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4349,18 +9823,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5553, - "time": 0.924924924924925, + "noteOrder": 5663, + "time": 0.9429429429429429, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4377,13 +9851,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5601, - "time": 0.9329329329329329, + "noteOrder": 5663, + "time": 0.9429429429429429, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4400,13 +9874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5625, - "time": 0.936936936936937, + "noteOrder": 5675, + "time": 0.9449449449449449, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4418,18 +9892,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5649, - "time": 0.9409409409409409, + "noteOrder": 5675, + "time": 0.9449449449449449, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { diff --git a/tracks/Metric/312_difficulty_1b.json b/tracks/Metric/312_difficulty_1b.json index 0dbbdc52..1e8e840c 100644 --- a/tracks/Metric/312_difficulty_1b.json +++ b/tracks/Metric/312_difficulty_1b.json @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.04804804804804805, "position": { "x": 4, @@ -134,7 +134,7 @@ }, { "noteOrder": 625, - "time": 0.10410410410410412, + "time": 0.1041041041041041, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 649, - "time": 0.10810810810810811, + "time": 0.1081081081081081, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 817, - "time": 0.13613613613613615, + "noteOrder": 818, + "time": 0.13613613613613612, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.14014014014014015, "position": { "x": 6, @@ -214,7 +214,7 @@ }, { "noteOrder": 1010, - "time": 0.16816816816816818, + "time": 0.16816816816816815, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 1034, - "time": 0.17217217217217218, + "time": 0.17217217217217215, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1106, - "time": 0.1841841841841842, + "time": 0.18418418418418417, "position": { "x": 4, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.25625625625625625, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3043043043043043, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.31231231231231227, + "noteOrder": 1876, + "time": 0.3123123123123123, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.31231231231231227, + "noteOrder": 1876, + "time": 0.3123123123123123, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.3203203203203204, + "noteOrder": 1924, + "time": 0.32032032032032026, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.32432432432432434, + "noteOrder": 1948, + "time": 0.3243243243243243, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2116, "time": 0.35235235235235235, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.36036036036036034, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.3923923923923924, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.3963963963963964, + "noteOrder": 2381, + "time": 0.39639639639639634, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.41641641641641647, + "noteOrder": 2501, + "time": 0.4164164164164164, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.42442442442442446, + "noteOrder": 2549, + "time": 0.4244244244244244, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.42842842842842843, + "noteOrder": 2573, + "time": 0.4284284284284284, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.44844844844844844, + "noteOrder": 2693, + "time": 0.4484484484484484, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.45645645645645644, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.45645645645645644, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4604604604604605, + "noteOrder": 2765, + "time": 0.46046046046046046, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4604604604604605, + "noteOrder": 2765, + "time": 0.46046046046046046, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.4644644644644645, + "noteOrder": 2790, + "time": 0.46446446446446443, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2909, - "time": 0.4844844844844845, + "noteOrder": 2910, + "time": 0.48448448448448445, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.48848848848848847, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.4924924924924925, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5125125125125125, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3125, - "time": 0.5205205205205206, + "noteOrder": 3126, + "time": 0.5205205205205204, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3125, - "time": 0.5205205205205206, + "noteOrder": 3126, + "time": 0.5205205205205204, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.5245245245245246, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.5245245245245246, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5285285285285285, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5285285285285285, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4038, - "time": 0.6726726726726727, + "noteOrder": 4040, + "time": 0.6726726726726726, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4183, + "noteOrder": 4184, "time": 0.6966966966966966, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4232, "time": 0.7047047047047047, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4280, "time": 0.7127127127127126, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.7207207207207207, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.7287287287287288, + "noteOrder": 4377, + "time": 0.7287287287287287, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4423, - "time": 0.7367367367367368, + "noteOrder": 4425, + "time": 0.7367367367367367, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7407407407407407, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4471, - "time": 0.7447447447447448, + "noteOrder": 4473, + "time": 0.7447447447447446, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4519, - "time": 0.7527527527527528, + "noteOrder": 4521, + "time": 0.7527527527527527, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7607607607607608, + "noteOrder": 4569, + "time": 0.7607607607607607, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4617, "time": 0.7687687687687688, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4665, "time": 0.7767767767767768, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4689, "time": 0.7807807807807808, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5000, - "time": 0.8328328328328329, + "noteOrder": 5002, + "time": 0.8328328328328328, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8408408408408409, + "noteOrder": 5050, + "time": 0.8408408408408408, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8408408408408409, + "noteOrder": 5050, + "time": 0.8408408408408408, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.8808808808808809, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5339, "time": 0.8888888888888888, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5385, - "time": 0.8968968968968969, + "noteOrder": 5387, + "time": 0.8968968968968968, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5409, - "time": 0.9009009009009009, + "noteOrder": 5411, + "time": 0.9009009009009008, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5577, - "time": 0.928928928928929, + "noteOrder": 5579, + "time": 0.9289289289289289, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5625, - "time": 0.936936936936937, + "noteOrder": 5627, + "time": 0.9369369369369369, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.960960960960961, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5817, - "time": 0.968968968968969, + "noteOrder": 5819, + "time": 0.9689689689689689, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5817, - "time": 0.968968968968969, + "noteOrder": 5819, + "time": 0.9689689689689689, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5841, - "time": 0.972972972972973, + "noteOrder": 5844, + "time": 0.9729729729729729, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5841, - "time": 0.972972972972973, + "noteOrder": 5844, + "time": 0.9729729729729729, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5865, + "noteOrder": 5868, "time": 0.9769769769769769, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5865, + "noteOrder": 5868, "time": 0.9769769769769769, "position": { "x": 7, @@ -1576,10 +1576,33 @@ "lineNodes": [ { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.20820820820820823, + "time": 0.2082082082082082, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2122122122122122, "position": { "x": 3, "y": 0 @@ -1597,12 +1620,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2122122122122122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1299, + "time": 0.2162162162162162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.21621621621621623, + "noteOrder": 1323, + "time": 0.22022022022022023, "position": { "x": 3, "y": 0 @@ -1620,12 +1689,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1323, + "time": 0.22022022022022023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1347, + "time": 0.2242242242242242, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1346, - "time": 0.22422422422422422, + "noteOrder": 1371, + "time": 0.22822822822822822, "position": { "x": 3, "y": 0 @@ -1643,12 +1758,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1371, + "time": 0.22822822822822822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1395, + "time": 0.23223223223223222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.23223223223223224, + "noteOrder": 1419, + "time": 0.2362362362362362, "position": { "x": 3, "y": 0 @@ -1666,11 +1827,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2362362362362362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.24024024024024024, "position": { "x": 3, @@ -1689,11 +1873,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1455, + "time": 0.24224224224224222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1455, + "time": 0.24224224224224222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.24424424424424424, "position": { "x": 3, @@ -1713,11 +1943,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.24824824824824826, + "noteOrder": 1479, + "time": 0.24624624624624625, "position": { "x": 3, "y": 0 @@ -1731,18 +1961,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1514, - "time": 0.25225225225225223, + "noteOrder": 1479, + "time": 0.24624624624624625, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1759,13 +1989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.2722722722722723, + "noteOrder": 1491, + "time": 0.24824824824824823, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1777,18 +2007,1398 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2502502502502502, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2502502502502502, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.25225225225225223, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1527, + "time": 0.25425425425425424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1527, + "time": 0.25425425425425424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.27227227227227224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.27627627627627627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1659, + "time": 0.27627627627627627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.2802802802802803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1707, + "time": 0.28428428428428426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1707, + "time": 0.28428428428428426, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.2882882882882883, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1755, + "time": 0.29229229229229226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1755, + "time": 0.29229229229229226, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1780, + "time": 0.2962962962962963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.30030030030030025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1804, + "time": 0.30030030030030025, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1972, + "time": 0.3283283283283283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1996, + "time": 0.33233233233233234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1996, + "time": 0.33233233233233234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3363363363363363, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.34034034034034033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2044, + "time": 0.34034034034034033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3443443443443443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3483483483483483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2092, + "time": 0.3483483483483483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2212, + "time": 0.36836836836836834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3723723723723723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2236, + "time": 0.3723723723723723, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.37637637637637633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.38038038038038036, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2285, + "time": 0.38038038038038036, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2309, + "time": 0.3843843843843844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2333, + "time": 0.3883883883883884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2333, + "time": 0.3883883883883884, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.40040040040040037, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4164164164164164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.4324324324324324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2693, + "time": 0.4484484484484484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.46446446446446443, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2886, + "time": 0.4804804804804805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.49649649649649646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3078, + "time": 0.5125125125125125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5445445445445445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5605605605605606, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.5605605605605606, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5765765765765766, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.5765765765765766, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6006006006006005, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6086086086086085, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6246246246246246, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6246246246246246, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3848, + "time": 0.6406406406406405, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3848, + "time": 0.6406406406406405, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3992, + "time": 0.6646646646646647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.7847847847847848, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7887887887887887, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7887887887887887, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7927927927927927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4785, + "time": 0.7967967967967967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1683, - "time": 0.2802802802802803, + "noteOrder": 4785, + "time": 0.7967967967967967, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1805,11 +3415,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.2882882882882883, + "noteOrder": 4809, + "time": 0.8008008008008007, "position": { "x": 7, "y": 0 @@ -1828,11 +3438,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.2962962962962963, + "noteOrder": 4834, + "time": 0.8048048048048048, "position": { "x": 7, "y": 0 @@ -1846,18 +3456,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1971, - "time": 0.32832832832832837, + "noteOrder": 4834, + "time": 0.8048048048048048, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1874,13 +3484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.33633633633633636, + "noteOrder": 4858, + "time": 0.8088088088088088, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1897,13 +3507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.34434434434434436, + "noteOrder": 4882, + "time": 0.8128128128128128, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1915,18 +3525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2212, - "time": 0.3683683683683684, + "noteOrder": 4882, + "time": 0.8128128128128128, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1943,11 +3553,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, - "time": 0.3763763763763764, + "noteOrder": 4906, + "time": 0.8168168168168168, "position": { "x": 7, "y": 0 @@ -1966,11 +3576,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, - "time": 0.3843843843843844, + "noteOrder": 4918, + "time": 0.8188188188188187, "position": { "x": 7, "y": 0 @@ -1984,18 +3594,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2404, - "time": 0.40040040040040037, + "noteOrder": 4918, + "time": 0.8188188188188187, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2012,13 +3622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.41641641641641647, + "noteOrder": 4930, + "time": 0.8208208208208208, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2030,18 +3640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.43243243243243246, + "noteOrder": 4942, + "time": 0.8228228228228227, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2053,18 +3663,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.44844844844844844, + "noteOrder": 4942, + "time": 0.8228228228228227, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2076,18 +3686,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.4644644644644645, + "noteOrder": 4954, + "time": 0.8248248248248248, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2099,18 +3709,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.4804804804804805, + "noteOrder": 4966, + "time": 0.8268268268268267, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2122,16 +3732,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2981, - "time": 0.4964964964964965, + "noteOrder": 4966, + "time": 0.8268268268268267, "position": { "x": 6, "y": 0 @@ -2145,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 3077, - "time": 0.5125125125125125, + "noteOrder": 4978, + "time": 0.8288288288288288, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2173,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3269, - "time": 0.5445445445445446, + "noteOrder": 4990, + "time": 0.8308308308308308, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2191,18 +3801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3365, - "time": 0.5605605605605606, + "noteOrder": 4990, + "time": 0.8308308308308308, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2214,18 +3824,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.5605605605605606, + "noteOrder": 5098, + "time": 0.8488488488488488, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2242,11 +3852,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.5765765765765766, + "noteOrder": 5122, + "time": 0.8528528528528528, "position": { "x": 6, "y": 0 @@ -2265,13 +3875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3461, - "time": 0.5765765765765766, + "noteOrder": 5122, + "time": 0.8528528528528528, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2283,18 +3893,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 123, "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.6006006006006006, + "noteOrder": 5146, + "time": 0.8568568568568568, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2311,13 +3921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.6086086086086085, + "noteOrder": 5170, + "time": 0.8608608608608608, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2329,18 +3939,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3750, - "time": 0.6246246246246245, + "noteOrder": 5170, + "time": 0.8608608608608608, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2352,18 +3962,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3750, - "time": 0.6246246246246245, + "noteOrder": 5194, + "time": 0.8648648648648648, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2375,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.6406406406406407, + "noteOrder": 5218, + "time": 0.8688688688688688, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2398,18 +4008,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3846, - "time": 0.6406406406406407, + "noteOrder": 5218, + "time": 0.8688688688688688, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2426,11 +4036,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6646646646646647, + "noteOrder": 5242, + "time": 0.8728728728728729, "position": { "x": 6, "y": 0 @@ -2444,18 +4054,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4711, - "time": 0.7847847847847848, + "noteOrder": 5266, + "time": 0.8768768768768769, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2472,13 +4082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4760, - "time": 0.7927927927927928, + "noteOrder": 5266, + "time": 0.8768768768768769, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2490,18 +4100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4808, - "time": 0.8008008008008007, + "noteOrder": 5435, + "time": 0.9049049049049048, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2513,18 +4123,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4856, - "time": 0.8088088088088088, + "noteOrder": 5459, + "time": 0.9089089089089089, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2541,13 +4151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4904, - "time": 0.8168168168168168, + "noteOrder": 5459, + "time": 0.9089089089089089, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2559,18 +4169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4928, - "time": 0.8208208208208209, + "noteOrder": 5483, + "time": 0.9129129129129129, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2582,18 +4192,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4952, - "time": 0.8248248248248249, + "noteOrder": 5507, + "time": 0.9169169169169169, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2610,13 +4220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4976, - "time": 0.8288288288288288, + "noteOrder": 5507, + "time": 0.9169169169169169, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2628,18 +4238,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, - "time": 0.8488488488488489, + "noteOrder": 5531, + "time": 0.9209209209209209, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2656,13 +4266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5144, - "time": 0.8568568568568569, + "noteOrder": 5555, + "time": 0.924924924924925, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2674,18 +4284,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5192, - "time": 0.8648648648648649, + "noteOrder": 5555, + "time": 0.924924924924925, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2702,13 +4312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, - "time": 0.8728728728728729, + "noteOrder": 5675, + "time": 0.9449449449449449, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2725,11 +4335,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5433, - "time": 0.9049049049049049, + "noteOrder": 5699, + "time": 0.9489489489489489, "position": { "x": 4, "y": 0 @@ -2743,16 +4353,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5481, - "time": 0.9129129129129129, + "noteOrder": 5699, + "time": 0.9489489489489489, "position": { "x": 4, "y": 0 @@ -2771,11 +4381,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5529, - "time": 0.920920920920921, + "noteOrder": 5723, + "time": 0.9529529529529529, "position": { "x": 4, "y": 0 @@ -2794,11 +4404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5673, - "time": 0.944944944944945, + "noteOrder": 5747, + "time": 0.9569569569569569, "position": { "x": 4, "y": 0 @@ -2812,16 +4422,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5721, - "time": 0.952952952952953, + "noteOrder": 5747, + "time": 0.9569569569569569, "position": { "x": 4, "y": 0 diff --git a/tracks/Metric/info.json b/tracks/Metric/info.json index 3636546d..9e7ac588 100644 --- a/tracks/Metric/info.json +++ b/tracks/Metric/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Metric", - "SongLength": "132.022857", + "SongLength": "122.070204", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Midnight Starlight/335_difficulty_1a.json b/tracks/Midnight Starlight/335_difficulty_1a.json index 00234ff9..33d3d7ee 100644 --- a/tracks/Midnight Starlight/335_difficulty_1a.json +++ b/tracks/Midnight Starlight/335_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.020151641099272023, + "time": 0.02015164109927202, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.024181969319126424, + "time": 0.024181969319126428, "position": { "x": 7, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 168, - "time": 0.02821229753898083, + "noteOrder": 169, + "time": 0.028212297538980833, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 241, - "time": 0.040303282198544045, + "time": 0.04030328219854404, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 265, - "time": 0.04433361041839844, + "time": 0.04433361041839845, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 289, - "time": 0.04836393863825285, + "time": 0.048363938638252855, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 337, - "time": 0.05642459507796166, + "time": 0.056424595077961666, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 457, - "time": 0.07657623617723368, + "time": 0.07657623617723369, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 529, - "time": 0.08866722083679689, + "noteOrder": 530, + "time": 0.0886672208367969, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 650, - "time": 0.1088188619360689, + "time": 0.10881886193606892, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 746, - "time": 0.12494017481548653, + "time": 0.12494017481548654, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 794, - "time": 0.13300083125519532, + "noteOrder": 795, + "time": 0.13300083125519535, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 794, - "time": 0.13300083125519532, + "noteOrder": 795, + "time": 0.13300083125519535, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.13703115947504974, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.13703115947504974, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 842, - "time": 0.14106148769490415, + "noteOrder": 843, + "time": 0.14106148769490418, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 842, - "time": 0.14106148769490415, + "noteOrder": 843, + "time": 0.14106148769490418, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 915, - "time": 0.15315247235446736, + "time": 0.15315247235446738, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1035, - "time": 0.17330411345373936, + "time": 0.1733041134537394, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1131, + "noteOrder": 1132, "time": 0.189425426333157, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1203, + "noteOrder": 1204, "time": 0.20151641099272022, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1227, + "noteOrder": 1228, "time": 0.20554673921257463, "position": { "x": 3, @@ -754,7 +754,7 @@ }, { "noteOrder": 1300, - "time": 0.2176377238721378, + "time": 0.21763772387213784, "position": { "x": 3, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1420, - "time": 0.23778936497140984, + "time": 0.23778936497140987, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1444, + "noteOrder": 1445, "time": 0.24181969319126426, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1492, - "time": 0.24988034963097305, + "noteOrder": 1493, + "time": 0.24988034963097308, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1516, - "time": 0.25391067785082744, + "noteOrder": 1517, + "time": 0.2539106778508275, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.2579410060706819, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1588, - "time": 0.26600166251039065, + "noteOrder": 1589, + "time": 0.2660016625103907, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1588, - "time": 0.26600166251039065, + "noteOrder": 1589, + "time": 0.2660016625103907, "position": { "x": 3, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1661, - "time": 0.2780926471699539, + "time": 0.27809264716995385, "position": { "x": 7, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1685, - "time": 0.2821229753898083, + "time": 0.28212297538980835, "position": { "x": 4, "y": 0 @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1709, - "time": 0.2861533036096627, + "time": 0.28615330360966273, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1758, "time": 0.2942139600493715, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1781, - "time": 0.29824428826922594, + "noteOrder": 1782, + "time": 0.2982442882692259, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1805, - "time": 0.30227461648908033, + "noteOrder": 1806, + "time": 0.3022746164890803, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1829, - "time": 0.3063049447089347, + "noteOrder": 1830, + "time": 0.30630494470893477, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1853, + "noteOrder": 1854, "time": 0.31033527292878915, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.31436560114864354, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.318395929368498, + "noteOrder": 1902, + "time": 0.3183959293684979, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2070, - "time": 0.3466082269074787, + "noteOrder": 2071, + "time": 0.3466082269074788, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2095, "time": 0.35063855512733316, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2167, "time": 0.36272953978689637, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2190, - "time": 0.36675986800675076, + "noteOrder": 2191, + "time": 0.3667598680067508, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2262, + "noteOrder": 2263, "time": 0.378850852666314, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2286, + "noteOrder": 2287, "time": 0.3828811808861684, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2334, + "noteOrder": 2335, "time": 0.39094183732587723, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2456, "time": 0.41109347842514926, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2479, + "noteOrder": 2480, "time": 0.41512380664500365, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2551, - "time": 0.42721479130456685, + "noteOrder": 2552, + "time": 0.4272147913045669, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2575, + "noteOrder": 2576, "time": 0.4312451195244213, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2647, + "noteOrder": 2648, "time": 0.44333610418398445, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2671, + "noteOrder": 2672, "time": 0.44736643240383883, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2720, - "time": 0.45542708884354766, + "noteOrder": 2721, + "time": 0.4554270888435477, "position": { "x": 5, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2744, - "time": 0.45945741706340204, + "noteOrder": 2745, + "time": 0.4594574170634021, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.4634877452832565, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.4715484017229653, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2840, - "time": 0.4755787299428197, + "noteOrder": 2841, + "time": 0.47557872994281974, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2864, - "time": 0.4796090581626741, + "noteOrder": 2865, + "time": 0.47960905816267413, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2913, "time": 0.4876697146023829, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2937, "time": 0.49170004282223734, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.4957303710420917, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3008, - "time": 0.5037910274818005, + "noteOrder": 3010, + "time": 0.5037910274818006, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3032, - "time": 0.5078213557016549, + "noteOrder": 3034, + "time": 0.507821355701655, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3056, + "noteOrder": 3058, "time": 0.5118516839215094, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5320033250207813, + "noteOrder": 3178, + "time": 0.5320033250207814, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3201, - "time": 0.5360336532406358, + "noteOrder": 3202, + "time": 0.5360336532406357, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3226, "time": 0.5400639814604902, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3249, - "time": 0.5440943096803446, + "noteOrder": 3250, + "time": 0.5440943096803447, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3274, "time": 0.5481246379001989, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3274, "time": 0.5481246379001989, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3321, - "time": 0.5561852943399078, + "noteOrder": 3322, + "time": 0.5561852943399077, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3345, + "noteOrder": 3347, "time": 0.5602156225597622, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3369, - "time": 0.5642459507796166, + "noteOrder": 3371, + "time": 0.5642459507796167, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3393, + "noteOrder": 3395, "time": 0.568276278999471, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3417, - "time": 0.5723066072193254, + "noteOrder": 3419, + "time": 0.5723066072193255, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3442, - "time": 0.5763369354391799, + "noteOrder": 3443, + "time": 0.5763369354391797, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3466, + "noteOrder": 3467, "time": 0.5803672636590342, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3490, + "noteOrder": 3491, "time": 0.5843975918788886, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3515, "time": 0.588427920098743, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3586, + "noteOrder": 3587, "time": 0.6005189047583063, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 3635, "time": 0.608579561198015, "position": { "x": 3, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3682, - "time": 0.6166402176377239, + "noteOrder": 3684, + "time": 0.6166402176377238, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3730, - "time": 0.6247008740774327, + "noteOrder": 3732, + "time": 0.6247008740774326, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3778, + "noteOrder": 3780, "time": 0.6327615305171415, "position": { "x": 8, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3827, + "noteOrder": 3828, "time": 0.6408221869568503, "position": { "x": 2, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3851, - "time": 0.6448525151767047, + "noteOrder": 3852, + "time": 0.6448525151767046, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3876, "time": 0.6488828433965591, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3900, "time": 0.6529131716164135, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3923, - "time": 0.656943499836268, + "noteOrder": 3924, + "time": 0.6569434998362679, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3971, - "time": 0.6650041562759768, + "noteOrder": 3973, + "time": 0.6650041562759766, "position": { "x": 5, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.6690344844958311, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4069, "time": 0.6811254691553943, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4091, + "noteOrder": 4093, "time": 0.6851557973752487, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4139, - "time": 0.6932164538149574, + "noteOrder": 4141, + "time": 0.6932164538149576, "position": { "x": 5, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4165, "time": 0.6972467820348119, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4189, "time": 0.7012771102546663, "position": { "x": 4, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4213, "time": 0.7053074384745207, "position": { "x": 3, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4380, - "time": 0.7335197360135015, + "noteOrder": 4382, + "time": 0.7335197360135016, "position": { "x": 7, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4404, + "noteOrder": 4406, "time": 0.737550064233356, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 4478, "time": 0.7496410488929192, "position": { "x": 7, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4500, - "time": 0.7536713771127735, + "noteOrder": 4502, + "time": 0.7536713771127737, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4574, "time": 0.7657623617723368, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4597, + "noteOrder": 4599, "time": 0.7697926899921912, "position": { "x": 4, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4645, - "time": 0.7778533464319001, + "noteOrder": 4647, + "time": 0.7778533464319, "position": { "x": 5, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.7818836746517545, "position": { "x": 3, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4765, - "time": 0.7980049875311721, + "noteOrder": 4767, + "time": 0.798004987531172, "position": { "x": 3, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4789, + "noteOrder": 4791, "time": 0.8020353157510265, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4861, - "time": 0.8141263004105896, + "noteOrder": 4863, + "time": 0.8141263004105898, "position": { "x": 3, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4886, + "noteOrder": 4887, "time": 0.818156628630444, "position": { "x": 4, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8302476132900073, "position": { "x": 3, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4982, - "time": 0.8342779415098617, + "noteOrder": 4984, + "time": 0.8342779415098618, "position": { "x": 6, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5032, "time": 0.8423385979495706, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5054, - "time": 0.8463689261694249, + "noteOrder": 5056, + "time": 0.8463689261694248, "position": { "x": 7, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5078, + "noteOrder": 5080, "time": 0.8503992543892793, "position": { "x": 3, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.8624902390488426, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5174, + "noteOrder": 5176, "time": 0.8665205672686969, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5247, - "time": 0.87861155192826, + "noteOrder": 5249, + "time": 0.8786115519282601, "position": { "x": 3, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5271, - "time": 0.8826418801481145, + "noteOrder": 5273, + "time": 0.8826418801481146, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5343, + "noteOrder": 5345, "time": 0.8947328648076777, "position": { "x": 6, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5367, - "time": 0.898763193027532, + "noteOrder": 5369, + "time": 0.8987631930275322, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5391, - "time": 0.9027935212473865, + "noteOrder": 5393, + "time": 0.9027935212473867, "position": { "x": 6, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5415, + "noteOrder": 5417, "time": 0.9068238494672409, "position": { "x": 5, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5439, - "time": 0.9108541776870953, + "noteOrder": 5441, + "time": 0.9108541776870954, "position": { "x": 7, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5463, + "noteOrder": 5465, "time": 0.9148845059069497, "position": { "x": 5, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5559, - "time": 0.9310058187863673, + "noteOrder": 5562, + "time": 0.9310058187863675, "position": { "x": 5, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5656, + "noteOrder": 5658, "time": 0.947127131665785, "position": { "x": 5, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5680, - "time": 0.9511574598856394, + "noteOrder": 5682, + "time": 0.9511574598856395, "position": { "x": 6, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5704, + "noteOrder": 5706, "time": 0.9551877881054938, "position": { "x": 4, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5728, - "time": 0.9592181163253481, + "noteOrder": 5730, + "time": 0.9592181163253483, "position": { "x": 6, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5752, + "noteOrder": 5754, "time": 0.9632484445452026, "position": { "x": 4, @@ -3036,10 +3036,33 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 482, + "time": 0.08060656439708808, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 481, - "time": 0.08060656439708809, + "noteOrder": 494, + "time": 0.0826217285070153, "position": { "x": 7, "y": 0 @@ -3057,11 +3080,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 494, + "time": 0.0826217285070153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 505, + "noteOrder": 506, "time": 0.08463689261694249, "position": { "x": 7, @@ -3081,11 +3127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 578, - "time": 0.0967278772765057, + "noteOrder": 518, + "time": 0.0866520567268697, "position": { "x": 7, "y": 0 @@ -3099,18 +3145,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 602, - "time": 0.10075820549636011, + "noteOrder": 518, + "time": 0.0866520567268697, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3127,11 +3173,11 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 674, - "time": 0.11284919015592332, + "noteOrder": 578, + "time": 0.09672787727650571, "position": { "x": 7, "y": 0 @@ -3150,13 +3196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 722, - "time": 0.12090984659563213, + "noteOrder": 590, + "time": 0.0987430413864329, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3173,13 +3219,36 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 866, - "time": 0.14509181591475856, + "noteOrder": 590, + "time": 0.0987430413864329, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 602, + "time": 0.10075820549636011, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -3196,13 +3265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 890, - "time": 0.14912214413461297, + "noteOrder": 614, + "time": 0.10277336960628732, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3214,18 +3283,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 963, - "time": 0.16121312879417618, + "noteOrder": 614, + "time": 0.10277336960628732, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3242,13 +3311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 987, - "time": 0.1652434570140306, + "noteOrder": 674, + "time": 0.11284919015592333, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3265,13 +3334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1059, - "time": 0.17733444167359377, + "noteOrder": 722, + "time": 0.12090984659563213, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3283,18 +3352,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 35, "indexInLine": 1, "isSliding": false, - "noteOrder": 1107, - "time": 0.1853950981133026, + "noteOrder": 867, + "time": 0.14509181591475856, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3311,13 +3380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1155, - "time": 0.1934557545530114, + "noteOrder": 879, + "time": 0.14710698002468575, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3334,11 +3403,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1179, - "time": 0.1974860827728658, + "noteOrder": 879, + "time": 0.14710698002468575, "position": { "x": 4, "y": 0 @@ -3357,13 +3426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1155, - "time": 0.1934557545530114, + "noteOrder": 891, + "time": 0.14912214413461294, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3380,13 +3449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1179, - "time": 0.1974860827728658, + "noteOrder": 903, + "time": 0.15113730824454014, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3403,13 +3472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2022, - "time": 0.33854757046776995, + "noteOrder": 903, + "time": 0.15113730824454014, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3426,13 +3495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2046, - "time": 0.34257789868762434, + "noteOrder": 963, + "time": 0.16121312879417615, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3449,13 +3518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2118, - "time": 0.35466888334718755, + "noteOrder": 975, + "time": 0.16322829290410337, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3467,18 +3536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2142, - "time": 0.358699211567042, + "noteOrder": 975, + "time": 0.16322829290410337, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3495,13 +3564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2214, - "time": 0.3707901962266052, + "noteOrder": 987, + "time": 0.1652434570140306, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3518,13 +3587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2238, - "time": 0.3748205244464596, + "noteOrder": 999, + "time": 0.16725862112395778, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3536,18 +3605,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2310, - "time": 0.3869115091060228, + "noteOrder": 999, + "time": 0.16725862112395778, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3564,11 +3633,34 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2359, - "time": 0.3949721655457316, + "noteOrder": 1059, + "time": 0.1773344416735938, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1107, + "time": 0.1853950981133026, "position": { "x": 5, "y": 0 @@ -3582,18 +3674,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2407, - "time": 0.40303282198544044, + "noteOrder": 1156, + "time": 0.19345575455301142, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3610,13 +3702,36 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2431, - "time": 0.4070631502052948, + "noteOrder": 1180, + "time": 0.1974860827728658, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1156, + "time": 0.19345575455301142, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3633,11 +3748,1368 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1180, + "time": 0.1974860827728658, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2022, + "time": 0.33854757046776995, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2034, + "time": 0.34056273457769715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2034, + "time": 0.34056273457769715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2046, + "time": 0.34257789868762434, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2059, + "time": 0.3445930627975516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2059, + "time": 0.3445930627975516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2119, + "time": 0.3546688833471876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3566840474571148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3566840474571148, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2143, + "time": 0.358699211567042, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2155, + "time": 0.3607143756769692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2155, + "time": 0.3607143756769692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2215, + "time": 0.3707901962266052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2227, + "time": 0.3728053603365324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2227, + "time": 0.3728053603365324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2239, + "time": 0.3748205244464596, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2251, + "time": 0.3768356885563868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2251, + "time": 0.3768356885563868, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2311, + "time": 0.38691150910602284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2359, + "time": 0.3949721655457316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2408, + "time": 0.40303282198544044, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2420, + "time": 0.40504798609536763, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2420, + "time": 0.40504798609536763, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2432, + "time": 0.4070631502052949, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2444, + "time": 0.409078314315222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2444, + "time": 0.409078314315222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2504, + "time": 0.41915413486485803, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2516, + "time": 0.4211692989747853, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2516, + "time": 0.4211692989747853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2528, + "time": 0.4231844630847124, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2540, + "time": 0.42519962719463966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2540, + "time": 0.42519962719463966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2600, + "time": 0.4352754477442757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2612, + "time": 0.4372906118542028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2612, + "time": 0.4372906118542028, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2624, + "time": 0.43930577596413006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2636, + "time": 0.4413209400740573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2636, + "time": 0.4413209400740573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2697, + "time": 0.4513967606236933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2745, + "time": 0.4594574170634021, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5158820121413638, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3130, + "time": 0.5239426685810725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5158820121413638, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3130, + "time": 0.5239426685810725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3563, + "time": 0.5964885765384518, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3611, + "time": 0.6045492329781605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3611, + "time": 0.6045492329781605, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3660, + "time": 0.6126098894178695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3660, + "time": 0.6126098894178695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6206705458575783, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6206705458575783, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3756, + "time": 0.6287312022972871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3756, + "time": 0.6287312022972871, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3804, + "time": 0.6367918587369958, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3804, + "time": 0.6367918587369958, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3852, + "time": 0.6448525151767046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3948, + "time": 0.6609738280561224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3997, + "time": 0.6690344844958311, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2503, - "time": 0.41915413486485803, + "noteOrder": 4045, + "time": 0.6770951409355399, "position": { "x": 3, "y": 0 @@ -3656,13 +5128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2527, - "time": 0.42318446308471247, + "noteOrder": 4093, + "time": 0.6851557973752487, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3674,16 +5146,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2599, - "time": 0.4352754477442756, + "noteOrder": 4237, + "time": 0.7093377666943752, "position": { "x": 3, "y": 0 @@ -3702,11 +5174,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2623, - "time": 0.43930577596413, + "noteOrder": 4286, + "time": 0.717398423134084, "position": { "x": 3, "y": 0 @@ -3720,18 +5192,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2695, - "time": 0.45139676062369327, + "noteOrder": 4237, + "time": 0.7093377666943752, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3743,18 +5215,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2744, - "time": 0.45945741706340204, + "noteOrder": 4286, + "time": 0.717398423134084, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3766,16 +5238,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3081, - "time": 0.5158820121413638, + "noteOrder": 4334, + "time": 0.7254590795737927, "position": { "x": 7, "y": 0 @@ -3794,11 +5266,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3129, - "time": 0.5239426685810725, + "noteOrder": 4346, + "time": 0.7274742436837199, "position": { "x": 7, "y": 0 @@ -3817,13 +5289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3081, - "time": 0.5158820121413638, + "noteOrder": 4346, + "time": 0.7274742436837199, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3835,18 +5307,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 3129, - "time": 0.5239426685810725, + "noteOrder": 4358, + "time": 0.7294894077936471, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3863,13 +5335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3562, - "time": 0.5964885765384519, + "noteOrder": 4370, + "time": 0.7315045719035744, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3881,16 +5353,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3610, - "time": 0.6045492329781607, + "noteOrder": 4370, + "time": 0.7315045719035744, "position": { "x": 6, "y": 0 @@ -3904,18 +5376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3610, - "time": 0.6045492329781607, + "noteOrder": 4430, + "time": 0.7415803924532104, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3927,18 +5399,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3658, - "time": 0.6126098894178694, + "noteOrder": 4442, + "time": 0.7435955565631377, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3950,16 +5422,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3658, - "time": 0.6126098894178694, + "noteOrder": 4442, + "time": 0.7435955565631377, "position": { "x": 6, "y": 0 @@ -3978,13 +5450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 3706, - "time": 0.6206705458575783, + "noteOrder": 4454, + "time": 0.7456107206730648, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3996,18 +5468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3706, - "time": 0.6206705458575783, + "noteOrder": 4466, + "time": 0.747625884782992, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4024,13 +5496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3754, - "time": 0.6287312022972871, + "noteOrder": 4466, + "time": 0.747625884782992, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4047,13 +5519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3754, - "time": 0.6287312022972871, + "noteOrder": 4526, + "time": 0.757701705332628, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4070,13 +5542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3803, - "time": 0.636791858736996, + "noteOrder": 4538, + "time": 0.7597168694425552, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4093,13 +5565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3803, - "time": 0.636791858736996, + "noteOrder": 4538, + "time": 0.7597168694425552, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4111,18 +5583,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3851, - "time": 0.6448525151767047, + "noteOrder": 4550, + "time": 0.7617320335524824, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4139,11 +5611,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3947, - "time": 0.6609738280561224, + "noteOrder": 4562, + "time": 0.7637471976624096, "position": { "x": 7, "y": 0 @@ -4157,18 +5629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3995, - "time": 0.6690344844958311, + "noteOrder": 4562, + "time": 0.7637471976624096, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4180,18 +5652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4043, - "time": 0.6770951409355399, + "noteOrder": 4623, + "time": 0.7738230182120457, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4203,16 +5675,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4091, - "time": 0.6851557973752487, + "noteOrder": 4671, + "time": 0.7818836746517545, "position": { "x": 5, "y": 0 @@ -4226,16 +5698,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4236, - "time": 0.7093377666943751, + "noteOrder": 4719, + "time": 0.7899443310914632, "position": { "x": 3, "y": 0 @@ -4254,11 +5726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4284, - "time": 0.717398423134084, + "noteOrder": 4731, + "time": 0.7919594952013904, "position": { "x": 3, "y": 0 @@ -4277,13 +5749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4236, - "time": 0.7093377666943751, + "noteOrder": 4731, + "time": 0.7919594952013904, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4295,18 +5767,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 4284, - "time": 0.717398423134084, + "noteOrder": 4743, + "time": 0.7939746593113177, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4323,13 +5795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4332, - "time": 0.7254590795737927, + "noteOrder": 4755, + "time": 0.7959898234212448, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4346,13 +5818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4356, - "time": 0.7294894077936471, + "noteOrder": 4755, + "time": 0.7959898234212448, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4364,18 +5836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4428, - "time": 0.7415803924532104, + "noteOrder": 4815, + "time": 0.8060656439708809, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4387,18 +5859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4452, - "time": 0.7456107206730648, + "noteOrder": 4827, + "time": 0.8080808080808081, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4415,13 +5887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4525, - "time": 0.757701705332628, + "noteOrder": 4827, + "time": 0.8080808080808081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4433,18 +5905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4549, - "time": 0.7617320335524824, + "noteOrder": 4839, + "time": 0.8100959721907353, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4456,18 +5928,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4621, - "time": 0.7738230182120456, + "noteOrder": 4851, + "time": 0.8121111363006625, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4484,13 +5956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4669, - "time": 0.7818836746517545, + "noteOrder": 4851, + "time": 0.8121111363006625, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4507,11 +5979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4717, - "time": 0.7899443310914632, + "noteOrder": 4912, + "time": 0.8221869568502985, "position": { "x": 3, "y": 0 @@ -4530,11 +6002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4741, - "time": 0.7939746593113176, + "noteOrder": 4924, + "time": 0.8242021209602257, "position": { "x": 3, "y": 0 @@ -4548,18 +6020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4813, - "time": 0.8060656439708809, + "noteOrder": 4924, + "time": 0.8242021209602257, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4576,11 +6048,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4837, - "time": 0.8100959721907353, + "noteOrder": 4936, + "time": 0.8262172850701528, "position": { "x": 3, "y": 0 @@ -4599,11 +6071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4910, - "time": 0.8221869568502985, + "noteOrder": 4948, + "time": 0.8282324491800801, "position": { "x": 3, "y": 0 @@ -4617,18 +6089,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4934, - "time": 0.8262172850701529, + "noteOrder": 4948, + "time": 0.8282324491800801, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4646,9 +6118,9 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8383082697297161, "position": { "x": 3, @@ -4669,10 +6141,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5054, - "time": 0.8463689261694249, + "noteOrder": 5056, + "time": 0.8463689261694248, "position": { "x": 5, "y": 0 @@ -4692,10 +6164,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5487, - "time": 0.9189148341268041, + "noteOrder": 5489, + "time": 0.9189148341268042, "position": { "x": 3, "y": 0 @@ -4715,9 +6187,9 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.926975490566513, "position": { "x": 3, @@ -4738,9 +6210,9 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5583, + "noteOrder": 5586, "time": 0.9350361470062217, "position": { "x": 7, @@ -4761,9 +6233,9 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5632, + "noteOrder": 5634, "time": 0.9430968034459306, "position": { "x": 7, diff --git a/tracks/Midnight Starlight/335_difficulty_1b.json b/tracks/Midnight Starlight/335_difficulty_1b.json index 5a6c9deb..9af209e1 100644 --- a/tracks/Midnight Starlight/335_difficulty_1b.json +++ b/tracks/Midnight Starlight/335_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.024181969319126424, + "time": 0.024181969319126428, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 241, - "time": 0.040303282198544045, + "time": 0.04030328219854404, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 289, - "time": 0.04836393863825285, + "time": 0.048363938638252855, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 337, - "time": 0.05642459507796166, + "time": 0.056424595077961666, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 529, - "time": 0.08866722083679689, + "noteOrder": 530, + "time": 0.0886672208367969, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.13703115947504974, "position": { "x": 7, @@ -234,7 +234,7 @@ }, { "noteOrder": 963, - "time": 0.16121312879417618, + "time": 0.16121312879417615, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1155, - "time": 0.1934557545530114, + "noteOrder": 1156, + "time": 0.19345575455301142, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1203, + "noteOrder": 1204, "time": 0.20151641099272022, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.2579410060706819, "position": { "x": 6, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.26197133429053626, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1588, - "time": 0.26600166251039065, + "noteOrder": 1589, + "time": 0.2660016625103907, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1612, + "noteOrder": 1613, "time": 0.2700319907302451, "position": { "x": 4, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1829, - "time": 0.3063049447089347, + "noteOrder": 1830, + "time": 0.30630494470893477, "position": { "x": 6, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1853, + "noteOrder": 1854, "time": 0.31033527292878915, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.31436560114864354, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.318395929368498, + "noteOrder": 1902, + "time": 0.3183959293684979, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1925, - "time": 0.32242625758835236, + "noteOrder": 1926, + "time": 0.3224262575883523, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1949, + "noteOrder": 1950, "time": 0.32645658580820675, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2070, - "time": 0.3466082269074787, + "noteOrder": 2071, + "time": 0.3466082269074788, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2118, - "time": 0.35466888334718755, + "noteOrder": 2119, + "time": 0.3546688833471876, "position": { "x": 4, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2167, "time": 0.36272953978689637, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2262, + "noteOrder": 2263, "time": 0.378850852666314, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2310, - "time": 0.3869115091060228, + "noteOrder": 2311, + "time": 0.38691150910602284, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2504, "time": 0.41915413486485803, "position": { "x": 7, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2551, - "time": 0.42721479130456685, + "noteOrder": 2552, + "time": 0.4272147913045669, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2695, - "time": 0.45139676062369327, + "noteOrder": 2697, + "time": 0.4513967606236933, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2744, - "time": 0.45945741706340204, + "noteOrder": 2745, + "time": 0.4594574170634021, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2840, - "time": 0.4755787299428197, + "noteOrder": 2841, + "time": 0.47557872994281974, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2889, "time": 0.4836393863825285, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2937, "time": 0.49170004282223734, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2984, - "time": 0.4997606992619461, + "noteOrder": 2985, + "time": 0.49976069926194616, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3032, - "time": 0.5078213557016549, + "noteOrder": 3034, + "time": 0.507821355701655, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3081, + "noteOrder": 3082, "time": 0.5158820121413638, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3130, "time": 0.5239426685810725, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5320033250207813, + "noteOrder": 3178, + "time": 0.5320033250207814, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3226, "time": 0.5400639814604902, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3274, "time": 0.5481246379001989, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3321, - "time": 0.5561852943399078, + "noteOrder": 3322, + "time": 0.5561852943399077, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3369, - "time": 0.5642459507796166, + "noteOrder": 3371, + "time": 0.5642459507796167, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3466, + "noteOrder": 3467, "time": 0.5803672636590342, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3490, + "noteOrder": 3491, "time": 0.5843975918788886, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3515, "time": 0.588427920098743, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3947, + "noteOrder": 3948, "time": 0.6609738280561224, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3971, - "time": 0.6650041562759768, + "noteOrder": 3973, + "time": 0.6650041562759766, "position": { "x": 5, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.6690344844958311, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4045, "time": 0.6770951409355399, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4069, "time": 0.6811254691553943, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4091, + "noteOrder": 4093, "time": 0.6851557973752487, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4139, - "time": 0.6932164538149574, + "noteOrder": 4141, + "time": 0.6932164538149576, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4165, "time": 0.6972467820348119, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4189, "time": 0.7012771102546663, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4213, "time": 0.7053074384745207, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4286, "time": 0.717398423134084, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4286, "time": 0.717398423134084, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4380, - "time": 0.7335197360135015, + "noteOrder": 4382, + "time": 0.7335197360135016, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 4478, "time": 0.7496410488929192, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4574, "time": 0.7657623617723368, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.7818836746517545, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4813, + "noteOrder": 4815, "time": 0.8060656439708809, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4861, - "time": 0.8141263004105896, + "noteOrder": 4863, + "time": 0.8141263004105898, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.8383082697297161, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5054, - "time": 0.8463689261694249, + "noteOrder": 5056, + "time": 0.8463689261694248, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5391, - "time": 0.9027935212473865, + "noteOrder": 5393, + "time": 0.9027935212473867, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5415, + "noteOrder": 5417, "time": 0.9068238494672409, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5439, - "time": 0.9108541776870953, + "noteOrder": 5441, + "time": 0.9108541776870954, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5463, + "noteOrder": 5465, "time": 0.9148845059069497, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5680, - "time": 0.9511574598856394, + "noteOrder": 5682, + "time": 0.9511574598856395, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5704, + "noteOrder": 5706, "time": 0.9551877881054938, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5728, - "time": 0.9592181163253481, + "noteOrder": 5730, + "time": 0.9592181163253483, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5752, + "noteOrder": 5754, "time": 0.9632484445452026, "position": { "x": 6, @@ -1576,10 +1576,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, - "time": 0.08060656439708809, + "noteOrder": 482, + "time": 0.08060656439708808, "position": { "x": 7, "y": 0 @@ -1599,10 +1599,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, - "time": 0.08866722083679689, + "noteOrder": 530, + "time": 0.0886672208367969, "position": { "x": 4, "y": 0 @@ -1622,10 +1622,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, - "time": 0.0967278772765057, + "time": 0.09672787727650571, "position": { "x": 3, "y": 0 @@ -1645,7 +1645,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 626, "time": 0.10478853371621451, @@ -1668,10 +1668,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 674, - "time": 0.11284919015592332, + "time": 0.11284919015592333, "position": { "x": 7, "y": 0 @@ -1691,7 +1691,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 722, "time": 0.12090984659563213, @@ -1714,7 +1714,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, "time": 0.12897050303534094, @@ -1737,9 +1737,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 818, + "noteOrder": 819, "time": 0.13703115947504974, "position": { "x": 6, @@ -1760,9 +1760,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 866, + "noteOrder": 867, "time": 0.14509181591475856, "position": { "x": 7, @@ -1781,12 +1781,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 891, + "time": 0.14912214413461294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 891, + "time": 0.14912214413461294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 915, - "time": 0.15315247235446736, + "time": 0.15315247235446738, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 939, + "time": 0.15718280057432177, "position": { "x": 7, "y": 0 @@ -1804,12 +1873,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 939, + "time": 0.15718280057432177, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1059, - "time": 0.17733444167359377, + "time": 0.1773344416735938, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1083, + "time": 0.18136476989344819, "position": { "x": 3, "y": 0 @@ -1827,9 +1942,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1083, + "time": 0.18136476989344819, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1107, "time": 0.1853950981133026, @@ -1850,11 +1988,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1132, + "time": 0.189425426333157, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1132, + "time": 0.189425426333157, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1251, + "noteOrder": 1252, "time": 0.20957706743242902, "position": { "x": 7, @@ -1875,10 +2059,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1276, - "time": 0.21360739565228343, + "time": 0.21360739565228345, "position": { "x": 7, "y": 0 @@ -1898,10 +2082,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1300, - "time": 0.2176377238721378, + "time": 0.21763772387213784, "position": { "x": 3, "y": 0 @@ -1921,12 +2105,403 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1324, "time": 0.22166805209199222, "position": { - "x": 3, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1348, + "time": 0.22569838031184666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1372, + "time": 0.22972870853170105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1396, + "time": 0.23375903675155543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1420, + "time": 0.23778936497140987, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1445, + "time": 0.24181969319126426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1469, + "time": 0.24585002141111867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1493, + "time": 0.24988034963097308, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1517, + "time": 0.2539106778508275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1637, + "time": 0.27406231895009947, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1685, + "time": 0.28212297538980835, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1733, + "time": 0.2901836318295171, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1782, + "time": 0.2982442882692259, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2022, + "time": 0.33854757046776995, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2167, + "time": 0.36272953978689637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2215, + "time": 0.3707901962266052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2359, + "time": 0.3949721655457316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2408, + "time": 0.40303282198544044, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -1938,18 +2513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1348, - "time": 0.22569838031184664, + "noteOrder": 2432, + "time": 0.4070631502052949, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1966,11 +2541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1372, - "time": 0.22972870853170102, + "noteOrder": 2432, + "time": 0.4070631502052949, "position": { "x": 6, "y": 0 @@ -1989,13 +2564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1396, - "time": 0.23375903675155543, + "noteOrder": 2456, + "time": 0.41109347842514926, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2012,13 +2587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1420, - "time": 0.23778936497140984, + "noteOrder": 2480, + "time": 0.41512380664500365, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2035,13 +2610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1444, - "time": 0.24181969319126426, + "noteOrder": 2480, + "time": 0.41512380664500365, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2053,18 +2628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 1468, - "time": 0.24585002141111867, + "noteOrder": 2600, + "time": 0.4352754477442757, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2076,16 +2651,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1492, - "time": 0.24988034963097305, + "noteOrder": 2624, + "time": 0.43930577596413006, "position": { "x": 3, "y": 0 @@ -2104,13 +2679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1516, - "time": 0.25391067785082744, + "noteOrder": 2624, + "time": 0.43930577596413006, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2127,13 +2702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1637, - "time": 0.27406231895009947, + "noteOrder": 2648, + "time": 0.44333610418398445, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2150,13 +2725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1685, - "time": 0.2821229753898083, + "noteOrder": 2672, + "time": 0.44736643240383883, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2173,11 +2748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1733, - "time": 0.2901836318295171, + "noteOrder": 2672, + "time": 0.44736643240383883, "position": { "x": 4, "y": 0 @@ -2191,18 +2766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 1781, - "time": 0.29824428826922594, + "noteOrder": 3563, + "time": 0.5964885765384518, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2214,18 +2789,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2022, - "time": 0.33854757046776995, + "noteOrder": 3611, + "time": 0.6045492329781605, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2242,11 +2817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 2166, - "time": 0.36272953978689637, + "noteOrder": 3660, + "time": 0.6126098894178695, "position": { "x": 4, "y": 0 @@ -2260,18 +2835,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2214, - "time": 0.3707901962266052, + "noteOrder": 3708, + "time": 0.6206705458575783, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2288,11 +2863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2359, - "time": 0.3949721655457316, + "noteOrder": 3756, + "time": 0.6287312022972871, "position": { "x": 6, "y": 0 @@ -2306,18 +2881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2407, - "time": 0.40303282198544044, + "noteOrder": 3804, + "time": 0.6367918587369958, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2334,13 +2909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2455, - "time": 0.41109347842514926, + "noteOrder": 3852, + "time": 0.6448525151767046, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2357,13 +2932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2599, - "time": 0.4352754477442756, + "noteOrder": 3900, + "time": 0.6529131716164135, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2380,11 +2955,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2647, - "time": 0.44333610418398445, + "noteOrder": 4334, + "time": 0.7254590795737927, "position": { "x": 3, "y": 0 @@ -2398,16 +2973,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3562, - "time": 0.5964885765384519, + "noteOrder": 4382, + "time": 0.7335197360135016, "position": { "x": 6, "y": 0 @@ -2421,18 +2996,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 3610, - "time": 0.6045492329781607, + "noteOrder": 4430, + "time": 0.7415803924532104, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2449,11 +3024,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3658, - "time": 0.6126098894178694, + "noteOrder": 4478, + "time": 0.7496410488929192, "position": { "x": 4, "y": 0 @@ -2467,18 +3042,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 3706, - "time": 0.6206705458575783, + "noteOrder": 4526, + "time": 0.757701705332628, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2495,11 +3070,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3754, - "time": 0.6287312022972871, + "noteOrder": 4574, + "time": 0.7657623617723368, "position": { "x": 6, "y": 0 @@ -2513,18 +3088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 3803, - "time": 0.636791858736996, + "noteOrder": 4623, + "time": 0.7738230182120457, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2541,11 +3116,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3851, - "time": 0.6448525151767047, + "noteOrder": 4671, + "time": 0.7818836746517545, "position": { "x": 4, "y": 0 @@ -2559,18 +3134,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 3899, - "time": 0.6529131716164135, + "noteOrder": 4719, + "time": 0.7899443310914632, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2587,11 +3162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4332, - "time": 0.7254590795737927, + "noteOrder": 4743, + "time": 0.7939746593113177, "position": { "x": 3, "y": 0 @@ -2610,13 +3185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4380, - "time": 0.7335197360135015, + "noteOrder": 4743, + "time": 0.7939746593113177, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2633,13 +3208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4428, - "time": 0.7415803924532104, + "noteOrder": 4767, + "time": 0.798004987531172, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2656,13 +3231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4476, - "time": 0.7496410488929192, + "noteOrder": 4791, + "time": 0.8020353157510265, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2679,13 +3254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4525, - "time": 0.757701705332628, + "noteOrder": 4791, + "time": 0.8020353157510265, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2697,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 4573, - "time": 0.7657623617723368, + "noteOrder": 4912, + "time": 0.8221869568502985, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2720,16 +3295,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4621, - "time": 0.7738230182120456, + "noteOrder": 4936, + "time": 0.8262172850701528, "position": { "x": 7, "y": 0 @@ -2748,13 +3323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4669, - "time": 0.7818836746517545, + "noteOrder": 4936, + "time": 0.8262172850701528, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2771,13 +3346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4717, - "time": 0.7899443310914632, + "noteOrder": 4960, + "time": 0.8302476132900073, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2794,34 +3369,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4765, - "time": 0.7980049875311721, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4910, - "time": 0.8221869568502985, + "noteOrder": 4984, + "time": 0.8342779415098618, "position": { "x": 7, "y": 0 @@ -2835,18 +3387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4958, - "time": 0.8302476132900073, + "noteOrder": 4984, + "time": 0.8342779415098618, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2864,10 +3416,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5102, - "time": 0.8544295826091337, + "noteOrder": 5104, + "time": 0.8544295826091338, "position": { "x": 3, "y": 0 @@ -2887,9 +3439,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5126, + "noteOrder": 5128, "time": 0.8584599108289881, "position": { "x": 3, @@ -2910,9 +3462,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.8624902390488426, "position": { "x": 7, @@ -2933,9 +3485,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5174, + "noteOrder": 5176, "time": 0.8665205672686969, "position": { "x": 7, @@ -2956,10 +3508,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5198, - "time": 0.8705508954885512, + "noteOrder": 5200, + "time": 0.8705508954885514, "position": { "x": 4, "y": 0 @@ -2979,9 +3531,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5222, + "noteOrder": 5225, "time": 0.8745812237084056, "position": { "x": 4, @@ -3002,10 +3554,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5247, - "time": 0.87861155192826, + "noteOrder": 5249, + "time": 0.8786115519282601, "position": { "x": 6, "y": 0 @@ -3025,10 +3577,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5271, - "time": 0.8826418801481145, + "noteOrder": 5273, + "time": 0.8826418801481146, "position": { "x": 6, "y": 0 @@ -3048,9 +3600,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.8866722083679689, "position": { "x": 3, @@ -3071,10 +3623,10 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5319, - "time": 0.8907025365878233, + "noteOrder": 5321, + "time": 0.8907025365878234, "position": { "x": 3, "y": 0 @@ -3094,9 +3646,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5343, + "noteOrder": 5345, "time": 0.8947328648076777, "position": { "x": 7, @@ -3117,10 +3669,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5367, - "time": 0.898763193027532, + "noteOrder": 5369, + "time": 0.8987631930275322, "position": { "x": 7, "y": 0 @@ -3140,10 +3692,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5487, - "time": 0.9189148341268041, + "noteOrder": 5489, + "time": 0.9189148341268042, "position": { "x": 4, "y": 0 @@ -3163,9 +3715,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.926975490566513, "position": { "x": 4, @@ -3186,9 +3738,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5583, + "noteOrder": 5586, "time": 0.9350361470062217, "position": { "x": 6, @@ -3209,9 +3761,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5632, + "noteOrder": 5634, "time": 0.9430968034459306, "position": { "x": 6, diff --git a/tracks/Midnight Starlight/info.json b/tracks/Midnight Starlight/info.json index ff516d55..6e095858 100644 --- a/tracks/Midnight Starlight/info.json +++ b/tracks/Midnight Starlight/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Midnight Starlight", - "SongLength": "131.369796", + "SongLength": "121.417143", "SongAuthorName": "kors k feat.Such", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/My Time/261_difficulty_1a.json b/tracks/My Time/261_difficulty_1a.json index 340a6280..518ecead 100644 --- a/tracks/My Time/261_difficulty_1a.json +++ b/tracks/My Time/261_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.01754578352889571, + "time": 0.017545783528895714, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 216, - "time": 0.031582410352012286, + "time": 0.03158241035201228, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 336, - "time": 0.04912819388090799, + "time": 0.049128193880908, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 360, - "time": 0.05263735058668714, + "time": 0.052637350586687136, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 432, - "time": 0.06316482070402457, + "time": 0.06316482070402456, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 480, - "time": 0.07018313411558284, + "time": 0.07018313411558286, "position": { "x": 3, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.07369229082136199, "position": { "x": 7, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.07720144752714114, + "noteOrder": 529, + "time": 0.07720144752714113, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.08071060423292027, "position": { "x": 7, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.08421976093869943, + "noteOrder": 577, + "time": 0.08421976093869941, "position": { "x": 2, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.08772891764447856, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.0912380743502577, "position": { "x": 4, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.09474723105603686, + "noteOrder": 649, + "time": 0.09474723105603684, "position": { "x": 8, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.09825638776181599, + "noteOrder": 673, + "time": 0.098256387761816, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 913, - "time": 0.13334795481960743, + "time": 0.1333479548196074, "position": { "x": 8, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1129, - "time": 0.1649303651716197, + "time": 0.16493036517161971, "position": { "x": 2, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1297, - "time": 0.1894944621120737, + "time": 0.18949446211207369, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1369, - "time": 0.20002193222941114, + "time": 0.20002193222941111, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.22458602916986511, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1585, + "noteOrder": 1586, "time": 0.2316043425814234, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1657, + "noteOrder": 1658, "time": 0.24213181269876083, "position": { "x": 5, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1681, - "time": 0.24564096940453994, + "noteOrder": 1682, + "time": 0.24564096940453997, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.24915012611031911, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.2526592828160983, + "noteOrder": 1730, + "time": 0.25265928281609823, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1753, + "noteOrder": 1754, "time": 0.2561684395218774, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.2596775962276565, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2631867529334357, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.27020506634499397, "position": { "x": 8, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.27371422305077314, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.27722337975655226, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.2807325364623314, + "noteOrder": 1922, + "time": 0.28073253646233143, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.2842416931681105, + "noteOrder": 1946, + "time": 0.28424169316811054, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.2877508498738897, + "noteOrder": 1970, + "time": 0.28775084987388966, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.29126000657966883, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.2982783199912271, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.30178747669700623, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.30529663340278534, + "noteOrder": 2090, + "time": 0.3052966334027854, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.30880579010856457, + "noteOrder": 2114, + "time": 0.3088057901085645, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.3123149468143437, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.31582410352012286, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.31933326022590197, + "noteOrder": 2186, + "time": 0.3193332602259019, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2234, "time": 0.32635157363746026, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.3298607303432394, + "noteOrder": 2258, + "time": 0.32986073034323943, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2281, - "time": 0.33336988704901854, + "noteOrder": 2282, + "time": 0.3333698870490185, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2305, - "time": 0.3368790437547977, + "noteOrder": 2306, + "time": 0.33687904375479766, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3554, + "noteOrder": 3556, "time": 0.519355192455313, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.5228643491610923, "position": { "x": 2, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3602, + "noteOrder": 3604, "time": 0.5263735058668714, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.5298826625726505, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.5333918192784297, + "noteOrder": 3652, + "time": 0.5333918192784296, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.5369009759842088, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.5404101326899879, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.5439192893957671, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3748, "time": 0.5474284461015463, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3770, - "time": 0.5509376028073254, + "noteOrder": 3772, + "time": 0.5509376028073253, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.5544467595131045, "position": { "x": 8, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3818, + "noteOrder": 3820, "time": 0.5579559162188836, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3842, - "time": 0.5614650729246627, + "noteOrder": 3844, + "time": 0.5614650729246629, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3866, - "time": 0.564974229630442, + "noteOrder": 3868, + "time": 0.5649742296304419, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.568483386336221, + "noteOrder": 3892, + "time": 0.5684833863362211, "position": { "x": 2, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.5719925430420002, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.5755016997477794, + "noteOrder": 3940, + "time": 0.5755016997477793, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3962, - "time": 0.5790108564535584, + "noteOrder": 3964, + "time": 0.5790108564535585, "position": { "x": 2, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3986, + "noteOrder": 3988, "time": 0.5825200131593377, "position": { "x": 2, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4010, - "time": 0.5860291698651168, + "noteOrder": 4012, + "time": 0.5860291698651169, "position": { "x": 5, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4034, + "noteOrder": 4036, "time": 0.5895383265708959, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4058, + "noteOrder": 4060, "time": 0.593047483276675, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.5965566399824542, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.6000657966882333, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.6035749533940125, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4154, + "noteOrder": 4156, "time": 0.6070841100997917, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6105932668055707, + "noteOrder": 4180, + "time": 0.6105932668055708, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4204, "time": 0.6141024235113499, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4227, - "time": 0.6176115802171291, + "noteOrder": 4228, + "time": 0.617611580217129, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.6211207369229083, + "noteOrder": 4252, + "time": 0.6211207369229081, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4275, + "noteOrder": 4276, "time": 0.6246298936286874, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4300, "time": 0.6281390503344665, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4347, - "time": 0.6351573637460247, + "noteOrder": 4348, + "time": 0.6351573637460248, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4444, "time": 0.6491939905691414, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4539, - "time": 0.663230617392258, + "noteOrder": 4541, + "time": 0.6632306173922579, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.6667397740980371, + "noteOrder": 4565, + "time": 0.666739774098037, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.6702489308038162, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.6772672442153744, + "noteOrder": 4637, + "time": 0.6772672442153745, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.6807764009211537, "position": { "x": 2, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.6877947143327119, + "noteOrder": 4709, + "time": 0.687794714332712, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4731, - "time": 0.6913038710384911, + "noteOrder": 4733, + "time": 0.691303871038491, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.6948130277442702, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4779, + "noteOrder": 4781, "time": 0.6983221844500493, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4803, + "noteOrder": 4805, "time": 0.7018313411558285, "position": { "x": 8, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4827, + "noteOrder": 4829, "time": 0.7053404978616077, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4851, + "noteOrder": 4853, "time": 0.7088496545673868, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.7123588112731659, + "noteOrder": 4877, + "time": 0.7123588112731658, "position": { "x": 2, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4899, - "time": 0.7158679679789451, + "noteOrder": 4901, + "time": 0.715867967978945, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.7509595350367364, + "noteOrder": 5141, + "time": 0.7509595350367365, "position": { "x": 2, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.7544686917425156, "position": { "x": 2, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5235, - "time": 0.7649961618598531, + "noteOrder": 5237, + "time": 0.764996161859853, "position": { "x": 2, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5259, + "noteOrder": 5261, "time": 0.7685053185656322, "position": { "x": 5, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.7790327886829697, "position": { "x": 8, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.7825419453887488, "position": { "x": 8, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.7930694155060861, "position": { "x": 8, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5451, + "noteOrder": 5454, "time": 0.7965785722118653, "position": { "x": 8, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5499, - "time": 0.8035968856234236, + "noteOrder": 5502, + "time": 0.8035968856234237, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5526, "time": 0.8071060423292028, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5550, "time": 0.8106151990349819, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5598, "time": 0.8176335124465401, "position": { "x": 5, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.8211426691523194, + "noteOrder": 5622, + "time": 0.8211426691523193, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5646, "time": 0.8246518258580985, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5980, - "time": 0.8737800197390065, + "noteOrder": 5982, + "time": 0.8737800197390064, "position": { "x": 5, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6004, - "time": 0.8772891764447855, + "noteOrder": 6006, + "time": 0.8772891764447857, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6028, + "noteOrder": 6030, "time": 0.8807983331505648, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6172, + "noteOrder": 6174, "time": 0.9018532733852396, "position": { "x": 5, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6198, "time": 0.9053624300910188, "position": { "x": 6, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6220, - "time": 0.9088715867967978, + "noteOrder": 6222, + "time": 0.9088715867967979, "position": { "x": 7, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6364, + "noteOrder": 6366, "time": 0.9299265270314727, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6388, - "time": 0.9334356837372518, + "noteOrder": 6390, + "time": 0.9334356837372519, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6412, - "time": 0.9369448404430311, + "noteOrder": 6414, + "time": 0.936944840443031, "position": { "x": 3, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6460, + "noteOrder": 6463, "time": 0.9439631538545893, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6484, - "time": 0.9474723105603685, + "noteOrder": 6487, + "time": 0.9474723105603684, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6508, - "time": 0.9509814672661475, + "noteOrder": 6511, + "time": 0.9509814672661476, "position": { "x": 7, "y": 0 @@ -2596,7 +2596,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01403662682311657, @@ -2619,10 +2619,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.021054940234674857, + "time": 0.021054940234674854, "position": { "x": 4, "y": 0 @@ -2642,10 +2642,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.021054940234674857, + "time": 0.021054940234674854, "position": { "x": 2, "y": 0 @@ -2664,11 +2664,11 @@ "isPlayAudio": false }, { - "lineGroupId": 4, - "indexInLine": 0, + "lineGroupId": 3, + "indexInLine": 2, "isSliding": false, - "noteOrder": 168, - "time": 0.024564096940453996, + "noteOrder": 156, + "time": 0.022809518587564425, "position": { "x": 2, "y": 0 @@ -2682,18 +2682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 0, + "lineGroupId": 3, + "indexInLine": 3, "isSliding": false, - "noteOrder": 192, - "time": 0.02807325364623314, + "noteOrder": 156, + "time": 0.022809518587564425, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2710,13 +2710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 5, - "indexInLine": 1, + "lineGroupId": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 240, - "time": 0.03509156705779142, + "noteOrder": 168, + "time": 0.024564096940454, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2733,13 +2733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 7, - "indexInLine": 0, + "lineGroupId": 3, + "indexInLine": 5, "isSliding": false, - "noteOrder": 240, - "time": 0.03509156705779142, + "noteOrder": 168, + "time": 0.024564096940454, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -2751,18 +2751,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 1, "isSliding": false, - "noteOrder": 264, - "time": 0.03860072376357057, + "noteOrder": 168, + "time": 0.024564096940454, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2774,18 +2774,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 4, + "indexInLine": 2, "isSliding": false, - "noteOrder": 288, - "time": 0.042109880469349714, + "noteOrder": 180, + "time": 0.026318675293343568, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2802,13 +2802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 1, + "lineGroupId": 4, + "indexInLine": 3, "isSliding": false, - "noteOrder": 312, - "time": 0.04561903717512885, + "noteOrder": 180, + "time": 0.026318675293343568, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2825,13 +2825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 2, + "lineGroupId": 4, + "indexInLine": 4, "isSliding": false, - "noteOrder": 336, - "time": 0.04912819388090799, + "noteOrder": 192, + "time": 0.02807325364623314, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2848,11 +2848,11 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 3, + "lineGroupId": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 360, - "time": 0.05263735058668714, + "noteOrder": 192, + "time": 0.02807325364623314, "position": { "x": 5, "y": 0 @@ -2871,13 +2871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.05614650729246628, + "noteOrder": 192, + "time": 0.02807325364623314, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2894,11 +2894,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 1, + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 408, - "time": 0.05965566399824542, + "noteOrder": 240, + "time": 0.03509156705779143, "position": { "x": 6, "y": 0 @@ -2917,13 +2917,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 2, + "lineGroupId": 7, + "indexInLine": 1, "isSliding": false, - "noteOrder": 432, - "time": 0.06316482070402457, + "noteOrder": 240, + "time": 0.03509156705779143, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2935,16 +2935,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 865, - "time": 0.12632964140804914, + "noteOrder": 252, + "time": 0.03684614541068099, "position": { "x": 8, "y": 0 @@ -2963,13 +2963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 3, "isSliding": false, - "noteOrder": 889, - "time": 0.12983879811382826, + "noteOrder": 252, + "time": 0.03684614541068099, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2981,18 +2981,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 4, "isSliding": false, - "noteOrder": 961, - "time": 0.1403662682311657, + "noteOrder": 264, + "time": 0.038600723763570564, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3009,13 +3009,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 5, "isSliding": false, - "noteOrder": 985, - "time": 0.14387542493694486, + "noteOrder": 264, + "time": 0.038600723763570564, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3027,18 +3027,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.15440289505428229, + "noteOrder": 264, + "time": 0.038600723763570564, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3055,13 +3055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.15791205176006143, + "noteOrder": 276, + "time": 0.040355302116460136, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3073,18 +3073,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.16843952187739886, + "noteOrder": 276, + "time": 0.040355302116460136, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3101,13 +3101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1177, - "time": 0.17194867858317797, + "noteOrder": 288, + "time": 0.04210988046934971, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3119,18 +3119,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1249, - "time": 0.1824761487005154, + "noteOrder": 288, + "time": 0.04210988046934971, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3147,13 +3147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 9, "indexInLine": 1, "isSliding": false, - "noteOrder": 1321, - "time": 0.19300361881785283, + "noteOrder": 288, + "time": 0.04210988046934971, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3165,18 +3165,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1345, - "time": 0.19651277552363197, + "noteOrder": 312, + "time": 0.04561903717512885, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3193,13 +3193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1393, - "time": 0.20353108893519026, + "noteOrder": 336, + "time": 0.049128193880908, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3216,13 +3216,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1441, - "time": 0.21054940234674857, + "noteOrder": 360, + "time": 0.052637350586687136, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3239,11 +3239,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.21405855905252769, + "noteOrder": 384, + "time": 0.05614650729246628, "position": { "x": 3, "y": 0 @@ -3262,13 +3262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1489, - "time": 0.21756771575830683, + "noteOrder": 408, + "time": 0.05965566399824542, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3280,16 +3280,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1513, - "time": 0.22107687246408597, + "noteOrder": 432, + "time": 0.06316482070402456, "position": { "x": 3, "y": 0 @@ -3308,11 +3308,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.23862265599298169, + "noteOrder": 865, + "time": 0.12632964140804911, "position": { "x": 8, "y": 0 @@ -3331,13 +3331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.24213181269876083, + "noteOrder": 877, + "time": 0.1280842197609387, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3354,11 +3354,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 2, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1681, - "time": 0.24564096940453994, + "noteOrder": 877, + "time": 0.1280842197609387, "position": { "x": 6, "y": 0 @@ -3377,13 +3377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 3, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1705, - "time": 0.24915012611031911, + "noteOrder": 889, + "time": 0.12983879811382826, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3400,11 +3400,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 4, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1729, - "time": 0.2526592828160983, + "noteOrder": 889, + "time": 0.12983879811382826, "position": { "x": 5, "y": 0 @@ -3423,13 +3423,3532 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 5, - "isSliding": false, - "noteOrder": 1753, + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 889, + "time": 0.12983879811382826, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 901, + "time": 0.13159337646671784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 901, + "time": 0.13159337646671784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 913, + "time": 0.1333479548196074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 913, + "time": 0.1333479548196074, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 961, + "time": 0.14036626823116571, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 973, + "time": 0.14212084658405527, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 973, + "time": 0.14212084658405527, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 985, + "time": 0.14387542493694483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 985, + "time": 0.14387542493694483, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 985, + "time": 0.14387542493694483, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 997, + "time": 0.14563000328983441, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 997, + "time": 0.14563000328983441, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1009, + "time": 0.14738458164272397, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1009, + "time": 0.14738458164272397, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1057, + "time": 0.15440289505428226, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1069, + "time": 0.15615747340717184, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1069, + "time": 0.15615747340717184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1081, + "time": 0.15791205176006143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1081, + "time": 0.15791205176006143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1081, + "time": 0.15791205176006143, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1093, + "time": 0.15966663011295096, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1093, + "time": 0.15966663011295096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1105, + "time": 0.16142120846584054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1105, + "time": 0.16142120846584054, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1153, + "time": 0.16843952187739883, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1165, + "time": 0.17019410023028841, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1165, + "time": 0.17019410023028841, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1177, + "time": 0.171948678583178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1177, + "time": 0.171948678583178, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1177, + "time": 0.171948678583178, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1189, + "time": 0.17370325693606756, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1189, + "time": 0.17370325693606756, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1201, + "time": 0.17545783528895711, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1201, + "time": 0.17545783528895711, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1249, + "time": 0.1824761487005154, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1321, + "time": 0.19300361881785283, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.196512775523632, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1393, + "time": 0.20353108893519026, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1441, + "time": 0.21054940234674854, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1453, + "time": 0.21230398069963813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1453, + "time": 0.21230398069963813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1465, + "time": 0.21405855905252769, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1477, + "time": 0.21581313740541724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1477, + "time": 0.21581313740541724, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1490, + "time": 0.21756771575830683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1502, + "time": 0.21932229411119641, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1502, + "time": 0.21932229411119641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1514, + "time": 0.22107687246408597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1526, + "time": 0.22283145081697553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1526, + "time": 0.22283145081697553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.23862265599298169, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1658, + "time": 0.24213181269876083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1682, + "time": 0.24564096940453997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24915012611031911, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25265928281609823, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1754, "time": 0.2561684395218774, "position": { - "x": 5, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1778, + "time": 0.2596775962276565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1802, + "time": 0.2631867529334357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.2666959096392148, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1994, + "time": 0.29126000657966883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.29476916328544794, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2982783199912271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2066, + "time": 0.30178747669700623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3052966334027854, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3088057901085645, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3123149468143437, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2162, + "time": 0.31582410352012286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3193332602259019, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3228424169316811, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.33687904375479766, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3649522974010308, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37898892422414737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37898892422414737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2691, + "time": 0.393025551047264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.393025551047264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4070621778703805, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4070621778703805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2835, + "time": 0.4140804912819388, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4210988046934971, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.42811711810505537, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.43513543151661366, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3027, + "time": 0.44215374492817194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.44917205833973023, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3123, + "time": 0.45619037175128846, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.4632086851628468, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4702269985744051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.47724531198596337, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3315, + "time": 0.48426362539752166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.49128193880907994, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.49830025222063823, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5053185656321965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5123368790437548, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.6316482070402457, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4372, + "time": 0.6386665204518038, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4372, + "time": 0.6386665204518038, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4384, + "time": 0.6404210988046934, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4384, + "time": 0.6404210988046934, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4396, + "time": 0.6421756771575831, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4396, + "time": 0.6421756771575831, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4396, + "time": 0.6421756771575831, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4408, + "time": 0.6439302555104726, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4408, + "time": 0.6439302555104726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4420, + "time": 0.6456848338633622, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4420, + "time": 0.6456848338633622, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4420, + "time": 0.6456848338633622, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4469, + "time": 0.6527031472749205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4469, + "time": 0.6527031472749205, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4481, + "time": 0.6544577256278101, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4481, + "time": 0.6544577256278101, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4493, + "time": 0.6562123039806996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4493, + "time": 0.6562123039806996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4493, + "time": 0.6562123039806996, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4505, + "time": 0.6579668823335892, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4505, + "time": 0.6579668823335892, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6597214606864789, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6597214606864789, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6597214606864789, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4541, + "time": 0.6632306173922579, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4565, + "time": 0.666739774098037, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4613, + "time": 0.6737580875095953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4613, + "time": 0.6737580875095953, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4661, + "time": 0.6807764009211537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5093, + "time": 0.7439412216251782, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5105, + "time": 0.7456957999780678, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5105, + "time": 0.7456957999780678, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5117, + "time": 0.7474503783309573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5117, + "time": 0.7474503783309573, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5117, + "time": 0.7474503783309573, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5129, + "time": 0.7492049566838469, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5129, + "time": 0.7492049566838469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5141, + "time": 0.7509595350367365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5141, + "time": 0.7509595350367365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5189, + "time": 0.7579778484482947, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5201, + "time": 0.7597324268011844, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5201, + "time": 0.7597324268011844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5213, + "time": 0.761487005154074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5213, + "time": 0.761487005154074, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5213, + "time": 0.761487005154074, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5225, + "time": 0.7632415835069636, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5225, + "time": 0.7632415835069636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5237, + "time": 0.764996161859853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5237, + "time": 0.764996161859853, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5285, + "time": 0.7720144752714113, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5297, + "time": 0.7737690536243009, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5297, + "time": 0.7737690536243009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5309, + "time": 0.7755236319771904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5309, + "time": 0.7755236319771904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5309, + "time": 0.7755236319771904, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5321, + "time": 0.77727821033008, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5321, + "time": 0.77727821033008, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5333, + "time": 0.7790327886829697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5333, + "time": 0.7790327886829697, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5381, + "time": 0.786051102094528, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -3446,13 +6965,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 6, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1777, - "time": 0.2596775962276565, + "noteOrder": 5393, + "time": 0.7878056804474174, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3469,13 +6988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 7, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1801, - "time": 0.2631867529334357, + "noteOrder": 5393, + "time": 0.7878056804474174, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3492,11 +7011,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1825, - "time": 0.26669590963921486, + "noteOrder": 5405, + "time": 0.789560258800307, "position": { "x": 6, "y": 0 @@ -3510,18 +7029,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5405, + "time": 0.789560258800307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 1993, - "time": 0.29126000657966883, + "noteOrder": 5405, + "time": 0.789560258800307, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3538,13 +7080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.29476916328544794, + "noteOrder": 5417, + "time": 0.7913148371531966, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3561,13 +7103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2041, - "time": 0.2982783199912271, + "noteOrder": 5417, + "time": 0.7913148371531966, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3584,13 +7126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2065, - "time": 0.30178747669700623, + "noteOrder": 5429, + "time": 0.7930694155060861, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3607,11 +7149,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 3, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2089, - "time": 0.30529663340278534, + "noteOrder": 5429, + "time": 0.7930694155060861, "position": { "x": 5, "y": 0 @@ -3630,11 +7172,34 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 4, + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5478, + "time": 0.8000877289176445, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.30880579010856457, + "noteOrder": 5550, + "time": 0.8106151990349819, "position": { "x": 5, "y": 0 @@ -3648,16 +7213,39 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5574, + "time": 0.814124355740761, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 5, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.3123149468143437, + "noteOrder": 5622, + "time": 0.8211426691523193, "position": { "x": 5, "y": 0 @@ -3676,13 +7264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 6, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2161, - "time": 0.31582410352012286, + "noteOrder": 5670, + "time": 0.8281609825638776, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3699,11 +7287,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 7, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2185, - "time": 0.31933326022590197, + "noteOrder": 5682, + "time": 0.8299155609167672, "position": { "x": 3, "y": 0 @@ -3722,11 +7310,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2209, - "time": 0.3228424169316811, + "noteOrder": 5682, + "time": 0.8299155609167672, "position": { "x": 4, "y": 0 @@ -3740,16 +7328,62 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.3368790437547977, + "noteOrder": 5694, + "time": 0.8316701392696568, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5706, + "time": 0.8334247176225463, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5706, + "time": 0.8334247176225463, "position": { "x": 6, "y": 0 @@ -3768,13 +7402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2497, - "time": 0.3649522974010308, + "noteOrder": 5718, + "time": 0.8351792959754359, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3791,11 +7425,34 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5730, + "time": 0.8369338743283256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.3789889242241474, + "noteOrder": 5730, + "time": 0.8369338743283256, "position": { "x": 4, "y": 0 @@ -3814,11 +7471,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.3789889242241474, + "noteOrder": 5742, + "time": 0.838688452681215, "position": { "x": 7, "y": 0 @@ -3837,11 +7494,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2690, - "time": 0.39302555104726394, + "noteOrder": 5754, + "time": 0.8404430310341046, "position": { "x": 7, "y": 0 @@ -3860,13 +7517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2690, - "time": 0.39302555104726394, + "noteOrder": 5754, + "time": 0.8404430310341046, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3878,18 +7535,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, - "time": 0.4070621778703805, + "noteOrder": 5766, + "time": 0.8421976093869942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5790, + "time": 0.8457067660927733, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3906,13 +7586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2786, - "time": 0.4070621778703805, + "noteOrder": 5814, + "time": 0.8492159227985525, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3924,18 +7604,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2834, - "time": 0.4140804912819388, + "noteOrder": 5838, + "time": 0.8527250795043316, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3947,18 +7627,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.42109880469349714, + "noteOrder": 5766, + "time": 0.8421976093869942, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3970,16 +7650,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2930, - "time": 0.42811711810505537, + "noteOrder": 5790, + "time": 0.8457067660927733, "position": { "x": 3, "y": 0 @@ -3993,18 +7673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2978, - "time": 0.43513543151661366, + "noteOrder": 5814, + "time": 0.8492159227985525, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4021,13 +7701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3026, - "time": 0.44215374492817194, + "noteOrder": 5838, + "time": 0.8527250795043316, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4044,13 +7724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, - "time": 0.44917205833973023, + "noteOrder": 5862, + "time": 0.8562342362101107, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4062,18 +7742,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.4561903717512885, + "noteOrder": 5874, + "time": 0.8579888145630004, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4085,16 +7765,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3170, - "time": 0.4632086851628468, + "noteOrder": 5874, + "time": 0.8579888145630004, "position": { "x": 6, "y": 0 @@ -4113,13 +7793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3218, - "time": 0.4702269985744051, + "noteOrder": 5886, + "time": 0.85974339291589, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4136,11 +7816,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3266, - "time": 0.47724531198596337, + "noteOrder": 5886, + "time": 0.85974339291589, "position": { "x": 5, "y": 0 @@ -4154,18 +7834,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 3314, - "time": 0.48426362539752166, + "noteOrder": 5886, + "time": 0.85974339291589, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4182,13 +7862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.4912819388090799, + "noteOrder": 5898, + "time": 0.8614979712687794, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4200,18 +7880,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3410, - "time": 0.49830025222063823, + "noteOrder": 5898, + "time": 0.8614979712687794, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4223,18 +7903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3458, - "time": 0.5053185656321966, + "noteOrder": 5910, + "time": 0.863252549621669, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4251,13 +7931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3506, - "time": 0.5123368790437548, + "noteOrder": 5910, + "time": 0.863252549621669, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4274,13 +7954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.6316482070402457, + "noteOrder": 5910, + "time": 0.863252549621669, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4292,18 +7972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4371, - "time": 0.6386665204518039, + "noteOrder": 5922, + "time": 0.8650071279745586, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4315,18 +7995,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4371, - "time": 0.6386665204518039, + "noteOrder": 5922, + "time": 0.8650071279745586, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4343,13 +8023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4395, - "time": 0.6421756771575832, + "noteOrder": 5934, + "time": 0.8667617063274481, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4361,18 +8041,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4419, - "time": 0.6456848338633622, + "noteOrder": 5934, + "time": 0.8667617063274481, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4389,13 +8069,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.6527031472749205, + "noteOrder": 5934, + "time": 0.8667617063274481, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4407,18 +8087,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4467, - "time": 0.6527031472749205, + "noteOrder": 5946, + "time": 0.8685162846803377, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4435,13 +8115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4491, - "time": 0.6562123039806996, + "noteOrder": 5946, + "time": 0.8685162846803377, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4453,18 +8133,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4515, - "time": 0.6597214606864787, + "noteOrder": 5958, + "time": 0.8702708630332273, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4481,11 +8161,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 210, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4539, - "time": 0.663230617392258, + "noteOrder": 5958, + "time": 0.8702708630332273, "position": { "x": 5, "y": 0 @@ -4504,13 +8184,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 2, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4563, - "time": 0.6667397740980371, + "noteOrder": 5958, + "time": 0.8702708630332273, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4522,18 +8202,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 3, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4611, - "time": 0.6737580875095954, + "noteOrder": 6054, + "time": 0.8843074898563439, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4545,18 +8225,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4611, - "time": 0.6737580875095954, + "noteOrder": 6054, + "time": 0.8843074898563439, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4568,18 +8248,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4659, - "time": 0.6807764009211537, + "noteOrder": 6066, + "time": 0.8860620682092335, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4591,18 +8271,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5091, - "time": 0.7439412216251782, + "noteOrder": 6066, + "time": 0.8860620682092335, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4619,13 +8299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5115, - "time": 0.7474503783309574, + "noteOrder": 6078, + "time": 0.8878166465621231, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4637,18 +8317,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5187, - "time": 0.7579778484482949, + "noteOrder": 6078, + "time": 0.8878166465621231, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4665,11 +8345,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5211, - "time": 0.7614870051540739, + "noteOrder": 6078, + "time": 0.8878166465621231, "position": { "x": 2, "y": 0 @@ -4688,13 +8368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5283, - "time": 0.7720144752714113, + "noteOrder": 6090, + "time": 0.8895712249150125, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4711,13 +8391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5307, - "time": 0.7755236319771905, + "noteOrder": 6090, + "time": 0.8895712249150125, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4729,18 +8409,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5379, - "time": 0.7860511020945279, + "noteOrder": 6102, + "time": 0.8913258032679021, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4757,13 +8437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5403, - "time": 0.7895602588003071, + "noteOrder": 6102, + "time": 0.8913258032679021, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4775,18 +8455,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, - "time": 0.8000877289176446, + "noteOrder": 6102, + "time": 0.8913258032679021, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4798,18 +8478,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5547, - "time": 0.8106151990349819, + "noteOrder": 6114, + "time": 0.8930803816207917, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4821,18 +8501,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5571, - "time": 0.814124355740761, + "noteOrder": 6114, + "time": 0.8930803816207917, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4849,13 +8529,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5619, - "time": 0.8211426691523194, + "noteOrder": 6126, + "time": 0.8948349599736813, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4872,13 +8552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5667, - "time": 0.8281609825638776, + "noteOrder": 6126, + "time": 0.8948349599736813, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4895,13 +8575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5691, - "time": 0.8316701392696568, + "noteOrder": 6126, + "time": 0.8948349599736813, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4918,13 +8598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5715, - "time": 0.8351792959754358, + "noteOrder": 6138, + "time": 0.8965895383265708, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4936,18 +8616,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5739, - "time": 0.8386884526812151, + "noteOrder": 6138, + "time": 0.8965895383265708, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4964,13 +8644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5763, - "time": 0.8421976093869943, + "noteOrder": 6150, + "time": 0.8983441166794605, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4982,18 +8662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5787, - "time": 0.8457067660927733, + "noteOrder": 6150, + "time": 0.8983441166794605, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5005,18 +8685,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5811, - "time": 0.8492159227985525, + "noteOrder": 6150, + "time": 0.8983441166794605, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5033,13 +8713,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 3, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5835, - "time": 0.8527250795043316, + "noteOrder": 6246, + "time": 0.9123807435025769, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5056,13 +8736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5763, - "time": 0.8421976093869943, + "noteOrder": 6246, + "time": 0.9123807435025769, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5079,13 +8759,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5787, - "time": 0.8457067660927733, + "noteOrder": 6258, + "time": 0.9141353218554665, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5102,13 +8782,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 2, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5811, - "time": 0.8492159227985525, + "noteOrder": 6258, + "time": 0.9141353218554665, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5125,13 +8805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 3, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5835, - "time": 0.8527250795043316, + "noteOrder": 6270, + "time": 0.9158899002083561, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5148,13 +8828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5859, - "time": 0.8562342362101107, + "noteOrder": 6270, + "time": 0.9158899002083561, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5171,11 +8851,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5884, - "time": 0.8597433929158899, + "noteOrder": 6270, + "time": 0.9158899002083561, "position": { "x": 8, "y": 0 @@ -5194,11 +8874,11 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5908, - "time": 0.8632525496216691, + "noteOrder": 6282, + "time": 0.9176444785612458, "position": { "x": 8, "y": 0 @@ -5212,18 +8892,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5932, - "time": 0.8667617063274481, + "noteOrder": 6282, + "time": 0.9176444785612458, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5240,13 +8920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5956, - "time": 0.8702708630332273, + "noteOrder": 6294, + "time": 0.9193990569141353, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5258,18 +8938,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6052, - "time": 0.8843074898563439, + "noteOrder": 6294, + "time": 0.9193990569141353, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5281,18 +8961,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6052, - "time": 0.8843074898563439, + "noteOrder": 6294, + "time": 0.9193990569141353, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5304,18 +8984,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6076, - "time": 0.887816646562123, + "noteOrder": 6306, + "time": 0.9211536352670249, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -5332,13 +9012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6100, - "time": 0.8913258032679022, + "noteOrder": 6306, + "time": 0.9211536352670249, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5350,18 +9030,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6124, - "time": 0.8948349599736813, + "noteOrder": 6318, + "time": 0.9229082136199145, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5378,13 +9058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6148, - "time": 0.8983441166794605, + "noteOrder": 6318, + "time": 0.9229082136199145, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5396,18 +9076,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 226, "indexInLine": 1, "isSliding": false, - "noteOrder": 6244, - "time": 0.912380743502577, + "noteOrder": 6318, + "time": 0.9229082136199145, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5424,11 +9104,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6244, - "time": 0.912380743502577, + "noteOrder": 6330, + "time": 0.924662791972804, "position": { "x": 8, "y": 0 @@ -5442,18 +9122,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6268, - "time": 0.9158899002083563, + "noteOrder": 6330, + "time": 0.924662791972804, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5470,13 +9150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6292, - "time": 0.9193990569141353, + "noteOrder": 6342, + "time": 0.9264173703256936, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5488,18 +9168,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6316, - "time": 0.9229082136199145, + "noteOrder": 6342, + "time": 0.9264173703256936, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5517,9 +9197,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6340, + "noteOrder": 6342, "time": 0.9264173703256936, "position": { "x": 8, @@ -5540,9 +9220,9 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6436, + "noteOrder": 6439, "time": 0.9404539971488102, "position": { "x": 4, @@ -5563,9 +9243,9 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6436, + "noteOrder": 6439, "time": 0.9404539971488102, "position": { "x": 2, @@ -5586,10 +9266,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6508, - "time": 0.9509814672661475, + "noteOrder": 6511, + "time": 0.9509814672661476, "position": { "x": 5, "y": 0 @@ -5609,9 +9289,9 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6532, + "noteOrder": 6535, "time": 0.9544906239719267, "position": { "x": 3, @@ -5632,9 +9312,9 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6556, + "noteOrder": 6559, "time": 0.957999780677706, "position": { "x": 3, @@ -5655,10 +9335,10 @@ }, { "lineGroupId": 235, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6580, - "time": 0.961508937383485, + "noteOrder": 6583, + "time": 0.9615089373834851, "position": { "x": 7, "y": 0 @@ -5678,9 +9358,9 @@ }, { "lineGroupId": 235, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6628, + "noteOrder": 6631, "time": 0.9685272507950433, "position": { "x": 7, @@ -5701,9 +9381,9 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6532, + "noteOrder": 6535, "time": 0.9544906239719267, "position": { "x": 7, @@ -5724,9 +9404,9 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6556, + "noteOrder": 6559, "time": 0.957999780677706, "position": { "x": 7, @@ -5747,10 +9427,10 @@ }, { "lineGroupId": 236, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6580, - "time": 0.961508937383485, + "noteOrder": 6583, + "time": 0.9615089373834851, "position": { "x": 3, "y": 0 @@ -5770,9 +9450,9 @@ }, { "lineGroupId": 236, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6628, + "noteOrder": 6631, "time": 0.9685272507950433, "position": { "x": 3, diff --git a/tracks/My Time/261_difficulty_1b.json b/tracks/My Time/261_difficulty_1b.json index 83a72a5f..d69989a0 100644 --- a/tracks/My Time/261_difficulty_1b.json +++ b/tracks/My Time/261_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.021054940234674857, + "time": 0.021054940234674854, "position": { "x": 8, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 216, - "time": 0.031582410352012286, + "time": 0.03158241035201228, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 240, - "time": 0.03509156705779142, + "time": 0.03509156705779143, "position": { "x": 2, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 336, - "time": 0.04912819388090799, + "time": 0.049128193880908, "position": { "x": 2, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 360, - "time": 0.05263735058668714, + "time": 0.052637350586687136, "position": { "x": 2, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 432, - "time": 0.06316482070402457, + "time": 0.06316482070402456, "position": { "x": 8, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.10176554446759513, "position": { "x": 6, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.10878385787915341, "position": { "x": 4, @@ -254,7 +254,7 @@ }, { "noteOrder": 1129, - "time": 0.1649303651716197, + "time": 0.16493036517161971, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1153, - "time": 0.16843952187739886, + "time": 0.16843952187739883, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1177, - "time": 0.17194867858317797, + "time": 0.171948678583178, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.21756771575830683, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.22107687246408597, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.22458602916986511, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.2596775962276565, "position": { "x": 8, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.27020506634499397, "position": { "x": 5, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.27371422305077314, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.27722337975655226, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.2807325364623314, + "noteOrder": 1922, + "time": 0.28073253646233143, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.2842416931681105, + "noteOrder": 1946, + "time": 0.28424169316811054, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.2877508498738897, + "noteOrder": 1970, + "time": 0.28775084987388966, "position": { "x": 2, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.31582410352012286, "position": { "x": 2, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2234, "time": 0.32635157363746026, "position": { "x": 5, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2257, - "time": 0.3298607303432394, + "noteOrder": 2258, + "time": 0.32986073034323943, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2281, - "time": 0.33336988704901854, + "noteOrder": 2282, + "time": 0.3333698870490185, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2305, - "time": 0.3368790437547977, + "noteOrder": 2306, + "time": 0.33687904375479766, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2353, - "time": 0.34389735716635594, + "noteOrder": 2354, + "time": 0.343897357166356, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3554, + "noteOrder": 3556, "time": 0.519355192455313, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.5228643491610923, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3602, + "noteOrder": 3604, "time": 0.5263735058668714, "position": { "x": 2, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.5333918192784297, + "noteOrder": 3652, + "time": 0.5333918192784296, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.5369009759842088, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.5404101326899879, "position": { "x": 8, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3748, "time": 0.5474284461015463, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3770, - "time": 0.5509376028073254, + "noteOrder": 3772, + "time": 0.5509376028073253, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.5544467595131045, "position": { "x": 2, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3842, - "time": 0.5614650729246627, + "noteOrder": 3844, + "time": 0.5614650729246629, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3866, - "time": 0.564974229630442, + "noteOrder": 3868, + "time": 0.5649742296304419, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.568483386336221, + "noteOrder": 3892, + "time": 0.5684833863362211, "position": { "x": 8, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3938, - "time": 0.5755016997477794, + "noteOrder": 3940, + "time": 0.5755016997477793, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3962, - "time": 0.5790108564535584, + "noteOrder": 3964, + "time": 0.5790108564535585, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3986, + "noteOrder": 3988, "time": 0.5825200131593377, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4034, + "noteOrder": 4036, "time": 0.5895383265708959, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4058, + "noteOrder": 4060, "time": 0.593047483276675, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.5965566399824542, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.6035749533940125, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4154, + "noteOrder": 4156, "time": 0.6070841100997917, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6105932668055707, + "noteOrder": 4180, + "time": 0.6105932668055708, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4204, "time": 0.6141024235113499, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4227, - "time": 0.6176115802171291, + "noteOrder": 4228, + "time": 0.617611580217129, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4275, + "noteOrder": 4276, "time": 0.6246298936286874, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.6386665204518039, + "noteOrder": 4372, + "time": 0.6386665204518038, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4444, "time": 0.6491939905691414, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6527031472749205, "position": { "x": 8, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.6667397740980371, + "noteOrder": 4565, + "time": 0.666739774098037, "position": { "x": 8, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.6702489308038162, "position": { "x": 8, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.6772672442153744, + "noteOrder": 4637, + "time": 0.6772672442153745, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.6807764009211537, "position": { "x": 2, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4923, + "noteOrder": 4925, "time": 0.7193771246847241, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.7263954380962825, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5115, - "time": 0.7474503783309574, + "noteOrder": 5117, + "time": 0.7474503783309573, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.7509595350367364, + "noteOrder": 5141, + "time": 0.7509595350367365, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.7544686917425156, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5187, - "time": 0.7579778484482949, + "noteOrder": 5189, + "time": 0.7579778484482947, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5211, - "time": 0.7614870051540739, + "noteOrder": 5213, + "time": 0.761487005154074, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5235, - "time": 0.7649961618598531, + "noteOrder": 5237, + "time": 0.764996161859853, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5259, + "noteOrder": 5261, "time": 0.7685053185656322, "position": { "x": 7, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5307, - "time": 0.7755236319771905, + "noteOrder": 5309, + "time": 0.7755236319771904, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.7790327886829697, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.7825419453887488, "position": { "x": 5, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5379, - "time": 0.7860511020945279, + "noteOrder": 5381, + "time": 0.786051102094528, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.7895602588003071, + "noteOrder": 5405, + "time": 0.789560258800307, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.7930694155060861, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5451, + "noteOrder": 5454, "time": 0.7965785722118653, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5526, "time": 0.8071060423292028, "position": { "x": 2, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5550, "time": 0.8106151990349819, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5571, + "noteOrder": 5574, "time": 0.814124355740761, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5598, "time": 0.8176335124465401, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.8211426691523194, + "noteOrder": 5622, + "time": 0.8211426691523193, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5646, "time": 0.8246518258580985, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5715, - "time": 0.8351792959754358, + "noteOrder": 5718, + "time": 0.8351792959754359, "position": { "x": 8, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5739, - "time": 0.8386884526812151, + "noteOrder": 5742, + "time": 0.838688452681215, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5763, - "time": 0.8421976093869943, + "noteOrder": 5766, + "time": 0.8421976093869942, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5908, - "time": 0.8632525496216691, + "noteOrder": 5910, + "time": 0.863252549621669, "position": { "x": 8, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5932, + "noteOrder": 5934, "time": 0.8667617063274481, "position": { "x": 8, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5980, - "time": 0.8737800197390065, + "noteOrder": 5982, + "time": 0.8737800197390064, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6004, - "time": 0.8772891764447855, + "noteOrder": 6006, + "time": 0.8772891764447857, "position": { "x": 2, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6028, + "noteOrder": 6030, "time": 0.8807983331505648, "position": { "x": 2, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6100, - "time": 0.8913258032679022, + "noteOrder": 6102, + "time": 0.8913258032679021, "position": { "x": 2, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6124, + "noteOrder": 6126, "time": 0.8948349599736813, "position": { "x": 2, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6172, + "noteOrder": 6174, "time": 0.9018532733852396, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6198, "time": 0.9053624300910188, "position": { "x": 8, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6220, - "time": 0.9088715867967978, + "noteOrder": 6222, + "time": 0.9088715867967979, "position": { "x": 8, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6532, + "noteOrder": 6535, "time": 0.9544906239719267, "position": { "x": 8, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6580, - "time": 0.961508937383485, + "noteOrder": 6583, + "time": 0.9615089373834851, "position": { "x": 4, "y": 0 @@ -2056,7 +2056,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01403662682311657, @@ -2077,12 +2077,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 1, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 108, + "time": 0.01579120517600614, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 108, + "time": 0.01579120517600614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 120, - "time": 0.01754578352889571, + "time": 0.017545783528895714, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 132, + "time": 0.019300361881785282, "position": { "x": 8, "y": 0 @@ -2100,9 +2169,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 2, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 132, + "time": 0.019300361881785282, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.02807325364623314, @@ -2125,10 +2217,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.03509156705779142, + "time": 0.03509156705779143, "position": { "x": 4, "y": 0 @@ -2148,10 +2240,33 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.042109880469349714, + "time": 0.04210988046934971, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 7, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 300, + "time": 0.04386445882223928, "position": { "x": 2, "y": 0 @@ -2169,9 +2284,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 7, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 300, + "time": 0.04386445882223928, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 312, "time": 0.04561903717512885, @@ -2193,11 +2331,11 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, - "time": 0.05614650729246628, + "noteOrder": 324, + "time": 0.04737361552801842, "position": { "x": 2, "y": 0 @@ -2211,18 +2349,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 1, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 432, - "time": 0.06316482070402457, + "noteOrder": 324, + "time": 0.04737361552801842, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2234,18 +2372,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.07018313411558284, + "noteOrder": 384, + "time": 0.05614650729246628, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2257,18 +2395,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 504, - "time": 0.07369229082136199, + "noteOrder": 432, + "time": 0.06316482070402456, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2285,11 +2423,11 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, - "time": 0.07720144752714114, + "noteOrder": 480, + "time": 0.07018313411558286, "position": { "x": 7, "y": 0 @@ -2308,13 +2446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.08421976093869943, + "noteOrder": 492, + "time": 0.07193771246847241, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2326,16 +2464,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 600, - "time": 0.08772891764447856, + "noteOrder": 492, + "time": 0.07193771246847241, "position": { "x": 6, "y": 0 @@ -2354,13 +2492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 624, - "time": 0.0912380743502577, + "noteOrder": 505, + "time": 0.07369229082136199, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2377,13 +2515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 865, - "time": 0.12632964140804914, + "noteOrder": 517, + "time": 0.07544686917425156, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2400,13 +2538,36 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 889, - "time": 0.12983879811382826, + "noteOrder": 517, + "time": 0.07544686917425156, "position": { - "x": 2, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 529, + "time": 0.07720144752714113, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2423,13 +2584,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 913, - "time": 0.13334795481960743, + "noteOrder": 541, + "time": 0.07895602588003071, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2441,18 +2602,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 937, - "time": 0.13685711152538657, + "noteOrder": 541, + "time": 0.07895602588003071, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2469,13 +2630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1403662682311657, + "noteOrder": 577, + "time": 0.08421976093869941, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2492,13 +2653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, - "time": 0.14387542493694486, + "noteOrder": 589, + "time": 0.085974339291589, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2510,18 +2671,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.15440289505428229, + "noteOrder": 589, + "time": 0.085974339291589, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2538,13 +2699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 18, "indexInLine": 1, "isSliding": false, - "noteOrder": 1201, - "time": 0.17545783528895711, + "noteOrder": 601, + "time": 0.08772891764447856, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2556,18 +2717,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.1824761487005154, + "noteOrder": 613, + "time": 0.08948349599736813, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2584,13 +2745,2819 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 613, + "time": 0.08948349599736813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 625, + "time": 0.0912380743502577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 637, + "time": 0.09299265270314727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 637, + "time": 0.09299265270314727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 865, + "time": 0.12632964140804911, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 877, + "time": 0.1280842197609387, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 877, + "time": 0.1280842197609387, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 889, + "time": 0.12983879811382826, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 901, + "time": 0.13159337646671784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 901, + "time": 0.13159337646671784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 913, + "time": 0.1333479548196074, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 925, + "time": 0.13510253317249699, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 925, + "time": 0.13510253317249699, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 937, + "time": 0.13685711152538657, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 949, + "time": 0.13861168987827613, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 949, + "time": 0.13861168987827613, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 961, + "time": 0.14036626823116571, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 973, + "time": 0.14212084658405527, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 973, + "time": 0.14212084658405527, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 985, + "time": 0.14387542493694483, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 997, + "time": 0.14563000328983441, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 997, + "time": 0.14563000328983441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1057, + "time": 0.15440289505428226, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1201, + "time": 0.17545783528895711, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1249, + "time": 0.1824761487005154, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1261, + "time": 0.18423072705340496, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1261, + "time": 0.18423072705340496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, "noteOrder": 1273, "time": 0.18598530540629454, "position": { - "x": 8, + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1285, + "time": 0.18773988375918413, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1285, + "time": 0.18773988375918413, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1297, + "time": 0.18949446211207369, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1309, + "time": 0.19124904046496324, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1309, + "time": 0.19124904046496324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1321, + "time": 0.19300361881785283, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1333, + "time": 0.19475819717074241, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1333, + "time": 0.19475819717074241, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.196512775523632, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1357, + "time": 0.19826735387652153, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1357, + "time": 0.19826735387652153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1369, + "time": 0.20002193222941111, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1381, + "time": 0.2017765105823007, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1381, + "time": 0.2017765105823007, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1441, + "time": 0.21054940234674854, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1538, + "time": 0.22458602916986511, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.23862265599298169, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1646, + "time": 0.24037723434587127, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1646, + "time": 0.24037723434587127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.24213181269876083, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.2438863910516504, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1670, + "time": 0.2438863910516504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.24564096940453997, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1694, + "time": 0.24739554775742953, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1694, + "time": 0.24739554775742953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24915012611031911, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25090470446320867, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25090470446320867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25265928281609823, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1742, + "time": 0.25441386116898784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1742, + "time": 0.25441386116898784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2561684395218774, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.25792301787476696, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1766, + "time": 0.25792301787476696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.2666959096392148, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28775084987388966, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.29476916328544794, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2965237416383375, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2965237416383375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2982783199912271, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2054, + "time": 0.30003289834411667, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2054, + "time": 0.30003289834411667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2066, + "time": 0.30178747669700623, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2078, + "time": 0.30354205504989584, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2078, + "time": 0.30354205504989584, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3052966334027854, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2102, + "time": 0.30705121175567496, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2102, + "time": 0.30705121175567496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.3088057901085645, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2126, + "time": 0.3105603684614541, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2126, + "time": 0.3105603684614541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3123149468143437, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.31406952516723324, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2150, + "time": 0.31406952516723324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3228424169316811, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.33687904375479766, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3649522974010308, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2547, + "time": 0.3719706108125891, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37898892422414737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2643, + "time": 0.38600723763570566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.393025551047264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2739, + "time": 0.40004386445882223, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.4070621778703805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2835, + "time": 0.4140804912819388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4210988046934971, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.42811711810505537, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.43513543151661366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3027, + "time": 0.44215374492817194, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.44917205833973023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3123, + "time": 0.45619037175128846, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.4632086851628468, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4702269985744051, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.47724531198596337, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3315, + "time": 0.48426362539752166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.49128193880907994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.49830025222063823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5053185656321965, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5123368790437548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.6316482070402457, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4336, + "time": 0.6334027853931352, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4336, + "time": 0.6334027853931352, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4348, + "time": 0.6351573637460248, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4360, + "time": 0.6369119420989144, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4360, + "time": 0.6369119420989144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4420, + "time": 0.6456848338633622, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4469, + "time": 0.6527031472749205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6597214606864789, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4529, + "time": 0.6614760390393682, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4529, + "time": 0.6614760390393682, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4541, + "time": 0.6632306173922579, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4553, + "time": 0.6649851957451475, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4553, + "time": 0.6649851957451475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4613, + "time": 0.6737580875095953, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4661, + "time": 0.6807764009211537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4709, + "time": 0.687794714332712, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -2607,13 +5574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.1894944621120737, + "noteOrder": 4721, + "time": 0.6895492926856014, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2625,18 +5592,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1321, - "time": 0.19300361881785283, + "noteOrder": 4721, + "time": 0.6895492926856014, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2653,13 +5620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.19651277552363197, + "noteOrder": 4733, + "time": 0.691303871038491, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2676,13 +5643,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, - "time": 0.20002193222941114, + "noteOrder": 4745, + "time": 0.6930584493913806, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2694,18 +5661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1441, - "time": 0.21054940234674857, + "noteOrder": 4745, + "time": 0.6930584493913806, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2722,13 +5689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 131, "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, - "time": 0.22458602916986511, + "noteOrder": 4757, + "time": 0.6948130277442702, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2740,18 +5707,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1633, - "time": 0.23862265599298169, + "noteOrder": 4769, + "time": 0.6965676060971597, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2763,18 +5730,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1657, - "time": 0.24213181269876083, + "noteOrder": 4769, + "time": 0.6965676060971597, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2791,13 +5758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.24564096940453994, + "noteOrder": 4805, + "time": 0.7018313411558285, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2814,13 +5781,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1705, - "time": 0.24915012611031911, + "noteOrder": 4817, + "time": 0.7035859195087181, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -2832,18 +5799,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1729, - "time": 0.2526592828160983, + "noteOrder": 4817, + "time": 0.7035859195087181, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2860,13 +5827,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1753, - "time": 0.2561684395218774, + "noteOrder": 4829, + "time": 0.7053404978616077, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2883,13 +5850,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.26669590963921486, + "noteOrder": 4841, + "time": 0.7070950762144972, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2901,18 +5868,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1969, - "time": 0.2877508498738897, + "noteOrder": 4841, + "time": 0.7070950762144972, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2924,18 +5891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.29476916328544794, + "noteOrder": 4853, + "time": 0.7088496545673868, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2947,18 +5914,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, - "time": 0.2982783199912271, + "noteOrder": 4865, + "time": 0.7106042329202764, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2975,13 +5942,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2065, - "time": 0.30178747669700623, + "noteOrder": 4865, + "time": 0.7106042329202764, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2993,16 +5960,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2089, - "time": 0.30529663340278534, + "noteOrder": 5093, + "time": 0.7439412216251782, "position": { "x": 2, "y": 0 @@ -3016,18 +5983,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.30880579010856457, + "noteOrder": 5285, + "time": 0.7720144752714113, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3044,13 +6011,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2137, - "time": 0.3123149468143437, + "noteOrder": 5285, + "time": 0.7720144752714113, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3067,13 +6034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.3228424169316811, + "noteOrder": 5478, + "time": 0.8000877289176445, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3085,18 +6052,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.3368790437547977, + "noteOrder": 5478, + "time": 0.8000877289176445, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3113,13 +6080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2497, - "time": 0.3649522974010308, + "noteOrder": 5490, + "time": 0.8018423072705341, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3131,18 +6098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2546, - "time": 0.3719706108125891, + "noteOrder": 5490, + "time": 0.8018423072705341, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3154,18 +6121,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.3789889242241474, + "noteOrder": 5502, + "time": 0.8035968856234237, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3177,18 +6144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2642, - "time": 0.38600723763570566, + "noteOrder": 5514, + "time": 0.8053514639763132, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3200,18 +6167,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2690, - "time": 0.39302555104726394, + "noteOrder": 5514, + "time": 0.8053514639763132, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3228,13 +6195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, - "time": 0.4000438644588223, + "noteOrder": 5670, + "time": 0.8281609825638776, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3251,13 +6218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4070621778703805, + "noteOrder": 5682, + "time": 0.8299155609167672, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3269,18 +6236,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2834, - "time": 0.4140804912819388, + "noteOrder": 5682, + "time": 0.8299155609167672, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3292,18 +6259,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.42109880469349714, + "noteOrder": 5694, + "time": 0.8316701392696568, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3315,18 +6282,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2930, - "time": 0.42811711810505537, + "noteOrder": 5706, + "time": 0.8334247176225463, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3338,16 +6305,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2978, - "time": 0.43513543151661366, + "noteOrder": 5706, + "time": 0.8334247176225463, "position": { "x": 6, "y": 0 @@ -3366,13 +6333,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, - "time": 0.44215374492817194, + "noteOrder": 5862, + "time": 0.8562342362101107, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3384,18 +6351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3074, - "time": 0.44917205833973023, + "noteOrder": 5874, + "time": 0.8579888145630004, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3412,13 +6379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3122, - "time": 0.4561903717512885, + "noteOrder": 5874, + "time": 0.8579888145630004, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3435,13 +6402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.4632086851628468, + "noteOrder": 5886, + "time": 0.85974339291589, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3458,13 +6425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.4702269985744051, + "noteOrder": 5898, + "time": 0.8614979712687794, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3481,13 +6448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.47724531198596337, + "noteOrder": 5898, + "time": 0.8614979712687794, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3499,18 +6466,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 3314, - "time": 0.48426362539752166, + "noteOrder": 5958, + "time": 0.8702708630332273, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3527,11 +6494,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.4912819388090799, + "noteOrder": 6006, + "time": 0.8772891764447857, "position": { "x": 4, "y": 0 @@ -3545,18 +6512,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, - "time": 0.49830025222063823, + "noteOrder": 6054, + "time": 0.8843074898563439, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3573,13 +6540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.5053185656321966, + "noteOrder": 6066, + "time": 0.8860620682092335, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3591,18 +6558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3506, - "time": 0.5123368790437548, + "noteOrder": 6066, + "time": 0.8860620682092335, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3614,16 +6581,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.6316482070402457, + "noteOrder": 6078, + "time": 0.8878166465621231, "position": { "x": 2, "y": 0 @@ -3637,16 +6604,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4347, - "time": 0.6351573637460247, + "noteOrder": 6090, + "time": 0.8895712249150125, "position": { "x": 2, "y": 0 @@ -3665,13 +6632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4419, - "time": 0.6456848338633622, + "noteOrder": 6090, + "time": 0.8895712249150125, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3683,18 +6650,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 183, "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.6527031472749205, + "noteOrder": 6150, + "time": 0.8983441166794605, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3711,13 +6678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4515, - "time": 0.6597214606864787, + "noteOrder": 6198, + "time": 0.9053624300910188, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3729,16 +6696,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4539, - "time": 0.663230617392258, + "noteOrder": 6246, + "time": 0.9123807435025769, "position": { "x": 8, "y": 0 @@ -3752,16 +6719,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4611, - "time": 0.6737580875095954, + "noteOrder": 6258, + "time": 0.9141353218554665, "position": { "x": 8, "y": 0 @@ -3780,13 +6747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4659, - "time": 0.6807764009211537, + "noteOrder": 6258, + "time": 0.9141353218554665, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3803,13 +6770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, - "time": 0.6877947143327119, + "noteOrder": 6270, + "time": 0.9158899002083561, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3826,13 +6793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4731, - "time": 0.6913038710384911, + "noteOrder": 6282, + "time": 0.9176444785612458, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3844,18 +6811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4755, - "time": 0.6948130277442702, + "noteOrder": 6282, + "time": 0.9176444785612458, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3872,13 +6839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.7018313411558285, + "noteOrder": 6294, + "time": 0.9193990569141353, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3895,13 +6862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4827, - "time": 0.7053404978616077, + "noteOrder": 6306, + "time": 0.9211536352670249, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3913,18 +6880,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4851, - "time": 0.7088496545673868, + "noteOrder": 6306, + "time": 0.9211536352670249, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3941,13 +6908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5091, - "time": 0.7439412216251782, + "noteOrder": 6318, + "time": 0.9229082136199145, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3964,13 +6931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5283, - "time": 0.7720144752714113, + "noteOrder": 6330, + "time": 0.924662791972804, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3987,13 +6954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5283, - "time": 0.7720144752714113, + "noteOrder": 6330, + "time": 0.924662791972804, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4005,18 +6972,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, - "time": 0.8000877289176446, + "noteOrder": 6342, + "time": 0.9264173703256936, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4033,36 +7000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5475, - "time": 0.8000877289176446, - "position": { - "x": 2, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5499, - "time": 0.8035968856234236, + "noteOrder": 6354, + "time": 0.9281719486785832, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4079,13 +7023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5667, - "time": 0.8281609825638776, + "noteOrder": 6354, + "time": 0.9281719486785832, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4102,11 +7046,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5691, - "time": 0.8316701392696568, + "noteOrder": 6366, + "time": 0.9299265270314727, "position": { "x": 8, "y": 0 @@ -4125,11 +7069,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5859, - "time": 0.8562342362101107, + "noteOrder": 6378, + "time": 0.9316811053843623, "position": { "x": 8, "y": 0 @@ -4143,18 +7087,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5884, - "time": 0.8597433929158899, + "noteOrder": 6378, + "time": 0.9316811053843623, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4171,11 +7115,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5956, - "time": 0.8702708630332273, + "noteOrder": 6390, + "time": 0.9334356837372519, "position": { "x": 8, "y": 0 @@ -4194,13 +7138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6004, - "time": 0.8772891764447855, + "noteOrder": 6402, + "time": 0.9351902620901414, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4217,13 +7161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6052, - "time": 0.8843074898563439, + "noteOrder": 6402, + "time": 0.9351902620901414, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4235,18 +7179,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6076, - "time": 0.887816646562123, + "noteOrder": 6414, + "time": 0.936944840443031, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4258,18 +7202,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6148, - "time": 0.8983441166794605, + "noteOrder": 6426, + "time": 0.9386994187959206, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4286,11 +7230,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6196, - "time": 0.9053624300910188, + "noteOrder": 6426, + "time": 0.9386994187959206, "position": { "x": 6, "y": 0 @@ -4309,11 +7253,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6244, - "time": 0.912380743502577, + "noteOrder": 6439, + "time": 0.9404539971488102, "position": { "x": 8, "y": 0 @@ -4332,11 +7276,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6268, - "time": 0.9158899002083563, + "noteOrder": 6451, + "time": 0.9422085755016997, "position": { "x": 8, "y": 0 @@ -4350,18 +7294,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6292, - "time": 0.9193990569141353, + "noteOrder": 6451, + "time": 0.9422085755016997, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4378,13 +7322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6316, - "time": 0.9229082136199145, + "noteOrder": 6463, + "time": 0.9439631538545893, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4401,13 +7345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6340, - "time": 0.9264173703256936, + "noteOrder": 6475, + "time": 0.9457177322074789, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4419,18 +7363,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6364, - "time": 0.9299265270314727, + "noteOrder": 6475, + "time": 0.9457177322074789, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4447,11 +7391,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6388, - "time": 0.9334356837372518, + "noteOrder": 6487, + "time": 0.9474723105603684, "position": { "x": 8, "y": 0 @@ -4470,11 +7414,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6412, - "time": 0.9369448404430311, + "noteOrder": 6499, + "time": 0.949226888913258, "position": { "x": 8, "y": 0 @@ -4488,18 +7432,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6436, - "time": 0.9404539971488102, + "noteOrder": 6499, + "time": 0.949226888913258, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4516,11 +7460,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6460, - "time": 0.9439631538545893, + "noteOrder": 6511, + "time": 0.9509814672661476, "position": { "x": 4, "y": 0 @@ -4539,13 +7483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6484, - "time": 0.9474723105603685, + "noteOrder": 6523, + "time": 0.9527360456190371, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4557,18 +7501,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6508, - "time": 0.9509814672661475, + "noteOrder": 6523, + "time": 0.9527360456190371, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { diff --git a/tracks/My Time/info.json b/tracks/My Time/info.json index 00225ae6..73602cf0 100644 --- a/tracks/My Time/info.json +++ b/tracks/My Time/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "My Time", - "SongLength": "124.055510", + "SongLength": "114.102857", "SongAuthorName": "RiraN", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Necroxis Girl/376_difficulty_1a.json b/tracks/Necroxis Girl/376_difficulty_1a.json index 73c35ec0..790a7408 100644 --- a/tracks/Necroxis Girl/376_difficulty_1a.json +++ b/tracks/Necroxis Girl/376_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 1037, - "time": 0.14527027027027026, + "time": 0.14527027027027029, "position": { "x": 6, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.15202702702702703, "position": { "x": 5, @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 1109, - "time": 0.1554054054054054, + "noteOrder": 1110, + "time": 0.15540540540540543, "position": { "x": 5, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 1133, - "time": 0.15878378378378377, + "noteOrder": 1134, + "time": 0.1587837837837838, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1182, - "time": 0.16554054054054054, + "time": 0.16554054054054057, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1206, - "time": 0.16891891891891891, + "time": 0.16891891891891894, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1278, - "time": 0.17905405405405406, + "noteOrder": 1279, + "time": 0.17905405405405408, "position": { "x": 5, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1302, - "time": 0.18243243243243246, + "noteOrder": 1303, + "time": 0.18243243243243243, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1326, + "noteOrder": 1327, "time": 0.1858108108108108, "position": { "x": 6, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1350, - "time": 0.18918918918918917, + "noteOrder": 1351, + "time": 0.1891891891891892, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1375, - "time": 0.19256756756756754, + "time": 0.19256756756756757, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1423, - "time": 0.19932432432432431, + "time": 0.19932432432432434, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1543, + "noteOrder": 1544, "time": 0.21621621621621623, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1567, + "noteOrder": 1568, "time": 0.2195945945945946, "position": { "x": 7, @@ -374,7 +374,7 @@ }, { "noteOrder": 1592, - "time": 0.22297297297297297, + "time": 0.222972972972973, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1760, - "time": 0.24662162162162163, + "noteOrder": 1761, + "time": 0.24662162162162166, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1784, - "time": 0.25, + "noteOrder": 1785, + "time": 0.25000000000000006, "position": { "x": 2, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.26013513513513514, "position": { "x": 5, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1905, + "noteOrder": 1906, "time": 0.2668918918918919, "position": { "x": 5, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1953, + "noteOrder": 1954, "time": 0.2736486486486487, "position": { "x": 8, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2170, + "noteOrder": 2171, "time": 0.30405405405405406, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2387, + "noteOrder": 2388, "time": 0.3344594594594595, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.36824324324324326, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2798, "time": 0.3918918918918919, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2894, - "time": 0.4054054054054054, + "noteOrder": 2895, + "time": 0.40540540540540543, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2894, - "time": 0.4054054054054054, + "noteOrder": 2895, + "time": 0.40540540540540543, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2918, - "time": 0.40878378378378377, + "noteOrder": 2919, + "time": 0.4087837837837838, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2918, - "time": 0.40878378378378377, + "noteOrder": 2919, + "time": 0.4087837837837838, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2942, + "noteOrder": 2943, "time": 0.41216216216216217, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3014, - "time": 0.4222972972972973, + "noteOrder": 3016, + "time": 0.42229729729729737, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3038, - "time": 0.42567567567567566, + "noteOrder": 3040, + "time": 0.4256756756756757, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3063, - "time": 0.42905405405405406, + "noteOrder": 3064, + "time": 0.4290540540540541, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3207, + "noteOrder": 3209, "time": 0.44932432432432434, "position": { "x": 5, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3231, - "time": 0.4527027027027027, + "noteOrder": 3233, + "time": 0.45270270270270274, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3256, - "time": 0.45608108108108103, + "noteOrder": 3257, + "time": 0.4560810810810811, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3400, - "time": 0.4763513513513513, + "noteOrder": 3402, + "time": 0.47635135135135137, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3448, + "noteOrder": 3450, "time": 0.4831081081081081, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3497, - "time": 0.48986486486486486, + "noteOrder": 3498, + "time": 0.4898648648648649, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3521, - "time": 0.49324324324324326, + "noteOrder": 3522, + "time": 0.4932432432432433, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3545, - "time": 0.4966216216216216, + "noteOrder": 3546, + "time": 0.49662162162162166, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3569, - "time": 0.5, + "noteOrder": 3570, + "time": 0.5000000000000001, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3593, + "noteOrder": 3595, "time": 0.5033783783783784, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3619, "time": 0.5067567567567568, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3641, - "time": 0.5101351351351351, + "noteOrder": 3643, + "time": 0.5101351351351352, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3667, "time": 0.5135135135135135, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3690, + "noteOrder": 3691, "time": 0.5168918918918919, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4196, + "noteOrder": 4198, "time": 0.5878378378378378, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4220, + "noteOrder": 4222, "time": 0.5912162162162162, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4292, + "noteOrder": 4294, "time": 0.6013513513513513, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4317, + "noteOrder": 4318, "time": 0.6047297297297297, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4389, - "time": 0.6148648648648648, + "noteOrder": 4391, + "time": 0.6148648648648649, "position": { "x": 5, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4413, + "noteOrder": 4415, "time": 0.6182432432432433, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4558, + "noteOrder": 4560, "time": 0.6385135135135136, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4582, + "noteOrder": 4584, "time": 0.6418918918918919, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4606, + "noteOrder": 4608, "time": 0.6452702702702703, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4751, - "time": 0.6655405405405405, + "noteOrder": 4753, + "time": 0.6655405405405406, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4775, + "noteOrder": 4777, "time": 0.668918918918919, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4799, - "time": 0.6722972972972973, + "noteOrder": 4801, + "time": 0.6722972972972974, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4895, - "time": 0.6858108108108107, + "noteOrder": 4897, + "time": 0.6858108108108109, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 4946, "time": 0.6925675675675675, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4994, "time": 0.6993243243243243, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5040, - "time": 0.706081081081081, + "noteOrder": 5042, + "time": 0.7060810810810811, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5066, "time": 0.7094594594594595, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5088, - "time": 0.7128378378378378, + "noteOrder": 5090, + "time": 0.7128378378378379, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 5139, "time": 0.7195945945945946, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5185, - "time": 0.7263513513513513, + "noteOrder": 5187, + "time": 0.7263513513513514, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5621, "time": 0.7871621621621622, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5643, - "time": 0.7905405405405405, + "noteOrder": 5645, + "time": 0.7905405405405406, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5691, - "time": 0.7972972972972973, + "noteOrder": 5693, + "time": 0.7972972972972974, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5703, - "time": 0.7989864864864864, + "noteOrder": 5705, + "time": 0.7989864864864865, "position": { "x": 5, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5932, - "time": 0.831081081081081, + "noteOrder": 5935, + "time": 0.8310810810810811, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5956, + "noteOrder": 5959, "time": 0.8344594594594594, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5980, + "noteOrder": 5983, "time": 0.8378378378378378, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6005, - "time": 0.8412162162162161, + "noteOrder": 6007, + "time": 0.8412162162162163, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6029, - "time": 0.8445945945945946, + "noteOrder": 6031, + "time": 0.8445945945945947, "position": { "x": 8, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6101, - "time": 0.8547297297297297, + "noteOrder": 6103, + "time": 0.8547297297297298, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6125, - "time": 0.8581081081081081, + "noteOrder": 6128, + "time": 0.8581081081081082, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6149, - "time": 0.8614864864864864, + "noteOrder": 6152, + "time": 0.8614864864864865, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6294, - "time": 0.8817567567567567, + "noteOrder": 6296, + "time": 0.8817567567567568, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6318, - "time": 0.8851351351351352, + "noteOrder": 6321, + "time": 0.8851351351351351, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6342, - "time": 0.8885135135135135, + "noteOrder": 6345, + "time": 0.8885135135135136, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6439, - "time": 0.902027027027027, + "noteOrder": 6441, + "time": 0.9020270270270271, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6583, - "time": 0.9222972972972973, + "noteOrder": 6586, + "time": 0.9222972972972974, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6607, + "noteOrder": 6610, "time": 0.9256756756756757, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6632, + "noteOrder": 6634, "time": 0.9290540540540541, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6680, - "time": 0.9358108108108109, + "noteOrder": 6682, + "time": 0.935810810810811, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6728, - "time": 0.9425675675675675, + "noteOrder": 6731, + "time": 0.9425675675675677, "position": { "x": 5, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6752, - "time": 0.9459459459459459, + "noteOrder": 6755, + "time": 0.945945945945946, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6776, + "noteOrder": 6779, "time": 0.9493243243243243, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6800, - "time": 0.9527027027027026, + "noteOrder": 6803, + "time": 0.9527027027027027, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6824, + "noteOrder": 6827, "time": 0.9560810810810811, "position": { "x": 6, @@ -1956,10 +1956,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.09459459459459459, + "time": 0.0945945945945946, "position": { "x": 7, "y": 0 @@ -1979,10 +1979,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 723, - "time": 0.10135135135135134, + "noteOrder": 724, + "time": 0.10135135135135136, "position": { "x": 7, "y": 0 @@ -2002,7 +2002,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 748, "time": 0.10472972972972973, @@ -2025,7 +2025,7 @@ }, { "lineGroupId": 1, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 772, "time": 0.10810810810810811, @@ -2048,7 +2048,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, "time": 0.10810810810810811, @@ -2071,10 +2071,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 820, - "time": 0.11486486486486486, + "time": 0.11486486486486487, "position": { "x": 3, "y": 0 @@ -2094,10 +2094,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 844, - "time": 0.11824324324324324, + "time": 0.11824324324324326, "position": { "x": 4, "y": 0 @@ -2117,10 +2117,10 @@ }, { "lineGroupId": 2, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 868, - "time": 0.12162162162162161, + "time": 0.12162162162162163, "position": { "x": 5, "y": 0 @@ -2140,10 +2140,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, - "time": 0.12162162162162161, + "time": 0.12162162162162163, "position": { "x": 7, "y": 0 @@ -2163,9 +2163,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 916, + "noteOrder": 917, "time": 0.12837837837837837, "position": { "x": 7, @@ -2186,9 +2186,9 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 940, + "noteOrder": 941, "time": 0.13175675675675677, "position": { "x": 6, @@ -2209,7 +2209,7 @@ }, { "lineGroupId": 3, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 965, "time": 0.13513513513513514, @@ -2232,7 +2232,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, "time": 0.13513513513513514, @@ -2255,7 +2255,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1013, "time": 0.1418918918918919, @@ -2278,10 +2278,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1037, - "time": 0.14527027027027026, + "time": 0.14527027027027029, "position": { "x": 4, "y": 0 @@ -2301,10 +2301,10 @@ }, { "lineGroupId": 4, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1061, - "time": 0.14864864864864863, + "time": 0.14864864864864866, "position": { "x": 5, "y": 0 @@ -2324,10 +2324,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1061, - "time": 0.14864864864864863, + "time": 0.14864864864864866, "position": { "x": 7, "y": 0 @@ -2347,9 +2347,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.15202702702702703, "position": { "x": 7, @@ -2370,10 +2370,10 @@ }, { "lineGroupId": 7, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1109, - "time": 0.1554054054054054, + "noteOrder": 1110, + "time": 0.15540540540540543, "position": { "x": 6, "y": 0 @@ -2393,10 +2393,10 @@ }, { "lineGroupId": 7, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1133, - "time": 0.15878378378378377, + "noteOrder": 1134, + "time": 0.1587837837837838, "position": { "x": 6, "y": 0 @@ -2416,7 +2416,7 @@ }, { "lineGroupId": 7, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1158, "time": 0.16216216216216217, @@ -2439,10 +2439,10 @@ }, { "lineGroupId": 7, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1182, - "time": 0.16554054054054054, + "time": 0.16554054054054057, "position": { "x": 6, "y": 0 @@ -2462,10 +2462,10 @@ }, { "lineGroupId": 7, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1206, - "time": 0.16891891891891891, + "time": 0.16891891891891894, "position": { "x": 5, "y": 0 @@ -2485,7 +2485,7 @@ }, { "lineGroupId": 7, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1230, "time": 0.1722972972972973, @@ -2508,10 +2508,10 @@ }, { "lineGroupId": 7, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, "noteOrder": 1254, - "time": 0.17567567567567569, + "time": 0.1756756756756757, "position": { "x": 4, "y": 0 @@ -2531,10 +2531,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1254, - "time": 0.17567567567567569, + "time": 0.1756756756756757, "position": { "x": 3, "y": 0 @@ -2554,10 +2554,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1278, - "time": 0.17905405405405406, + "noteOrder": 1279, + "time": 0.17905405405405408, "position": { "x": 3, "y": 0 @@ -2577,10 +2577,10 @@ }, { "lineGroupId": 15, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.18243243243243246, + "noteOrder": 1303, + "time": 0.18243243243243243, "position": { "x": 4, "y": 0 @@ -2600,9 +2600,9 @@ }, { "lineGroupId": 15, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1326, + "noteOrder": 1327, "time": 0.1858108108108108, "position": { "x": 4, @@ -2623,10 +2623,10 @@ }, { "lineGroupId": 15, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1350, - "time": 0.18918918918918917, + "noteOrder": 1351, + "time": 0.1891891891891892, "position": { "x": 5, "y": 0 @@ -2646,10 +2646,10 @@ }, { "lineGroupId": 15, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1375, - "time": 0.19256756756756754, + "time": 0.19256756756756757, "position": { "x": 6, "y": 0 @@ -2669,7 +2669,7 @@ }, { "lineGroupId": 15, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, "noteOrder": 1399, "time": 0.19594594594594594, @@ -2692,10 +2692,10 @@ }, { "lineGroupId": 15, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, "noteOrder": 1423, - "time": 0.19932432432432431, + "time": 0.19932432432432434, "position": { "x": 5, "y": 0 @@ -2715,10 +2715,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1447, - "time": 0.2027027027027027, + "time": 0.20270270270270271, "position": { "x": 7, "y": 0 @@ -2737,11 +2737,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1471, - "time": 0.20608108108108109, + "noteOrder": 1460, + "time": 0.2043918918918919, "position": { "x": 7, "y": 0 @@ -2755,18 +2755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1495, - "time": 0.20945945945945946, + "noteOrder": 1460, + "time": 0.2043918918918919, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2783,11 +2783,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1519, - "time": 0.21283783783783783, + "noteOrder": 1472, + "time": 0.20608108108108109, "position": { "x": 7, "y": 0 @@ -2806,13 +2806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, + "lineGroupId": 24, "indexInLine": 2, "isSliding": false, - "noteOrder": 1543, - "time": 0.21621621621621623, + "noteOrder": 1484, + "time": 0.20777027027027029, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2829,13 +2829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, + "lineGroupId": 24, "indexInLine": 3, "isSliding": false, - "noteOrder": 1567, - "time": 0.2195945945945946, + "noteOrder": 1484, + "time": 0.20777027027027029, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2852,13 +2852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 4, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1592, - "time": 0.22297297297297297, + "noteOrder": 1496, + "time": 0.20945945945945946, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2870,18 +2870,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 5, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1616, - "time": 0.22635135135135134, + "noteOrder": 1508, + "time": 0.21114864864864868, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2893,18 +2893,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1616, - "time": 0.22635135135135134, + "noteOrder": 1508, + "time": 0.21114864864864868, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2921,13 +2921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1640, - "time": 0.22972972972972971, + "noteOrder": 1520, + "time": 0.21283783783783786, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2944,13 +2944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1664, - "time": 0.2331081081081081, + "noteOrder": 1532, + "time": 0.21452702702702706, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2962,18 +2962,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1688, - "time": 0.23648648648648649, + "noteOrder": 1532, + "time": 0.21452702702702706, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2990,13 +2990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1712, - "time": 0.23986486486486486, + "noteOrder": 1544, + "time": 0.21621621621621623, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3008,18 +3008,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1736, - "time": 0.24324324324324323, + "noteOrder": 1568, + "time": 0.2195945945945946, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3036,13 +3036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1760, - "time": 0.24662162162162163, + "noteOrder": 1592, + "time": 0.222972972972973, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3059,13 +3059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 2, + "lineGroupId": 26, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1784, - "time": 0.25, + "noteOrder": 1616, + "time": 0.22635135135135137, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3082,13 +3082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 3, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1809, - "time": 0.2533783783783784, + "noteOrder": 1616, + "time": 0.22635135135135137, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3100,18 +3100,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 4, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1833, - "time": 0.25675675675675674, + "noteOrder": 1628, + "time": 0.22804054054054054, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3123,18 +3123,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1833, - "time": 0.25675675675675674, + "noteOrder": 1628, + "time": 0.22804054054054054, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3151,13 +3151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 1881, - "time": 0.26351351351351354, + "noteOrder": 1640, + "time": 0.22972972972972974, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3169,16 +3169,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1881, - "time": 0.26351351351351354, + "noteOrder": 1653, + "time": 0.23141891891891891, "position": { "x": 3, "y": 0 @@ -3197,13 +3197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1929, - "time": 0.2702702702702703, + "noteOrder": 1653, + "time": 0.23141891891891891, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3220,13 +3220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1929, - "time": 0.2702702702702703, + "noteOrder": 1665, + "time": 0.23310810810810814, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3243,13 +3243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1977, - "time": 0.27702702702702703, + "noteOrder": 1677, + "time": 0.2347972972972973, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3266,13 +3266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1977, - "time": 0.27702702702702703, + "noteOrder": 1677, + "time": 0.2347972972972973, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3284,16 +3284,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 33, "indexInLine": 1, "isSliding": false, - "noteOrder": 2026, - "time": 0.2837837837837838, + "noteOrder": 1689, + "time": 0.2364864864864865, "position": { "x": 3, "y": 0 @@ -3312,13 +3312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2026, - "time": 0.2837837837837838, + "noteOrder": 1701, + "time": 0.23817567567567569, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3330,18 +3330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2050, - "time": 0.2871621621621621, + "noteOrder": 1701, + "time": 0.23817567567567569, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3358,13 +3358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2074, - "time": 0.2905405405405405, + "noteOrder": 1713, + "time": 0.23986486486486489, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3381,11 +3381,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2098, - "time": 0.2939189189189189, + "noteOrder": 1725, + "time": 0.24155405405405406, "position": { "x": 3, "y": 0 @@ -3399,18 +3399,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2122, - "time": 0.29729729729729726, + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1725, + "time": 0.24155405405405406, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3427,11 +3427,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2146, - "time": 0.30067567567567566, + "noteOrder": 1737, + "time": 0.24324324324324326, "position": { "x": 3, "y": 0 @@ -3450,13 +3450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2219, - "time": 0.3108108108108108, + "noteOrder": 1761, + "time": 0.24662162162162166, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3468,18 +3468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2267, - "time": 0.31756756756756754, + "noteOrder": 1785, + "time": 0.25000000000000006, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3496,13 +3496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2315, - "time": 0.32432432432432434, + "noteOrder": 1809, + "time": 0.2533783783783784, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3514,16 +3514,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2339, - "time": 0.3277027027027027, + "noteOrder": 1833, + "time": 0.25675675675675674, "position": { "x": 3, "y": 0 @@ -3542,11 +3542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2363, - "time": 0.3310810810810811, + "noteOrder": 1833, + "time": 0.25675675675675674, "position": { "x": 7, "y": 0 @@ -3565,13 +3565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2387, - "time": 0.3344594594594595, + "noteOrder": 1882, + "time": 0.26351351351351354, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3588,11 +3588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2411, - "time": 0.33783783783783783, + "noteOrder": 1882, + "time": 0.26351351351351354, "position": { "x": 3, "y": 0 @@ -3611,13 +3611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2460, - "time": 0.3445945945945946, + "noteOrder": 1930, + "time": 0.2702702702702703, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3629,18 +3629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2484, - "time": 0.34797297297297297, + "noteOrder": 1930, + "time": 0.2702702702702703, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3657,11 +3657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 43, "indexInLine": 2, "isSliding": false, - "noteOrder": 2508, - "time": 0.35135135135135137, + "noteOrder": 1978, + "time": 0.27702702702702703, "position": { "x": 7, "y": 0 @@ -3680,13 +3680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 3, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2532, - "time": 0.35472972972972977, + "noteOrder": 1978, + "time": 0.27702702702702703, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3698,18 +3698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 4, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2556, - "time": 0.3581081081081081, + "noteOrder": 2026, + "time": 0.2837837837837838, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3721,18 +3721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2484, - "time": 0.34797297297297297, + "noteOrder": 2026, + "time": 0.2837837837837838, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3744,18 +3744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2508, - "time": 0.35135135135135137, + "noteOrder": 2039, + "time": 0.285472972972973, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3767,18 +3767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 2, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2532, - "time": 0.35472972972972977, + "noteOrder": 2039, + "time": 0.285472972972973, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3790,18 +3790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 3, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2556, - "time": 0.3581081081081081, + "noteOrder": 2051, + "time": 0.2871621621621622, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3818,13 +3818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2604, - "time": 0.3648648648648649, + "noteOrder": 2063, + "time": 0.28885135135135137, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3836,18 +3836,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2677, - "time": 0.37499999999999994, + "noteOrder": 2063, + "time": 0.28885135135135137, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3859,16 +3859,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2725, - "time": 0.38175675675675674, + "noteOrder": 2075, + "time": 0.29054054054054057, "position": { "x": 7, "y": 0 @@ -3887,13 +3887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2725, - "time": 0.38175675675675674, + "noteOrder": 2087, + "time": 0.29222972972972977, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3905,18 +3905,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2773, - "time": 0.3885135135135135, + "noteOrder": 2087, + "time": 0.29222972972972977, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3928,16 +3928,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2821, - "time": 0.39527027027027023, + "noteOrder": 2099, + "time": 0.2939189189189189, "position": { "x": 3, "y": 0 @@ -3956,13 +3956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2870, - "time": 0.40202702702702703, + "noteOrder": 2111, + "time": 0.2956081081081081, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3979,13 +3979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2990, - "time": 0.4189189189189189, + "noteOrder": 2111, + "time": 0.2956081081081081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3997,18 +3997,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 3038, - "time": 0.42567567567567566, + "noteOrder": 2123, + "time": 0.2972972972972973, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4025,13 +4025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 51, "indexInLine": 2, "isSliding": false, - "noteOrder": 3087, - "time": 0.43243243243243246, + "noteOrder": 2135, + "time": 0.2989864864864865, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4048,13 +4048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3087, - "time": 0.43243243243243246, + "noteOrder": 2135, + "time": 0.2989864864864865, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4066,18 +4066,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 3099, - "time": 0.4341216216216216, + "noteOrder": 2147, + "time": 0.30067567567567566, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4094,11 +4094,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 52, "indexInLine": 2, "isSliding": false, - "noteOrder": 3111, - "time": 0.4358108108108108, + "noteOrder": 2159, + "time": 0.30236486486486486, "position": { "x": 3, "y": 0 @@ -4117,13 +4117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3111, - "time": 0.4358108108108108, + "noteOrder": 2159, + "time": 0.30236486486486486, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4135,16 +4135,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3123, - "time": 0.4375, + "noteOrder": 2171, + "time": 0.30405405405405406, "position": { "x": 4, "y": 0 @@ -4158,18 +4158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 2, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3135, - "time": 0.4391891891891892, + "noteOrder": 2171, + "time": 0.30405405405405406, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4181,18 +4181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.4391891891891892, + "noteOrder": 2219, + "time": 0.31081081081081086, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4204,18 +4204,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3147, - "time": 0.44087837837837834, + "noteOrder": 2244, + "time": 0.3141891891891892, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4227,18 +4227,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 2, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3159, - "time": 0.4425675675675676, + "noteOrder": 2244, + "time": 0.3141891891891892, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4250,18 +4250,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3159, - "time": 0.4425675675675676, + "noteOrder": 2268, + "time": 0.3175675675675676, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4278,11 +4278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3171, - "time": 0.44425675675675674, + "noteOrder": 2268, + "time": 0.3175675675675676, "position": { "x": 4, "y": 0 @@ -4301,13 +4301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 2, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3183, - "time": 0.44594594594594594, + "noteOrder": 2268, + "time": 0.3175675675675676, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4319,18 +4319,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3183, - "time": 0.44594594594594594, + "noteOrder": 2292, + "time": 0.32094594594594594, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4347,13 +4347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3231, - "time": 0.4527027027027027, + "noteOrder": 2292, + "time": 0.32094594594594594, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4370,13 +4370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 2, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3280, - "time": 0.45945945945945943, + "noteOrder": 2316, + "time": 0.32432432432432434, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4393,13 +4393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3280, - "time": 0.45945945945945943, + "noteOrder": 2316, + "time": 0.32432432432432434, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4411,18 +4411,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3292, - "time": 0.46114864864864863, + "noteOrder": 2316, + "time": 0.32432432432432434, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4439,11 +4439,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 57, "indexInLine": 2, "isSliding": false, - "noteOrder": 3304, - "time": 0.46283783783783783, + "noteOrder": 2328, + "time": 0.32601351351351354, "position": { "x": 7, "y": 0 @@ -4462,13 +4462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3304, - "time": 0.46283783783783783, + "noteOrder": 2328, + "time": 0.32601351351351354, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4480,18 +4480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 3316, - "time": 0.46452702702702703, + "noteOrder": 2340, + "time": 0.3277027027027027, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4508,13 +4508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 58, "indexInLine": 2, "isSliding": false, - "noteOrder": 3328, - "time": 0.4662162162162162, + "noteOrder": 2352, + "time": 0.32939189189189194, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4531,13 +4531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3328, - "time": 0.4662162162162162, + "noteOrder": 2352, + "time": 0.32939189189189194, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4549,18 +4549,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 3340, - "time": 0.46790540540540543, + "noteOrder": 2364, + "time": 0.33108108108108114, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4577,11 +4577,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 59, "indexInLine": 2, "isSliding": false, - "noteOrder": 3352, - "time": 0.46959459459459457, + "noteOrder": 2388, + "time": 0.3344594594594595, "position": { "x": 6, "y": 0 @@ -4600,11 +4600,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3352, - "time": 0.46959459459459457, + "noteOrder": 2412, + "time": 0.3378378378378379, "position": { "x": 3, "y": 0 @@ -4623,13 +4623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.47128378378378377, + "noteOrder": 2437, + "time": 0.34121621621621623, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4646,13 +4646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3376, - "time": 0.47297297297297297, + "noteOrder": 2437, + "time": 0.34121621621621623, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4669,11 +4669,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3376, - "time": 0.47297297297297297, + "noteOrder": 2461, + "time": 0.3445945945945946, "position": { "x": 7, "y": 0 @@ -4692,11 +4692,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3400, - "time": 0.4763513513513513, + "noteOrder": 2485, + "time": 0.34797297297297297, "position": { "x": 6, "y": 0 @@ -4715,13 +4715,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3424, - "time": 0.4797297297297297, + "noteOrder": 2509, + "time": 0.3513513513513514, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4733,18 +4733,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3448, - "time": 0.4831081081081081, + "noteOrder": 2533, + "time": 0.35472972972972977, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4756,18 +4756,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3473, - "time": 0.48648648648648646, + "noteOrder": 2557, + "time": 0.35810810810810817, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4784,13 +4784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 3497, - "time": 0.48986486486486486, + "noteOrder": 2485, + "time": 0.34797297297297297, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4802,18 +4802,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 64, "indexInLine": 2, "isSliding": false, - "noteOrder": 3521, - "time": 0.49324324324324326, + "noteOrder": 2509, + "time": 0.3513513513513514, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4825,16 +4825,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 64, "indexInLine": 3, "isSliding": false, - "noteOrder": 3545, - "time": 0.4966216216216216, + "noteOrder": 2533, + "time": 0.35472972972972977, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2557, + "time": 0.35810810810810817, "position": { "x": 4, "y": 0 @@ -4848,16 +4871,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3714, - "time": 0.5202702702702703, + "noteOrder": 2605, + "time": 0.36486486486486486, "position": { "x": 7, "y": 0 @@ -4876,13 +4899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3738, - "time": 0.5236486486486487, + "noteOrder": 2618, + "time": 0.36655405405405406, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4894,18 +4917,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3762, - "time": 0.5270270270270271, + "noteOrder": 2618, + "time": 0.36655405405405406, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4922,13 +4945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3858, - "time": 0.5405405405405406, + "noteOrder": 2630, + "time": 0.36824324324324326, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4945,13 +4968,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3858, - "time": 0.5405405405405406, + "noteOrder": 2630, + "time": 0.36824324324324326, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4963,18 +4986,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3955, - "time": 0.5540540540540541, + "noteOrder": 2678, + "time": 0.37500000000000006, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4986,16 +5009,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3955, - "time": 0.5540540540540541, + "noteOrder": 2726, + "time": 0.3817567567567568, "position": { "x": 7, "y": 0 @@ -5014,13 +5037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 4051, - "time": 0.5675675675675677, + "noteOrder": 2726, + "time": 0.3817567567567568, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5032,16 +5055,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4051, - "time": 0.5675675675675677, + "noteOrder": 2774, + "time": 0.38851351351351354, "position": { "x": 3, "y": 0 @@ -5060,11 +5083,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 4148, - "time": 0.581081081081081, + "noteOrder": 2823, + "time": 0.3952702702702703, "position": { "x": 3, "y": 0 @@ -5083,13 +5106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4148, - "time": 0.581081081081081, + "noteOrder": 2871, + "time": 0.4020270270270271, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5101,16 +5124,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 80, "indexInLine": 1, "isSliding": false, - "noteOrder": 4196, - "time": 0.5878378378378378, + "noteOrder": 2991, + "time": 0.4189189189189189, "position": { "x": 7, "y": 0 @@ -5129,13 +5152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 80, "indexInLine": 2, "isSliding": false, - "noteOrder": 4244, - "time": 0.5945945945945945, + "noteOrder": 3040, + "time": 0.4256756756756757, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5152,13 +5175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4244, - "time": 0.5945945945945945, + "noteOrder": 3088, + "time": 0.43243243243243246, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5170,16 +5193,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 4292, - "time": 0.6013513513513513, + "noteOrder": 3088, + "time": 0.43243243243243246, "position": { "x": 3, "y": 0 @@ -5198,13 +5221,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 84, "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.6081081081081081, + "noteOrder": 3100, + "time": 0.43412162162162166, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5221,11 +5244,1736 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4341, - "time": 0.6081081081081081, + "noteOrder": 3112, + "time": 0.43581081081081086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3112, + "time": 0.43581081081081086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3124, + "time": 0.4375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3136, + "time": 0.4391891891891892, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3136, + "time": 0.4391891891891892, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3148, + "time": 0.4408783783783784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3160, + "time": 0.44256756756756754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3160, + "time": 0.44256756756756754, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3172, + "time": 0.4442567567567568, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3184, + "time": 0.445945945945946, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3184, + "time": 0.445945945945946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3233, + "time": 0.45270270270270274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3281, + "time": 0.4594594594594595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3281, + "time": 0.4594594594594595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3293, + "time": 0.4611486486486487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3305, + "time": 0.46283783783783783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3305, + "time": 0.46283783783783783, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3317, + "time": 0.46452702702702703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3329, + "time": 0.4662162162162163, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3329, + "time": 0.4662162162162163, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3341, + "time": 0.4679054054054055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3353, + "time": 0.4695945945945946, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3353, + "time": 0.4695945945945946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3365, + "time": 0.4712837837837838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3377, + "time": 0.472972972972973, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3377, + "time": 0.472972972972973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3402, + "time": 0.47635135135135137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.47972972972972977, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3450, + "time": 0.4831081081081081, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3474, + "time": 0.4864864864864865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3498, + "time": 0.4898648648648649, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3522, + "time": 0.4932432432432433, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3546, + "time": 0.49662162162162166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3715, + "time": 0.5202702702702703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5219594594594594, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3727, + "time": 0.5219594594594594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3739, + "time": 0.5236486486486487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5253378378378379, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3751, + "time": 0.5253378378378379, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3763, + "time": 0.5270270270270271, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3763, + "time": 0.5270270270270271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3763, + "time": 0.5270270270270271, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3860, + "time": 0.5405405405405406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3860, + "time": 0.5405405405405406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3956, + "time": 0.5540540540540541, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3956, + "time": 0.5540540540540541, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4053, + "time": 0.5675675675675677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4053, + "time": 0.5675675675675677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4149, + "time": 0.5810810810810811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.5810810810810811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4198, + "time": 0.5878378378378378, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4246, + "time": 0.5945945945945946, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4246, + "time": 0.5945945945945946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4294, + "time": 0.6013513513513513, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4342, + "time": 0.6081081081081081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4342, + "time": 0.6081081081081081, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4391, + "time": 0.6148648648648649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6216216216216217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6216216216216217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4487, + "time": 0.6283783783783784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4535, + "time": 0.6351351351351352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6385135135135136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4584, + "time": 0.6418918918918919, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4608, + "time": 0.6452702702702703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4632, + "time": 0.6486486486486487, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.6486486486486487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4644, + "time": 0.6503378378378379, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4644, + "time": 0.6503378378378379, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4656, + "time": 0.6520270270270271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4668, + "time": 0.6537162162162162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4668, + "time": 0.6537162162162162, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4680, + "time": 0.6554054054054054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4692, + "time": 0.6570945945945946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4692, + "time": 0.6570945945945946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4704, + "time": 0.6587837837837839, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4716, + "time": 0.660472972972973, "position": { "x": 7, "y": 0 @@ -5244,11 +6992,149 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4716, + "time": 0.660472972972973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4728, + "time": 0.6621621621621623, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4753, + "time": 0.6655405405405406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4777, + "time": 0.668918918918919, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4801, + "time": 0.6722972972972974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4825, + "time": 0.6756756756756758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 4389, - "time": 0.6148648648648648, + "noteOrder": 4825, + "time": 0.6756756756756758, "position": { "x": 7, "y": 0 @@ -5267,11 +7153,34 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 141, "indexInLine": 2, "isSliding": false, - "noteOrder": 4437, - "time": 0.6216216216216216, + "noteOrder": 4837, + "time": 0.6773648648648649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4837, + "time": 0.6773648648648649, "position": { "x": 6, "y": 0 @@ -5290,11 +7199,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4437, - "time": 0.6216216216216216, + "noteOrder": 4849, + "time": 0.6790540540540541, "position": { "x": 3, "y": 0 @@ -5313,11 +7222,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4485, - "time": 0.6283783783783784, + "noteOrder": 4861, + "time": 0.6807432432432432, "position": { "x": 3, "y": 0 @@ -5336,13 +7245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4534, - "time": 0.6351351351351351, + "noteOrder": 4861, + "time": 0.6807432432432432, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5354,16 +7263,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 4558, - "time": 0.6385135135135136, + "noteOrder": 4873, + "time": 0.6824324324324325, "position": { "x": 7, "y": 0 @@ -5382,13 +7291,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 143, "indexInLine": 2, "isSliding": false, - "noteOrder": 4582, - "time": 0.6418918918918919, + "noteOrder": 4885, + "time": 0.6841216216216217, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5405,11 +7314,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 143, "indexInLine": 3, "isSliding": false, - "noteOrder": 4606, - "time": 0.6452702702702703, + "noteOrder": 4885, + "time": 0.6841216216216217, "position": { "x": 6, "y": 0 @@ -5428,11 +7337,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 4, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4630, - "time": 0.6486486486486487, + "noteOrder": 4921, + "time": 0.6891891891891893, "position": { "x": 5, "y": 0 @@ -5451,13 +7360,36 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4630, - "time": 0.6486486486486487, + "noteOrder": 4946, + "time": 0.6925675675675675, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4970, + "time": 0.6959459459459459, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5474,13 +7406,36 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4654, - "time": 0.6520270270270271, + "noteOrder": 4994, + "time": 0.6993243243243243, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5018, + "time": 0.7027027027027029, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -5497,13 +7452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4678, - "time": 0.6554054054054054, + "noteOrder": 5042, + "time": 0.7060810810810811, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5515,18 +7470,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5066, + "time": 0.7094594594594595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4702, - "time": 0.6587837837837838, + "noteOrder": 5090, + "time": 0.7128378378378379, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5543,13 +7521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4727, - "time": 0.6621621621621622, + "noteOrder": 5114, + "time": 0.7162162162162163, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5561,16 +7539,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 4751, - "time": 0.6655405405405405, + "noteOrder": 5114, + "time": 0.7162162162162163, "position": { "x": 3, "y": 0 @@ -5589,13 +7567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 153, "indexInLine": 2, "isSliding": false, - "noteOrder": 4775, - "time": 0.668918918918919, + "noteOrder": 5163, + "time": 0.722972972972973, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5612,13 +7590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 3, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4799, - "time": 0.6722972972972973, + "noteOrder": 5163, + "time": 0.722972972972973, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5630,18 +7608,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 4, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4823, - "time": 0.6756756756756757, + "noteOrder": 5211, + "time": 0.7297297297297297, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5653,18 +7631,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4823, - "time": 0.6756756756756757, + "noteOrder": 5211, + "time": 0.7297297297297297, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5676,16 +7654,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4847, - "time": 0.6790540540540541, + "noteOrder": 5223, + "time": 0.731418918918919, "position": { "x": 3, "y": 0 @@ -5704,13 +7682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4871, - "time": 0.6824324324324325, + "noteOrder": 5223, + "time": 0.731418918918919, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5722,18 +7700,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4919, - "time": 0.6891891891891893, + "noteOrder": 5235, + "time": 0.7331081081081081, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5750,13 +7728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4944, - "time": 0.6925675675675675, + "noteOrder": 5247, + "time": 0.7347972972972974, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5773,13 +7751,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4968, - "time": 0.6959459459459459, + "noteOrder": 5247, + "time": 0.7347972972972974, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5791,18 +7769,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 4992, - "time": 0.6993243243243243, + "noteOrder": 5307, + "time": 0.7432432432432432, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5819,13 +7797,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5016, - "time": 0.7027027027027027, + "noteOrder": 5356, + "time": 0.7500000000000001, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5837,18 +7815,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 5040, - "time": 0.706081081081081, + "noteOrder": 5380, + "time": 0.7533783783783785, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5865,11 +7843,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 163, "indexInLine": 2, "isSliding": false, - "noteOrder": 5064, - "time": 0.7094594594594595, + "noteOrder": 5428, + "time": 0.7601351351351352, "position": { "x": 6, "y": 0 @@ -5888,13 +7866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 3, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5088, - "time": 0.7128378378378378, + "noteOrder": 5452, + "time": 0.7635135135135136, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5906,18 +7884,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 4, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5112, - "time": 0.7162162162162162, + "noteOrder": 5464, + "time": 0.7652027027027027, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5929,18 +7907,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5112, - "time": 0.7162162162162162, + "noteOrder": 5500, + "time": 0.7702702702702703, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5957,13 +7935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 5161, - "time": 0.722972972972973, + "noteOrder": 5500, + "time": 0.7702702702702703, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5975,16 +7953,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5161, - "time": 0.722972972972973, + "noteOrder": 5549, + "time": 0.7770270270270271, "position": { "x": 7, "y": 0 @@ -6003,13 +7981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 5209, - "time": 0.7297297297297298, + "noteOrder": 5573, + "time": 0.7804054054054055, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6021,18 +7999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5209, - "time": 0.7297297297297298, + "noteOrder": 5585, + "time": 0.7820945945945946, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6049,13 +8027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5233, - "time": 0.7331081081081081, + "noteOrder": 5597, + "time": 0.7837837837837838, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6067,18 +8045,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5305, - "time": 0.7432432432432432, + "noteOrder": 5609, + "time": 0.785472972972973, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6095,11 +8073,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5353, - "time": 0.7499999999999999, + "noteOrder": 5621, + "time": 0.7871621621621622, "position": { "x": 3, "y": 0 @@ -6118,13 +8096,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5378, - "time": 0.7533783783783784, + "noteOrder": 5717, + "time": 0.8006756756756758, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6136,18 +8114,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5426, - "time": 0.7601351351351351, + "noteOrder": 5742, + "time": 0.8040540540540542, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6159,18 +8137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5450, - "time": 0.7635135135135135, + "noteOrder": 5742, + "time": 0.8040540540540542, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6187,13 +8165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 5462, - "time": 0.7652027027027027, + "noteOrder": 5766, + "time": 0.8074324324324325, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6205,18 +8183,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 175, "indexInLine": 2, "isSliding": false, - "noteOrder": 5498, - "time": 0.7702702702702702, + "noteOrder": 5790, + "time": 0.8108108108108109, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6228,18 +8206,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5498, - "time": 0.7702702702702702, + "noteOrder": 5790, + "time": 0.8108108108108109, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6256,13 +8234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 5546, - "time": 0.777027027027027, + "noteOrder": 5814, + "time": 0.8141891891891893, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6274,16 +8252,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5571, - "time": 0.7804054054054054, + "noteOrder": 5826, + "time": 0.8158783783783784, "position": { "x": 3, "y": 0 @@ -6302,13 +8280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5583, - "time": 0.7820945945945946, + "noteOrder": 5826, + "time": 0.8158783783783784, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6325,13 +8303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 2, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5595, - "time": 0.7837837837837838, + "noteOrder": 5838, + "time": 0.8175675675675677, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6343,18 +8321,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 3, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5607, - "time": 0.7854729729729729, + "noteOrder": 5850, + "time": 0.8192567567567569, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6366,18 +8344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 4, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5619, - "time": 0.7871621621621622, + "noteOrder": 5850, + "time": 0.8192567567567569, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6389,16 +8367,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5715, - "time": 0.8006756756756757, + "noteOrder": 5862, + "time": 0.8209459459459459, "position": { "x": 3, "y": 0 @@ -6417,13 +8395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5763, - "time": 0.8074324324324325, + "noteOrder": 5874, + "time": 0.8226351351351352, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6435,18 +8413,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5812, - "time": 0.8141891891891893, + "noteOrder": 5874, + "time": 0.8226351351351352, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6463,11 +8441,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5836, - "time": 0.8175675675675675, + "noteOrder": 5886, + "time": 0.8243243243243243, "position": { "x": 7, "y": 0 @@ -6486,13 +8464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5860, - "time": 0.8209459459459458, + "noteOrder": 5898, + "time": 0.8260135135135136, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6504,18 +8482,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5884, - "time": 0.8243243243243243, + "noteOrder": 5898, + "time": 0.8260135135135136, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6533,10 +8511,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5908, - "time": 0.8277027027027026, + "noteOrder": 5910, + "time": 0.8277027027027027, "position": { "x": 3, "y": 0 @@ -6556,10 +8534,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5932, - "time": 0.831081081081081, + "noteOrder": 5935, + "time": 0.8310810810810811, "position": { "x": 4, "y": 0 @@ -6579,9 +8557,9 @@ }, { "lineGroupId": 180, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5956, + "noteOrder": 5959, "time": 0.8344594594594594, "position": { "x": 4, @@ -6602,9 +8580,9 @@ }, { "lineGroupId": 180, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5980, + "noteOrder": 5983, "time": 0.8378378378378378, "position": { "x": 5, @@ -6625,10 +8603,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6077, - "time": 0.8513513513513513, + "noteOrder": 6079, + "time": 0.8513513513513514, "position": { "x": 3, "y": 0 @@ -6648,10 +8626,10 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6125, - "time": 0.8581081081081081, + "noteOrder": 6128, + "time": 0.8581081081081082, "position": { "x": 4, "y": 0 @@ -6671,9 +8649,9 @@ }, { "lineGroupId": 187, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6173, + "noteOrder": 6176, "time": 0.8648648648648649, "position": { "x": 4, @@ -6694,9 +8672,9 @@ }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6173, + "noteOrder": 6176, "time": 0.8648648648648649, "position": { "x": 7, @@ -6717,10 +8695,10 @@ }, { "lineGroupId": 191, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6185, - "time": 0.8665540540540541, + "noteOrder": 6188, + "time": 0.8665540540540542, "position": { "x": 6, "y": 0 @@ -6740,10 +8718,10 @@ }, { "lineGroupId": 191, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6198, - "time": 0.8682432432432432, + "noteOrder": 6200, + "time": 0.8682432432432433, "position": { "x": 7, "y": 0 @@ -6763,10 +8741,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6198, - "time": 0.8682432432432432, + "noteOrder": 6200, + "time": 0.8682432432432433, "position": { "x": 5, "y": 0 @@ -6786,10 +8764,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6210, - "time": 0.8699324324324323, + "noteOrder": 6212, + "time": 0.8699324324324326, "position": { "x": 6, "y": 0 @@ -6809,10 +8787,10 @@ }, { "lineGroupId": 192, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6222, - "time": 0.8716216216216216, + "noteOrder": 6224, + "time": 0.8716216216216217, "position": { "x": 5, "y": 0 @@ -6832,10 +8810,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6222, - "time": 0.8716216216216216, + "noteOrder": 6224, + "time": 0.8716216216216217, "position": { "x": 7, "y": 0 @@ -6855,9 +8833,9 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6234, + "noteOrder": 6236, "time": 0.8733108108108109, "position": { "x": 6, @@ -6878,9 +8856,9 @@ }, { "lineGroupId": 193, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6246, + "noteOrder": 6248, "time": 0.875, "position": { "x": 7, @@ -6901,9 +8879,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6246, + "noteOrder": 6248, "time": 0.875, "position": { "x": 5, @@ -6924,10 +8902,10 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6258, - "time": 0.8766891891891891, + "noteOrder": 6260, + "time": 0.8766891891891893, "position": { "x": 6, "y": 0 @@ -6947,9 +8925,9 @@ }, { "lineGroupId": 194, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6270, + "noteOrder": 6272, "time": 0.8783783783783784, "position": { "x": 5, @@ -6970,9 +8948,9 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6270, + "noteOrder": 6272, "time": 0.8783783783783784, "position": { "x": 7, @@ -6993,10 +8971,10 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6318, - "time": 0.8851351351351352, + "noteOrder": 6321, + "time": 0.8851351351351351, "position": { "x": 6, "y": 0 @@ -7016,10 +8994,10 @@ }, { "lineGroupId": 195, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6366, - "time": 0.8918918918918919, + "noteOrder": 6369, + "time": 0.891891891891892, "position": { "x": 5, "y": 0 @@ -7039,10 +9017,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6366, - "time": 0.8918918918918919, + "noteOrder": 6369, + "time": 0.891891891891892, "position": { "x": 3, "y": 0 @@ -7062,10 +9040,10 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6390, - "time": 0.8952702702702703, + "noteOrder": 6393, + "time": 0.8952702702702704, "position": { "x": 4, "y": 0 @@ -7085,10 +9063,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6390, - "time": 0.8952702702702703, + "noteOrder": 6393, + "time": 0.8952702702702704, "position": { "x": 7, "y": 0 @@ -7108,9 +9086,9 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6415, + "noteOrder": 6417, "time": 0.8986486486486487, "position": { "x": 6, @@ -7131,9 +9109,9 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6415, + "noteOrder": 6417, "time": 0.8986486486486487, "position": { "x": 3, @@ -7154,10 +9132,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6439, - "time": 0.902027027027027, + "noteOrder": 6441, + "time": 0.9020270270270271, "position": { "x": 4, "y": 0 @@ -7177,10 +9155,33 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6465, + "time": 0.9054054054054055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6463, - "time": 0.9054054054054054, + "noteOrder": 6477, + "time": 0.9070945945945947, "position": { "x": 3, "y": 0 @@ -7198,12 +9199,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6477, + "time": 0.9070945945945947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6489, + "time": 0.9087837837837839, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6487, - "time": 0.9087837837837838, + "noteOrder": 6502, + "time": 0.9104729729729731, "position": { "x": 3, "y": 0 @@ -7221,12 +9268,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6502, + "time": 0.9104729729729731, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6514, + "time": 0.9121621621621622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6511, - "time": 0.9121621621621621, + "noteOrder": 6526, + "time": 0.9138513513513514, "position": { "x": 3, "y": 0 @@ -7244,11 +9337,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6526, + "time": 0.9138513513513514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6535, + "noteOrder": 6538, "time": 0.9155405405405406, "position": { "x": 3, @@ -7268,11 +9384,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6559, - "time": 0.9189189189189189, + "noteOrder": 6550, + "time": 0.9172297297297298, "position": { "x": 3, "y": 0 @@ -7286,7 +9402,30 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6550, + "time": 0.9172297297297298, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, @@ -7294,8 +9433,8 @@ "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 6583, - "time": 0.9222972972972973, + "noteOrder": 6562, + "time": 0.918918918918919, "position": { "x": 3, "y": 0 @@ -7317,7 +9456,30 @@ "lineGroupId": 207, "indexInLine": 2, "isSliding": false, - "noteOrder": 6607, + "noteOrder": 6586, + "time": 0.9222972972972974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6610, "time": 0.9256756756756757, "position": { "x": 4, @@ -7338,9 +9500,9 @@ }, { "lineGroupId": 207, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6632, + "noteOrder": 6634, "time": 0.9290540540540541, "position": { "x": 4, @@ -7361,10 +9523,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6656, - "time": 0.9324324324324323, + "noteOrder": 6658, + "time": 0.9324324324324326, "position": { "x": 5, "y": 0 @@ -7384,10 +9546,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6680, - "time": 0.9358108108108109, + "noteOrder": 6682, + "time": 0.935810810810811, "position": { "x": 5, "y": 0 @@ -7407,10 +9569,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6704, - "time": 0.9391891891891891, + "noteOrder": 6707, + "time": 0.9391891891891893, "position": { "x": 5, "y": 0 @@ -7430,10 +9592,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6728, - "time": 0.9425675675675675, + "noteOrder": 6731, + "time": 0.9425675675675677, "position": { "x": 5, "y": 0 @@ -7453,10 +9615,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6849, - "time": 0.9594594594594594, + "noteOrder": 6851, + "time": 0.9594594594594595, "position": { "x": 5, "y": 0 @@ -7476,10 +9638,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6945, - "time": 0.9729729729729729, + "noteOrder": 6948, + "time": 0.972972972972973, "position": { "x": 5, "y": 0 diff --git a/tracks/Necroxis Girl/376_difficulty_1b.json b/tracks/Necroxis Girl/376_difficulty_1b.json index 5e23667d..39370824 100644 --- a/tracks/Necroxis Girl/376_difficulty_1b.json +++ b/tracks/Necroxis Girl/376_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 1109, - "time": 0.1554054054054054, + "noteOrder": 1110, + "time": 0.15540540540540543, "position": { "x": 5, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 1133, - "time": 0.15878378378378377, + "noteOrder": 1134, + "time": 0.1587837837837838, "position": { "x": 8, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 1206, - "time": 0.16891891891891891, + "time": 0.16891891891891894, "position": { "x": 4, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 1302, - "time": 0.18243243243243246, + "noteOrder": 1303, + "time": 0.18243243243243243, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1447, - "time": 0.2027027027027027, + "time": 0.20270270270270271, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1471, + "noteOrder": 1472, "time": 0.20608108108108109, "position": { "x": 6, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1495, + "noteOrder": 1496, "time": 0.20945945945945946, "position": { "x": 5, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1519, - "time": 0.21283783783783783, + "noteOrder": 1520, + "time": 0.21283783783783786, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1543, + "noteOrder": 1544, "time": 0.21621621621621623, "position": { "x": 4, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1567, + "noteOrder": 1568, "time": 0.2195945945945946, "position": { "x": 5, @@ -254,7 +254,7 @@ }, { "noteOrder": 1592, - "time": 0.22297297297297297, + "time": 0.222972972972973, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1616, - "time": 0.22635135135135134, + "time": 0.22635135135135137, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1664, - "time": 0.2331081081081081, + "noteOrder": 1665, + "time": 0.23310810810810814, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1712, - "time": 0.23986486486486486, + "noteOrder": 1713, + "time": 0.23986486486486489, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1736, - "time": 0.24324324324324323, + "noteOrder": 1737, + "time": 0.24324324324324326, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1760, - "time": 0.24662162162162163, + "noteOrder": 1761, + "time": 0.24662162162162166, "position": { "x": 5, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1784, - "time": 0.25, + "noteOrder": 1785, + "time": 0.25000000000000006, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2122, - "time": 0.29729729729729726, + "noteOrder": 2123, + "time": 0.2972972972972973, "position": { "x": 6, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2146, + "noteOrder": 2147, "time": 0.30067567567567566, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2170, + "noteOrder": 2171, "time": 0.30405405405405406, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2170, + "noteOrder": 2171, "time": 0.30405405405405406, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2315, + "noteOrder": 2316, "time": 0.32432432432432434, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.3277027027027027, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2484, + "noteOrder": 2485, "time": 0.34797297297297297, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2508, - "time": 0.35135135135135137, + "noteOrder": 2509, + "time": 0.3513513513513514, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 2533, "time": 0.35472972972972977, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2556, - "time": 0.3581081081081081, + "noteOrder": 2557, + "time": 0.35810810810810817, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2604, - "time": 0.3648648648648649, + "noteOrder": 2605, + "time": 0.36486486486486486, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2630, "time": 0.36824324324324326, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2798, "time": 0.3918918918918919, "position": { "x": 7, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2870, - "time": 0.40202702702702703, + "noteOrder": 2871, + "time": 0.4020270270270271, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3328, - "time": 0.4662162162162162, + "noteOrder": 3329, + "time": 0.4662162162162163, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3352, - "time": 0.46959459459459457, + "noteOrder": 3353, + "time": 0.4695945945945946, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3424, - "time": 0.4797297297297297, + "noteOrder": 3426, + "time": 0.47972972972972977, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3521, - "time": 0.49324324324324326, + "noteOrder": 3522, + "time": 0.4932432432432433, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3545, - "time": 0.4966216216216216, + "noteOrder": 3546, + "time": 0.49662162162162166, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3619, "time": 0.5067567567567568, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3667, "time": 0.5135135135135135, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3715, "time": 0.5202702702702703, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3739, "time": 0.5236486486486487, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4680, "time": 0.6554054054054054, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4702, - "time": 0.6587837837837838, + "noteOrder": 4704, + "time": 0.6587837837837839, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4871, + "noteOrder": 4873, "time": 0.6824324324324325, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4895, - "time": 0.6858108108108107, + "noteOrder": 4897, + "time": 0.6858108108108109, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5066, "time": 0.7094594594594595, "position": { "x": 4, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5088, - "time": 0.7128378378378378, + "noteOrder": 5090, + "time": 0.7128378378378379, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5161, + "noteOrder": 5163, "time": 0.722972972972973, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5209, - "time": 0.7297297297297298, + "noteOrder": 5211, + "time": 0.7297297297297297, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5233, + "noteOrder": 5235, "time": 0.7331081081081081, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5257, + "noteOrder": 5259, "time": 0.7364864864864865, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5621, "time": 0.7871621621621622, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5643, - "time": 0.7905405405405405, + "noteOrder": 5645, + "time": 0.7905405405405406, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5691, - "time": 0.7972972972972973, + "noteOrder": 5693, + "time": 0.7972972972972974, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5812, + "noteOrder": 5814, "time": 0.8141891891891893, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5836, - "time": 0.8175675675675675, + "noteOrder": 5838, + "time": 0.8175675675675677, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5860, - "time": 0.8209459459459458, + "noteOrder": 5862, + "time": 0.8209459459459459, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5932, - "time": 0.831081081081081, + "noteOrder": 5935, + "time": 0.8310810810810811, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5956, + "noteOrder": 5959, "time": 0.8344594594594594, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6005, - "time": 0.8412162162162161, + "noteOrder": 6007, + "time": 0.8412162162162163, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6053, - "time": 0.8479729729729729, + "noteOrder": 6055, + "time": 0.847972972972973, "position": { "x": 8, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6415, + "noteOrder": 6417, "time": 0.8986486486486487, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6439, - "time": 0.902027027027027, + "noteOrder": 6441, + "time": 0.9020270270270271, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6752, - "time": 0.9459459459459459, + "noteOrder": 6755, + "time": 0.945945945945946, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6776, + "noteOrder": 6779, "time": 0.9493243243243243, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6800, - "time": 0.9527027027027026, + "noteOrder": 6803, + "time": 0.9527027027027027, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6824, + "noteOrder": 6827, "time": 0.9560810810810811, "position": { "x": 4, @@ -1376,10 +1376,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.09459459459459459, + "time": 0.0945945945945946, "position": { "x": 7, "y": 0 @@ -1399,7 +1399,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 772, "time": 0.10810810810810811, @@ -1422,7 +1422,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, "time": 0.10810810810810811, @@ -1445,10 +1445,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 868, - "time": 0.12162162162162161, + "time": 0.12162162162162163, "position": { "x": 3, "y": 0 @@ -1468,10 +1468,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, - "time": 0.12162162162162161, + "time": 0.12162162162162163, "position": { "x": 7, "y": 0 @@ -1491,9 +1491,9 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 916, + "noteOrder": 917, "time": 0.12837837837837837, "position": { "x": 6, @@ -1514,7 +1514,7 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 965, "time": 0.13513513513513514, @@ -1537,7 +1537,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, "time": 0.13513513513513514, @@ -1560,7 +1560,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1013, "time": 0.1418918918918919, @@ -1583,10 +1583,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1061, - "time": 0.14864864864864863, + "time": 0.14864864864864866, "position": { "x": 4, "y": 0 @@ -1606,10 +1606,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1061, - "time": 0.14864864864864863, + "time": 0.14864864864864866, "position": { "x": 7, "y": 0 @@ -1629,7 +1629,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1158, "time": 0.16216216216216217, @@ -1652,7 +1652,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1158, "time": 0.16216216216216217, @@ -1675,10 +1675,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1254, - "time": 0.17567567567567569, + "time": 0.1756756756756757, "position": { "x": 4, "y": 0 @@ -1698,10 +1698,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1254, - "time": 0.17567567567567569, + "time": 0.1756756756756757, "position": { "x": 7, "y": 0 @@ -1721,10 +1721,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1302, - "time": 0.18243243243243246, + "noteOrder": 1303, + "time": 0.18243243243243243, "position": { "x": 6, "y": 0 @@ -1744,10 +1744,10 @@ }, { "lineGroupId": 11, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1350, - "time": 0.18918918918918917, + "noteOrder": 1351, + "time": 0.1891891891891892, "position": { "x": 6, "y": 0 @@ -1767,10 +1767,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1350, - "time": 0.18918918918918917, + "noteOrder": 1351, + "time": 0.1891891891891892, "position": { "x": 3, "y": 0 @@ -1790,7 +1790,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1399, "time": 0.19594594594594594, @@ -1813,10 +1813,10 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1447, - "time": 0.2027027027027027, + "time": 0.20270270270270271, "position": { "x": 4, "y": 0 @@ -1836,10 +1836,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1640, - "time": 0.22972972972972971, + "time": 0.22972972972972974, "position": { "x": 7, "y": 0 @@ -1859,10 +1859,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1688, - "time": 0.23648648648648649, + "noteOrder": 1689, + "time": 0.2364864864864865, "position": { "x": 7, "y": 0 @@ -1882,10 +1882,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1688, - "time": 0.23648648648648649, + "noteOrder": 1689, + "time": 0.2364864864864865, "position": { "x": 4, "y": 0 @@ -1905,10 +1905,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1736, - "time": 0.24324324324324323, + "noteOrder": 1737, + "time": 0.24324324324324326, "position": { "x": 4, "y": 0 @@ -1928,7 +1928,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1833, "time": 0.25675675675675674, @@ -1950,13 +1950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1881, - "time": 0.26351351351351354, + "noteOrder": 1858, + "time": 0.26013513513513514, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1968,18 +1968,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1929, - "time": 0.2702702702702703, + "noteOrder": 1858, + "time": 0.26013513513513514, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1996,11 +1996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1977, - "time": 0.27702702702702703, + "noteOrder": 1882, + "time": 0.26351351351351354, "position": { "x": 4, "y": 0 @@ -2019,13 +2019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2026, - "time": 0.2837837837837838, + "noteOrder": 1906, + "time": 0.2668918918918919, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2037,16 +2037,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2074, - "time": 0.2905405405405405, + "noteOrder": 1906, + "time": 0.2668918918918919, "position": { "x": 4, "y": 0 @@ -2065,11 +2065,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.3108108108108108, + "noteOrder": 1930, + "time": 0.2702702702702703, "position": { "x": 7, "y": 0 @@ -2088,11 +2088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2267, - "time": 0.31756756756756754, + "noteOrder": 1954, + "time": 0.2736486486486487, "position": { "x": 7, "y": 0 @@ -2106,18 +2106,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2363, - "time": 0.3310810810810811, + "noteOrder": 1954, + "time": 0.2736486486486487, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2134,13 +2134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 33, "indexInLine": 1, "isSliding": false, - "noteOrder": 2411, - "time": 0.33783783783783783, + "noteOrder": 1978, + "time": 0.27702702702702703, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2152,18 +2152,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2411, - "time": 0.33783783783783783, + "noteOrder": 2002, + "time": 0.28040540540540543, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2180,13 +2180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2460, - "time": 0.3445945945945946, + "noteOrder": 2002, + "time": 0.28040540540540543, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2198,18 +2198,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 2532, - "time": 0.35472972972972977, + "noteOrder": 2026, + "time": 0.2837837837837838, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2226,11 +2226,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2677, - "time": 0.37499999999999994, + "noteOrder": 2051, + "time": 0.2871621621621622, "position": { "x": 7, "y": 0 @@ -2249,13 +2249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2725, - "time": 0.38175675675675674, + "noteOrder": 2051, + "time": 0.2871621621621622, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2272,13 +2272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2725, - "time": 0.38175675675675674, + "noteOrder": 2075, + "time": 0.29054054054054057, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2295,13 +2295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2773, - "time": 0.3885135135135135, + "noteOrder": 2099, + "time": 0.2939189189189189, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2318,11 +2318,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2821, - "time": 0.39527027027027023, + "noteOrder": 2099, + "time": 0.2939189189189189, "position": { "x": 4, "y": 0 @@ -2341,13 +2341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 2870, - "time": 0.40202702702702703, + "noteOrder": 2219, + "time": 0.31081081081081086, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2359,16 +2359,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2894, - "time": 0.4054054054054054, + "noteOrder": 2244, + "time": 0.3141891891891892, "position": { "x": 7, "y": 0 @@ -2387,13 +2387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2942, - "time": 0.41216216216216217, + "noteOrder": 2244, + "time": 0.3141891891891892, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2405,16 +2405,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2990, - "time": 0.4189189189189189, + "noteOrder": 2268, + "time": 0.3175675675675676, "position": { "x": 7, "y": 0 @@ -2428,18 +2428,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3038, - "time": 0.42567567567567566, + "noteOrder": 2292, + "time": 0.32094594594594594, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2451,18 +2451,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3087, - "time": 0.43243243243243246, + "noteOrder": 2292, + "time": 0.32094594594594594, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2479,13 +2479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.4391891891891892, + "noteOrder": 2364, + "time": 0.33108108108108114, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2497,18 +2497,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3183, - "time": 0.44594594594594594, + "noteOrder": 2412, + "time": 0.3378378378378379, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2525,13 +2525,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 3207, - "time": 0.44932432432432434, + "noteOrder": 2412, + "time": 0.3378378378378379, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2543,18 +2543,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 46, "indexInLine": 2, "isSliding": false, - "noteOrder": 3231, - "time": 0.4527027027027027, + "noteOrder": 2437, + "time": 0.34121621621621623, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2566,18 +2566,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3280, - "time": 0.45945945945945943, + "noteOrder": 2437, + "time": 0.34121621621621623, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2594,13 +2594,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3304, - "time": 0.46283783783783783, + "noteOrder": 2461, + "time": 0.3445945945945946, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2612,18 +2612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 47, "indexInLine": 2, "isSliding": false, - "noteOrder": 3328, - "time": 0.4662162162162162, + "noteOrder": 2533, + "time": 0.35472972972972977, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2635,16 +2635,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3376, - "time": 0.47297297297297297, + "noteOrder": 2678, + "time": 0.37500000000000006, "position": { "x": 7, "y": 0 @@ -2663,11 +2663,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3473, - "time": 0.48648648648648646, + "noteOrder": 2726, + "time": 0.3817567567567568, "position": { "x": 7, "y": 0 @@ -2681,18 +2681,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3569, - "time": 0.5, + "noteOrder": 2726, + "time": 0.3817567567567568, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2704,18 +2704,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3762, - "time": 0.5270270270270271, + "noteOrder": 2774, + "time": 0.38851351351351354, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2732,13 +2732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 3858, - "time": 0.5405405405405406, + "noteOrder": 2823, + "time": 0.3952702702702703, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2755,11 +2755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 60, "indexInLine": 2, "isSliding": false, - "noteOrder": 3907, - "time": 0.5472972972972974, + "noteOrder": 2871, + "time": 0.4020270270270271, "position": { "x": 4, "y": 0 @@ -2778,13 +2778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 3, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3955, - "time": 0.5540540540540541, + "noteOrder": 2895, + "time": 0.40540540540540543, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2796,18 +2796,1329 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2919, + "time": 0.4087837837837838, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2919, + "time": 0.4087837837837838, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2943, + "time": 0.41216216216216217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2967, + "time": 0.41554054054054057, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2967, + "time": 0.41554054054054057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2991, + "time": 0.4189189189189189, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3040, + "time": 0.4256756756756757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3088, + "time": 0.43243243243243246, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3136, + "time": 0.4391891891891892, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3184, + "time": 0.445945945945946, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3209, + "time": 0.44932432432432434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3233, + "time": 0.45270270270270274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3281, + "time": 0.4594594594594595, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3305, + "time": 0.46283783783783783, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3329, + "time": 0.4662162162162163, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3377, + "time": 0.472972972972973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3402, + "time": 0.47635135135135137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3402, + "time": 0.47635135135135137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3474, + "time": 0.4864864864864865, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3498, + "time": 0.4898648648648649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3498, + "time": 0.4898648648648649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5000000000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3595, + "time": 0.5033783783783784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3595, + "time": 0.5033783783783784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3763, + "time": 0.5270270270270271, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3860, + "time": 0.5405405405405406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3908, + "time": 0.5472972972972974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3956, + "time": 0.5540540540540541, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3956, + "time": 0.5540540540540541, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4053, + "time": 0.5675675675675677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4101, + "time": 0.5743243243243245, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4149, + "time": 0.5810810810810811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.5810810810810811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4198, + "time": 0.5878378378378378, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4246, + "time": 0.5945945945945946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4246, + "time": 0.5945945945945946, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4294, + "time": 0.6013513513513513, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4342, + "time": 0.6081081081081081, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6216216216216217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4342, + "time": 0.6081081081081081, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4391, + "time": 0.6148648648648649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4439, + "time": 0.6216216216216217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4487, + "time": 0.6283783783783784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4535, + "time": 0.6351351351351352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6385135135135136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6385135135135136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4584, + "time": 0.6418918918918919, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4608, + "time": 0.6452702702702703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4608, + "time": 0.6452702702702703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4632, + "time": 0.6486486486486487, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4656, + "time": 0.6520270270270271, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4656, + "time": 0.6520270270270271, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4728, + "time": 0.6621621621621623, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4753, + "time": 0.6655405405405406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4753, + "time": 0.6655405405405406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4777, + "time": 0.668918918918919, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.6722972972972974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3955, - "time": 0.5540540540540541, + "noteOrder": 4801, + "time": 0.6722972972972974, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2824,13 +4135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 4051, - "time": 0.5675675675675677, + "noteOrder": 4825, + "time": 0.6756756756756758, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2842,18 +4153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 99, "indexInLine": 2, "isSliding": false, - "noteOrder": 4100, - "time": 0.5743243243243242, + "noteOrder": 4849, + "time": 0.6790540540540541, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2865,16 +4176,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 99, "indexInLine": 3, "isSliding": false, - "noteOrder": 4148, - "time": 0.581081081081081, + "noteOrder": 4849, + "time": 0.6790540540540541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4921, + "time": 0.6891891891891893, "position": { "x": 7, "y": 0 @@ -2893,13 +4227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4148, - "time": 0.581081081081081, + "noteOrder": 4946, + "time": 0.6925675675675675, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2911,18 +4245,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4946, + "time": 0.6925675675675675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 4196, - "time": 0.5878378378378378, + "noteOrder": 4970, + "time": 0.6959459459459459, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2939,11 +4296,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 103, "indexInLine": 2, "isSliding": false, - "noteOrder": 4244, - "time": 0.5945945945945945, + "noteOrder": 4994, + "time": 0.6993243243243243, "position": { "x": 4, "y": 0 @@ -2962,13 +4319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4244, - "time": 0.5945945945945945, + "noteOrder": 4994, + "time": 0.6993243243243243, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2980,16 +4337,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 4292, - "time": 0.6013513513513513, + "noteOrder": 5018, + "time": 0.7027027027027029, "position": { "x": 7, "y": 0 @@ -3008,13 +4365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 104, "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.6081081081081081, + "noteOrder": 5042, + "time": 0.7060810810810811, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3031,11 +4388,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 104, "indexInLine": 3, "isSliding": false, - "noteOrder": 4437, - "time": 0.6216216216216216, + "noteOrder": 5042, + "time": 0.7060810810810811, "position": { "x": 6, "y": 0 @@ -3054,11 +4411,34 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4341, - "time": 0.6081081081081081, + "noteOrder": 5114, + "time": 0.7162162162162163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5163, + "time": 0.722972972972973, "position": { "x": 4, "y": 0 @@ -3077,11 +4457,80 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5307, + "time": 0.7432432432432432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5356, + "time": 0.7500000000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, "indexInLine": 1, "isSliding": false, - "noteOrder": 4389, - "time": 0.6148648648648648, + "noteOrder": 5380, + "time": 0.7533783783783785, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5428, + "time": 0.7601351351351352, "position": { "x": 6, "y": 0 @@ -3095,16 +4544,39 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5452, + "time": 0.7635135135135136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 117, "indexInLine": 2, "isSliding": false, - "noteOrder": 4437, - "time": 0.6216216216216216, + "noteOrder": 5464, + "time": 0.7652027027027027, "position": { "x": 4, "y": 0 @@ -3123,11 +4595,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 117, "indexInLine": 3, "isSliding": false, - "noteOrder": 4485, - "time": 0.6283783783783784, + "noteOrder": 5500, + "time": 0.7702702702702703, "position": { "x": 4, "y": 0 @@ -3146,11 +4618,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4534, - "time": 0.6351351351351351, + "noteOrder": 5500, + "time": 0.7702702702702703, "position": { "x": 7, "y": 0 @@ -3169,11 +4641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4582, - "time": 0.6418918918918919, + "noteOrder": 5549, + "time": 0.7770270270270271, "position": { "x": 7, "y": 0 @@ -3187,18 +4659,41 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5573, + "time": 0.7804054054054055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4630, - "time": 0.6486486486486487, + "noteOrder": 5597, + "time": 0.7837837837837838, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3210,16 +4705,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4727, - "time": 0.6621621621621622, + "noteOrder": 5621, + "time": 0.7871621621621622, "position": { "x": 3, "y": 0 @@ -3238,13 +4733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4775, - "time": 0.668918918918919, + "noteOrder": 5717, + "time": 0.8006756756756758, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3261,13 +4756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4823, - "time": 0.6756756756756757, + "noteOrder": 5742, + "time": 0.8040540540540542, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3279,18 +4774,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4919, - "time": 0.6891891891891893, + "noteOrder": 5766, + "time": 0.8074324324324325, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3302,16 +4797,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4968, - "time": 0.6959459459459459, + "noteOrder": 5790, + "time": 0.8108108108108109, "position": { "x": 4, "y": 0 @@ -3330,13 +4825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5016, - "time": 0.7027027027027027, + "noteOrder": 5886, + "time": 0.8243243243243243, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3348,18 +4843,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5112, - "time": 0.7162162162162162, + "noteOrder": 5935, + "time": 0.8310810810810811, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3376,11 +4871,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 5161, - "time": 0.722972972972973, + "noteOrder": 5983, + "time": 0.8378378378378378, "position": { "x": 4, "y": 0 @@ -3399,13 +4894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5305, - "time": 0.7432432432432432, + "noteOrder": 6031, + "time": 0.8445945945945947, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3422,13 +4917,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 5353, - "time": 0.7499999999999999, + "noteOrder": 6031, + "time": 0.8445945945945947, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3440,18 +4935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5378, - "time": 0.7533783783783784, + "noteOrder": 6079, + "time": 0.8513513513513514, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3468,13 +4963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 5426, - "time": 0.7601351351351351, + "noteOrder": 6079, + "time": 0.8513513513513514, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3486,16 +4981,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5450, - "time": 0.7635135135135135, + "noteOrder": 6103, + "time": 0.8547297297297298, "position": { "x": 3, "y": 0 @@ -3514,11 +5009,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5462, - "time": 0.7652027027027027, + "noteOrder": 6103, + "time": 0.8547297297297298, "position": { "x": 4, "y": 0 @@ -3537,13 +5032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 2, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5498, - "time": 0.7702702702702702, + "noteOrder": 6128, + "time": 0.8581081081081082, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3555,18 +5050,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5498, - "time": 0.7702702702702702, + "noteOrder": 6152, + "time": 0.8614864864864865, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3583,13 +5078,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5546, - "time": 0.777027027027027, + "noteOrder": 6152, + "time": 0.8614864864864865, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3606,11 +5101,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5571, - "time": 0.7804054054054054, + "noteOrder": 6176, + "time": 0.8648648648648649, "position": { "x": 3, "y": 0 @@ -3629,13 +5124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5595, - "time": 0.7837837837837838, + "noteOrder": 6200, + "time": 0.8682432432432433, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3652,13 +5147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 2, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5619, - "time": 0.7871621621621622, + "noteOrder": 6200, + "time": 0.8682432432432433, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3675,13 +5170,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5715, - "time": 0.8006756756756757, + "noteOrder": 6224, + "time": 0.8716216216216217, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3698,13 +5193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5739, - "time": 0.8040540540540541, + "noteOrder": 6248, + "time": 0.875, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3721,11 +5216,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5763, - "time": 0.8074324324324325, + "noteOrder": 6248, + "time": 0.875, "position": { "x": 4, "y": 0 @@ -3739,18 +5234,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 5788, - "time": 0.8108108108108107, + "noteOrder": 6272, + "time": 0.8783783783783784, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3767,13 +5262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5884, - "time": 0.8243243243243243, + "noteOrder": 6321, + "time": 0.8851351351351351, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3790,11 +5285,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 5932, - "time": 0.831081081081081, + "noteOrder": 6369, + "time": 0.891891891891892, "position": { "x": 4, "y": 0 @@ -3813,11 +5308,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5980, - "time": 0.8378378378378378, + "noteOrder": 6417, + "time": 0.8986486486486487, "position": { "x": 4, "y": 0 @@ -3836,13 +5331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 6029, - "time": 0.8445945945945946, + "noteOrder": 6465, + "time": 0.9054054054054055, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3854,16 +5349,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6029, - "time": 0.8445945945945946, + "noteOrder": 6489, + "time": 0.9087837837837839, "position": { "x": 7, "y": 0 @@ -3882,13 +5377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6077, - "time": 0.8513513513513513, + "noteOrder": 6489, + "time": 0.9087837837837839, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3905,13 +5400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6077, - "time": 0.8513513513513513, + "noteOrder": 6514, + "time": 0.9121621621621622, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3928,13 +5423,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6125, - "time": 0.8581081081081081, + "noteOrder": 6538, + "time": 0.9155405405405406, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3946,18 +5441,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6173, - "time": 0.8648648648648649, + "noteOrder": 6538, + "time": 0.9155405405405406, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3974,13 +5469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6222, - "time": 0.8716216216216216, + "noteOrder": 6562, + "time": 0.918918918918919, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3997,13 +5492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6270, - "time": 0.8783783783783784, + "noteOrder": 6586, + "time": 0.9222972972972974, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4015,16 +5510,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6586, + "time": 0.9222972972972974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, "indexInLine": 1, "isSliding": false, - "noteOrder": 6318, - "time": 0.8851351351351352, + "noteOrder": 6610, + "time": 0.9256756756756757, "position": { "x": 4, "y": 0 @@ -4043,11 +5561,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6366, - "time": 0.8918918918918919, + "noteOrder": 6634, + "time": 0.9290540540540541, "position": { "x": 4, "y": 0 @@ -4066,11 +5584,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6415, - "time": 0.8986486486486487, + "noteOrder": 6634, + "time": 0.9290540540540541, "position": { "x": 4, "y": 0 @@ -4089,13 +5607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6463, - "time": 0.9054054054054054, + "noteOrder": 6658, + "time": 0.9324324324324326, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4112,11 +5630,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6511, - "time": 0.9121621621621621, + "noteOrder": 6682, + "time": 0.935810810810811, "position": { "x": 4, "y": 0 @@ -4130,18 +5648,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6559, - "time": 0.9189189189189189, + "noteOrder": 6682, + "time": 0.935810810810811, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4158,13 +5676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6607, - "time": 0.9256756756756757, + "noteOrder": 6707, + "time": 0.9391891891891893, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4181,13 +5699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6656, - "time": 0.9324324324324323, + "noteOrder": 6731, + "time": 0.9425675675675677, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4199,18 +5717,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6704, - "time": 0.9391891891891891, + "noteOrder": 6731, + "time": 0.9425675675675677, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4228,10 +5746,10 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6849, - "time": 0.9594594594594594, + "noteOrder": 6851, + "time": 0.9594594594594595, "position": { "x": 5, "y": 0 @@ -4251,10 +5769,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6945, - "time": 0.9729729729729729, + "noteOrder": 6948, + "time": 0.972972972972973, "position": { "x": 5, "y": 0 diff --git a/tracks/Necroxis Girl/info.json b/tracks/Necroxis Girl/info.json index 7570bcf0..05cde755 100644 --- a/tracks/Necroxis Girl/info.json +++ b/tracks/Necroxis Girl/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Necroxis Girl", - "SongLength": "128.966531", + "SongLength": "119.013878", "SongAuthorName": "BEMANI Sound Team \"Hu\u03a3eR\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Neon Rider/348_difficulty_1a.json b/tracks/Neon Rider/348_difficulty_1a.json index ae2cb382..36718fe1 100644 --- a/tracks/Neon Rider/348_difficulty_1a.json +++ b/tracks/Neon Rider/348_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 312, - "time": 0.045779685264663805, + "time": 0.0457796852646638, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 360, - "time": 0.05282271376691978, + "time": 0.05282271376691977, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 481, "time": 0.0704302850225597, "position": { "x": 7, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 505, "time": 0.07395179927368768, "position": { "x": 7, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.07747331352481568, + "noteOrder": 529, + "time": 0.07747331352481567, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 540, + "noteOrder": 541, "time": 0.07923407065037966, "position": { "x": 5, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.08099482777594366, "position": { "x": 4, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.08451634202707164, + "noteOrder": 577, + "time": 0.08451634202707163, "position": { "x": 3, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.08803785627819961, + "noteOrder": 601, + "time": 0.08803785627819963, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.09155937052932761, + "noteOrder": 625, + "time": 0.0915593705293276, "position": { "x": 4, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 636, + "noteOrder": 637, "time": 0.0933201276548916, "position": { "x": 5, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.0950808847804556, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.09860239903158358, "position": { "x": 7, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.10212391328271157, + "noteOrder": 697, + "time": 0.10212391328271156, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.10564542753383956, + "noteOrder": 721, + "time": 0.10564542753383954, "position": { "x": 7, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 732, + "noteOrder": 733, "time": 0.10740618465940353, "position": { "x": 3, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.10916694178496754, "position": { "x": 5, @@ -394,7 +394,7 @@ }, { "noteOrder": 769, - "time": 0.11268845603609552, + "time": 0.11268845603609551, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 793, - "time": 0.11620997028722352, + "time": 0.1162099702872235, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 817, - "time": 0.1197314845383515, + "time": 0.11973148453835147, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 997, - "time": 0.1461428414218114, + "time": 0.14614284142181136, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1177, - "time": 0.17255419830527127, + "time": 0.17255419830527124, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1201, - "time": 0.17607571255639923, + "time": 0.17607571255639926, "position": { "x": 5, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.22889842632331903, + "noteOrder": 1562, + "time": 0.228898426323319, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.23241994057444704, + "noteOrder": 1586, + "time": 0.232419940574447, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.235941454825575, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1621, - "time": 0.237702211951139, + "noteOrder": 1622, + "time": 0.23770221195113897, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1729, + "noteOrder": 1730, "time": 0.25354902608121493, "position": { "x": 2, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.2641135688345989, + "noteOrder": 1802, + "time": 0.26411356883459886, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1945, + "noteOrder": 1946, "time": 0.2852426543413668, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.28876416859249476, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.2922856828436228, + "noteOrder": 1994, + "time": 0.2922856828436227, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2005, - "time": 0.2940464399691868, + "noteOrder": 2006, + "time": 0.2940464399691867, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2137, - "time": 0.3134147683503907, + "noteOrder": 2138, + "time": 0.31341476835039067, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.3169362826015186, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.32045779685264664, + "noteOrder": 2186, + "time": 0.3204577968526466, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2234, "time": 0.3275008253549026, "position": { "x": 3, @@ -994,7 +994,7 @@ }, { "noteOrder": 2270, - "time": 0.3327830967315946, + "time": 0.33278309673159456, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2330, + "noteOrder": 2331, "time": 0.34158688235941453, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.34510839661054254, + "noteOrder": 2355, + "time": 0.3451083966105425, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.34686915373610655, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2378, + "noteOrder": 2379, "time": 0.34862991086167056, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.36975899636843845, "position": { "x": 8, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.3732805106195664, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.3768020248706944, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2810, - "time": 0.41201716738197425, + "noteOrder": 2811, + "time": 0.4120171673819742, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.41553868163310226, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2859, "time": 0.4190601958842302, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2906, - "time": 0.42610322438648623, + "noteOrder": 2907, + "time": 0.4261032243864862, "position": { "x": 8, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2930, + "noteOrder": 2931, "time": 0.42962473863761413, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2954, + "noteOrder": 2955, "time": 0.43314625288874214, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3086, - "time": 0.4525145812699461, + "noteOrder": 3087, + "time": 0.45251458126994604, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.46131836689776606, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3158, - "time": 0.46307912402333007, + "noteOrder": 3159, + "time": 0.46307912402333, "position": { "x": 5, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.468361395400022, "position": { "x": 2, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.47188290965115, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.475404423902278, + "noteOrder": 3244, + "time": 0.47540442390227794, "position": { "x": 2, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3340, "time": 0.4894904809067899, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3386, - "time": 0.4965335094090459, + "noteOrder": 3388, + "time": 0.49653350940904584, "position": { "x": 8, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.5000550236601738, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3436, "time": 0.5035765379113019, "position": { "x": 8, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3578, - "time": 0.5247056234180698, + "noteOrder": 3580, + "time": 0.5247056234180697, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.5282271376691978, + "noteOrder": 3604, + "time": 0.5282271376691977, "position": { "x": 4, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.5317486519203257, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3674, - "time": 0.5387916804225817, + "noteOrder": 3676, + "time": 0.5387916804225816, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.5458347089248377, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3939, + "noteOrder": 3940, "time": 0.5775283371849895, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.5792890943105535, + "noteOrder": 3952, + "time": 0.5792890943105534, "position": { "x": 5, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3963, + "noteOrder": 3964, "time": 0.5810498514361175, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3987, - "time": 0.5845713656872455, + "noteOrder": 3988, + "time": 0.5845713656872454, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3999, + "noteOrder": 4000, "time": 0.5863321228128096, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4011, - "time": 0.5880928799383736, + "noteOrder": 4012, + "time": 0.5880928799383734, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4107, + "noteOrder": 4108, "time": 0.6021789369428854, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4119, - "time": 0.6039396940684495, + "noteOrder": 4120, + "time": 0.6039396940684494, "position": { "x": 3, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4131, - "time": 0.6057004511940134, + "noteOrder": 4132, + "time": 0.6057004511940135, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4143, - "time": 0.6074612083195775, + "noteOrder": 4145, + "time": 0.6074612083195774, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4155, + "noteOrder": 4157, "time": 0.6092219654451414, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4179, + "noteOrder": 4181, "time": 0.6127434796962694, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4191, - "time": 0.6145042368218334, + "noteOrder": 4193, + "time": 0.6145042368218333, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.6162649939473974, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.6373940794541653, "position": { "x": 2, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.6409155937052933, + "noteOrder": 4373, + "time": 0.6409155937052932, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4395, - "time": 0.6444371079564213, + "noteOrder": 4397, + "time": 0.6444371079564212, "position": { "x": 5, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4445, "time": 0.6514801364586773, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6550016507098052, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.6585231649609332, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.6831737647188291, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4733, "time": 0.6937383074722131, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4779, - "time": 0.7007813359744691, + "noteOrder": 4781, + "time": 0.700781335974469, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4827, - "time": 0.7078243644767249, + "noteOrder": 4829, + "time": 0.707824364476725, "position": { "x": 7, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4875, + "noteOrder": 4877, "time": 0.7148673929789809, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.7395179927368769, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5356, - "time": 0.7852976780015406, + "noteOrder": 5358, + "time": 0.7852976780015407, "position": { "x": 5, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5404, + "noteOrder": 5406, "time": 0.7923407065037966, "position": { "x": 2, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5428, + "noteOrder": 5430, "time": 0.7958622207549246, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 5454, "time": 0.7993837350060526, "position": { "x": 5, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5500, - "time": 0.8064267635083087, + "noteOrder": 5502, + "time": 0.8064267635083086, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5524, + "noteOrder": 5526, "time": 0.8099482777594366, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5548, - "time": 0.8134697920105646, + "noteOrder": 5550, + "time": 0.8134697920105645, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5596, + "noteOrder": 5598, "time": 0.8205128205128205, "position": { "x": 2, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5644, + "noteOrder": 5646, "time": 0.8275558490150765, "position": { "x": 2, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5740, + "noteOrder": 5742, "time": 0.8416419060195884, "position": { "x": 7, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5812, - "time": 0.8522064487729725, + "noteOrder": 5814, + "time": 0.8522064487729724, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5932, - "time": 0.8698140200286123, + "noteOrder": 5934, + "time": 0.8698140200286122, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5980, + "noteOrder": 5982, "time": 0.8768570485308683, "position": { "x": 8, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6004, - "time": 0.8803785627819963, + "noteOrder": 6007, + "time": 0.8803785627819962, "position": { "x": 5, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6028, + "noteOrder": 6031, "time": 0.8839000770331242, "position": { "x": 5, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6208, - "time": 0.9103114339165842, + "noteOrder": 6211, + "time": 0.9103114339165841, "position": { "x": 5, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6436, + "noteOrder": 6439, "time": 0.9437658193023, "position": { "x": 3, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6484, - "time": 0.950808847804556, + "noteOrder": 6487, + "time": 0.9508088478045559, "position": { "x": 7, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6580, + "noteOrder": 6583, "time": 0.9648949048090679, "position": { "x": 3, @@ -2496,10 +2496,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.01408605700451194, + "time": 0.014086057004511938, "position": { "x": 6, "y": 0 @@ -2519,7 +2519,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.017607571255639925, @@ -2542,10 +2542,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 144, - "time": 0.02112908550676791, + "time": 0.021129085506767908, "position": { "x": 5, "y": 0 @@ -2565,10 +2565,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.02112908550676791, + "time": 0.021129085506767908, "position": { "x": 4, "y": 0 @@ -2588,7 +2588,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.024650599757895894, @@ -2611,10 +2611,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 192, - "time": 0.02817211400902388, + "time": 0.028172114009023877, "position": { "x": 5, "y": 0 @@ -2634,10 +2634,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02817211400902388, + "time": 0.028172114009023877, "position": { "x": 7, "y": 0 @@ -2657,7 +2657,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 216, "time": 0.03169362826015187, @@ -2680,7 +2680,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 216, "time": 0.03169362826015187, @@ -2703,7 +2703,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.03521514251127985, @@ -2726,7 +2726,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, "time": 0.03521514251127985, @@ -2749,10 +2749,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, - "time": 0.03873665676240784, + "time": 0.03873665676240783, "position": { "x": 6, "y": 0 @@ -2772,10 +2772,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 264, - "time": 0.03873665676240784, + "time": 0.03873665676240783, "position": { "x": 3, "y": 0 @@ -2795,10 +2795,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.04225817101353582, + "time": 0.042258171013535815, "position": { "x": 4, "y": 0 @@ -2818,10 +2818,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.04225817101353582, + "time": 0.042258171013535815, "position": { "x": 6, "y": 0 @@ -2841,10 +2841,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, - "time": 0.045779685264663805, + "time": 0.0457796852646638, "position": { "x": 6, "y": 0 @@ -2864,7 +2864,7 @@ }, { "lineGroupId": 9, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 336, "time": 0.04930119951579179, @@ -2887,7 +2887,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, "time": 0.04930119951579179, @@ -2910,10 +2910,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 360, - "time": 0.05282271376691978, + "time": 0.05282271376691977, "position": { "x": 4, "y": 0 @@ -2933,10 +2933,10 @@ }, { "lineGroupId": 11, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 384, - "time": 0.05634422801804776, + "time": 0.056344228018047754, "position": { "x": 5, "y": 0 @@ -2956,10 +2956,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.05634422801804776, + "time": 0.056344228018047754, "position": { "x": 7, "y": 0 @@ -2979,10 +2979,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 408, - "time": 0.05986574226917575, + "time": 0.05986574226917574, "position": { "x": 6, "y": 0 @@ -3002,10 +3002,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 408, - "time": 0.05986574226917575, + "time": 0.05986574226917574, "position": { "x": 3, "y": 0 @@ -3025,7 +3025,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 432, "time": 0.06338725652030373, @@ -3048,7 +3048,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 432, "time": 0.06338725652030373, @@ -3071,7 +3071,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 456, "time": 0.06690877077143172, @@ -3094,7 +3094,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 456, "time": 0.06690877077143172, @@ -3117,9 +3117,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 480, + "noteOrder": 481, "time": 0.0704302850225597, "position": { "x": 4, @@ -3140,7 +3140,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12677451304060747, @@ -3162,13 +3162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.13029602729173545, + "noteOrder": 877, + "time": 0.12853527016617144, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3180,18 +3180,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.13381754154286343, + "noteOrder": 877, + "time": 0.12853527016617144, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3208,11 +3208,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 937, - "time": 0.13733905579399142, + "noteOrder": 889, + "time": 0.13029602729173545, "position": { "x": 3, "y": 0 @@ -3231,13 +3231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.15494662704963136, + "noteOrder": 901, + "time": 0.13205678441729943, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3249,18 +3249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1081, - "time": 0.1584681413007593, + "noteOrder": 901, + "time": 0.13205678441729943, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3272,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.16198965555188732, + "noteOrder": 913, + "time": 0.13381754154286343, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3300,13 +3300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 3, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1129, - "time": 0.1655111698030153, + "noteOrder": 925, + "time": 0.1355782986684274, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3323,13 +3323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.1690326840541433, + "noteOrder": 925, + "time": 0.1355782986684274, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3341,18 +3341,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1177, - "time": 0.17255419830527127, + "noteOrder": 937, + "time": 0.13733905579399142, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3369,13 +3369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 40, "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, - "time": 0.17607571255639923, + "noteOrder": 949, + "time": 0.1390998129195554, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3392,13 +3392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 40, "indexInLine": 3, "isSliding": false, - "noteOrder": 1225, - "time": 0.17959722680752724, + "noteOrder": 949, + "time": 0.1390998129195554, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3415,13 +3415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.19720479806316715, + "noteOrder": 1057, + "time": 0.15494662704963133, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3433,18 +3433,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, - "time": 0.20072631231429516, + "noteOrder": 1081, + "time": 0.1584681413007593, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3456,18 +3456,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1393, - "time": 0.20424782656542315, + "noteOrder": 1105, + "time": 0.16198965555188732, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3479,18 +3479,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1345, - "time": 0.19720479806316715, + "noteOrder": 1129, + "time": 0.1655111698030153, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3507,13 +3507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.20072631231429516, + "noteOrder": 1153, + "time": 0.16903268405414326, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3525,18 +3525,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 50, "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.20424782656542315, + "noteOrder": 1177, + "time": 0.17255419830527124, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3548,18 +3548,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1441, - "time": 0.2112908550676791, + "noteOrder": 1201, + "time": 0.17607571255639926, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3571,18 +3571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1465, - "time": 0.21481236931880707, + "noteOrder": 1225, + "time": 0.17959722680752724, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3599,13 +3599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, - "time": 0.21833388356993508, + "noteOrder": 1345, + "time": 0.19720479806316715, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3617,18 +3617,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, - "time": 0.22185539782106306, + "noteOrder": 1369, + "time": 0.20072631231429514, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3645,13 +3645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1537, - "time": 0.22537691207219104, + "noteOrder": 1394, + "time": 0.20424782656542312, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3663,16 +3663,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.22889842632331903, + "noteOrder": 1345, + "time": 0.19720479806316715, "position": { "x": 7, "y": 0 @@ -3691,13 +3691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 59, "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.23241994057444704, + "noteOrder": 1369, + "time": 0.20072631231429514, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3714,13 +3714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 59, "indexInLine": 3, "isSliding": false, - "noteOrder": 1609, - "time": 0.235941454825575, + "noteOrder": 1394, + "time": 0.20424782656542312, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3737,13 +3737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.239462969076703, + "noteOrder": 1442, + "time": 0.21129085506767908, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3755,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.24298448332783096, + "noteOrder": 1454, + "time": 0.2130516121932431, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3783,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1681, - "time": 0.24650599757895894, + "noteOrder": 1454, + "time": 0.2130516121932431, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3801,18 +3801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1705, - "time": 0.2500275118300869, + "noteOrder": 1466, + "time": 0.21481236931880707, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3829,11 +3829,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1753, - "time": 0.25707054033234294, + "noteOrder": 1466, + "time": 0.21481236931880707, "position": { "x": 5, "y": 0 @@ -3852,13 +3852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.2605920545834709, + "noteOrder": 1466, + "time": 0.21481236931880707, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3870,18 +3870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1777, - "time": 0.2605920545834709, + "noteOrder": 1478, + "time": 0.21657312644437107, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3898,13 +3898,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1801, - "time": 0.2641135688345989, + "noteOrder": 1478, + "time": 0.21657312644437107, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3921,13 +3921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1825, - "time": 0.26763508308572687, + "noteOrder": 1490, + "time": 0.21833388356993508, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3944,13 +3944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1849, - "time": 0.2711565973368549, + "noteOrder": 1490, + "time": 0.21833388356993508, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3962,18 +3962,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1873, - "time": 0.27467811158798283, + "noteOrder": 1490, + "time": 0.21833388356993508, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3985,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1897, - "time": 0.27819962583911084, + "noteOrder": 1502, + "time": 0.22009464069549906, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4013,13 +4013,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1921, - "time": 0.2817211400902388, + "noteOrder": 1502, + "time": 0.22009464069549906, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4031,18 +4031,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1945, - "time": 0.2852426543413668, + "noteOrder": 1514, + "time": 0.22185539782106306, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4054,18 +4054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1969, - "time": 0.28876416859249476, + "noteOrder": 1514, + "time": 0.22185539782106306, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4077,18 +4077,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 3, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1993, - "time": 0.2922856828436228, + "noteOrder": 1514, + "time": 0.22185539782106306, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4105,11 +4105,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.29580719709475073, + "noteOrder": 1526, + "time": 0.22361615494662704, "position": { "x": 8, "y": 0 @@ -4123,18 +4123,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2041, - "time": 0.29932871134587874, + "noteOrder": 1526, + "time": 0.22361615494662704, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4151,13 +4151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2065, - "time": 0.3028502255970067, + "noteOrder": 1538, + "time": 0.22537691207219102, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4169,18 +4169,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2089, - "time": 0.3063717398481347, + "noteOrder": 1538, + "time": 0.22537691207219102, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4197,13 +4197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.3098932540992627, + "noteOrder": 1538, + "time": 0.22537691207219102, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4220,13 +4220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.3134147683503907, + "noteOrder": 1562, + "time": 0.228898426323319, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4243,11 +4243,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 2, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.3169362826015186, + "noteOrder": 1586, + "time": 0.232419940574447, "position": { "x": 6, "y": 0 @@ -4266,13 +4266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2185, - "time": 0.32045779685264664, + "noteOrder": 1610, + "time": 0.235941454825575, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4289,13 +4289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.32397931110377465, + "noteOrder": 1634, + "time": 0.23946296907670295, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4307,18 +4307,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.3275008253549026, + "noteOrder": 1646, + "time": 0.24122372620226698, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4330,18 +4330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2306, - "time": 0.3380653681082866, + "noteOrder": 1646, + "time": 0.24122372620226698, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4358,11 +4358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2330, - "time": 0.34158688235941453, + "noteOrder": 1658, + "time": 0.24298448332783096, "position": { "x": 4, "y": 0 @@ -4381,13 +4381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2402, - "time": 0.35215142511279846, + "noteOrder": 1658, + "time": 0.24298448332783096, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4399,18 +4399,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2426, - "time": 0.35567293936392647, + "noteOrder": 1658, + "time": 0.24298448332783096, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4422,18 +4422,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2450, - "time": 0.3591944536150545, + "noteOrder": 1670, + "time": 0.24474524045339496, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4450,13 +4450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2474, - "time": 0.3627159678661825, + "noteOrder": 1670, + "time": 0.24474524045339496, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4468,18 +4468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2498, - "time": 0.36623748211731044, + "noteOrder": 1682, + "time": 0.24650599757895894, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4496,13 +4496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2522, - "time": 0.36975899636843845, + "noteOrder": 1682, + "time": 0.24650599757895894, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4519,13 +4519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 2, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2546, - "time": 0.3732805106195664, + "noteOrder": 1682, + "time": 0.24650599757895894, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4537,18 +4537,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 3, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2570, - "time": 0.3768020248706944, + "noteOrder": 1694, + "time": 0.24826675470452292, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4560,18 +4560,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 4, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.3803235391218224, + "noteOrder": 1694, + "time": 0.24826675470452292, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4583,18 +4583,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2594, - "time": 0.3803235391218224, + "noteOrder": 1706, + "time": 0.2500275118300869, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4611,13 +4611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2618, - "time": 0.3838450533729504, + "noteOrder": 1706, + "time": 0.2500275118300869, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4629,18 +4629,6642 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2642, - "time": 0.3873665676240784, + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.2500275118300869, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25178826895565093, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1718, + "time": 0.25178826895565093, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25354902608121493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1730, + "time": 0.25354902608121493, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1754, + "time": 0.2570705403323429, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1778, + "time": 0.2605920545834709, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1778, + "time": 0.2605920545834709, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1802, + "time": 0.26411356883459886, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.26763508308572687, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1838, + "time": 0.2693958402112908, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1838, + "time": 0.2693958402112908, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2711565973368548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2711565973368548, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1850, + "time": 0.2711565973368548, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1862, + "time": 0.2729173544624188, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1862, + "time": 0.2729173544624188, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27467811158798283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27467811158798283, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.27467811158798283, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1886, + "time": 0.27643886871354684, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1886, + "time": 0.27643886871354684, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1898, + "time": 0.2781996258391108, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1898, + "time": 0.2781996258391108, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1898, + "time": 0.2781996258391108, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1910, + "time": 0.2799603829646748, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1910, + "time": 0.2799603829646748, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2817211400902388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2817211400902388, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, + "time": 0.2817211400902388, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1946, + "time": 0.2852426543413668, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1970, + "time": 0.28876416859249476, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1994, + "time": 0.2922856828436227, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.29580719709475073, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2975679542203147, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2030, + "time": 0.2975679542203147, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2993287113458787, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2993287113458787, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2042, + "time": 0.2993287113458787, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2054, + "time": 0.3010894684714427, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2054, + "time": 0.3010894684714427, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2066, + "time": 0.30285022559700675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2066, + "time": 0.30285022559700675, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2066, + "time": 0.30285022559700675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2078, + "time": 0.3046109827225707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2078, + "time": 0.3046109827225707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3063717398481347, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3063717398481347, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3063717398481347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2102, + "time": 0.3081324969736987, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2102, + "time": 0.3081324969736987, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2114, + "time": 0.30989325409926266, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2114, + "time": 0.30989325409926266, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.30989325409926266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.31341476835039067, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2162, + "time": 0.3169362826015186, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3204577968526466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.32397931110377465, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3275008253549026, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2307, + "time": 0.3380653681082865, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2331, + "time": 0.34158688235941453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.3521514251127985, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2415, + "time": 0.3539121822383625, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2415, + "time": 0.3539121822383625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2427, + "time": 0.35567293936392647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2427, + "time": 0.35567293936392647, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2427, + "time": 0.35567293936392647, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2439, + "time": 0.35743369648949047, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2439, + "time": 0.35743369648949047, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3591944536150545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3591944536150545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.3591944536150545, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2463, + "time": 0.3609552107406184, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2463, + "time": 0.3609552107406184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2475, + "time": 0.36271596786618243, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2475, + "time": 0.36271596786618243, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2475, + "time": 0.36271596786618243, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2487, + "time": 0.36447672499174644, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2487, + "time": 0.36447672499174644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3662374821173104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3662374821173104, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3662374821173104, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.36975899636843845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2547, + "time": 0.3732805106195664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2571, + "time": 0.3768020248706944, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2595, + "time": 0.3803235391218224, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.3803235391218224, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2607, + "time": 0.3820842962473864, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2607, + "time": 0.3820842962473864, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2619, + "time": 0.38384505337295033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2619, + "time": 0.38384505337295033, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2619, + "time": 0.38384505337295033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2631, + "time": 0.38560581049851433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2631, + "time": 0.38560581049851433, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2643, + "time": 0.38736656762407834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2643, + "time": 0.38736656762407834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.38736656762407834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2655, + "time": 0.3891273247496423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2655, + "time": 0.3891273247496423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2667, + "time": 0.3908880818752063, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2667, + "time": 0.3908880818752063, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2667, + "time": 0.3908880818752063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2679, + "time": 0.39264883900077036, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2679, + "time": 0.39264883900077036, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2691, + "time": 0.3944095961263343, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2691, + "time": 0.3944095961263343, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.3944095961263343, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2715, + "time": 0.3979311103774623, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2739, + "time": 0.40145262462859027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2739, + "time": 0.40145262462859027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2763, + "time": 0.4049741388797183, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2787, + "time": 0.40849565313084624, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.40849565313084624, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2811, + "time": 0.4120171673819742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2835, + "time": 0.41553868163310226, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2859, + "time": 0.4190601958842302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2883, + "time": 0.42258171013535817, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.42258171013535817, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4261032243864862, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2931, + "time": 0.42962473863761413, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2955, + "time": 0.43314625288874214, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2979, + "time": 0.43666776713987016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.43666776713987016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2991, + "time": 0.43842852426543416, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2991, + "time": 0.43842852426543416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3003, + "time": 0.4401892813909981, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3015, + "time": 0.4419500385165621, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3015, + "time": 0.4419500385165621, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4437107956421261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3039, + "time": 0.44547155276769007, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3039, + "time": 0.44547155276769007, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3051, + "time": 0.4472323098932541, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3063, + "time": 0.4489930670188181, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3063, + "time": 0.4489930670188181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.45075382414438203, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3087, + "time": 0.45251458126994604, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3099, + "time": 0.45427533839551004, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3111, + "time": 0.45603609552107405, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3123, + "time": 0.457796852646638, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.464839881148894, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3195, + "time": 0.468361395400022, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3219, + "time": 0.47188290965115, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3244, + "time": 0.47540442390227794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3268, + "time": 0.4789259381534059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3268, + "time": 0.4789259381534059, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3280, + "time": 0.48068669527896996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3280, + "time": 0.48068669527896996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3292, + "time": 0.48244745240453396, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3292, + "time": 0.48244745240453396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3292, + "time": 0.48244745240453396, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3304, + "time": 0.48420820953009797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3304, + "time": 0.48420820953009797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3316, + "time": 0.4859689666556619, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3316, + "time": 0.4859689666556619, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3316, + "time": 0.4859689666556619, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3328, + "time": 0.4877297237812259, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3328, + "time": 0.4877297237812259, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3340, + "time": 0.4894904809067899, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3340, + "time": 0.4894904809067899, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.4930119951579179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.49653350940904584, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3412, + "time": 0.5000550236601738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3436, + "time": 0.5035765379113019, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5070980521624299, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5070980521624299, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3472, + "time": 0.5088588092879939, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3472, + "time": 0.5088588092879939, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5106195664135578, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5106195664135578, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5106195664135578, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3496, + "time": 0.5123803235391218, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3496, + "time": 0.5123803235391218, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5141410806646858, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5141410806646858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5141410806646858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3520, + "time": 0.5159018377902498, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3520, + "time": 0.5159018377902498, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5176625949158138, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3544, + "time": 0.5194233520413778, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3544, + "time": 0.5194233520413778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3556, + "time": 0.5211841091669418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3580, + "time": 0.5247056234180697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3604, + "time": 0.5282271376691977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3628, + "time": 0.5317486519203257, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.5352701661714537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.5387916804225816, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3700, + "time": 0.5423131946737096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3724, + "time": 0.5458347089248377, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3748, + "time": 0.5493562231759657, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3760, + "time": 0.5511169803015297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3760, + "time": 0.5511169803015297, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5528777374270937, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5528777374270937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5528777374270937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.5546384945526577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3784, + "time": 0.5546384945526577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3796, + "time": 0.5563992516782216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3796, + "time": 0.5563992516782216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3796, + "time": 0.5563992516782216, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3808, + "time": 0.5581600088037856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3808, + "time": 0.5581600088037856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3820, + "time": 0.5599207659293496, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3832, + "time": 0.5616815230549136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3832, + "time": 0.5616815230549136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6338725652030373, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4349, + "time": 0.6373940794541653, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4373, + "time": 0.6409155937052932, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4397, + "time": 0.6444371079564212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4421, + "time": 0.6479586222075493, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4421, + "time": 0.6479586222075493, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4433, + "time": 0.6497193793331132, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4433, + "time": 0.6497193793331132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4445, + "time": 0.6514801364586773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4445, + "time": 0.6514801364586773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4457, + "time": 0.6532408935842412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4457, + "time": 0.6532408935842412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4469, + "time": 0.6550016507098052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4469, + "time": 0.6550016507098052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 4481, + "time": 0.6567624078353692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 4481, + "time": 0.6567624078353692, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 4493, + "time": 0.6585231649609332, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 4493, + "time": 0.6585231649609332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4517, + "time": 0.6620446792120612, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4529, + "time": 0.6638054363376251, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4529, + "time": 0.6638054363376251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4541, + "time": 0.6655661934631891, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4553, + "time": 0.6673269505887531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4553, + "time": 0.6673269505887531, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4565, + "time": 0.6690877077143171, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4577, + "time": 0.6708484648398811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4577, + "time": 0.6708484648398811, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4589, + "time": 0.6726092219654451, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4589, + "time": 0.6726092219654451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4589, + "time": 0.6726092219654451, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4601, + "time": 0.6743699790910092, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4601, + "time": 0.6743699790910092, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4613, + "time": 0.676130736216573, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4613, + "time": 0.676130736216573, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4613, + "time": 0.676130736216573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4625, + "time": 0.6778914933421372, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4625, + "time": 0.6778914933421372, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4637, + "time": 0.6796522504677011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4649, + "time": 0.6814130075932651, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4649, + "time": 0.6814130075932651, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4709, + "time": 0.690216793221085, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4733, + "time": 0.6937383074722131, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4757, + "time": 0.6972598217233411, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4757, + "time": 0.6972598217233411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4781, + "time": 0.700781335974469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4805, + "time": 0.704302850225597, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4805, + "time": 0.704302850225597, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4829, + "time": 0.707824364476725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4853, + "time": 0.7113458787278529, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4853, + "time": 0.7113458787278529, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4877, + "time": 0.7148673929789809, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4901, + "time": 0.718388907230109, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4901, + "time": 0.718388907230109, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4913, + "time": 0.720149664355673, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4913, + "time": 0.720149664355673, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4925, + "time": 0.7219104214812369, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4925, + "time": 0.7219104214812369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4925, + "time": 0.7219104214812369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4937, + "time": 0.723671178606801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4937, + "time": 0.723671178606801, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4949, + "time": 0.7254319357323649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4961, + "time": 0.7271926928579289, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4961, + "time": 0.7271926928579289, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4973, + "time": 0.7289534499834929, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4985, + "time": 0.7307142071090569, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4985, + "time": 0.7307142071090569, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4997, + "time": 0.7324749642346208, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4997, + "time": 0.7324749642346208, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4997, + "time": 0.7324749642346208, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5009, + "time": 0.7342357213601849, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5009, + "time": 0.7342357213601849, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5021, + "time": 0.7359964784857488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5033, + "time": 0.7377572356113128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5033, + "time": 0.7377572356113128, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7747331352481567, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7764938923737207, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5298, + "time": 0.7764938923737207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5310, + "time": 0.7782546494992846, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5310, + "time": 0.7782546494992846, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5310, + "time": 0.7782546494992846, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5322, + "time": 0.7800154066248487, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5322, + "time": 0.7800154066248487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7817761637504126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7817761637504126, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7817761637504126, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4657,11 +11281,34 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2666, - "time": 0.3908880818752063, + "noteOrder": 5346, + "time": 0.7835369208759766, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5346, + "time": 0.7835369208759766, "position": { "x": 4, "y": 0 @@ -4675,16 +11322,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2690, - "time": 0.3944095961263343, + "noteOrder": 5358, + "time": 0.7852976780015407, "position": { "x": 4, "y": 0 @@ -4703,13 +11350,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 2714, - "time": 0.3979311103774623, + "noteOrder": 5382, + "time": 0.7888191922526686, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4726,11 +11373,34 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 232, "indexInLine": 2, "isSliding": false, - "noteOrder": 2738, - "time": 0.4014526246285903, + "noteOrder": 5406, + "time": 0.7923407065037966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5430, + "time": 0.7958622207549246, "position": { "x": 4, "y": 0 @@ -4749,13 +11419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2738, - "time": 0.4014526246285903, + "noteOrder": 5454, + "time": 0.7993837350060526, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4767,18 +11437,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 232, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5478, + "time": 0.8029052492571805, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 2762, - "time": 0.4049741388797183, + "noteOrder": 5478, + "time": 0.8029052492571805, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4795,11 +11488,34 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 236, "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4084956531308463, + "noteOrder": 5490, + "time": 0.8046660063827447, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5490, + "time": 0.8046660063827447, "position": { "x": 6, "y": 0 @@ -4818,13 +11534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2786, - "time": 0.4084956531308463, + "noteOrder": 5502, + "time": 0.8064267635083086, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4836,18 +11552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2810, - "time": 0.41201716738197425, + "noteOrder": 5502, + "time": 0.8064267635083086, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4859,18 +11575,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 2, + "lineGroupId": 236, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2834, - "time": 0.41553868163310226, + "noteOrder": 5514, + "time": 0.8081875206338726, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4882,16 +11598,108 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 3, + "lineGroupId": 236, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2858, - "time": 0.4190601958842302, + "noteOrder": 5514, + "time": 0.8081875206338726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5526, + "time": 0.8099482777594366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5526, + "time": 0.8099482777594366, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5538, + "time": 0.8117090348850006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5538, + "time": 0.8117090348850006, "position": { "x": 5, "y": 0 @@ -4905,18 +11713,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 4, + "lineGroupId": 236, + "indexInLine": 12, "isSliding": false, - "noteOrder": 2882, - "time": 0.4225817101353582, + "noteOrder": 5550, + "time": 0.8134697920105645, "position": { - "x": 8, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5550, + "time": 0.8134697920105645, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -4928,18 +11759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 14, "isSliding": false, - "noteOrder": 2882, - "time": 0.4225817101353582, + "noteOrder": 5562, + "time": 0.8152305491361286, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4956,13 +11787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 15, "isSliding": false, - "noteOrder": 2906, - "time": 0.42610322438648623, + "noteOrder": 5562, + "time": 0.8152305491361286, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4979,13 +11810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2930, - "time": 0.42962473863761413, + "noteOrder": 5574, + "time": 0.8169913062616925, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4997,18 +11828,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 3, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2954, - "time": 0.43314625288874214, + "noteOrder": 5586, + "time": 0.8187520633872565, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5020,18 +11851,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 4, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2978, - "time": 0.43666776713987016, + "noteOrder": 5586, + "time": 0.8187520633872565, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5043,18 +11874,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2978, - "time": 0.43666776713987016, + "noteOrder": 5598, + "time": 0.8205128205128205, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5071,13 +11902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3002, - "time": 0.44018928139099817, + "noteOrder": 5598, + "time": 0.8205128205128205, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5089,18 +11920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, - "time": 0.4437107956421261, + "noteOrder": 5622, + "time": 0.8240343347639484, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5112,18 +11943,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3050, - "time": 0.44723230989325413, + "noteOrder": 5634, + "time": 0.8257950918895125, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5140,13 +11971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3074, - "time": 0.4507538241443821, + "noteOrder": 5634, + "time": 0.8257950918895125, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5158,18 +11989,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3086, - "time": 0.4525145812699461, + "noteOrder": 5646, + "time": 0.8275558490150765, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5181,18 +12012,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 2, + "lineGroupId": 242, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3098, - "time": 0.4542753383955101, + "noteOrder": 5646, + "time": 0.8275558490150765, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5204,18 +12035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 3, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3110, - "time": 0.45603609552107405, + "noteOrder": 5670, + "time": 0.8310773632662045, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5232,13 +12063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 4, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.45779685264663805, + "noteOrder": 5682, + "time": 0.8328381203917684, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5255,13 +12086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3170, - "time": 0.4648398811488941, + "noteOrder": 5682, + "time": 0.8328381203917684, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5278,13 +12109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 3194, - "time": 0.468361395400022, + "noteOrder": 5694, + "time": 0.8345988775173324, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5296,18 +12127,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 245, "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.47188290965115, + "noteOrder": 5706, + "time": 0.8363596346428964, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5319,18 +12150,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 245, "indexInLine": 3, "isSliding": false, - "noteOrder": 3242, - "time": 0.475404423902278, + "noteOrder": 5706, + "time": 0.8363596346428964, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5342,18 +12173,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 4, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, - "time": 0.478925938153406, + "noteOrder": 5718, + "time": 0.8381203917684604, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5370,13 +12201,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, - "time": 0.478925938153406, + "noteOrder": 5730, + "time": 0.8398811488940243, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5388,18 +12219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3290, - "time": 0.48244745240453396, + "noteOrder": 5730, + "time": 0.8398811488940243, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5416,13 +12247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3314, - "time": 0.4859689666556619, + "noteOrder": 5742, + "time": 0.8416419060195884, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5434,18 +12265,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3362, - "time": 0.4930119951579179, + "noteOrder": 5742, + "time": 0.8416419060195884, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5457,18 +12288,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 248, "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.4965335094090459, + "noteOrder": 5766, + "time": 0.8451634202707163, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5485,13 +12316,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 248, "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, - "time": 0.5000550236601738, + "noteOrder": 5778, + "time": 0.8469241773962803, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5508,13 +12339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 248, "indexInLine": 3, "isSliding": false, - "noteOrder": 3434, - "time": 0.5035765379113019, + "noteOrder": 5778, + "time": 0.8469241773962803, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5531,13 +12362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 4, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3458, - "time": 0.5070980521624299, + "noteOrder": 5790, + "time": 0.8486849345218443, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5549,18 +12380,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.5070980521624299, + "noteOrder": 5802, + "time": 0.8504456916474085, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5577,11 +12408,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3482, - "time": 0.5106195664135579, + "noteOrder": 5802, + "time": 0.8504456916474085, "position": { "x": 4, "y": 0 @@ -5595,18 +12426,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.5141410806646859, + "noteOrder": 5862, + "time": 0.8592494772752283, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5618,16 +12449,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, - "time": 0.5176625949158138, + "noteOrder": 5874, + "time": 0.8610102344007924, "position": { "x": 8, "y": 0 @@ -5646,13 +12477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3554, - "time": 0.5211841091669418, + "noteOrder": 5874, + "time": 0.8610102344007924, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5664,18 +12495,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 252, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3578, - "time": 0.5247056234180698, + "noteOrder": 5886, + "time": 0.8627709915263563, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5687,16 +12518,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 2, + "lineGroupId": 252, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3602, - "time": 0.5282271376691978, + "noteOrder": 5886, + "time": 0.8627709915263563, "position": { "x": 5, "y": 0 @@ -5710,18 +12541,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 3, + "lineGroupId": 253, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3626, - "time": 0.5317486519203257, + "noteOrder": 5886, + "time": 0.8627709915263563, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5738,11 +12569,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, - "time": 0.5352701661714537, + "noteOrder": 5898, + "time": 0.8645317486519203, "position": { "x": 7, "y": 0 @@ -5756,18 +12587,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 253, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3674, - "time": 0.5387916804225817, + "noteOrder": 5898, + "time": 0.8645317486519203, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5779,18 +12610,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3698, - "time": 0.5423131946737098, + "noteOrder": 5910, + "time": 0.8662925057774843, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5807,13 +12638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 253, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3722, - "time": 0.5458347089248377, + "noteOrder": 5910, + "time": 0.8662925057774843, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5830,13 +12661,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3747, - "time": 0.5493562231759657, + "noteOrder": 5910, + "time": 0.8662925057774843, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5848,18 +12679,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3771, - "time": 0.5528777374270937, + "noteOrder": 5922, + "time": 0.8680532629030483, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5876,13 +12707,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3795, - "time": 0.5563992516782217, + "noteOrder": 5922, + "time": 0.8680532629030483, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5894,18 +12725,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3819, - "time": 0.5599207659293496, + "noteOrder": 5934, + "time": 0.8698140200286122, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5922,13 +12753,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4323, - "time": 0.6338725652030373, + "noteOrder": 5934, + "time": 0.8698140200286122, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5940,18 +12771,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 256, "indexInLine": 1, "isSliding": false, - "noteOrder": 4347, - "time": 0.6373940794541653, + "noteOrder": 5958, + "time": 0.8733355342797403, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5963,18 +12794,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 256, "indexInLine": 2, "isSliding": false, - "noteOrder": 4371, - "time": 0.6409155937052933, + "noteOrder": 5982, + "time": 0.8768570485308683, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5986,18 +12817,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 256, "indexInLine": 3, "isSliding": false, - "noteOrder": 4395, - "time": 0.6444371079564213, + "noteOrder": 6007, + "time": 0.8803785627819962, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6009,18 +12840,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 256, "indexInLine": 4, "isSliding": false, - "noteOrder": 4419, - "time": 0.6479586222075493, + "noteOrder": 6031, + "time": 0.8839000770331242, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6032,18 +12863,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4419, - "time": 0.6479586222075493, + "noteOrder": 6055, + "time": 0.8874215912842522, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6060,13 +12891,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4515, - "time": 0.6620446792120612, + "noteOrder": 6055, + "time": 0.8874215912842522, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -6083,13 +12914,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4539, - "time": 0.6655661934631892, + "noteOrder": 6067, + "time": 0.8891823484098161, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -6101,18 +12932,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4563, - "time": 0.6690877077143171, + "noteOrder": 6067, + "time": 0.8891823484098161, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6129,13 +12960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4587, - "time": 0.6726092219654451, + "noteOrder": 6079, + "time": 0.8909431055353801, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6147,18 +12978,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4611, - "time": 0.6761307362165732, + "noteOrder": 6079, + "time": 0.8909431055353801, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6175,13 +13006,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4635, - "time": 0.6796522504677011, + "noteOrder": 6079, + "time": 0.8909431055353801, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6198,13 +13029,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.6902167932210851, + "noteOrder": 6091, + "time": 0.8927038626609441, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6221,13 +13052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 261, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4731, - "time": 0.6937383074722131, + "noteOrder": 6091, + "time": 0.8927038626609441, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6244,13 +13075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 2, + "lineGroupId": 261, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4755, - "time": 0.6972598217233411, + "noteOrder": 6103, + "time": 0.8944646197865082, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6267,13 +13098,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4755, - "time": 0.6972598217233411, + "noteOrder": 6103, + "time": 0.8944646197865082, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6285,18 +13116,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, + "lineGroupId": 262, "indexInLine": 1, "isSliding": false, - "noteOrder": 4779, - "time": 0.7007813359744691, + "noteOrder": 6103, + "time": 0.8944646197865082, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6313,13 +13144,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, + "lineGroupId": 262, "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.7043028502255969, + "noteOrder": 6115, + "time": 0.8962253769120723, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6336,13 +13167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4803, - "time": 0.7043028502255969, + "noteOrder": 6115, + "time": 0.8962253769120723, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6354,18 +13185,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4827, - "time": 0.7078243644767249, + "noteOrder": 6127, + "time": 0.8979861340376362, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6377,18 +13208,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 2, + "lineGroupId": 262, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4851, - "time": 0.7113458787278529, + "noteOrder": 6127, + "time": 0.8979861340376362, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6400,16 +13231,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4851, - "time": 0.7113458787278529, + "noteOrder": 6127, + "time": 0.8979861340376362, "position": { "x": 4, "y": 0 @@ -6423,16 +13254,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.7148673929789809, + "noteOrder": 6139, + "time": 0.8997468911632002, "position": { "x": 4, "y": 0 @@ -6446,16 +13277,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 2, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.718388907230109, + "noteOrder": 6139, + "time": 0.8997468911632002, "position": { "x": 5, "y": 0 @@ -6469,18 +13300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4899, - "time": 0.718388907230109, + "noteOrder": 6151, + "time": 0.9015076482887641, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6492,18 +13323,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4923, - "time": 0.721910421481237, + "noteOrder": 6163, + "time": 0.9032684054143282, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6520,13 +13351,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4947, - "time": 0.725431935732365, + "noteOrder": 6163, + "time": 0.9032684054143282, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6538,18 +13369,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4971, - "time": 0.728953449983493, + "noteOrder": 6175, + "time": 0.9050291625398921, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6561,18 +13392,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4995, - "time": 0.7324749642346209, + "noteOrder": 6187, + "time": 0.9067899196654562, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6589,13 +13420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 265, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5019, - "time": 0.7359964784857489, + "noteOrder": 6187, + "time": 0.9067899196654562, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6607,18 +13438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5284, - "time": 0.7747331352481568, + "noteOrder": 6199, + "time": 0.9085506767910201, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6635,13 +13466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5308, - "time": 0.7782546494992848, + "noteOrder": 6211, + "time": 0.9103114339165841, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6653,18 +13484,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5332, - "time": 0.7817761637504126, + "noteOrder": 6223, + "time": 0.9120721910421481, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -6681,13 +13512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5380, - "time": 0.7888191922526686, + "noteOrder": 6235, + "time": 0.9138329481677121, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6704,13 +13535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 269, "indexInLine": 1, "isSliding": false, - "noteOrder": 5404, - "time": 0.7923407065037966, + "noteOrder": 6247, + "time": 0.915593705293276, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -6727,13 +13558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 269, "indexInLine": 2, "isSliding": false, - "noteOrder": 5428, - "time": 0.7958622207549246, + "noteOrder": 6259, + "time": 0.9173544624188401, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6750,13 +13581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 269, "indexInLine": 3, "isSliding": false, - "noteOrder": 5452, - "time": 0.7993837350060526, + "noteOrder": 6259, + "time": 0.9173544624188401, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6773,13 +13604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 269, "indexInLine": 4, "isSliding": false, - "noteOrder": 5476, - "time": 0.8029052492571807, + "noteOrder": 6271, + "time": 0.9191152195444041, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6796,13 +13627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 269, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5476, - "time": 0.8029052492571807, + "noteOrder": 6271, + "time": 0.9191152195444041, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6814,18 +13645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5572, - "time": 0.8169913062616926, + "noteOrder": 6271, + "time": 0.9191152195444041, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6837,18 +13668,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5620, - "time": 0.8240343347639485, + "noteOrder": 6283, + "time": 0.920875976669968, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6865,13 +13696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5668, - "time": 0.8310773632662045, + "noteOrder": 6283, + "time": 0.920875976669968, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6883,18 +13714,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5692, - "time": 0.8345988775173324, + "noteOrder": 6295, + "time": 0.9226367337955321, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6911,13 +13742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5716, - "time": 0.8381203917684604, + "noteOrder": 6295, + "time": 0.9226367337955321, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6929,18 +13760,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5764, - "time": 0.8451634202707164, + "noteOrder": 6295, + "time": 0.9226367337955321, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6952,16 +13783,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5788, - "time": 0.8486849345218445, + "noteOrder": 6307, + "time": 0.924397490921096, "position": { "x": 3, "y": 0 @@ -6980,13 +13811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5860, - "time": 0.8592494772752283, + "noteOrder": 6307, + "time": 0.924397490921096, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6998,18 +13829,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5884, - "time": 0.8627709915263563, + "noteOrder": 6319, + "time": 0.92615824804666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7026,13 +13857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5908, - "time": 0.8662925057774843, + "noteOrder": 6319, + "time": 0.92615824804666, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7044,18 +13875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 272, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5956, - "time": 0.8733355342797403, + "noteOrder": 6319, + "time": 0.92615824804666, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7072,13 +13903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 1, + "lineGroupId": 272, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5980, - "time": 0.8768570485308683, + "noteOrder": 6331, + "time": 0.927919005172224, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7095,13 +13926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 2, + "lineGroupId": 272, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6004, - "time": 0.8803785627819963, + "noteOrder": 6331, + "time": 0.927919005172224, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7118,11 +13949,11 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 3, + "lineGroupId": 272, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6028, - "time": 0.8839000770331242, + "noteOrder": 6343, + "time": 0.929679762297788, "position": { "x": 5, "y": 0 @@ -7141,13 +13972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 4, + "lineGroupId": 272, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6052, - "time": 0.8874215912842522, + "noteOrder": 6343, + "time": 0.929679762297788, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -7164,13 +13995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6052, - "time": 0.8874215912842522, + "noteOrder": 6343, + "time": 0.929679762297788, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -7187,13 +14018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6076, - "time": 0.8909431055353803, + "noteOrder": 6355, + "time": 0.9314405194233519, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7205,18 +14036,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6100, - "time": 0.8944646197865083, + "noteOrder": 6355, + "time": 0.9314405194233519, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7233,13 +14064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6124, - "time": 0.8979861340376362, + "noteOrder": 6367, + "time": 0.933201276548916, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7256,13 +14087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6148, - "time": 0.9015076482887642, + "noteOrder": 6379, + "time": 0.9349620336744799, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -7274,18 +14105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 265, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6172, - "time": 0.9050291625398922, + "noteOrder": 6379, + "time": 0.9349620336744799, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7302,13 +14133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6196, - "time": 0.9085506767910202, + "noteOrder": 6391, + "time": 0.936722790800044, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7320,18 +14151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 1, + "lineGroupId": 274, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6208, - "time": 0.9103114339165842, + "noteOrder": 6391, + "time": 0.936722790800044, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7343,18 +14174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 2, + "lineGroupId": 275, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6220, - "time": 0.9120721910421481, + "noteOrder": 6391, + "time": 0.936722790800044, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7371,13 +14202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 3, + "lineGroupId": 275, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6232, - "time": 0.9138329481677122, + "noteOrder": 6403, + "time": 0.9384835479256081, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7394,13 +14225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 269, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6244, - "time": 0.9155937052932761, + "noteOrder": 6403, + "time": 0.9384835479256081, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -7417,13 +14248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6268, - "time": 0.9191152195444041, + "noteOrder": 6415, + "time": 0.940244305051172, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7435,18 +14266,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6292, - "time": 0.9226367337955321, + "noteOrder": 6415, + "time": 0.940244305051172, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7463,13 +14294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 272, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6316, - "time": 0.9261582480466601, + "noteOrder": 6415, + "time": 0.940244305051172, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7486,13 +14317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6340, - "time": 0.9296797622977881, + "noteOrder": 6427, + "time": 0.942005062176736, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7504,18 +14335,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6364, - "time": 0.9332012765489162, + "noteOrder": 6427, + "time": 0.942005062176736, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -7532,13 +14363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6388, - "time": 0.936722790800044, + "noteOrder": 6439, + "time": 0.9437658193023, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7550,16 +14381,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 276, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6412, - "time": 0.940244305051172, + "noteOrder": 6439, + "time": 0.9437658193023, "position": { "x": 7, "y": 0 @@ -7579,10 +14410,10 @@ }, { "lineGroupId": 281, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6532, - "time": 0.957851876306812, + "noteOrder": 6535, + "time": 0.9578518763068118, "position": { "x": 3, "y": 0 @@ -7602,9 +14433,9 @@ }, { "lineGroupId": 281, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6556, + "noteOrder": 6559, "time": 0.9613733905579399, "position": { "x": 4, @@ -7625,9 +14456,9 @@ }, { "lineGroupId": 283, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6556, + "noteOrder": 6559, "time": 0.9613733905579399, "position": { "x": 7, @@ -7648,9 +14479,9 @@ }, { "lineGroupId": 283, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6580, + "noteOrder": 6583, "time": 0.9648949048090679, "position": { "x": 6, diff --git a/tracks/Neon Rider/348_difficulty_1b.json b/tracks/Neon Rider/348_difficulty_1b.json index b552dcad..8cf03e1a 100644 --- a/tracks/Neon Rider/348_difficulty_1b.json +++ b/tracks/Neon Rider/348_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 480, + "noteOrder": 481, "time": 0.0704302850225597, "position": { "x": 6, @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.07747331352481568, + "noteOrder": 529, + "time": 0.07747331352481567, "position": { "x": 7, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 576, - "time": 0.08451634202707164, + "noteOrder": 577, + "time": 0.08451634202707163, "position": { "x": 4, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.09155937052932761, + "noteOrder": 625, + "time": 0.0915593705293276, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.09860239903158358, "position": { "x": 6, @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.10564542753383956, + "noteOrder": 721, + "time": 0.10564542753383954, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 769, - "time": 0.11268845603609552, + "time": 0.11268845603609551, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 817, - "time": 0.1197314845383515, + "time": 0.11973148453835147, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1249, - "time": 0.18311874105865522, + "time": 0.1831187410586552, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1321, - "time": 0.1936832838120392, + "time": 0.19368328381203917, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.23241994057444704, + "noteOrder": 1586, + "time": 0.232419940574447, "position": { "x": 4, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.2605920545834709, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.27467811158798283, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.28876416859249476, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.3028502255970067, + "noteOrder": 2066, + "time": 0.30285022559700675, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.4648398811488941, + "noteOrder": 3171, + "time": 0.464839881148894, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.47188290965115, "position": { "x": 7, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.478925938153406, + "noteOrder": 3268, + "time": 0.4789259381534059, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.4859689666556619, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3362, + "noteOrder": 3364, "time": 0.4930119951579179, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.5000550236601738, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3460, "time": 0.5070980521624299, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5141410806646859, + "noteOrder": 3508, + "time": 0.5141410806646858, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3554, + "noteOrder": 3556, "time": 0.5211841091669418, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3578, - "time": 0.5247056234180698, + "noteOrder": 3580, + "time": 0.5247056234180697, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.5282271376691978, + "noteOrder": 3604, + "time": 0.5282271376691977, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3650, + "noteOrder": 3652, "time": 0.5352701661714537, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3674, - "time": 0.5387916804225817, + "noteOrder": 3676, + "time": 0.5387916804225816, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3698, - "time": 0.5423131946737098, + "noteOrder": 3700, + "time": 0.5423131946737096, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 3748, "time": 0.5493562231759657, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 3772, "time": 0.5528777374270937, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3795, - "time": 0.5563992516782217, + "noteOrder": 3796, + "time": 0.5563992516782216, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3843, + "noteOrder": 3844, "time": 0.5634422801804776, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3867, + "noteOrder": 3868, "time": 0.5669637944316056, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3891, + "noteOrder": 3892, "time": 0.5704853086827336, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3987, - "time": 0.5845713656872455, + "noteOrder": 3988, + "time": 0.5845713656872454, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.5986574226917575, + "noteOrder": 4084, + "time": 0.5986574226917574, "position": { "x": 3, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4179, + "noteOrder": 4181, "time": 0.6127434796962694, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.6268295367007815, + "noteOrder": 4277, + "time": 0.6268295367007813, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.6338725652030373, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.6409155937052933, + "noteOrder": 4373, + "time": 0.6409155937052932, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4419, + "noteOrder": 4421, "time": 0.6479586222075493, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4469, "time": 0.6550016507098052, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4515, + "noteOrder": 4517, "time": 0.6620446792120612, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4539, - "time": 0.6655661934631892, + "noteOrder": 4541, + "time": 0.6655661934631891, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4563, + "noteOrder": 4565, "time": 0.6690877077143171, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.6761307362165732, + "noteOrder": 4613, + "time": 0.676130736216573, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.6796522504677011, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.6831737647188291, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.6902167932210851, + "noteOrder": 4709, + "time": 0.690216793221085, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4733, "time": 0.6937383074722131, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.6972598217233411, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4779, - "time": 0.7007813359744691, + "noteOrder": 4781, + "time": 0.700781335974469, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4803, - "time": 0.7043028502255969, + "noteOrder": 4805, + "time": 0.704302850225597, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.718388907230109, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4923, - "time": 0.721910421481237, + "noteOrder": 4925, + "time": 0.7219104214812369, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4947, - "time": 0.725431935732365, + "noteOrder": 4949, + "time": 0.7254319357323649, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4971, - "time": 0.728953449983493, + "noteOrder": 4973, + "time": 0.7289534499834929, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4995, - "time": 0.7324749642346209, + "noteOrder": 4997, + "time": 0.7324749642346208, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5716, + "noteOrder": 5718, "time": 0.8381203917684604, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5764, - "time": 0.8451634202707164, + "noteOrder": 5766, + "time": 0.8451634202707163, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5812, - "time": 0.8522064487729725, + "noteOrder": 5814, + "time": 0.8522064487729724, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6292, + "noteOrder": 6295, "time": 0.9226367337955321, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6340, - "time": 0.9296797622977881, + "noteOrder": 6343, + "time": 0.929679762297788, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6388, + "noteOrder": 6391, "time": 0.936722790800044, "position": { "x": 6, @@ -1516,10 +1516,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.01408605700451194, + "time": 0.014086057004511938, "position": { "x": 7, "y": 0 @@ -1539,10 +1539,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.02817211400902388, + "time": 0.028172114009023877, "position": { "x": 7, "y": 0 @@ -1562,10 +1562,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02817211400902388, + "time": 0.028172114009023877, "position": { "x": 3, "y": 0 @@ -1585,10 +1585,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.04225817101353582, + "time": 0.042258171013535815, "position": { "x": 3, "y": 0 @@ -1608,10 +1608,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.04225817101353582, + "time": 0.042258171013535815, "position": { "x": 6, "y": 0 @@ -1631,10 +1631,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.05634422801804776, + "time": 0.056344228018047754, "position": { "x": 6, "y": 0 @@ -1654,10 +1654,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.05634422801804776, + "time": 0.056344228018047754, "position": { "x": 4, "y": 0 @@ -1677,9 +1677,9 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 480, + "noteOrder": 481, "time": 0.0704302850225597, "position": { "x": 4, @@ -1700,10 +1700,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, - "time": 0.15494662704963136, + "time": 0.15494662704963133, "position": { "x": 7, "y": 0 @@ -1722,13 +1722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.16198965555188732, + "noteOrder": 1081, + "time": 0.1584681413007593, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -1740,18 +1740,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.1690326840541433, + "noteOrder": 1081, + "time": 0.1584681413007593, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1768,11 +1768,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1201, - "time": 0.17607571255639923, + "noteOrder": 1105, + "time": 0.16198965555188732, "position": { "x": 3, "y": 0 @@ -1791,13 +1791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, - "time": 0.2112908550676791, + "noteOrder": 1129, + "time": 0.1655111698030153, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1809,18 +1809,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.21833388356993508, + "noteOrder": 1129, + "time": 0.1655111698030153, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -1837,11 +1837,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, - "time": 0.22537691207219104, + "noteOrder": 1153, + "time": 0.16903268405414326, "position": { "x": 7, "y": 0 @@ -1860,13 +1860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.23241994057444704, + "noteOrder": 1177, + "time": 0.17255419830527124, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1883,11 +1883,34 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1177, + "time": 0.17255419830527124, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.239462969076703, + "noteOrder": 1201, + "time": 0.17607571255639926, "position": { "x": 3, "y": 0 @@ -1906,11 +1929,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.24650599757895894, + "noteOrder": 1225, + "time": 0.17959722680752724, "position": { "x": 3, "y": 0 @@ -1924,18 +1947,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1729, - "time": 0.25354902608121493, + "noteOrder": 1225, + "time": 0.17959722680752724, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -1952,13 +1975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.2605920545834709, + "noteOrder": 1442, + "time": 0.21129085506767908, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1970,16 +1993,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.26763508308572687, + "noteOrder": 1466, + "time": 0.21481236931880707, "position": { "x": 7, "y": 0 @@ -1998,11 +2021,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1873, - "time": 0.27467811158798283, + "noteOrder": 1466, + "time": 0.21481236931880707, "position": { "x": 6, "y": 0 @@ -2021,13 +2044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1921, - "time": 0.2817211400902388, + "noteOrder": 1490, + "time": 0.21833388356993508, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2044,13 +2067,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, - "time": 0.28876416859249476, + "noteOrder": 1514, + "time": 0.22185539782106306, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2067,13 +2090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.29580719709475073, + "noteOrder": 1514, + "time": 0.22185539782106306, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2085,18 +2108,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 30, "indexInLine": 1, "isSliding": false, - "noteOrder": 2065, - "time": 0.3028502255970067, + "noteOrder": 1538, + "time": 0.22537691207219102, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2113,13 +2136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.3098932540992627, + "noteOrder": 1586, + "time": 0.232419940574447, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2131,16 +2154,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, + "lineGroupId": 32, "indexInLine": 1, "isSliding": false, - "noteOrder": 2161, - "time": 0.3169362826015186, + "noteOrder": 1634, + "time": 0.23946296907670295, "position": { "x": 3, "y": 0 @@ -2159,13 +2182,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2402, - "time": 0.35215142511279846, + "noteOrder": 1658, + "time": 0.24298448332783096, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2177,18 +2200,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2450, - "time": 0.3591944536150545, + "noteOrder": 1658, + "time": 0.24298448332783096, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2205,13 +2228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, - "time": 0.36623748211731044, + "noteOrder": 1682, + "time": 0.24650599757895894, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2228,13 +2251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, - "time": 0.3732805106195664, + "noteOrder": 1706, + "time": 0.2500275118300869, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2246,18 +2269,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.3803235391218224, + "noteOrder": 1706, + "time": 0.2500275118300869, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2274,13 +2297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2642, - "time": 0.3873665676240784, + "noteOrder": 1730, + "time": 0.25354902608121493, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2297,13 +2320,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2690, - "time": 0.3944095961263343, + "noteOrder": 1778, + "time": 0.2605920545834709, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2315,18 +2338,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, - "time": 0.4014526246285903, + "noteOrder": 1826, + "time": 0.26763508308572687, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2343,13 +2366,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4084956531308463, + "noteOrder": 1874, + "time": 0.27467811158798283, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2361,16 +2384,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2834, - "time": 0.41553868163310226, + "noteOrder": 1922, + "time": 0.2817211400902388, "position": { "x": 3, "y": 0 @@ -2384,18 +2407,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, - "time": 0.4225817101353582, + "noteOrder": 1970, + "time": 0.28876416859249476, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2412,13 +2435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2930, - "time": 0.42962473863761413, + "noteOrder": 2018, + "time": 0.29580719709475073, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2435,13 +2458,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, - "time": 0.43666776713987016, + "noteOrder": 2066, + "time": 0.30285022559700675, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2453,16 +2476,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, - "time": 0.4437107956421261, + "noteOrder": 2114, + "time": 0.30989325409926266, "position": { "x": 3, "y": 0 @@ -2476,18 +2499,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3074, - "time": 0.4507538241443821, + "noteOrder": 2162, + "time": 0.3169362826015186, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2504,13 +2527,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, - "time": 0.45779685264663805, + "noteOrder": 2403, + "time": 0.3521514251127985, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2522,18 +2545,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3939, - "time": 0.5775283371849895, + "noteOrder": 2427, + "time": 0.35567293936392647, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2550,11 +2573,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4035, - "time": 0.5916143941895015, + "noteOrder": 2427, + "time": 0.35567293936392647, "position": { "x": 6, "y": 0 @@ -2573,13 +2596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, - "time": 0.5916143941895015, + "noteOrder": 2451, + "time": 0.3591944536150545, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2596,13 +2619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.6057004511940134, + "noteOrder": 2475, + "time": 0.36271596786618243, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2619,11 +2642,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4131, - "time": 0.6057004511940134, + "noteOrder": 2475, + "time": 0.36271596786618243, "position": { "x": 6, "y": 0 @@ -2637,18 +2660,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 4227, - "time": 0.6197865081985254, + "noteOrder": 2499, + "time": 0.3662374821173104, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2664,14 +2687,1624 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.36975899636843845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2523, + "time": 0.36975899636843845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2547, + "time": 0.3732805106195664, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2571, + "time": 0.3768020248706944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2571, + "time": 0.3768020248706944, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.3803235391218224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2619, + "time": 0.38384505337295033, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2619, + "time": 0.38384505337295033, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.38736656762407834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2667, + "time": 0.3908880818752063, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2667, + "time": 0.3908880818752063, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.3944095961263343, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2739, + "time": 0.40145262462859027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.40849565313084624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2811, + "time": 0.4120171673819742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2811, + "time": 0.4120171673819742, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2835, + "time": 0.41553868163310226, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2859, + "time": 0.4190601958842302, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2859, + "time": 0.4190601958842302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.42258171013535817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4261032243864862, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2907, + "time": 0.4261032243864862, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2931, + "time": 0.42962473863761413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2955, + "time": 0.43314625288874214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2955, + "time": 0.43314625288874214, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.43666776713987016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3003, + "time": 0.4401892813909981, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3003, + "time": 0.4401892813909981, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4437107956421261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3051, + "time": 0.4472323098932541, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3051, + "time": 0.4472323098932541, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.45075382414438203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3123, + "time": 0.457796852646638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3940, + "time": 0.5775283371849895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4036, + "time": 0.5916143941895015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4036, + "time": 0.5916143941895015, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4132, + "time": 0.6057004511940135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4132, + "time": 0.6057004511940135, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4229, + "time": 0.6197865081985253, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4229, + "time": 0.6197865081985253, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6338725652030373, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5286, + "time": 0.7747331352481567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5310, + "time": 0.7782546494992846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5310, + "time": 0.7782546494992846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5334, + "time": 0.7817761637504126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5358, + "time": 0.7852976780015407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5358, + "time": 0.7852976780015407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5382, + "time": 0.7888191922526686, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5406, + "time": 0.7923407065037966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5406, + "time": 0.7923407065037966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5430, + "time": 0.7958622207549246, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5454, + "time": 0.7993837350060526, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5454, + "time": 0.7993837350060526, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5478, + "time": 0.8029052492571805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5502, + "time": 0.8064267635083086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5502, + "time": 0.8064267635083086, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5526, + "time": 0.8099482777594366, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5550, + "time": 0.8134697920105645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5550, + "time": 0.8134697920105645, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5574, + "time": 0.8169913062616925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5598, + "time": 0.8205128205128205, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5598, + "time": 0.8205128205128205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5622, + "time": 0.8240343347639484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5646, + "time": 0.8275558490150765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5646, + "time": 0.8275558490150765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5670, + "time": 0.8310773632662045, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5814, + "time": 0.8522064487729724, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5862, + "time": 0.8592494772752283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5886, + "time": 0.8627709915263563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5886, + "time": 0.8627709915263563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4227, - "time": 0.6197865081985254, + "noteOrder": 5910, + "time": 0.8662925057774843, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2683,18 +4316,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4323, - "time": 0.6338725652030373, + "noteOrder": 5934, + "time": 0.8698140200286122, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2706,18 +4339,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5284, - "time": 0.7747331352481568, + "noteOrder": 5934, + "time": 0.8698140200286122, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2734,13 +4367,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5332, - "time": 0.7817761637504126, + "noteOrder": 5958, + "time": 0.8733355342797403, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2757,13 +4390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5380, - "time": 0.7888191922526686, + "noteOrder": 5982, + "time": 0.8768570485308683, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2775,18 +4408,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5428, - "time": 0.7958622207549246, + "noteOrder": 5982, + "time": 0.8768570485308683, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2803,13 +4436,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5476, - "time": 0.8029052492571807, + "noteOrder": 6007, + "time": 0.8803785627819962, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2826,13 +4459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5524, - "time": 0.8099482777594366, + "noteOrder": 6031, + "time": 0.8839000770331242, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2844,18 +4477,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5572, - "time": 0.8169913062616926, + "noteOrder": 6031, + "time": 0.8839000770331242, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2872,13 +4505,36 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6055, + "time": 0.8874215912842522, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5620, - "time": 0.8240343347639485, + "noteOrder": 6079, + "time": 0.8909431055353801, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2895,13 +4551,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5668, - "time": 0.8310773632662045, + "noteOrder": 6079, + "time": 0.8909431055353801, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2913,18 +4569,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 5812, - "time": 0.8522064487729725, + "noteOrder": 6103, + "time": 0.8944646197865082, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2941,11 +4597,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5860, - "time": 0.8592494772752283, + "noteOrder": 6127, + "time": 0.8979861340376362, "position": { "x": 3, "y": 0 @@ -2959,18 +4615,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5908, - "time": 0.8662925057774843, + "noteOrder": 6127, + "time": 0.8979861340376362, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2987,11 +4643,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5956, - "time": 0.8733355342797403, + "noteOrder": 6151, + "time": 0.9015076482887641, "position": { "x": 3, "y": 0 @@ -3010,11 +4666,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6004, - "time": 0.8803785627819963, + "noteOrder": 6175, + "time": 0.9050291625398921, "position": { "x": 3, "y": 0 @@ -3028,18 +4684,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6052, - "time": 0.8874215912842522, + "noteOrder": 6175, + "time": 0.9050291625398921, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3056,11 +4712,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6100, - "time": 0.8944646197865083, + "noteOrder": 6199, + "time": 0.9085506767910201, "position": { "x": 3, "y": 0 @@ -3079,11 +4735,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6148, - "time": 0.9015076482887642, + "noteOrder": 6223, + "time": 0.9120721910421481, "position": { "x": 3, "y": 0 @@ -3097,18 +4753,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6196, - "time": 0.9085506767910202, + "noteOrder": 6223, + "time": 0.9120721910421481, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3126,10 +4782,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6244, - "time": 0.9155937052932761, + "noteOrder": 6247, + "time": 0.915593705293276, "position": { "x": 3, "y": 0 @@ -3149,9 +4805,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6388, + "noteOrder": 6391, "time": 0.936722790800044, "position": { "x": 5, @@ -3172,9 +4828,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6436, + "noteOrder": 6439, "time": 0.9437658193023, "position": { "x": 7, @@ -3193,12 +4849,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6463, + "time": 0.9472873335534279, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6463, + "time": 0.9472873335534279, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6487, + "time": 0.9508088478045559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6484, - "time": 0.950808847804556, + "noteOrder": 6511, + "time": 0.9543303620556839, "position": { "x": 3, "y": 0 @@ -3216,12 +4941,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6511, + "time": 0.9543303620556839, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6535, + "time": 0.9578518763068118, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6532, - "time": 0.957851876306812, + "noteOrder": 6559, + "time": 0.9613733905579399, "position": { "x": 7, "y": 0 @@ -3239,11 +5010,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6559, + "time": 0.9613733905579399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6580, + "noteOrder": 6583, "time": 0.9648949048090679, "position": { "x": 3, @@ -3264,9 +5058,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6628, + "noteOrder": 6631, "time": 0.9719379333113238, "position": { "x": 3, diff --git a/tracks/Neon Rider/info.json b/tracks/Neon Rider/info.json index 2a6b343e..c0082f4f 100644 --- a/tracks/Neon Rider/info.json +++ b/tracks/Neon Rider/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Neon Rider", - "SongLength": "123.663673", + "SongLength": "113.711020", "SongAuthorName": "RoughSketch", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/New Decade/377_difficulty_1a.json b/tracks/New Decade/377_difficulty_1a.json index 06e71c53..f3e7bace 100644 --- a/tracks/New Decade/377_difficulty_1a.json +++ b/tracks/New Decade/377_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 133, - "time": 0.03594771241830065, + "time": 0.03594771241830066, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 157, - "time": 0.04248366013071895, + "time": 0.042483660130718956, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 181, - "time": 0.049019607843137254, + "time": 0.04901960784313725, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 205, - "time": 0.05555555555555556, + "time": 0.05555555555555555, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 217, + "noteOrder": 218, "time": 0.058823529411764705, "position": { "x": 7, @@ -234,7 +234,7 @@ }, { "noteOrder": 230, - "time": 0.06209150326797386, + "time": 0.06209150326797385, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 254, - "time": 0.06862745098039215, + "time": 0.06862745098039216, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 266, - "time": 0.0718954248366013, + "time": 0.07189542483660132, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 399, - "time": 0.10784313725490197, + "time": 0.10784313725490195, "position": { "x": 5, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 411, - "time": 0.11111111111111112, + "time": 0.1111111111111111, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 507, - "time": 0.1372549019607843, + "noteOrder": 508, + "time": 0.13725490196078433, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 652, - "time": 0.1764705882352941, + "noteOrder": 653, + "time": 0.17647058823529413, "position": { "x": 3, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 689, - "time": 0.18627450980392155, + "time": 0.18627450980392157, "position": { "x": 7, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 701, - "time": 0.1895424836601307, + "time": 0.18954248366013068, "position": { "x": 5, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 725, - "time": 0.19607843137254902, + "time": 0.196078431372549, "position": { "x": 5, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 737, - "time": 0.19934640522875818, + "time": 0.19934640522875816, "position": { "x": 6, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 749, - "time": 0.20261437908496732, + "time": 0.2026143790849673, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 761, - "time": 0.2058823529411765, + "noteOrder": 762, + "time": 0.20588235294117646, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1087, + "noteOrder": 1088, "time": 0.29411764705882354, "position": { "x": 5, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1184, - "time": 0.32026143790849676, + "noteOrder": 1185, + "time": 0.3202614379084967, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1208, + "noteOrder": 1209, "time": 0.32679738562091504, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1232, + "noteOrder": 1233, "time": 0.3333333333333333, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1377, - "time": 0.3725490196078431, + "noteOrder": 1378, + "time": 0.37254901960784315, "position": { "x": 5, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1401, - "time": 0.3790849673202614, + "noteOrder": 1402, + "time": 0.37908496732026137, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1595, - "time": 0.43137254901960786, + "noteOrder": 1596, + "time": 0.4313725490196078, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1619, + "noteOrder": 1620, "time": 0.43790849673202614, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1667, - "time": 0.4509803921568627, + "noteOrder": 1668, + "time": 0.45098039215686275, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1716, + "noteOrder": 1717, "time": 0.46405228758169936, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1764, + "noteOrder": 1765, "time": 0.477124183006536, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1812, + "noteOrder": 1813, "time": 0.49019607843137253, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1836, - "time": 0.49673202614379086, + "noteOrder": 1837, + "time": 0.4967320261437908, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1861, + "noteOrder": 1862, "time": 0.5032679738562091, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1873, + "noteOrder": 1874, "time": 0.5065359477124183, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1885, + "noteOrder": 1886, "time": 0.5098039215686274, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.5130718954248366, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1909, + "noteOrder": 1910, "time": 0.5163398692810457, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.5196078431372549, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1933, + "noteOrder": 1934, "time": 0.5228758169934641, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1945, + "noteOrder": 1946, "time": 0.5261437908496732, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1957, + "noteOrder": 1958, "time": 0.5294117647058824, "position": { "x": 5, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.5326797385620915, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1981, + "noteOrder": 1982, "time": 0.5359477124183006, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1994, + "noteOrder": 1995, "time": 0.5392156862745098, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2006, + "noteOrder": 2007, "time": 0.5424836601307189, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.545751633986928, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.6601307189542484, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2465, + "noteOrder": 2466, "time": 0.6666666666666666, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2489, + "noteOrder": 2490, "time": 0.673202614379085, "position": { "x": 5, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2513, - "time": 0.6797385620915032, + "noteOrder": 2514, + "time": 0.6797385620915033, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2538, "time": 0.6862745098039216, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2561, + "noteOrder": 2563, "time": 0.6928104575163399, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2587, "time": 0.6993464052287581, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2827, + "noteOrder": 2829, "time": 0.7647058823529411, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2851, + "noteOrder": 2853, "time": 0.7712418300653594, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2875, + "noteOrder": 2877, "time": 0.7777777777777778, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2900, - "time": 0.7843137254901961, + "noteOrder": 2901, + "time": 0.784313725490196, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2913, "time": 0.7875816993464053, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2924, + "noteOrder": 2925, "time": 0.7908496732026143, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2937, "time": 0.7941176470588235, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2948, - "time": 0.7973856209150327, + "noteOrder": 2949, + "time": 0.7973856209150326, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2960, - "time": 0.8006535947712418, + "noteOrder": 2962, + "time": 0.8006535947712419, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2972, + "noteOrder": 2974, "time": 0.803921568627451, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2984, + "noteOrder": 2986, "time": 0.8071895424836601, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3020, - "time": 0.8169934640522875, + "noteOrder": 3022, + "time": 0.8169934640522876, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3034, "time": 0.8202614379084967, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3069, - "time": 0.8300653594771241, + "noteOrder": 3070, + "time": 0.8300653594771242, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3081, + "noteOrder": 3082, "time": 0.8333333333333334, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3117, + "noteOrder": 3119, "time": 0.8431372549019608, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3129, - "time": 0.8464052287581698, + "noteOrder": 3131, + "time": 0.8464052287581699, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3165, - "time": 0.8562091503267973, + "noteOrder": 3167, + "time": 0.8562091503267975, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3178, - "time": 0.8594771241830065, + "noteOrder": 3179, + "time": 0.8594771241830066, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3190, - "time": 0.8627450980392157, + "noteOrder": 3191, + "time": 0.8627450980392156, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3202, + "noteOrder": 3203, "time": 0.8660130718954248, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3214, - "time": 0.869281045751634, + "noteOrder": 3215, + "time": 0.8692810457516339, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3226, + "noteOrder": 3228, "time": 0.8725490196078431, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3238, + "noteOrder": 3240, "time": 0.8758169934640523, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 3252, "time": 0.8790849673202614, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3262, - "time": 0.8823529411764705, + "noteOrder": 3264, + "time": 0.8823529411764706, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3274, - "time": 0.8856209150326797, + "noteOrder": 3276, + "time": 0.8856209150326798, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3286, - "time": 0.888888888888889, + "noteOrder": 3288, + "time": 0.8888888888888888, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3300, "time": 0.892156862745098, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3310, + "noteOrder": 3312, "time": 0.8954248366013071, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3323, + "noteOrder": 3324, "time": 0.8986928104575164, "position": { "x": 3, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3335, - "time": 0.9019607843137254, + "noteOrder": 3336, + "time": 0.9019607843137255, "position": { "x": 7, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3347, + "noteOrder": 3348, "time": 0.9052287581699346, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3359, + "noteOrder": 3360, "time": 0.9084967320261438, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3371, - "time": 0.9117647058823529, + "noteOrder": 3373, + "time": 0.911764705882353, "position": { "x": 3, "y": 0 @@ -2236,7 +2236,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, "time": 0.0784313725490196, @@ -2259,10 +2259,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 314, - "time": 0.0849673202614379, + "time": 0.08496732026143791, "position": { "x": 7, "y": 0 @@ -2282,7 +2282,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, "time": 0.09150326797385622, @@ -2305,10 +2305,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 362, - "time": 0.09803921568627451, + "noteOrder": 363, + "time": 0.0980392156862745, "position": { "x": 3, "y": 0 @@ -2328,7 +2328,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 435, "time": 0.11764705882352941, @@ -2351,10 +2351,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 459, - "time": 0.12418300653594772, + "time": 0.1241830065359477, "position": { "x": 7, "y": 0 @@ -2374,7 +2374,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 435, "time": 0.11764705882352941, @@ -2397,10 +2397,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 459, - "time": 0.12418300653594772, + "time": 0.1241830065359477, "position": { "x": 3, "y": 0 @@ -2420,9 +2420,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 483, + "noteOrder": 484, "time": 0.13071895424836602, "position": { "x": 5, @@ -2443,10 +2443,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 532, - "time": 0.1437908496732026, + "time": 0.14379084967320263, "position": { "x": 5, "y": 0 @@ -2466,10 +2466,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 532, - "time": 0.1437908496732026, + "time": 0.14379084967320263, "position": { "x": 5, "y": 0 @@ -2489,7 +2489,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 580, "time": 0.1568627450980392, @@ -2512,7 +2512,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, "time": 0.1568627450980392, @@ -2535,10 +2535,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 628, - "time": 0.1699346405228758, + "noteOrder": 629, + "time": 0.16993464052287582, "position": { "x": 6, "y": 0 @@ -2558,10 +2558,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 628, - "time": 0.1699346405228758, + "noteOrder": 629, + "time": 0.16993464052287582, "position": { "x": 4, "y": 0 @@ -2581,7 +2581,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 677, "time": 0.18300653594771243, @@ -2604,7 +2604,7 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 870, "time": 0.23529411764705882, @@ -2626,11 +2626,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 918, - "time": 0.24836601307189543, + "noteOrder": 895, + "time": 0.24183006535947713, "position": { "x": 7, "y": 0 @@ -2644,18 +2644,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 967, - "time": 0.26143790849673204, + "noteOrder": 895, + "time": 0.24183006535947713, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2672,13 +2672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 991, - "time": 0.2679738562091503, + "noteOrder": 919, + "time": 0.2483660130718954, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2690,18 +2690,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1015, - "time": 0.2745098039215686, + "noteOrder": 919, + "time": 0.2483660130718954, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2718,11 +2718,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1039, - "time": 0.28104575163398693, + "noteOrder": 919, + "time": 0.2483660130718954, "position": { "x": 7, "y": 0 @@ -2741,11 +2741,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1063, - "time": 0.2875816993464052, + "noteOrder": 943, + "time": 0.2549019607843137, "position": { "x": 7, "y": 0 @@ -2759,16 +2759,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1087, - "time": 0.29411764705882354, + "noteOrder": 943, + "time": 0.2549019607843137, "position": { "x": 6, "y": 0 @@ -2782,18 +2782,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1112, - "time": 0.3006535947712418, + "noteOrder": 967, + "time": 0.26143790849673204, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2805,18 +2805,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 3, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1136, - "time": 0.3071895424836601, + "noteOrder": 967, + "time": 0.26143790849673204, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2828,16 +2828,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 4, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1160, - "time": 0.3137254901960784, + "noteOrder": 967, + "time": 0.26143790849673204, "position": { "x": 7, "y": 0 @@ -2856,13 +2856,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 5, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1232, - "time": 0.3333333333333333, + "noteOrder": 979, + "time": 0.2647058823529412, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2879,13 +2879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1257, - "time": 0.3398692810457516, + "noteOrder": 979, + "time": 0.2647058823529412, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2897,18 +2897,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1281, - "time": 0.3464052287581699, + "noteOrder": 991, + "time": 0.2679738562091503, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2925,13 +2925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1305, - "time": 0.3529411764705882, + "noteOrder": 991, + "time": 0.2679738562091503, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2943,16 +2943,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1329, - "time": 0.35947712418300654, + "noteOrder": 991, + "time": 0.2679738562091503, "position": { "x": 7, "y": 0 @@ -2966,18 +2966,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1353, - "time": 0.36601307189542487, + "noteOrder": 1003, + "time": 0.27124183006535946, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2994,11 +2994,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1426, - "time": 0.3856209150326797, + "noteOrder": 1003, + "time": 0.27124183006535946, "position": { "x": 6, "y": 0 @@ -3017,13 +3017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1450, - "time": 0.39215686274509803, + "noteOrder": 1015, + "time": 0.27450980392156865, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3035,18 +3035,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1474, - "time": 0.39869281045751637, + "noteOrder": 1015, + "time": 0.27450980392156865, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3063,11 +3063,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1498, - "time": 0.40522875816993464, + "noteOrder": 1015, + "time": 0.27450980392156865, "position": { "x": 7, "y": 0 @@ -3086,13 +3086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1522, - "time": 0.411764705882353, + "noteOrder": 1027, + "time": 0.2777777777777778, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3104,18 +3104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1546, - "time": 0.4183006535947712, + "noteOrder": 1027, + "time": 0.2777777777777778, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3132,13 +3132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1619, - "time": 0.43790849673202614, + "noteOrder": 1040, + "time": 0.28104575163398693, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3155,13 +3155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1643, - "time": 0.4444444444444445, + "noteOrder": 1040, + "time": 0.28104575163398693, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3173,18 +3173,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 1691, - "time": 0.45751633986928103, + "noteOrder": 1040, + "time": 0.28104575163398693, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3201,11 +3201,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1691, - "time": 0.45751633986928103, + "noteOrder": 1052, + "time": 0.28431372549019607, "position": { "x": 7, "y": 0 @@ -3219,18 +3219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1740, - "time": 0.47058823529411764, + "noteOrder": 1052, + "time": 0.28431372549019607, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3242,18 +3242,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1740, - "time": 0.47058823529411764, + "noteOrder": 1064, + "time": 0.28758169934640526, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3270,13 +3270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1788, - "time": 0.4836601307189542, + "noteOrder": 1064, + "time": 0.28758169934640526, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3293,13 +3293,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1788, - "time": 0.4836601307189542, + "noteOrder": 1064, + "time": 0.28758169934640526, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3316,11 +3316,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1836, - "time": 0.49673202614379086, + "noteOrder": 1088, + "time": 0.29411764705882354, "position": { "x": 6, "y": 0 @@ -3339,13 +3339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2054, - "time": 0.5555555555555556, + "noteOrder": 1112, + "time": 0.3006535947712418, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3357,18 +3357,1950 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, - "isSliding": false, - "noteOrder": 2078, + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1136, + "time": 0.3071895424836601, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1160, + "time": 0.3137254901960784, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1233, + "time": 0.3333333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1257, + "time": 0.33986928104575165, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1269, + "time": 0.3431372549019608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1269, + "time": 0.3431372549019608, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1281, + "time": 0.3464052287581699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1293, + "time": 0.34967320261437906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1293, + "time": 0.34967320261437906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1306, + "time": 0.35294117647058826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1318, + "time": 0.35620915032679734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1318, + "time": 0.35620915032679734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1330, + "time": 0.35947712418300654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1342, + "time": 0.3627450980392157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1342, + "time": 0.3627450980392157, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1354, + "time": 0.36601307189542487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1426, + "time": 0.3856209150326797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1451, + "time": 0.392156862745098, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1463, + "time": 0.3954248366013072, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1463, + "time": 0.3954248366013072, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1475, + "time": 0.3986928104575163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1487, + "time": 0.4019607843137255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1487, + "time": 0.4019607843137255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1499, + "time": 0.4052287581699346, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1511, + "time": 0.4084967320261438, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1511, + "time": 0.4084967320261438, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1523, + "time": 0.4117647058823529, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1535, + "time": 0.4150326797385621, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1535, + "time": 0.4150326797385621, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1547, + "time": 0.4183006535947712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1620, + "time": 0.43790849673202614, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1644, + "time": 0.4444444444444444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1692, + "time": 0.45751633986928103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1692, + "time": 0.45751633986928103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1741, + "time": 0.47058823529411764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1741, + "time": 0.47058823529411764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1789, + "time": 0.48366013071895425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1789, + "time": 0.48366013071895425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1837, + "time": 0.4967320261437908, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2055, + "time": 0.5555555555555556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2079, "time": 0.5620915032679739, "position": { - "x": 4, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2103, + "time": 0.5686274509803921, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2127, + "time": 0.5751633986928105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2176, + "time": 0.5882352941176471, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2200, + "time": 0.5947712418300654, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2176, + "time": 0.5882352941176471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2200, + "time": 0.5947712418300654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2224, + "time": 0.6013071895424836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.6078431372549019, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2248, + "time": 0.6078431372549019, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2273, + "time": 0.6143790849673202, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2273, + "time": 0.6143790849673202, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2273, + "time": 0.6143790849673202, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2297, + "time": 0.6209150326797386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2297, + "time": 0.6209150326797386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2321, + "time": 0.6274509803921569, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2321, + "time": 0.6274509803921569, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2321, + "time": 0.6274509803921569, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2333, + "time": 0.630718954248366, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2333, + "time": 0.630718954248366, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2345, + "time": 0.6339869281045751, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2345, + "time": 0.6339869281045751, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2345, + "time": 0.6339869281045751, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2357, + "time": 0.6372549019607844, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2357, + "time": 0.6372549019607844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2369, + "time": 0.6405228758169934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2369, + "time": 0.6405228758169934, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2369, + "time": 0.6405228758169934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2381, + "time": 0.6437908496732027, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2381, + "time": 0.6437908496732027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2393, + "time": 0.6470588235294118, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2393, + "time": 0.6470588235294118, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2393, + "time": 0.6470588235294118, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2406, + "time": 0.6503267973856208, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2406, + "time": 0.6503267973856208, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2418, + "time": 0.6535947712418301, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2418, + "time": 0.6535947712418301, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2418, + "time": 0.6535947712418301, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2442, + "time": 0.6601307189542484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2466, + "time": 0.6666666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2490, + "time": 0.673202614379085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2514, + "time": 0.6797385620915033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2587, + "time": 0.6993464052287581, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2611, + "time": 0.7058823529411765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2635, + "time": 0.7124183006535947, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -3380,16 +5312,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2102, - "time": 0.5686274509803921, + "noteOrder": 2635, + "time": 0.7124183006535947, "position": { "x": 6, "y": 0 @@ -3408,11 +5340,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 132, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2126, - "time": 0.5751633986928104, + "noteOrder": 2659, + "time": 0.7189542483660131, "position": { "x": 6, "y": 0 @@ -3431,13 +5363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2175, - "time": 0.5882352941176471, + "noteOrder": 2659, + "time": 0.7189542483660131, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3449,18 +5381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 2199, - "time": 0.5947712418300654, + "noteOrder": 2659, + "time": 0.7189542483660131, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3477,11 +5409,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2175, - "time": 0.5882352941176471, + "noteOrder": 2684, + "time": 0.7254901960784313, "position": { "x": 7, "y": 0 @@ -3495,18 +5427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2199, - "time": 0.5947712418300654, + "noteOrder": 2684, + "time": 0.7254901960784313, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3518,18 +5450,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2223, - "time": 0.6013071895424836, + "noteOrder": 2708, + "time": 0.7320261437908497, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3546,13 +5478,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2271, - "time": 0.6143790849673202, + "noteOrder": 2708, + "time": 0.7320261437908497, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3564,18 +5496,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2320, - "time": 0.6274509803921569, + "noteOrder": 2708, + "time": 0.7320261437908497, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3587,18 +5519,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2344, - "time": 0.6339869281045751, + "noteOrder": 2720, + "time": 0.7352941176470589, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3615,13 +5547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2368, - "time": 0.6405228758169935, + "noteOrder": 2720, + "time": 0.7352941176470589, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3633,18 +5565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2392, - "time": 0.6470588235294117, + "noteOrder": 2732, + "time": 0.7385620915032679, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3661,13 +5593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2416, - "time": 0.6535947712418301, + "noteOrder": 2732, + "time": 0.7385620915032679, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3679,18 +5611,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 2441, - "time": 0.6601307189542484, + "noteOrder": 2732, + "time": 0.7385620915032679, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3707,13 +5639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 135, "indexInLine": 2, "isSliding": false, - "noteOrder": 2465, - "time": 0.6666666666666666, + "noteOrder": 2744, + "time": 0.741830065359477, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3730,13 +5662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 135, "indexInLine": 3, "isSliding": false, - "noteOrder": 2489, - "time": 0.673202614379085, + "noteOrder": 2744, + "time": 0.741830065359477, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3753,13 +5685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 135, "indexInLine": 4, "isSliding": false, - "noteOrder": 2513, - "time": 0.6797385620915032, + "noteOrder": 2756, + "time": 0.7450980392156863, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3776,13 +5708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 135, "indexInLine": 5, "isSliding": false, - "noteOrder": 2586, - "time": 0.6993464052287581, + "noteOrder": 2756, + "time": 0.7450980392156863, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3799,11 +5731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2610, - "time": 0.7058823529411764, + "noteOrder": 2756, + "time": 0.7450980392156863, "position": { "x": 7, "y": 0 @@ -3822,11 +5754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2658, - "time": 0.7189542483660131, + "noteOrder": 2768, + "time": 0.7483660130718954, "position": { "x": 7, "y": 0 @@ -3840,18 +5772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2706, - "time": 0.7320261437908497, + "noteOrder": 2768, + "time": 0.7483660130718954, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3868,13 +5800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2730, - "time": 0.738562091503268, + "noteOrder": 2780, + "time": 0.7516339869281046, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3886,18 +5818,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2755, - "time": 0.7450980392156862, + "noteOrder": 2780, + "time": 0.7516339869281046, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3915,10 +5847,33 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2780, + "time": 0.7516339869281046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2779, - "time": 0.7516339869281045, + "noteOrder": 2792, + "time": 0.7549019607843137, "position": { "x": 7, "y": 0 @@ -3936,12 +5891,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2792, + "time": 0.7549019607843137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2804, + "time": 0.7581699346405227, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2804, + "time": 0.7581699346405227, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2803, - "time": 0.7581699346405228, + "noteOrder": 2804, + "time": 0.7581699346405227, "position": { "x": 7, "y": 0 @@ -3961,9 +5985,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2875, + "noteOrder": 2877, "time": 0.7777777777777778, "position": { "x": 4, @@ -3984,10 +6008,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2996, - "time": 0.8104575163398693, + "noteOrder": 2998, + "time": 0.8104575163398692, "position": { "x": 5, "y": 0 @@ -4007,10 +6031,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3045, - "time": 0.823529411764706, + "noteOrder": 3046, + "time": 0.8235294117647058, "position": { "x": 5, "y": 0 @@ -4030,10 +6054,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3045, - "time": 0.823529411764706, + "noteOrder": 3046, + "time": 0.8235294117647058, "position": { "x": 5, "y": 0 @@ -4053,9 +6077,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3093, + "noteOrder": 3095, "time": 0.8366013071895424, "position": { "x": 5, @@ -4076,9 +6100,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3093, + "noteOrder": 3095, "time": 0.8366013071895424, "position": { "x": 6, @@ -4099,9 +6123,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3141, + "noteOrder": 3143, "time": 0.8496732026143791, "position": { "x": 6, @@ -4122,9 +6146,9 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3141, + "noteOrder": 3143, "time": 0.8496732026143791, "position": { "x": 4, @@ -4145,10 +6169,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3190, - "time": 0.8627450980392157, + "noteOrder": 3191, + "time": 0.8627450980392156, "position": { "x": 4, "y": 0 @@ -4168,9 +6192,9 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3383, + "noteOrder": 3385, "time": 0.9150326797385621, "position": { "x": 7, @@ -4191,9 +6215,9 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3407, + "noteOrder": 3409, "time": 0.9215686274509803, "position": { "x": 7, @@ -4214,9 +6238,9 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3431, + "noteOrder": 3433, "time": 0.9281045751633987, "position": { "x": 3, @@ -4237,9 +6261,9 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3455, + "noteOrder": 3457, "time": 0.934640522875817, "position": { "x": 3, diff --git a/tracks/New Decade/377_difficulty_1b.json b/tracks/New Decade/377_difficulty_1b.json index 931d5b0e..8e338ef3 100644 --- a/tracks/New Decade/377_difficulty_1b.json +++ b/tracks/New Decade/377_difficulty_1b.json @@ -94,7 +94,7 @@ }, { "noteOrder": 157, - "time": 0.04248366013071895, + "time": 0.042483660130718956, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 205, - "time": 0.05555555555555556, + "time": 0.05555555555555555, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 217, + "noteOrder": 218, "time": 0.058823529411764705, "position": { "x": 6, @@ -214,7 +214,7 @@ }, { "noteOrder": 254, - "time": 0.06862745098039215, + "time": 0.06862745098039216, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 266, - "time": 0.0718954248366013, + "time": 0.07189542483660132, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 314, - "time": 0.0849673202614379, + "time": 0.08496732026143791, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 350, - "time": 0.09477124183006536, + "noteOrder": 351, + "time": 0.09477124183006534, "position": { "x": 8, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 362, - "time": 0.09803921568627451, + "noteOrder": 363, + "time": 0.0980392156862745, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 399, - "time": 0.10784313725490197, + "time": 0.10784313725490195, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 411, - "time": 0.11111111111111112, + "time": 0.1111111111111111, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 447, - "time": 0.12091503267973855, + "time": 0.12091503267973856, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 459, - "time": 0.12418300653594772, + "time": 0.1241830065359477, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 507, - "time": 0.1372549019607843, + "noteOrder": 508, + "time": 0.13725490196078433, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 652, - "time": 0.1764705882352941, + "noteOrder": 653, + "time": 0.17647058823529413, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1015, - "time": 0.2745098039215686, + "time": 0.27450980392156865, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1039, + "noteOrder": 1040, "time": 0.28104575163398693, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1184, - "time": 0.32026143790849676, + "noteOrder": 1185, + "time": 0.3202614379084967, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1208, + "noteOrder": 1209, "time": 0.32679738562091504, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1232, + "noteOrder": 1233, "time": 0.3333333333333333, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1353, + "noteOrder": 1354, "time": 0.36601307189542487, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1377, - "time": 0.3725490196078431, + "noteOrder": 1378, + "time": 0.37254901960784315, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1401, - "time": 0.3790849673202614, + "noteOrder": 1402, + "time": 0.37908496732026137, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1474, - "time": 0.39869281045751637, + "noteOrder": 1475, + "time": 0.3986928104575163, "position": { "x": 3, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1546, + "noteOrder": 1547, "time": 0.4183006535947712, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1595, - "time": 0.43137254901960786, + "noteOrder": 1596, + "time": 0.4313725490196078, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1619, + "noteOrder": 1620, "time": 0.43790849673202614, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1740, + "noteOrder": 1741, "time": 0.47058823529411764, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1753, "time": 0.4738562091503268, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1764, + "noteOrder": 1765, "time": 0.477124183006536, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1788, - "time": 0.4836601307189542, + "noteOrder": 1789, + "time": 0.48366013071895425, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 1801, "time": 0.4869281045751634, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1812, + "noteOrder": 1813, "time": 0.49019607843137253, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2126, - "time": 0.5751633986928104, + "noteOrder": 2127, + "time": 0.5751633986928105, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2126, - "time": 0.5751633986928104, + "noteOrder": 2127, + "time": 0.5751633986928105, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2151, - "time": 0.5816993464052287, + "noteOrder": 2152, + "time": 0.5816993464052288, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2151, - "time": 0.5816993464052287, + "noteOrder": 2152, + "time": 0.5816993464052288, "position": { "x": 7, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2175, + "noteOrder": 2176, "time": 0.5882352941176471, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2175, + "noteOrder": 2176, "time": 0.5882352941176471, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2247, - "time": 0.607843137254902, + "noteOrder": 2248, + "time": 0.6078431372549019, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2321, "time": 0.6274509803921569, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2344, + "noteOrder": 2345, "time": 0.6339869281045751, "position": { "x": 5, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2368, - "time": 0.6405228758169935, + "noteOrder": 2369, + "time": 0.6405228758169934, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2392, - "time": 0.6470588235294117, + "noteOrder": 2393, + "time": 0.6470588235294118, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.6601307189542484, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2513, - "time": 0.6797385620915032, + "noteOrder": 2514, + "time": 0.6797385620915033, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2538, "time": 0.6862745098039216, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2561, + "noteOrder": 2563, "time": 0.6928104575163399, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2587, "time": 0.6993464052287581, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2706, + "noteOrder": 2708, "time": 0.7320261437908497, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2730, - "time": 0.738562091503268, + "noteOrder": 2732, + "time": 0.7385620915032679, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2755, - "time": 0.7450980392156862, + "noteOrder": 2756, + "time": 0.7450980392156863, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2779, - "time": 0.7516339869281045, + "noteOrder": 2780, + "time": 0.7516339869281046, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2924, + "noteOrder": 2925, "time": 0.7908496732026143, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2996, - "time": 0.8104575163398693, + "noteOrder": 2998, + "time": 0.8104575163398692, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3008, - "time": 0.8137254901960784, + "noteOrder": 3010, + "time": 0.8137254901960783, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3020, - "time": 0.8169934640522875, + "noteOrder": 3022, + "time": 0.8169934640522876, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.823529411764706, + "noteOrder": 3046, + "time": 0.8235294117647058, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3057, + "noteOrder": 3058, "time": 0.826797385620915, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3069, - "time": 0.8300653594771241, + "noteOrder": 3070, + "time": 0.8300653594771242, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3093, + "noteOrder": 3095, "time": 0.8366013071895424, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3105, - "time": 0.8398692810457516, + "noteOrder": 3107, + "time": 0.8398692810457515, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3117, + "noteOrder": 3119, "time": 0.8431372549019608, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3141, + "noteOrder": 3143, "time": 0.8496732026143791, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3153, - "time": 0.8529411764705883, + "noteOrder": 3155, + "time": 0.8529411764705882, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3165, - "time": 0.8562091503267973, + "noteOrder": 3167, + "time": 0.8562091503267975, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3190, - "time": 0.8627450980392157, + "noteOrder": 3191, + "time": 0.8627450980392156, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3202, + "noteOrder": 3203, "time": 0.8660130718954248, "position": { "x": 6, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3214, - "time": 0.869281045751634, + "noteOrder": 3215, + "time": 0.8692810457516339, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3238, + "noteOrder": 3240, "time": 0.8758169934640523, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 3252, "time": 0.8790849673202614, "position": { "x": 2, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3262, - "time": 0.8823529411764705, + "noteOrder": 3264, + "time": 0.8823529411764706, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3286, - "time": 0.888888888888889, + "noteOrder": 3288, + "time": 0.8888888888888888, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3300, "time": 0.892156862745098, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3310, + "noteOrder": 3312, "time": 0.8954248366013071, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3323, + "noteOrder": 3324, "time": 0.8986928104575164, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3335, - "time": 0.9019607843137254, + "noteOrder": 3336, + "time": 0.9019607843137255, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3347, + "noteOrder": 3348, "time": 0.9052287581699346, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3359, + "noteOrder": 3360, "time": 0.9084967320261438, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3371, - "time": 0.9117647058823529, + "noteOrder": 3373, + "time": 0.911764705882353, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3530, "time": 0.954248366013072, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3540, - "time": 0.957516339869281, + "noteOrder": 3542, + "time": 0.9575163398692811, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3552, - "time": 0.9607843137254901, + "noteOrder": 3554, + "time": 0.9607843137254902, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3576, - "time": 0.9673202614379084, + "noteOrder": 3578, + "time": 0.9673202614379085, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3576, - "time": 0.9673202614379084, + "noteOrder": 3578, + "time": 0.9673202614379085, "position": { "x": 7, "y": 0 @@ -2136,7 +2136,7 @@ "lineNodes": [ { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 677, "time": 0.18300653594771243, @@ -2159,10 +2159,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 701, - "time": 0.1895424836601307, + "time": 0.18954248366013068, "position": { "x": 7, "y": 0 @@ -2182,10 +2182,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 701, - "time": 0.1895424836601307, + "time": 0.18954248366013068, "position": { "x": 4, "y": 0 @@ -2205,10 +2205,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 725, - "time": 0.19607843137254902, + "time": 0.196078431372549, "position": { "x": 4, "y": 0 @@ -2228,10 +2228,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 725, - "time": 0.19607843137254902, + "time": 0.196078431372549, "position": { "x": 6, "y": 0 @@ -2251,10 +2251,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 749, - "time": 0.20261437908496732, + "time": 0.2026143790849673, "position": { "x": 6, "y": 0 @@ -2274,10 +2274,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 749, - "time": 0.20261437908496732, + "time": 0.2026143790849673, "position": { "x": 3, "y": 0 @@ -2297,9 +2297,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 773, + "noteOrder": 774, "time": 0.2091503267973856, "position": { "x": 3, @@ -2320,9 +2320,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 773, + "noteOrder": 774, "time": 0.2091503267973856, "position": { "x": 6, @@ -2343,10 +2343,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 797, - "time": 0.21568627450980393, + "noteOrder": 798, + "time": 0.2156862745098039, "position": { "x": 6, "y": 0 @@ -2366,10 +2366,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 797, - "time": 0.21568627450980393, + "noteOrder": 798, + "time": 0.2156862745098039, "position": { "x": 4, "y": 0 @@ -2389,10 +2389,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 822, - "time": 0.22222222222222224, + "time": 0.2222222222222222, "position": { "x": 4, "y": 0 @@ -2412,10 +2412,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 822, - "time": 0.22222222222222224, + "time": 0.2222222222222222, "position": { "x": 6, "y": 0 @@ -2435,7 +2435,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 846, "time": 0.22875816993464052, @@ -2458,7 +2458,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 846, "time": 0.22875816993464052, @@ -2481,7 +2481,7 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 870, "time": 0.23529411764705882, @@ -2504,7 +2504,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 870, "time": 0.23529411764705882, @@ -2526,11 +2526,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 894, - "time": 0.2418300653594771, + "noteOrder": 882, + "time": 0.238562091503268, "position": { "x": 7, "y": 0 @@ -2544,18 +2544,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 918, - "time": 0.24836601307189543, + "noteOrder": 882, + "time": 0.238562091503268, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2572,11 +2572,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 942, - "time": 0.2549019607843137, + "noteOrder": 895, + "time": 0.24183006535947713, "position": { "x": 7, "y": 0 @@ -2595,13 +2595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1063, - "time": 0.2875816993464052, + "noteOrder": 907, + "time": 0.24509803921568626, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2618,13 +2618,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1087, - "time": 0.29411764705882354, + "noteOrder": 907, + "time": 0.24509803921568626, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2636,18 +2636,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1112, - "time": 0.3006535947712418, + "noteOrder": 919, + "time": 0.2483660130718954, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2659,18 +2659,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1136, - "time": 0.3071895424836601, + "noteOrder": 931, + "time": 0.25163398692810457, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2687,13 +2687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1257, - "time": 0.3398692810457516, + "noteOrder": 931, + "time": 0.25163398692810457, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2710,11 +2710,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1305, - "time": 0.3529411764705882, + "noteOrder": 943, + "time": 0.2549019607843137, "position": { "x": 7, "y": 0 @@ -2733,11 +2733,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1329, - "time": 0.35947712418300654, + "noteOrder": 955, + "time": 0.25816993464052285, "position": { "x": 7, "y": 0 @@ -2751,18 +2751,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1353, - "time": 0.36601307189542487, + "noteOrder": 955, + "time": 0.25816993464052285, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2774,18 +2774,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1426, - "time": 0.3856209150326797, + "noteOrder": 1064, + "time": 0.28758169934640526, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2797,16 +2797,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1450, - "time": 0.39215686274509803, + "noteOrder": 1076, + "time": 0.2908496732026144, "position": { "x": 3, "y": 0 @@ -2825,13 +2825,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1498, - "time": 0.40522875816993464, + "noteOrder": 1076, + "time": 0.2908496732026144, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2843,16 +2843,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1522, - "time": 0.411764705882353, + "noteOrder": 1088, + "time": 0.29411764705882354, "position": { "x": 3, "y": 0 @@ -2866,16 +2866,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1546, - "time": 0.4183006535947712, + "noteOrder": 1100, + "time": 0.2973856209150327, "position": { "x": 3, "y": 0 @@ -2889,18 +2889,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 2, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1619, - "time": 0.43790849673202614, + "noteOrder": 1100, + "time": 0.2973856209150327, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2912,18 +2912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1643, - "time": 0.4444444444444445, + "noteOrder": 1112, + "time": 0.3006535947712418, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2935,16 +2935,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1667, - "time": 0.4509803921568627, + "noteOrder": 1124, + "time": 0.30392156862745096, "position": { "x": 3, "y": 0 @@ -2963,13 +2963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1691, - "time": 0.45751633986928103, + "noteOrder": 1124, + "time": 0.30392156862745096, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2981,16 +2981,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1716, - "time": 0.46405228758169936, + "noteOrder": 1136, + "time": 0.3071895424836601, "position": { "x": 3, "y": 0 @@ -3004,16 +3004,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1836, - "time": 0.49673202614379086, + "noteOrder": 1148, + "time": 0.3104575163398693, "position": { "x": 3, "y": 0 @@ -3027,18 +3027,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1861, - "time": 0.5032679738562091, + "noteOrder": 1148, + "time": 0.3104575163398693, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3055,13 +3055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1885, - "time": 0.5098039215686274, + "noteOrder": 1257, + "time": 0.33986928104575165, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3073,18 +3073,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1909, - "time": 0.5163398692810457, + "noteOrder": 1269, + "time": 0.3431372549019608, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3101,13 +3101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1933, - "time": 0.5228758169934641, + "noteOrder": 1269, + "time": 0.3431372549019608, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3119,18 +3119,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 1957, - "time": 0.5294117647058824, + "noteOrder": 1306, + "time": 0.35294117647058826, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3147,13 +3147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1957, - "time": 0.5294117647058824, + "noteOrder": 1318, + "time": 0.35620915032679734, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3165,16 +3165,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1981, - "time": 0.5359477124183006, + "noteOrder": 1318, + "time": 0.35620915032679734, "position": { "x": 6, "y": 0 @@ -3188,18 +3188,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1981, - "time": 0.5359477124183006, + "noteOrder": 1330, + "time": 0.35947712418300654, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3211,18 +3211,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2006, - "time": 0.5424836601307189, + "noteOrder": 1354, + "time": 0.36601307189542487, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3234,18 +3234,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2006, - "time": 0.5424836601307189, + "noteOrder": 1426, + "time": 0.3856209150326797, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3262,13 +3262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 2030, - "time": 0.5490196078431372, + "noteOrder": 1451, + "time": 0.392156862745098, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3280,18 +3280,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2223, - "time": 0.6013071895424836, + "noteOrder": 1463, + "time": 0.3954248366013072, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3303,18 +3303,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2271, - "time": 0.6143790849673202, + "noteOrder": 1463, + "time": 0.3954248366013072, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3331,11 +3331,1046 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2296, - "time": 0.6209150326797386, + "noteOrder": 1499, + "time": 0.4052287581699346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1511, + "time": 0.4084967320261438, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1511, + "time": 0.4084967320261438, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1523, + "time": 0.4117647058823529, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1547, + "time": 0.4183006535947712, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1620, + "time": 0.43790849673202614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1644, + "time": 0.4444444444444444, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1656, + "time": 0.44771241830065356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1656, + "time": 0.44771241830065356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1668, + "time": 0.45098039215686275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1680, + "time": 0.4542483660130719, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1680, + "time": 0.4542483660130719, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1692, + "time": 0.45751633986928103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1704, + "time": 0.46078431372549017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1704, + "time": 0.46078431372549017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1717, + "time": 0.46405228758169936, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1729, + "time": 0.4673202614379085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1729, + "time": 0.4673202614379085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1837, + "time": 0.4967320261437908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1849, + "time": 0.5, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1849, + "time": 0.5, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1862, + "time": 0.5032679738562091, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1874, + "time": 0.5065359477124183, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1874, + "time": 0.5065359477124183, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1886, + "time": 0.5098039215686274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1898, + "time": 0.5130718954248366, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1898, + "time": 0.5130718954248366, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1910, + "time": 0.5163398692810457, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1922, + "time": 0.5196078431372549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1922, + "time": 0.5196078431372549, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1934, + "time": 0.5228758169934641, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1958, + "time": 0.5294117647058824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1958, + "time": 0.5294117647058824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1982, + "time": 0.5359477124183006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1982, + "time": 0.5359477124183006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2007, + "time": 0.5424836601307189, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2007, + "time": 0.5424836601307189, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2031, + "time": 0.5490196078431373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2224, + "time": 0.6013071895424836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2236, + "time": 0.6045751633986928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2236, + "time": 0.6045751633986928, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2273, + "time": 0.6143790849673202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.6176470588235294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2285, + "time": 0.6176470588235294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2297, + "time": 0.6209150326797386, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2321, + "time": 0.6274509803921569, "position": { "x": 7, "y": 0 @@ -3349,16 +4384,246 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2393, + "time": 0.6470588235294118, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2418, + "time": 0.6535947712418301, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2430, + "time": 0.6568627450980392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2430, + "time": 0.6568627450980392, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2466, + "time": 0.6666666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2478, + "time": 0.6699346405228758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2478, + "time": 0.6699346405228758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2490, + "time": 0.673202614379085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2514, + "time": 0.6797385620915033, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2587, + "time": 0.6993464052287581, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 2320, - "time": 0.6274509803921569, + "noteOrder": 2611, + "time": 0.7058823529411765, "position": { "x": 7, "y": 0 @@ -3377,13 +4642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 117, "indexInLine": 2, "isSliding": false, - "noteOrder": 2392, - "time": 0.6470588235294117, + "noteOrder": 2623, + "time": 0.7091503267973857, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3400,13 +4665,36 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2416, - "time": 0.6535947712418301, + "noteOrder": 2623, + "time": 0.7091503267973857, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2635, + "time": 0.7124183006535947, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -3423,13 +4711,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2465, - "time": 0.6666666666666666, + "noteOrder": 2647, + "time": 0.7156862745098038, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3441,18 +4729,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2489, - "time": 0.673202614379085, + "noteOrder": 2647, + "time": 0.7156862745098038, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3469,13 +4757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 2513, - "time": 0.6797385620915032, + "noteOrder": 2659, + "time": 0.7189542483660131, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3487,18 +4775,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 119, "indexInLine": 2, "isSliding": false, - "noteOrder": 2586, - "time": 0.6993464052287581, + "noteOrder": 2671, + "time": 0.7222222222222222, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3510,18 +4798,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2610, - "time": 0.7058823529411764, + "noteOrder": 2671, + "time": 0.7222222222222222, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3538,11 +4826,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2634, - "time": 0.7124183006535948, + "noteOrder": 2684, + "time": 0.7254901960784313, "position": { "x": 7, "y": 0 @@ -3561,11 +4849,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2658, - "time": 0.7189542483660131, + "noteOrder": 2696, + "time": 0.7287581699346405, "position": { "x": 7, "y": 0 @@ -3579,18 +4867,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2682, - "time": 0.7254901960784313, + "noteOrder": 2696, + "time": 0.7287581699346405, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2804, + "time": 0.7581699346405227, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3608,10 +4919,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2803, - "time": 0.7581699346405228, + "noteOrder": 2817, + "time": 0.7614379084967321, "position": { "x": 3, "y": 0 @@ -3629,11 +4940,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2817, + "time": 0.7614379084967321, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2827, + "noteOrder": 2829, "time": 0.7647058823529411, "position": { "x": 3, @@ -3652,11 +4986,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2841, + "time": 0.7679738562091503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2841, + "time": 0.7679738562091503, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2851, + "noteOrder": 2853, "time": 0.7712418300653594, "position": { "x": 3, @@ -3675,11 +5055,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2865, + "time": 0.7745098039215687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2865, + "time": 0.7745098039215687, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2875, + "noteOrder": 2877, "time": 0.7777777777777778, "position": { "x": 3, @@ -3698,12 +5124,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2889, + "time": 0.7810457516339869, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2889, + "time": 0.7810457516339869, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2900, - "time": 0.7843137254901961, + "noteOrder": 2901, + "time": 0.784313725490196, "position": { "x": 3, "y": 0 @@ -3723,9 +5195,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2924, + "noteOrder": 2925, "time": 0.7908496732026143, "position": { "x": 3, @@ -3746,9 +5218,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3480, + "noteOrder": 3481, "time": 0.9411764705882353, "position": { "x": 7, @@ -3769,9 +5241,9 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3504, + "noteOrder": 3506, "time": 0.9477124183006536, "position": { "x": 7, @@ -3792,9 +5264,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3504, + "noteOrder": 3506, "time": 0.9477124183006536, "position": { "x": 3, @@ -3815,9 +5287,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3528, + "noteOrder": 3530, "time": 0.954248366013072, "position": { "x": 3, diff --git a/tracks/New Decade/info.json b/tracks/New Decade/info.json index 658b93b5..cf4ab205 100644 --- a/tracks/New Decade/info.json +++ b/tracks/New Decade/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "New Decade", - "SongLength": "102.426122", + "SongLength": "92.473469", "SongAuthorName": "Sota F.", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/New Solution/273_difficulty_1a.json b/tracks/New Solution/273_difficulty_1a.json index 2d91f039..af33a976 100644 --- a/tracks/New Solution/273_difficulty_1a.json +++ b/tracks/New Solution/273_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.020025031289111393, + "time": 0.02002503128911139, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 96, - "time": 0.020025031289111393, + "time": 0.02002503128911139, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 192, - "time": 0.040050062578222786, + "time": 0.04005006257822278, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 216, - "time": 0.04505632040050063, + "time": 0.04505632040050062, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.05006257822277847, "position": { "x": 6, @@ -214,7 +214,7 @@ }, { "noteOrder": 349, - "time": 0.0725907384230288, + "time": 0.07259073842302878, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 385, - "time": 0.08010012515644557, + "time": 0.08010012515644556, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 433, - "time": 0.09011264080100126, + "time": 0.09011264080100125, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 457, - "time": 0.0951188986232791, + "time": 0.09511889862327909, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 505, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 505, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 541, - "time": 0.11264080100125157, + "time": 0.11264080100125155, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 637, - "time": 0.13266583229036297, + "time": 0.13266583229036294, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 697, - "time": 0.1451814768460576, + "noteOrder": 698, + "time": 0.14518147684605756, "position": { "x": 5, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 746, "time": 0.15519399249061328, "position": { "x": 5, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.16520650813516896, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.1702127659574468, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17521902377972468, + "noteOrder": 842, + "time": 0.17521902377972465, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17521902377972468, + "noteOrder": 842, + "time": 0.17521902377972465, "position": { "x": 4, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1034, - "time": 0.21526908635794745, + "time": 0.21526908635794742, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1082, - "time": 0.22528160200250313, + "time": 0.2252816020025031, "position": { "x": 5, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1130, - "time": 0.23529411764705885, + "time": 0.23529411764705882, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1178, - "time": 0.24530663329161453, + "noteOrder": 1179, + "time": 0.2453066332916145, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.2503128911138924, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.25531914893617025, + "noteOrder": 1227, + "time": 0.2553191489361702, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.25531914893617025, + "noteOrder": 1227, + "time": 0.2553191489361702, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.2753441802252816, + "noteOrder": 1323, + "time": 0.27534418022528157, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.28035043804755944, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.28035043804755944, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.2853566958698373, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.2853566958698373, "position": { "x": 7, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.2903629536921152, + "noteOrder": 1395, + "time": 0.2903629536921151, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1406, - "time": 0.2928660826032541, + "noteOrder": 1407, + "time": 0.29286608260325403, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.295369211514393, "position": { "x": 6, @@ -974,7 +974,7 @@ }, { "noteOrder": 1515, - "time": 0.3153942428035044, + "time": 0.31539424280350437, "position": { "x": 4, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1515, - "time": 0.3153942428035044, + "time": 0.31539424280350437, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1611, + "noteOrder": 1612, "time": 0.3354192740926158, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1611, + "noteOrder": 1612, "time": 0.3354192740926158, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1707, + "noteOrder": 1708, "time": 0.35544430538172717, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1719, + "noteOrder": 1720, "time": 0.3579474342928661, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1803, + "noteOrder": 1804, "time": 0.37546933667083854, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.39549436795994997, + "noteOrder": 1900, + "time": 0.3954943679599499, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.39549436795994997, + "noteOrder": 1900, + "time": 0.3954943679599499, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.41551939924906134, + "noteOrder": 1996, + "time": 0.4155193992490613, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.41551939924906134, + "noteOrder": 1996, + "time": 0.4155193992490613, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2092, - "time": 0.43554443053817277, + "noteOrder": 2093, + "time": 0.43554443053817266, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2116, + "noteOrder": 2117, "time": 0.4405506883604505, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2116, + "noteOrder": 2117, "time": 0.4405506883604505, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2140, - "time": 0.4455569461827284, + "noteOrder": 2141, + "time": 0.44555694618272834, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2140, - "time": 0.4455569461827284, + "noteOrder": 2141, + "time": 0.44555694618272834, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.46057571964956195, + "noteOrder": 2213, + "time": 0.4605757196495619, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2224, - "time": 0.46307884856070086, + "noteOrder": 2225, + "time": 0.4630788485607009, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.4655819774718398, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2248, + "noteOrder": 2249, "time": 0.46808510638297873, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.4705882352941177, + "noteOrder": 2261, + "time": 0.47058823529411764, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2272, + "noteOrder": 2273, "time": 0.4730913642052566, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.4856070087609512, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.4956195244055069, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.5156445556946183, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5406758448060075, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5406758448060075, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2610, "time": 0.5431789737171464, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2610, "time": 0.5431789737171464, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.5456821026282854, + "noteOrder": 2622, + "time": 0.5456821026282853, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.5506883604505632, + "noteOrder": 2646, + "time": 0.5506883604505631, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.5506883604505632, + "noteOrder": 2646, + "time": 0.5506883604505631, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.5531914893617021, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.5531914893617021, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2670, "time": 0.5556946182728411, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2717, - "time": 0.5657071339173968, + "noteOrder": 2718, + "time": 0.5657071339173967, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5757196495619524, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5957446808510639, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.6007509386733417, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.6007509386733417, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2897, - "time": 0.6032540675844805, + "noteOrder": 2898, + "time": 0.6032540675844806, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2897, - "time": 0.6032540675844805, + "noteOrder": 2898, + "time": 0.6032540675844806, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2909, - "time": 0.6057571964956197, + "noteOrder": 2910, + "time": 0.6057571964956195, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6107634543178974, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6107634543178974, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2945, + "noteOrder": 2946, "time": 0.6132665832290363, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2945, + "noteOrder": 2946, "time": 0.6132665832290363, "position": { "x": 6, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2957, - "time": 0.6157697121401752, + "noteOrder": 2958, + "time": 0.6157697121401753, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3103, "time": 0.6458072590738423, "position": { "x": 5, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.6508135168961201, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.655819774718398, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3198, - "time": 0.6658322903629538, + "noteOrder": 3199, + "time": 0.6658322903629537, "position": { "x": 2, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3246, + "noteOrder": 3247, "time": 0.6758448060075094, "position": { "x": 8, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3294, + "noteOrder": 3295, "time": 0.685857321652065, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3318, + "noteOrder": 3319, "time": 0.690863579474343, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3342, + "noteOrder": 3343, "time": 0.6958698372966208, "position": { "x": 5, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3390, - "time": 0.7058823529411765, + "noteOrder": 3391, + "time": 0.7058823529411764, "position": { "x": 8, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3438, + "noteOrder": 3439, "time": 0.7158948685857321, "position": { "x": 2, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.7359198998748436, + "noteOrder": 3536, + "time": 0.7359198998748435, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.7359198998748436, + "noteOrder": 3536, + "time": 0.7359198998748435, "position": { "x": 4, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3558, + "noteOrder": 3560, "time": 0.7409261576971213, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3570, + "noteOrder": 3572, "time": 0.7434292866082602, "position": { "x": 5, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.7459324155193993, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.7609511889862328, + "noteOrder": 3656, + "time": 0.7609511889862327, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.7609511889862328, + "noteOrder": 3656, + "time": 0.7609511889862327, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3666, + "noteOrder": 3668, "time": 0.7634543178973717, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3702, - "time": 0.7709637046307886, + "noteOrder": 3704, + "time": 0.7709637046307884, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3728, "time": 0.7759699624530663, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3751, + "noteOrder": 3752, "time": 0.7809762202753442, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3775, + "noteOrder": 3776, "time": 0.785982478097622, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3799, - "time": 0.7909887359198999, + "noteOrder": 3800, + "time": 0.7909887359198998, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3823, - "time": 0.7959949937421777, + "noteOrder": 3824, + "time": 0.7959949937421776, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3967, - "time": 0.8260325406758449, + "noteOrder": 3969, + "time": 0.8260325406758448, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.8310387984981227, + "noteOrder": 3993, + "time": 0.8310387984981226, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8360450563204005, + "noteOrder": 4017, + "time": 0.8360450563204004, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4039, - "time": 0.8410513141426784, + "noteOrder": 4041, + "time": 0.8410513141426783, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4065, "time": 0.8460575719649561, "position": { "x": 4, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.851063829787234, + "noteOrder": 4089, + "time": 0.8510638297872339, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8560700876095119, "position": { "x": 7, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4352, - "time": 0.9061326658322905, + "noteOrder": 4353, + "time": 0.9061326658322902, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4376, - "time": 0.9111389236545683, + "noteOrder": 4378, + "time": 0.9111389236545682, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4400, + "noteOrder": 4402, "time": 0.916145181476846, "position": { "x": 6, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4520, - "time": 0.9411764705882354, + "noteOrder": 4522, + "time": 0.9411764705882353, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4532, - "time": 0.9436795994993743, + "noteOrder": 4534, + "time": 0.9436795994993742, "position": { "x": 3, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4544, + "noteOrder": 4546, "time": 0.9461827284105132, "position": { "x": 6, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4556, - "time": 0.948685857321652, + "noteOrder": 4558, + "time": 0.9486858573216521, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4568, - "time": 0.9511889862327909, + "noteOrder": 4570, + "time": 0.951188986232791, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4580, + "noteOrder": 4582, "time": 0.9536921151439299, "position": { "x": 6, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4592, + "noteOrder": 4594, "time": 0.9561952440550688, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.9586983729662077, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4688, - "time": 0.9762202753441803, + "noteOrder": 4690, + "time": 0.9762202753441802, "position": { "x": 5, "y": 0 @@ -2796,7 +2796,7 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.030037546933667083, @@ -2819,7 +2819,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.03504380475594493, @@ -2842,7 +2842,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, "time": 0.030037546933667083, @@ -2865,7 +2865,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.03504380475594493, @@ -2888,10 +2888,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 252, - "time": 0.0525657071339174, + "noteOrder": 253, + "time": 0.052565707133917394, "position": { "x": 3, "y": 0 @@ -2911,7 +2911,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.060075093867334166, @@ -2934,9 +2934,9 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 264, + "noteOrder": 265, "time": 0.055068836045056316, "position": { "x": 7, @@ -2957,7 +2957,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.060075093867334166, @@ -2980,7 +2980,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 361, "time": 0.07509386733416772, @@ -3003,7 +3003,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.0851063829787234, @@ -3026,10 +3026,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 553, - "time": 0.11514392991239049, + "time": 0.11514392991239047, "position": { "x": 4, "y": 0 @@ -3049,7 +3049,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, "time": 0.1251564455569462, @@ -3072,7 +3072,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.14017521902377972, @@ -3095,10 +3095,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 697, - "time": 0.1451814768460576, + "noteOrder": 698, + "time": 0.14518147684605756, "position": { "x": 7, "y": 0 @@ -3118,9 +3118,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, + "noteOrder": 722, "time": 0.15018773466833543, "position": { "x": 3, @@ -3141,9 +3141,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 745, + "noteOrder": 746, "time": 0.15519399249061328, "position": { "x": 3, @@ -3164,10 +3164,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 769, - "time": 0.16020025031289115, + "noteOrder": 770, + "time": 0.16020025031289112, "position": { "x": 7, "y": 0 @@ -3187,9 +3187,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.1702127659574468, "position": { "x": 7, @@ -3210,10 +3210,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 866, - "time": 0.18022528160200252, + "time": 0.1802252816020025, "position": { "x": 6, "y": 0 @@ -3233,7 +3233,7 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 890, "time": 0.18523153942428033, @@ -3256,10 +3256,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, - "time": 0.1902377972465582, + "time": 0.19023779724655818, "position": { "x": 4, "y": 0 @@ -3279,7 +3279,7 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 938, "time": 0.19524405506883605, @@ -3302,7 +3302,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, "time": 0.2002503128911139, @@ -3324,13 +3324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 986, - "time": 0.20525657071339173, + "noteOrder": 974, + "time": 0.2027534418022528, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3342,18 +3342,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1010, - "time": 0.2102628285356696, + "noteOrder": 974, + "time": 0.2027534418022528, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3370,11 +3370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1058, - "time": 0.22027534418022526, + "noteOrder": 986, + "time": 0.20525657071339173, "position": { "x": 3, "y": 0 @@ -3393,11 +3393,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1082, - "time": 0.22528160200250313, + "noteOrder": 998, + "time": 0.20775969962453064, "position": { "x": 3, "y": 0 @@ -3416,13 +3416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1106, - "time": 0.23028785982478098, + "noteOrder": 998, + "time": 0.20775969962453064, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3434,16 +3434,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1130, - "time": 0.23529411764705885, + "noteOrder": 1010, + "time": 0.21026282853566958, "position": { "x": 7, "y": 0 @@ -3462,13 +3462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1154, - "time": 0.24030037546933666, + "noteOrder": 1022, + "time": 0.21276595744680848, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3480,18 +3480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1202, - "time": 0.2503128911138924, + "noteOrder": 1022, + "time": 0.21276595744680848, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3503,18 +3503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1250, - "time": 0.26032540675844806, + "noteOrder": 1034, + "time": 0.21526908635794742, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3531,13 +3531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1274, - "time": 0.26533166458072593, + "noteOrder": 1034, + "time": 0.21526908635794742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3549,18 +3549,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, - "time": 0.27033792240300375, + "noteOrder": 1058, + "time": 0.22027534418022526, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3572,16 +3572,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1430, - "time": 0.29787234042553196, + "noteOrder": 1082, + "time": 0.2252816020025031, "position": { "x": 3, "y": 0 @@ -3600,13 +3600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 1491, - "time": 0.31038798498122655, + "noteOrder": 1106, + "time": 0.23028785982478095, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3618,16 +3618,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1443, - "time": 0.30037546933667086, + "noteOrder": 1130, + "time": 0.23529411764705882, "position": { "x": 7, "y": 0 @@ -3646,13 +3646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 1491, - "time": 0.31038798498122655, + "noteOrder": 1155, + "time": 0.24030037546933666, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3664,16 +3664,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1527, - "time": 0.31789737171464333, + "noteOrder": 1203, + "time": 0.2503128911138924, "position": { "x": 3, "y": 0 @@ -3692,13 +3692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 1587, - "time": 0.3304130162703379, + "noteOrder": 1251, + "time": 0.26032540675844806, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3710,16 +3710,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1527, - "time": 0.31789737171464333, + "noteOrder": 1263, + "time": 0.26282853566958697, "position": { "x": 7, "y": 0 @@ -3738,13 +3738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1587, - "time": 0.3304130162703379, + "noteOrder": 1263, + "time": 0.26282853566958697, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3761,11 +3761,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.3404255319148936, + "noteOrder": 1275, + "time": 0.2653316645807259, "position": { "x": 3, "y": 0 @@ -3784,13 +3784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1659, - "time": 0.3454317897371715, + "noteOrder": 1287, + "time": 0.26783479349186484, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3802,18 +3802,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1683, - "time": 0.35043804755944935, + "noteOrder": 1287, + "time": 0.26783479349186484, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3830,11 +3830,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.36045056320400504, + "noteOrder": 1299, + "time": 0.27033792240300375, "position": { "x": 7, "y": 0 @@ -3853,13 +3853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1755, - "time": 0.36545682102628285, + "noteOrder": 1311, + "time": 0.27284105131414266, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3871,18 +3871,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1779, - "time": 0.37046307884856067, + "noteOrder": 1311, + "time": 0.27284105131414266, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3899,13 +3899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1827, - "time": 0.3804755944931164, + "noteOrder": 1323, + "time": 0.27534418022528157, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3917,18 +3917,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1875, - "time": 0.3904881101376721, + "noteOrder": 1323, + "time": 0.27534418022528157, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3940,18 +3940,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3804755944931164, + "noteOrder": 1431, + "time": 0.29787234042553196, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3963,18 +3963,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.3904881101376721, + "noteOrder": 1491, + "time": 0.31038798498122655, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3986,18 +3986,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1911, - "time": 0.3979974968710889, + "noteOrder": 1443, + "time": 0.30037546933667086, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4014,13 +4014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.41051314142678347, + "noteOrder": 1491, + "time": 0.31038798498122655, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4037,13 +4037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1911, - "time": 0.3979974968710889, + "noteOrder": 1527, + "time": 0.31789737171464333, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4060,13 +4060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.41051314142678347, + "noteOrder": 1587, + "time": 0.3304130162703379, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4083,13 +4083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2020, - "time": 0.4205256570713392, + "noteOrder": 1527, + "time": 0.31789737171464333, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4106,13 +4106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2044, - "time": 0.425531914893617, + "noteOrder": 1587, + "time": 0.3304130162703379, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4129,13 +4129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2044, - "time": 0.425531914893617, + "noteOrder": 1636, + "time": 0.3404255319148936, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4152,11 +4152,34 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2068, - "time": 0.4305381727158949, + "noteOrder": 1648, + "time": 0.3429286608260325, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1648, + "time": 0.3429286608260325, "position": { "x": 4, "y": 0 @@ -4175,11 +4198,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2068, - "time": 0.4305381727158949, + "noteOrder": 1660, + "time": 0.3454317897371715, "position": { "x": 7, "y": 0 @@ -4198,11 +4221,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2092, - "time": 0.43554443053817277, + "noteOrder": 1672, + "time": 0.3479349186483104, "position": { "x": 7, "y": 0 @@ -4221,13 +4244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.45056320400500627, + "noteOrder": 1672, + "time": 0.3479349186483104, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4239,18 +4262,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2188, - "time": 0.45556946182728414, + "noteOrder": 1684, + "time": 0.3504380475594493, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4267,13 +4290,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2164, - "time": 0.45056320400500627, + "noteOrder": 1696, + "time": 0.3529411764705882, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4285,18 +4308,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2188, - "time": 0.45556946182728414, + "noteOrder": 1696, + "time": 0.3529411764705882, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4308,16 +4331,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.47559449311639546, + "noteOrder": 1732, + "time": 0.360450563204005, "position": { "x": 7, "y": 0 @@ -4336,13 +4359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, - "time": 0.4806007509386733, + "noteOrder": 1744, + "time": 0.36295369211514394, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4354,18 +4377,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2356, - "time": 0.49061326658322907, + "noteOrder": 1744, + "time": 0.36295369211514394, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4382,11 +4405,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.5006257822277848, + "noteOrder": 1756, + "time": 0.36545682102628285, "position": { "x": 3, "y": 0 @@ -4405,11 +4428,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2428, - "time": 0.5056320400500626, + "noteOrder": 1768, + "time": 0.36795994993742176, "position": { "x": 3, "y": 0 @@ -4423,18 +4446,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2452, - "time": 0.5106382978723405, + "noteOrder": 1768, + "time": 0.36795994993742176, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4451,11 +4474,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.5206508135168961, + "noteOrder": 1780, + "time": 0.37046307884856067, "position": { "x": 7, "y": 0 @@ -4474,11 +4497,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2512, - "time": 0.523153942428035, + "noteOrder": 1792, + "time": 0.37296620775969963, "position": { "x": 7, "y": 0 @@ -4497,13 +4520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 2, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2524, - "time": 0.5256570713391739, + "noteOrder": 1792, + "time": 0.37296620775969963, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4520,13 +4543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 3, + "lineGroupId": 91, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2536, - "time": 0.528160200250313, + "noteOrder": 1804, + "time": 0.37546933667083854, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4543,11 +4566,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 4, + "lineGroupId": 91, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2548, - "time": 0.5306633291614519, + "noteOrder": 1804, + "time": 0.37546933667083854, "position": { "x": 7, "y": 0 @@ -4566,13 +4589,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 5, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2560, - "time": 0.5331664580725908, + "noteOrder": 1828, + "time": 0.38047559449311635, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4584,18 +4607,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 6, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2572, - "time": 0.5356695869837297, + "noteOrder": 1876, + "time": 0.3904881101376721, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4607,18 +4630,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 7, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2584, - "time": 0.5381727158948686, + "noteOrder": 1828, + "time": 0.38047559449311635, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4635,13 +4658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.5206508135168961, + "noteOrder": 1876, + "time": 0.3904881101376721, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4653,18 +4676,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 2512, - "time": 0.523153942428035, + "noteOrder": 1912, + "time": 0.3979974968710888, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4676,18 +4699,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 98, "indexInLine": 2, "isSliding": false, - "noteOrder": 2524, - "time": 0.5256570713391739, + "noteOrder": 1972, + "time": 0.41051314142678347, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4699,18 +4722,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 3, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2536, - "time": 0.528160200250313, + "noteOrder": 1912, + "time": 0.3979974968710888, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4727,13 +4750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 4, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2548, - "time": 0.5306633291614519, + "noteOrder": 1972, + "time": 0.41051314142678347, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4750,11 +4773,2541 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 5, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2560, - "time": 0.5331664580725908, + "noteOrder": 2020, + "time": 0.42052565707133915, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.42553191489361697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.42553191489361697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2068, + "time": 0.43053817271589484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.43053817271589484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2093, + "time": 0.43554443053817266, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2165, + "time": 0.4505632040050062, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2189, + "time": 0.4555694618272841, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2165, + "time": 0.4505632040050062, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2189, + "time": 0.4555694618272841, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2285, + "time": 0.4755944931163955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2297, + "time": 0.4780976220275344, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2297, + "time": 0.4780976220275344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2309, + "time": 0.4806007509386733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2321, + "time": 0.4831038798498123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2321, + "time": 0.4831038798498123, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2333, + "time": 0.4856070087609512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2333, + "time": 0.4856070087609512, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.490613266583229, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2369, + "time": 0.493116395494368, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.493116395494368, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.4956195244055069, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2381, + "time": 0.4956195244055069, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.5006257822277848, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2417, + "time": 0.5031289111389237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2417, + "time": 0.5031289111389237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2429, + "time": 0.5056320400500626, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2429, + "time": 0.5056320400500626, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2429, + "time": 0.5056320400500626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2441, + "time": 0.5081351689612015, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2441, + "time": 0.5081351689612015, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2453, + "time": 0.5106382978723404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2453, + "time": 0.5106382978723404, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.5106382978723404, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.5131414267834793, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2465, + "time": 0.5131414267834793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.5156445556946183, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.5156445556946183, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.5206508135168961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2513, + "time": 0.523153942428035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2525, + "time": 0.5256570713391739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2538, + "time": 0.5281602002503129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2550, + "time": 0.5306633291614518, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2562, + "time": 0.5331664580725908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2574, + "time": 0.5356695869837297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2586, + "time": 0.5381727158948686, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.5206508135168961, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2513, + "time": 0.523153942428035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2525, + "time": 0.5256570713391739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2538, + "time": 0.5281602002503129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2550, + "time": 0.5306633291614518, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2562, + "time": 0.5331664580725908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2574, + "time": 0.5356695869837297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2586, + "time": 0.5381727158948686, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2694, + "time": 0.5607008760951189, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2706, + "time": 0.5632040050062578, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2706, + "time": 0.5632040050062578, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2718, + "time": 0.5657071339173967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2718, + "time": 0.5657071339173967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2742, + "time": 0.5707133917396746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2754, + "time": 0.5732165206508135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2754, + "time": 0.5732165206508135, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2766, + "time": 0.5757196495619524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2766, + "time": 0.5757196495619524, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5807259073842302, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2802, + "time": 0.5832290362953692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2802, + "time": 0.5832290362953692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2814, + "time": 0.5857321652065081, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2814, + "time": 0.5857321652065081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2814, + "time": 0.5857321652065081, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2826, + "time": 0.5882352941176471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2826, + "time": 0.5882352941176471, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2850, + "time": 0.5932415519399249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2850, + "time": 0.5932415519399249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5957446808510639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5957446808510639, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.6207759699624531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2995, + "time": 0.623279098873592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3007, + "time": 0.6257822277847309, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3019, + "time": 0.6282853566958698, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3031, + "time": 0.6307884856070087, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3043, + "time": 0.6332916145181477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3055, + "time": 0.6357947434292867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3067, + "time": 0.6382978723404256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.6207759699624531, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2995, + "time": 0.623279098873592, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3007, + "time": 0.6257822277847309, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3019, + "time": 0.6282853566958698, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3031, + "time": 0.6307884856070087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3043, + "time": 0.6332916145181477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3055, + "time": 0.6357947434292867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3067, + "time": 0.6382978723404256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3079, + "time": 0.6408010012515645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6608260325406758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6608260325406758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6658322903629537, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6708385481852316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6758448060075094, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6808510638297872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3367, + "time": 0.7008760951188986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.7008760951188986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3391, + "time": 0.7058823529411764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.7108886107634543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3439, + "time": 0.7158948685857321, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3464, + "time": 0.72090112640801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3512, + "time": 0.7309136420525657, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3488, + "time": 0.7259073842302879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3512, + "time": 0.7309136420525657, "position": { "x": 3, "y": 0 @@ -4773,11 +7326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 6, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2572, - "time": 0.5356695869837297, + "noteOrder": 3596, + "time": 0.7484355444305382, "position": { "x": 3, "y": 0 @@ -4796,11 +7349,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 7, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2584, - "time": 0.5381727158948686, + "noteOrder": 3632, + "time": 0.7559449311639549, "position": { "x": 3, "y": 0 @@ -4819,11 +7372,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2693, - "time": 0.5607008760951189, + "noteOrder": 3608, + "time": 0.7509386733416771, "position": { "x": 7, "y": 0 @@ -4842,11 +7395,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2741, - "time": 0.5707133917396746, + "noteOrder": 3632, + "time": 0.7559449311639549, "position": { "x": 7, "y": 0 @@ -4860,18 +7413,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2789, - "time": 0.5807259073842304, + "noteOrder": 3668, + "time": 0.7634543178973717, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4883,18 +7436,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2813, - "time": 0.5857321652065082, + "noteOrder": 3728, + "time": 0.7759699624530663, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4911,11 +7464,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2837, - "time": 0.590738423028786, + "noteOrder": 3848, + "time": 0.8010012515644556, "position": { "x": 7, "y": 0 @@ -4934,11 +7487,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2981, - "time": 0.6207759699624531, + "noteOrder": 3860, + "time": 0.8035043804755945, "position": { "x": 7, "y": 0 @@ -4957,13 +7510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2993, - "time": 0.623279098873592, + "noteOrder": 3860, + "time": 0.8035043804755945, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4980,13 +7533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3005, - "time": 0.6257822277847309, + "noteOrder": 3872, + "time": 0.8060075093867334, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5003,13 +7556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 3, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3017, - "time": 0.6282853566958698, + "noteOrder": 3872, + "time": 0.8060075093867334, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5026,11 +7579,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 4, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3029, - "time": 0.6307884856070088, + "noteOrder": 3872, + "time": 0.8060075093867334, "position": { "x": 7, "y": 0 @@ -5044,16 +7597,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 5, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3041, - "time": 0.6332916145181477, + "noteOrder": 3884, + "time": 0.8085106382978723, "position": { "x": 7, "y": 0 @@ -5067,18 +7620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 6, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3053, - "time": 0.6357947434292867, + "noteOrder": 3884, + "time": 0.8085106382978723, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5090,18 +7643,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 7, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3065, - "time": 0.6382978723404255, + "noteOrder": 3896, + "time": 0.8110137672090112, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5113,18 +7666,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2981, - "time": 0.6207759699624531, + "noteOrder": 3896, + "time": 0.8110137672090112, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5141,13 +7694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 1, "isSliding": false, - "noteOrder": 2993, - "time": 0.623279098873592, + "noteOrder": 3896, + "time": 0.8110137672090112, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5159,18 +7712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 2, "isSliding": false, - "noteOrder": 3005, - "time": 0.6257822277847309, + "noteOrder": 3908, + "time": 0.8135168961201501, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5182,18 +7735,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 3, "isSliding": false, - "noteOrder": 3017, - "time": 0.6282853566958698, + "noteOrder": 3908, + "time": 0.8135168961201501, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5205,18 +7758,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 4, "isSliding": false, - "noteOrder": 3029, - "time": 0.6307884856070088, + "noteOrder": 3921, + "time": 0.816020025031289, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5228,18 +7781,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 5, "isSliding": false, - "noteOrder": 3041, - "time": 0.6332916145181477, + "noteOrder": 3921, + "time": 0.816020025031289, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5251,18 +7804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 6, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3053, - "time": 0.6357947434292867, + "noteOrder": 3921, + "time": 0.816020025031289, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5279,13 +7832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 7, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3065, - "time": 0.6382978723404255, + "noteOrder": 3933, + "time": 0.818523153942428, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5302,13 +7855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.6408010012515646, + "noteOrder": 3933, + "time": 0.818523153942428, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5320,18 +7873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3174, - "time": 0.6608260325406758, + "noteOrder": 3945, + "time": 0.8210262828535669, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5343,18 +7896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3174, - "time": 0.6608260325406758, + "noteOrder": 3945, + "time": 0.8210262828535669, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5371,13 +7924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 3198, - "time": 0.6658322903629538, + "noteOrder": 3945, + "time": 0.8210262828535669, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5389,18 +7942,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3222, - "time": 0.6708385481852316, + "noteOrder": 3969, + "time": 0.8260325406758448, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5417,13 +7970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3246, - "time": 0.6758448060075094, + "noteOrder": 4041, + "time": 0.8410513141426783, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5440,13 +7993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3270, - "time": 0.6808510638297872, + "noteOrder": 4137, + "time": 0.8610763454317897, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5463,13 +8016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.7008760951188987, + "noteOrder": 4149, + "time": 0.8635794743429286, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5486,13 +8039,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3366, - "time": 0.7008760951188987, + "noteOrder": 4161, + "time": 0.8660826032540675, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5504,18 +8057,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3390, - "time": 0.7058823529411765, + "noteOrder": 4173, + "time": 0.8685857321652064, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5527,16 +8080,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3414, - "time": 0.7108886107634543, + "noteOrder": 4185, + "time": 0.8710888610763453, "position": { "x": 4, "y": 0 @@ -5555,11 +8108,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3438, - "time": 0.7158948685857321, + "noteOrder": 4197, + "time": 0.8735919899874843, "position": { "x": 4, "y": 0 @@ -5578,13 +8131,36 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4209, + "time": 0.8760951188986232, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.7209011264080101, + "noteOrder": 4137, + "time": 0.8610763454317897, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5601,13 +8177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3510, - "time": 0.7309136420525657, + "noteOrder": 4149, + "time": 0.8635794743429286, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5624,13 +8200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3486, - "time": 0.7259073842302879, + "noteOrder": 4161, + "time": 0.8660826032540675, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5642,18 +8218,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3510, - "time": 0.7309136420525657, + "noteOrder": 4173, + "time": 0.8685857321652064, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5665,18 +8241,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3594, - "time": 0.7484355444305382, + "noteOrder": 4185, + "time": 0.8710888610763453, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5688,18 +8264,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3630, - "time": 0.755944931163955, + "noteOrder": 4197, + "time": 0.8735919899874843, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5711,16 +8287,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3606, - "time": 0.7509386733416771, + "noteOrder": 4209, + "time": 0.8760951188986232, "position": { "x": 7, "y": 0 @@ -5739,13 +8315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 215, "indexInLine": 1, "isSliding": false, - "noteOrder": 3630, - "time": 0.755944931163955, + "noteOrder": 4233, + "time": 0.881101376720901, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5757,16 +8333,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3666, - "time": 0.7634543178973717, + "noteOrder": 4245, + "time": 0.88360450563204, "position": { "x": 3, "y": 0 @@ -5785,13 +8361,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3726, - "time": 0.7759699624530663, + "noteOrder": 4245, + "time": 0.88360450563204, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5808,13 +8384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3847, - "time": 0.8010012515644556, + "noteOrder": 4257, + "time": 0.8861076345431789, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5826,18 +8402,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3871, - "time": 0.8060075093867335, + "noteOrder": 4257, + "time": 0.8861076345431789, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5854,13 +8430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3895, - "time": 0.8110137672090112, + "noteOrder": 4257, + "time": 0.8861076345431789, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5877,13 +8453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3919, - "time": 0.8160200250312891, + "noteOrder": 4269, + "time": 0.8886107634543178, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5895,18 +8471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3943, - "time": 0.8210262828535669, + "noteOrder": 4269, + "time": 0.8886107634543178, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5923,13 +8499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3967, - "time": 0.8260325406758449, + "noteOrder": 4281, + "time": 0.8911138923654567, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5946,11 +8522,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 2, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4039, - "time": 0.8410513141426784, + "noteOrder": 4281, + "time": 0.8911138923654567, "position": { "x": 5, "y": 0 @@ -5969,13 +8545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4135, - "time": 0.8610763454317898, + "noteOrder": 4281, + "time": 0.8911138923654567, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5992,13 +8568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4147, - "time": 0.8635794743429287, + "noteOrder": 4293, + "time": 0.8936170212765957, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6015,11 +8591,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 2, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4159, - "time": 0.8660826032540676, + "noteOrder": 4293, + "time": 0.8936170212765957, "position": { "x": 4, "y": 0 @@ -6038,11 +8614,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 3, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4171, - "time": 0.8685857321652065, + "noteOrder": 4305, + "time": 0.8961201501877346, "position": { "x": 4, "y": 0 @@ -6061,13 +8637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 4, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4183, - "time": 0.8710888610763455, + "noteOrder": 4305, + "time": 0.8961201501877346, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6084,13 +8660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 5, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4195, - "time": 0.8735919899874844, + "noteOrder": 4305, + "time": 0.8961201501877346, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6102,18 +8678,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 6, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4207, - "time": 0.8760951188986233, + "noteOrder": 4317, + "time": 0.8986232790988735, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6125,18 +8701,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4135, - "time": 0.8610763454317898, + "noteOrder": 4317, + "time": 0.8986232790988735, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6153,13 +8729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4147, - "time": 0.8635794743429287, + "noteOrder": 4329, + "time": 0.9011264080100124, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6176,13 +8752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4159, - "time": 0.8660826032540676, + "noteOrder": 4329, + "time": 0.9011264080100124, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6199,13 +8775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 3, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4171, - "time": 0.8685857321652065, + "noteOrder": 4329, + "time": 0.9011264080100124, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6217,18 +8793,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 4, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4183, - "time": 0.8710888610763455, + "noteOrder": 4353, + "time": 0.9061326658322902, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6240,18 +8816,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 5, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4195, - "time": 0.8735919899874844, + "noteOrder": 4426, + "time": 0.9211514392991238, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6263,16 +8839,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 6, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4207, - "time": 0.8760951188986233, + "noteOrder": 4426, + "time": 0.9211514392991238, "position": { "x": 7, "y": 0 @@ -6291,13 +8867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4231, - "time": 0.881101376720901, + "noteOrder": 4438, + "time": 0.9236545682102627, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6309,18 +8885,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4255, - "time": 0.886107634543179, + "noteOrder": 4438, + "time": 0.9236545682102627, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6337,11 +8913,11 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4279, - "time": 0.8911138923654568, + "noteOrder": 4450, + "time": 0.9261576971214018, "position": { "x": 3, "y": 0 @@ -6360,11 +8936,11 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4303, - "time": 0.8961201501877347, + "noteOrder": 4462, + "time": 0.9286608260325407, "position": { "x": 3, "y": 0 @@ -6378,18 +8954,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4328, - "time": 0.9011264080100125, + "noteOrder": 4462, + "time": 0.9286608260325407, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6406,13 +8982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 225, "indexInLine": 1, "isSliding": false, - "noteOrder": 4352, - "time": 0.9061326658322905, + "noteOrder": 4474, + "time": 0.9311639549436797, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6424,18 +9000,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 225, "indexInLine": 2, "isSliding": false, - "noteOrder": 4424, - "time": 0.9211514392991239, + "noteOrder": 4486, + "time": 0.9336670838548186, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6447,18 +9023,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4424, - "time": 0.9211514392991239, + "noteOrder": 4486, + "time": 0.9336670838548186, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6475,11 +9051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4448, - "time": 0.9261576971214017, + "noteOrder": 4498, + "time": 0.9361702127659575, "position": { "x": 3, "y": 0 @@ -6498,13 +9074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4472, - "time": 0.9311639549436797, + "noteOrder": 4510, + "time": 0.9386733416770964, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6516,18 +9092,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4496, - "time": 0.9361702127659575, + "noteOrder": 4510, + "time": 0.9386733416770964, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6545,9 +9121,9 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.9612015018773467, "position": { "x": 7, @@ -6568,10 +9144,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4688, - "time": 0.9762202753441803, + "noteOrder": 4690, + "time": 0.9762202753441802, "position": { "x": 7, "y": 0 diff --git a/tracks/New Solution/273_difficulty_1b.json b/tracks/New Solution/273_difficulty_1b.json index 7cb03b6b..cbfeae76 100644 --- a/tracks/New Solution/273_difficulty_1b.json +++ b/tracks/New Solution/273_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.020025031289111393, + "time": 0.02002503128911139, "position": { "x": 7, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 241, "time": 0.05006257822277847, "position": { "x": 7, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 265, "time": 0.055068836045056316, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 385, - "time": 0.08010012515644557, + "time": 0.08010012515644556, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 433, - "time": 0.09011264080100126, + "time": 0.09011264080100125, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 457, - "time": 0.0951188986232791, + "time": 0.09511889862327909, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 457, - "time": 0.0951188986232791, + "time": 0.09511889862327909, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 505, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 505, - "time": 0.1051314142678348, + "time": 0.10513141426783479, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 553, - "time": 0.11514392991239049, + "time": 0.11514392991239047, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 553, - "time": 0.11514392991239049, + "time": 0.11514392991239047, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.15018773466833543, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 769, - "time": 0.16020025031289115, + "noteOrder": 770, + "time": 0.16020025031289112, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.16520650813516896, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.1702127659574468, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.1702127659574468, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17521902377972468, + "noteOrder": 842, + "time": 0.17521902377972465, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17521902377972468, + "noteOrder": 842, + "time": 0.17521902377972465, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 866, - "time": 0.18022528160200252, + "time": 0.1802252816020025, "position": { "x": 3, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 914, - "time": 0.1902377972465582, + "time": 0.19023779724655818, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1010, - "time": 0.2102628285356696, + "time": 0.21026282853566958, "position": { "x": 4, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1010, - "time": 0.2102628285356696, + "time": 0.21026282853566958, "position": { "x": 6, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1034, - "time": 0.21526908635794745, + "time": 0.21526908635794742, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1034, - "time": 0.21526908635794745, + "time": 0.21526908635794742, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1082, - "time": 0.22528160200250313, + "time": 0.2252816020025031, "position": { "x": 4, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1106, - "time": 0.23028785982478098, + "time": 0.23028785982478095, "position": { "x": 7, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1130, - "time": 0.23529411764705885, + "time": 0.23529411764705882, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1155, "time": 0.24030037546933666, "position": { "x": 7, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1178, - "time": 0.24530663329161453, + "noteOrder": 1179, + "time": 0.2453066332916145, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.2503128911138924, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.25531914893617025, + "noteOrder": 1227, + "time": 0.2553191489361702, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.25531914893617025, + "noteOrder": 1227, + "time": 0.2553191489361702, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1250, + "noteOrder": 1251, "time": 0.26032540675844806, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.26533166458072593, + "noteOrder": 1275, + "time": 0.2653316645807259, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.27033792240300375, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.2753441802252816, + "noteOrder": 1323, + "time": 0.27534418022528157, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.2903629536921152, + "noteOrder": 1395, + "time": 0.2903629536921151, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.295369211514393, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1683, - "time": 0.35043804755944935, + "noteOrder": 1684, + "time": 0.3504380475594493, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.37046307884856067, "position": { "x": 4, @@ -1194,7 +1194,7 @@ }, { "noteOrder": 2020, - "time": 0.4205256570713392, + "time": 0.42052565707133915, "position": { "x": 7, "y": 0 @@ -1214,7 +1214,7 @@ }, { "noteOrder": 2044, - "time": 0.425531914893617, + "time": 0.42553191489361697, "position": { "x": 3, "y": 0 @@ -1234,7 +1234,7 @@ }, { "noteOrder": 2068, - "time": 0.4305381727158949, + "time": 0.43053817271589484, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2092, - "time": 0.43554443053817277, + "noteOrder": 2093, + "time": 0.43554443053817266, "position": { "x": 4, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2116, + "noteOrder": 2117, "time": 0.4405506883604505, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2140, - "time": 0.4455569461827284, + "noteOrder": 2141, + "time": 0.44555694618272834, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.45056320400500627, + "noteOrder": 2165, + "time": 0.4505632040050062, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.45556946182728414, + "noteOrder": 2189, + "time": 0.4555694618272841, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.46057571964956195, + "noteOrder": 2213, + "time": 0.4605757196495619, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.4655819774718398, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.4705882352941177, + "noteOrder": 2261, + "time": 0.47058823529411764, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.47559449311639546, + "noteOrder": 2285, + "time": 0.4755944931163955, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.47559449311639546, + "noteOrder": 2285, + "time": 0.4755944931163955, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5406758448060075, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5406758448060075, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.5456821026282854, + "noteOrder": 2622, + "time": 0.5456821026282853, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.5456821026282854, + "noteOrder": 2622, + "time": 0.5456821026282853, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.5506883604505632, + "noteOrder": 2646, + "time": 0.5506883604505631, "position": { "x": 7, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.5506883604505632, + "noteOrder": 2646, + "time": 0.5506883604505631, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2670, "time": 0.5556946182728411, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2670, "time": 0.5556946182728411, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.6207759699624531, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3007, "time": 0.6257822277847309, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.6307884856070088, + "noteOrder": 3031, + "time": 0.6307884856070087, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3055, "time": 0.6357947434292867, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.6508135168961201, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3222, + "noteOrder": 3223, "time": 0.6708385481852316, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3294, + "noteOrder": 3295, "time": 0.685857321652065, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3318, + "noteOrder": 3319, "time": 0.690863579474343, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3390, - "time": 0.7058823529411765, + "noteOrder": 3391, + "time": 0.7058823529411764, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.7108886107634543, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3462, - "time": 0.7209011264080101, + "noteOrder": 3464, + "time": 0.72090112640801, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3486, + "noteOrder": 3488, "time": 0.7259073842302879, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3512, "time": 0.7309136420525657, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.7359198998748436, + "noteOrder": 3536, + "time": 0.7359198998748435, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3558, + "noteOrder": 3560, "time": 0.7409261576971213, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.7459324155193993, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3680, "time": 0.7659574468085106, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3728, "time": 0.7759699624530663, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4039, - "time": 0.8410513141426784, + "noteOrder": 4041, + "time": 0.8410513141426783, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4065, "time": 0.8460575719649561, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.851063829787234, + "noteOrder": 4089, + "time": 0.8510638297872339, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8560700876095119, "position": { "x": 2, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4135, - "time": 0.8610763454317898, + "noteOrder": 4137, + "time": 0.8610763454317897, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4159, - "time": 0.8660826032540676, + "noteOrder": 4161, + "time": 0.8660826032540675, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4183, - "time": 0.8710888610763455, + "noteOrder": 4185, + "time": 0.8710888610763453, "position": { "x": 4, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4183, - "time": 0.8710888610763455, + "noteOrder": 4185, + "time": 0.8710888610763453, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.8760951188986233, + "noteOrder": 4209, + "time": 0.8760951188986232, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.8760951188986233, + "noteOrder": 4209, + "time": 0.8760951188986232, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4424, - "time": 0.9211514392991239, + "noteOrder": 4426, + "time": 0.9211514392991238, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4448, - "time": 0.9261576971214017, + "noteOrder": 4450, + "time": 0.9261576971214018, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.9311639549436797, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4498, "time": 0.9361702127659575, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4498, "time": 0.9361702127659575, "position": { "x": 6, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4520, - "time": 0.9411764705882354, + "noteOrder": 4522, + "time": 0.9411764705882353, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4544, + "noteOrder": 4546, "time": 0.9461827284105132, "position": { "x": 7, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4568, - "time": 0.9511889862327909, + "noteOrder": 4570, + "time": 0.951188986232791, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4568, - "time": 0.9511889862327909, + "noteOrder": 4570, + "time": 0.951188986232791, "position": { "x": 6, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4688, - "time": 0.9762202753441803, + "noteOrder": 4690, + "time": 0.9762202753441802, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4688, - "time": 0.9762202753441803, + "noteOrder": 4690, + "time": 0.9762202753441802, "position": { "x": 4, "y": 0 @@ -2396,7 +2396,7 @@ "lineNodes": [ { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1443, "time": 0.30037546933667086, @@ -2419,7 +2419,7 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1491, "time": 0.31038798498122655, @@ -2442,7 +2442,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1443, "time": 0.30037546933667086, @@ -2465,7 +2465,7 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1491, "time": 0.31038798498122655, @@ -2488,10 +2488,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1539, - "time": 0.3204005006257823, + "time": 0.32040050062578224, "position": { "x": 7, "y": 0 @@ -2511,7 +2511,7 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1587, "time": 0.3304130162703379, @@ -2534,10 +2534,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1539, - "time": 0.3204005006257823, + "time": 0.32040050062578224, "position": { "x": 3, "y": 0 @@ -2557,7 +2557,7 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1587, "time": 0.3304130162703379, @@ -2580,9 +2580,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, + "noteOrder": 1636, "time": 0.3404255319148936, "position": { "x": 7, @@ -2603,10 +2603,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.35043804755944935, + "noteOrder": 1684, + "time": 0.3504380475594493, "position": { "x": 7, "y": 0 @@ -2626,10 +2626,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, - "time": 0.36045056320400504, + "noteOrder": 1732, + "time": 0.360450563204005, "position": { "x": 3, "y": 0 @@ -2649,9 +2649,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.37046307884856067, "position": { "x": 3, @@ -2672,10 +2672,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3804755944931164, + "noteOrder": 1828, + "time": 0.38047559449311635, "position": { "x": 7, "y": 0 @@ -2695,9 +2695,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3904881101376721, "position": { "x": 7, @@ -2718,10 +2718,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3804755944931164, + "noteOrder": 1828, + "time": 0.38047559449311635, "position": { "x": 3, "y": 0 @@ -2741,9 +2741,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.3904881101376721, "position": { "x": 3, @@ -2764,9 +2764,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.4005006257822278, "position": { "x": 6, @@ -2787,9 +2787,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.41051314142678347, "position": { "x": 6, @@ -2810,9 +2810,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.4005006257822278, "position": { "x": 4, @@ -2833,9 +2833,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.41051314142678347, "position": { "x": 4, @@ -2856,9 +2856,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, + "noteOrder": 2309, "time": 0.4806007509386733, "position": { "x": 7, @@ -2878,11 +2878,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2356, - "time": 0.49061326658322907, + "noteOrder": 2333, + "time": 0.4856070087609512, "position": { "x": 7, "y": 0 @@ -2896,18 +2896,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2404, - "time": 0.5006257822277848, + "noteOrder": 2333, + "time": 0.4856070087609512, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2924,13 +2924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2452, - "time": 0.5106382978723405, + "noteOrder": 2357, + "time": 0.490613266583229, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2942,18 +2942,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2500, - "time": 0.5206508135168961, + "noteOrder": 2357, + "time": 0.490613266583229, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2970,13 +2970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.5306633291614519, + "noteOrder": 2357, + "time": 0.490613266583229, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2993,13 +2993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2693, - "time": 0.5607008760951189, + "noteOrder": 2381, + "time": 0.4956195244055069, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3016,13 +3016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2741, - "time": 0.5707133917396746, + "noteOrder": 2381, + "time": 0.4956195244055069, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3034,18 +3034,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2789, - "time": 0.5807259073842304, + "noteOrder": 2405, + "time": 0.5006257822277848, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3062,13 +3062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2837, - "time": 0.590738423028786, + "noteOrder": 2405, + "time": 0.5006257822277848, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3080,18 +3080,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2885, - "time": 0.6007509386733417, + "noteOrder": 2405, + "time": 0.5006257822277848, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3103,16 +3103,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2933, - "time": 0.6107634543178974, + "noteOrder": 2429, + "time": 0.5056320400500626, "position": { "x": 7, "y": 0 @@ -3131,13 +3131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3077, - "time": 0.6408010012515646, + "noteOrder": 2429, + "time": 0.5056320400500626, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3149,18 +3149,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3125, - "time": 0.6508135168961201, + "noteOrder": 2453, + "time": 0.5106382978723404, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3172,18 +3172,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3174, - "time": 0.6608260325406758, + "noteOrder": 2453, + "time": 0.5106382978723404, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3200,11 +3200,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 3222, - "time": 0.6708385481852316, + "noteOrder": 2453, + "time": 0.5106382978723404, "position": { "x": 7, "y": 0 @@ -3218,18 +3218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3270, - "time": 0.6808510638297872, + "noteOrder": 2477, + "time": 0.5156445556946183, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3246,13 +3246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3318, - "time": 0.690863579474343, + "noteOrder": 2477, + "time": 0.5156445556946183, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3269,13 +3269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3366, - "time": 0.7008760951188987, + "noteOrder": 2501, + "time": 0.5206508135168961, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3287,18 +3287,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3414, - "time": 0.7108886107634543, + "noteOrder": 2501, + "time": 0.5206508135168961, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3310,18 +3310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.7509386733416771, + "noteOrder": 2501, + "time": 0.5206508135168961, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3338,13 +3338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3630, - "time": 0.755944931163955, + "noteOrder": 2525, + "time": 0.5256570713391739, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3361,13 +3361,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3606, - "time": 0.7509386733416771, + "noteOrder": 2525, + "time": 0.5256570713391739, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3379,18 +3379,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 3630, - "time": 0.755944931163955, + "noteOrder": 2550, + "time": 0.5306633291614518, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3407,11 +3407,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.7609511889862328, + "noteOrder": 2574, + "time": 0.5356695869837297, "position": { "x": 3, "y": 0 @@ -3430,13 +3430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3678, - "time": 0.7659574468085106, + "noteOrder": 2574, + "time": 0.5356695869837297, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3453,13 +3453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.7709637046307886, + "noteOrder": 2694, + "time": 0.5607008760951189, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3471,18 +3471,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3726, - "time": 0.7759699624530663, + "noteOrder": 2718, + "time": 0.5657071339173967, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3494,18 +3494,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3847, - "time": 0.8010012515644556, + "noteOrder": 2718, + "time": 0.5657071339173967, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3517,18 +3517,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3895, - "time": 0.8110137672090112, + "noteOrder": 2742, + "time": 0.5707133917396746, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3545,13 +3545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3943, - "time": 0.8210262828535669, + "noteOrder": 2742, + "time": 0.5707133917396746, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3563,16 +3563,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3991, - "time": 0.8310387984981227, + "noteOrder": 2742, + "time": 0.5707133917396746, "position": { "x": 3, "y": 0 @@ -3586,16 +3586,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4231, - "time": 0.881101376720901, + "noteOrder": 2766, + "time": 0.5757196495619524, "position": { "x": 3, "y": 0 @@ -3609,18 +3609,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4279, - "time": 0.8911138923654568, + "noteOrder": 2766, + "time": 0.5757196495619524, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3637,13 +3637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4328, - "time": 0.9011264080100125, + "noteOrder": 2790, + "time": 0.5807259073842302, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3655,18 +3655,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4376, - "time": 0.9111389236545683, + "noteOrder": 2790, + "time": 0.5807259073842302, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3683,11 +3683,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4592, - "time": 0.9561952440550688, + "noteOrder": 2790, + "time": 0.5807259073842302, "position": { "x": 3, "y": 0 @@ -3706,11 +3706,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4616, - "time": 0.9612015018773467, + "noteOrder": 2814, + "time": 0.5857321652065081, "position": { "x": 3, "y": 0 @@ -3729,13 +3729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4592, - "time": 0.9561952440550688, + "noteOrder": 2814, + "time": 0.5857321652065081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3747,15 +3747,1487 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.590738423028786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5957446808510639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5957446808510639, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2886, + "time": 0.6007509386733417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2886, + "time": 0.6007509386733417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.6007509386733417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2910, + "time": 0.6057571964956195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2910, + "time": 0.6057571964956195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2934, + "time": 0.6107634543178974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.6157697121401753, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2958, + "time": 0.6157697121401753, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3079, + "time": 0.6408010012515645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3127, + "time": 0.6508135168961201, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6608260325406758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6708385481852316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6808510638297872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.690863579474343, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.7008760951188986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3415, + "time": 0.7108886107634543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7509386733416771, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3632, + "time": 0.7559449311639549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7509386733416771, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3632, + "time": 0.7559449311639549, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.7609511889862327, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3680, + "time": 0.7659574468085106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7709637046307884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7759699624530663, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3848, + "time": 0.8010012515644556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3872, + "time": 0.8060075093867334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3872, + "time": 0.8060075093867334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3896, + "time": 0.8110137672090112, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3896, + "time": 0.8110137672090112, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.8110137672090112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3921, + "time": 0.816020025031289, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3921, + "time": 0.816020025031289, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3945, + "time": 0.8210262828535669, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3945, + "time": 0.8210262828535669, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3945, + "time": 0.8210262828535669, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3969, + "time": 0.8260325406758448, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3969, + "time": 0.8260325406758448, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3993, + "time": 0.8310387984981226, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4017, + "time": 0.8360450563204004, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4017, + "time": 0.8360450563204004, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4233, + "time": 0.881101376720901, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4257, + "time": 0.8861076345431789, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4257, + "time": 0.8861076345431789, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4281, + "time": 0.8911138923654567, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4281, + "time": 0.8911138923654567, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4281, + "time": 0.8911138923654567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4305, + "time": 0.8961201501877346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4305, + "time": 0.8961201501877346, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4329, + "time": 0.9011264080100124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4329, + "time": 0.9011264080100124, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4329, + "time": 0.9011264080100124, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4353, + "time": 0.9061326658322902, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4353, + "time": 0.9061326658322902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4378, + "time": 0.9111389236545682, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4402, + "time": 0.916145181476846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4402, + "time": 0.916145181476846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4594, + "time": 0.9561952440550688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4618, + "time": 0.9612015018773467, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4594, + "time": 0.9561952440550688, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4616, + "noteOrder": 4618, "time": 0.9612015018773467, "position": { "x": 7, diff --git a/tracks/New Solution/info.json b/tracks/New Solution/info.json index 52f179a7..2e6b08c4 100644 --- a/tracks/New Solution/info.json +++ b/tracks/New Solution/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "New Solution", - "SongLength": "119.144490", + "SongLength": "109.191837", "SongAuthorName": "KARUT", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Next Stage 2022/319_difficulty_1a.json b/tracks/Next Stage 2022/319_difficulty_1a.json index 8c662e64..55d1ed79 100644 --- a/tracks/Next Stage 2022/319_difficulty_1a.json +++ b/tracks/Next Stage 2022/319_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.013900955690703737, + "time": 0.013900955690703735, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 116, - "time": 0.01650738488271069, + "time": 0.016507384882710686, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 311, - "time": 0.044309296264118156, + "time": 0.04430929626411816, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 536, - "time": 0.07645525629887054, + "time": 0.07645525629887055, "position": { "x": 5, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 560, - "time": 0.0799304952215465, + "noteOrder": 561, + "time": 0.07993049522154648, "position": { "x": 7, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 633, + "noteOrder": 634, "time": 0.09035621198957428, "position": { "x": 2, @@ -194,7 +194,7 @@ }, { "noteOrder": 658, - "time": 0.09383145091225023, + "time": 0.09383145091225022, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 877, - "time": 0.1251086012163336, + "time": 0.12510860121633363, "position": { "x": 3, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 895, + "noteOrder": 896, "time": 0.12771503040834056, "position": { "x": 5, @@ -294,7 +294,7 @@ }, { "noteOrder": 914, - "time": 0.13032145960034755, + "time": 0.13032145960034752, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 926, - "time": 0.1320590790616855, + "time": 0.13205907906168549, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1194, - "time": 0.17028670721112077, + "time": 0.17028670721112074, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.1737619461337967, "position": { "x": 8, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1242, - "time": 0.17723718505647262, + "noteOrder": 1243, + "time": 0.17723718505647265, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1291, + "noteOrder": 1292, "time": 0.1841876629018245, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1583, + "noteOrder": 1584, "time": 0.22589052997393572, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 1633, "time": 0.23284100781928757, "position": { "x": 7, @@ -534,7 +534,7 @@ }, { "noteOrder": 1657, - "time": 0.2363162467419635, + "time": 0.23631624674196353, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.23979148566463945, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.2502172024326672, + "noteOrder": 1755, + "time": 0.25021720243266726, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1766, + "noteOrder": 1767, "time": 0.2519548218940052, "position": { "x": 5, @@ -614,7 +614,7 @@ }, { "noteOrder": 1876, - "time": 0.26759339704604695, + "time": 0.2675933970460469, "position": { "x": 7, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1900, + "noteOrder": 1901, "time": 0.2710686359687229, "position": { "x": 6, @@ -654,7 +654,7 @@ }, { "noteOrder": 1925, - "time": 0.2745438748913988, + "time": 0.27454387489139875, "position": { "x": 5, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.2884448305821025, "position": { "x": 7, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.32667245873153783, + "noteOrder": 2291, + "time": 0.3266724587315378, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2314, - "time": 0.33014769765421376, + "noteOrder": 2315, + "time": 0.3301476976542137, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2412, + "noteOrder": 2413, "time": 0.34404865334491747, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 2437, "time": 0.3475238922675934, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 2437, "time": 0.3475238922675934, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2655, - "time": 0.37880104257167685, + "noteOrder": 2656, + "time": 0.3788010425716768, "position": { "x": 8, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2680, - "time": 0.3822762814943528, + "noteOrder": 2681, + "time": 0.3822762814943527, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2704, + "noteOrder": 2705, "time": 0.3857515204170287, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.38922675933970463, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2741, + "noteOrder": 2742, "time": 0.39096437880104257, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2753, - "time": 0.39270199826238056, + "noteOrder": 2754, + "time": 0.3927019982623805, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2777, + "noteOrder": 2778, "time": 0.3961772371850565, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2789, + "noteOrder": 2790, "time": 0.3979148566463945, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2802, + "noteOrder": 2803, "time": 0.3996524761077324, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2850, + "noteOrder": 2851, "time": 0.40660295395308427, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.40834057341442226, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2899, + "noteOrder": 2900, "time": 0.4135534317984361, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.4344048653344918, + "noteOrder": 3046, + "time": 0.43440486533449174, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3057, - "time": 0.43614248479582973, + "noteOrder": 3058, + "time": 0.4361424847958297, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3094, - "time": 0.44135534317984365, + "noteOrder": 3095, + "time": 0.4413553431798436, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3106, + "noteOrder": 3107, "time": 0.4430929626411816, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3217, "time": 0.4587315377932233, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3241, "time": 0.4622067767158992, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.4761077324066029, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.4761077324066029, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3411, + "noteOrder": 3412, "time": 0.48653344917463076, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3423, + "noteOrder": 3424, "time": 0.4882710686359687, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3435, - "time": 0.4900086880973067, + "noteOrder": 3436, + "time": 0.49000868809730663, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3447, + "noteOrder": 3448, "time": 0.4917463075586446, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.4934839270199826, + "noteOrder": 3461, + "time": 0.49348392701998256, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.49522154648132055, + "noteOrder": 3473, + "time": 0.49522154648132066, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.49695916594265854, + "noteOrder": 3485, + "time": 0.4969591659426586, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3496, - "time": 0.4986967854039965, + "noteOrder": 3497, + "time": 0.49869678540399653, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3607, "time": 0.5143353605560382, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3630, + "noteOrder": 3631, "time": 0.5178105994787142, "position": { "x": 2, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.5212858384013902, + "noteOrder": 3656, + "time": 0.5212858384013901, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3679, + "noteOrder": 3680, "time": 0.5247610773240661, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3703, - "time": 0.528236316246742, + "noteOrder": 3704, + "time": 0.5282363162467419, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3727, - "time": 0.5317115551694179, + "noteOrder": 3729, + "time": 0.5317115551694178, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.5351867940920939, + "noteOrder": 3753, + "time": 0.5351867940920938, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.5351867940920939, + "noteOrder": 3753, + "time": 0.5351867940920938, "position": { "x": 4, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.5386620330147698, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.5386620330147698, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3802, "time": 0.5421372719374458, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3813, - "time": 0.5438748913987838, + "noteOrder": 3814, + "time": 0.5438748913987836, "position": { "x": 5, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 3826, "time": 0.5456125108601216, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3837, + "noteOrder": 3838, "time": 0.5473501303214596, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3849, - "time": 0.5490877497827976, + "noteOrder": 3850, + "time": 0.5490877497827975, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3861, - "time": 0.5508253692441356, + "noteOrder": 3863, + "time": 0.5508253692441355, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3873, + "noteOrder": 3875, "time": 0.5525629887054735, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3886, + "noteOrder": 3887, "time": 0.5543006081668115, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.5699391833188532, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4020, - "time": 0.5734144222415292, + "noteOrder": 4021, + "time": 0.573414422241529, "position": { "x": 8, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4045, "time": 0.576889661164205, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4070, "time": 0.580364900086881, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.5977410947002606, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4215, + "noteOrder": 4216, "time": 0.6012163336229366, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4239, - "time": 0.6046915725456125, + "noteOrder": 4240, + "time": 0.6046915725456126, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4239, - "time": 0.6046915725456125, + "noteOrder": 4240, + "time": 0.6046915725456126, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4263, + "noteOrder": 4265, "time": 0.6081668114682884, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4263, + "noteOrder": 4265, "time": 0.6081668114682884, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4312, + "noteOrder": 4314, "time": 0.6151172893136403, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4361, - "time": 0.6220677671589921, + "noteOrder": 4362, + "time": 0.6220677671589923, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4409, - "time": 0.629018245004344, + "noteOrder": 4411, + "time": 0.6290182450043441, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4458, - "time": 0.635968722849696, + "noteOrder": 4460, + "time": 0.6359687228496959, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4507, + "noteOrder": 4508, "time": 0.6429192006950478, "position": { "x": 8, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4531, + "noteOrder": 4533, "time": 0.6463944396177238, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4556, + "noteOrder": 4557, "time": 0.6498696785403997, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4580, - "time": 0.6533449174630757, + "noteOrder": 4582, + "time": 0.6533449174630755, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.6568201563857515, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4702, + "noteOrder": 4703, "time": 0.6707211120764552, "position": { "x": 3, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4750, - "time": 0.6776715899218072, + "noteOrder": 4752, + "time": 0.6776715899218071, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4799, + "noteOrder": 4801, "time": 0.6846220677671591, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4850, "time": 0.6915725456125109, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4897, - "time": 0.6985230234578628, + "noteOrder": 4898, + "time": 0.6985230234578627, "position": { "x": 2, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.7019982623805386, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4945, + "noteOrder": 4947, "time": 0.7054735013032146, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4970, - "time": 0.7089487402258905, + "noteOrder": 4972, + "time": 0.7089487402258906, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4994, + "noteOrder": 4996, "time": 0.7124239791485665, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5092, - "time": 0.7263249348392702, + "noteOrder": 5093, + "time": 0.7263249348392703, "position": { "x": 3, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5104, + "noteOrder": 5106, "time": 0.7280625543006082, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5140, + "noteOrder": 5142, "time": 0.733275412684622, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5152, + "noteOrder": 5154, "time": 0.73501303214596, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5286, + "noteOrder": 5288, "time": 0.7541268462206777, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.7610773240660296, "position": { "x": 3, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.7645525629887056, + "noteOrder": 5361, + "time": 0.7645525629887054, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.7680278019113814, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5408, + "noteOrder": 5410, "time": 0.7715030408340574, "position": { "x": 4, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5408, + "noteOrder": 5410, "time": 0.7715030408340574, "position": { "x": 6, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.7749782797567333, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.7749782797567333, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5481, + "noteOrder": 5483, "time": 0.7819287576020851, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5493, + "noteOrder": 5495, "time": 0.7836663770634231, "position": { "x": 5, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5530, - "time": 0.788879235447437, + "noteOrder": 5532, + "time": 0.7888792354474371, "position": { "x": 3, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5542, + "noteOrder": 5544, "time": 0.790616854908775, "position": { "x": 5, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5676, + "noteOrder": 5678, "time": 0.8097306689834927, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5725, + "noteOrder": 5727, "time": 0.8166811468288445, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5749, + "noteOrder": 5751, "time": 0.8201563857515204, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5749, + "noteOrder": 5751, "time": 0.8201563857515204, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5920, + "noteOrder": 5922, "time": 0.8444830582102519, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5920, + "noteOrder": 5922, "time": 0.8444830582102519, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5944, - "time": 0.8479582971329279, + "noteOrder": 5946, + "time": 0.8479582971329278, "position": { "x": 3, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5962, + "noteOrder": 5965, "time": 0.8505647263249348, "position": { "x": 5, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5981, - "time": 0.8531711555169418, + "noteOrder": 5983, + "time": 0.8531711555169419, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6042, + "noteOrder": 6044, "time": 0.8618592528236316, "position": { "x": 5, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6066, - "time": 0.8653344917463076, + "noteOrder": 6068, + "time": 0.8653344917463075, "position": { "x": 6, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6090, - "time": 0.8688097306689836, + "noteOrder": 6093, + "time": 0.8688097306689835, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6115, - "time": 0.8722849695916595, + "noteOrder": 6117, + "time": 0.8722849695916594, "position": { "x": 6, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6139, + "noteOrder": 6141, "time": 0.8757602085143354, "position": { "x": 7, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6157, + "noteOrder": 6160, "time": 0.8783666377063423, "position": { "x": 5, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6176, + "noteOrder": 6178, "time": 0.8809730668983493, "position": { "x": 3, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6237, - "time": 0.8896611642050392, + "noteOrder": 6239, + "time": 0.889661164205039, "position": { "x": 5, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6261, + "noteOrder": 6263, "time": 0.893136403127715, "position": { "x": 4, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6285, + "noteOrder": 6287, "time": 0.896611642050391, "position": { "x": 5, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6310, + "noteOrder": 6312, "time": 0.9000868809730669, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6358, - "time": 0.9070373588184188, + "noteOrder": 6361, + "time": 0.9070373588184187, "position": { "x": 6, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6407, - "time": 0.9139878366637707, + "noteOrder": 6409, + "time": 0.9139878366637706, "position": { "x": 4, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6431, + "noteOrder": 6434, "time": 0.9174630755864466, "position": { "x": 7, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6456, + "noteOrder": 6458, "time": 0.9209383145091226, "position": { "x": 3, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6480, + "noteOrder": 6482, "time": 0.9244135534317984, "position": { "x": 4, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6480, + "noteOrder": 6482, "time": 0.9244135534317984, "position": { "x": 6, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9278887923544744, "position": { "x": 7, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9278887923544744, "position": { "x": 3, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9348392701998263, + "noteOrder": 6556, + "time": 0.9348392701998262, "position": { "x": 2, "y": 0 @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6602, + "noteOrder": 6604, "time": 0.9417897480451781, "position": { "x": 8, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6626, - "time": 0.945264986967854, + "noteOrder": 6629, + "time": 0.9452649869678541, "position": { "x": 3, "y": 0 @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6651, + "noteOrder": 6653, "time": 0.94874022589053, "position": { "x": 7, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6675, + "noteOrder": 6677, "time": 0.9522154648132058, "position": { "x": 4, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6675, + "noteOrder": 6677, "time": 0.9522154648132058, "position": { "x": 6, @@ -3296,10 +3296,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 134, - "time": 0.019113814074717635, + "time": 0.019113814074717638, "position": { "x": 7, "y": 0 @@ -3319,10 +3319,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.03822762814943527, + "time": 0.038227628149435276, "position": { "x": 7, "y": 0 @@ -3342,7 +3342,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 158, "time": 0.02258905299739357, @@ -3365,10 +3365,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.03822762814943527, + "time": 0.038227628149435276, "position": { "x": 3, "y": 0 @@ -3388,7 +3388,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 353, "time": 0.05039096437880104, @@ -3411,10 +3411,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 463, - "time": 0.06602953953084276, + "time": 0.06602953953084274, "position": { "x": 7, "y": 0 @@ -3434,7 +3434,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 353, "time": 0.05039096437880104, @@ -3457,10 +3457,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 463, - "time": 0.06602953953084276, + "time": 0.06602953953084274, "position": { "x": 3, "y": 0 @@ -3480,10 +3480,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 487, - "time": 0.06950477845351868, + "time": 0.06950477845351867, "position": { "x": 7, "y": 0 @@ -3503,7 +3503,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 512, "time": 0.07298001737619461, @@ -3526,7 +3526,7 @@ }, { "lineGroupId": 16, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 585, "time": 0.08340573414422242, @@ -3549,7 +3549,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, "time": 0.08340573414422242, @@ -3572,7 +3572,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 609, "time": 0.08688097306689835, @@ -3595,7 +3595,7 @@ }, { "lineGroupId": 20, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 682, "time": 0.09730668983492616, @@ -3618,7 +3618,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 682, "time": 0.09730668983492616, @@ -3640,11 +3640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 706, - "time": 0.10078192875760209, + "noteOrder": 695, + "time": 0.09904430929626412, "position": { "x": 7, "y": 0 @@ -3658,18 +3658,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 731, - "time": 0.10425716768027801, + "noteOrder": 695, + "time": 0.09904430929626412, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3686,13 +3686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 4, "isSliding": false, - "noteOrder": 780, - "time": 0.1112076455256299, + "noteOrder": 707, + "time": 0.10078192875760209, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3704,18 +3704,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 5, "isSliding": false, - "noteOrder": 804, - "time": 0.11468288444830582, + "noteOrder": 707, + "time": 0.10078192875760209, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3732,13 +3732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 828, - "time": 0.11815812337098175, + "noteOrder": 707, + "time": 0.10078192875760209, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3755,13 +3755,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 974, - "time": 0.13900955690703737, + "noteOrder": 719, + "time": 0.10251954821894005, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3773,18 +3773,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 999, - "time": 0.1424847958297133, + "noteOrder": 719, + "time": 0.10251954821894005, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3801,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1023, - "time": 0.14596003475238922, + "noteOrder": 731, + "time": 0.10425716768027803, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3819,18 +3819,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1048, - "time": 0.14943527367506515, + "noteOrder": 731, + "time": 0.10425716768027803, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3847,11 +3847,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1072, - "time": 0.15291051259774108, + "noteOrder": 731, + "time": 0.10425716768027803, "position": { "x": 7, "y": 0 @@ -3870,11 +3870,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1096, - "time": 0.15638575152041703, + "noteOrder": 743, + "time": 0.10599478714161598, "position": { "x": 7, "y": 0 @@ -3888,18 +3888,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1121, - "time": 0.159860990443093, + "noteOrder": 743, + "time": 0.10599478714161598, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3916,13 +3916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1145, - "time": 0.16333622936576891, + "noteOrder": 755, + "time": 0.10773240660295395, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3934,16 +3934,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1169, - "time": 0.16681146828844484, + "noteOrder": 755, + "time": 0.10773240660295395, "position": { "x": 7, "y": 0 @@ -3962,13 +3962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1194, - "time": 0.17028670721112077, + "noteOrder": 780, + "time": 0.11120764552562988, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3980,18 +3980,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 28, "indexInLine": 2, "isSliding": false, - "noteOrder": 1267, - "time": 0.18071242397914855, + "noteOrder": 792, + "time": 0.11294526498696786, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4003,16 +4003,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1316, - "time": 0.18766290182450046, + "noteOrder": 792, + "time": 0.11294526498696786, "position": { "x": 4, "y": 0 @@ -4031,11 +4031,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1340, - "time": 0.1911381407471764, + "noteOrder": 804, + "time": 0.11468288444830582, "position": { "x": 4, "y": 0 @@ -4054,13 +4054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1316, - "time": 0.18766290182450046, + "noteOrder": 804, + "time": 0.11468288444830582, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4072,18 +4072,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1340, - "time": 0.1911381407471764, + "noteOrder": 804, + "time": 0.11468288444830582, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4100,13 +4100,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1364, - "time": 0.19461337966985232, + "noteOrder": 816, + "time": 0.11642050390964379, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4118,18 +4118,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1389, - "time": 0.19808861859252824, + "noteOrder": 816, + "time": 0.11642050390964379, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4146,13 +4146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1413, - "time": 0.20156385751520417, + "noteOrder": 829, + "time": 0.11815812337098176, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4164,18 +4164,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1437, - "time": 0.2050390964378801, + "noteOrder": 829, + "time": 0.11815812337098176, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4192,11 +4192,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1462, - "time": 0.20851433536055602, + "noteOrder": 829, + "time": 0.11815812337098176, "position": { "x": 3, "y": 0 @@ -4215,11 +4215,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1486, - "time": 0.21198957428323198, + "noteOrder": 841, + "time": 0.11989574283231973, "position": { "x": 3, "y": 0 @@ -4233,18 +4233,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1510, - "time": 0.2154648132059079, + "noteOrder": 841, + "time": 0.11989574283231973, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4261,13 +4261,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1535, - "time": 0.21894005212858386, + "noteOrder": 853, + "time": 0.12163336229365769, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4279,16 +4279,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1559, - "time": 0.2224152910512598, + "noteOrder": 853, + "time": 0.12163336229365769, "position": { "x": 3, "y": 0 @@ -4307,11 +4307,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 1583, - "time": 0.22589052997393572, + "noteOrder": 975, + "time": 0.13900955690703734, "position": { "x": 3, "y": 0 @@ -4325,18 +4325,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 38, "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.2363162467419635, + "noteOrder": 987, + "time": 0.14074717636837533, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4348,16 +4348,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1705, - "time": 0.24326672458731538, + "noteOrder": 987, + "time": 0.14074717636837533, "position": { "x": 4, "y": 0 @@ -4371,16 +4371,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1730, - "time": 0.2467419635099913, + "noteOrder": 999, + "time": 0.1424847958297133, "position": { "x": 4, "y": 0 @@ -4394,18 +4394,5331 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1705, + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 999, + "time": 0.1424847958297133, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 999, + "time": 0.1424847958297133, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1011, + "time": 0.14422241529105126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1011, + "time": 0.14422241529105126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1024, + "time": 0.14596003475238922, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1024, + "time": 0.14596003475238922, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1024, + "time": 0.14596003475238922, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1036, + "time": 0.1476976542137272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1036, + "time": 0.1476976542137272, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1048, + "time": 0.14943527367506515, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1048, + "time": 0.14943527367506515, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1048, + "time": 0.14943527367506515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1060, + "time": 0.15117289313640314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1060, + "time": 0.15117289313640314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1072, + "time": 0.1529105125977411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1072, + "time": 0.1529105125977411, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1072, + "time": 0.1529105125977411, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1084, + "time": 0.15464813205907904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1084, + "time": 0.15464813205907904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1097, + "time": 0.15638575152041703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1097, + "time": 0.15638575152041703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1097, + "time": 0.15638575152041703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1109, + "time": 0.158123370981755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1109, + "time": 0.158123370981755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1121, + "time": 0.15986099044309296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1121, + "time": 0.15986099044309296, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1121, + "time": 0.15986099044309296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1133, + "time": 0.16159860990443095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1133, + "time": 0.16159860990443095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1145, + "time": 0.1633362293657689, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1145, + "time": 0.1633362293657689, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1145, + "time": 0.1633362293657689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1158, + "time": 0.16507384882710685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1158, + "time": 0.16507384882710685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1170, + "time": 0.16681146828844484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1194, + "time": 0.17028670721112074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1267, + "time": 0.18071242397914855, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1316, + "time": 0.18766290182450043, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1340, + "time": 0.19113814074717636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1316, + "time": 0.18766290182450043, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1340, + "time": 0.19113814074717636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1365, + "time": 0.19461337966985232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1377, + "time": 0.19635099913119025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1377, + "time": 0.19635099913119025, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1389, + "time": 0.19808861859252824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1389, + "time": 0.19808861859252824, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1389, + "time": 0.19808861859252824, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1401, + "time": 0.1998262380538662, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1401, + "time": 0.1998262380538662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1413, + "time": 0.20156385751520417, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1413, + "time": 0.20156385751520417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1413, + "time": 0.20156385751520417, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1426, + "time": 0.20330147697654213, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1426, + "time": 0.20330147697654213, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1438, + "time": 0.2050390964378801, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1438, + "time": 0.2050390964378801, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1438, + "time": 0.2050390964378801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1450, + "time": 0.20677671589921806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1450, + "time": 0.20677671589921806, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1462, + "time": 0.20851433536055605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1462, + "time": 0.20851433536055605, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1462, + "time": 0.20851433536055605, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1474, + "time": 0.21025195482189402, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1474, + "time": 0.21025195482189402, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21198957428323195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21198957428323195, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21198957428323195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1499, + "time": 0.21372719374456994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1499, + "time": 0.21372719374456994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1523, + "time": 0.21720243266724587, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1523, + "time": 0.21720243266724587, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1535, + "time": 0.21894005212858386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1535, + "time": 0.21894005212858386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1535, + "time": 0.21894005212858386, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1548, + "time": 0.2206776715899218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1548, + "time": 0.2206776715899218, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1560, + "time": 0.22241529105125976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1584, + "time": 0.22589052997393572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1657, + "time": 0.23631624674196353, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.24326672458731538, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.24674196350999128, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, "time": 0.24326672458731538, "position": { - "x": 6, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.24674196350999128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.2536924413553432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1791, + "time": 0.2554300608166811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1791, + "time": 0.2554300608166811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2571676802780191, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2571676802780191, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2571676802780191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1816, + "time": 0.2589052997393571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1816, + "time": 0.2589052997393571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1828, + "time": 0.26064291920069504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1828, + "time": 0.26064291920069504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.26064291920069504, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1840, + "time": 0.26238053866203304, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1840, + "time": 0.26238053866203304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1852, + "time": 0.26411815812337097, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1925, + "time": 0.27454387489139875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1950, + "time": 0.2780191138140747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1962, + "time": 0.27975673327541273, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1974, + "time": 0.28149435273675066, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1974, + "time": 0.28149435273675066, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1986, + "time": 0.2832319721980886, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1998, + "time": 0.2849695916594266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1998, + "time": 0.2849695916594266, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2011, + "time": 0.2867072111207645, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2023, + "time": 0.2884448305821025, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2047, + "time": 0.29192006950477845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2059, + "time": 0.29365768896611644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2071, + "time": 0.2953953084274544, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2084, + "time": 0.29713292788879236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2096, + "time": 0.2988705473501303, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2108, + "time": 0.3006081668114683, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2120, + "time": 0.3023457862728063, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2047, + "time": 0.29192006950477845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2059, + "time": 0.29365768896611644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2071, + "time": 0.2953953084274544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2084, + "time": 0.29713292788879236, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2096, + "time": 0.2988705473501303, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2108, + "time": 0.3006081668114683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2120, + "time": 0.3023457862728063, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2169, + "time": 0.3092962641181581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2181, + "time": 0.31103388357949613, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2181, + "time": 0.31103388357949613, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2193, + "time": 0.31277150304083406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2193, + "time": 0.31277150304083406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2193, + "time": 0.31277150304083406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2205, + "time": 0.31450912250217206, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2205, + "time": 0.31450912250217206, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2218, + "time": 0.31624674196351, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2218, + "time": 0.31624674196351, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2218, + "time": 0.31624674196351, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2230, + "time": 0.31798436142484793, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2230, + "time": 0.31798436142484793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2242, + "time": 0.3197219808861859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2315, + "time": 0.3301476976542137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2340, + "time": 0.3336229365768897, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2352, + "time": 0.3353605560382276, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2364, + "time": 0.3370981754995656, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2364, + "time": 0.3370981754995656, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2376, + "time": 0.33883579496090355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2388, + "time": 0.3405734144222415, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2388, + "time": 0.3405734144222415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2400, + "time": 0.34231103388357953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2413, + "time": 0.34404865334491747, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2461, + "time": 0.3509991311902693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2474, + "time": 0.3527367506516073, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2498, + "time": 0.35621198957428324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2510, + "time": 0.3579496090356212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2461, + "time": 0.3509991311902693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2474, + "time": 0.3527367506516073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2498, + "time": 0.35621198957428324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2510, + "time": 0.3579496090356212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2534, + "time": 0.3614248479582971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2547, + "time": 0.36316246741963515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2547, + "time": 0.36316246741963515, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2559, + "time": 0.3649000868809731, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2559, + "time": 0.3649000868809731, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2559, + "time": 0.3649000868809731, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2571, + "time": 0.366637706342311, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2571, + "time": 0.366637706342311, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2583, + "time": 0.368375325803649, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2583, + "time": 0.368375325803649, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2583, + "time": 0.368375325803649, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37011294526498695, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2595, + "time": 0.37011294526498695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2608, + "time": 0.37185056472632494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2608, + "time": 0.37185056472632494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2608, + "time": 0.37185056472632494, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2620, + "time": 0.37358818418766293, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2620, + "time": 0.37358818418766293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2632, + "time": 0.37532580364900087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2632, + "time": 0.37532580364900087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2632, + "time": 0.37532580364900087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.3788010425716768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2729, + "time": 0.38922675933970463, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2827, + "time": 0.40312771503040834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2839, + "time": 0.40486533449174633, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2839, + "time": 0.40486533449174633, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2876, + "time": 0.4100781928757602, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2888, + "time": 0.4118158123370982, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2888, + "time": 0.4118158123370982, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2900, + "time": 0.4135534317984361, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2900, + "time": 0.4135534317984361, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2949, + "time": 0.42050390964378803, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2961, + "time": 0.42224152910512597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2961, + "time": 0.42224152910512597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2973, + "time": 0.4239791485664639, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2985, + "time": 0.4257167680278019, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2985, + "time": 0.4257167680278019, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2998, + "time": 0.4274543874891399, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3010, + "time": 0.4291920069504779, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3010, + "time": 0.4291920069504779, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3022, + "time": 0.4309296264118158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3034, + "time": 0.43266724587315375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3034, + "time": 0.43266724587315375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3071, + "time": 0.4378801042571677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3083, + "time": 0.43961772371850566, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3083, + "time": 0.43961772371850566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3119, + "time": 0.4448305821025195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3132, + "time": 0.4465682015638575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3132, + "time": 0.4465682015638575, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4483058210251955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4483058210251955, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4483058210251955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3156, + "time": 0.45004344048653344, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3156, + "time": 0.45004344048653344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3180, + "time": 0.45351867940920937, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3180, + "time": 0.45351867940920937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3192, + "time": 0.45525629887054736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3192, + "time": 0.45525629887054736, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3192, + "time": 0.45525629887054736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3205, + "time": 0.4569939183318853, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3205, + "time": 0.4569939183318853, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4587315377932233, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4587315377932233, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3266, + "time": 0.46568201563857514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3314, + "time": 0.47263249348392705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3266, + "time": 0.46568201563857514, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3314, + "time": 0.47263249348392705, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.4795829713292789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3375, + "time": 0.48132059079061684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3375, + "time": 0.48132059079061684, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.48305821025195483, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3400, + "time": 0.48479582971329277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3400, + "time": 0.48479582971329277, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4417,18 +9730,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.2467419635099913, + "noteOrder": 3509, + "time": 0.5004344048653345, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4445,13 +9758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, - "time": 0.2536924413553432, + "noteOrder": 3521, + "time": 0.5021720243266725, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4468,11 +9781,80 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1803, - "time": 0.2571676802780191, + "noteOrder": 3521, + "time": 0.5021720243266725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5039096437880104, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5039096437880104, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5039096437880104, "position": { "x": 3, "y": 0 @@ -4491,13 +9873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1827, - "time": 0.2606429192006951, + "noteOrder": 3546, + "time": 0.5056472632493484, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4509,18 +9891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1851, - "time": 0.264118158123371, + "noteOrder": 3546, + "time": 0.5056472632493484, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4537,11 +9919,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1925, - "time": 0.2745438748913988, + "noteOrder": 3558, + "time": 0.5073848827106864, "position": { "x": 4, "y": 0 @@ -4560,11 +9942,34 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5073848827106864, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, - "time": 0.27801911381407474, + "noteOrder": 3558, + "time": 0.5073848827106864, "position": { "x": 3, "y": 0 @@ -4583,11 +9988,34 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5091225021720243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1961, - "time": 0.2797567332754127, + "noteOrder": 3570, + "time": 0.5091225021720243, "position": { "x": 4, "y": 0 @@ -4606,11 +10034,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1973, - "time": 0.28149435273675066, + "noteOrder": 3582, + "time": 0.5108601216333623, "position": { "x": 4, "y": 0 @@ -4629,13 +10057,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1973, - "time": 0.28149435273675066, + "noteOrder": 3582, + "time": 0.5108601216333623, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4647,18 +10075,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 1985, - "time": 0.28323197219808866, + "noteOrder": 3582, + "time": 0.5108601216333623, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4675,13 +10103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 160, "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, - "time": 0.2849695916594266, + "noteOrder": 3595, + "time": 0.5125977410947002, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4698,13 +10126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1998, - "time": 0.2849695916594266, + "noteOrder": 3595, + "time": 0.5125977410947002, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4716,16 +10144,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2010, - "time": 0.2867072111207646, + "noteOrder": 3607, + "time": 0.5143353605560382, "position": { "x": 4, "y": 0 @@ -4739,18 +10167,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 2, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2022, - "time": 0.2884448305821025, + "noteOrder": 3607, + "time": 0.5143353605560382, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4762,18 +10190,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2046, - "time": 0.29192006950477845, + "noteOrder": 3704, + "time": 0.5282363162467419, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4790,13 +10218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 2059, - "time": 0.29365768896611644, + "noteOrder": 3899, + "time": 0.5560382276281494, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4813,13 +10241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 181, "indexInLine": 2, "isSliding": false, - "noteOrder": 2071, - "time": 0.2953953084274544, + "noteOrder": 3911, + "time": 0.5577758470894875, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4836,13 +10264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 181, "indexInLine": 3, "isSliding": false, - "noteOrder": 2083, - "time": 0.29713292788879236, + "noteOrder": 3911, + "time": 0.5577758470894875, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4859,13 +10287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 181, "indexInLine": 4, "isSliding": false, - "noteOrder": 2095, - "time": 0.2988705473501303, + "noteOrder": 3924, + "time": 0.5595134665508255, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4882,13 +10310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 181, "indexInLine": 5, "isSliding": false, - "noteOrder": 2107, - "time": 0.3006081668114683, + "noteOrder": 3924, + "time": 0.5595134665508255, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4905,13 +10333,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 6, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2119, - "time": 0.3023457862728062, + "noteOrder": 3924, + "time": 0.5595134665508255, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4923,18 +10351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2046, - "time": 0.29192006950477845, + "noteOrder": 3936, + "time": 0.5612510860121633, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4951,11 +10379,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2059, - "time": 0.29365768896611644, + "noteOrder": 3936, + "time": 0.5612510860121633, "position": { "x": 6, "y": 0 @@ -4974,11 +10402,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 2, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2071, - "time": 0.2953953084274544, + "noteOrder": 3948, + "time": 0.5629887054735013, "position": { "x": 6, "y": 0 @@ -4997,13 +10425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 3, + "lineGroupId": 182, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2083, - "time": 0.29713292788879236, + "noteOrder": 3948, + "time": 0.5629887054735013, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5020,13 +10448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 4, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2095, - "time": 0.2988705473501303, + "noteOrder": 3948, + "time": 0.5629887054735013, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5038,18 +10466,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 5, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2107, - "time": 0.3006081668114683, + "noteOrder": 3960, + "time": 0.5647263249348393, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5061,16 +10489,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 6, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2119, - "time": 0.3023457862728062, + "noteOrder": 3960, + "time": 0.5647263249348393, "position": { "x": 6, "y": 0 @@ -5084,18 +10512,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2168, - "time": 0.3092962641181581, + "noteOrder": 3972, + "time": 0.5664639443961772, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5112,13 +10540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2193, - "time": 0.31277150304083406, + "noteOrder": 3972, + "time": 0.5664639443961772, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5130,18 +10558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2217, - "time": 0.31624674196351005, + "noteOrder": 3972, + "time": 0.5664639443961772, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5153,18 +10581,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2241, - "time": 0.319721980886186, + "noteOrder": 3985, + "time": 0.5682015638575152, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5181,11 +10609,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2314, - "time": 0.33014769765421376, + "noteOrder": 3985, + "time": 0.5682015638575152, "position": { "x": 6, "y": 0 @@ -5204,13 +10632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2339, - "time": 0.3336229365768897, + "noteOrder": 3997, + "time": 0.5699391833188532, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5222,18 +10650,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2351, - "time": 0.3353605560382276, + "noteOrder": 3997, + "time": 0.5699391833188532, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5245,18 +10673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 2, + "lineGroupId": 184, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2363, - "time": 0.3370981754995656, + "noteOrder": 4094, + "time": 0.5838401390095569, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5268,16 +10696,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2363, - "time": 0.3370981754995656, + "noteOrder": 4094, + "time": 0.5838401390095569, "position": { "x": 3, "y": 0 @@ -5291,18 +10719,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2375, - "time": 0.3388357949609036, + "noteOrder": 4167, + "time": 0.5942658557775847, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5314,18 +10742,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2387, - "time": 0.34057341442224154, + "noteOrder": 4289, + "time": 0.6116420503909644, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5342,11 +10770,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2387, - "time": 0.34057341442224154, + "noteOrder": 4301, + "time": 0.6133796698523023, "position": { "x": 7, "y": 0 @@ -5360,16 +10788,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2400, - "time": 0.34231103388357953, + "noteOrder": 4301, + "time": 0.6133796698523023, "position": { "x": 6, "y": 0 @@ -5383,16 +10811,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2412, - "time": 0.34404865334491747, + "noteOrder": 4314, + "time": 0.6151172893136403, "position": { "x": 6, "y": 0 @@ -5406,18 +10834,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2460, - "time": 0.3509991311902693, + "noteOrder": 4314, + "time": 0.6151172893136403, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5434,13 +10862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 203, "indexInLine": 1, "isSliding": false, - "noteOrder": 2473, - "time": 0.3527367506516073, + "noteOrder": 4338, + "time": 0.6185925282363162, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5452,16 +10880,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 203, "indexInLine": 2, "isSliding": false, - "noteOrder": 2497, - "time": 0.35621198957428324, + "noteOrder": 4350, + "time": 0.6203301476976543, "position": { "x": 7, "y": 0 @@ -5475,18 +10903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 203, "indexInLine": 3, "isSliding": false, - "noteOrder": 2509, - "time": 0.3579496090356212, + "noteOrder": 4350, + "time": 0.6203301476976543, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5498,18 +10926,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2460, - "time": 0.3509991311902693, + "noteOrder": 4362, + "time": 0.6220677671589923, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5526,13 +10954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2473, - "time": 0.3527367506516073, + "noteOrder": 4362, + "time": 0.6220677671589923, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5549,13 +10977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2497, - "time": 0.35621198957428324, + "noteOrder": 4387, + "time": 0.6255430060816681, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5567,18 +10995,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 3, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.3579496090356212, + "noteOrder": 4411, + "time": 0.6290182450043441, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5590,18 +11018,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2534, - "time": 0.3614248479582971, + "noteOrder": 4435, + "time": 0.63249348392702, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5613,18 +11041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2558, - "time": 0.36490008688097303, + "noteOrder": 4460, + "time": 0.6359687228496959, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5641,13 +11069,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2582, - "time": 0.368375325803649, + "noteOrder": 4484, + "time": 0.6394439617723718, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5664,13 +11092,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2607, - "time": 0.37185056472632494, + "noteOrder": 4508, + "time": 0.6429192006950478, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5682,18 +11110,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2631, - "time": 0.3753258036490009, + "noteOrder": 4582, + "time": 0.6533449174630755, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5710,13 +11138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 215, "indexInLine": 1, "isSliding": false, - "noteOrder": 2655, - "time": 0.37880104257167685, + "noteOrder": 4630, + "time": 0.6602953953084274, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5728,16 +11156,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 215, "indexInLine": 2, "isSliding": false, - "noteOrder": 2728, - "time": 0.38922675933970463, + "noteOrder": 4655, + "time": 0.6637706342311034, "position": { "x": 4, "y": 0 @@ -5751,18 +11179,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2826, - "time": 0.40312771503040834, + "noteOrder": 4630, + "time": 0.6602953953084274, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5774,18 +11202,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2875, - "time": 0.4100781928757602, + "noteOrder": 4655, + "time": 0.6637706342311034, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5802,11 +11230,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2948, - "time": 0.420503909643788, + "noteOrder": 4679, + "time": 0.6672458731537794, "position": { "x": 3, "y": 0 @@ -5825,13 +11253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2972, - "time": 0.42397914856646396, + "noteOrder": 4691, + "time": 0.6689834926151174, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5843,18 +11271,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2996, - "time": 0.4274543874891399, + "noteOrder": 4691, + "time": 0.6689834926151174, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5871,13 +11299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3021, - "time": 0.4309296264118158, + "noteOrder": 4703, + "time": 0.6707211120764552, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5889,18 +11317,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3070, - "time": 0.4378801042571677, + "noteOrder": 4703, + "time": 0.6707211120764552, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5917,13 +11345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3118, - "time": 0.4448305821025196, + "noteOrder": 4728, + "time": 0.6741963509991312, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5940,13 +11368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3143, - "time": 0.4483058210251955, + "noteOrder": 4740, + "time": 0.6759339704604691, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5958,18 +11386,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3167, - "time": 0.45178105994787143, + "noteOrder": 4740, + "time": 0.6759339704604691, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5986,13 +11414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3191, - "time": 0.45525629887054736, + "noteOrder": 4752, + "time": 0.6776715899218071, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6004,18 +11432,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3264, - "time": 0.46568201563857514, + "noteOrder": 4752, + "time": 0.6776715899218071, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6027,16 +11455,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 3313, - "time": 0.472632493483927, + "noteOrder": 4777, + "time": 0.681146828844483, "position": { "x": 3, "y": 0 @@ -6055,11 +11483,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3264, - "time": 0.46568201563857514, + "noteOrder": 4801, + "time": 0.6846220677671591, "position": { "x": 3, "y": 0 @@ -6073,16 +11501,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 3313, - "time": 0.472632493483927, + "noteOrder": 4825, + "time": 0.6880973066898349, "position": { "x": 7, "y": 0 @@ -6101,11 +11529,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.4795829713292789, + "noteOrder": 4850, + "time": 0.6915725456125109, "position": { "x": 7, "y": 0 @@ -6124,11 +11552,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.48305821025195483, + "noteOrder": 4874, + "time": 0.6950477845351868, "position": { "x": 3, "y": 0 @@ -6147,11 +11575,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3508, - "time": 0.5004344048653344, + "noteOrder": 4898, + "time": 0.6985230234578627, "position": { "x": 3, "y": 0 @@ -6165,18 +11593,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3532, - "time": 0.5039096437880104, + "noteOrder": 4972, + "time": 0.7089487402258906, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6193,13 +11621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.5073848827106864, + "noteOrder": 5020, + "time": 0.7158992180712423, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6216,13 +11644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3581, - "time": 0.5108601216333623, + "noteOrder": 5045, + "time": 0.7193744569939183, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6234,18 +11662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 3, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3703, - "time": 0.528236316246742, + "noteOrder": 5020, + "time": 0.7158992180712423, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6262,13 +11690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3898, - "time": 0.5560382276281495, + "noteOrder": 5045, + "time": 0.7193744569939183, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6285,13 +11713,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3922, - "time": 0.5595134665508253, + "noteOrder": 5069, + "time": 0.7228496959165942, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6303,18 +11731,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3947, - "time": 0.5629887054735013, + "noteOrder": 5081, + "time": 0.7245873153779322, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6331,13 +11759,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3971, - "time": 0.5664639443961773, + "noteOrder": 5081, + "time": 0.7245873153779322, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6349,18 +11777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 3, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4093, - "time": 0.5838401390095569, + "noteOrder": 5118, + "time": 0.7298001737619462, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6377,13 +11805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4093, - "time": 0.5838401390095569, + "noteOrder": 5130, + "time": 0.7315377932232842, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6395,18 +11823,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4166, - "time": 0.5942658557775847, + "noteOrder": 5130, + "time": 0.7315377932232842, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6418,18 +11846,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4288, - "time": 0.6116420503909643, + "noteOrder": 5166, + "time": 0.736750651607298, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6441,18 +11869,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4336, - "time": 0.6185925282363162, + "noteOrder": 5179, + "time": 0.738488271068636, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6469,13 +11897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4385, - "time": 0.6255430060816681, + "noteOrder": 5179, + "time": 0.738488271068636, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6487,18 +11915,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 241, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4409, - "time": 0.629018245004344, + "noteOrder": 5191, + "time": 0.7402258905299739, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6510,18 +11938,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4434, - "time": 0.6324934839270201, + "noteOrder": 5191, + "time": 0.7402258905299739, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6538,11 +11966,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, + "lineGroupId": 242, "indexInLine": 1, "isSliding": false, - "noteOrder": 4458, - "time": 0.635968722849696, + "noteOrder": 5191, + "time": 0.7402258905299739, "position": { "x": 3, "y": 0 @@ -6556,18 +11984,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4482, - "time": 0.639443961772372, + "noteOrder": 5203, + "time": 0.7419635099913119, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6584,13 +12012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4507, - "time": 0.6429192006950478, + "noteOrder": 5203, + "time": 0.7419635099913119, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6607,13 +12035,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 2, + "lineGroupId": 242, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4580, - "time": 0.6533449174630757, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6630,13 +12058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4629, - "time": 0.6602953953084275, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6648,18 +12076,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 4653, - "time": 0.6637706342311034, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6676,13 +12104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4629, - "time": 0.6602953953084275, + "noteOrder": 5227, + "time": 0.7454387489139878, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6694,18 +12122,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4653, - "time": 0.6637706342311034, + "noteOrder": 5227, + "time": 0.7454387489139878, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6717,18 +12145,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4677, - "time": 0.6672458731537794, + "noteOrder": 5240, + "time": 0.7471763683753259, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6740,18 +12168,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4726, - "time": 0.6741963509991312, + "noteOrder": 5252, + "time": 0.7489139878366639, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6768,13 +12196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4775, - "time": 0.6811468288444831, + "noteOrder": 5252, + "time": 0.7489139878366639, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6786,16 +12214,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 4799, - "time": 0.6846220677671591, + "noteOrder": 5264, + "time": 0.7506516072980017, "position": { "x": 3, "y": 0 @@ -6814,13 +12242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4824, - "time": 0.6880973066898349, + "noteOrder": 5288, + "time": 0.7541268462206777, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6832,16 +12260,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, + "lineGroupId": 247, "indexInLine": 1, "isSliding": false, - "noteOrder": 4848, - "time": 0.6915725456125109, + "noteOrder": 5313, + "time": 0.7576020851433536, "position": { "x": 7, "y": 0 @@ -6860,13 +12288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4872, - "time": 0.6950477845351868, + "noteOrder": 5337, + "time": 0.7610773240660296, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6878,18 +12306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 255, "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, - "time": 0.6985230234578628, + "noteOrder": 5459, + "time": 0.7784535186794093, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6901,18 +12329,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 255, "indexInLine": 2, "isSliding": false, - "noteOrder": 4970, - "time": 0.7089487402258905, + "noteOrder": 5471, + "time": 0.7801911381407471, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6924,16 +12352,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5018, - "time": 0.7158992180712423, + "noteOrder": 5471, + "time": 0.7801911381407471, "position": { "x": 6, "y": 0 @@ -6952,13 +12380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 258, "indexInLine": 1, "isSliding": false, - "noteOrder": 5043, - "time": 0.7193744569939183, + "noteOrder": 5508, + "time": 0.785403996524761, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6970,18 +12398,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5018, - "time": 0.7158992180712423, + "noteOrder": 5520, + "time": 0.787141615986099, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6998,11 +12426,11 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 1, + "lineGroupId": 258, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5043, - "time": 0.7193744569939183, + "noteOrder": 5520, + "time": 0.787141615986099, "position": { "x": 4, "y": 0 @@ -7021,13 +12449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5067, - "time": 0.7228496959165942, + "noteOrder": 5556, + "time": 0.792354474370113, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7039,16 +12467,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5116, - "time": 0.7298001737619461, + "noteOrder": 5569, + "time": 0.794092093831451, "position": { "x": 7, "y": 0 @@ -7067,13 +12495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5165, - "time": 0.736750651607298, + "noteOrder": 5569, + "time": 0.794092093831451, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7085,18 +12513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5189, - "time": 0.7402258905299739, + "noteOrder": 5581, + "time": 0.795829713292789, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7113,13 +12541,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5213, - "time": 0.7437011294526499, + "noteOrder": 5581, + "time": 0.795829713292789, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7131,16 +12559,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5238, - "time": 0.7471763683753258, + "noteOrder": 5581, + "time": 0.795829713292789, "position": { "x": 7, "y": 0 @@ -7154,18 +12582,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5262, - "time": 0.7506516072980018, + "noteOrder": 5593, + "time": 0.7975673327541268, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7182,13 +12610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5286, - "time": 0.7541268462206777, + "noteOrder": 5593, + "time": 0.7975673327541268, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7205,13 +12633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5311, - "time": 0.7576020851433537, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7223,18 +12651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5335, - "time": 0.7610773240660296, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7246,16 +12674,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5457, - "time": 0.7784535186794093, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { "x": 7, "y": 0 @@ -7274,13 +12702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5506, - "time": 0.7854039965247611, + "noteOrder": 5617, + "time": 0.8010425716768028, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7292,18 +12720,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5554, - "time": 0.792354474370113, + "noteOrder": 5617, + "time": 0.8010425716768028, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7320,13 +12748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5579, - "time": 0.795829713292789, + "noteOrder": 5629, + "time": 0.8027801911381407, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7343,13 +12771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5603, - "time": 0.7993049522154648, + "noteOrder": 5642, + "time": 0.8045178105994787, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7361,18 +12789,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 264, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5627, - "time": 0.8027801911381408, + "noteOrder": 5642, + "time": 0.8045178105994787, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7390,9 +12818,9 @@ }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5652, + "noteOrder": 5654, "time": 0.8062554300608167, "position": { "x": 7, @@ -7413,9 +12841,9 @@ }, { "lineGroupId": 265, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5676, + "noteOrder": 5678, "time": 0.8097306689834927, "position": { "x": 6, @@ -7436,9 +12864,9 @@ }, { "lineGroupId": 267, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8132059079061685, "position": { "x": 3, @@ -7459,9 +12887,9 @@ }, { "lineGroupId": 267, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5725, + "noteOrder": 5727, "time": 0.8166811468288445, "position": { "x": 4, @@ -7482,9 +12910,9 @@ }, { "lineGroupId": 271, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5774, + "noteOrder": 5776, "time": 0.8236316246741964, "position": { "x": 7, @@ -7505,9 +12933,9 @@ }, { "lineGroupId": 271, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8305821025195482, "position": { "x": 3, @@ -7528,9 +12956,9 @@ }, { "lineGroupId": 272, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5774, + "noteOrder": 5776, "time": 0.8236316246741964, "position": { "x": 3, @@ -7551,9 +12979,9 @@ }, { "lineGroupId": 272, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8305821025195482, "position": { "x": 7, @@ -7574,10 +13002,10 @@ }, { "lineGroupId": 274, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5847, - "time": 0.8340573414422241, + "noteOrder": 5849, + "time": 0.8340573414422242, "position": { "x": 3, "y": 0 @@ -7597,10 +13025,10 @@ }, { "lineGroupId": 274, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5895, - "time": 0.841007819287576, + "noteOrder": 5898, + "time": 0.8410078192875761, "position": { "x": 3, "y": 0 @@ -7620,10 +13048,10 @@ }, { "lineGroupId": 275, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5847, - "time": 0.8340573414422241, + "noteOrder": 5849, + "time": 0.8340573414422242, "position": { "x": 7, "y": 0 @@ -7643,10 +13071,10 @@ }, { "lineGroupId": 275, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5895, - "time": 0.841007819287576, + "noteOrder": 5898, + "time": 0.8410078192875761, "position": { "x": 6, "y": 0 @@ -7666,10 +13094,10 @@ }, { "lineGroupId": 286, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6005, - "time": 0.8566463944396177, + "noteOrder": 6007, + "time": 0.8566463944396178, "position": { "x": 3, "y": 0 @@ -7689,10 +13117,10 @@ }, { "lineGroupId": 286, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6115, - "time": 0.8722849695916595, + "noteOrder": 6117, + "time": 0.8722849695916594, "position": { "x": 3, "y": 0 @@ -7712,10 +13140,10 @@ }, { "lineGroupId": 297, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6200, - "time": 0.8844483058210253, + "noteOrder": 6202, + "time": 0.8844483058210252, "position": { "x": 7, "y": 0 @@ -7735,9 +13163,9 @@ }, { "lineGroupId": 297, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6310, + "noteOrder": 6312, "time": 0.9000868809730669, "position": { "x": 7, @@ -7758,9 +13186,9 @@ }, { "lineGroupId": 303, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6334, + "noteOrder": 6336, "time": 0.9035621198957429, "position": { "x": 7, @@ -7781,10 +13209,10 @@ }, { "lineGroupId": 303, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6358, - "time": 0.9070373588184188, + "noteOrder": 6361, + "time": 0.9070373588184187, "position": { "x": 7, "y": 0 @@ -7804,9 +13232,9 @@ }, { "lineGroupId": 305, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6383, + "noteOrder": 6385, "time": 0.9105125977410947, "position": { "x": 3, @@ -7827,10 +13255,10 @@ }, { "lineGroupId": 305, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6407, - "time": 0.9139878366637707, + "noteOrder": 6409, + "time": 0.9139878366637706, "position": { "x": 3, "y": 0 @@ -7850,9 +13278,9 @@ }, { "lineGroupId": 313, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6529, + "noteOrder": 6531, "time": 0.9313640312771503, "position": { "x": 4, @@ -7873,10 +13301,10 @@ }, { "lineGroupId": 313, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6553, - "time": 0.9348392701998263, + "noteOrder": 6556, + "time": 0.9348392701998262, "position": { "x": 4, "y": 0 @@ -7896,10 +13324,10 @@ }, { "lineGroupId": 315, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6578, - "time": 0.9383145091225021, + "noteOrder": 6580, + "time": 0.9383145091225022, "position": { "x": 6, "y": 0 @@ -7919,9 +13347,9 @@ }, { "lineGroupId": 315, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6602, + "noteOrder": 6604, "time": 0.9417897480451781, "position": { "x": 6, diff --git a/tracks/Next Stage 2022/319_difficulty_1b.json b/tracks/Next Stage 2022/319_difficulty_1b.json index 56b0bb8d..73a03fd3 100644 --- a/tracks/Next Stage 2022/319_difficulty_1b.json +++ b/tracks/Next Stage 2022/319_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.013900955690703737, + "time": 0.013900955690703735, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.01737619461337967, + "time": 0.017376194613379668, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 536, - "time": 0.07645525629887054, + "time": 0.07645525629887055, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 560, - "time": 0.0799304952215465, + "noteOrder": 561, + "time": 0.07993049522154648, "position": { "x": 8, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 633, + "noteOrder": 634, "time": 0.09035621198957428, "position": { "x": 6, @@ -274,7 +274,7 @@ }, { "noteOrder": 658, - "time": 0.09383145091225023, + "time": 0.09383145091225022, "position": { "x": 2, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 706, + "noteOrder": 707, "time": 0.10078192875760209, "position": { "x": 6, @@ -334,7 +334,7 @@ }, { "noteOrder": 780, - "time": 0.1112076455256299, + "time": 0.11120764552562988, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 828, - "time": 0.11815812337098175, + "noteOrder": 829, + "time": 0.11815812337098176, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 877, - "time": 0.1251086012163336, + "time": 0.12510860121633363, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 901, + "noteOrder": 902, "time": 0.12858384013900956, "position": { "x": 3, @@ -454,7 +454,7 @@ }, { "noteOrder": 926, - "time": 0.1320590790616855, + "time": 0.13205907906168549, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 926, - "time": 0.1320590790616855, + "time": 0.13205907906168549, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1194, - "time": 0.17028670721112077, + "time": 0.17028670721112074, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1242, - "time": 0.17723718505647262, + "noteOrder": 1243, + "time": 0.17723718505647265, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1291, + "noteOrder": 1292, "time": 0.1841876629018245, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1583, + "noteOrder": 1584, "time": 0.22589052997393572, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 1633, "time": 0.23284100781928757, "position": { "x": 6, @@ -654,7 +654,7 @@ }, { "noteOrder": 1657, - "time": 0.2363162467419635, + "time": 0.23631624674196353, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.23979148566463945, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2536924413553432, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1827, - "time": 0.2606429192006951, + "noteOrder": 1828, + "time": 0.26064291920069504, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1851, - "time": 0.264118158123371, + "noteOrder": 1852, + "time": 0.26411815812337097, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1876, - "time": 0.26759339704604695, + "time": 0.2675933970460469, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1900, + "noteOrder": 1901, "time": 0.2710686359687229, "position": { "x": 4, @@ -794,7 +794,7 @@ }, { "noteOrder": 1925, - "time": 0.2745438748913988, + "time": 0.27454387489139875, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1973, + "noteOrder": 1974, "time": 0.28149435273675066, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.2884448305821025, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2046, + "noteOrder": 2047, "time": 0.29192006950477845, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2095, + "noteOrder": 2096, "time": 0.2988705473501303, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2119, - "time": 0.3023457862728062, + "noteOrder": 2120, + "time": 0.3023457862728063, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2168, + "noteOrder": 2169, "time": 0.3092962641181581, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2217, - "time": 0.31624674196351005, + "noteOrder": 2218, + "time": 0.31624674196351, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2217, - "time": 0.31624674196351005, + "noteOrder": 2218, + "time": 0.31624674196351, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2339, + "noteOrder": 2340, "time": 0.3336229365768897, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3370981754995656, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2387, - "time": 0.34057341442224154, + "noteOrder": 2388, + "time": 0.3405734144222415, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2412, + "noteOrder": 2413, "time": 0.34404865334491747, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2485, - "time": 0.35447437011294525, + "noteOrder": 2486, + "time": 0.3544743701129453, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2485, - "time": 0.35447437011294525, + "noteOrder": 2486, + "time": 0.3544743701129453, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.3579496090356212, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.3579496090356212, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2655, - "time": 0.37880104257167685, + "noteOrder": 2656, + "time": 0.3788010425716768, "position": { "x": 8, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2680, - "time": 0.3822762814943528, + "noteOrder": 2681, + "time": 0.3822762814943527, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2704, + "noteOrder": 2705, "time": 0.3857515204170287, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2826, + "noteOrder": 2827, "time": 0.40312771503040834, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2850, + "noteOrder": 2851, "time": 0.40660295395308427, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2875, + "noteOrder": 2876, "time": 0.4100781928757602, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2899, + "noteOrder": 2900, "time": 0.4135534317984361, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3045, - "time": 0.4344048653344918, + "noteOrder": 3046, + "time": 0.43440486533449174, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3070, + "noteOrder": 3071, "time": 0.4378801042571677, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3094, - "time": 0.44135534317984365, + "noteOrder": 3095, + "time": 0.4413553431798436, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3217, "time": 0.4587315377932233, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3241, "time": 0.4622067767158992, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3266, "time": 0.46568201563857514, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3266, "time": 0.46568201563857514, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3289, - "time": 0.46915725456125107, + "noteOrder": 3290, + "time": 0.4691572545612511, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3289, - "time": 0.46915725456125107, + "noteOrder": 3290, + "time": 0.4691572545612511, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.4761077324066029, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.4761077324066029, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3362, + "noteOrder": 3363, "time": 0.4795829713292789, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.48305821025195483, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3411, + "noteOrder": 3412, "time": 0.48653344917463076, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3435, - "time": 0.4900086880973067, + "noteOrder": 3436, + "time": 0.49000868809730663, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.4934839270199826, + "noteOrder": 3461, + "time": 0.49348392701998256, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.49695916594265854, + "noteOrder": 3485, + "time": 0.4969591659426586, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3534, "time": 0.5039096437880104, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3582, "time": 0.5108601216333623, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3630, + "noteOrder": 3631, "time": 0.5178105994787142, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3654, - "time": 0.5212858384013902, + "noteOrder": 3656, + "time": 0.5212858384013901, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3679, + "noteOrder": 3680, "time": 0.5247610773240661, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3703, - "time": 0.528236316246742, + "noteOrder": 3704, + "time": 0.5282363162467419, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3727, - "time": 0.5317115551694179, + "noteOrder": 3729, + "time": 0.5317115551694178, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3752, - "time": 0.5351867940920939, + "noteOrder": 3753, + "time": 0.5351867940920938, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.5386620330147698, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3802, "time": 0.5421372719374458, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 3826, "time": 0.5456125108601216, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3849, - "time": 0.5490877497827976, + "noteOrder": 3850, + "time": 0.5490877497827975, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3873, + "noteOrder": 3875, "time": 0.5525629887054735, "position": { "x": 5, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.5595134665508253, + "noteOrder": 3924, + "time": 0.5595134665508255, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3971, - "time": 0.5664639443961773, + "noteOrder": 3972, + "time": 0.5664639443961772, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.5699391833188532, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4020, - "time": 0.5734144222415292, + "noteOrder": 4021, + "time": 0.573414422241529, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4045, "time": 0.576889661164205, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4045, "time": 0.576889661164205, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4070, "time": 0.580364900086881, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4070, "time": 0.580364900086881, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.5977410947002606, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4215, + "noteOrder": 4216, "time": 0.6012163336229366, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4239, - "time": 0.6046915725456125, + "noteOrder": 4240, + "time": 0.6046915725456126, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4239, - "time": 0.6046915725456125, + "noteOrder": 4240, + "time": 0.6046915725456126, "position": { "x": 4, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4263, + "noteOrder": 4265, "time": 0.6081668114682884, "position": { "x": 7, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4263, + "noteOrder": 4265, "time": 0.6081668114682884, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4336, + "noteOrder": 4338, "time": 0.6185925282363162, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4361, - "time": 0.6220677671589921, + "noteOrder": 4362, + "time": 0.6220677671589923, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4434, - "time": 0.6324934839270201, + "noteOrder": 4435, + "time": 0.63249348392702, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4458, - "time": 0.635968722849696, + "noteOrder": 4460, + "time": 0.6359687228496959, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4507, + "noteOrder": 4508, "time": 0.6429192006950478, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4531, + "noteOrder": 4533, "time": 0.6463944396177238, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4556, + "noteOrder": 4557, "time": 0.6498696785403997, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.6568201563857515, "position": { "x": 4, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4653, + "noteOrder": 4655, "time": 0.6637706342311034, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4726, + "noteOrder": 4728, "time": 0.6741963509991312, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4750, - "time": 0.6776715899218072, + "noteOrder": 4752, + "time": 0.6776715899218071, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4825, "time": 0.6880973066898349, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4850, "time": 0.6915725456125109, "position": { "x": 3, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4897, - "time": 0.6985230234578628, + "noteOrder": 4898, + "time": 0.6985230234578627, "position": { "x": 5, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4921, + "noteOrder": 4923, "time": 0.7019982623805386, "position": { "x": 5, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4945, + "noteOrder": 4947, "time": 0.7054735013032146, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.7193744569939183, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.7193744569939183, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5286, + "noteOrder": 5288, "time": 0.7541268462206777, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.7610773240660296, "position": { "x": 6, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5359, - "time": 0.7645525629887056, + "noteOrder": 5361, + "time": 0.7645525629887054, "position": { "x": 3, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.7680278019113814, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5676, + "noteOrder": 5678, "time": 0.8097306689834927, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5725, + "noteOrder": 5727, "time": 0.8166811468288445, "position": { "x": 4, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5749, + "noteOrder": 5751, "time": 0.8201563857515204, "position": { "x": 7, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5774, + "noteOrder": 5776, "time": 0.8236316246741964, "position": { "x": 3, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5798, + "noteOrder": 5800, "time": 0.8271068635968722, "position": { "x": 6, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5798, + "noteOrder": 5800, "time": 0.8271068635968722, "position": { "x": 4, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5944, - "time": 0.8479582971329279, + "noteOrder": 5946, + "time": 0.8479582971329278, "position": { "x": 3, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5969, + "noteOrder": 5971, "time": 0.8514335360556038, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5993, + "noteOrder": 5995, "time": 0.8549087749782798, "position": { "x": 6, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5993, + "noteOrder": 5995, "time": 0.8549087749782798, "position": { "x": 4, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6139, + "noteOrder": 6141, "time": 0.8757602085143354, "position": { "x": 7, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6163, + "noteOrder": 6166, "time": 0.8792354474370113, "position": { "x": 3, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6188, - "time": 0.8827106863596873, + "noteOrder": 6190, + "time": 0.8827106863596872, "position": { "x": 6, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6188, - "time": 0.8827106863596873, + "noteOrder": 6190, + "time": 0.8827106863596872, "position": { "x": 4, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6358, - "time": 0.9070373588184188, + "noteOrder": 6361, + "time": 0.9070373588184187, "position": { "x": 2, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6383, + "noteOrder": 6385, "time": 0.9105125977410947, "position": { "x": 6, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6407, - "time": 0.9139878366637707, + "noteOrder": 6409, + "time": 0.9139878366637706, "position": { "x": 2, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6456, + "noteOrder": 6458, "time": 0.9209383145091226, "position": { "x": 8, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6480, + "noteOrder": 6482, "time": 0.9244135534317984, "position": { "x": 4, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 6507, "time": 0.9278887923544744, "position": { "x": 8, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6529, + "noteOrder": 6531, "time": 0.9313640312771503, "position": { "x": 3, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.9348392701998263, + "noteOrder": 6556, + "time": 0.9348392701998262, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6578, - "time": 0.9383145091225021, + "noteOrder": 6580, + "time": 0.9383145091225022, "position": { "x": 6, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6578, - "time": 0.9383145091225021, + "noteOrder": 6580, + "time": 0.9383145091225022, "position": { "x": 4, "y": 0 @@ -3116,7 +3116,7 @@ "lineNodes": [ { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 171, "time": 0.02432667245873154, @@ -3139,10 +3139,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.03822762814943527, + "time": 0.038227628149435276, "position": { "x": 7, "y": 0 @@ -3162,7 +3162,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 171, "time": 0.02432667245873154, @@ -3185,10 +3185,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.03822762814943527, + "time": 0.038227628149435276, "position": { "x": 3, "y": 0 @@ -3208,10 +3208,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 365, - "time": 0.052128583840139006, + "noteOrder": 366, + "time": 0.05212858384013901, "position": { "x": 7, "y": 0 @@ -3231,10 +3231,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 463, - "time": 0.06602953953084276, + "time": 0.06602953953084274, "position": { "x": 7, "y": 0 @@ -3254,10 +3254,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 365, - "time": 0.052128583840139006, + "noteOrder": 366, + "time": 0.05212858384013901, "position": { "x": 3, "y": 0 @@ -3277,10 +3277,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 463, - "time": 0.06602953953084276, + "time": 0.06602953953084274, "position": { "x": 3, "y": 0 @@ -3300,10 +3300,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 487, - "time": 0.06950477845351868, + "time": 0.06950477845351867, "position": { "x": 6, "y": 0 @@ -3323,7 +3323,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 585, "time": 0.08340573414422242, @@ -3346,7 +3346,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, "time": 0.08340573414422242, @@ -3369,7 +3369,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 682, "time": 0.09730668983492616, @@ -3392,7 +3392,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 682, "time": 0.09730668983492616, @@ -3415,9 +3415,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 706, + "noteOrder": 707, "time": 0.10078192875760209, "position": { "x": 7, @@ -3438,10 +3438,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 731, - "time": 0.10425716768027801, + "time": 0.10425716768027803, "position": { "x": 3, "y": 0 @@ -3461,7 +3461,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 755, "time": 0.10773240660295395, @@ -3484,10 +3484,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 974, - "time": 0.13900955690703737, + "noteOrder": 975, + "time": 0.13900955690703734, "position": { "x": 7, "y": 0 @@ -3506,11 +3506,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1023, - "time": 0.14596003475238922, + "noteOrder": 999, + "time": 0.1424847958297133, "position": { "x": 7, "y": 0 @@ -3524,18 +3524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1072, - "time": 0.15291051259774108, + "noteOrder": 999, + "time": 0.1424847958297133, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3552,13 +3552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1121, - "time": 0.159860990443093, + "noteOrder": 1024, + "time": 0.14596003475238922, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3570,18 +3570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1169, - "time": 0.16681146828844484, + "noteOrder": 1024, + "time": 0.14596003475238922, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3598,11 +3598,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1194, - "time": 0.17028670721112077, + "noteOrder": 1024, + "time": 0.14596003475238922, "position": { "x": 7, "y": 0 @@ -3616,18 +3616,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1218, - "time": 0.1737619461337967, + "noteOrder": 1048, + "time": 0.14943527367506515, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3644,13 +3644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1242, - "time": 0.17723718505647262, + "noteOrder": 1048, + "time": 0.14943527367506515, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3667,11 +3667,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1316, - "time": 0.18766290182450046, + "noteOrder": 1072, + "time": 0.1529105125977411, "position": { "x": 6, "y": 0 @@ -3685,18 +3685,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1340, - "time": 0.1911381407471764, + "noteOrder": 1072, + "time": 0.1529105125977411, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3708,18 +3708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1316, - "time": 0.18766290182450046, + "noteOrder": 1072, + "time": 0.1529105125977411, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3731,18 +3731,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1340, - "time": 0.1911381407471764, + "noteOrder": 1097, + "time": 0.15638575152041703, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3754,18 +3754,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1364, - "time": 0.19461337966985232, + "noteOrder": 1097, + "time": 0.15638575152041703, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3777,18 +3777,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1413, - "time": 0.20156385751520417, + "noteOrder": 1121, + "time": 0.15986099044309296, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3805,13 +3805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1462, - "time": 0.20851433536055602, + "noteOrder": 1121, + "time": 0.15986099044309296, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3823,18 +3823,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1510, - "time": 0.2154648132059079, + "noteOrder": 1121, + "time": 0.15986099044309296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3846,18 +3846,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1559, - "time": 0.2224152910512598, + "noteOrder": 1145, + "time": 0.1633362293657689, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3874,13 +3874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1583, - "time": 0.22589052997393572, + "noteOrder": 1145, + "time": 0.1633362293657689, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3897,13 +3897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1608, - "time": 0.22936576889661164, + "noteOrder": 1170, + "time": 0.16681146828844484, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3915,18 +3915,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1632, - "time": 0.23284100781928757, + "noteOrder": 1170, + "time": 0.16681146828844484, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3938,18 +3938,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.24326672458731538, + "noteOrder": 1170, + "time": 0.16681146828844484, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3966,13 +3966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.2467419635099913, + "noteOrder": 1194, + "time": 0.17028670721112074, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3989,13 +3989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.24326672458731538, + "noteOrder": 1219, + "time": 0.1737619461337967, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4012,13 +4012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.2467419635099913, + "noteOrder": 1243, + "time": 0.17723718505647265, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4035,13 +4035,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, - "time": 0.2502172024326672, + "noteOrder": 1316, + "time": 0.18766290182450043, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4058,13 +4058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1778, - "time": 0.2536924413553432, + "noteOrder": 1340, + "time": 0.19113814074717636, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4081,13 +4081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1803, - "time": 0.2571676802780191, + "noteOrder": 1316, + "time": 0.18766290182450043, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4104,13 +4104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1827, - "time": 0.2606429192006951, + "noteOrder": 1340, + "time": 0.19113814074717636, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4127,11 +4127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, - "time": 0.27801911381407474, + "noteOrder": 1365, + "time": 0.19461337966985232, "position": { "x": 3, "y": 0 @@ -4150,11 +4150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1973, - "time": 0.28149435273675066, + "noteOrder": 1389, + "time": 0.19808861859252824, "position": { "x": 3, "y": 0 @@ -4173,13 +4173,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1998, - "time": 0.2849695916594266, + "noteOrder": 1389, + "time": 0.19808861859252824, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4191,18 +4191,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2022, - "time": 0.2884448305821025, + "noteOrder": 1413, + "time": 0.20156385751520417, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4214,18 +4214,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2241, - "time": 0.319721980886186, + "noteOrder": 1413, + "time": 0.20156385751520417, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4242,13 +4242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2290, - "time": 0.32667245873153783, + "noteOrder": 1413, + "time": 0.20156385751520417, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4265,13 +4265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2534, - "time": 0.3614248479582971, + "noteOrder": 1438, + "time": 0.2050390964378801, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4288,13 +4288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2582, - "time": 0.368375325803649, + "noteOrder": 1438, + "time": 0.2050390964378801, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4306,18 +4306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2631, - "time": 0.3753258036490009, + "noteOrder": 1462, + "time": 0.20851433536055605, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4334,13 +4334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2728, - "time": 0.38922675933970463, + "noteOrder": 1462, + "time": 0.20851433536055605, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4357,11 +4357,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2728, - "time": 0.38922675933970463, + "noteOrder": 1462, + "time": 0.20851433536055605, "position": { "x": 3, "y": 0 @@ -4380,11 +4380,103 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2777, - "time": 0.3961772371850565, + "noteOrder": 1487, + "time": 0.21198957428323195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21198957428323195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1511, + "time": 0.2154648132059079, "position": { "x": 3, "y": 0 @@ -4403,11 +4495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2923, - "time": 0.41702867072111205, + "noteOrder": 1535, + "time": 0.21894005212858386, "position": { "x": 3, "y": 0 @@ -4421,18 +4513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2972, - "time": 0.42397914856646396, + "noteOrder": 1535, + "time": 0.21894005212858386, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4449,11 +4541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3021, - "time": 0.4309296264118158, + "noteOrder": 1560, + "time": 0.22241529105125976, "position": { "x": 4, "y": 0 @@ -4467,18 +4559,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1560, + "time": 0.22241529105125976, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 3118, - "time": 0.4448305821025196, + "noteOrder": 1560, + "time": 0.22241529105125976, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4495,11 +4610,34 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1584, + "time": 0.22589052997393572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3118, - "time": 0.4448305821025196, + "noteOrder": 1608, + "time": 0.22936576889661164, "position": { "x": 7, "y": 0 @@ -4518,11 +4656,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3167, - "time": 0.45178105994787143, + "noteOrder": 1633, + "time": 0.23284100781928757, "position": { "x": 7, "y": 0 @@ -4536,18 +4674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3508, - "time": 0.5004344048653344, + "noteOrder": 1706, + "time": 0.24326672458731538, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4564,11 +4702,80 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.24674196350999128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 3532, - "time": 0.5039096437880104, + "noteOrder": 1706, + "time": 0.24326672458731538, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.24674196350999128, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1755, + "time": 0.25021720243266726, "position": { "x": 7, "y": 0 @@ -4587,13 +4794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.5073848827106864, + "noteOrder": 1779, + "time": 0.2536924413553432, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4605,18 +4812,2111 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 3581, - "time": 0.5108601216333623, + "noteOrder": 1803, + "time": 0.2571676802780191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1828, + "time": 0.26064291920069504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1950, + "time": 0.2780191138140747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1974, + "time": 0.28149435273675066, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1998, + "time": 0.2849695916594266, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2023, + "time": 0.2884448305821025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2242, + "time": 0.3197219808861859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2266, + "time": 0.3231972198088619, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2266, + "time": 0.3231972198088619, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2291, + "time": 0.3266724587315378, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2315, + "time": 0.3301476976542137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2315, + "time": 0.3301476976542137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2534, + "time": 0.3614248479582971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2559, + "time": 0.3649000868809731, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2559, + "time": 0.3649000868809731, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2583, + "time": 0.368375325803649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2608, + "time": 0.37185056472632494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2608, + "time": 0.37185056472632494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2632, + "time": 0.37532580364900087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2729, + "time": 0.38922675933970463, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2729, + "time": 0.38922675933970463, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2754, + "time": 0.3927019982623805, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2754, + "time": 0.3927019982623805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2778, + "time": 0.3961772371850565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2778, + "time": 0.3961772371850565, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2778, + "time": 0.3961772371850565, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3996524761077324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3996524761077324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2827, + "time": 0.40312771503040834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2827, + "time": 0.40312771503040834, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2924, + "time": 0.4170286707211121, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2949, + "time": 0.42050390964378803, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2949, + "time": 0.42050390964378803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2973, + "time": 0.4239791485664639, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2998, + "time": 0.4274543874891399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2998, + "time": 0.4274543874891399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3022, + "time": 0.4309296264118158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3119, + "time": 0.4448305821025195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3119, + "time": 0.4448305821025195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4483058210251955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4483058210251955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3168, + "time": 0.45178105994787143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3192, + "time": 0.45525629887054736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3192, + "time": 0.45525629887054736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4587315377932233, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3217, + "time": 0.4587315377932233, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3509, + "time": 0.5004344048653345, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3534, + "time": 0.5039096437880104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5073848827106864, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5108601216333623, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.5143353605560382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.5282363162467419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3899, + "time": 0.5560382276281494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3924, + "time": 0.5595134665508255, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3948, + "time": 0.5629887054735013, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3972, + "time": 0.5664639443961772, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4289, + "time": 0.6116420503909644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4314, + "time": 0.6151172893136403, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4314, + "time": 0.6151172893136403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4387, + "time": 0.6255430060816681, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4411, + "time": 0.6290182450043441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4411, + "time": 0.6290182450043441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4484, + "time": 0.6394439617723718, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4582, + "time": 0.6533449174630755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4582, + "time": 0.6533449174630755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4606, + "time": 0.6568201563857515, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4630, + "time": 0.6602953953084274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4655, + "time": 0.6637706342311034, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4679, + "time": 0.6672458731537794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4703, + "time": 0.6707211120764552, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4703, + "time": 0.6707211120764552, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4777, + "time": 0.681146828844483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4801, + "time": 0.6846220677671591, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4801, + "time": 0.6846220677671591, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4874, + "time": 0.6950477845351868, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4972, + "time": 0.7089487402258906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4972, + "time": 0.7089487402258906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5020, + "time": 0.7158992180712423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4996, + "time": 0.7124239791485665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5020, + "time": 0.7158992180712423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5069, + "time": 0.7228496959165942, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5093, + "time": 0.7263249348392703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5093, + "time": 0.7263249348392703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7298001737619462, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7298001737619462, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5118, + "time": 0.7298001737619462, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5142, + "time": 0.733275412684622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5142, + "time": 0.733275412684622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5166, + "time": 0.736750651607298, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5166, + "time": 0.736750651607298, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4628,18 +6928,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3605, - "time": 0.5143353605560382, + "noteOrder": 5166, + "time": 0.736750651607298, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4651,18 +6951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3703, - "time": 0.528236316246742, + "noteOrder": 5191, + "time": 0.7402258905299739, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4674,18 +6974,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3898, - "time": 0.5560382276281495, + "noteOrder": 5191, + "time": 0.7402258905299739, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4702,13 +7002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3922, - "time": 0.5595134665508253, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4725,13 +7025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3947, - "time": 0.5629887054735013, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4743,18 +7043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 3971, - "time": 0.5664639443961773, + "noteOrder": 5215, + "time": 0.7437011294526499, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4771,13 +7071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4288, - "time": 0.6116420503909643, + "noteOrder": 5240, + "time": 0.7471763683753259, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4794,13 +7094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4385, - "time": 0.6255430060816681, + "noteOrder": 5240, + "time": 0.7471763683753259, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4812,18 +7112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4482, - "time": 0.639443961772372, + "noteOrder": 5264, + "time": 0.7506516072980017, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4840,13 +7140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4580, - "time": 0.6533449174630757, + "noteOrder": 5264, + "time": 0.7506516072980017, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4863,11 +7163,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4580, - "time": 0.6533449174630757, + "noteOrder": 5264, + "time": 0.7506516072980017, "position": { "x": 3, "y": 0 @@ -4886,11 +7186,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4604, - "time": 0.6568201563857515, + "noteOrder": 5288, + "time": 0.7541268462206777, "position": { "x": 3, "y": 0 @@ -4909,11 +7209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.6602953953084275, + "noteOrder": 5313, + "time": 0.7576020851433536, "position": { "x": 7, "y": 0 @@ -4932,11 +7232,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4653, - "time": 0.6637706342311034, + "noteOrder": 5337, + "time": 0.7610773240660296, "position": { "x": 7, "y": 0 @@ -4955,13 +7255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4677, - "time": 0.6672458731537794, + "noteOrder": 5410, + "time": 0.7715030408340574, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4978,13 +7278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4775, - "time": 0.6811468288444831, + "noteOrder": 5435, + "time": 0.7749782797567333, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4996,18 +7296,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4872, - "time": 0.6950477845351868, + "noteOrder": 5410, + "time": 0.7715030408340574, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5019,18 +7319,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4970, - "time": 0.7089487402258905, + "noteOrder": 5435, + "time": 0.7749782797567333, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5042,16 +7342,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4970, - "time": 0.7089487402258905, + "noteOrder": 5459, + "time": 0.7784535186794093, "position": { "x": 7, "y": 0 @@ -5070,11 +7370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5018, - "time": 0.7158992180712423, + "noteOrder": 5483, + "time": 0.7819287576020851, "position": { "x": 7, "y": 0 @@ -5093,13 +7393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4994, - "time": 0.7124239791485665, + "noteOrder": 5483, + "time": 0.7819287576020851, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5111,18 +7411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5018, - "time": 0.7158992180712423, + "noteOrder": 5508, + "time": 0.785403996524761, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5134,18 +7434,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5067, - "time": 0.7228496959165942, + "noteOrder": 5508, + "time": 0.785403996524761, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5157,18 +7457,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5116, - "time": 0.7298001737619461, + "noteOrder": 5508, + "time": 0.785403996524761, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5180,18 +7480,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5165, - "time": 0.736750651607298, + "noteOrder": 5532, + "time": 0.7888792354474371, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5208,13 +7508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5213, - "time": 0.7437011294526499, + "noteOrder": 5532, + "time": 0.7888792354474371, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5226,18 +7526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5262, - "time": 0.7506516072980018, + "noteOrder": 5556, + "time": 0.792354474370113, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5254,13 +7554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5286, - "time": 0.7541268462206777, + "noteOrder": 5556, + "time": 0.792354474370113, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5277,11 +7577,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5311, - "time": 0.7576020851433537, + "noteOrder": 5556, + "time": 0.792354474370113, "position": { "x": 7, "y": 0 @@ -5300,11 +7600,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5335, - "time": 0.7610773240660296, + "noteOrder": 5581, + "time": 0.795829713292789, "position": { "x": 7, "y": 0 @@ -5323,13 +7623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5408, - "time": 0.7715030408340574, + "noteOrder": 5581, + "time": 0.795829713292789, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5341,18 +7641,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5433, - "time": 0.7749782797567333, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5364,18 +7664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5408, - "time": 0.7715030408340574, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5392,13 +7692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 5433, - "time": 0.7749782797567333, + "noteOrder": 5605, + "time": 0.7993049522154648, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5410,16 +7710,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5457, - "time": 0.7784535186794093, + "noteOrder": 5629, + "time": 0.8027801911381407, "position": { "x": 7, "y": 0 @@ -5433,18 +7733,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5506, - "time": 0.7854039965247611, + "noteOrder": 5629, + "time": 0.8027801911381407, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5461,13 +7761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5554, - "time": 0.792354474370113, + "noteOrder": 5654, + "time": 0.8062554300608167, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5479,18 +7779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5603, - "time": 0.7993049522154648, + "noteOrder": 5654, + "time": 0.8062554300608167, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5508,9 +7808,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5652, + "noteOrder": 5654, "time": 0.8062554300608167, "position": { "x": 7, @@ -5531,9 +7831,9 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5676, + "noteOrder": 5678, "time": 0.8097306689834927, "position": { "x": 7, @@ -5554,9 +7854,9 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8132059079061685, "position": { "x": 3, @@ -5577,9 +7877,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5725, + "noteOrder": 5727, "time": 0.8166811468288445, "position": { "x": 3, @@ -5600,9 +7900,9 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8305821025195482, "position": { "x": 7, @@ -5623,10 +7923,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5847, - "time": 0.8340573414422241, + "noteOrder": 5849, + "time": 0.8340573414422242, "position": { "x": 7, "y": 0 @@ -5646,9 +7946,9 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5822, + "noteOrder": 5824, "time": 0.8305821025195482, "position": { "x": 3, @@ -5669,10 +7969,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5847, - "time": 0.8340573414422241, + "noteOrder": 5849, + "time": 0.8340573414422242, "position": { "x": 3, "y": 0 @@ -5692,10 +7992,10 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6017, - "time": 0.8583840139009556, + "noteOrder": 6019, + "time": 0.8583840139009558, "position": { "x": 7, "y": 0 @@ -5715,10 +8015,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6115, - "time": 0.8722849695916595, + "noteOrder": 6117, + "time": 0.8722849695916594, "position": { "x": 7, "y": 0 @@ -5738,10 +8038,10 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6017, - "time": 0.8583840139009556, + "noteOrder": 6019, + "time": 0.8583840139009558, "position": { "x": 3, "y": 0 @@ -5761,10 +8061,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6115, - "time": 0.8722849695916595, + "noteOrder": 6117, + "time": 0.8722849695916594, "position": { "x": 3, "y": 0 @@ -5784,9 +8084,9 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6212, + "noteOrder": 6214, "time": 0.8861859252823632, "position": { "x": 7, @@ -5807,9 +8107,9 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6310, + "noteOrder": 6312, "time": 0.9000868809730669, "position": { "x": 7, @@ -5830,9 +8130,9 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6212, + "noteOrder": 6214, "time": 0.8861859252823632, "position": { "x": 3, @@ -5853,9 +8153,9 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6310, + "noteOrder": 6312, "time": 0.9000868809730669, "position": { "x": 3, @@ -5876,9 +8176,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6334, + "noteOrder": 6336, "time": 0.9035621198957429, "position": { "x": 4, @@ -5899,9 +8199,9 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6431, + "noteOrder": 6434, "time": 0.9174630755864466, "position": { "x": 4, @@ -5922,9 +8222,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6431, + "noteOrder": 6434, "time": 0.9174630755864466, "position": { "x": 6, @@ -5945,9 +8245,9 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6529, + "noteOrder": 6531, "time": 0.9313640312771503, "position": { "x": 6, @@ -5968,9 +8268,9 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6602, + "noteOrder": 6604, "time": 0.9417897480451781, "position": { "x": 7, @@ -5991,9 +8291,9 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6699, + "noteOrder": 6702, "time": 0.9556907037358818, "position": { "x": 7, @@ -6014,9 +8314,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6602, + "noteOrder": 6604, "time": 0.9417897480451781, "position": { "x": 3, @@ -6037,9 +8337,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6699, + "noteOrder": 6702, "time": 0.9556907037358818, "position": { "x": 3, diff --git a/tracks/Next Stage 2022/info.json b/tracks/Next Stage 2022/info.json index 1e81fb6d..06d9495a 100644 --- a/tracks/Next Stage 2022/info.json +++ b/tracks/Next Stage 2022/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Next Stage 2022", - "SongLength": "141.766531", + "SongLength": "131.813878", "SongAuthorName": "BEMANI Sound Team \"Sota F.\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Oboro Cybernetics/360_difficulty_1a.json b/tracks/Oboro Cybernetics/360_difficulty_1a.json index 8872afd1..aed6e5a8 100644 --- a/tracks/Oboro Cybernetics/360_difficulty_1a.json +++ b/tracks/Oboro Cybernetics/360_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.017051964084300646, + "time": 0.01705196408430065, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.021314955105375805, + "time": 0.02131495510537581, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.02557794612645097, + "time": 0.025577946126450972, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 505, - "time": 0.0895228114425784, + "time": 0.08952281144257841, "position": { "x": 3, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 553, - "time": 0.09804879348472871, + "noteOrder": 554, + "time": 0.09804879348472872, "position": { "x": 3, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 601, + "noteOrder": 602, "time": 0.10657477552687905, "position": { "x": 7, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.1108377665479542, "position": { "x": 7, @@ -194,7 +194,7 @@ }, { "noteOrder": 650, - "time": 0.11510075756902936, + "time": 0.11510075756902938, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 698, - "time": 0.12362673961117968, + "time": 0.12362673961117969, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 722, - "time": 0.12788973063225487, + "time": 0.12788973063225484, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 746, - "time": 0.13215272165333, + "time": 0.13215272165333003, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 770, - "time": 0.13641571267440517, + "time": 0.1364157126744052, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 794, - "time": 0.14067870369548036, + "time": 0.14067870369548033, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 842, - "time": 0.14920468573763065, + "time": 0.14920468573763068, "position": { "x": 5, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 938, - "time": 0.1662566498219313, + "noteOrder": 939, + "time": 0.16625664982193133, "position": { "x": 5, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 986, + "noteOrder": 987, "time": 0.17478263186408163, "position": { "x": 5, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1035, "time": 0.18330861390623196, "position": { "x": 5, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1347, + "noteOrder": 1348, "time": 0.23872749718020905, "position": { "x": 3, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1359, + "noteOrder": 1360, "time": 0.24085899269074665, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1371, - "time": 0.24299048820128422, + "noteOrder": 1372, + "time": 0.24299048820128424, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1383, + "noteOrder": 1384, "time": 0.2451219837118218, "position": { "x": 7, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1443, - "time": 0.25577946126450973, + "noteOrder": 1444, + "time": 0.2557794612645097, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1455, + "noteOrder": 1456, "time": 0.2579109567750473, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1467, + "noteOrder": 1468, "time": 0.26004245228558487, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1479, - "time": 0.2621739477961224, + "noteOrder": 1480, + "time": 0.26217394779612246, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1491, - "time": 0.26430544330666, + "noteOrder": 1492, + "time": 0.26430544330666006, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1503, + "noteOrder": 1504, "time": 0.2664369388171976, "position": { "x": 5, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1708, - "time": 0.30267236249633644, + "noteOrder": 1709, + "time": 0.3026723624963365, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1720, - "time": 0.30480385800687404, + "noteOrder": 1721, + "time": 0.3048038580068741, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1852, + "noteOrder": 1853, "time": 0.3282503086227875, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1900, - "time": 0.3367762906649378, + "noteOrder": 1901, + "time": 0.33677629066493775, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2021, - "time": 0.3580912457703136, + "noteOrder": 2022, + "time": 0.35809124577031365, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2045, + "noteOrder": 2046, "time": 0.36235423679138873, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2069, + "noteOrder": 2070, "time": 0.3666172278124639, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2093, + "noteOrder": 2094, "time": 0.37088021883353905, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2117, + "noteOrder": 2118, "time": 0.37514320985461425, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2141, - "time": 0.3794062008756894, + "noteOrder": 2142, + "time": 0.37940620087568944, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2165, + "noteOrder": 2166, "time": 0.38366919189676457, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2189, - "time": 0.38793218291783976, + "noteOrder": 2190, + "time": 0.3879321829178397, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2213, - "time": 0.39219517393891484, + "noteOrder": 2214, + "time": 0.3921951739389149, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2237, + "noteOrder": 2238, "time": 0.39645816495999003, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2261, - "time": 0.40072115598106517, + "noteOrder": 2262, + "time": 0.4007211559810652, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2285, - "time": 0.40498414700214036, + "noteOrder": 2286, + "time": 0.4049841470021404, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2430, + "noteOrder": 2431, "time": 0.43056209312859134, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2478, - "time": 0.43908807517074167, + "noteOrder": 2479, + "time": 0.4390880751707417, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2815, - "time": 0.4987699494657939, + "noteOrder": 2816, + "time": 0.49876994946579395, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2839, + "noteOrder": 2840, "time": 0.5030329404868691, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2863, + "noteOrder": 2864, "time": 0.5072959315079443, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2911, + "noteOrder": 2912, "time": 0.5158219135500945, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2935, + "noteOrder": 2936, "time": 0.5200849045711697, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2959, - "time": 0.5243478955922448, + "noteOrder": 2960, + "time": 0.5243478955922449, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3007, + "noteOrder": 3008, "time": 0.5328738776343952, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3031, + "noteOrder": 3032, "time": 0.5371368686554704, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3055, + "noteOrder": 3056, "time": 0.5413998596765456, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3104, "time": 0.5499258417186959, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3127, + "noteOrder": 3129, "time": 0.554188832739771, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3151, + "noteOrder": 3153, "time": 0.5584518237608462, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3368, - "time": 0.5968187429505226, + "noteOrder": 3369, + "time": 0.5968187429505227, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3380, - "time": 0.5989502384610602, + "noteOrder": 3381, + "time": 0.5989502384610603, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3392, + "noteOrder": 3393, "time": 0.6010817339715978, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3416, - "time": 0.6053447249926729, + "noteOrder": 3417, + "time": 0.605344724992673, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3428, - "time": 0.6074762205032106, + "noteOrder": 3429, + "time": 0.6074762205032105, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.6096077160137481, + "noteOrder": 3441, + "time": 0.6096077160137482, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3584, + "noteOrder": 3586, "time": 0.6351856621401991, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3632, + "noteOrder": 3634, "time": 0.6437116441823494, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3753, - "time": 0.6650265992877252, + "noteOrder": 3754, + "time": 0.6650265992877253, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3777, + "noteOrder": 3778, "time": 0.6692895903088004, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3801, - "time": 0.6735525813298756, + "noteOrder": 3802, + "time": 0.6735525813298755, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 3826, "time": 0.6778155723509508, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4041, - "time": 0.7161824915406272, + "noteOrder": 4043, + "time": 0.7161824915406273, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.7183139870511648, "position": { "x": 5, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4065, - "time": 0.7204454825617023, + "noteOrder": 4067, + "time": 0.7204454825617024, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.72257697807224, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4089, + "noteOrder": 4091, "time": 0.7247084735827775, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.7268399690933152, + "noteOrder": 4103, + "time": 0.726839969093315, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4114, - "time": 0.7289714646038526, + "noteOrder": 4115, + "time": 0.7289714646038528, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4354, + "noteOrder": 4356, "time": 0.7716013748146043, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4402, - "time": 0.7801273568567545, + "noteOrder": 4404, + "time": 0.7801273568567546, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.7886533388989049, + "noteOrder": 4452, + "time": 0.788653338898905, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4498, - "time": 0.7971793209410551, + "noteOrder": 4500, + "time": 0.7971793209410554, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4763, + "noteOrder": 4765, "time": 0.844072222172882, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4787, - "time": 0.8483352131939572, + "noteOrder": 4789, + "time": 0.8483352131939571, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8611241862571827, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4871, - "time": 0.8632556817677202, + "noteOrder": 4873, + "time": 0.8632556817677204, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.8653871772782579, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4895, - "time": 0.8675186727887954, + "noteOrder": 4897, + "time": 0.8675186727887955, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4931, + "noteOrder": 4933, "time": 0.8739131593204081, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4943, - "time": 0.8760446548309457, + "noteOrder": 4945, + "time": 0.8760446548309458, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4980, + "noteOrder": 4982, "time": 0.8824391413625585, "position": { "x": 7, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4992, - "time": 0.884570636873096, + "noteOrder": 4994, + "time": 0.8845706368730961, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5126, "time": 0.9080170874890094, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5148, - "time": 0.9122800785100845, + "noteOrder": 5150, + "time": 0.9122800785100846, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5172, - "time": 0.9165430695311597, + "noteOrder": 5174, + "time": 0.9165430695311598, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.9250690515733101, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5244, - "time": 0.9293320425943853, + "noteOrder": 5246, + "time": 0.9293320425943852, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5268, - "time": 0.9335950336154604, + "noteOrder": 5270, + "time": 0.9335950336154605, "position": { "x": 4, "y": 0 @@ -2076,10 +2076,33 @@ "lineNodes": [ { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 193, + "time": 0.0341039281686013, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 2, "isSliding": false, - "noteOrder": 192, - "time": 0.03410392816860129, + "noteOrder": 205, + "time": 0.03623542367913887, "position": { "x": 4, "y": 0 @@ -2097,9 +2120,78 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 205, + "time": 0.03623542367913887, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 217, + "time": 0.038366919189676454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 217, + "time": 0.038366919189676454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 217, "time": 0.038366919189676454, @@ -2121,11 +2213,11 @@ "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 241, - "time": 0.04262991021075161, + "noteOrder": 229, + "time": 0.040498414700214036, "position": { "x": 4, "y": 0 @@ -2139,18 +2231,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 3, "isSliding": false, - "noteOrder": 265, - "time": 0.04689290123182678, + "noteOrder": 229, + "time": 0.040498414700214036, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2167,13 +2259,13 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 4, "isSliding": false, - "noteOrder": 313, - "time": 0.0554188832739771, + "noteOrder": 241, + "time": 0.04262991021075162, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2185,16 +2277,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 5, "isSliding": false, - "noteOrder": 337, - "time": 0.05968187429505226, + "noteOrder": 241, + "time": 0.04262991021075162, "position": { "x": 7, "y": 0 @@ -2213,13 +2305,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 361, - "time": 0.06394486531612743, + "noteOrder": 241, + "time": 0.04262991021075162, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2236,11 +2328,11 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 385, - "time": 0.06820785633720258, + "noteOrder": 253, + "time": 0.044761405721289206, "position": { "x": 4, "y": 0 @@ -2259,11 +2351,80 @@ "isPlayAudio": false }, { - "lineGroupId": 14, + "lineGroupId": 8, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 253, + "time": 0.044761405721289206, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 8, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 265, + "time": 0.04689290123182678, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 8, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 265, + "time": 0.04689290123182678, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, "indexInLine": 1, "isSliding": false, - "noteOrder": 457, - "time": 0.08099682940042807, + "noteOrder": 265, + "time": 0.04689290123182678, "position": { "x": 4, "y": 0 @@ -2277,18 +2438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 385, - "time": 0.06820785633720258, + "noteOrder": 277, + "time": 0.04902439674236436, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2305,11 +2466,3806 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 1, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 457, - "time": 0.08099682940042807, + "noteOrder": 277, + "time": 0.04902439674236436, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 289, + "time": 0.051155892252901944, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 289, + "time": 0.051155892252901944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 301, + "time": 0.053287387763439525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 301, + "time": 0.053287387763439525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 313, + "time": 0.0554188832739771, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 325, + "time": 0.05755037878451469, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 325, + "time": 0.05755037878451469, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 337, + "time": 0.05968187429505226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 349, + "time": 0.061813369805589845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 349, + "time": 0.061813369805589845, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 361, + "time": 0.06394486531612742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 373, + "time": 0.06607636082666501, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 373, + "time": 0.06607636082666501, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 385, + "time": 0.0682078563372026, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 457, + "time": 0.08099682940042807, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 385, + "time": 0.0682078563372026, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 457, + "time": 0.08099682940042807, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 481, + "time": 0.08525982042150324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 505, + "time": 0.08952281144257841, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 529, + "time": 0.09378580246365356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 554, + "time": 0.09804879348472872, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 578, + "time": 0.10231178450580389, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 578, + "time": 0.10231178450580389, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 602, + "time": 0.10657477552687905, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 626, + "time": 0.1108377665479542, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 650, + "time": 0.11510075756902938, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 674, + "time": 0.11936374859010453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 866, + "time": 0.15346767675870582, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 914, + "time": 0.16199365880085614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 914, + "time": 0.16199365880085614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 963, + "time": 0.17051964084300647, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 963, + "time": 0.17051964084300647, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1011, + "time": 0.17904562288515682, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1011, + "time": 0.17904562288515682, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1059, + "time": 0.18757160492730712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1155, + "time": 0.20462356901160778, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1167, + "time": 0.20675506452214534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1179, + "time": 0.2088865600326829, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1191, + "time": 0.2110180555432205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1203, + "time": 0.2131495510537581, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1155, + "time": 0.20462356901160778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1167, + "time": 0.20675506452214534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1179, + "time": 0.2088865600326829, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1191, + "time": 0.2110180555432205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1203, + "time": 0.2131495510537581, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1275, + "time": 0.2259385241169836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1288, + "time": 0.22807001962752116, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1288, + "time": 0.22807001962752116, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1300, + "time": 0.23020151513805875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1300, + "time": 0.23020151513805875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1300, + "time": 0.23020151513805875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1312, + "time": 0.2323330106485963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1312, + "time": 0.2323330106485963, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1324, + "time": 0.2344645061591339, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1324, + "time": 0.2344645061591339, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1324, + "time": 0.2344645061591339, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1336, + "time": 0.23659600166967149, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1336, + "time": 0.23659600166967149, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1348, + "time": 0.23872749718020905, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1348, + "time": 0.23872749718020905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1396, + "time": 0.24725347922235938, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1408, + "time": 0.24938497473289697, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1408, + "time": 0.24938497473289697, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1420, + "time": 0.25151647024343454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1420, + "time": 0.25151647024343454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1420, + "time": 0.25151647024343454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1432, + "time": 0.25364796575397214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1432, + "time": 0.25364796575397214, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1444, + "time": 0.2557794612645097, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1444, + "time": 0.2557794612645097, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1516, + "time": 0.2685684343277352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1540, + "time": 0.2728314253488104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1564, + "time": 0.2770944163698855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1588, + "time": 0.28135740739096066, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1612, + "time": 0.28562039841203585, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1624, + "time": 0.28775189392257344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1636, + "time": 0.289883389433111, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.289883389433111, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1648, + "time": 0.29201488494364863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1648, + "time": 0.29201488494364863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1661, + "time": 0.2941463804541862, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1661, + "time": 0.2941463804541862, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1661, + "time": 0.2941463804541862, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1673, + "time": 0.2962778759647237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1673, + "time": 0.2962778759647237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1685, + "time": 0.29840937147526136, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1685, + "time": 0.29840937147526136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1685, + "time": 0.29840937147526136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1697, + "time": 0.3005408669857989, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1697, + "time": 0.3005408669857989, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1709, + "time": 0.3026723624963365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1709, + "time": 0.3026723624963365, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1733, + "time": 0.30693535351741164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1745, + "time": 0.30906684902794923, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1745, + "time": 0.30906684902794923, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1757, + "time": 0.3111983445384868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1757, + "time": 0.3111983445384868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1757, + "time": 0.3111983445384868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1769, + "time": 0.3133298400490244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1769, + "time": 0.3133298400490244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1781, + "time": 0.31546133555956196, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1781, + "time": 0.31546133555956196, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1781, + "time": 0.31546133555956196, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1793, + "time": 0.31759283107009956, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1793, + "time": 0.31759283107009956, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1805, + "time": 0.31972432658063715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1805, + "time": 0.31972432658063715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1805, + "time": 0.31972432658063715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1817, + "time": 0.3218558220911747, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1817, + "time": 0.3218558220911747, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3239873176017123, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3239873176017123, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3239873176017123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1841, + "time": 0.3261188131122499, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1841, + "time": 0.3261188131122499, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1853, + "time": 0.3282503086227875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1853, + "time": 0.3282503086227875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1877, + "time": 0.33251329964386267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1889, + "time": 0.3346447951544002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1889, + "time": 0.3346447951544002, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1901, + "time": 0.33677629066493775, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1901, + "time": 0.33677629066493775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1925, + "time": 0.34103928168601294, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1949, + "time": 0.34530227270708813, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1949, + "time": 0.34530227270708813, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1973, + "time": 0.34956526372816327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1973, + "time": 0.34956526372816327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1997, + "time": 0.35382825474923846, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2310, + "time": 0.40924713802321555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2322, + "time": 0.41137863353375315, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2322, + "time": 0.41137863353375315, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2334, + "time": 0.4135101290442907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2346, + "time": 0.4156416245548283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2346, + "time": 0.4156416245548283, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2358, + "time": 0.4177731200653658, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2370, + "time": 0.4199046155759035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2370, + "time": 0.4199046155759035, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2382, + "time": 0.422036111086441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2395, + "time": 0.42416760659697855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2395, + "time": 0.42416760659697855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2407, + "time": 0.4262991021075162, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2431, + "time": 0.43056209312859134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2455, + "time": 0.43482508414966653, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2479, + "time": 0.4390880751707417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2503, + "time": 0.4433510661918168, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2515, + "time": 0.44548256170235445, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2527, + "time": 0.447614057212892, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2527, + "time": 0.447614057212892, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2539, + "time": 0.4497455527234296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2551, + "time": 0.4518770482339672, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2551, + "time": 0.4518770482339672, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2563, + "time": 0.4540085437445047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2575, + "time": 0.4561400392550423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2575, + "time": 0.4561400392550423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2587, + "time": 0.4582715347655799, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2599, + "time": 0.4604030302761175, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2695, + "time": 0.4774549943604181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2743, + "time": 0.4859809764025685, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2768, + "time": 0.4902439674236436, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2792, + "time": 0.49450695844471876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2695, + "time": 0.4774549943604181, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2743, + "time": 0.4859809764025685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2768, + "time": 0.4902439674236436, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2792, + "time": 0.49450695844471876, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2888, + "time": 0.5115589225290194, "position": { "x": 6, "y": 0 @@ -2328,13 +6284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, - "time": 0.08525982042150322, + "noteOrder": 2888, + "time": 0.5115589225290194, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2346,18 +6302,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 505, - "time": 0.0895228114425784, + "noteOrder": 2984, + "time": 0.5286108866133201, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2369,18 +6325,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 2, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 529, - "time": 0.09378580246365356, + "noteOrder": 2984, + "time": 0.5286108866133201, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2397,13 +6353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 3, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 553, - "time": 0.09804879348472871, + "noteOrder": 3080, + "time": 0.5456628506976208, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2420,13 +6376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 4, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, - "time": 0.10231178450580387, + "noteOrder": 3080, + "time": 0.5456628506976208, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2438,18 +6394,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 577, - "time": 0.10231178450580387, + "noteOrder": 3177, + "time": 0.5627148147819213, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2466,11 +6422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 601, - "time": 0.10657477552687905, + "noteOrder": 3201, + "time": 0.5669778058029965, "position": { "x": 5, "y": 0 @@ -2489,11 +6445,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 2, + "lineGroupId": 126, + "indexInLine": 4, "isSliding": false, - "noteOrder": 625, - "time": 0.1108377665479542, + "noteOrder": 3225, + "time": 0.5712407968240717, "position": { "x": 6, "y": 0 @@ -2512,11 +6468,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 3, + "lineGroupId": 126, + "indexInLine": 5, "isSliding": false, - "noteOrder": 650, - "time": 0.11510075756902936, + "noteOrder": 3249, + "time": 0.5755037878451469, "position": { "x": 5, "y": 0 @@ -2535,13 +6491,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 4, + "lineGroupId": 126, + "indexInLine": 6, "isSliding": false, - "noteOrder": 674, - "time": 0.11936374859010453, + "noteOrder": 3273, + "time": 0.579766778866222, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2558,13 +6514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 866, - "time": 0.15346767675870582, + "noteOrder": 3273, + "time": 0.579766778866222, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2576,18 +6532,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 914, - "time": 0.16199365880085614, + "noteOrder": 3297, + "time": 0.5840297698872973, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2599,18 +6555,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 914, - "time": 0.16199365880085614, + "noteOrder": 3321, + "time": 0.5882927609083723, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2627,13 +6583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 4, "isSliding": false, - "noteOrder": 962, - "time": 0.17051964084300644, + "noteOrder": 3345, + "time": 0.5925557519294474, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2650,13 +6606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 5, "isSliding": false, - "noteOrder": 962, - "time": 0.17051964084300644, + "noteOrder": 3369, + "time": 0.5968187429505227, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2668,18 +6624,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 1010, - "time": 0.1790456228851568, + "noteOrder": 3465, + "time": 0.6138707070348233, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2691,18 +6647,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1010, - "time": 0.1790456228851568, + "noteOrder": 3489, + "time": 0.6181336980558985, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2719,13 +6675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1058, - "time": 0.18757160492730712, + "noteOrder": 3514, + "time": 0.6223966890769737, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2742,11 +6698,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1155, - "time": 0.20462356901160775, + "noteOrder": 3526, + "time": 0.6245281845875112, "position": { "x": 4, "y": 0 @@ -2760,16 +6716,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1167, - "time": 0.20675506452214534, + "noteOrder": 3538, + "time": 0.6266596800980488, "position": { "x": 6, "y": 0 @@ -2783,16 +6739,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 2, + "lineGroupId": 146, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1179, - "time": 0.2088865600326829, + "noteOrder": 3550, + "time": 0.6287911756085863, "position": { "x": 4, "y": 0 @@ -2806,16 +6762,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 3, + "lineGroupId": 146, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1191, - "time": 0.2110180555432205, + "noteOrder": 3562, + "time": 0.6309226711191239, "position": { "x": 6, "y": 0 @@ -2829,18 +6785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 4, + "lineGroupId": 146, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1203, - "time": 0.2131495510537581, + "noteOrder": 3586, + "time": 0.6351856621401991, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2852,18 +6808,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1155, - "time": 0.20462356901160775, + "noteOrder": 3465, + "time": 0.6138707070348233, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2875,18 +6831,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1167, - "time": 0.20675506452214534, + "noteOrder": 3489, + "time": 0.6181336980558985, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2898,18 +6854,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 2, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1179, - "time": 0.2088865600326829, + "noteOrder": 3514, + "time": 0.6223966890769737, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2921,18 +6877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 3, + "lineGroupId": 147, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1191, - "time": 0.2110180555432205, + "noteOrder": 3526, + "time": 0.6245281845875112, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2944,18 +6900,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 4, + "lineGroupId": 147, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1203, - "time": 0.2131495510537581, + "noteOrder": 3538, + "time": 0.6266596800980488, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2967,18 +6923,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1275, - "time": 0.22593852411698356, + "noteOrder": 3550, + "time": 0.6287911756085863, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2995,13 +6951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1299, - "time": 0.23020151513805873, + "noteOrder": 3562, + "time": 0.6309226711191239, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3013,18 +6969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1323, - "time": 0.2344645061591339, + "noteOrder": 3610, + "time": 0.6394486531612743, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3041,13 +6997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1395, - "time": 0.24725347922235935, + "noteOrder": 3634, + "time": 0.6437116441823494, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3059,18 +7015,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1419, - "time": 0.25151647024343454, + "noteOrder": 3658, + "time": 0.6479746352034246, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3082,16 +7038,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1516, - "time": 0.2685684343277352, + "noteOrder": 3670, + "time": 0.6501061307139623, "position": { "x": 7, "y": 0 @@ -3110,13 +7066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1540, - "time": 0.27283142534881033, + "noteOrder": 3670, + "time": 0.6501061307139623, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3133,13 +7089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 2, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1564, - "time": 0.2770944163698855, + "noteOrder": 3682, + "time": 0.6522376262244998, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3151,18 +7107,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 3, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1588, - "time": 0.2813574073909607, + "noteOrder": 3694, + "time": 0.6543691217350374, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3174,16 +7130,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 4, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1612, - "time": 0.2856203984120358, + "noteOrder": 3694, + "time": 0.6543691217350374, "position": { "x": 5, "y": 0 @@ -3197,18 +7153,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 5, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1624, - "time": 0.2877518939225734, + "noteOrder": 3706, + "time": 0.656500617245575, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3225,13 +7181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 6, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, - "time": 0.289883389433111, + "noteOrder": 3718, + "time": 0.6586321127561124, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3248,13 +7204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1636, - "time": 0.289883389433111, + "noteOrder": 3718, + "time": 0.6586321127561124, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3266,16 +7222,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1660, - "time": 0.2941463804541861, + "noteOrder": 3730, + "time": 0.66076360826665, "position": { "x": 3, "y": 0 @@ -3289,16 +7245,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1684, - "time": 0.2984093714752613, + "noteOrder": 3742, + "time": 0.6628951037771877, "position": { "x": 3, "y": 0 @@ -3317,13 +7273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1732, - "time": 0.30693535351741164, + "noteOrder": 3742, + "time": 0.6628951037771877, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3335,18 +7291,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1756, - "time": 0.3111983445384868, + "noteOrder": 3947, + "time": 0.6991305274563265, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3363,13 +7319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1780, - "time": 0.31546133555956196, + "noteOrder": 3959, + "time": 0.7012620229668641, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3381,18 +7337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1804, - "time": 0.31972432658063715, + "noteOrder": 3959, + "time": 0.7012620229668641, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3409,13 +7365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1828, - "time": 0.3239873176017123, + "noteOrder": 3971, + "time": 0.7033935184774017, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3427,18 +7383,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1876, - "time": 0.3325132996438626, + "noteOrder": 3971, + "time": 0.7033935184774017, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3455,13 +7411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1924, - "time": 0.3410392816860129, + "noteOrder": 3971, + "time": 0.7033935184774017, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3473,18 +7429,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1949, - "time": 0.3453022727070881, + "noteOrder": 3983, + "time": 0.7055250139879393, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3496,16 +7452,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1949, - "time": 0.3453022727070881, + "noteOrder": 3983, + "time": 0.7055250139879393, "position": { "x": 5, "y": 0 @@ -3524,11 +7480,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1973, - "time": 0.34956526372816327, + "noteOrder": 3995, + "time": 0.7076565094984769, "position": { "x": 5, "y": 0 @@ -3547,13 +7503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1973, - "time": 0.34956526372816327, + "noteOrder": 3995, + "time": 0.7076565094984769, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3565,18 +7521,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 1997, - "time": 0.3538282547492384, + "noteOrder": 3995, + "time": 0.7076565094984769, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3593,13 +7549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.4092471380232155, + "noteOrder": 4007, + "time": 0.7097880050090144, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3611,18 +7567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2333, - "time": 0.4135101290442907, + "noteOrder": 4007, + "time": 0.7097880050090144, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3639,13 +7595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2357, - "time": 0.4177731200653658, + "noteOrder": 4019, + "time": 0.711919500519552, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3657,18 +7613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2382, - "time": 0.422036111086441, + "noteOrder": 4019, + "time": 0.711919500519552, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3685,13 +7641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2406, - "time": 0.4262991021075162, + "noteOrder": 4019, + "time": 0.711919500519552, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3708,13 +7664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2430, - "time": 0.43056209312859134, + "noteOrder": 4031, + "time": 0.7140509960300896, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3731,13 +7687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2454, - "time": 0.43482508414966653, + "noteOrder": 4031, + "time": 0.7140509960300896, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3749,18 +7705,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2478, - "time": 0.43908807517074167, + "noteOrder": 4043, + "time": 0.7161824915406273, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3772,18 +7728,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2502, - "time": 0.4433510661918168, + "noteOrder": 4043, + "time": 0.7161824915406273, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3795,18 +7751,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 2514, - "time": 0.4454825617023544, + "noteOrder": 4163, + "time": 0.737497446646003, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3823,13 +7779,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 176, "indexInLine": 2, "isSliding": false, - "noteOrder": 2526, - "time": 0.44761405721289194, + "noteOrder": 4175, + "time": 0.7396289421565405, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3846,13 +7802,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2526, - "time": 0.44761405721289194, + "noteOrder": 4175, + "time": 0.7396289421565405, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3864,18 +7820,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2538, - "time": 0.44974555272342953, + "noteOrder": 4187, + "time": 0.7417604376670781, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3887,18 +7843,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 105, - "indexInLine": 2, + { + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2550, - "time": 0.4518770482339671, + "noteOrder": 4187, + "time": 0.7417604376670781, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3910,18 +7866,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2550, - "time": 0.4518770482339671, + "noteOrder": 4187, + "time": 0.7417604376670781, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3933,18 +7889,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2562, - "time": 0.4540085437445047, + "noteOrder": 4199, + "time": 0.7438919331776158, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3956,18 +7912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2574, - "time": 0.45614003925504226, + "noteOrder": 4199, + "time": 0.7438919331776158, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3979,18 +7935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2574, - "time": 0.45614003925504226, + "noteOrder": 4211, + "time": 0.7460234286881533, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4007,13 +7963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2586, - "time": 0.45827153476557986, + "noteOrder": 4211, + "time": 0.7460234286881533, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4030,11 +7986,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 2, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2598, - "time": 0.46040303027611745, + "noteOrder": 4211, + "time": 0.7460234286881533, "position": { "x": 7, "y": 0 @@ -4048,18 +8004,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2694, - "time": 0.4774549943604181, + "noteOrder": 4223, + "time": 0.7481549241986909, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4076,13 +8032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2742, - "time": 0.48598097640256843, + "noteOrder": 4223, + "time": 0.7481549241986909, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4099,13 +8055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2766, - "time": 0.4902439674236436, + "noteOrder": 4236, + "time": 0.7502864197092285, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4122,11 +8078,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 3, + "lineGroupId": 178, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2790, - "time": 0.4945069584447187, + "noteOrder": 4236, + "time": 0.7502864197092285, "position": { "x": 4, "y": 0 @@ -4145,13 +8101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2694, - "time": 0.4774549943604181, + "noteOrder": 4236, + "time": 0.7502864197092285, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4168,13 +8124,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2742, - "time": 0.48598097640256843, + "noteOrder": 4248, + "time": 0.7524179152197661, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4191,13 +8147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 2, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2766, - "time": 0.4902439674236436, + "noteOrder": 4248, + "time": 0.7524179152197661, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4214,13 +8170,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 3, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2790, - "time": 0.4945069584447187, + "noteOrder": 4260, + "time": 0.7545494107303036, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4232,18 +8188,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 4, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2887, - "time": 0.5115589225290195, + "noteOrder": 4272, + "time": 0.7566809062408413, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4255,18 +8211,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2887, - "time": 0.5115589225290195, + "noteOrder": 4272, + "time": 0.7566809062408413, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4283,13 +8239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 2983, - "time": 0.52861088661332, + "noteOrder": 4284, + "time": 0.7588124017513789, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4301,18 +8257,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2983, - "time": 0.52861088661332, + "noteOrder": 4296, + "time": 0.7609438972619164, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4329,13 +8285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3079, - "time": 0.5456628506976207, + "noteOrder": 4296, + "time": 0.7609438972619164, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4352,13 +8308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3079, - "time": 0.5456628506976207, + "noteOrder": 4308, + "time": 0.763075392772454, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4370,18 +8326,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3175, - "time": 0.5627148147819214, + "noteOrder": 4308, + "time": 0.763075392772454, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4393,18 +8349,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 181, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3199, - "time": 0.5669778058029964, + "noteOrder": 4332, + "time": 0.7673383837935291, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4416,16 +8372,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 3, + "lineGroupId": 181, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3223, - "time": 0.5712407968240716, + "noteOrder": 4356, + "time": 0.7716013748146043, "position": { "x": 6, "y": 0 @@ -4439,16 +8395,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 4, + "lineGroupId": 181, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3248, - "time": 0.5755037878451468, + "noteOrder": 4380, + "time": 0.7758643658356794, "position": { "x": 5, "y": 0 @@ -4462,18 +8418,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 5, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3272, - "time": 0.579766778866222, + "noteOrder": 4380, + "time": 0.7758643658356794, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4490,13 +8446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3272, - "time": 0.579766778866222, + "noteOrder": 4404, + "time": 0.7801273568567546, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4508,16 +8464,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3296, - "time": 0.5840297698872972, + "noteOrder": 4428, + "time": 0.7843903478778298, "position": { "x": 5, "y": 0 @@ -4531,18 +8487,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3320, - "time": 0.5882927609083722, + "noteOrder": 4428, + "time": 0.7843903478778298, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4559,13 +8515,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 3, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3344, - "time": 0.5925557519294474, + "noteOrder": 4452, + "time": 0.788653338898905, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4582,13 +8538,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 4, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3368, - "time": 0.5968187429505226, + "noteOrder": 4476, + "time": 0.7929163299199801, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4605,13 +8561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, - "time": 0.6138707070348233, + "noteOrder": 4476, + "time": 0.7929163299199801, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4623,16 +8579,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3488, - "time": 0.6181336980558985, + "noteOrder": 4500, + "time": 0.7971793209410554, "position": { "x": 4, "y": 0 @@ -4646,18 +8602,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 2, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3512, - "time": 0.6223966890769737, + "noteOrder": 4524, + "time": 0.8014423119621304, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4669,18 +8625,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 3, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3524, - "time": 0.6245281845875111, + "noteOrder": 4548, + "time": 0.8057053029832055, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4692,18 +8648,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 4, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3536, - "time": 0.6266596800980487, + "noteOrder": 4548, + "time": 0.8057053029832055, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4720,13 +8676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 5, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3548, - "time": 0.6287911756085863, + "noteOrder": 4572, + "time": 0.8099682940042808, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4743,13 +8699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 6, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3560, - "time": 0.6309226711191239, + "noteOrder": 4572, + "time": 0.8099682940042808, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4761,18 +8717,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 7, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3584, - "time": 0.6351856621401991, + "noteOrder": 4597, + "time": 0.8142312850253559, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4784,18 +8740,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, - "time": 0.6138707070348233, + "noteOrder": 4597, + "time": 0.8142312850253559, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4807,18 +8763,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3488, - "time": 0.6181336980558985, + "noteOrder": 4621, + "time": 0.8184942760464311, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4830,18 +8786,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 2, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3512, - "time": 0.6223966890769737, + "noteOrder": 4621, + "time": 0.8184942760464311, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4858,13 +8814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 3, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3524, - "time": 0.6245281845875111, + "noteOrder": 4633, + "time": 0.8206257715569686, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4881,13 +8837,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 4, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3536, - "time": 0.6266596800980487, + "noteOrder": 4633, + "time": 0.8206257715569686, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4904,13 +8860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 5, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3548, - "time": 0.6287911756085863, + "noteOrder": 4645, + "time": 0.8227572670675063, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4927,13 +8883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 6, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3560, - "time": 0.6309226711191239, + "noteOrder": 4645, + "time": 0.8227572670675063, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4950,13 +8906,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3608, - "time": 0.6394486531612743, + "noteOrder": 4645, + "time": 0.8227572670675063, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4968,18 +8924,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3632, - "time": 0.6437116441823494, + "noteOrder": 4657, + "time": 0.8248887625780439, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4991,18 +8947,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3656, - "time": 0.6479746352034246, + "noteOrder": 4657, + "time": 0.8248887625780439, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5019,13 +8975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3681, - "time": 0.6522376262244998, + "noteOrder": 4669, + "time": 0.8270202580885814, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5037,18 +8993,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3705, - "time": 0.656500617245575, + "noteOrder": 4669, + "time": 0.8270202580885814, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5065,13 +9021,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3729, - "time": 0.6607636082666501, + "noteOrder": 4681, + "time": 0.829151753599119, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5083,18 +9039,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3945, - "time": 0.6991305274563265, + "noteOrder": 4681, + "time": 0.829151753599119, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5106,18 +9062,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3969, - "time": 0.7033935184774016, + "noteOrder": 4693, + "time": 0.8312832491096566, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5134,13 +9090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3993, - "time": 0.7076565094984768, + "noteOrder": 4693, + "time": 0.8312832491096566, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5152,18 +9108,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4017, - "time": 0.711919500519552, + "noteOrder": 4717, + "time": 0.8355462401307316, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5180,13 +9136,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4162, - "time": 0.737497446646003, + "noteOrder": 4717, + "time": 0.8355462401307316, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5203,13 +9159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4186, - "time": 0.7417604376670781, + "noteOrder": 4729, + "time": 0.8376777356412693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5221,18 +9177,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4210, - "time": 0.7460234286881533, + "noteOrder": 4741, + "time": 0.839809231151807, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5249,11 +9205,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4234, - "time": 0.7502864197092285, + "noteOrder": 4741, + "time": 0.839809231151807, "position": { "x": 7, "y": 0 @@ -5272,13 +9228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4258, - "time": 0.7545494107303037, + "noteOrder": 4753, + "time": 0.8419407266623444, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5290,16 +9246,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4282, - "time": 0.7588124017513788, + "noteOrder": 4765, + "time": 0.844072222172882, "position": { "x": 7, "y": 0 @@ -5318,11 +9274,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4330, - "time": 0.7673383837935291, + "noteOrder": 4813, + "time": 0.8525982042150324, "position": { "x": 7, "y": 0 @@ -5341,13 +9297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 4, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4354, - "time": 0.7716013748146043, + "noteOrder": 4825, + "time": 0.85472969972557, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5364,11 +9320,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 5, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4378, - "time": 0.7758643658356795, + "noteOrder": 4825, + "time": 0.85472969972557, "position": { "x": 5, "y": 0 @@ -5387,13 +9343,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4378, - "time": 0.7758643658356795, + "noteOrder": 4837, + "time": 0.8568611952361075, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5405,16 +9361,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4402, - "time": 0.7801273568567545, + "noteOrder": 4837, + "time": 0.8568611952361075, "position": { "x": 4, "y": 0 @@ -5428,18 +9384,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 2, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4426, - "time": 0.7843903478778297, + "noteOrder": 4837, + "time": 0.8568611952361075, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5456,11 +9412,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4426, - "time": 0.7843903478778297, + "noteOrder": 4849, + "time": 0.8589926907466451, "position": { "x": 7, "y": 0 @@ -5474,18 +9430,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4450, - "time": 0.7886533388989049, + "noteOrder": 4849, + "time": 0.8589926907466451, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5497,16 +9453,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 2, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4474, - "time": 0.7929163299199801, + "noteOrder": 4861, + "time": 0.8611241862571827, "position": { "x": 5, "y": 0 @@ -5520,18 +9476,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4474, - "time": 0.7929163299199801, + "noteOrder": 4861, + "time": 0.8611241862571827, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5548,13 +9504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 4498, - "time": 0.7971793209410551, + "noteOrder": 4909, + "time": 0.8696501682993331, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5566,18 +9522,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 204, "indexInLine": 2, "isSliding": false, - "noteOrder": 4522, - "time": 0.8014423119621303, + "noteOrder": 4921, + "time": 0.8717816638098705, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5589,16 +9545,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 204, "indexInLine": 3, "isSliding": false, - "noteOrder": 4547, - "time": 0.8057053029832055, + "noteOrder": 4921, + "time": 0.8717816638098705, "position": { "x": 5, "y": 0 @@ -5612,16 +9568,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4547, - "time": 0.8057053029832055, + "noteOrder": 4933, + "time": 0.8739131593204081, "position": { "x": 5, "y": 0 @@ -5640,13 +9596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4571, - "time": 0.8099682940042807, + "noteOrder": 4933, + "time": 0.8739131593204081, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5663,13 +9619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4571, - "time": 0.8099682940042807, + "noteOrder": 4957, + "time": 0.8781761503414834, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5686,13 +9642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4595, - "time": 0.8142312850253559, + "noteOrder": 4970, + "time": 0.8803076458520209, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5709,11 +9665,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4595, - "time": 0.8142312850253559, + "noteOrder": 4970, + "time": 0.8803076458520209, "position": { "x": 5, "y": 0 @@ -5727,16 +9683,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4619, - "time": 0.818494276046431, + "noteOrder": 4982, + "time": 0.8824391413625585, "position": { "x": 5, "y": 0 @@ -5750,18 +9706,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4619, - "time": 0.818494276046431, + "noteOrder": 4982, + "time": 0.8824391413625585, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5778,13 +9734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4643, - "time": 0.8227572670675062, + "noteOrder": 5006, + "time": 0.8867021323836336, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5801,11 +9757,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 5, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4715, - "time": 0.8355462401307316, + "noteOrder": 5102, + "time": 0.9037540964679344, "position": { "x": 6, "y": 0 @@ -5824,13 +9780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4715, - "time": 0.8355462401307316, + "noteOrder": 5006, + "time": 0.8867021323836336, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5847,11 +9803,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4727, - "time": 0.8376777356412692, + "noteOrder": 5102, + "time": 0.9037540964679344, "position": { "x": 4, "y": 0 @@ -5870,13 +9826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4739, - "time": 0.8398092311518068, + "noteOrder": 5126, + "time": 0.9080170874890094, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5893,13 +9849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4739, - "time": 0.8398092311518068, + "noteOrder": 5150, + "time": 0.9122800785100846, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5911,18 +9867,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4751, - "time": 0.8419407266623444, + "noteOrder": 5174, + "time": 0.9165430695311598, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5934,18 +9890,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4763, - "time": 0.844072222172882, + "noteOrder": 5198, + "time": 0.920806060552235, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5957,18 +9913,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4811, - "time": 0.8525982042150324, + "noteOrder": 5198, + "time": 0.920806060552235, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5985,13 +9941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, - "time": 0.8568611952361075, + "noteOrder": 5222, + "time": 0.9250690515733101, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6003,18 +9959,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4907, - "time": 0.8696501682993331, + "noteOrder": 5246, + "time": 0.9293320425943852, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6031,13 +9987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4955, - "time": 0.8781761503414833, + "noteOrder": 5270, + "time": 0.9335950336154605, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6049,16 +10005,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5004, - "time": 0.8867021323836336, + "noteOrder": 5294, + "time": 0.9378580246365356, "position": { "x": 6, "y": 0 @@ -6077,13 +10033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 5100, - "time": 0.9037540964679343, + "noteOrder": 5294, + "time": 0.9378580246365356, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6095,18 +10051,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5004, - "time": 0.8867021323836336, + "noteOrder": 5306, + "time": 0.9399895201470732, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6123,13 +10079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5100, - "time": 0.9037540964679343, + "noteOrder": 5306, + "time": 0.9399895201470732, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6146,11 +10102,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 2, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5124, - "time": 0.9080170874890094, + "noteOrder": 5318, + "time": 0.9421210156576107, "position": { "x": 5, "y": 0 @@ -6169,11 +10125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 3, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5148, - "time": 0.9122800785100845, + "noteOrder": 5318, + "time": 0.9421210156576107, "position": { "x": 6, "y": 0 @@ -6192,13 +10148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 4, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5172, - "time": 0.9165430695311597, + "noteOrder": 5318, + "time": 0.9421210156576107, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6210,16 +10166,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 5, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5196, - "time": 0.9208060605522349, + "noteOrder": 5331, + "time": 0.9442525111681485, "position": { "x": 4, "y": 0 @@ -6233,18 +10189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5196, - "time": 0.9208060605522349, + "noteOrder": 5331, + "time": 0.9442525111681485, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6261,11 +10217,11 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5220, - "time": 0.9250690515733101, + "noteOrder": 5343, + "time": 0.9463840066786859, "position": { "x": 5, "y": 0 @@ -6284,13 +10240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 2, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5244, - "time": 0.9293320425943853, + "noteOrder": 5343, + "time": 0.9463840066786859, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6307,13 +10263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 3, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5268, - "time": 0.9335950336154604, + "noteOrder": 5343, + "time": 0.9463840066786859, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6325,18 +10281,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 4, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5292, - "time": 0.9378580246365356, + "noteOrder": 5355, + "time": 0.9485155021892235, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6348,18 +10304,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5292, - "time": 0.9378580246365356, + "noteOrder": 5355, + "time": 0.9485155021892235, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6376,13 +10332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5316, - "time": 0.9421210156576107, + "noteOrder": 5367, + "time": 0.9506469976997611, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6394,18 +10350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5340, - "time": 0.9463840066786859, + "noteOrder": 5367, + "time": 0.9506469976997611, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6423,9 +10379,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, + "noteOrder": 5391, "time": 0.9549099887208362, "position": { "x": 6, @@ -6446,9 +10402,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.9591729797419114, "position": { "x": 4, @@ -6469,9 +10425,9 @@ }, { "lineGroupId": 225, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5437, + "noteOrder": 5439, "time": 0.9634359707629866, "position": { "x": 6, @@ -6492,10 +10448,10 @@ }, { "lineGroupId": 225, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5461, - "time": 0.9676989617840618, + "noteOrder": 5463, + "time": 0.9676989617840617, "position": { "x": 4, "y": 0 @@ -6515,10 +10471,10 @@ }, { "lineGroupId": 225, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5485, - "time": 0.9719619528051369, + "noteOrder": 5487, + "time": 0.971961952805137, "position": { "x": 6, "y": 0 @@ -6538,9 +10494,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, + "noteOrder": 5391, "time": 0.9549099887208362, "position": { "x": 4, @@ -6561,9 +10517,9 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.9591729797419114, "position": { "x": 6, @@ -6584,9 +10540,9 @@ }, { "lineGroupId": 226, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5437, + "noteOrder": 5439, "time": 0.9634359707629866, "position": { "x": 4, @@ -6607,10 +10563,10 @@ }, { "lineGroupId": 226, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5461, - "time": 0.9676989617840618, + "noteOrder": 5463, + "time": 0.9676989617840617, "position": { "x": 6, "y": 0 @@ -6630,10 +10586,10 @@ }, { "lineGroupId": 226, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5485, - "time": 0.9719619528051369, + "noteOrder": 5487, + "time": 0.971961952805137, "position": { "x": 4, "y": 0 diff --git a/tracks/Oboro Cybernetics/360_difficulty_1b.json b/tracks/Oboro Cybernetics/360_difficulty_1b.json index 5ddfdd20..1558d0f2 100644 --- a/tracks/Oboro Cybernetics/360_difficulty_1b.json +++ b/tracks/Oboro Cybernetics/360_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 385, - "time": 0.06820785633720258, + "time": 0.0682078563372026, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 481, - "time": 0.08525982042150322, + "time": 0.08525982042150324, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 505, - "time": 0.0895228114425784, + "time": 0.08952281144257841, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 553, - "time": 0.09804879348472871, + "noteOrder": 554, + "time": 0.09804879348472872, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 577, - "time": 0.10231178450580387, + "noteOrder": 578, + "time": 0.10231178450580389, "position": { "x": 5, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 601, + "noteOrder": 602, "time": 0.10657477552687905, "position": { "x": 5, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.1108377665479542, "position": { "x": 5, @@ -234,7 +234,7 @@ }, { "noteOrder": 650, - "time": 0.11510075756902936, + "time": 0.11510075756902938, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 698, - "time": 0.12362673961117968, + "time": 0.12362673961117969, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 722, - "time": 0.12788973063225487, + "time": 0.12788973063225484, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 746, - "time": 0.13215272165333, + "time": 0.13215272165333003, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 938, - "time": 0.1662566498219313, + "noteOrder": 939, + "time": 0.16625664982193133, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 986, + "noteOrder": 987, "time": 0.17478263186408163, "position": { "x": 4, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1010, - "time": 0.1790456228851568, + "noteOrder": 1011, + "time": 0.17904562288515682, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1035, "time": 0.18330861390623196, "position": { "x": 4, @@ -474,7 +474,7 @@ }, { "noteOrder": 1107, - "time": 0.19609758696945742, + "time": 0.19609758696945745, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1131, - "time": 0.20036057799053258, + "time": 0.2003605779905326, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1155, - "time": 0.20462356901160775, + "time": 0.20462356901160778, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1395, - "time": 0.24725347922235935, + "noteOrder": 1396, + "time": 0.24725347922235938, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1419, + "noteOrder": 1420, "time": 0.25151647024343454, "position": { "x": 7, @@ -654,7 +654,7 @@ }, { "noteOrder": 1612, - "time": 0.2856203984120358, + "time": 0.28562039841203585, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1684, - "time": 0.2984093714752613, + "noteOrder": 1685, + "time": 0.29840937147526136, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1708, - "time": 0.30267236249633644, + "noteOrder": 1709, + "time": 0.3026723624963365, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1852, + "noteOrder": 1853, "time": 0.3282503086227875, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1900, - "time": 0.3367762906649378, + "noteOrder": 1901, + "time": 0.33677629066493775, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1949, - "time": 0.3453022727070881, + "time": 0.34530227270708813, "position": { "x": 4, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1997, - "time": 0.3538282547492384, + "time": 0.35382825474923846, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2117, + "noteOrder": 2118, "time": 0.37514320985461425, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2141, - "time": 0.3794062008756894, + "noteOrder": 2142, + "time": 0.37940620087568944, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2165, + "noteOrder": 2166, "time": 0.38366919189676457, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2189, - "time": 0.38793218291783976, + "noteOrder": 2190, + "time": 0.3879321829178397, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2309, - "time": 0.4092471380232155, + "noteOrder": 2310, + "time": 0.40924713802321555, "position": { "x": 3, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2333, + "noteOrder": 2334, "time": 0.4135101290442907, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.4177731200653658, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.4433510661918168, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2526, - "time": 0.44761405721289194, + "noteOrder": 2527, + "time": 0.447614057212892, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2550, - "time": 0.4518770482339671, + "noteOrder": 2551, + "time": 0.4518770482339672, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2574, - "time": 0.45614003925504226, + "noteOrder": 2575, + "time": 0.4561400392550423, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 2695, "time": 0.4774549943604181, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.4817179853814933, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.48598097640256843, + "noteOrder": 2743, + "time": 0.4859809764025685, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 2768, "time": 0.4902439674236436, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3199, - "time": 0.5669778058029964, + "noteOrder": 3201, + "time": 0.5669778058029965, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3223, - "time": 0.5712407968240716, + "noteOrder": 3225, + "time": 0.5712407968240717, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3248, - "time": 0.5755037878451468, + "noteOrder": 3249, + "time": 0.5755037878451469, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3296, - "time": 0.5840297698872972, + "noteOrder": 3297, + "time": 0.5840297698872973, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3320, - "time": 0.5882927609083722, + "noteOrder": 3321, + "time": 0.5882927609083723, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3344, + "noteOrder": 3345, "time": 0.5925557519294474, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3368, - "time": 0.5968187429505226, + "noteOrder": 3369, + "time": 0.5968187429505227, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3392, + "noteOrder": 3393, "time": 0.6010817339715978, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3416, - "time": 0.6053447249926729, + "noteOrder": 3417, + "time": 0.605344724992673, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3440, - "time": 0.6096077160137481, + "noteOrder": 3441, + "time": 0.6096077160137482, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3608, + "noteOrder": 3610, "time": 0.6394486531612743, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3656, + "noteOrder": 3658, "time": 0.6479746352034246, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3705, + "noteOrder": 3706, "time": 0.656500617245575, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3777, + "noteOrder": 3778, "time": 0.6692895903088004, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3801, - "time": 0.6735525813298756, + "noteOrder": 3802, + "time": 0.6735525813298755, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 3826, "time": 0.6778155723509508, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3873, - "time": 0.686341554393101, + "noteOrder": 3875, + "time": 0.6863415543931011, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3897, - "time": 0.6906045454141762, + "noteOrder": 3899, + "time": 0.6906045454141763, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3921, + "noteOrder": 3923, "time": 0.6948675364352513, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4065, - "time": 0.7204454825617023, + "noteOrder": 4067, + "time": 0.7204454825617024, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4114, - "time": 0.7289714646038526, + "noteOrder": 4115, + "time": 0.7289714646038528, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4162, + "noteOrder": 4163, "time": 0.737497446646003, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4210, + "noteOrder": 4211, "time": 0.7460234286881533, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4258, - "time": 0.7545494107303037, + "noteOrder": 4260, + "time": 0.7545494107303036, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4306, + "noteOrder": 4308, "time": 0.763075392772454, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4450, - "time": 0.7886533388989049, + "noteOrder": 4452, + "time": 0.788653338898905, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4476, "time": 0.7929163299199801, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4498, - "time": 0.7971793209410551, + "noteOrder": 4500, + "time": 0.7971793209410554, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4522, - "time": 0.8014423119621303, + "noteOrder": 4524, + "time": 0.8014423119621304, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4547, + "noteOrder": 4548, "time": 0.8057053029832055, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4571, - "time": 0.8099682940042807, + "noteOrder": 4572, + "time": 0.8099682940042808, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4595, + "noteOrder": 4597, "time": 0.8142312850253559, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4619, - "time": 0.818494276046431, + "noteOrder": 4621, + "time": 0.8184942760464311, "position": { "x": 5, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4643, - "time": 0.8227572670675062, + "noteOrder": 4645, + "time": 0.8227572670675063, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4667, + "noteOrder": 4669, "time": 0.8270202580885814, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4691, + "noteOrder": 4693, "time": 0.8312832491096566, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5028, - "time": 0.8909651234047088, + "noteOrder": 5030, + "time": 0.8909651234047089, "position": { "x": 4, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5076, - "time": 0.8994911054468591, + "noteOrder": 5078, + "time": 0.8994911054468592, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5244, - "time": 0.9293320425943853, + "noteOrder": 5246, + "time": 0.9293320425943852, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5268, - "time": 0.9335950336154604, + "noteOrder": 5270, + "time": 0.9335950336154605, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.9378580246365356, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5316, + "noteOrder": 5318, "time": 0.9421210156576107, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5340, + "noteOrder": 5343, "time": 0.9463840066786859, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5364, - "time": 0.950646997699761, + "noteOrder": 5367, + "time": 0.9506469976997611, "position": { "x": 4, "y": 0 @@ -1996,10 +1996,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.05115589225290194, + "time": 0.051155892252901944, "position": { "x": 6, "y": 0 @@ -2019,7 +2019,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.05968187429505226, @@ -2042,7 +2042,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 337, "time": 0.05968187429505226, @@ -2065,10 +2065,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 385, - "time": 0.06820785633720258, + "time": 0.0682078563372026, "position": { "x": 4, "y": 0 @@ -2088,10 +2088,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, - "time": 0.13641571267440517, + "time": 0.1364157126744052, "position": { "x": 6, "y": 0 @@ -2111,10 +2111,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 794, - "time": 0.14067870369548036, + "time": 0.14067870369548033, "position": { "x": 6, "y": 0 @@ -2134,10 +2134,10 @@ }, { "lineGroupId": 22, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 842, - "time": 0.14920468573763065, + "time": 0.14920468573763068, "position": { "x": 6, "y": 0 @@ -2157,7 +2157,7 @@ }, { "lineGroupId": 22, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 866, "time": 0.15346767675870582, @@ -2180,10 +2180,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, - "time": 0.13641571267440517, + "time": 0.1364157126744052, "position": { "x": 4, "y": 0 @@ -2203,10 +2203,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 794, - "time": 0.14067870369548036, + "time": 0.14067870369548033, "position": { "x": 4, "y": 0 @@ -2226,10 +2226,10 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 842, - "time": 0.14920468573763065, + "time": 0.14920468573763068, "position": { "x": 4, "y": 0 @@ -2249,7 +2249,7 @@ }, { "lineGroupId": 23, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 866, "time": 0.15346767675870582, @@ -2272,10 +2272,10 @@ }, { "lineGroupId": 23, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 962, - "time": 0.17051964084300644, + "noteOrder": 963, + "time": 0.17051964084300647, "position": { "x": 4, "y": 0 @@ -2295,10 +2295,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 962, - "time": 0.17051964084300644, + "noteOrder": 963, + "time": 0.17051964084300647, "position": { "x": 6, "y": 0 @@ -2318,9 +2318,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, + "noteOrder": 1059, "time": 0.18757160492730712, "position": { "x": 6, @@ -2341,7 +2341,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1251, "time": 0.2216755330959084, @@ -2364,10 +2364,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1275, - "time": 0.22593852411698356, + "time": 0.2259385241169836, "position": { "x": 6, "y": 0 @@ -2387,10 +2387,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1275, - "time": 0.22593852411698356, + "time": 0.2259385241169836, "position": { "x": 4, "y": 0 @@ -2410,10 +2410,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1299, - "time": 0.23020151513805873, + "noteOrder": 1300, + "time": 0.23020151513805875, "position": { "x": 4, "y": 0 @@ -2433,10 +2433,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1299, - "time": 0.23020151513805873, + "noteOrder": 1300, + "time": 0.23020151513805875, "position": { "x": 6, "y": 0 @@ -2456,9 +2456,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1323, + "noteOrder": 1324, "time": 0.2344645061591339, "position": { "x": 6, @@ -2479,9 +2479,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1323, + "noteOrder": 1324, "time": 0.2344645061591339, "position": { "x": 4, @@ -2502,9 +2502,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1347, + "noteOrder": 1348, "time": 0.23872749718020905, "position": { "x": 4, @@ -2525,9 +2525,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1347, + "noteOrder": 1348, "time": 0.23872749718020905, "position": { "x": 7, @@ -2547,11 +2547,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1371, - "time": 0.24299048820128422, + "noteOrder": 1360, + "time": 0.24085899269074665, "position": { "x": 7, "y": 0 @@ -2565,18 +2565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1443, - "time": 0.25577946126450973, + "noteOrder": 1360, + "time": 0.24085899269074665, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2593,13 +2593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1491, - "time": 0.26430544330666, + "noteOrder": 1372, + "time": 0.24299048820128424, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2616,13 +2616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1540, - "time": 0.27283142534881033, + "noteOrder": 1384, + "time": 0.2451219837118218, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2639,13 +2639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1588, - "time": 0.2813574073909607, + "noteOrder": 1384, + "time": 0.2451219837118218, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2662,13 +2662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1588, - "time": 0.2813574073909607, + "noteOrder": 1444, + "time": 0.2557794612645097, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2685,13 +2685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, - "time": 0.289883389433111, + "noteOrder": 1468, + "time": 0.26004245228558487, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2708,11 +2708,34 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1636, - "time": 0.289883389433111, + "noteOrder": 1468, + "time": 0.26004245228558487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.26430544330666006, "position": { "x": 3, "y": 0 @@ -2731,11 +2754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1660, - "time": 0.2941463804541861, + "noteOrder": 1516, + "time": 0.2685684343277352, "position": { "x": 3, "y": 0 @@ -2749,18 +2772,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1732, - "time": 0.30693535351741164, + "noteOrder": 1516, + "time": 0.2685684343277352, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2777,13 +2800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1780, - "time": 0.31546133555956196, + "noteOrder": 1540, + "time": 0.2728314253488104, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2795,16 +2818,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1828, - "time": 0.3239873176017123, + "noteOrder": 1588, + "time": 0.28135740739096066, "position": { "x": 5, "y": 0 @@ -2818,16 +2841,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 1876, - "time": 0.3325132996438626, + "noteOrder": 1588, + "time": 0.28135740739096066, "position": { "x": 5, "y": 0 @@ -2846,11 +2869,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1876, - "time": 0.3325132996438626, + "noteOrder": 1636, + "time": 0.289883389433111, "position": { "x": 5, "y": 0 @@ -2864,18 +2887,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 1924, - "time": 0.3410392816860129, + "noteOrder": 1636, + "time": 0.289883389433111, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2892,13 +2915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1924, - "time": 0.3410392816860129, + "noteOrder": 1648, + "time": 0.29201488494364863, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2910,18 +2933,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1973, - "time": 0.34956526372816327, + "noteOrder": 1648, + "time": 0.29201488494364863, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2933,16 +2956,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1973, - "time": 0.34956526372816327, + "noteOrder": 1661, + "time": 0.2941463804541862, "position": { "x": 3, "y": 0 @@ -2956,16 +2979,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2021, - "time": 0.3580912457703136, + "noteOrder": 1673, + "time": 0.2962778759647237, "position": { "x": 3, "y": 0 @@ -2979,18 +3002,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2021, - "time": 0.3580912457703136, + "noteOrder": 1673, + "time": 0.2962778759647237, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3007,11 +3030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2069, - "time": 0.3666172278124639, + "noteOrder": 1733, + "time": 0.30693535351741164, "position": { "x": 3, "y": 0 @@ -3030,11 +3053,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2213, - "time": 0.39219517393891484, + "noteOrder": 1757, + "time": 0.3111983445384868, "position": { "x": 3, "y": 0 @@ -3053,11 +3076,57 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1757, + "time": 0.3111983445384868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1781, + "time": 0.31546133555956196, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2261, - "time": 0.40072115598106517, + "noteOrder": 1805, + "time": 0.31972432658063715, "position": { "x": 7, "y": 0 @@ -3075,11 +3144,494 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1805, + "time": 0.31972432658063715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1829, + "time": 0.3239873176017123, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1877, + "time": 0.33251329964386267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1877, + "time": 0.33251329964386267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1925, + "time": 0.34103928168601294, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1925, + "time": 0.34103928168601294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1973, + "time": 0.34956526372816327, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1973, + "time": 0.34956526372816327, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2022, + "time": 0.35809124577031365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2022, + "time": 0.35809124577031365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2046, + "time": 0.36235423679138873, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2046, + "time": 0.36235423679138873, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2070, + "time": 0.3666172278124639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2094, + "time": 0.37088021883353905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2094, + "time": 0.37088021883353905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2214, + "time": 0.3921951739389149, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2238, + "time": 0.39645816495999003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2238, + "time": 0.39645816495999003, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2262, + "time": 0.4007211559810652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.4049841470021404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2286, + "time": 0.4049841470021404, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2406, + "noteOrder": 2407, "time": 0.4262991021075162, "position": { "x": 6, @@ -3100,9 +3652,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2454, + "noteOrder": 2455, "time": 0.43482508414966653, "position": { "x": 6, @@ -3123,9 +3675,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2454, + "noteOrder": 2455, "time": 0.43482508414966653, "position": { "x": 4, @@ -3146,9 +3698,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.4433510661918168, "position": { "x": 4, @@ -3169,10 +3721,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2790, - "time": 0.4945069584447187, + "noteOrder": 2792, + "time": 0.49450695844471876, "position": { "x": 6, "y": 0 @@ -3192,10 +3744,10 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3079, - "time": 0.5456628506976207, + "noteOrder": 3080, + "time": 0.5456628506976208, "position": { "x": 6, "y": 0 @@ -3215,10 +3767,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2790, - "time": 0.4945069584447187, + "noteOrder": 2792, + "time": 0.49450695844471876, "position": { "x": 4, "y": 0 @@ -3238,10 +3790,10 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3079, - "time": 0.5456628506976207, + "noteOrder": 3080, + "time": 0.5456628506976208, "position": { "x": 4, "y": 0 @@ -3261,10 +3813,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3175, - "time": 0.5627148147819214, + "noteOrder": 3177, + "time": 0.5627148147819213, "position": { "x": 7, "y": 0 @@ -3284,9 +3836,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3272, + "noteOrder": 3273, "time": 0.579766778866222, "position": { "x": 7, @@ -3307,9 +3859,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3272, + "noteOrder": 3273, "time": 0.579766778866222, "position": { "x": 3, @@ -3330,10 +3882,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3368, - "time": 0.5968187429505226, + "noteOrder": 3369, + "time": 0.5968187429505227, "position": { "x": 3, "y": 0 @@ -3353,9 +3905,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, + "noteOrder": 3465, "time": 0.6138707070348233, "position": { "x": 6, @@ -3376,9 +3928,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3560, + "noteOrder": 3562, "time": 0.6309226711191239, "position": { "x": 6, @@ -3399,9 +3951,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, + "noteOrder": 3465, "time": 0.6138707070348233, "position": { "x": 4, @@ -3422,9 +3974,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3560, + "noteOrder": 3562, "time": 0.6309226711191239, "position": { "x": 4, @@ -3445,10 +3997,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3753, - "time": 0.6650265992877252, + "noteOrder": 3754, + "time": 0.6650265992877253, "position": { "x": 6, "y": 0 @@ -3468,10 +4020,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3849, - "time": 0.6820785633720258, + "noteOrder": 3850, + "time": 0.6820785633720259, "position": { "x": 6, "y": 0 @@ -3491,10 +4043,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3849, - "time": 0.6820785633720258, + "noteOrder": 3850, + "time": 0.6820785633720259, "position": { "x": 4, "y": 0 @@ -3514,9 +4066,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3945, + "noteOrder": 3947, "time": 0.6991305274563265, "position": { "x": 4, @@ -3537,9 +4089,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3945, + "noteOrder": 3947, "time": 0.6991305274563265, "position": { "x": 7, @@ -3558,12 +4110,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3971, + "time": 0.7033935184774017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3971, + "time": 0.7033935184774017, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3995, + "time": 0.7076565094984769, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3993, - "time": 0.7076565094984768, + "noteOrder": 4019, + "time": 0.711919500519552, "position": { "x": 3, "y": 0 @@ -3581,12 +4202,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4019, + "time": 0.711919500519552, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4041, - "time": 0.7161824915406272, + "noteOrder": 4043, + "time": 0.7161824915406273, "position": { "x": 7, "y": 0 @@ -3606,10 +4250,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4065, - "time": 0.7204454825617023, + "noteOrder": 4067, + "time": 0.7204454825617024, "position": { "x": 6, "y": 0 @@ -3629,9 +4273,9 @@ }, { "lineGroupId": 125, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4089, + "noteOrder": 4091, "time": 0.7247084735827775, "position": { "x": 6, @@ -3652,10 +4296,10 @@ }, { "lineGroupId": 125, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4114, - "time": 0.7289714646038526, + "noteOrder": 4115, + "time": 0.7289714646038528, "position": { "x": 6, "y": 0 @@ -3675,9 +4319,9 @@ }, { "lineGroupId": 125, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4138, + "noteOrder": 4139, "time": 0.7332344556249278, "position": { "x": 5, @@ -3698,9 +4342,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4138, + "noteOrder": 4139, "time": 0.7332344556249278, "position": { "x": 3, @@ -3721,9 +4365,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4162, + "noteOrder": 4163, "time": 0.737497446646003, "position": { "x": 4, @@ -3744,9 +4388,9 @@ }, { "lineGroupId": 128, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4186, + "noteOrder": 4187, "time": 0.7417604376670781, "position": { "x": 4, @@ -3767,9 +4411,9 @@ }, { "lineGroupId": 128, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4210, + "noteOrder": 4211, "time": 0.7460234286881533, "position": { "x": 4, @@ -3790,9 +4434,9 @@ }, { "lineGroupId": 128, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4234, + "noteOrder": 4236, "time": 0.7502864197092285, "position": { "x": 5, @@ -3813,9 +4457,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4330, + "noteOrder": 4332, "time": 0.7673383837935291, "position": { "x": 6, @@ -3834,12 +4478,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4356, + "time": 0.7716013748146043, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4356, + "time": 0.7716013748146043, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4380, + "time": 0.7758643658356794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4404, + "time": 0.7801273568567546, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4378, - "time": 0.7758643658356795, + "noteOrder": 4404, + "time": 0.7801273568567546, "position": { "x": 4, "y": 0 @@ -3859,9 +4595,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8525982042150324, "position": { "x": 4, @@ -3882,9 +4618,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, + "noteOrder": 4837, "time": 0.8568611952361075, "position": { "x": 4, @@ -3905,9 +4641,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4811, + "noteOrder": 4813, "time": 0.8525982042150324, "position": { "x": 6, @@ -3928,9 +4664,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, + "noteOrder": 4837, "time": 0.8568611952361075, "position": { "x": 6, @@ -3951,9 +4687,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8611241862571827, "position": { "x": 6, @@ -3974,9 +4710,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4907, + "noteOrder": 4909, "time": 0.8696501682993331, "position": { "x": 6, @@ -3997,9 +4733,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8611241862571827, "position": { "x": 4, @@ -4020,9 +4756,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4907, + "noteOrder": 4909, "time": 0.8696501682993331, "position": { "x": 4, @@ -4043,9 +4779,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5004, + "noteOrder": 5006, "time": 0.8867021323836336, "position": { "x": 6, @@ -4066,10 +4802,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5052, - "time": 0.8952281144257839, + "noteOrder": 5054, + "time": 0.895228114425784, "position": { "x": 6, "y": 0 @@ -4089,10 +4825,10 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5052, - "time": 0.8952281144257839, + "noteOrder": 5054, + "time": 0.895228114425784, "position": { "x": 4, "y": 0 @@ -4112,10 +4848,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5100, - "time": 0.9037540964679343, + "noteOrder": 5102, + "time": 0.9037540964679344, "position": { "x": 4, "y": 0 @@ -4135,9 +4871,9 @@ }, { "lineGroupId": 156, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5124, + "noteOrder": 5126, "time": 0.9080170874890094, "position": { "x": 4, @@ -4158,10 +4894,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5100, - "time": 0.9037540964679343, + "noteOrder": 5102, + "time": 0.9037540964679344, "position": { "x": 6, "y": 0 @@ -4181,9 +4917,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5124, + "noteOrder": 5126, "time": 0.9080170874890094, "position": { "x": 6, @@ -4204,10 +4940,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5148, - "time": 0.9122800785100845, + "noteOrder": 5150, + "time": 0.9122800785100846, "position": { "x": 5, "y": 0 @@ -4227,10 +4963,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5172, - "time": 0.9165430695311597, + "noteOrder": 5174, + "time": 0.9165430695311598, "position": { "x": 5, "y": 0 @@ -4250,10 +4986,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5196, - "time": 0.9208060605522349, + "noteOrder": 5198, + "time": 0.920806060552235, "position": { "x": 4, "y": 0 @@ -4273,9 +5009,9 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.9250690515733101, "position": { "x": 4, @@ -4296,10 +5032,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5196, - "time": 0.9208060605522349, + "noteOrder": 5198, + "time": 0.920806060552235, "position": { "x": 6, "y": 0 @@ -4319,9 +5055,9 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.9250690515733101, "position": { "x": 6, @@ -4342,9 +5078,9 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, + "noteOrder": 5391, "time": 0.9549099887208362, "position": { "x": 4, @@ -4365,10 +5101,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5485, - "time": 0.9719619528051369, + "noteOrder": 5487, + "time": 0.971961952805137, "position": { "x": 4, "y": 0 @@ -4388,9 +5124,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, + "noteOrder": 5391, "time": 0.9549099887208362, "position": { "x": 6, @@ -4411,10 +5147,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5485, - "time": 0.9719619528051369, + "noteOrder": 5487, + "time": 0.971961952805137, "position": { "x": 6, "y": 0 diff --git a/tracks/Oboro Cybernetics/info.json b/tracks/Oboro Cybernetics/info.json index c6e27957..ba28a177 100644 --- a/tracks/Oboro Cybernetics/info.json +++ b/tracks/Oboro Cybernetics/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Oboro Cybernetics", - "SongLength": "126.589388", + "SongLength": "116.636735", "SongAuthorName": "Tanchiky", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Official Bootleg/308_difficulty_1a.json b/tracks/Official Bootleg/308_difficulty_1a.json index 4f1c5010..ceb0e90d 100644 --- a/tracks/Official Bootleg/308_difficulty_1a.json +++ b/tracks/Official Bootleg/308_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.019860973187686193, + "time": 0.019860973187686197, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 241, - "time": 0.03972194637537239, + "time": 0.039721946375372394, "position": { "x": 8, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 265, + "noteOrder": 266, "time": 0.04369414101290963, "position": { "x": 5, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 434, + "noteOrder": 435, "time": 0.0714995034756703, "position": { "x": 5, @@ -314,7 +314,7 @@ }, { "noteOrder": 459, - "time": 0.07547169811320753, + "time": 0.07547169811320754, "position": { "x": 8, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 507, - "time": 0.08341608738828202, + "time": 0.08341608738828203, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 603, - "time": 0.09930486593843098, + "noteOrder": 604, + "time": 0.09930486593843099, "position": { "x": 4, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 628, "time": 0.10327706057596822, "position": { "x": 5, @@ -434,7 +434,7 @@ }, { "noteOrder": 652, - "time": 0.10724925521350545, + "time": 0.10724925521350546, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 748, - "time": 0.12313803376365441, + "time": 0.12313803376365443, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 797, "time": 0.13108242303872888, "position": { "x": 2, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 942, "time": 0.15491559086395232, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 990, "time": 0.1628599801390268, "position": { "x": 7, @@ -634,7 +634,7 @@ }, { "noteOrder": 1038, - "time": 0.1708043694141013, + "time": 0.17080436941410126, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1448, + "noteOrder": 1449, "time": 0.23833167825223434, "position": { "x": 8, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1472, - "time": 0.24230387288977157, + "noteOrder": 1473, + "time": 0.2423038728897716, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1496, - "time": 0.24627606752730882, + "noteOrder": 1497, + "time": 0.24627606752730885, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.2502482621648461, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1617, + "noteOrder": 1618, "time": 0.26613704071499505, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1834, - "time": 0.3018867924528301, + "noteOrder": 1835, + "time": 0.3018867924528302, "position": { "x": 2, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1858, - "time": 0.3058589870903674, + "noteOrder": 1859, + "time": 0.30585898709036746, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1883, "time": 0.30983118172790464, "position": { "x": 4, @@ -914,7 +914,7 @@ }, { "noteOrder": 1931, - "time": 0.3177755710029791, + "time": 0.31777557100297915, "position": { "x": 2, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2051, + "noteOrder": 2052, "time": 0.3376365441906653, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2100, + "noteOrder": 2101, "time": 0.3455809334657398, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2148, + "noteOrder": 2149, "time": 0.3535253227408143, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2196, + "noteOrder": 2197, "time": 0.3614697120158888, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2293, - "time": 0.37735849056603776, + "noteOrder": 2294, + "time": 0.3773584905660377, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.3932472691161866, + "noteOrder": 2390, + "time": 0.3932472691161867, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2437, - "time": 0.40119165839126114, + "noteOrder": 2439, + "time": 0.4011916583912612, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2486, + "noteOrder": 2487, "time": 0.4091360476663356, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2799, + "noteOrder": 2801, "time": 0.46077457795431975, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2824, - "time": 0.4647467725918569, + "noteOrder": 2825, + "time": 0.46474677259185704, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4687189672293942, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2860, + "noteOrder": 2861, "time": 0.4707050645481628, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2872, + "noteOrder": 2873, "time": 0.47269116186693144, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2896, + "noteOrder": 2897, "time": 0.47666335650446867, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2920, - "time": 0.4806355511420059, + "noteOrder": 2921, + "time": 0.48063555114200596, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2944, - "time": 0.48460774577954313, + "noteOrder": 2946, + "time": 0.4846077457795432, "position": { "x": 8, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.4865938430983118, + "noteOrder": 2958, + "time": 0.48659384309831183, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2968, + "noteOrder": 2970, "time": 0.4885799404170804, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2993, - "time": 0.49255213505461765, + "noteOrder": 2994, + "time": 0.4925521350546177, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3017, - "time": 0.4965243296921549, + "noteOrder": 3018, + "time": 0.49652432969215493, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3041, + "noteOrder": 3042, "time": 0.5004965243296922, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.5024826216484607, + "noteOrder": 3054, + "time": 0.5024826216484608, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3065, + "noteOrder": 3066, "time": 0.5044687189672293, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3089, + "noteOrder": 3090, "time": 0.5084409136047666, "position": { "x": 8, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5124131082423038, + "noteOrder": 3115, + "time": 0.5124131082423039, "position": { "x": 5, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3139, "time": 0.5163853028798411, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.5183714001986097, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3186, + "noteOrder": 3187, "time": 0.5243296921549155, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3198, + "noteOrder": 3199, "time": 0.5263157894736842, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3234, + "noteOrder": 3235, "time": 0.5322740814299901, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3294, + "noteOrder": 3296, "time": 0.5422045680238332, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3306, + "noteOrder": 3308, "time": 0.5441906653426017, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3332, "time": 0.548162859980139, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3355, + "noteOrder": 3356, "time": 0.5521350546176762, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3415, + "noteOrder": 3416, "time": 0.5620655412115193, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3427, + "noteOrder": 3428, "time": 0.564051638530288, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3451, - "time": 0.5680238331678251, + "noteOrder": 3453, + "time": 0.5680238331678252, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3487, + "noteOrder": 3489, "time": 0.573982125124131, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3499, + "noteOrder": 3501, "time": 0.5759682224428997, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3525, "time": 0.5799404170804369, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3982, - "time": 0.6554121151936444, + "noteOrder": 3984, + "time": 0.6554121151936445, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4006, + "noteOrder": 4008, "time": 0.6593843098311817, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4030, + "noteOrder": 4032, "time": 0.663356504468719, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4054, - "time": 0.6673286991062561, + "noteOrder": 4056, + "time": 0.6673286991062563, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4079, - "time": 0.6713008937437934, + "noteOrder": 4080, + "time": 0.6713008937437933, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4103, + "noteOrder": 4104, "time": 0.6752730883813306, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4127, + "noteOrder": 4129, "time": 0.6792452830188679, "position": { "x": 7, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4754, - "time": 0.7825223435948361, + "noteOrder": 4756, + "time": 0.7825223435948362, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4802, - "time": 0.7904667328699105, + "noteOrder": 4805, + "time": 0.7904667328699106, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4947, + "noteOrder": 4949, "time": 0.814299900695134, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4974, "time": 0.8182720953326712, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 4998, "time": 0.8222442899702085, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5020, + "noteOrder": 5022, "time": 0.8262164846077458, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.830188679245283, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5068, + "noteOrder": 5070, "time": 0.8341608738828202, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5333, - "time": 0.8778550148957299, + "noteOrder": 5336, + "time": 0.8778550148957298, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.8818272095332671, "position": { "x": 4, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5382, - "time": 0.8857994041708044, + "noteOrder": 5384, + "time": 0.8857994041708043, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5432, "time": 0.8937437934458788, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5454, - "time": 0.8977159880834161, + "noteOrder": 5456, + "time": 0.897715988083416, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5478, + "noteOrder": 5481, "time": 0.9016881827209533, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5888, - "time": 0.9692154915590863, + "noteOrder": 5891, + "time": 0.9692154915590864, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5888, - "time": 0.9692154915590863, + "noteOrder": 5891, + "time": 0.9692154915590864, "position": { "x": 7, "y": 0 @@ -2196,10 +2196,10 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.07944389275074477, + "time": 0.07944389275074479, "position": { "x": 8, "y": 0 @@ -2219,7 +2219,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 555, "time": 0.0913604766633565, @@ -2242,7 +2242,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.09533267130089373, @@ -2265,10 +2265,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 652, - "time": 0.10724925521350545, + "time": 0.10724925521350546, "position": { "x": 6, "y": 0 @@ -2288,7 +2288,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 676, "time": 0.1112214498510427, @@ -2311,10 +2311,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 748, - "time": 0.12313803376365441, + "time": 0.12313803376365443, "position": { "x": 4, "y": 0 @@ -2334,9 +2334,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 772, + "noteOrder": 773, "time": 0.12711022840119166, "position": { "x": 3, @@ -2357,7 +2357,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 845, "time": 0.13902681231380337, @@ -2380,7 +2380,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 869, "time": 0.1429990069513406, @@ -2403,7 +2403,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 893, "time": 0.14697120158887786, @@ -2426,10 +2426,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 917, - "time": 0.15094339622641506, + "time": 0.1509433962264151, "position": { "x": 4, "y": 0 @@ -2449,9 +2449,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 941, + "noteOrder": 942, "time": 0.15491559086395232, "position": { "x": 4, @@ -2472,10 +2472,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 965, - "time": 0.15888778550148955, + "noteOrder": 966, + "time": 0.15888778550148958, "position": { "x": 6, "y": 0 @@ -2495,9 +2495,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 989, + "noteOrder": 990, "time": 0.1628599801390268, "position": { "x": 6, @@ -2518,10 +2518,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1014, - "time": 0.16683217477656404, + "time": 0.16683217477656406, "position": { "x": 4, "y": 0 @@ -2541,10 +2541,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1038, - "time": 0.1708043694141013, + "time": 0.17080436941410126, "position": { "x": 4, "y": 0 @@ -2564,7 +2564,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1062, "time": 0.17477656405163852, @@ -2586,13 +2586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1086, - "time": 0.17874875868917578, + "noteOrder": 1074, + "time": 0.17676266137040714, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2604,18 +2604,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1110, - "time": 0.182720953326713, + "noteOrder": 1074, + "time": 0.17676266137040714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2632,11 +2632,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1134, - "time": 0.18669314796425024, + "noteOrder": 1086, + "time": 0.17874875868917578, "position": { "x": 3, "y": 0 @@ -2655,13 +2655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1255, - "time": 0.20655412115193644, + "noteOrder": 1099, + "time": 0.1807348560079444, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2673,18 +2673,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1279, - "time": 0.21052631578947367, + "noteOrder": 1099, + "time": 0.1807348560079444, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2701,11 +2701,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1303, - "time": 0.2144985104270109, + "noteOrder": 1111, + "time": 0.182720953326713, "position": { "x": 7, "y": 0 @@ -2724,11 +2724,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1327, - "time": 0.21847070506454816, + "noteOrder": 1123, + "time": 0.1847070506454816, "position": { "x": 7, "y": 0 @@ -2742,18 +2742,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1351, - "time": 0.2224428997020854, + "noteOrder": 1123, + "time": 0.1847070506454816, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2770,13 +2770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1376, - "time": 0.22641509433962265, + "noteOrder": 1135, + "time": 0.18669314796425024, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2793,13 +2793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1400, - "time": 0.23038728897715988, + "noteOrder": 1147, + "time": 0.18867924528301885, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2811,18 +2811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1424, - "time": 0.2343594836146971, + "noteOrder": 1147, + "time": 0.18867924528301885, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2839,13 +2839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 3, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1496, - "time": 0.24627606752730882, + "noteOrder": 1255, + "time": 0.20655412115193644, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2857,18 +2857,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 4, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1545, - "time": 0.2542204568023833, + "noteOrder": 1268, + "time": 0.20854021847070506, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2880,18 +2880,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 5, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1617, - "time": 0.26613704071499505, + "noteOrder": 1268, + "time": 0.20854021847070506, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2903,18 +2903,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1641, - "time": 0.2701092353525323, + "noteOrder": 1280, + "time": 0.21052631578947367, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2926,18 +2926,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1665, - "time": 0.2740814299900695, + "noteOrder": 1280, + "time": 0.21052631578947367, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2954,13 +2954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1689, - "time": 0.27805362462760674, + "noteOrder": 1280, + "time": 0.21052631578947367, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2977,13 +2977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1713, - "time": 0.282025819265144, + "noteOrder": 1292, + "time": 0.21251241310824232, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2995,18 +2995,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1738, - "time": 0.2859980139026812, + "noteOrder": 1292, + "time": 0.21251241310824232, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3023,13 +3023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1762, - "time": 0.28997020854021843, + "noteOrder": 1304, + "time": 0.21449851042701093, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3041,18 +3041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1786, - "time": 0.2939424031777557, + "noteOrder": 1304, + "time": 0.21449851042701093, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3069,13 +3069,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1810, - "time": 0.2979145978152929, + "noteOrder": 1304, + "time": 0.21449851042701093, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3092,11 +3092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 3, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1882, - "time": 0.30983118172790464, + "noteOrder": 1316, + "time": 0.21648460774577954, "position": { "x": 7, "y": 0 @@ -3115,13 +3115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 4, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1931, - "time": 0.3177755710029791, + "noteOrder": 1316, + "time": 0.21648460774577954, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3138,11 +3138,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1955, - "time": 0.3217477656405164, + "noteOrder": 1328, + "time": 0.21847070506454813, "position": { "x": 6, "y": 0 @@ -3161,13 +3161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1979, - "time": 0.3257199602780536, + "noteOrder": 1328, + "time": 0.21847070506454813, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3184,13 +3184,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2027, - "time": 0.33366434955312807, + "noteOrder": 1328, + "time": 0.21847070506454813, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3207,13 +3207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2075, - "time": 0.3416087388282026, + "noteOrder": 1340, + "time": 0.22045680238331677, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3230,13 +3230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2124, - "time": 0.34955312810327704, + "noteOrder": 1340, + "time": 0.22045680238331677, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3248,18 +3248,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2172, - "time": 0.35749751737835156, + "noteOrder": 1352, + "time": 0.2224428997020854, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3271,18 +3271,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2220, - "time": 0.365441906653426, + "noteOrder": 1352, + "time": 0.2224428997020854, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3299,11 +3299,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2244, - "time": 0.36941410129096325, + "noteOrder": 1352, + "time": 0.2224428997020854, "position": { "x": 7, "y": 0 @@ -3322,13 +3322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2269, - "time": 0.3733862959285005, + "noteOrder": 1364, + "time": 0.224428997020854, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3340,18 +3340,4825 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1364, + "time": 0.224428997020854, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1376, + "time": 0.22641509433962265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1376, + "time": 0.22641509433962265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1376, + "time": 0.22641509433962265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1388, + "time": 0.22840119165839126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1388, + "time": 0.22840119165839126, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1400, + "time": 0.23038728897715988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1400, + "time": 0.23038728897715988, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1400, + "time": 0.23038728897715988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1412, + "time": 0.23237338629592852, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1412, + "time": 0.23237338629592852, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2343594836146971, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2343594836146971, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2343594836146971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1437, + "time": 0.23634558093346572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1437, + "time": 0.23634558093346572, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1449, + "time": 0.23833167825223434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1449, + "time": 0.23833167825223434, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1497, + "time": 0.24627606752730885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1545, + "time": 0.2542204568023833, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1618, + "time": 0.26613704071499505, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1642, + "time": 0.2701092353525323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1654, + "time": 0.27209533267130087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1654, + "time": 0.27209533267130087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1666, + "time": 0.2740814299900695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1666, + "time": 0.2740814299900695, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1666, + "time": 0.2740814299900695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1678, + "time": 0.2760675273088381, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1678, + "time": 0.2760675273088381, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1690, + "time": 0.27805362462760674, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1690, + "time": 0.27805362462760674, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1690, + "time": 0.27805362462760674, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1702, + "time": 0.2800397219463754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1702, + "time": 0.2800397219463754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1714, + "time": 0.282025819265144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1714, + "time": 0.282025819265144, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1714, + "time": 0.282025819265144, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1726, + "time": 0.2840119165839126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1726, + "time": 0.2840119165839126, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1738, + "time": 0.2859980139026812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1738, + "time": 0.2859980139026812, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1738, + "time": 0.2859980139026812, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1750, + "time": 0.28798411122144985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1750, + "time": 0.28798411122144985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1762, + "time": 0.28997020854021843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1762, + "time": 0.28997020854021843, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1762, + "time": 0.28997020854021843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1775, + "time": 0.2919563058589871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1775, + "time": 0.2919563058589871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1787, + "time": 0.2939424031777557, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1787, + "time": 0.2939424031777557, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1787, + "time": 0.2939424031777557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1799, + "time": 0.2959285004965243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1799, + "time": 0.2959285004965243, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1811, + "time": 0.29791459781529295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1811, + "time": 0.29791459781529295, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1811, + "time": 0.29791459781529295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1823, + "time": 0.2999006951340616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1823, + "time": 0.2999006951340616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1835, + "time": 0.3018867924528302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1835, + "time": 0.3018867924528302, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1883, + "time": 0.30983118172790464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1931, + "time": 0.31777557100297915, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1956, + "time": 0.3217477656405164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1980, + "time": 0.3257199602780536, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2028, + "time": 0.3336643495531281, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2040, + "time": 0.33565044687189666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2040, + "time": 0.33565044687189666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2076, + "time": 0.34160873882820253, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2088, + "time": 0.34359483614697117, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2088, + "time": 0.34359483614697117, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2125, + "time": 0.34955312810327704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3515392254220457, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3515392254220457, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2173, + "time": 0.35749751737835156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2185, + "time": 0.35948361469712015, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2185, + "time": 0.35948361469712015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2221, + "time": 0.365441906653426, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2233, + "time": 0.36742800397219466, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2233, + "time": 0.36742800397219466, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2245, + "time": 0.3694141012909632, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2257, + "time": 0.37140019860973184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2257, + "time": 0.37140019860973184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2270, + "time": 0.3733862959285005, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37537239324726906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37537239324726906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2318, + "time": 0.38133068520357494, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2330, + "time": 0.3833167825223436, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.3833167825223436, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2342, + "time": 0.3853028798411122, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2354, + "time": 0.3872889771598808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2354, + "time": 0.3872889771598808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2366, + "time": 0.38927507447864945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3912611717974181, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3912611717974181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2414, + "time": 0.39721946375372397, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39920556107249255, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39920556107249255, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2463, + "time": 0.40516385302879837, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2475, + "time": 0.407149950347567, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2475, + "time": 0.407149950347567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2511, + "time": 0.4131082423038729, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4150943396226415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2523, + "time": 0.4150943396226415, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2535, + "time": 0.4170804369414101, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2547, + "time": 0.41906653426017876, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2547, + "time": 0.41906653426017876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2559, + "time": 0.42105263157894735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2571, + "time": 0.423038728897716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2571, + "time": 0.423038728897716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2583, + "time": 0.42502482621648463, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.4270109235352532, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2595, + "time": 0.4270109235352532, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2608, + "time": 0.42899702085402186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.43694141012909626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2704, + "time": 0.4448857994041708, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2752, + "time": 0.4528301886792453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3573, + "time": 0.5878848063555114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3622, + "time": 0.5958291956305859, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3670, + "time": 0.6037735849056604, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3718, + "time": 0.6117179741807349, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3766, + "time": 0.6196623634558093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3791, + "time": 0.6236345580933466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3815, + "time": 0.6276067527308837, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3863, + "time": 0.6355511420059583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3887, + "time": 0.6395233366434955, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3911, + "time": 0.6434955312810328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6514399205561072, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4056, + "time": 0.6673286991062563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4153, + "time": 0.6832174776564051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4153, + "time": 0.6832174776564051, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4165, + "time": 0.6852035749751737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4165, + "time": 0.6852035749751737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4177, + "time": 0.6871896722939423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4189, + "time": 0.689175769612711, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4189, + "time": 0.689175769612711, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4201, + "time": 0.6911618669314796, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4213, + "time": 0.6931479642502482, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4213, + "time": 0.6931479642502482, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4225, + "time": 0.6951340615690168, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4237, + "time": 0.6971201588877854, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4237, + "time": 0.6971201588877854, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4346, + "time": 0.7149950347567031, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4370, + "time": 0.7189672293942403, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4394, + "time": 0.7229394240317776, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4467, + "time": 0.7348560079443893, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4491, + "time": 0.7388282025819264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4515, + "time": 0.7428003972194637, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4346, + "time": 0.7149950347567031, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4370, + "time": 0.7189672293942403, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4394, + "time": 0.7229394240317776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4467, + "time": 0.7348560079443893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4491, + "time": 0.7388282025819264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4515, + "time": 0.7428003972194637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4539, + "time": 0.746772591857001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4551, + "time": 0.7487586891757696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4551, + "time": 0.7487586891757696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4563, + "time": 0.7507447864945381, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4563, + "time": 0.7507447864945381, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4563, + "time": 0.7507447864945381, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4575, + "time": 0.7527308838133068, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4575, + "time": 0.7527308838133068, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7547169811320754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7547169811320754, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7547169811320754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4599, + "time": 0.7567030784508441, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4599, + "time": 0.7567030784508441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4611, + "time": 0.7586891757696127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4611, + "time": 0.7586891757696127, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4611, + "time": 0.7586891757696127, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4624, + "time": 0.7606752730883812, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4624, + "time": 0.7606752730883812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4636, + "time": 0.7626613704071499, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4636, + "time": 0.7626613704071499, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4636, + "time": 0.7626613704071499, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4648, + "time": 0.7646474677259185, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4648, + "time": 0.7646474677259185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4660, + "time": 0.7666335650446872, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4660, + "time": 0.7666335650446872, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4660, + "time": 0.7666335650446872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4672, + "time": 0.7686196623634558, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4672, + "time": 0.7686196623634558, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4684, + "time": 0.7706057596822244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4684, + "time": 0.7706057596822244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4684, + "time": 0.7706057596822244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4696, + "time": 0.772591857000993, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4696, + "time": 0.772591857000993, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7745779543197616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7745779543197616, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7745779543197616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4720, + "time": 0.7765640516385303, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4720, + "time": 0.7765640516385303, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7785501489572989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7785501489572989, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7785501489572989, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4744, + "time": 0.7805362462760675, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4744, + "time": 0.7805362462760675, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7864945382323734, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4793, + "time": 0.788480635551142, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4793, + "time": 0.788480635551142, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4829, + "time": 0.7944389275074479, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4841, + "time": 0.7964250248262165, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4841, + "time": 0.7964250248262165, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4853, + "time": 0.7984111221449851, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4865, + "time": 0.8003972194637538, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4865, + "time": 0.8003972194637538, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4877, + "time": 0.8023833167825224, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4889, + "time": 0.804369414101291, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4889, + "time": 0.804369414101291, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2317, - "time": 0.38133068520357494, + "noteOrder": 4901, + "time": 0.8063555114200595, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3368,13 +8175,59 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2341, - "time": 0.38530287984111217, + "noteOrder": 4913, + "time": 0.8083416087388281, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4913, + "time": 0.8083416087388281, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4925, + "time": 0.8103277060575967, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -3391,11 +8244,57 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4974, + "time": 0.8182720953326712, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5022, + "time": 0.8262164846077458, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2365, - "time": 0.3892750744786494, + "noteOrder": 5118, + "time": 0.8421052631578947, "position": { "x": 7, "y": 0 @@ -3414,11 +8313,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2413, - "time": 0.3972194637537239, + "noteOrder": 5131, + "time": 0.8440913604766633, "position": { "x": 7, "y": 0 @@ -3437,13 +8336,174 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5131, + "time": 0.8440913604766633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5143, + "time": 0.846077457795432, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5143, + "time": 0.846077457795432, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5143, + "time": 0.846077457795432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5155, + "time": 0.8480635551142006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5155, + "time": 0.8480635551142006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5167, + "time": 0.8500496524329693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2462, - "time": 0.40516385302879837, + "noteOrder": 5167, + "time": 0.8500496524329693, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3455,16 +8515,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2510, - "time": 0.4131082423038729, + "noteOrder": 5167, + "time": 0.8500496524329693, "position": { "x": 7, "y": 0 @@ -3483,13 +8543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2534, - "time": 0.4170804369414101, + "noteOrder": 5179, + "time": 0.8520357497517378, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3501,18 +8561,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2558, - "time": 0.42105263157894735, + "noteOrder": 5179, + "time": 0.8520357497517378, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3529,13 +8589,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2582, - "time": 0.4250248262164846, + "noteOrder": 5191, + "time": 0.8540218470705064, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3547,18 +8607,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2606, - "time": 0.4289970208540218, + "noteOrder": 5191, + "time": 0.8540218470705064, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3575,11 +8635,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 2655, - "time": 0.4369414101290963, + "noteOrder": 5191, + "time": 0.8540218470705064, "position": { "x": 7, "y": 0 @@ -3593,18 +8653,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2703, - "time": 0.4448857994041708, + "noteOrder": 5203, + "time": 0.8560079443892751, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3621,13 +8681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2751, - "time": 0.4528301886792453, + "noteOrder": 5203, + "time": 0.8560079443892751, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3644,13 +8704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3572, - "time": 0.5878848063555114, + "noteOrder": 5215, + "time": 0.8579940417080437, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3667,13 +8727,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3620, - "time": 0.5958291956305858, + "noteOrder": 5215, + "time": 0.8579940417080437, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3690,13 +8750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3668, - "time": 0.6037735849056602, + "noteOrder": 5215, + "time": 0.8579940417080437, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3713,13 +8773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3717, - "time": 0.6117179741807348, + "noteOrder": 5227, + "time": 0.8599801390268124, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3736,13 +8796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3765, - "time": 0.6196623634558093, + "noteOrder": 5227, + "time": 0.8599801390268124, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3759,11 +8819,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3789, - "time": 0.6236345580933464, + "noteOrder": 5239, + "time": 0.861966236345581, "position": { "x": 6, "y": 0 @@ -3782,13 +8842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3813, - "time": 0.6276067527308837, + "noteOrder": 5239, + "time": 0.861966236345581, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3805,13 +8865,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3861, - "time": 0.6355511420059582, + "noteOrder": 5239, + "time": 0.861966236345581, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3828,13 +8888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3885, - "time": 0.6395233366434955, + "noteOrder": 5251, + "time": 0.8639523336643495, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3851,13 +8911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3910, - "time": 0.6434955312810328, + "noteOrder": 5251, + "time": 0.8639523336643495, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3874,13 +8934,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3958, - "time": 0.6514399205561072, + "noteOrder": 5263, + "time": 0.8659384309831182, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3897,13 +8957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4054, - "time": 0.6673286991062561, + "noteOrder": 5263, + "time": 0.8659384309831182, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3920,13 +8980,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 2, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4151, - "time": 0.6832174776564052, + "noteOrder": 5263, + "time": 0.8659384309831182, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3938,18 +8998,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4151, - "time": 0.6832174776564052, + "noteOrder": 5275, + "time": 0.8679245283018868, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -3966,13 +9026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4175, - "time": 0.6871896722939423, + "noteOrder": 5275, + "time": 0.8679245283018868, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3984,18 +9044,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4199, - "time": 0.6911618669314796, + "noteOrder": 5287, + "time": 0.8699106256206555, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4012,13 +9072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4223, - "time": 0.6951340615690168, + "noteOrder": 5287, + "time": 0.8699106256206555, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4030,16 +9090,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4344, - "time": 0.7149950347567031, + "noteOrder": 5287, + "time": 0.8699106256206555, "position": { "x": 7, "y": 0 @@ -4053,16 +9113,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4368, - "time": 0.7189672293942403, + "noteOrder": 5300, + "time": 0.8718967229394241, "position": { "x": 7, "y": 0 @@ -4076,18 +9136,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 2, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4392, - "time": 0.7229394240317776, + "noteOrder": 5300, + "time": 0.8718967229394241, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4099,18 +9159,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 3, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4465, - "time": 0.7348560079443893, + "noteOrder": 5312, + "time": 0.8738828202581925, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4122,18 +9182,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 4, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4489, - "time": 0.7388282025819265, + "noteOrder": 5312, + "time": 0.8738828202581925, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4145,18 +9205,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 5, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4513, - "time": 0.7428003972194638, + "noteOrder": 5312, + "time": 0.8738828202581925, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4173,13 +9233,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4344, - "time": 0.7149950347567031, + "noteOrder": 5384, + "time": 0.8857994041708043, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4191,18 +9251,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 4368, - "time": 0.7189672293942403, + "noteOrder": 5408, + "time": 0.8897715988083416, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4219,13 +9279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 208, "indexInLine": 2, "isSliding": false, - "noteOrder": 4392, - "time": 0.7229394240317776, + "noteOrder": 5481, + "time": 0.9016881827209533, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4242,11 +9302,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 3, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4465, - "time": 0.7348560079443893, + "noteOrder": 5505, + "time": 0.9056603773584906, "position": { "x": 7, "y": 0 @@ -4260,18 +9320,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 4, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4489, - "time": 0.7388282025819265, + "noteOrder": 5517, + "time": 0.9076464746772591, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4283,18 +9343,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 5, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4513, - "time": 0.7428003972194638, + "noteOrder": 5517, + "time": 0.9076464746772591, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4306,18 +9366,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4537, - "time": 0.746772591857001, + "noteOrder": 5529, + "time": 0.9096325719960278, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4329,18 +9389,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4561, - "time": 0.7507447864945382, + "noteOrder": 5529, + "time": 0.9096325719960278, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4357,13 +9417,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4585, - "time": 0.7547169811320755, + "noteOrder": 5529, + "time": 0.9096325719960278, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4380,13 +9440,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4609, - "time": 0.7586891757696127, + "noteOrder": 5541, + "time": 0.9116186693147964, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4398,18 +9458,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4634, - "time": 0.7626613704071499, + "noteOrder": 5541, + "time": 0.9116186693147964, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4426,13 +9486,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4658, - "time": 0.766633565044687, + "noteOrder": 5553, + "time": 0.913604766633565, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4444,18 +9504,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4682, - "time": 0.7706057596822243, + "noteOrder": 5553, + "time": 0.913604766633565, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4472,13 +9532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, - "time": 0.7745779543197616, + "noteOrder": 5553, + "time": 0.913604766633565, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4495,13 +9555,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4730, - "time": 0.7785501489572988, + "noteOrder": 5565, + "time": 0.9155908639523337, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4513,18 +9573,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4778, - "time": 0.7864945382323733, + "noteOrder": 5565, + "time": 0.9155908639523337, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4536,18 +9596,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4827, - "time": 0.7944389275074478, + "noteOrder": 5577, + "time": 0.9175769612711023, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4559,18 +9619,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4851, - "time": 0.798411122144985, + "noteOrder": 5577, + "time": 0.9175769612711023, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4587,13 +9647,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4875, - "time": 0.8023833167825223, + "noteOrder": 5577, + "time": 0.9175769612711023, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4610,13 +9670,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4899, - "time": 0.8063555114200595, + "noteOrder": 5589, + "time": 0.9195630585898709, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4628,18 +9688,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4923, - "time": 0.8103277060575967, + "noteOrder": 5589, + "time": 0.9195630585898709, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4656,13 +9716,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4971, - "time": 0.8182720953326712, + "noteOrder": 5601, + "time": 0.9215491559086395, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4679,13 +9739,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5020, - "time": 0.8262164846077458, + "noteOrder": 5601, + "time": 0.9215491559086395, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4702,11 +9762,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5116, - "time": 0.8421052631578947, + "noteOrder": 5601, + "time": 0.9215491559086395, "position": { "x": 7, "y": 0 @@ -4725,11 +9785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5140, - "time": 0.846077457795432, + "noteOrder": 5613, + "time": 0.9235352532274081, "position": { "x": 7, "y": 0 @@ -4743,18 +9803,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5164, - "time": 0.8500496524329691, + "noteOrder": 5613, + "time": 0.9235352532274081, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4771,13 +9831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5189, - "time": 0.8540218470705064, + "noteOrder": 5625, + "time": 0.9255213505461768, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4789,18 +9849,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5213, - "time": 0.8579940417080436, + "noteOrder": 5625, + "time": 0.9255213505461768, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4817,11 +9877,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5237, - "time": 0.8619662363455809, + "noteOrder": 5625, + "time": 0.9255213505461768, "position": { "x": 7, "y": 0 @@ -4840,11 +9900,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5261, - "time": 0.8659384309831182, + "noteOrder": 5638, + "time": 0.9275074478649454, "position": { "x": 7, "y": 0 @@ -4858,18 +9918,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5285, - "time": 0.8699106256206554, + "noteOrder": 5638, + "time": 0.9275074478649454, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4886,13 +9946,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5309, - "time": 0.8738828202581926, + "noteOrder": 5650, + "time": 0.9294935451837141, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4904,18 +9964,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5382, - "time": 0.8857994041708044, + "noteOrder": 5650, + "time": 0.9294935451837141, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4927,18 +9987,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5406, - "time": 0.8897715988083416, + "noteOrder": 5650, + "time": 0.9294935451837141, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4950,18 +10010,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5478, - "time": 0.9016881827209533, + "noteOrder": 5662, + "time": 0.9314796425024825, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4973,18 +10033,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5502, - "time": 0.9056603773584906, + "noteOrder": 5662, + "time": 0.9314796425024825, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5001,13 +10061,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5526, - "time": 0.9096325719960278, + "noteOrder": 5674, + "time": 0.9334657398212511, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5019,18 +10079,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5551, - "time": 0.913604766633565, + "noteOrder": 5674, + "time": 0.9334657398212511, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5047,11 +10107,11 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, - "time": 0.9175769612711023, + "noteOrder": 5674, + "time": 0.9334657398212511, "position": { "x": 7, "y": 0 @@ -5070,11 +10130,11 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, - "time": 0.9215491559086395, + "noteOrder": 5686, + "time": 0.9354518371400198, "position": { "x": 7, "y": 0 @@ -5088,18 +10148,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5623, - "time": 0.9255213505461768, + "noteOrder": 5686, + "time": 0.9354518371400198, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5116,13 +10176,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5647, - "time": 0.9294935451837139, + "noteOrder": 5698, + "time": 0.9374379344587884, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5134,18 +10194,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5671, - "time": 0.9334657398212511, + "noteOrder": 5698, + "time": 0.9374379344587884, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5163,9 +10223,9 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.9374379344587884, "position": { "x": 7, @@ -5186,9 +10246,9 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5744, + "noteOrder": 5746, "time": 0.9453823237338629, "position": { "x": 7, @@ -5209,9 +10269,9 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5792, + "noteOrder": 5794, "time": 0.9533267130089373, "position": { "x": 5, @@ -5232,10 +10292,10 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5840, - "time": 0.9612711022840118, + "noteOrder": 5843, + "time": 0.9612711022840119, "position": { "x": 5, "y": 0 diff --git a/tracks/Official Bootleg/308_difficulty_1b.json b/tracks/Official Bootleg/308_difficulty_1b.json index 69cca30f..c29fe4a9 100644 --- a/tracks/Official Bootleg/308_difficulty_1b.json +++ b/tracks/Official Bootleg/308_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.019860973187686193, + "time": 0.019860973187686197, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 241, - "time": 0.03972194637537239, + "time": 0.039721946375372394, "position": { "x": 8, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 265, + "noteOrder": 266, "time": 0.04369414101290963, "position": { "x": 6, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 434, + "noteOrder": 435, "time": 0.0714995034756703, "position": { "x": 5, @@ -314,7 +314,7 @@ }, { "noteOrder": 459, - "time": 0.07547169811320753, + "time": 0.07547169811320754, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 507, - "time": 0.08341608738828202, + "time": 0.08341608738828203, "position": { "x": 5, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 603, - "time": 0.09930486593843098, + "noteOrder": 604, + "time": 0.09930486593843099, "position": { "x": 5, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 628, "time": 0.10327706057596822, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 797, "time": 0.13108242303872888, "position": { "x": 4, @@ -534,7 +534,7 @@ }, { "noteOrder": 917, - "time": 0.15094339622641506, + "time": 0.1509433962264151, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 942, "time": 0.15491559086395232, "position": { "x": 7, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 965, - "time": 0.15888778550148955, + "noteOrder": 966, + "time": 0.15888778550148958, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 990, "time": 0.1628599801390268, "position": { "x": 3, @@ -614,7 +614,7 @@ }, { "noteOrder": 1014, - "time": 0.16683217477656404, + "time": 0.16683217477656406, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1038, - "time": 0.1708043694141013, + "time": 0.17080436941410126, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1111, "time": 0.182720953326713, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1135, "time": 0.18669314796425024, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.19066534260178747, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.19066534260178747, "position": { "x": 3, @@ -774,7 +774,7 @@ }, { "noteOrder": 1183, - "time": 0.1946375372393247, + "time": 0.19463753723932473, "position": { "x": 6, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1183, - "time": 0.1946375372393247, + "time": 0.19463753723932473, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1207, - "time": 0.19860973187686196, + "time": 0.19860973187686198, "position": { "x": 3, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1207, - "time": 0.19860973187686196, + "time": 0.19860973187686198, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1496, - "time": 0.24627606752730882, + "noteOrder": 1497, + "time": 0.24627606752730885, "position": { "x": 5, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1883, "time": 0.30983118172790464, "position": { "x": 5, @@ -934,7 +934,7 @@ }, { "noteOrder": 1931, - "time": 0.3177755710029791, + "time": 0.31777557100297915, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1955, + "noteOrder": 1956, "time": 0.3217477656405164, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1980, "time": 0.3257199602780536, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2221, "time": 0.365441906653426, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.36941410129096325, + "noteOrder": 2245, + "time": 0.3694141012909632, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2269, + "noteOrder": 2270, "time": 0.3733862959285005, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2318, "time": 0.38133068520357494, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2341, - "time": 0.38530287984111217, + "noteOrder": 2342, + "time": 0.3853028798411122, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2365, - "time": 0.3892750744786494, + "noteOrder": 2366, + "time": 0.38927507447864945, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2606, - "time": 0.4289970208540218, + "noteOrder": 2608, + "time": 0.42899702085402186, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2631, + "noteOrder": 2632, "time": 0.4329692154915591, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2655, - "time": 0.4369414101290963, + "noteOrder": 2656, + "time": 0.43694141012909626, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2703, + "noteOrder": 2704, "time": 0.4448857994041708, "position": { "x": 4, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2727, - "time": 0.44885799404170806, + "noteOrder": 2728, + "time": 0.448857994041708, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2751, + "noteOrder": 2752, "time": 0.4528301886792453, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4687189672293942, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2872, + "noteOrder": 2873, "time": 0.47269116186693144, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2944, - "time": 0.48460774577954313, + "noteOrder": 2946, + "time": 0.4846077457795432, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3041, + "noteOrder": 3042, "time": 0.5004965243296922, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3065, + "noteOrder": 3066, "time": 0.5044687189672293, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3113, - "time": 0.5124131082423038, + "noteOrder": 3115, + "time": 0.5124131082423039, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3161, + "noteOrder": 3163, "time": 0.5203574975173784, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3234, + "noteOrder": 3235, "time": 0.5322740814299901, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3306, + "noteOrder": 3308, "time": 0.5441906653426017, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3332, "time": 0.548162859980139, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3427, + "noteOrder": 3428, "time": 0.564051638530288, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3451, - "time": 0.5680238331678251, + "noteOrder": 3453, + "time": 0.5680238331678252, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3499, + "noteOrder": 3501, "time": 0.5759682224428997, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3717, - "time": 0.6117179741807348, + "noteOrder": 3718, + "time": 0.6117179741807349, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3741, + "noteOrder": 3742, "time": 0.615690168818272, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3813, + "noteOrder": 3815, "time": 0.6276067527308837, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 3911, "time": 0.6434955312810328, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3934, - "time": 0.6474677259185699, + "noteOrder": 3935, + "time": 0.64746772591857, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4006, + "noteOrder": 4008, "time": 0.6593843098311817, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4054, - "time": 0.6673286991062561, + "noteOrder": 4056, + "time": 0.6673286991062563, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4103, + "noteOrder": 4104, "time": 0.6752730883813306, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4249, "time": 0.6991062562065541, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 4273, "time": 0.7030784508440914, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4298, "time": 0.7070506454816285, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4778, - "time": 0.7864945382323733, + "noteOrder": 4780, + "time": 0.7864945382323734, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4827, - "time": 0.7944389275074478, + "noteOrder": 4829, + "time": 0.7944389275074479, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.798411122144985, + "noteOrder": 4853, + "time": 0.7984111221449851, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.8023833167825223, + "noteOrder": 4877, + "time": 0.8023833167825224, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5020, + "noteOrder": 5022, "time": 0.8262164846077458, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5044, + "noteOrder": 5046, "time": 0.830188679245283, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5358, + "noteOrder": 5360, "time": 0.8818272095332671, "position": { "x": 5, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5406, + "noteOrder": 5408, "time": 0.8897715988083416, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5454, - "time": 0.8977159880834161, + "noteOrder": 5456, + "time": 0.897715988083416, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5551, + "noteOrder": 5553, "time": 0.913604766633565, "position": { "x": 6, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5647, - "time": 0.9294935451837139, + "noteOrder": 5650, + "time": 0.9294935451837141, "position": { "x": 4, "y": 0 @@ -1936,10 +1936,10 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.07944389275074477, + "time": 0.07944389275074479, "position": { "x": 7, "y": 0 @@ -1959,7 +1959,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.08738828202581926, @@ -1982,7 +1982,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.09533267130089373, @@ -2005,9 +2005,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 627, + "noteOrder": 628, "time": 0.10327706057596822, "position": { "x": 5, @@ -2028,7 +2028,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 676, "time": 0.1112214498510427, @@ -2051,7 +2051,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 724, "time": 0.11916583912611717, @@ -2074,9 +2074,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 772, + "noteOrder": 773, "time": 0.12711022840119166, "position": { "x": 4, @@ -2097,7 +2097,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 821, "time": 0.13505461767626614, @@ -2120,7 +2120,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1255, "time": 0.20655412115193644, @@ -2141,12 +2141,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1280, + "time": 0.21052631578947367, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1280, + "time": 0.21052631578947367, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1304, + "time": 0.21449851042701093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1303, - "time": 0.2144985104270109, + "noteOrder": 1328, + "time": 0.21847070506454813, "position": { "x": 7, "y": 0 @@ -2164,11 +2233,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1328, + "time": 0.21847070506454813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, + "noteOrder": 1352, "time": 0.2224428997020854, "position": { "x": 7, @@ -2187,9 +2279,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1376, + "time": 0.22641509433962265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1376, + "time": 0.22641509433962265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1400, "time": 0.23038728897715988, @@ -2210,11 +2348,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2343594836146971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1424, + "time": 0.2343594836146971, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1448, + "noteOrder": 1449, "time": 0.23833167825223434, "position": { "x": 7, @@ -2235,7 +2419,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1593, "time": 0.26216484607745777, @@ -2258,9 +2442,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1641, + "noteOrder": 1642, "time": 0.2701092353525323, "position": { "x": 3, @@ -2279,11 +2463,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1666, + "time": 0.2740814299900695, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1666, + "time": 0.2740814299900695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1689, + "noteOrder": 1690, "time": 0.27805362462760674, "position": { "x": 3, @@ -2303,11 +2533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1738, - "time": 0.2859980139026812, + "noteOrder": 1714, + "time": 0.282025819265144, "position": { "x": 3, "y": 0 @@ -2321,18 +2551,1076 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1786, - "time": 0.2939424031777557, + "noteOrder": 1714, + "time": 0.282025819265144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1738, + "time": 0.2859980139026812, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1762, + "time": 0.28997020854021843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1762, + "time": 0.28997020854021843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1787, + "time": 0.2939424031777557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1811, + "time": 0.29791459781529295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1811, + "time": 0.29791459781529295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1835, + "time": 0.3018867924528302, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1931, + "time": 0.31777557100297915, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2028, + "time": 0.3336643495531281, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2052, + "time": 0.3376365441906653, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2052, + "time": 0.3376365441906653, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2076, + "time": 0.34160873882820253, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2101, + "time": 0.3455809334657398, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2101, + "time": 0.3455809334657398, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2125, + "time": 0.34955312810327704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2149, + "time": 0.3535253227408143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2149, + "time": 0.3535253227408143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2173, + "time": 0.35749751737835156, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2197, + "time": 0.3614697120158888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2197, + "time": 0.3614697120158888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2414, + "time": 0.39721946375372397, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2439, + "time": 0.4011916583912612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2439, + "time": 0.4011916583912612, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2463, + "time": 0.40516385302879837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2487, + "time": 0.4091360476663356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2487, + "time": 0.4091360476663356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2511, + "time": 0.4131082423038729, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2535, + "time": 0.4170804369414101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2535, + "time": 0.4170804369414101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2559, + "time": 0.42105263157894735, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2583, + "time": 0.42502482621648463, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2583, + "time": 0.42502482621648463, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3259, + "time": 0.5362462760675273, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3284, + "time": 0.5402184707050646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3356, + "time": 0.5521350546176762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3380, + "time": 0.5561072492552135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3525, + "time": 0.5799404170804369, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3573, + "time": 0.5878848063555114, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6514399205561072, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4104, + "time": 0.6752730883813306, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4153, + "time": 0.6832174776564051, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4177, + "time": 0.6871896722939423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4177, + "time": 0.6871896722939423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4201, + "time": 0.6911618669314796, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4225, + "time": 0.6951340615690168, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4225, + "time": 0.6951340615690168, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2349,13 +3637,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1834, - "time": 0.3018867924528301, + "noteOrder": 4346, + "time": 0.7149950347567031, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2372,13 +3660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1931, - "time": 0.3177755710029791, + "noteOrder": 4370, + "time": 0.7189672293942403, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2395,11 +3683,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2027, - "time": 0.33366434955312807, + "noteOrder": 4394, + "time": 0.7229394240317776, "position": { "x": 4, "y": 0 @@ -2418,13 +3706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2075, - "time": 0.3416087388282026, + "noteOrder": 4418, + "time": 0.7269116186693148, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2436,16 +3724,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2124, - "time": 0.34955312810327704, + "noteOrder": 4442, + "time": 0.730883813306852, "position": { "x": 4, "y": 0 @@ -2464,13 +3752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2172, - "time": 0.35749751737835156, + "noteOrder": 4467, + "time": 0.7348560079443893, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2482,18 +3770,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2413, - "time": 0.3972194637537239, + "noteOrder": 4491, + "time": 0.7388282025819264, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2505,16 +3793,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2462, - "time": 0.40516385302879837, + "noteOrder": 4515, + "time": 0.7428003972194637, "position": { "x": 4, "y": 0 @@ -2533,13 +3821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2510, - "time": 0.4131082423038729, + "noteOrder": 4539, + "time": 0.746772591857001, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2551,18 +3839,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2558, - "time": 0.42105263157894735, + "noteOrder": 4563, + "time": 0.7507447864945381, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2579,13 +3867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3258, - "time": 0.5362462760675273, + "noteOrder": 4563, + "time": 0.7507447864945381, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2597,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 3282, - "time": 0.5402184707050646, + "noteOrder": 4587, + "time": 0.7547169811320754, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2625,13 +3913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3355, - "time": 0.5521350546176762, + "noteOrder": 4611, + "time": 0.7586891757696127, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2643,16 +3931,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3379, - "time": 0.5561072492552135, + "noteOrder": 4611, + "time": 0.7586891757696127, "position": { "x": 4, "y": 0 @@ -2666,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3523, - "time": 0.5799404170804369, + "noteOrder": 4636, + "time": 0.7626613704071499, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2689,18 +3977,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3572, - "time": 0.5878848063555114, + "noteOrder": 4660, + "time": 0.7666335650446872, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2712,18 +4000,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3958, - "time": 0.6514399205561072, + "noteOrder": 4660, + "time": 0.7666335650446872, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2735,18 +4023,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 4103, - "time": 0.6752730883813306, + "noteOrder": 4684, + "time": 0.7706057596822244, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2763,11 +4051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4151, - "time": 0.6832174776564052, + "noteOrder": 4708, + "time": 0.7745779543197616, "position": { "x": 3, "y": 0 @@ -2781,18 +4069,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4199, - "time": 0.6911618669314796, + "noteOrder": 4708, + "time": 0.7745779543197616, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2809,13 +4097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4344, - "time": 0.7149950347567031, + "noteOrder": 4732, + "time": 0.7785501489572989, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2832,13 +4120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4368, - "time": 0.7189672293942403, + "noteOrder": 4829, + "time": 0.7944389275074479, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2855,13 +4143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4392, - "time": 0.7229394240317776, + "noteOrder": 4925, + "time": 0.8103277060575967, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2873,18 +4161,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4416, - "time": 0.7269116186693148, + "noteOrder": 4949, + "time": 0.814299900695134, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2896,18 +4184,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4440, - "time": 0.730883813306852, + "noteOrder": 4949, + "time": 0.814299900695134, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2919,18 +4207,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 4465, - "time": 0.7348560079443893, + "noteOrder": 4974, + "time": 0.8182720953326712, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2947,13 +4235,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4489, - "time": 0.7388282025819265, + "noteOrder": 4998, + "time": 0.8222442899702085, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2970,13 +4258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4513, - "time": 0.7428003972194638, + "noteOrder": 4998, + "time": 0.8222442899702085, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2993,13 +4281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4537, - "time": 0.746772591857001, + "noteOrder": 5070, + "time": 0.8341608738828202, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3011,18 +4299,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4585, - "time": 0.7547169811320755, + "noteOrder": 5094, + "time": 0.8381330685203575, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3039,13 +4327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4634, - "time": 0.7626613704071499, + "noteOrder": 5118, + "time": 0.8421052631578947, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3057,18 +4345,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4682, - "time": 0.7706057596822243, + "noteOrder": 5143, + "time": 0.846077457795432, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3085,13 +4373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4730, - "time": 0.7785501489572988, + "noteOrder": 5143, + "time": 0.846077457795432, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3103,18 +4391,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 4827, - "time": 0.7944389275074478, + "noteOrder": 5167, + "time": 0.8500496524329693, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3131,11 +4419,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4923, - "time": 0.8103277060575967, + "noteOrder": 5191, + "time": 0.8540218470705064, "position": { "x": 7, "y": 0 @@ -3149,18 +4437,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4971, - "time": 0.8182720953326712, + "noteOrder": 5191, + "time": 0.8540218470705064, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3177,11 +4465,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5068, - "time": 0.8341608738828202, + "noteOrder": 5215, + "time": 0.8579940417080437, "position": { "x": 7, "y": 0 @@ -3200,11 +4488,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.8381330685203574, + "noteOrder": 5239, + "time": 0.861966236345581, "position": { "x": 7, "y": 0 @@ -3223,13 +4511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5116, - "time": 0.8421052631578947, + "noteOrder": 5239, + "time": 0.861966236345581, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3246,11 +4534,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5164, - "time": 0.8500496524329691, + "noteOrder": 5263, + "time": 0.8659384309831182, "position": { "x": 7, "y": 0 @@ -3269,11 +4557,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5213, - "time": 0.8579940417080436, + "noteOrder": 5287, + "time": 0.8699106256206555, "position": { "x": 7, "y": 0 @@ -3287,18 +4575,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5261, - "time": 0.8659384309831182, + "noteOrder": 5287, + "time": 0.8699106256206555, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3316,10 +4604,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5309, - "time": 0.8738828202581926, + "noteOrder": 5312, + "time": 0.8738828202581925, "position": { "x": 7, "y": 0 @@ -3339,10 +4627,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5454, - "time": 0.8977159880834161, + "noteOrder": 5456, + "time": 0.897715988083416, "position": { "x": 4, "y": 0 @@ -3362,9 +4650,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5502, + "noteOrder": 5505, "time": 0.9056603773584906, "position": { "x": 3, @@ -3385,9 +4673,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5601, "time": 0.9215491559086395, "position": { "x": 6, @@ -3408,9 +4696,9 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5601, "time": 0.9215491559086395, "position": { "x": 7, @@ -3431,9 +4719,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.9374379344587884, "position": { "x": 4, @@ -3454,9 +4742,9 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.9374379344587884, "position": { "x": 3, @@ -3477,9 +4765,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5744, + "noteOrder": 5746, "time": 0.9453823237338629, "position": { "x": 3, @@ -3500,9 +4788,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5792, + "noteOrder": 5794, "time": 0.9533267130089373, "position": { "x": 7, @@ -3523,10 +4811,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5840, - "time": 0.9612711022840118, + "noteOrder": 5843, + "time": 0.9612711022840119, "position": { "x": 7, "y": 0 diff --git a/tracks/Official Bootleg/info.json b/tracks/Official Bootleg/info.json index b5c4f93e..d1ba919d 100644 --- a/tracks/Official Bootleg/info.json +++ b/tracks/Official Bootleg/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Official Bootleg", - "SongLength": "118.491429", + "SongLength": "108.538776", "SongAuthorName": "Blacklolita", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Oppress CHARLESTON EDITION/365_difficulty_1a.json b/tracks/Oppress CHARLESTON EDITION/365_difficulty_1a.json index 8379cf7d..cd3d82c9 100644 --- a/tracks/Oppress CHARLESTON EDITION/365_difficulty_1a.json +++ b/tracks/Oppress CHARLESTON EDITION/365_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.014925373134328358, + "time": 0.014925373134328356, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.01865671641791045, + "time": 0.018656716417910446, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 146, - "time": 0.02238805970149254, + "time": 0.022388059701492536, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 195, - "time": 0.029850746268656716, + "time": 0.029850746268656712, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 244, - "time": 0.0373134328358209, + "time": 0.03731343283582089, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 292, - "time": 0.04477611940298508, + "time": 0.04477611940298507, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 317, - "time": 0.048507462686567165, + "time": 0.04850746268656716, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 365, + "noteOrder": 366, "time": 0.055970149253731345, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 390, - "time": 0.05970149253731343, + "time": 0.059701492537313425, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 487, - "time": 0.0746268656716418, + "time": 0.07462686567164178, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 512, - "time": 0.07835820895522388, + "time": 0.07835820895522387, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 560, + "noteOrder": 561, "time": 0.08582089552238806, "position": { "x": 7, @@ -414,7 +414,7 @@ }, { "noteOrder": 585, - "time": 0.08955223880597016, + "time": 0.08955223880597014, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 633, - "time": 0.09701492537313433, + "noteOrder": 634, + "time": 0.09701492537313432, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 658, - "time": 0.10074626865671642, + "time": 0.1007462686567164, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 707, - "time": 0.1082089552238806, + "time": 0.10820895522388059, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 755, - "time": 0.11567164179104478, + "noteOrder": 756, + "time": 0.11567164179104476, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 780, - "time": 0.11940298507462686, + "time": 0.11940298507462685, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 804, - "time": 0.12313432835820896, + "time": 0.12313432835820895, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 828, + "noteOrder": 829, "time": 0.12686567164179105, "position": { "x": 7, @@ -634,7 +634,7 @@ }, { "noteOrder": 853, - "time": 0.13059701492537315, + "time": 0.13059701492537312, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 975, - "time": 0.1492537313432836, + "time": 0.14925373134328357, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1023, - "time": 0.15671641791044777, + "noteOrder": 1024, + "time": 0.15671641791044774, "position": { "x": 7, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1170, - "time": 0.17910447761194032, + "time": 0.1791044776119403, "position": { "x": 3, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.1865671641791045, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.208955223880597, "position": { "x": 7, @@ -834,7 +834,7 @@ }, { "noteOrder": 1389, - "time": 0.2126865671641791, + "time": 0.21268656716417908, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1413, - "time": 0.2164179104477612, + "noteOrder": 1414, + "time": 0.21641791044776118, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1438, - "time": 0.22014925373134328, + "time": 0.22014925373134325, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1559, - "time": 0.23880597014925373, + "noteOrder": 1560, + "time": 0.2388059701492537, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1608, - "time": 0.24626865671641793, + "noteOrder": 1609, + "time": 0.2462686567164179, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1632, - "time": 0.25, + "noteOrder": 1633, + "time": 0.24999999999999997, "position": { "x": 6, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1706, - "time": 0.2611940298507463, + "time": 0.26119402985074625, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.26492537313432835, "position": { "x": 3, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1827, - "time": 0.27985074626865675, + "noteOrder": 1828, + "time": 0.2798507462686567, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1900, + "noteOrder": 1901, "time": 0.291044776119403, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1925, - "time": 0.2947761194029851, + "noteOrder": 1926, + "time": 0.29477611940298504, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.30970149253731344, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2095, + "noteOrder": 2096, "time": 0.3208955223880597, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2120, + "noteOrder": 2121, "time": 0.3246268656716418, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2217, + "noteOrder": 2218, "time": 0.33955223880597013, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.35074626865671643, + "noteOrder": 2291, + "time": 0.3507462686567164, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2315, - "time": 0.35447761194029853, + "noteOrder": 2316, + "time": 0.3544776119402985, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2412, - "time": 0.3694029850746269, + "noteOrder": 2413, + "time": 0.3694029850746268, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2875, - "time": 0.44029850746268656, + "noteOrder": 2876, + "time": 0.4402985074626865, "position": { "x": 5, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2899, - "time": 0.44402985074626866, + "noteOrder": 2900, + "time": 0.4440298507462686, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2924, + "noteOrder": 2925, "time": 0.44776119402985076, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2973, + "noteOrder": 2974, "time": 0.4552238805970149, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2997, - "time": 0.458955223880597, + "noteOrder": 2998, + "time": 0.45895522388059695, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3021, - "time": 0.4626865671641791, + "noteOrder": 3022, + "time": 0.46268656716417905, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3070, - "time": 0.4701492537313433, + "noteOrder": 3071, + "time": 0.47014925373134325, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3094, - "time": 0.4738805970149254, + "noteOrder": 3095, + "time": 0.47388059701492535, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3119, - "time": 0.47761194029850745, + "noteOrder": 3120, + "time": 0.4776119402985074, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3167, + "noteOrder": 3169, "time": 0.48507462686567165, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3192, - "time": 0.48880597014925375, + "noteOrder": 3193, + "time": 0.4888059701492537, "position": { "x": 5, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3947, + "noteOrder": 3949, "time": 0.6044776119402985, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3973, "time": 0.6082089552238806, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4093, - "time": 0.6268656716417911, + "noteOrder": 4095, + "time": 0.626865671641791, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4118, - "time": 0.6305970149253731, + "noteOrder": 4119, + "time": 0.630597014925373, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4142, - "time": 0.6343283582089553, + "noteOrder": 4144, + "time": 0.6343283582089552, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4166, + "noteOrder": 4168, "time": 0.6380597014925373, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.6567164179104478, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4313, + "noteOrder": 4314, "time": 0.6604477611940298, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4337, - "time": 0.664179104477612, + "noteOrder": 4339, + "time": 0.6641791044776119, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4361, - "time": 0.667910447761194, + "noteOrder": 4363, + "time": 0.6679104477611939, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4483, + "noteOrder": 4485, "time": 0.6865671641791045, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4507, - "time": 0.6902985074626866, + "noteOrder": 4509, + "time": 0.6902985074626865, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4532, + "noteOrder": 4534, "time": 0.6940298507462687, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4556, + "noteOrder": 4558, "time": 0.6977611940298507, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4678, - "time": 0.7164179104477613, + "noteOrder": 4680, + "time": 0.7164179104477612, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4702, + "noteOrder": 4704, "time": 0.7201492537313433, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4727, + "noteOrder": 4729, "time": 0.7238805970149254, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4751, - "time": 0.7276119402985075, + "noteOrder": 4753, + "time": 0.7276119402985074, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4800, - "time": 0.7350746268656717, + "noteOrder": 4802, + "time": 0.7350746268656716, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4824, - "time": 0.7388059701492538, + "noteOrder": 4826, + "time": 0.7388059701492536, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4849, - "time": 0.7425373134328358, + "noteOrder": 4850, + "time": 0.7425373134328357, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574626865671642, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4995, - "time": 0.7649253731343284, + "noteOrder": 4997, + "time": 0.7649253731343283, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5019, - "time": 0.7686567164179104, + "noteOrder": 5021, + "time": 0.7686567164179103, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5044, - "time": 0.7723880597014926, + "noteOrder": 5045, + "time": 0.7723880597014925, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.7873134328358209, "position": { "x": 5, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8171641791044776, + "noteOrder": 5338, + "time": 0.8171641791044775, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.832089552238806, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5458, + "noteOrder": 5460, "time": 0.835820895522388, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5482, - "time": 0.8395522388059702, + "noteOrder": 5484, + "time": 0.8395522388059701, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5506, - "time": 0.8432835820895522, + "noteOrder": 5508, + "time": 0.8432835820895521, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5531, - "time": 0.8470149253731344, + "noteOrder": 5533, + "time": 0.8470149253731343, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5580, - "time": 0.8544776119402985, + "noteOrder": 5582, + "time": 0.8544776119402984, "position": { "x": 5, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5604, + "noteOrder": 5606, "time": 0.8582089552238806, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5628, + "noteOrder": 5630, "time": 0.8619402985074627, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5726, - "time": 0.8768656716417911, + "noteOrder": 5728, + "time": 0.876865671641791, "position": { "x": 5, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5774, - "time": 0.8843283582089553, + "noteOrder": 5777, + "time": 0.8843283582089552, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5799, - "time": 0.8880597014925373, + "noteOrder": 5801, + "time": 0.8880597014925372, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5823, + "noteOrder": 5825, "time": 0.8917910447761194, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5921, + "noteOrder": 5923, "time": 0.9067164179104478, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6116, + "noteOrder": 6118, "time": 0.9365671641791045, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6310, - "time": 0.9664179104477613, + "noteOrder": 6313, + "time": 0.9664179104477612, "position": { "x": 6, "y": 0 @@ -2276,7 +2276,7 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 877, "time": 0.13432835820895522, @@ -2299,10 +2299,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 901, - "time": 0.13805970149253732, + "noteOrder": 902, + "time": 0.1380597014925373, "position": { "x": 5, "y": 0 @@ -2322,10 +2322,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 901, - "time": 0.13805970149253732, + "noteOrder": 902, + "time": 0.1380597014925373, "position": { "x": 5, "y": 0 @@ -2345,7 +2345,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 926, "time": 0.1417910447761194, @@ -2368,7 +2368,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 926, "time": 0.1417910447761194, @@ -2391,9 +2391,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 950, + "noteOrder": 951, "time": 0.1455223880597015, "position": { "x": 5, @@ -2414,9 +2414,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 950, + "noteOrder": 951, "time": 0.1455223880597015, "position": { "x": 5, @@ -2437,10 +2437,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 975, - "time": 0.1492537313432836, + "time": 0.14925373134328357, "position": { "x": 5, "y": 0 @@ -2460,7 +2460,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1072, "time": 0.16417910447761194, @@ -2483,10 +2483,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1096, - "time": 0.16791044776119404, + "noteOrder": 1097, + "time": 0.16791044776119401, "position": { "x": 5, "y": 0 @@ -2506,10 +2506,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1096, - "time": 0.16791044776119404, + "noteOrder": 1097, + "time": 0.16791044776119401, "position": { "x": 5, "y": 0 @@ -2529,7 +2529,7 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1121, "time": 0.17164179104477612, @@ -2552,7 +2552,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1121, "time": 0.17164179104477612, @@ -2575,10 +2575,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1145, - "time": 0.17537313432835822, + "noteOrder": 1146, + "time": 0.1753731343283582, "position": { "x": 5, "y": 0 @@ -2598,10 +2598,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1145, - "time": 0.17537313432835822, + "noteOrder": 1146, + "time": 0.1753731343283582, "position": { "x": 5, "y": 0 @@ -2621,10 +2621,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1170, - "time": 0.17910447761194032, + "time": 0.1791044776119403, "position": { "x": 5, "y": 0 @@ -2644,10 +2644,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1267, - "time": 0.19402985074626866, + "time": 0.19402985074626863, "position": { "x": 5, "y": 0 @@ -2667,10 +2667,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1291, - "time": 0.19776119402985076, + "noteOrder": 1292, + "time": 0.19776119402985073, "position": { "x": 5, "y": 0 @@ -2690,10 +2690,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1291, - "time": 0.19776119402985076, + "noteOrder": 1292, + "time": 0.19776119402985073, "position": { "x": 5, "y": 0 @@ -2713,10 +2713,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1316, - "time": 0.20149253731343283, + "time": 0.2014925373134328, "position": { "x": 5, "y": 0 @@ -2736,10 +2736,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1316, - "time": 0.20149253731343283, + "time": 0.2014925373134328, "position": { "x": 5, "y": 0 @@ -2759,9 +2759,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1340, + "noteOrder": 1341, "time": 0.20522388059701493, "position": { "x": 5, @@ -2782,9 +2782,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1340, + "noteOrder": 1341, "time": 0.20522388059701493, "position": { "x": 5, @@ -2805,9 +2805,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.208955223880597, "position": { "x": 5, @@ -2828,7 +2828,7 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1462, "time": 0.22388059701492538, @@ -2851,9 +2851,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1486, + "noteOrder": 1487, "time": 0.22761194029850745, "position": { "x": 5, @@ -2874,9 +2874,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1486, + "noteOrder": 1487, "time": 0.22761194029850745, "position": { "x": 5, @@ -2897,10 +2897,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1511, - "time": 0.23134328358208955, + "time": 0.23134328358208953, "position": { "x": 5, "y": 0 @@ -2920,10 +2920,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1511, - "time": 0.23134328358208955, + "time": 0.23134328358208953, "position": { "x": 5, "y": 0 @@ -2943,10 +2943,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1535, - "time": 0.23507462686567165, + "noteOrder": 1536, + "time": 0.23507462686567163, "position": { "x": 5, "y": 0 @@ -2966,10 +2966,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1535, - "time": 0.23507462686567165, + "noteOrder": 1536, + "time": 0.23507462686567163, "position": { "x": 5, "y": 0 @@ -2989,10 +2989,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1559, - "time": 0.23880597014925373, + "noteOrder": 1560, + "time": 0.2388059701492537, "position": { "x": 5, "y": 0 @@ -3012,7 +3012,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1657, "time": 0.2537313432835821, @@ -3033,12 +3033,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.2555970149253731, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1670, + "time": 0.2555970149253731, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.2574626865671642, + "noteOrder": 1682, + "time": 0.25746268656716415, "position": { "x": 7, "y": 0 @@ -3056,11 +3102,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1694, + "time": 0.25932835820895517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1694, + "time": 0.25932835820895517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.26865671641791045, "position": { "x": 5, @@ -3081,7 +3173,7 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1779, "time": 0.27238805970149255, @@ -3104,7 +3196,7 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1779, "time": 0.27238805970149255, @@ -3127,10 +3219,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.27611940298507465, + "noteOrder": 1804, + "time": 0.2761194029850746, "position": { "x": 5, "y": 0 @@ -3150,10 +3242,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1803, - "time": 0.27611940298507465, + "noteOrder": 1804, + "time": 0.2761194029850746, "position": { "x": 5, "y": 0 @@ -3173,10 +3265,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1827, - "time": 0.27985074626865675, + "noteOrder": 1828, + "time": 0.2798507462686567, "position": { "x": 5, "y": 0 @@ -3196,7 +3288,7 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1852, "time": 0.2835820895522388, @@ -3217,11 +3309,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1865, + "time": 0.28544776119402987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1865, + "time": 0.28544776119402987, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.2873134328358209, "position": { "x": 3, @@ -3240,12 +3378,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1889, + "time": 0.2891791044776119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1889, + "time": 0.2891791044776119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, - "time": 0.2985074626865672, + "noteOrder": 1950, + "time": 0.29850746268656714, "position": { "x": 5, "y": 0 @@ -3265,7 +3449,7 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1974, "time": 0.30223880597014924, @@ -3288,7 +3472,7 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, "time": 0.30223880597014924, @@ -3311,9 +3495,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30597014925373134, "position": { "x": 5, @@ -3334,9 +3518,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30597014925373134, "position": { "x": 5, @@ -3357,9 +3541,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.30970149253731344, "position": { "x": 5, @@ -3380,10 +3564,33 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2047, - "time": 0.31343283582089554, + "time": 0.3134328358208955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2060, + "time": 0.3152985074626865, "position": { "x": 7, "y": 0 @@ -3401,12 +3608,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2060, + "time": 0.3152985074626865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2071, - "time": 0.31716417910447764, + "noteOrder": 2072, + "time": 0.3171641791044776, "position": { "x": 3, "y": 0 @@ -3424,11 +3654,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2084, + "time": 0.31902985074626866, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2084, + "time": 0.31902985074626866, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.3283582089552239, "position": { "x": 5, @@ -3449,10 +3725,102 @@ }, { "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2169, + "time": 0.33208955223880593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2168, - "time": 0.332089552238806, + "noteOrder": 2169, + "time": 0.33208955223880593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2194, + "time": 0.33582089552238803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2194, + "time": 0.33582089552238803, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2218, + "time": 0.33955223880597013, "position": { "x": 5, "y": 0 @@ -3471,13 +3839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2168, - "time": 0.332089552238806, + "noteOrder": 2242, + "time": 0.34328358208955223, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3494,13 +3862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2193, - "time": 0.3358208955223881, + "noteOrder": 2255, + "time": 0.34514925373134325, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3517,13 +3885,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2193, - "time": 0.3358208955223881, + "noteOrder": 2255, + "time": 0.34514925373134325, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3535,18 +3903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 90, "indexInLine": 1, "isSliding": false, - "noteOrder": 2217, - "time": 0.33955223880597013, + "noteOrder": 2267, + "time": 0.34701492537313433, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3563,13 +3931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2242, - "time": 0.34328358208955223, + "noteOrder": 2279, + "time": 0.34888059701492535, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3581,18 +3949,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2266, - "time": 0.34701492537313433, + "noteOrder": 2279, + "time": 0.34888059701492535, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3610,10 +3978,10 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2339, - "time": 0.35820895522388063, + "noteOrder": 2340, + "time": 0.3582089552238806, "position": { "x": 5, "y": 0 @@ -3633,9 +4001,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3619402985074627, "position": { "x": 5, @@ -3656,9 +4024,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3619402985074627, "position": { "x": 5, @@ -3679,9 +4047,9 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, + "noteOrder": 2389, "time": 0.3656716417910448, "position": { "x": 5, @@ -3702,9 +4070,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2388, + "noteOrder": 2389, "time": 0.3656716417910448, "position": { "x": 5, @@ -3725,10 +4093,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2412, - "time": 0.3694029850746269, + "noteOrder": 2413, + "time": 0.3694029850746268, "position": { "x": 5, "y": 0 @@ -3748,10 +4116,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2583, - "time": 0.3955223880597015, + "noteOrder": 2584, + "time": 0.39552238805970147, "position": { "x": 7, "y": 0 @@ -3771,9 +4139,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2680, + "noteOrder": 2681, "time": 0.41044776119402987, "position": { "x": 7, @@ -3794,9 +4162,9 @@ }, { "lineGroupId": 99, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2729, + "noteOrder": 2730, "time": 0.417910447761194, "position": { "x": 6, @@ -3817,10 +4185,10 @@ }, { "lineGroupId": 99, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2826, - "time": 0.4328358208955224, + "noteOrder": 2827, + "time": 0.43283582089552236, "position": { "x": 6, "y": 0 @@ -3840,9 +4208,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.39925373134328357, "position": { "x": 3, @@ -3863,9 +4231,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2729, + "noteOrder": 2730, "time": 0.417910447761194, "position": { "x": 3, @@ -3886,10 +4254,10 @@ }, { "lineGroupId": 100, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2778, - "time": 0.4253731343283582, + "noteOrder": 2779, + "time": 0.42537313432835816, "position": { "x": 4, "y": 0 @@ -3909,10 +4277,10 @@ }, { "lineGroupId": 100, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2826, - "time": 0.4328358208955224, + "noteOrder": 2827, + "time": 0.43283582089552236, "position": { "x": 4, "y": 0 @@ -3932,10 +4300,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3216, - "time": 0.49253731343283585, + "noteOrder": 3217, + "time": 0.4925373134328358, "position": { "x": 3, "y": 0 @@ -3955,10 +4323,10 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3265, - "time": 0.5, + "noteOrder": 3266, + "time": 0.49999999999999994, "position": { "x": 3, "y": 0 @@ -3978,9 +4346,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.5074626865671642, "position": { "x": 7, @@ -4001,10 +4369,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.5149253731343284, + "noteOrder": 3364, + "time": 0.5149253731343283, "position": { "x": 7, "y": 0 @@ -4024,10 +4392,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3411, - "time": 0.5223880597014926, + "noteOrder": 3412, + "time": 0.5223880597014925, "position": { "x": 5, "y": 0 @@ -4047,9 +4415,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.5298507462686567, "position": { "x": 5, @@ -4070,9 +4438,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.5373134328358209, "position": { "x": 5, @@ -4093,9 +4461,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.5447761194029851, "position": { "x": 5, @@ -4116,10 +4484,10 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.5522388059701493, + "noteOrder": 3607, + "time": 0.5522388059701492, "position": { "x": 7, "y": 0 @@ -4139,10 +4507,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3630, - "time": 0.5559701492537313, + "noteOrder": 3632, + "time": 0.5559701492537312, "position": { "x": 7, "y": 0 @@ -4162,10 +4530,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3655, - "time": 0.5597014925373135, + "noteOrder": 3656, + "time": 0.5597014925373134, "position": { "x": 3, "y": 0 @@ -4185,10 +4553,10 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3679, - "time": 0.5634328358208955, + "noteOrder": 3680, + "time": 0.5634328358208954, "position": { "x": 3, "y": 0 @@ -4208,9 +4576,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3703, + "noteOrder": 3705, "time": 0.5671641791044776, "position": { "x": 7, @@ -4231,9 +4599,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3728, + "noteOrder": 3729, "time": 0.5708955223880597, "position": { "x": 7, @@ -4254,9 +4622,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3752, + "noteOrder": 3754, "time": 0.5746268656716418, "position": { "x": 3, @@ -4277,10 +4645,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3777, - "time": 0.5783582089552239, + "noteOrder": 3778, + "time": 0.5783582089552238, "position": { "x": 3, "y": 0 @@ -4300,9 +4668,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3801, + "noteOrder": 3802, "time": 0.582089552238806, "position": { "x": 5, @@ -4323,9 +4691,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3825, + "noteOrder": 3827, "time": 0.585820895522388, "position": { "x": 5, @@ -4346,9 +4714,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3825, + "noteOrder": 3827, "time": 0.585820895522388, "position": { "x": 5, @@ -4369,10 +4737,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3850, - "time": 0.5895522388059702, + "noteOrder": 3851, + "time": 0.5895522388059701, "position": { "x": 5, "y": 0 @@ -4392,10 +4760,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3850, - "time": 0.5895522388059702, + "noteOrder": 3851, + "time": 0.5895522388059701, "position": { "x": 5, "y": 0 @@ -4415,10 +4783,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3874, - "time": 0.5932835820895522, + "noteOrder": 3875, + "time": 0.5932835820895521, "position": { "x": 5, "y": 0 @@ -4438,10 +4806,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3874, - "time": 0.5932835820895522, + "noteOrder": 3875, + "time": 0.5932835820895521, "position": { "x": 5, "y": 0 @@ -4461,10 +4829,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3898, - "time": 0.5970149253731344, + "noteOrder": 3900, + "time": 0.5970149253731343, "position": { "x": 5, "y": 0 @@ -4484,10 +4852,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3898, - "time": 0.5970149253731344, + "noteOrder": 3900, + "time": 0.5970149253731343, "position": { "x": 5, "y": 0 @@ -4507,9 +4875,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3923, + "noteOrder": 3924, "time": 0.6007462686567164, "position": { "x": 5, @@ -4530,9 +4898,9 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3923, + "noteOrder": 3924, "time": 0.6007462686567164, "position": { "x": 5, @@ -4553,9 +4921,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3947, + "noteOrder": 3949, "time": 0.6044776119402985, "position": { "x": 5, @@ -4576,9 +4944,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3996, + "noteOrder": 3997, "time": 0.6119402985074627, "position": { "x": 5, @@ -4599,10 +4967,10 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4020, - "time": 0.6156716417910448, + "noteOrder": 4022, + "time": 0.6156716417910447, "position": { "x": 5, "y": 0 @@ -4622,10 +4990,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4020, - "time": 0.6156716417910448, + "noteOrder": 4022, + "time": 0.6156716417910447, "position": { "x": 5, "y": 0 @@ -4645,9 +5013,9 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4045, + "noteOrder": 4046, "time": 0.6194029850746269, "position": { "x": 5, @@ -4668,9 +5036,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4045, + "noteOrder": 4046, "time": 0.6194029850746269, "position": { "x": 5, @@ -4691,9 +5059,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4069, + "noteOrder": 4070, "time": 0.6231343283582089, "position": { "x": 5, @@ -4714,9 +5082,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4069, + "noteOrder": 4070, "time": 0.6231343283582089, "position": { "x": 5, @@ -4737,10 +5105,10 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4093, - "time": 0.6268656716417911, + "noteOrder": 4095, + "time": 0.626865671641791, "position": { "x": 5, "y": 0 @@ -4760,9 +5128,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4191, + "noteOrder": 4192, "time": 0.6417910447761194, "position": { "x": 5, @@ -4783,9 +5151,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4215, + "noteOrder": 4217, "time": 0.6455223880597015, "position": { "x": 5, @@ -4806,9 +5174,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4215, + "noteOrder": 4217, "time": 0.6455223880597015, "position": { "x": 5, @@ -4829,9 +5197,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4239, + "noteOrder": 4241, "time": 0.6492537313432836, "position": { "x": 5, @@ -4852,9 +5220,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4239, + "noteOrder": 4241, "time": 0.6492537313432836, "position": { "x": 5, @@ -4875,10 +5243,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4264, - "time": 0.6529850746268657, + "noteOrder": 4265, + "time": 0.6529850746268656, "position": { "x": 5, "y": 0 @@ -4898,10 +5266,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4264, - "time": 0.6529850746268657, + "noteOrder": 4265, + "time": 0.6529850746268656, "position": { "x": 5, "y": 0 @@ -4921,9 +5289,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.6567164179104478, "position": { "x": 5, @@ -4944,10 +5312,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4386, - "time": 0.6716417910447762, + "noteOrder": 4387, + "time": 0.6716417910447761, "position": { "x": 5, "y": 0 @@ -4967,9 +5335,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4410, + "noteOrder": 4412, "time": 0.6753731343283582, "position": { "x": 5, @@ -4990,9 +5358,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4410, + "noteOrder": 4412, "time": 0.6753731343283582, "position": { "x": 5, @@ -5013,9 +5381,9 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4434, + "noteOrder": 4436, "time": 0.6791044776119403, "position": { "x": 5, @@ -5036,9 +5404,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4434, + "noteOrder": 4436, "time": 0.6791044776119403, "position": { "x": 5, @@ -5059,9 +5427,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4459, + "noteOrder": 4460, "time": 0.6828358208955224, "position": { "x": 5, @@ -5082,9 +5450,9 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4459, + "noteOrder": 4460, "time": 0.6828358208955224, "position": { "x": 5, @@ -5105,9 +5473,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4483, + "noteOrder": 4485, "time": 0.6865671641791045, "position": { "x": 5, @@ -5128,10 +5496,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4581, - "time": 0.7014925373134329, + "noteOrder": 4582, + "time": 0.7014925373134328, "position": { "x": 5, "y": 0 @@ -5151,10 +5519,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4605, - "time": 0.7052238805970149, + "noteOrder": 4607, + "time": 0.7052238805970148, "position": { "x": 5, "y": 0 @@ -5174,10 +5542,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4605, - "time": 0.7052238805970149, + "noteOrder": 4607, + "time": 0.7052238805970148, "position": { "x": 5, "y": 0 @@ -5197,10 +5565,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4629, - "time": 0.7089552238805971, + "noteOrder": 4631, + "time": 0.708955223880597, "position": { "x": 5, "y": 0 @@ -5220,10 +5588,10 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.7089552238805971, + "noteOrder": 4631, + "time": 0.708955223880597, "position": { "x": 5, "y": 0 @@ -5243,9 +5611,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4654, + "noteOrder": 4655, "time": 0.7126865671641791, "position": { "x": 5, @@ -5266,9 +5634,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4654, + "noteOrder": 4655, "time": 0.7126865671641791, "position": { "x": 5, @@ -5289,10 +5657,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4678, - "time": 0.7164179104477613, + "noteOrder": 4680, + "time": 0.7164179104477612, "position": { "x": 5, "y": 0 @@ -5312,9 +5680,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4776, + "noteOrder": 4777, "time": 0.7313432835820896, "position": { "x": 7, @@ -5335,10 +5703,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4849, - "time": 0.7425373134328358, + "noteOrder": 4850, + "time": 0.7425373134328357, "position": { "x": 4, "y": 0 @@ -5358,9 +5726,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4873, + "noteOrder": 4875, "time": 0.746268656716418, "position": { "x": 4, @@ -5381,9 +5749,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.75, "position": { "x": 4, @@ -5404,9 +5772,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.75, "position": { "x": 4, @@ -5427,10 +5795,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4922, - "time": 0.7537313432835822, + "noteOrder": 4924, + "time": 0.753731343283582, "position": { "x": 4, "y": 0 @@ -5450,10 +5818,10 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4922, - "time": 0.7537313432835822, + "noteOrder": 4924, + "time": 0.753731343283582, "position": { "x": 4, "y": 0 @@ -5473,9 +5841,9 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574626865671642, "position": { "x": 4, @@ -5496,9 +5864,9 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7611940298507462, "position": { "x": 3, @@ -5519,10 +5887,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5044, - "time": 0.7723880597014926, + "noteOrder": 5045, + "time": 0.7723880597014925, "position": { "x": 6, "y": 0 @@ -5542,10 +5910,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5068, - "time": 0.7761194029850746, + "noteOrder": 5070, + "time": 0.7761194029850745, "position": { "x": 6, "y": 0 @@ -5565,10 +5933,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.7798507462686567, + "noteOrder": 5094, + "time": 0.7798507462686566, "position": { "x": 6, "y": 0 @@ -5588,10 +5956,10 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5092, - "time": 0.7798507462686567, + "noteOrder": 5094, + "time": 0.7798507462686566, "position": { "x": 6, "y": 0 @@ -5611,9 +5979,9 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5117, + "noteOrder": 5119, "time": 0.7835820895522388, "position": { "x": 6, @@ -5634,9 +6002,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5117, + "noteOrder": 5119, "time": 0.7835820895522388, "position": { "x": 6, @@ -5657,9 +6025,9 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.7873134328358209, "position": { "x": 6, @@ -5680,10 +6048,10 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5165, - "time": 0.791044776119403, + "noteOrder": 5167, + "time": 0.7910447761194029, "position": { "x": 3, "y": 0 @@ -5703,9 +6071,9 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.7947761194029851, "position": { "x": 3, @@ -5726,9 +6094,9 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5214, + "noteOrder": 5216, "time": 0.7985074626865671, "position": { "x": 7, @@ -5749,10 +6117,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5238, - "time": 0.8022388059701493, + "noteOrder": 5240, + "time": 0.8022388059701492, "position": { "x": 7, "y": 0 @@ -5772,10 +6140,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5263, - "time": 0.8059701492537313, + "noteOrder": 5265, + "time": 0.8059701492537312, "position": { "x": 5, "y": 0 @@ -5795,10 +6163,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5287, - "time": 0.8097014925373135, + "noteOrder": 5289, + "time": 0.8097014925373134, "position": { "x": 5, "y": 0 @@ -5818,10 +6186,10 @@ }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, - "time": 0.8097014925373135, + "noteOrder": 5289, + "time": 0.8097014925373134, "position": { "x": 5, "y": 0 @@ -5841,10 +6209,10 @@ }, { "lineGroupId": 191, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, - "time": 0.8134328358208955, + "noteOrder": 5314, + "time": 0.8134328358208954, "position": { "x": 5, "y": 0 @@ -5864,10 +6232,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5312, - "time": 0.8134328358208955, + "noteOrder": 5314, + "time": 0.8134328358208954, "position": { "x": 5, "y": 0 @@ -5887,10 +6255,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5336, - "time": 0.8171641791044776, + "noteOrder": 5338, + "time": 0.8171641791044775, "position": { "x": 5, "y": 0 @@ -5910,9 +6278,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.8208955223880597, "position": { "x": 5, @@ -5933,9 +6301,9 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5385, + "noteOrder": 5387, "time": 0.8246268656716418, "position": { "x": 5, @@ -5956,9 +6324,9 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5385, + "noteOrder": 5387, "time": 0.8246268656716418, "position": { "x": 5, @@ -5979,10 +6347,10 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5409, - "time": 0.8283582089552239, + "noteOrder": 5411, + "time": 0.8283582089552238, "position": { "x": 5, "y": 0 @@ -6002,10 +6370,10 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5409, - "time": 0.8283582089552239, + "noteOrder": 5411, + "time": 0.8283582089552238, "position": { "x": 5, "y": 0 @@ -6025,9 +6393,9 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.832089552238806, "position": { "x": 5, @@ -6048,10 +6416,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5555, - "time": 0.8507462686567164, + "noteOrder": 5557, + "time": 0.8507462686567163, "position": { "x": 3, "y": 0 @@ -6071,9 +6439,9 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5628, + "noteOrder": 5630, "time": 0.8619402985074627, "position": { "x": 6, @@ -6094,10 +6462,10 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5653, - "time": 0.8656716417910448, + "noteOrder": 5655, + "time": 0.8656716417910447, "position": { "x": 6, "y": 0 @@ -6117,9 +6485,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5677, + "noteOrder": 5679, "time": 0.8694029850746269, "position": { "x": 6, @@ -6140,9 +6508,9 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5677, + "noteOrder": 5679, "time": 0.8694029850746269, "position": { "x": 6, @@ -6163,9 +6531,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8731343283582089, "position": { "x": 6, @@ -6186,9 +6554,9 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8731343283582089, "position": { "x": 6, @@ -6209,10 +6577,10 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5726, - "time": 0.8768656716417911, + "noteOrder": 5728, + "time": 0.876865671641791, "position": { "x": 6, "y": 0 @@ -6232,10 +6600,10 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5750, - "time": 0.8805970149253731, + "noteOrder": 5752, + "time": 0.880597014925373, "position": { "x": 7, "y": 0 @@ -6255,9 +6623,9 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5823, + "noteOrder": 5825, "time": 0.8917910447761194, "position": { "x": 4, @@ -6278,9 +6646,9 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5848, + "noteOrder": 5850, "time": 0.8955223880597015, "position": { "x": 4, @@ -6301,9 +6669,9 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5872, + "noteOrder": 5874, "time": 0.8992537313432836, "position": { "x": 4, @@ -6324,9 +6692,9 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5872, + "noteOrder": 5874, "time": 0.8992537313432836, "position": { "x": 4, @@ -6347,10 +6715,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5896, - "time": 0.9029850746268657, + "noteOrder": 5898, + "time": 0.9029850746268656, "position": { "x": 4, "y": 0 @@ -6370,10 +6738,10 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5896, - "time": 0.9029850746268657, + "noteOrder": 5898, + "time": 0.9029850746268656, "position": { "x": 4, "y": 0 @@ -6393,9 +6761,9 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5921, + "noteOrder": 5923, "time": 0.9067164179104478, "position": { "x": 4, @@ -6416,9 +6784,9 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5945, + "noteOrder": 5947, "time": 0.9104477611940298, "position": { "x": 7, @@ -6439,10 +6807,10 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5969, - "time": 0.914179104477612, + "noteOrder": 5972, + "time": 0.9141791044776119, "position": { "x": 7, "y": 0 @@ -6462,10 +6830,10 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5994, - "time": 0.917910447761194, + "noteOrder": 5996, + "time": 0.9179104477611939, "position": { "x": 3, "y": 0 @@ -6485,10 +6853,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6018, - "time": 0.9216417910447762, + "noteOrder": 6020, + "time": 0.9216417910447761, "position": { "x": 3, "y": 0 @@ -6508,10 +6876,10 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6042, - "time": 0.9253731343283582, + "noteOrder": 6045, + "time": 0.9253731343283581, "position": { "x": 5, "y": 0 @@ -6531,10 +6899,10 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6067, - "time": 0.9291044776119404, + "noteOrder": 6069, + "time": 0.9291044776119403, "position": { "x": 5, "y": 0 @@ -6554,10 +6922,10 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6067, - "time": 0.9291044776119404, + "noteOrder": 6069, + "time": 0.9291044776119403, "position": { "x": 5, "y": 0 @@ -6577,9 +6945,9 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6091, + "noteOrder": 6093, "time": 0.9328358208955224, "position": { "x": 5, @@ -6600,9 +6968,9 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6091, + "noteOrder": 6093, "time": 0.9328358208955224, "position": { "x": 5, @@ -6623,9 +6991,9 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6116, + "noteOrder": 6118, "time": 0.9365671641791045, "position": { "x": 5, @@ -6646,10 +7014,10 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6140, - "time": 0.9402985074626866, + "noteOrder": 6142, + "time": 0.9402985074626865, "position": { "x": 3, "y": 0 @@ -6669,9 +7037,9 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6164, + "noteOrder": 6167, "time": 0.9440298507462687, "position": { "x": 3, @@ -6692,10 +7060,10 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6189, - "time": 0.9477611940298508, + "noteOrder": 6191, + "time": 0.9477611940298507, "position": { "x": 7, "y": 0 @@ -6715,10 +7083,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6213, - "time": 0.9514925373134329, + "noteOrder": 6215, + "time": 0.9514925373134328, "position": { "x": 7, "y": 0 @@ -6738,10 +7106,10 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6237, - "time": 0.9552238805970149, + "noteOrder": 6240, + "time": 0.9552238805970148, "position": { "x": 5, "y": 0 @@ -6761,10 +7129,10 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6262, - "time": 0.9589552238805971, + "noteOrder": 6264, + "time": 0.958955223880597, "position": { "x": 5, "y": 0 @@ -6784,10 +7152,10 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6262, - "time": 0.9589552238805971, + "noteOrder": 6264, + "time": 0.958955223880597, "position": { "x": 5, "y": 0 @@ -6807,10 +7175,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6286, - "time": 0.9626865671641791, + "noteOrder": 6288, + "time": 0.962686567164179, "position": { "x": 5, "y": 0 @@ -6830,10 +7198,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6286, - "time": 0.9626865671641791, + "noteOrder": 6288, + "time": 0.962686567164179, "position": { "x": 5, "y": 0 @@ -6853,10 +7221,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6310, - "time": 0.9664179104477613, + "noteOrder": 6313, + "time": 0.9664179104477612, "position": { "x": 5, "y": 0 diff --git a/tracks/Oppress CHARLESTON EDITION/365_difficulty_1b.json b/tracks/Oppress CHARLESTON EDITION/365_difficulty_1b.json index e29c372d..05117c67 100644 --- a/tracks/Oppress CHARLESTON EDITION/365_difficulty_1b.json +++ b/tracks/Oppress CHARLESTON EDITION/365_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.014925373134328358, + "time": 0.014925373134328356, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.01865671641791045, + "time": 0.018656716417910446, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 146, - "time": 0.02238805970149254, + "time": 0.022388059701492536, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 195, - "time": 0.029850746268656716, + "time": 0.029850746268656712, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 244, - "time": 0.0373134328358209, + "time": 0.03731343283582089, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 292, - "time": 0.04477611940298508, + "time": 0.04477611940298507, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 317, - "time": 0.048507462686567165, + "time": 0.04850746268656716, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 390, - "time": 0.05970149253731343, + "time": 0.059701492537313425, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 487, - "time": 0.0746268656716418, + "time": 0.07462686567164178, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 512, - "time": 0.07835820895522388, + "time": 0.07835820895522387, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 585, - "time": 0.08955223880597016, + "time": 0.08955223880597014, "position": { "x": 4, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 633, - "time": 0.09701492537313433, + "noteOrder": 634, + "time": 0.09701492537313432, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 975, - "time": 0.1492537313432836, + "time": 0.14925373134328357, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1023, - "time": 0.15671641791044777, + "noteOrder": 1024, + "time": 0.15671641791044774, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1170, - "time": 0.17910447761194032, + "time": 0.1791044776119403, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1218, + "noteOrder": 1219, "time": 0.1865671641791045, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.208955223880597, "position": { "x": 7, @@ -474,7 +474,7 @@ }, { "noteOrder": 1389, - "time": 0.2126865671641791, + "time": 0.21268656716417908, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1413, - "time": 0.2164179104477612, + "noteOrder": 1414, + "time": 0.21641791044776118, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1438, - "time": 0.22014925373134328, + "time": 0.22014925373134325, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1559, - "time": 0.23880597014925373, + "noteOrder": 1560, + "time": 0.2388059701492537, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1608, - "time": 0.24626865671641793, + "noteOrder": 1609, + "time": 0.2462686567164179, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1632, - "time": 0.25, + "noteOrder": 1633, + "time": 0.24999999999999997, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1681, - "time": 0.2574626865671642, + "noteOrder": 1682, + "time": 0.25746268656716415, "position": { "x": 7, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1706, - "time": 0.2611940298507463, + "time": 0.26119402985074625, "position": { "x": 5, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.2873134328358209, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1900, + "noteOrder": 1901, "time": 0.291044776119403, "position": { "x": 5, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.4328358208955224, + "noteOrder": 2827, + "time": 0.43283582089552236, "position": { "x": 5, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2851, + "noteOrder": 2852, "time": 0.43656716417910446, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2875, - "time": 0.44029850746268656, + "noteOrder": 2876, + "time": 0.4402985074626865, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2924, + "noteOrder": 2925, "time": 0.44776119402985076, "position": { "x": 5, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2948, - "time": 0.45149253731343286, + "noteOrder": 2949, + "time": 0.4514925373134328, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2973, + "noteOrder": 2974, "time": 0.4552238805970149, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3021, - "time": 0.4626865671641791, + "noteOrder": 3022, + "time": 0.46268656716417905, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 3047, "time": 0.4664179104477612, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3070, - "time": 0.4701492537313433, + "noteOrder": 3071, + "time": 0.47014925373134325, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3119, - "time": 0.47761194029850745, + "noteOrder": 3120, + "time": 0.4776119402985074, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3143, - "time": 0.48134328358208955, + "noteOrder": 3144, + "time": 0.4813432835820895, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3167, + "noteOrder": 3169, "time": 0.48507462686567165, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3216, - "time": 0.49253731343283585, + "noteOrder": 3217, + "time": 0.4925373134328358, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3241, - "time": 0.4962686567164179, + "noteOrder": 3242, + "time": 0.49626865671641784, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3265, - "time": 0.5, + "noteOrder": 3266, + "time": 0.49999999999999994, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.5074626865671642, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.5111940298507462, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5149253731343284, + "noteOrder": 3364, + "time": 0.5149253731343283, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3411, - "time": 0.5223880597014926, + "noteOrder": 3412, + "time": 0.5223880597014925, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3435, - "time": 0.5261194029850746, + "noteOrder": 3437, + "time": 0.5261194029850745, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.5298507462686567, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3484, + "noteOrder": 3485, "time": 0.5335820895522388, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3510, "time": 0.5373134328358209, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3533, - "time": 0.541044776119403, + "noteOrder": 3534, + "time": 0.5410447761194029, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3559, "time": 0.5447761194029851, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3583, "time": 0.5485074626865671, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3801, + "noteOrder": 3802, "time": 0.582089552238806, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 3827, "time": 0.585820895522388, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3850, - "time": 0.5895522388059702, + "noteOrder": 3851, + "time": 0.5895522388059701, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4142, - "time": 0.6343283582089553, + "noteOrder": 4144, + "time": 0.6343283582089552, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4532, + "noteOrder": 4534, "time": 0.6940298507462687, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5165, - "time": 0.791044776119403, + "noteOrder": 5167, + "time": 0.7910447761194029, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5190, + "noteOrder": 5192, "time": 0.7947761194029851, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5214, + "noteOrder": 5216, "time": 0.7985074626865671, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5238, - "time": 0.8022388059701493, + "noteOrder": 5240, + "time": 0.8022388059701492, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5263, - "time": 0.8059701492537313, + "noteOrder": 5265, + "time": 0.8059701492537312, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5287, - "time": 0.8097014925373135, + "noteOrder": 5289, + "time": 0.8097014925373134, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5312, - "time": 0.8134328358208955, + "noteOrder": 5314, + "time": 0.8134328358208954, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8171641791044776, + "noteOrder": 5338, + "time": 0.8171641791044775, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.8208955223880597, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5385, + "noteOrder": 5387, "time": 0.8246268656716418, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5409, - "time": 0.8283582089552239, + "noteOrder": 5411, + "time": 0.8283582089552238, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5433, + "noteOrder": 5435, "time": 0.832089552238806, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5458, + "noteOrder": 5460, "time": 0.835820895522388, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5482, - "time": 0.8395522388059702, + "noteOrder": 5484, + "time": 0.8395522388059701, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5506, - "time": 0.8432835820895522, + "noteOrder": 5508, + "time": 0.8432835820895521, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5531, - "time": 0.8470149253731344, + "noteOrder": 5533, + "time": 0.8470149253731343, "position": { "x": 5, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5799, - "time": 0.8880597014925373, + "noteOrder": 5801, + "time": 0.8880597014925372, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5848, + "noteOrder": 5850, "time": 0.8955223880597015, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5896, - "time": 0.9029850746268657, + "noteOrder": 5898, + "time": 0.9029850746268656, "position": { "x": 2, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6189, - "time": 0.9477611940298508, + "noteOrder": 6191, + "time": 0.9477611940298507, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6237, - "time": 0.9552238805970149, + "noteOrder": 6240, + "time": 0.9552238805970148, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6286, - "time": 0.9626865671641791, + "noteOrder": 6288, + "time": 0.962686567164179, "position": { "x": 8, "y": 0 @@ -1796,7 +1796,7 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 682, "time": 0.1044776119402985, @@ -1819,7 +1819,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 731, "time": 0.11194029850746269, @@ -1842,10 +1842,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 780, - "time": 0.11940298507462686, + "time": 0.11940298507462685, "position": { "x": 4, "y": 0 @@ -1865,9 +1865,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 828, + "noteOrder": 829, "time": 0.12686567164179105, "position": { "x": 4, @@ -1888,7 +1888,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 877, "time": 0.13432835820895522, @@ -1911,10 +1911,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 901, - "time": 0.13805970149253732, + "noteOrder": 902, + "time": 0.1380597014925373, "position": { "x": 6, "y": 0 @@ -1934,10 +1934,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 901, - "time": 0.13805970149253732, + "noteOrder": 902, + "time": 0.1380597014925373, "position": { "x": 4, "y": 0 @@ -1957,7 +1957,7 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 926, "time": 0.1417910447761194, @@ -1980,7 +1980,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 926, "time": 0.1417910447761194, @@ -2003,9 +2003,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 950, + "noteOrder": 951, "time": 0.1455223880597015, "position": { "x": 6, @@ -2026,9 +2026,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 950, + "noteOrder": 951, "time": 0.1455223880597015, "position": { "x": 4, @@ -2049,10 +2049,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 975, - "time": 0.1492537313432836, + "time": 0.14925373134328357, "position": { "x": 4, "y": 0 @@ -2072,7 +2072,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1072, "time": 0.16417910447761194, @@ -2095,10 +2095,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1096, - "time": 0.16791044776119404, + "noteOrder": 1097, + "time": 0.16791044776119401, "position": { "x": 4, "y": 0 @@ -2118,10 +2118,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1096, - "time": 0.16791044776119404, + "noteOrder": 1097, + "time": 0.16791044776119401, "position": { "x": 6, "y": 0 @@ -2141,7 +2141,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1121, "time": 0.17164179104477612, @@ -2164,7 +2164,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1121, "time": 0.17164179104477612, @@ -2187,10 +2187,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1145, - "time": 0.17537313432835822, + "noteOrder": 1146, + "time": 0.1753731343283582, "position": { "x": 4, "y": 0 @@ -2210,10 +2210,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1145, - "time": 0.17537313432835822, + "noteOrder": 1146, + "time": 0.1753731343283582, "position": { "x": 6, "y": 0 @@ -2233,10 +2233,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1170, - "time": 0.17910447761194032, + "time": 0.1791044776119403, "position": { "x": 6, "y": 0 @@ -2256,10 +2256,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1267, - "time": 0.19402985074626866, + "time": 0.19402985074626863, "position": { "x": 6, "y": 0 @@ -2279,10 +2279,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1291, - "time": 0.19776119402985076, + "noteOrder": 1292, + "time": 0.19776119402985073, "position": { "x": 6, "y": 0 @@ -2302,10 +2302,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1291, - "time": 0.19776119402985076, + "noteOrder": 1292, + "time": 0.19776119402985073, "position": { "x": 4, "y": 0 @@ -2325,10 +2325,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1316, - "time": 0.20149253731343283, + "time": 0.2014925373134328, "position": { "x": 4, "y": 0 @@ -2348,10 +2348,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1316, - "time": 0.20149253731343283, + "time": 0.2014925373134328, "position": { "x": 6, "y": 0 @@ -2371,9 +2371,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1340, + "noteOrder": 1341, "time": 0.20522388059701493, "position": { "x": 6, @@ -2394,9 +2394,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1340, + "noteOrder": 1341, "time": 0.20522388059701493, "position": { "x": 4, @@ -2417,9 +2417,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.208955223880597, "position": { "x": 4, @@ -2440,7 +2440,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1462, "time": 0.22388059701492538, @@ -2463,9 +2463,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1486, + "noteOrder": 1487, "time": 0.22761194029850745, "position": { "x": 4, @@ -2486,9 +2486,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1486, + "noteOrder": 1487, "time": 0.22761194029850745, "position": { "x": 6, @@ -2509,10 +2509,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1511, - "time": 0.23134328358208955, + "time": 0.23134328358208953, "position": { "x": 6, "y": 0 @@ -2532,10 +2532,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1511, - "time": 0.23134328358208955, + "time": 0.23134328358208953, "position": { "x": 4, "y": 0 @@ -2555,10 +2555,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1535, - "time": 0.23507462686567165, + "noteOrder": 1536, + "time": 0.23507462686567163, "position": { "x": 4, "y": 0 @@ -2578,10 +2578,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1535, - "time": 0.23507462686567165, + "noteOrder": 1536, + "time": 0.23507462686567163, "position": { "x": 6, "y": 0 @@ -2601,10 +2601,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1559, - "time": 0.23880597014925373, + "noteOrder": 1560, + "time": 0.2388059701492537, "position": { "x": 6, "y": 0 @@ -2624,9 +2624,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.26865671641791045, "position": { "x": 7, @@ -2647,7 +2647,7 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1779, "time": 0.27238805970149255, @@ -2670,7 +2670,7 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1779, "time": 0.27238805970149255, @@ -2693,10 +2693,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.27611940298507465, + "noteOrder": 1804, + "time": 0.2761194029850746, "position": { "x": 6, "y": 0 @@ -2716,10 +2716,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1803, - "time": 0.27611940298507465, + "noteOrder": 1804, + "time": 0.2761194029850746, "position": { "x": 7, "y": 0 @@ -2739,10 +2739,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1827, - "time": 0.27985074626865675, + "noteOrder": 1828, + "time": 0.2798507462686567, "position": { "x": 7, "y": 0 @@ -2762,10 +2762,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, - "time": 0.2985074626865672, + "noteOrder": 1950, + "time": 0.29850746268656714, "position": { "x": 3, "y": 0 @@ -2785,7 +2785,7 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1974, "time": 0.30223880597014924, @@ -2808,7 +2808,7 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, "time": 0.30223880597014924, @@ -2831,9 +2831,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30597014925373134, "position": { "x": 4, @@ -2854,9 +2854,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30597014925373134, "position": { "x": 3, @@ -2877,9 +2877,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.30970149253731344, "position": { "x": 3, @@ -2900,9 +2900,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.3283582089552239, "position": { "x": 6, @@ -2923,10 +2923,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2168, - "time": 0.332089552238806, + "noteOrder": 2169, + "time": 0.33208955223880593, "position": { "x": 6, "y": 0 @@ -2946,10 +2946,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2168, - "time": 0.332089552238806, + "noteOrder": 2169, + "time": 0.33208955223880593, "position": { "x": 4, "y": 0 @@ -2969,10 +2969,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2193, - "time": 0.3358208955223881, + "noteOrder": 2194, + "time": 0.33582089552238803, "position": { "x": 4, "y": 0 @@ -2992,10 +2992,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2193, - "time": 0.3358208955223881, + "noteOrder": 2194, + "time": 0.33582089552238803, "position": { "x": 6, "y": 0 @@ -3015,9 +3015,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2217, + "noteOrder": 2218, "time": 0.33955223880597013, "position": { "x": 6, @@ -3038,10 +3038,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2339, - "time": 0.35820895522388063, + "noteOrder": 2340, + "time": 0.3582089552238806, "position": { "x": 4, "y": 0 @@ -3061,9 +3061,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3619402985074627, "position": { "x": 4, @@ -3084,9 +3084,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3619402985074627, "position": { "x": 6, @@ -3107,9 +3107,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, + "noteOrder": 2389, "time": 0.3656716417910448, "position": { "x": 6, @@ -3130,9 +3130,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2388, + "noteOrder": 2389, "time": 0.3656716417910448, "position": { "x": 4, @@ -3153,10 +3153,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2412, - "time": 0.3694029850746269, + "noteOrder": 2413, + "time": 0.3694029850746268, "position": { "x": 4, "y": 0 @@ -3176,9 +3176,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2436, + "noteOrder": 2437, "time": 0.373134328358209, "position": { "x": 7, @@ -3199,10 +3199,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2534, - "time": 0.3880597014925373, + "noteOrder": 2535, + "time": 0.38805970149253727, "position": { "x": 7, "y": 0 @@ -3222,10 +3222,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2534, - "time": 0.3880597014925373, + "noteOrder": 2535, + "time": 0.38805970149253727, "position": { "x": 3, "y": 0 @@ -3245,10 +3245,10 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2631, - "time": 0.40298507462686567, + "noteOrder": 2632, + "time": 0.4029850746268656, "position": { "x": 3, "y": 0 @@ -3268,10 +3268,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2631, - "time": 0.40298507462686567, + "noteOrder": 2632, + "time": 0.4029850746268656, "position": { "x": 6, "y": 0 @@ -3291,9 +3291,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2729, + "noteOrder": 2730, "time": 0.417910447761194, "position": { "x": 6, @@ -3314,9 +3314,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2729, + "noteOrder": 2730, "time": 0.417910447761194, "position": { "x": 4, @@ -3337,10 +3337,10 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2826, - "time": 0.4328358208955224, + "noteOrder": 2827, + "time": 0.43283582089552236, "position": { "x": 4, "y": 0 @@ -3360,9 +3360,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3996, + "noteOrder": 3997, "time": 0.6119402985074627, "position": { "x": 7, @@ -3381,11 +3381,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4022, + "time": 0.6156716417910447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4022, + "time": 0.6156716417910447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4045, + "noteOrder": 4046, "time": 0.6194029850746269, "position": { "x": 7, @@ -3404,12 +3450,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6231343283582089, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6231343283582089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4093, - "time": 0.6268656716417911, + "noteOrder": 4095, + "time": 0.626865671641791, "position": { "x": 7, "y": 0 @@ -3429,9 +3521,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4191, + "noteOrder": 4192, "time": 0.6417910447761194, "position": { "x": 6, @@ -3452,9 +3544,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4191, + "noteOrder": 4192, "time": 0.6417910447761194, "position": { "x": 4, @@ -3475,9 +3567,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4239, + "noteOrder": 4241, "time": 0.6492537313432836, "position": { "x": 4, @@ -3498,9 +3590,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4239, + "noteOrder": 4241, "time": 0.6492537313432836, "position": { "x": 4, @@ -3521,9 +3613,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.6567164179104478, "position": { "x": 4, @@ -3544,9 +3636,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4288, + "noteOrder": 4290, "time": 0.6567164179104478, "position": { "x": 4, @@ -3567,10 +3659,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4337, - "time": 0.664179104477612, + "noteOrder": 4339, + "time": 0.6641791044776119, "position": { "x": 4, "y": 0 @@ -3590,10 +3682,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4337, - "time": 0.664179104477612, + "noteOrder": 4339, + "time": 0.6641791044776119, "position": { "x": 4, "y": 0 @@ -3613,10 +3705,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4386, - "time": 0.6716417910447762, + "noteOrder": 4387, + "time": 0.6716417910447761, "position": { "x": 4, "y": 0 @@ -3636,10 +3728,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4386, - "time": 0.6716417910447762, + "noteOrder": 4387, + "time": 0.6716417910447761, "position": { "x": 3, "y": 0 @@ -3657,11 +3749,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4412, + "time": 0.6753731343283582, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4412, + "time": 0.6753731343283582, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4434, + "noteOrder": 4436, "time": 0.6791044776119403, "position": { "x": 3, @@ -3680,11 +3818,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4460, + "time": 0.6828358208955224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4460, + "time": 0.6828358208955224, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4483, + "noteOrder": 4485, "time": 0.6865671641791045, "position": { "x": 3, @@ -3705,10 +3889,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4581, - "time": 0.7014925373134329, + "noteOrder": 4582, + "time": 0.7014925373134328, "position": { "x": 4, "y": 0 @@ -3728,10 +3912,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4581, - "time": 0.7014925373134329, + "noteOrder": 4582, + "time": 0.7014925373134328, "position": { "x": 6, "y": 0 @@ -3751,10 +3935,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4629, - "time": 0.7089552238805971, + "noteOrder": 4631, + "time": 0.708955223880597, "position": { "x": 6, "y": 0 @@ -3774,10 +3958,10 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.7089552238805971, + "noteOrder": 4631, + "time": 0.708955223880597, "position": { "x": 6, "y": 0 @@ -3797,10 +3981,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4678, - "time": 0.7164179104477613, + "noteOrder": 4680, + "time": 0.7164179104477612, "position": { "x": 6, "y": 0 @@ -3820,10 +4004,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4678, - "time": 0.7164179104477613, + "noteOrder": 4680, + "time": 0.7164179104477612, "position": { "x": 6, "y": 0 @@ -3843,9 +4027,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4727, + "noteOrder": 4729, "time": 0.7238805970149254, "position": { "x": 6, @@ -3866,9 +4050,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4727, + "noteOrder": 4729, "time": 0.7238805970149254, "position": { "x": 6, @@ -3889,9 +4073,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4776, + "noteOrder": 4777, "time": 0.7313432835820896, "position": { "x": 6, @@ -3912,9 +4096,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4873, + "noteOrder": 4875, "time": 0.746268656716418, "position": { "x": 6, @@ -3935,9 +4119,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.75, "position": { "x": 6, @@ -3958,9 +4142,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.75, "position": { "x": 4, @@ -3981,10 +4165,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4922, - "time": 0.7537313432835822, + "noteOrder": 4924, + "time": 0.753731343283582, "position": { "x": 4, "y": 0 @@ -4004,10 +4188,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4922, - "time": 0.7537313432835822, + "noteOrder": 4924, + "time": 0.753731343283582, "position": { "x": 6, "y": 0 @@ -4027,9 +4211,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574626865671642, "position": { "x": 6, @@ -4050,9 +4234,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574626865671642, "position": { "x": 4, @@ -4073,9 +4257,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7611940298507462, "position": { "x": 4, @@ -4096,10 +4280,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5068, - "time": 0.7761194029850746, + "noteOrder": 5070, + "time": 0.7761194029850745, "position": { "x": 4, "y": 0 @@ -4119,10 +4303,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.7798507462686567, + "noteOrder": 5094, + "time": 0.7798507462686566, "position": { "x": 4, "y": 0 @@ -4142,10 +4326,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5092, - "time": 0.7798507462686567, + "noteOrder": 5094, + "time": 0.7798507462686566, "position": { "x": 6, "y": 0 @@ -4165,9 +4349,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5117, + "noteOrder": 5119, "time": 0.7835820895522388, "position": { "x": 6, @@ -4188,9 +4372,9 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5117, + "noteOrder": 5119, "time": 0.7835820895522388, "position": { "x": 4, @@ -4211,9 +4395,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.7873134328358209, "position": { "x": 4, @@ -4234,9 +4418,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.7873134328358209, "position": { "x": 6, @@ -4257,10 +4441,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5165, - "time": 0.791044776119403, + "noteOrder": 5167, + "time": 0.7910447761194029, "position": { "x": 6, "y": 0 @@ -4280,10 +4464,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5555, - "time": 0.8507462686567164, + "noteOrder": 5557, + "time": 0.8507462686567163, "position": { "x": 7, "y": 0 @@ -4301,11 +4485,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5582, + "time": 0.8544776119402984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5582, + "time": 0.8544776119402984, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5604, + "noteOrder": 5606, "time": 0.8582089552238806, "position": { "x": 7, @@ -4324,12 +4554,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5630, + "time": 0.8619402985074627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5630, + "time": 0.8619402985074627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5653, - "time": 0.8656716417910448, + "noteOrder": 5655, + "time": 0.8656716417910447, "position": { "x": 6, "y": 0 @@ -4349,9 +4625,9 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5677, + "noteOrder": 5679, "time": 0.8694029850746269, "position": { "x": 6, @@ -4372,9 +4648,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5677, + "noteOrder": 5679, "time": 0.8694029850746269, "position": { "x": 6, @@ -4395,9 +4671,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8731343283582089, "position": { "x": 6, @@ -4418,9 +4694,9 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5701, + "noteOrder": 5703, "time": 0.8731343283582089, "position": { "x": 6, @@ -4441,10 +4717,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5726, - "time": 0.8768656716417911, + "noteOrder": 5728, + "time": 0.876865671641791, "position": { "x": 6, "y": 0 @@ -4464,10 +4740,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5726, - "time": 0.8768656716417911, + "noteOrder": 5728, + "time": 0.876865671641791, "position": { "x": 6, "y": 0 @@ -4487,10 +4763,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5750, - "time": 0.8805970149253731, + "noteOrder": 5752, + "time": 0.880597014925373, "position": { "x": 6, "y": 0 @@ -4510,10 +4786,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5750, - "time": 0.8805970149253731, + "noteOrder": 5752, + "time": 0.880597014925373, "position": { "x": 7, "y": 0 @@ -4533,10 +4809,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5896, - "time": 0.9029850746268657, + "noteOrder": 5898, + "time": 0.9029850746268656, "position": { "x": 4, "y": 0 @@ -4556,9 +4832,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5945, + "noteOrder": 5947, "time": 0.9104477611940298, "position": { "x": 3, @@ -4577,12 +4853,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5972, + "time": 0.9141791044776119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5972, + "time": 0.9141791044776119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5996, + "time": 0.9179104477611939, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5994, - "time": 0.917910447761194, + "noteOrder": 6020, + "time": 0.9216417910447761, "position": { "x": 3, "y": 0 @@ -4600,12 +4945,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6020, + "time": 0.9216417910447761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6042, - "time": 0.9253731343283582, + "noteOrder": 6045, + "time": 0.9253731343283581, "position": { "x": 4, "y": 0 @@ -4625,10 +4993,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6067, - "time": 0.9291044776119404, + "noteOrder": 6069, + "time": 0.9291044776119403, "position": { "x": 4, "y": 0 @@ -4648,10 +5016,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6067, - "time": 0.9291044776119404, + "noteOrder": 6069, + "time": 0.9291044776119403, "position": { "x": 4, "y": 0 @@ -4671,9 +5039,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6091, + "noteOrder": 6093, "time": 0.9328358208955224, "position": { "x": 4, @@ -4694,9 +5062,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6091, + "noteOrder": 6093, "time": 0.9328358208955224, "position": { "x": 4, @@ -4717,9 +5085,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6116, + "noteOrder": 6118, "time": 0.9365671641791045, "position": { "x": 4, @@ -4740,9 +5108,9 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6116, + "noteOrder": 6118, "time": 0.9365671641791045, "position": { "x": 4, @@ -4763,10 +5131,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6140, - "time": 0.9402985074626866, + "noteOrder": 6142, + "time": 0.9402985074626865, "position": { "x": 4, "y": 0 @@ -4786,10 +5154,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6140, - "time": 0.9402985074626866, + "noteOrder": 6142, + "time": 0.9402985074626865, "position": { "x": 3, "y": 0 @@ -4809,10 +5177,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6286, - "time": 0.9626865671641791, + "noteOrder": 6288, + "time": 0.962686567164179, "position": { "x": 6, "y": 0 diff --git a/tracks/Oppress CHARLESTON EDITION/info.json b/tracks/Oppress CHARLESTON EDITION/info.json index c9b3f75f..25efdfa5 100644 --- a/tracks/Oppress CHARLESTON EDITION/info.json +++ b/tracks/Oppress CHARLESTON EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Oppress CHARLESTON EDITION", - "SongLength": "137.534694", + "SongLength": "127.582041", "SongAuthorName": "BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Orange Lullaby/275_difficulty_1a.json b/tracks/Orange Lullaby/275_difficulty_1a.json index e686f85d..d6dd9a2e 100644 --- a/tracks/Orange Lullaby/275_difficulty_1a.json +++ b/tracks/Orange Lullaby/275_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 168, - "time": 0.028717948717948718, + "time": 0.028717948717948714, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 264, - "time": 0.04512820512820513, + "time": 0.045128205128205125, "position": { "x": 5, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 289, "time": 0.04923076923076923, "position": { "x": 3, @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.05333333333333334, + "noteOrder": 313, + "time": 0.05333333333333333, "position": { "x": 7, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 336, - "time": 0.057435897435897436, + "noteOrder": 337, + "time": 0.05743589743589743, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 361, - "time": 0.06153846153846154, + "time": 0.061538461538461535, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 385, - "time": 0.06564102564102564, + "time": 0.06564102564102563, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 385, - "time": 0.06564102564102564, + "time": 0.06564102564102563, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 433, - "time": 0.07384615384615385, + "time": 0.07384615384615384, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 529, - "time": 0.09025641025641026, + "time": 0.09025641025641025, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 601, - "time": 0.10256410256410257, + "time": 0.10256410256410256, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 625, - "time": 0.10666666666666667, + "time": 0.10666666666666666, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 625, - "time": 0.10666666666666667, + "time": 0.10666666666666666, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 649, - "time": 0.11076923076923077, + "time": 0.11076923076923076, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 649, - "time": 0.11076923076923077, + "time": 0.11076923076923076, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 673, - "time": 0.11487179487179487, + "time": 0.11487179487179486, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 697, - "time": 0.11897435897435898, + "time": 0.11897435897435896, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 721, - "time": 0.12307692307692308, + "time": 0.12307692307692307, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 769, - "time": 0.13128205128205128, + "time": 0.13128205128205125, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1435897435897436, + "noteOrder": 842, + "time": 0.14358974358974358, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1435897435897436, + "noteOrder": 842, + "time": 0.14358974358974358, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1517948717948718, + "noteOrder": 890, + "time": 0.15179487179487178, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.1558974358974359, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 937, - "time": 0.16, + "noteOrder": 938, + "time": 0.15999999999999998, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.1682051282051282, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.1723076923076923, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.17641025641025643, + "noteOrder": 1034, + "time": 0.1764102564102564, "position": { "x": 6, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1082, - "time": 0.18461538461538463, + "time": 0.1846153846153846, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1130, - "time": 0.19282051282051282, + "time": 0.1928205128205128, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1202, - "time": 0.20512820512820515, + "time": 0.20512820512820512, "position": { "x": 6, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1202, - "time": 0.20512820512820515, + "time": 0.20512820512820512, "position": { "x": 4, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1226, - "time": 0.20923076923076925, + "time": 0.20923076923076922, "position": { "x": 7, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1226, - "time": 0.20923076923076925, + "time": 0.20923076923076922, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.24205128205128207, + "noteOrder": 1419, + "time": 0.24205128205128204, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.24615384615384617, + "noteOrder": 1443, + "time": 0.24615384615384614, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1454, - "time": 0.24820512820512822, + "noteOrder": 1455, + "time": 0.2482051282051282, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.25025641025641027, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1478, + "noteOrder": 1479, "time": 0.2523076923076923, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.25435897435897437, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1502, + "noteOrder": 1503, "time": 0.2564102564102564, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.25846153846153846, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1526, + "noteOrder": 1527, "time": 0.2605128205128205, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27076923076923076, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.27487179487179486, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.2830769230769231, + "noteOrder": 1659, + "time": 0.28307692307692306, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.2912820512820513, + "noteOrder": 1707, + "time": 0.29128205128205126, "position": { "x": 7, "y": 0 @@ -1274,7 +1274,7 @@ }, { "noteOrder": 1755, - "time": 0.2994871794871795, + "time": 0.29948717948717946, "position": { "x": 6, "y": 0 @@ -1294,7 +1294,7 @@ }, { "noteOrder": 1779, - "time": 0.3035897435897436, + "time": 0.30358974358974355, "position": { "x": 8, "y": 0 @@ -1334,7 +1334,7 @@ }, { "noteOrder": 1851, - "time": 0.3158974358974359, + "time": 0.31589743589743585, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.34871794871794876, "position": { "x": 8, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.35692307692307695, + "noteOrder": 2092, + "time": 0.3569230769230769, "position": { "x": 2, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.37333333333333335, + "noteOrder": 2188, + "time": 0.3733333333333333, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.37743589743589745, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2223, - "time": 0.3794871794871795, + "noteOrder": 2224, + "time": 0.37948717948717947, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.38974358974358975, + "noteOrder": 2284, + "time": 0.3897435897435897, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.39384615384615385, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.39794871794871794, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.40205128205128204, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.40205128205128204, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.40615384615384614, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.40615384615384614, "position": { "x": 3, @@ -1614,7 +1614,7 @@ }, { "noteOrder": 2476, - "time": 0.4225641025641026, + "time": 0.42256410256410254, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.4307692307692308, + "noteOrder": 2525, + "time": 0.43076923076923074, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.438974358974359, + "noteOrder": 2573, + "time": 0.43897435897435894, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.4553846153846154, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.4594871794871795, + "noteOrder": 2693, + "time": 0.45948717948717943, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2717, "time": 0.4635897435897436, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2741, "time": 0.4676923076923077, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.47179487179487184, + "noteOrder": 2765, + "time": 0.4717948717948718, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.48000000000000004, + "noteOrder": 2813, + "time": 0.48, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.48820512820512824, + "noteOrder": 2861, + "time": 0.4882051282051282, "position": { "x": 2, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.49641025641025643, + "noteOrder": 2909, + "time": 0.4964102564102564, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.5005128205128205, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2957, "time": 0.5046153846153846, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3005, "time": 0.5128205128205128, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3054, "time": 0.521025641025641, "position": { "x": 8, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.5251282051282051, + "noteOrder": 3078, + "time": 0.525128205128205, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.5251282051282051, + "noteOrder": 3078, + "time": 0.525128205128205, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5538461538461539, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3270, "time": 0.5579487179487179, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.5620512820512821, + "noteOrder": 3294, + "time": 0.562051282051282, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5661538461538462, + "noteOrder": 3318, + "time": 0.5661538461538461, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5661538461538462, + "noteOrder": 3318, + "time": 0.5661538461538461, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.5702564102564103, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.5702564102564103, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3438, "time": 0.5866666666666667, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.5907692307692308, + "noteOrder": 3462, + "time": 0.5907692307692307, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3485, - "time": 0.5948717948717949, + "noteOrder": 3486, + "time": 0.5948717948717948, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.598974358974359, + "noteOrder": 3510, + "time": 0.5989743589743589, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.598974358974359, + "noteOrder": 3510, + "time": 0.5989743589743589, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.6030769230769231, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.6030769230769231, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.6235897435897436, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3667, "time": 0.6256410256410256, "position": { "x": 6, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.6276923076923078, + "noteOrder": 3679, + "time": 0.6276923076923077, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3689, - "time": 0.6297435897435898, + "noteOrder": 3691, + "time": 0.6297435897435897, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3701, - "time": 0.6317948717948718, + "noteOrder": 3703, + "time": 0.6317948717948717, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3713, - "time": 0.6338461538461538, + "noteOrder": 3715, + "time": 0.6338461538461537, "position": { "x": 6, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3725, - "time": 0.635897435897436, + "noteOrder": 3727, + "time": 0.6358974358974359, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3737, - "time": 0.637948717948718, + "noteOrder": 3739, + "time": 0.6379487179487179, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3845, + "noteOrder": 3847, "time": 0.6564102564102564, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3871, "time": 0.6605128205128206, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4062, + "noteOrder": 4063, "time": 0.6933333333333334, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4087, "time": 0.6974358974358975, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4110, - "time": 0.7015384615384616, + "noteOrder": 4111, + "time": 0.7015384615384614, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4256, "time": 0.7261538461538461, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4280, "time": 0.7302564102564103, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.7343589743589743, + "noteOrder": 4304, + "time": 0.7343589743589742, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4518, - "time": 0.7712820512820513, + "noteOrder": 4520, + "time": 0.7712820512820512, "position": { "x": 3, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4530, - "time": 0.7733333333333333, + "noteOrder": 4532, + "time": 0.7733333333333332, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4616, "time": 0.7876923076923077, "position": { "x": 7, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4627, - "time": 0.7897435897435898, + "noteOrder": 4628, + "time": 0.7897435897435897, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4688, "time": 0.8, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.8246153846153846, + "noteOrder": 4833, + "time": 0.8246153846153845, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.8287179487179488, + "noteOrder": 4857, + "time": 0.8287179487179487, "position": { "x": 2, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.8328205128205128, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.8574358974358974, "position": { "x": 6, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.8615384615384616, + "noteOrder": 5049, + "time": 0.8615384615384615, "position": { "x": 8, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5071, + "noteOrder": 5073, "time": 0.8656410256410256, "position": { "x": 3, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5121, "time": 0.8738461538461538, "position": { "x": 4, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5167, - "time": 0.8820512820512821, + "noteOrder": 5169, + "time": 0.8820512820512819, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5215, - "time": 0.8902564102564103, + "noteOrder": 5217, + "time": 0.8902564102564102, "position": { "x": 5, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5264, - "time": 0.8984615384615385, + "noteOrder": 5266, + "time": 0.8984615384615384, "position": { "x": 5, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9025641025641026, "position": { "x": 7, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5300, + "noteOrder": 5302, "time": 0.9046153846153846, "position": { "x": 5, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.918974358974359, + "noteOrder": 5386, + "time": 0.9189743589743589, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5396, - "time": 0.9210256410256411, + "noteOrder": 5398, + "time": 0.921025641025641, "position": { "x": 5, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5456, - "time": 0.9312820512820513, + "noteOrder": 5458, + "time": 0.9312820512820512, "position": { "x": 7, "y": 0 @@ -2956,10 +2956,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.01641025641025641, + "time": 0.016410256410256407, "position": { "x": 7, "y": 0 @@ -2979,7 +2979,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.020512820512820513, @@ -3002,10 +3002,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 168, - "time": 0.028717948717948718, + "time": 0.028717948717948714, "position": { "x": 6, "y": 0 @@ -3025,10 +3025,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03282051282051282, + "time": 0.032820512820512814, "position": { "x": 3, "y": 0 @@ -3048,10 +3048,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 216, - "time": 0.036923076923076927, + "time": 0.03692307692307692, "position": { "x": 4, "y": 0 @@ -3071,10 +3071,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 264, - "time": 0.04512820512820513, + "time": 0.045128205128205125, "position": { "x": 4, "y": 0 @@ -3094,7 +3094,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.06974358974358974, @@ -3117,10 +3117,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, - "time": 0.07384615384615385, + "time": 0.07384615384615384, "position": { "x": 7, "y": 0 @@ -3140,10 +3140,10 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 445, - "time": 0.0758974358974359, + "time": 0.07589743589743589, "position": { "x": 7, "y": 0 @@ -3163,7 +3163,7 @@ }, { "lineGroupId": 13, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 457, "time": 0.07794871794871795, @@ -3186,10 +3186,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.1476923076923077, + "noteOrder": 866, + "time": 0.14769230769230768, "position": { "x": 3, "y": 0 @@ -3209,9 +3209,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.1641025641025641, "position": { "x": 3, @@ -3232,9 +3232,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.1641025641025641, "position": { "x": 7, @@ -3255,10 +3255,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, - "time": 0.18051282051282053, + "time": 0.1805128205128205, "position": { "x": 7, "y": 0 @@ -3278,10 +3278,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.18051282051282053, + "time": 0.1805128205128205, "position": { "x": 3, "y": 0 @@ -3301,10 +3301,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1082, - "time": 0.18461538461538463, + "time": 0.1846153846153846, "position": { "x": 3, "y": 0 @@ -3324,7 +3324,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1106, "time": 0.18871794871794872, @@ -3347,10 +3347,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1130, - "time": 0.19282051282051282, + "time": 0.1928205128205128, "position": { "x": 7, "y": 0 @@ -3370,10 +3370,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.21333333333333335, + "time": 0.21333333333333332, "position": { "x": 7, "y": 0 @@ -3393,7 +3393,7 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1274, "time": 0.21743589743589745, @@ -3416,10 +3416,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1298, - "time": 0.22153846153846155, + "time": 0.22153846153846152, "position": { "x": 3, "y": 0 @@ -3439,7 +3439,7 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1322, "time": 0.22564102564102564, @@ -3462,10 +3462,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, - "time": 0.22974358974358974, + "time": 0.22974358974358972, "position": { "x": 7, "y": 0 @@ -3485,7 +3485,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1358, "time": 0.2317948717948718, @@ -3508,7 +3508,7 @@ }, { "lineGroupId": 59, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1370, "time": 0.23384615384615384, @@ -3531,10 +3531,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, - "time": 0.23794871794871797, + "noteOrder": 1395, + "time": 0.2379487179487179, "position": { "x": 3, "y": 0 @@ -3554,10 +3554,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1406, - "time": 0.24000000000000002, + "noteOrder": 1407, + "time": 0.24, "position": { "x": 4, "y": 0 @@ -3577,10 +3577,10 @@ }, { "lineGroupId": 61, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1418, - "time": 0.24205128205128207, + "noteOrder": 1419, + "time": 0.24205128205128204, "position": { "x": 4, "y": 0 @@ -3600,10 +3600,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, - "time": 0.26256410256410256, + "noteOrder": 1539, + "time": 0.2625641025641025, "position": { "x": 7, "y": 0 @@ -3623,9 +3623,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.26666666666666666, "position": { "x": 6, @@ -3646,9 +3646,9 @@ }, { "lineGroupId": 71, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.27487179487179486, "position": { "x": 6, @@ -3669,9 +3669,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.27897435897435896, "position": { "x": 7, @@ -3691,11 +3691,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, - "time": 0.2871794871794872, + "noteOrder": 1647, + "time": 0.281025641025641, "position": { "x": 7, "y": 0 @@ -3709,18 +3709,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1730, - "time": 0.2953846153846154, + "noteOrder": 1647, + "time": 0.281025641025641, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3737,13 +3737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1755, - "time": 0.2994871794871795, + "noteOrder": 1659, + "time": 0.28307692307692306, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3760,13 +3760,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 2, + "lineGroupId": 74, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1827, - "time": 0.3117948717948718, + "noteOrder": 1659, + "time": 0.28307692307692306, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3783,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3117948717948718, + "noteOrder": 1683, + "time": 0.28717948717948716, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3806,13 +3806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.32, + "noteOrder": 1695, + "time": 0.28923076923076924, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3824,18 +3824,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1923, - "time": 0.3282051282051282, + "noteOrder": 1695, + "time": 0.28923076923076924, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3852,13 +3852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1947, - "time": 0.3323076923076923, + "noteOrder": 1707, + "time": 0.29128205128205126, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3870,18 +3870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 2, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1971, - "time": 0.3364102564102564, + "noteOrder": 1707, + "time": 0.29128205128205126, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3893,18 +3893,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 3, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1995, - "time": 0.3405128205128205, + "noteOrder": 1731, + "time": 0.29538461538461536, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3921,13 +3921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.3364102564102564, + "noteOrder": 1755, + "time": 0.29948717948717946, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3939,18 +3939,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1995, - "time": 0.3405128205128205, + "noteOrder": 1827, + "time": 0.3117948717948718, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3962,18 +3962,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, - "time": 0.3446153846153846, + "noteOrder": 1827, + "time": 0.3117948717948718, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3985,18 +3985,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2043, - "time": 0.34871794871794876, + "noteOrder": 1839, + "time": 0.31384615384615383, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4008,18 +4008,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2067, - "time": 0.35282051282051285, + "noteOrder": 1839, + "time": 0.31384615384615383, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4036,13 +4036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2091, - "time": 0.35692307692307695, + "noteOrder": 1851, + "time": 0.31589743589743585, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4059,13 +4059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2115, - "time": 0.36102564102564105, + "noteOrder": 1851, + "time": 0.31589743589743585, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4077,16 +4077,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2139, - "time": 0.36512820512820515, + "noteOrder": 1875, + "time": 0.31999999999999995, "position": { "x": 3, "y": 0 @@ -4100,18 +4100,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.36923076923076925, + "noteOrder": 1887, + "time": 0.32205128205128203, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4128,13 +4128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2235, - "time": 0.38153846153846155, + "noteOrder": 1887, + "time": 0.32205128205128203, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4151,13 +4151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2259, - "time": 0.38564102564102565, + "noteOrder": 1899, + "time": 0.3241025641025641, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4169,16 +4169,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2403, - "time": 0.4102564102564103, + "noteOrder": 1899, + "time": 0.3241025641025641, "position": { "x": 5, "y": 0 @@ -4197,13 +4197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2427, - "time": 0.4143589743589744, + "noteOrder": 1923, + "time": 0.3282051282051282, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4215,18 +4215,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2427, - "time": 0.4143589743589744, + "noteOrder": 1936, + "time": 0.3302564102564103, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4243,13 +4243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2451, - "time": 0.4184615384615385, + "noteOrder": 1936, + "time": 0.3302564102564103, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4266,13 +4266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2451, - "time": 0.4184615384615385, + "noteOrder": 1948, + "time": 0.33230769230769225, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4284,16 +4284,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2476, - "time": 0.4225641025641026, + "noteOrder": 1948, + "time": 0.33230769230769225, "position": { "x": 5, "y": 0 @@ -4307,18 +4307,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.4266666666666667, + "noteOrder": 1948, + "time": 0.33230769230769225, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4335,13 +4335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2512, - "time": 0.4287179487179487, + "noteOrder": 1960, + "time": 0.3343589743589743, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4358,13 +4358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2524, - "time": 0.4307692307692308, + "noteOrder": 1960, + "time": 0.3343589743589743, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4381,13 +4381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2548, - "time": 0.4348717948717949, + "noteOrder": 1972, + "time": 0.3364102564102564, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4399,16 +4399,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2560, - "time": 0.4369230769230769, + "noteOrder": 1996, + "time": 0.3405128205128205, "position": { "x": 4, "y": 0 @@ -4422,18 +4422,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2572, - "time": 0.438974358974359, + "noteOrder": 1972, + "time": 0.3364102564102564, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4450,11 +4450,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.4430769230769231, + "noteOrder": 1996, + "time": 0.3405128205128205, "position": { "x": 5, "y": 0 @@ -4468,18 +4468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.4471794871794872, + "noteOrder": 2020, + "time": 0.3446153846153846, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4496,13 +4496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.4471794871794872, + "noteOrder": 2044, + "time": 0.34871794871794876, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4514,18 +4514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 2644, - "time": 0.4512820512820513, + "noteOrder": 2068, + "time": 0.3528205128205128, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4542,13 +4542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2644, - "time": 0.4512820512820513, + "noteOrder": 2092, + "time": 0.3569230769230769, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4560,18 +4560,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 2668, - "time": 0.4553846153846154, + "noteOrder": 2116, + "time": 0.361025641025641, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4588,11 +4588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2788, - "time": 0.47589743589743594, + "noteOrder": 2128, + "time": 0.3630769230769231, "position": { "x": 7, "y": 0 @@ -4611,13 +4611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.48000000000000004, + "noteOrder": 2128, + "time": 0.3630769230769231, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4634,11 +4634,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2836, - "time": 0.48410256410256414, + "noteOrder": 2140, + "time": 0.36512820512820515, "position": { "x": 3, "y": 0 @@ -4657,11 +4657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2860, - "time": 0.48820512820512824, + "noteOrder": 2152, + "time": 0.3671794871794871, "position": { "x": 3, "y": 0 @@ -4680,11 +4680,34 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3671794871794871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.49230769230769234, + "noteOrder": 2164, + "time": 0.3692307692307692, "position": { "x": 7, "y": 0 @@ -4703,11 +4726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.5087179487179487, + "noteOrder": 2176, + "time": 0.3712820512820513, "position": { "x": 7, "y": 0 @@ -4726,13 +4749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2980, - "time": 0.5087179487179487, + "noteOrder": 2176, + "time": 0.3712820512820513, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4744,18 +4767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3004, - "time": 0.5128205128205128, + "noteOrder": 2188, + "time": 0.3733333333333333, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4767,16 +4790,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3028, - "time": 0.5169230769230769, + "noteOrder": 2188, + "time": 0.3733333333333333, "position": { "x": 7, "y": 0 @@ -4795,11 +4818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3052, - "time": 0.521025641025641, + "noteOrder": 2236, + "time": 0.38153846153846155, "position": { "x": 7, "y": 0 @@ -4818,11 +4841,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3100, - "time": 0.5292307692307693, + "noteOrder": 2248, + "time": 0.38358974358974357, "position": { "x": 7, "y": 0 @@ -4836,18 +4859,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3112, - "time": 0.5312820512820513, + "noteOrder": 2248, + "time": 0.38358974358974357, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4859,16 +4882,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 2, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3136, - "time": 0.5353846153846155, + "noteOrder": 2260, + "time": 0.3856410256410256, "position": { "x": 3, "y": 0 @@ -4887,11 +4910,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 3, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, - "time": 0.5374358974358975, + "noteOrder": 2272, + "time": 0.38769230769230767, "position": { "x": 3, "y": 0 @@ -4910,13 +4933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3100, - "time": 0.5292307692307693, + "noteOrder": 2272, + "time": 0.38769230769230767, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4928,18 +4951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 3112, - "time": 0.5312820512820513, + "noteOrder": 2404, + "time": 0.41025641025641024, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4956,13 +4979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 108, "indexInLine": 2, "isSliding": false, - "noteOrder": 3136, - "time": 0.5353846153846155, + "noteOrder": 2428, + "time": 0.41435897435897434, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4979,13 +5002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 3, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3148, - "time": 0.5374358974358975, + "noteOrder": 2428, + "time": 0.41435897435897434, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4997,18 +5020,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.5415384615384615, + "noteOrder": 2452, + "time": 0.41846153846153844, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5020,18 +5043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 3197, - "time": 0.5456410256410257, + "noteOrder": 2452, + "time": 0.41846153846153844, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5048,11 +5071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3197, - "time": 0.5456410256410257, + "noteOrder": 2476, + "time": 0.42256410256410254, "position": { "x": 5, "y": 0 @@ -5066,18 +5089,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, - "time": 0.5497435897435897, + "noteOrder": 2501, + "time": 0.42666666666666664, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5089,18 +5112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, - "time": 0.5497435897435897, + "noteOrder": 2513, + "time": 0.4287179487179487, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5117,13 +5140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3245, - "time": 0.5538461538461539, + "noteOrder": 2525, + "time": 0.43076923076923074, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5140,11 +5163,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.5743589743589744, + "noteOrder": 2549, + "time": 0.4348717948717949, "position": { "x": 3, "y": 0 @@ -5163,11 +5186,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3389, - "time": 0.5784615384615385, + "noteOrder": 2561, + "time": 0.4369230769230769, "position": { "x": 4, "y": 0 @@ -5186,13 +5209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3389, - "time": 0.5784615384615385, + "noteOrder": 2573, + "time": 0.43897435897435894, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5204,18 +5227,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 3413, - "time": 0.5825641025641026, + "noteOrder": 2597, + "time": 0.44307692307692303, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5232,13 +5255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3413, - "time": 0.5825641025641026, + "noteOrder": 2621, + "time": 0.44717948717948713, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5250,18 +5273,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 3437, - "time": 0.5866666666666667, + "noteOrder": 2621, + "time": 0.44717948717948713, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5278,13 +5301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3557, - "time": 0.6071794871794872, + "noteOrder": 2645, + "time": 0.4512820512820513, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5301,13 +5324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3581, - "time": 0.6112820512820513, + "noteOrder": 2645, + "time": 0.4512820512820513, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5324,13 +5347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3605, - "time": 0.6153846153846154, + "noteOrder": 2669, + "time": 0.4553846153846154, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5342,16 +5365,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3629, - "time": 0.6194871794871795, + "noteOrder": 2789, + "time": 0.4758974358974358, "position": { "x": 7, "y": 0 @@ -5370,13 +5393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.64, + "noteOrder": 2813, + "time": 0.48, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5388,18 +5411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 126, "indexInLine": 1, "isSliding": false, - "noteOrder": 3773, - "time": 0.6441025641025642, + "noteOrder": 2837, + "time": 0.4841025641025641, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5416,13 +5439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 126, "indexInLine": 2, "isSliding": false, - "noteOrder": 3797, - "time": 0.6482051282051282, + "noteOrder": 2861, + "time": 0.4882051282051282, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5439,11 +5462,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3797, - "time": 0.6482051282051282, + "noteOrder": 2885, + "time": 0.4923076923076923, "position": { "x": 7, "y": 0 @@ -5462,13 +5485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3821, - "time": 0.6523076923076924, + "noteOrder": 2981, + "time": 0.5087179487179487, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5485,13 +5508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 2, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3845, - "time": 0.6564102564102564, + "noteOrder": 2981, + "time": 0.5087179487179487, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5503,18 +5526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3894, - "time": 0.6646153846153846, + "noteOrder": 3005, + "time": 0.5128205128205128, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5531,13 +5554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 3918, - "time": 0.6687179487179488, + "noteOrder": 3029, + "time": 0.5169230769230769, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5549,18 +5572,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3894, - "time": 0.6646153846153846, + "noteOrder": 3054, + "time": 0.521025641025641, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5577,13 +5600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 3918, - "time": 0.6687179487179488, + "noteOrder": 3102, + "time": 0.5292307692307692, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5595,16 +5618,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.6728205128205128, + "noteOrder": 3114, + "time": 0.5312820512820512, "position": { "x": 7, "y": 0 @@ -5618,18 +5641,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3966, - "time": 0.676923076923077, + "noteOrder": 3138, + "time": 0.5353846153846153, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5646,13 +5669,36 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3990, - "time": 0.681025641025641, + "noteOrder": 3150, + "time": 0.5374358974358974, "position": { - "x": 7, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5292307692307692, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -5669,11 +5715,34 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4014, - "time": 0.6851282051282052, + "noteOrder": 3114, + "time": 0.5312820512820512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5353846153846153, "position": { "x": 7, "y": 0 @@ -5687,16 +5756,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4038, - "time": 0.6892307692307692, + "noteOrder": 3150, + "time": 0.5374358974358974, "position": { "x": 7, "y": 0 @@ -5715,11 +5784,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 4062, - "time": 0.6933333333333334, + "noteOrder": 3174, + "time": 0.5415384615384615, "position": { "x": 7, "y": 0 @@ -5738,13 +5807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 140, "indexInLine": 2, "isSliding": false, - "noteOrder": 4134, - "time": 0.7056410256410257, + "noteOrder": 3198, + "time": 0.5456410256410257, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5761,13 +5830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.7056410256410257, + "noteOrder": 3198, + "time": 0.5456410256410257, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5784,11 +5853,34 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4158, - "time": 0.7097435897435898, + "noteOrder": 3222, + "time": 0.5497435897435897, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3222, + "time": 0.5497435897435897, "position": { "x": 3, "y": 0 @@ -5807,11 +5899,34 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5538461538461539, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4182, - "time": 0.7138461538461539, + "noteOrder": 3366, + "time": 0.5743589743589743, "position": { "x": 3, "y": 0 @@ -5830,13 +5945,36 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.717948717948718, + "noteOrder": 3390, + "time": 0.5784615384615385, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3390, + "time": 0.5784615384615385, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5853,13 +5991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, - "time": 0.7220512820512821, + "noteOrder": 3414, + "time": 0.5825641025641025, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5871,18 +6009,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 4254, - "time": 0.7261538461538461, + "noteOrder": 3414, + "time": 0.5825641025641025, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5899,11 +6037,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 152, "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, - "time": 0.7384615384615385, + "noteOrder": 3438, + "time": 0.5866666666666667, "position": { "x": 6, "y": 0 @@ -5917,16 +6055,3167 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.6071794871794871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.6092307692307692, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3570, + "time": 0.6092307692307692, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3582, + "time": 0.6112820512820513, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6133333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3595, + "time": 0.6133333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6153846153846154, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6174358974358974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6174358974358974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3631, + "time": 0.6194871794871795, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3643, + "time": 0.6215384615384616, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3643, + "time": 0.6215384615384616, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6399999999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6441025641025641, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6482051282051282, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6482051282051282, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3823, + "time": 0.6523076923076923, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6564102564102564, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6646153846153845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.6687179487179487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6646153846153845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.6687179487179487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.6728205128205128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3955, + "time": 0.6748717948717948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3955, + "time": 0.6748717948717948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6769230769230768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6769230769230768, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6769230769230768, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3979, + "time": 0.678974358974359, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3979, + "time": 0.678974358974359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4003, + "time": 0.683076923076923, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4003, + "time": 0.683076923076923, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6851282051282052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6851282051282052, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6851282051282052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4027, + "time": 0.6871794871794872, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4027, + "time": 0.6871794871794872, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.6933333333333334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4135, + "time": 0.7056410256410256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4135, + "time": 0.7056410256410256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4148, + "time": 0.7076923076923076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4148, + "time": 0.7076923076923076, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4160, + "time": 0.7097435897435896, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4160, + "time": 0.7097435897435896, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4160, + "time": 0.7097435897435896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4172, + "time": 0.7117948717948718, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4172, + "time": 0.7117948717948718, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7138461538461538, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7138461538461538, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7138461538461538, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4196, + "time": 0.7158974358974358, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4196, + "time": 0.7158974358974358, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4208, + "time": 0.717948717948718, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4208, + "time": 0.717948717948718, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4208, + "time": 0.717948717948718, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4220, + "time": 0.72, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4220, + "time": 0.72, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4232, + "time": 0.722051282051282, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4232, + "time": 0.722051282051282, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.722051282051282, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4256, + "time": 0.7261538461538461, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7384615384615384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7384615384615384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4340, + "time": 0.7405128205128204, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4340, + "time": 0.7405128205128204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4352, + "time": 0.7425641025641025, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4352, + "time": 0.7425641025641025, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4352, + "time": 0.7425641025641025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4364, + "time": 0.7446153846153846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4364, + "time": 0.7446153846153846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4376, + "time": 0.7466666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4400, + "time": 0.7507692307692307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4376, + "time": 0.7466666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4400, + "time": 0.7507692307692307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4424, + "time": 0.7548717948717949, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4436, + "time": 0.7569230769230769, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4436, + "time": 0.7569230769230769, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4448, + "time": 0.7589743589743589, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4448, + "time": 0.7589743589743589, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4448, + "time": 0.7589743589743589, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4460, + "time": 0.761025641025641, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4460, + "time": 0.761025641025641, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4472, + "time": 0.7630769230769231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4496, + "time": 0.7671794871794871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4472, + "time": 0.7630769230769231, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4496, + "time": 0.7671794871794871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7753846153846153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7774358974358974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7774358974358974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4568, + "time": 0.7794871794871794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7815384615384615, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7815384615384615, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7835897435897435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7856410256410256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7856410256410256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4640, + "time": 0.7917948717948717, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4652, + "time": 0.7938461538461539, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4652, + "time": 0.7938461538461539, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4664, + "time": 0.7958974358974359, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4676, + "time": 0.7979487179487179, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4676, + "time": 0.7979487179487179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4688, + "time": 0.8, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4688, + "time": 0.8, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.8041025641025641, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4725, + "time": 0.8061538461538461, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4725, + "time": 0.8061538461538461, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4737, + "time": 0.8082051282051281, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4737, + "time": 0.8082051282051281, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4737, + "time": 0.8082051282051281, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4749, + "time": 0.8102564102564102, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4749, + "time": 0.8102564102564102, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4773, + "time": 0.8143589743589743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4773, + "time": 0.8143589743589743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8164102564102563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8164102564102563, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8164102564102563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4797, + "time": 0.8184615384615384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4797, + "time": 0.8184615384615384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8205128205128205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8205128205128205, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8205128205128205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4833, + "time": 0.8246153846153845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4905, + "time": 0.8369230769230769, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4905, + "time": 0.8369230769230769, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4917, + "time": 0.838974358974359, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4917, + "time": 0.838974358974359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4929, + "time": 0.8410256410256409, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4929, + "time": 0.8410256410256409, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.7384615384615385, + "noteOrder": 4929, + "time": 0.8410256410256409, "position": { "x": 7, "y": 0 @@ -5940,16 +9229,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4350, - "time": 0.7425641025641025, + "noteOrder": 4941, + "time": 0.843076923076923, "position": { "x": 7, "y": 0 @@ -5968,11 +9257,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 2, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4374, - "time": 0.7466666666666667, + "noteOrder": 4941, + "time": 0.843076923076923, "position": { "x": 6, "y": 0 @@ -5991,11 +9280,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 3, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4398, - "time": 0.7507692307692307, + "noteOrder": 4953, + "time": 0.8451282051282051, "position": { "x": 6, "y": 0 @@ -6014,13 +9303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4374, - "time": 0.7466666666666667, + "noteOrder": 4953, + "time": 0.8451282051282051, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6032,18 +9321,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 4398, - "time": 0.7507692307692307, + "noteOrder": 4953, + "time": 0.8451282051282051, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6060,13 +9349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4422, - "time": 0.7548717948717949, + "noteOrder": 4965, + "time": 0.8471794871794871, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6078,18 +9367,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4446, - "time": 0.758974358974359, + "noteOrder": 4965, + "time": 0.8471794871794871, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6106,13 +9395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4470, - "time": 0.7630769230769231, + "noteOrder": 4977, + "time": 0.8492307692307691, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6129,13 +9418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 3, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4494, - "time": 0.7671794871794873, + "noteOrder": 4977, + "time": 0.8492307692307691, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6152,13 +9441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4470, - "time": 0.7630769230769231, + "noteOrder": 4977, + "time": 0.8492307692307691, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6175,13 +9464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4494, - "time": 0.7671794871794873, + "noteOrder": 4989, + "time": 0.8512820512820513, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6198,13 +9487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4542, - "time": 0.7753846153846154, + "noteOrder": 4989, + "time": 0.8512820512820513, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6216,18 +9505,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4567, - "time": 0.7794871794871795, + "noteOrder": 5001, + "time": 0.8533333333333333, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6244,13 +9533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4591, - "time": 0.7835897435897436, + "noteOrder": 5001, + "time": 0.8533333333333333, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6262,18 +9551,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4639, - "time": 0.7917948717948718, + "noteOrder": 5001, + "time": 0.8533333333333333, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6285,16 +9574,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4663, - "time": 0.7958974358974359, + "noteOrder": 5025, + "time": 0.8574358974358974, "position": { "x": 7, "y": 0 @@ -6313,13 +9602,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4711, - "time": 0.8041025641025641, + "noteOrder": 5097, + "time": 0.8697435897435898, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6331,16 +9620,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4735, - "time": 0.8082051282051282, + "noteOrder": 5097, + "time": 0.8697435897435898, "position": { "x": 3, "y": 0 @@ -6354,16 +9643,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4759, - "time": 0.8123076923076923, + "noteOrder": 5121, + "time": 0.8738461538461538, "position": { "x": 3, "y": 0 @@ -6382,13 +9671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4783, - "time": 0.8164102564102564, + "noteOrder": 5145, + "time": 0.8779487179487179, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6405,13 +9694,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4807, - "time": 0.8205128205128206, + "noteOrder": 5169, + "time": 0.8820512820512819, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6423,18 +9712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 233, "indexInLine": 1, "isSliding": false, - "noteOrder": 4831, - "time": 0.8246153846153846, + "noteOrder": 5193, + "time": 0.8861538461538461, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6451,13 +9740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 233, "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.836923076923077, + "noteOrder": 5217, + "time": 0.8902564102564102, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6474,13 +9763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4903, - "time": 0.836923076923077, + "noteOrder": 5242, + "time": 0.8943589743589743, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6497,13 +9786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.841025641025641, + "noteOrder": 5266, + "time": 0.8984615384615384, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6515,18 +9804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.8451282051282052, + "noteOrder": 5314, + "time": 0.9066666666666666, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6538,18 +9827,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, - "time": 0.8492307692307692, + "noteOrder": 5326, + "time": 0.9087179487179488, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6566,13 +9855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4999, - "time": 0.8533333333333334, + "noteOrder": 5326, + "time": 0.9087179487179488, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6584,16 +9873,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, + "lineGroupId": 242, "indexInLine": 1, "isSliding": false, - "noteOrder": 5023, - "time": 0.8574358974358974, + "noteOrder": 5338, + "time": 0.9107692307692308, "position": { "x": 7, "y": 0 @@ -6612,13 +9901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, + "lineGroupId": 242, "indexInLine": 2, "isSliding": false, - "noteOrder": 5095, - "time": 0.8697435897435898, + "noteOrder": 5350, + "time": 0.9128205128205127, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6635,13 +9924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5095, - "time": 0.8697435897435898, + "noteOrder": 5350, + "time": 0.9128205128205127, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6653,16 +9942,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 5119, - "time": 0.8738461538461538, + "noteOrder": 5362, + "time": 0.9148717948717948, "position": { "x": 3, "y": 0 @@ -6681,36 +9970,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5143, - "time": 0.877948717948718, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 231, - "indexInLine": 1, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5167, - "time": 0.8820512820512821, + "noteOrder": 5374, + "time": 0.9169230769230768, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6722,16 +9988,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5191, - "time": 0.8861538461538462, + "noteOrder": 5374, + "time": 0.9169230769230768, "position": { "x": 4, "y": 0 @@ -6750,13 +10016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 246, "indexInLine": 1, "isSliding": false, - "noteOrder": 5215, - "time": 0.8902564102564103, + "noteOrder": 5410, + "time": 0.923076923076923, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6768,18 +10034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5239, - "time": 0.8943589743589744, + "noteOrder": 5422, + "time": 0.925128205128205, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6796,11 +10062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 1, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5264, - "time": 0.8984615384615385, + "noteOrder": 5422, + "time": 0.925128205128205, "position": { "x": 6, "y": 0 @@ -6819,11 +10085,11 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5312, - "time": 0.9066666666666667, + "noteOrder": 5434, + "time": 0.9271794871794872, "position": { "x": 3, "y": 0 @@ -6842,13 +10108,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5336, - "time": 0.9107692307692308, + "noteOrder": 5446, + "time": 0.9292307692307692, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6860,18 +10126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5360, - "time": 0.9148717948717949, + "noteOrder": 5446, + "time": 0.9292307692307692, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6888,13 +10154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5408, - "time": 0.9230769230769231, + "noteOrder": 5458, + "time": 0.9312820512820512, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6906,16 +10172,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5432, - "time": 0.9271794871794872, + "noteOrder": 5458, + "time": 0.9312820512820512, "position": { "x": 3, "y": 0 diff --git a/tracks/Orange Lullaby/275_difficulty_1b.json b/tracks/Orange Lullaby/275_difficulty_1b.json index 29d083cc..fa563994 100644 --- a/tracks/Orange Lullaby/275_difficulty_1b.json +++ b/tracks/Orange Lullaby/275_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 168, - "time": 0.028717948717948718, + "time": 0.028717948717948714, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 264, - "time": 0.04512820512820513, + "time": 0.045128205128205125, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 385, - "time": 0.06564102564102564, + "time": 0.06564102564102563, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 433, - "time": 0.07384615384615385, + "time": 0.07384615384615384, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 433, - "time": 0.07384615384615385, + "time": 0.07384615384615384, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 529, - "time": 0.09025641025641026, + "time": 0.09025641025641025, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 625, - "time": 0.10666666666666667, + "time": 0.10666666666666666, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 673, - "time": 0.11487179487179487, + "time": 0.11487179487179486, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 697, - "time": 0.11897435897435898, + "time": 0.11897435897435896, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 721, - "time": 0.12307692307692308, + "time": 0.12307692307692307, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 769, - "time": 0.13128205128205128, + "time": 0.13128205128205125, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1435897435897436, + "noteOrder": 842, + "time": 0.14358974358974358, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.1435897435897436, + "noteOrder": 842, + "time": 0.14358974358974358, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.1476923076923077, + "noteOrder": 866, + "time": 0.14769230769230768, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1517948717948718, + "noteOrder": 890, + "time": 0.15179487179487178, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.1558974358974359, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 937, - "time": 0.16, + "noteOrder": 938, + "time": 0.15999999999999998, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.1641025641025641, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.1682051282051282, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.1723076923076923, "position": { "x": 3, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.17641025641025643, + "noteOrder": 1034, + "time": 0.1764102564102564, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1082, - "time": 0.18461538461538463, + "time": 0.1846153846153846, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1130, - "time": 0.19282051282051282, + "time": 0.1928205128205128, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1202, - "time": 0.20512820512820515, + "time": 0.20512820512820512, "position": { "x": 6, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1202, - "time": 0.20512820512820515, + "time": 0.20512820512820512, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1226, - "time": 0.20923076923076925, + "time": 0.20923076923076922, "position": { "x": 3, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1226, - "time": 0.20923076923076925, + "time": 0.20923076923076922, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.24205128205128207, + "noteOrder": 1419, + "time": 0.24205128205128204, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.24615384615384617, + "noteOrder": 1443, + "time": 0.24615384615384614, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.25025641025641027, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.25435897435897437, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.25846153846153846, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27076923076923076, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.27487179487179486, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1730, - "time": 0.2953846153846154, + "noteOrder": 1731, + "time": 0.29538461538461536, "position": { "x": 7, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1755, - "time": 0.2994871794871795, + "time": 0.29948717948717946, "position": { "x": 6, "y": 0 @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1779, - "time": 0.3035897435897436, + "time": 0.30358974358974355, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.3323076923076923, + "noteOrder": 1948, + "time": 0.33230769230769225, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.3364102564102564, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1995, + "noteOrder": 1996, "time": 0.3405128205128205, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.3446153846153846, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.34871794871794876, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.35282051282051285, + "noteOrder": 2068, + "time": 0.3528205128205128, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.35692307692307695, + "noteOrder": 2092, + "time": 0.3569230769230769, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.35692307692307695, + "noteOrder": 2092, + "time": 0.3569230769230769, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.36102564102564105, + "noteOrder": 2116, + "time": 0.361025641025641, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2140, "time": 0.36512820512820515, "position": { "x": 5, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.36923076923076925, + "noteOrder": 2164, + "time": 0.3692307692307692, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.37333333333333335, + "noteOrder": 2188, + "time": 0.3733333333333333, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.37333333333333335, + "noteOrder": 2188, + "time": 0.3733333333333333, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.38153846153846155, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.38974358974358975, + "noteOrder": 2284, + "time": 0.3897435897435897, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.39384615384615385, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.39794871794871794, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.40205128205128204, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.40615384615384614, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.4143589743589744, + "noteOrder": 2428, + "time": 0.41435897435897434, "position": { "x": 4, "y": 0 @@ -1474,7 +1474,7 @@ }, { "noteOrder": 2476, - "time": 0.4225641025641026, + "time": 0.42256410256410254, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.4307692307692308, + "noteOrder": 2525, + "time": 0.43076923076923074, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.438974358974359, + "noteOrder": 2573, + "time": 0.43897435897435894, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2596, - "time": 0.4430769230769231, + "noteOrder": 2597, + "time": 0.44307692307692303, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.4471794871794872, + "noteOrder": 2621, + "time": 0.44717948717948713, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.4512820512820513, "position": { "x": 5, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2669, "time": 0.4553846153846154, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.47589743589743594, + "noteOrder": 2789, + "time": 0.4758974358974358, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.48000000000000004, + "noteOrder": 2813, + "time": 0.48, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.48410256410256414, + "noteOrder": 2837, + "time": 0.4841025641025641, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.48820512820512824, + "noteOrder": 2861, + "time": 0.4882051282051282, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2980, + "noteOrder": 2981, "time": 0.5087179487179487, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3005, "time": 0.5128205128205128, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.5169230769230769, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3054, "time": 0.521025641025641, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3100, - "time": 0.5292307692307693, + "noteOrder": 3102, + "time": 0.5292307692307692, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.5374358974358975, + "noteOrder": 3150, + "time": 0.5374358974358974, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5415384615384615, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5456410256410257, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5497435897435897, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5538461538461539, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3270, "time": 0.5579487179487179, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.5620512820512821, + "noteOrder": 3294, + "time": 0.562051282051282, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5661538461538462, + "noteOrder": 3318, + "time": 0.5661538461538461, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5661538461538462, + "noteOrder": 3318, + "time": 0.5661538461538461, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.5702564102564103, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.5702564102564103, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5743589743589744, + "noteOrder": 3366, + "time": 0.5743589743589743, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3390, "time": 0.5784615384615385, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5825641025641026, + "noteOrder": 3414, + "time": 0.5825641025641025, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3437, + "noteOrder": 3438, "time": 0.5866666666666667, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.5907692307692308, + "noteOrder": 3462, + "time": 0.5907692307692307, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3485, - "time": 0.5948717948717949, + "noteOrder": 3486, + "time": 0.5948717948717948, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.598974358974359, + "noteOrder": 3510, + "time": 0.5989743589743589, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3509, - "time": 0.598974358974359, + "noteOrder": 3510, + "time": 0.5989743589743589, "position": { "x": 4, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.6030769230769231, "position": { "x": 7, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.6030769230769231, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3557, - "time": 0.6071794871794872, + "noteOrder": 3558, + "time": 0.6071794871794871, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3582, "time": 0.6112820512820513, "position": { "x": 5, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3607, "time": 0.6153846153846154, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3631, "time": 0.6194871794871795, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.6235897435897436, "position": { "x": 3, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.6276923076923078, + "noteOrder": 3679, + "time": 0.6276923076923077, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3701, - "time": 0.6317948717948718, + "noteOrder": 3703, + "time": 0.6317948717948717, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3725, - "time": 0.635897435897436, + "noteOrder": 3727, + "time": 0.6358974358974359, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3797, + "noteOrder": 3799, "time": 0.6482051282051282, "position": { "x": 6, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.6646153846153846, + "noteOrder": 3895, + "time": 0.6646153846153845, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4230, - "time": 0.7220512820512821, + "noteOrder": 4232, + "time": 0.722051282051282, "position": { "x": 6, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4256, "time": 0.7261538461538461, "position": { "x": 4, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4280, "time": 0.7302564102564103, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4302, - "time": 0.7343589743589743, + "noteOrder": 4304, + "time": 0.7343589743589742, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.7384615384615385, + "noteOrder": 4328, + "time": 0.7384615384615384, "position": { "x": 7, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.7425641025641025, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4374, - "time": 0.7466666666666667, + "noteOrder": 4376, + "time": 0.7466666666666666, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4400, "time": 0.7507692307692307, "position": { "x": 3, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4424, "time": 0.7548717948717949, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4446, - "time": 0.758974358974359, + "noteOrder": 4448, + "time": 0.7589743589743589, "position": { "x": 4, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4472, "time": 0.7630769230769231, "position": { "x": 6, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.7671794871794873, + "noteOrder": 4496, + "time": 0.7671794871794871, "position": { "x": 7, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.7753846153846154, + "noteOrder": 4544, + "time": 0.7753846153846153, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.7835897435897436, + "noteOrder": 4592, + "time": 0.7835897435897435, "position": { "x": 4, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4615, + "noteOrder": 4616, "time": 0.7876923076923077, "position": { "x": 7, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4639, - "time": 0.7917948717948718, + "noteOrder": 4640, + "time": 0.7917948717948717, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4664, "time": 0.7958974358974359, "position": { "x": 6, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4664, "time": 0.7958974358974359, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4688, "time": 0.8, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4688, "time": 0.8, "position": { "x": 3, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4807, - "time": 0.8205128205128206, + "noteOrder": 4809, + "time": 0.8205128205128205, "position": { "x": 3, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.8246153846153846, + "noteOrder": 4833, + "time": 0.8246153846153845, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.8287179487179488, + "noteOrder": 4857, + "time": 0.8287179487179487, "position": { "x": 3, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.8328205128205128, "position": { "x": 7, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.8533333333333334, + "noteOrder": 5001, + "time": 0.8533333333333333, "position": { "x": 7, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.8574358974358974, "position": { "x": 5, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5047, - "time": 0.8615384615384616, + "noteOrder": 5049, + "time": 0.8615384615384615, "position": { "x": 7, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5071, + "noteOrder": 5073, "time": 0.8656410256410256, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5312, - "time": 0.9066666666666667, + "noteOrder": 5314, + "time": 0.9066666666666666, "position": { "x": 4, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5360, - "time": 0.9148717948717949, + "noteOrder": 5362, + "time": 0.9148717948717948, "position": { "x": 6, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5384, - "time": 0.918974358974359, + "noteOrder": 5386, + "time": 0.9189743589743589, "position": { "x": 3, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9230769230769231, + "noteOrder": 5410, + "time": 0.923076923076923, "position": { "x": 7, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.9271794871794872, "position": { "x": 6, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5434, "time": 0.9271794871794872, "position": { "x": 4, @@ -3096,10 +3096,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.01641025641025641, + "time": 0.016410256410256407, "position": { "x": 7, "y": 0 @@ -3119,10 +3119,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.028717948717948718, + "time": 0.028717948717948714, "position": { "x": 7, "y": 0 @@ -3142,10 +3142,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03282051282051282, + "time": 0.032820512820512814, "position": { "x": 3, "y": 0 @@ -3165,10 +3165,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 264, - "time": 0.04512820512820513, + "time": 0.045128205128205125, "position": { "x": 3, "y": 0 @@ -3188,9 +3188,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, + "noteOrder": 289, "time": 0.04923076923076923, "position": { "x": 7, @@ -3211,10 +3211,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 312, - "time": 0.05333333333333334, + "noteOrder": 313, + "time": 0.05333333333333333, "position": { "x": 7, "y": 0 @@ -3234,10 +3234,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, - "time": 0.057435897435897436, + "noteOrder": 337, + "time": 0.05743589743589743, "position": { "x": 3, "y": 0 @@ -3257,10 +3257,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, - "time": 0.06153846153846154, + "time": 0.061538461538461535, "position": { "x": 3, "y": 0 @@ -3280,7 +3280,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.08205128205128205, @@ -3303,10 +3303,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, - "time": 0.09025641025641026, + "time": 0.09025641025641025, "position": { "x": 3, "y": 0 @@ -3326,7 +3326,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.09846153846153846, @@ -3349,10 +3349,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.10666666666666667, + "time": 0.10666666666666666, "position": { "x": 7, "y": 0 @@ -3372,10 +3372,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.18051282051282053, + "time": 0.1805128205128205, "position": { "x": 7, "y": 0 @@ -3395,10 +3395,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1082, - "time": 0.18461538461538463, + "time": 0.1846153846153846, "position": { "x": 7, "y": 0 @@ -3418,7 +3418,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1106, "time": 0.18871794871794872, @@ -3441,10 +3441,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1130, - "time": 0.19282051282051282, + "time": 0.1928205128205128, "position": { "x": 3, "y": 0 @@ -3464,10 +3464,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.21333333333333335, + "time": 0.21333333333333332, "position": { "x": 3, "y": 0 @@ -3487,7 +3487,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1322, "time": 0.22564102564102564, @@ -3510,10 +3510,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, - "time": 0.22974358974358974, + "time": 0.22974358974358972, "position": { "x": 7, "y": 0 @@ -3533,10 +3533,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1418, - "time": 0.24205128205128207, + "noteOrder": 1419, + "time": 0.24205128205128204, "position": { "x": 7, "y": 0 @@ -3556,10 +3556,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, - "time": 0.26256410256410256, + "noteOrder": 1539, + "time": 0.2625641025641025, "position": { "x": 3, "y": 0 @@ -3579,9 +3579,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.27487179487179486, "position": { "x": 3, @@ -3602,9 +3602,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, + "noteOrder": 1635, "time": 0.27897435897435896, "position": { "x": 7, @@ -3624,11 +3624,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1682, - "time": 0.2871794871794872, + "noteOrder": 1659, + "time": 0.28307692307692306, "position": { "x": 7, "y": 0 @@ -3642,18 +3642,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.3117948717948718, + "noteOrder": 1659, + "time": 0.28307692307692306, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3665,18 +3665,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1875, - "time": 0.32, + "noteOrder": 1683, + "time": 0.28717948717948716, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3693,13 +3693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2211, - "time": 0.37743589743589745, + "noteOrder": 1683, + "time": 0.28717948717948716, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3716,11 +3716,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 2235, - "time": 0.38153846153846155, + "noteOrder": 1683, + "time": 0.28717948717948716, "position": { "x": 7, "y": 0 @@ -3734,18 +3734,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.38564102564102565, + "noteOrder": 1707, + "time": 0.29128205128205126, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3762,13 +3762,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2283, - "time": 0.38974358974358975, + "noteOrder": 1707, + "time": 0.29128205128205126, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3785,11 +3785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2403, - "time": 0.4102564102564103, + "noteOrder": 1731, + "time": 0.29538461538461536, "position": { "x": 6, "y": 0 @@ -3803,18 +3803,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2427, - "time": 0.4143589743589744, + "noteOrder": 1731, + "time": 0.29538461538461536, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3826,18 +3826,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2451, - "time": 0.4184615384615385, + "noteOrder": 1827, + "time": 0.3117948717948718, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3849,18 +3849,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.4225641025641026, + "noteOrder": 1851, + "time": 0.31589743589743585, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3872,16 +3872,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.4266666666666667, + "noteOrder": 1851, + "time": 0.31589743589743585, "position": { "x": 4, "y": 0 @@ -3900,11 +3900,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2524, - "time": 0.4307692307692308, + "noteOrder": 1875, + "time": 0.31999999999999995, "position": { "x": 4, "y": 0 @@ -3923,13 +3923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2548, - "time": 0.4348717948717949, + "noteOrder": 1875, + "time": 0.31999999999999995, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3946,11 +3946,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 2572, - "time": 0.438974358974359, + "noteOrder": 1875, + "time": 0.31999999999999995, "position": { "x": 3, "y": 0 @@ -3964,18 +3964,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.4594871794871795, + "noteOrder": 1899, + "time": 0.3241025641025641, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3992,13 +3992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2716, - "time": 0.4635897435897436, + "noteOrder": 1899, + "time": 0.3241025641025641, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4015,13 +4015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2740, - "time": 0.4676923076923077, + "noteOrder": 1923, + "time": 0.3282051282051282, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4033,18 +4033,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2764, - "time": 0.47179487179487184, + "noteOrder": 1923, + "time": 0.3282051282051282, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4056,16 +4056,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.49230769230769234, + "noteOrder": 2212, + "time": 0.37743589743589745, "position": { "x": 7, "y": 0 @@ -4084,11 +4084,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2908, - "time": 0.49641025641025643, + "noteOrder": 2236, + "time": 0.38153846153846155, "position": { "x": 7, "y": 0 @@ -4107,11 +4107,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2932, - "time": 0.5005128205128205, + "noteOrder": 2260, + "time": 0.3856410256410256, "position": { "x": 3, "y": 0 @@ -4130,11 +4130,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2956, - "time": 0.5046153846153846, + "noteOrder": 2284, + "time": 0.3897435897435897, "position": { "x": 3, "y": 0 @@ -4153,13 +4153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3076, - "time": 0.5251282051282051, + "noteOrder": 2404, + "time": 0.41025641025641024, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4176,11 +4176,34 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2428, + "time": 0.41435897435897434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 3100, - "time": 0.5292307692307693, + "noteOrder": 2452, + "time": 0.41846153846153844, "position": { "x": 7, "y": 0 @@ -4199,13 +4222,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3124, - "time": 0.5333333333333333, + "noteOrder": 2476, + "time": 0.42256410256410254, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4217,18 +4240,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 3148, - "time": 0.5374358974358975, + "noteOrder": 2501, + "time": 0.42666666666666664, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4245,13 +4268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.64, + "noteOrder": 2525, + "time": 0.43076923076923074, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4263,18 +4286,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 3797, - "time": 0.6482051282051282, + "noteOrder": 2549, + "time": 0.4348717948717949, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4286,16 +4309,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.6564102564102564, + "noteOrder": 2573, + "time": 0.43897435897435894, "position": { "x": 3, "y": 0 @@ -4314,13 +4337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.6646153846153846, + "noteOrder": 2693, + "time": 0.45948717948717943, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4332,16 +4355,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.6728205128205128, + "noteOrder": 2717, + "time": 0.4635897435897436, "position": { "x": 7, "y": 0 @@ -4360,13 +4383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.681025641025641, + "noteOrder": 2741, + "time": 0.4676923076923077, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4383,13 +4406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.6892307692307692, + "noteOrder": 2765, + "time": 0.4717948717948718, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4401,16 +4424,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4086, - "time": 0.6974358974358975, + "noteOrder": 2885, + "time": 0.4923076923076923, "position": { "x": 7, "y": 0 @@ -4424,16 +4447,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4134, - "time": 0.7056410256410257, + "noteOrder": 2909, + "time": 0.4964102564102564, "position": { "x": 7, "y": 0 @@ -4452,11 +4475,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4182, - "time": 0.7138461538461539, + "noteOrder": 2933, + "time": 0.5005128205128205, "position": { "x": 3, "y": 0 @@ -4475,13 +4498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4518, - "time": 0.7712820512820513, + "noteOrder": 2957, + "time": 0.5046153846153846, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4493,16 +4516,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 4542, - "time": 0.7753846153846154, + "noteOrder": 3078, + "time": 0.525128205128205, "position": { "x": 7, "y": 0 @@ -4521,13 +4544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4567, - "time": 0.7794871794871795, + "noteOrder": 3102, + "time": 0.5292307692307692, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4539,18 +4562,1030 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5374358974358974, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6399999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6482051282051282, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6564102564102564, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6646153846153845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.6728205128205128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6769230769230768, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6769230769230768, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3991, + "time": 0.681025641025641, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6851282051282052, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6851282051282052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6892307692307692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.6933333333333334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4063, + "time": 0.6933333333333334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4087, + "time": 0.6974358974358975, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4087, + "time": 0.6974358974358975, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4087, + "time": 0.6974358974358975, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4111, + "time": 0.7015384615384614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4111, + "time": 0.7015384615384614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4135, + "time": 0.7056410256410256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4135, + "time": 0.7056410256410256, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4135, + "time": 0.7056410256410256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4160, + "time": 0.7097435897435896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4160, + "time": 0.7097435897435896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7138461538461538, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.717948717948718, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4208, + "time": 0.717948717948718, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7712820512820512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7753846153846153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4568, + "time": 0.7794871794871794, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7835897435897435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4713, + "time": 0.8041025641025641, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4737, + "time": 0.8082051282051281, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4737, + "time": 0.8082051282051281, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.7835897435897436, + "noteOrder": 4761, + "time": 0.8123076923076923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8164102564102563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4785, + "time": 0.8164102564102563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4809, + "time": 0.8205128205128205, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4562,18 +5597,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4711, - "time": 0.8041025641025641, + "noteOrder": 4809, + "time": 0.8205128205128205, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4585,18 +5620,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4759, - "time": 0.8123076923076923, + "noteOrder": 4905, + "time": 0.8369230769230769, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4614,10 +5649,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.836923076923077, + "noteOrder": 4929, + "time": 0.8410256410256409, "position": { "x": 7, "y": 0 @@ -4635,12 +5670,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4929, + "time": 0.8410256410256409, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4953, + "time": 0.8451282051282051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4953, + "time": 0.8451282051282051, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4953, + "time": 0.8451282051282051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4951, - "time": 0.8451282051282052, + "noteOrder": 4977, + "time": 0.8492307692307691, "position": { "x": 7, "y": 0 @@ -4658,11 +5785,80 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4977, + "time": 0.8492307692307691, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5001, + "time": 0.8533333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5001, + "time": 0.8533333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5095, + "noteOrder": 5097, "time": 0.8697435897435898, "position": { "x": 3, @@ -4681,12 +5877,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5121, + "time": 0.8738461538461538, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5121, + "time": 0.8738461538461538, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5145, + "time": 0.8779487179487179, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5143, - "time": 0.877948717948718, + "noteOrder": 5169, + "time": 0.8820512820512819, "position": { "x": 7, "y": 0 @@ -4704,12 +5969,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5169, + "time": 0.8820512820512819, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, - "time": 0.8861538461538462, + "noteOrder": 5193, + "time": 0.8861538461538461, "position": { "x": 3, "y": 0 @@ -4729,10 +6017,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5215, - "time": 0.8902564102564103, + "noteOrder": 5217, + "time": 0.8902564102564102, "position": { "x": 3, "y": 0 @@ -4752,10 +6040,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5239, - "time": 0.8943589743589744, + "noteOrder": 5242, + "time": 0.8943589743589743, "position": { "x": 7, "y": 0 @@ -4775,10 +6063,10 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, - "time": 0.8984615384615385, + "noteOrder": 5266, + "time": 0.8984615384615384, "position": { "x": 7, "y": 0 @@ -4798,9 +6086,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9025641025641026, "position": { "x": 3, @@ -4821,10 +6109,10 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, - "time": 0.9066666666666667, + "noteOrder": 5314, + "time": 0.9066666666666666, "position": { "x": 3, "y": 0 @@ -4844,9 +6132,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5336, + "noteOrder": 5338, "time": 0.9107692307692308, "position": { "x": 7, @@ -4867,10 +6155,10 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5360, - "time": 0.9148717948717949, + "noteOrder": 5362, + "time": 0.9148717948717948, "position": { "x": 7, "y": 0 @@ -4890,10 +6178,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5456, - "time": 0.9312820512820513, + "noteOrder": 5458, + "time": 0.9312820512820512, "position": { "x": 7, "y": 0 @@ -4913,9 +6201,9 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9353846153846154, "position": { "x": 7, @@ -4936,10 +6224,10 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5456, - "time": 0.9312820512820513, + "noteOrder": 5458, + "time": 0.9312820512820512, "position": { "x": 3, "y": 0 @@ -4959,9 +6247,9 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, + "noteOrder": 5482, "time": 0.9353846153846154, "position": { "x": 3, diff --git a/tracks/Orange Lullaby/info.json b/tracks/Orange Lullaby/info.json index 5e0ada74..7ec6a8f9 100644 --- a/tracks/Orange Lullaby/info.json +++ b/tracks/Orange Lullaby/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Orange Lullaby", - "SongLength": "132.048980", + "SongLength": "122.096327", "SongAuthorName": "Yooh", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Polar Night/251_difficulty_1a.json b/tracks/Polar Night/251_difficulty_1a.json index abc51d8a..6eae2897 100644 --- a/tracks/Polar Night/251_difficulty_1a.json +++ b/tracks/Polar Night/251_difficulty_1a.json @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.07229823019957324, "position": { "x": 4, @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 510, - "time": 0.08434793523283543, + "noteOrder": 511, + "time": 0.08434793523283544, "position": { "x": 5, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 680, + "noteOrder": 681, "time": 0.1124639136437806, "position": { "x": 7, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 753, + "noteOrder": 754, "time": 0.12451361867704279, "position": { "x": 5, @@ -274,7 +274,7 @@ }, { "noteOrder": 778, - "time": 0.12853018702146354, + "time": 0.12853018702146352, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 802, - "time": 0.13254675536588426, + "time": 0.13254675536588428, "position": { "x": 7, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 899, + "noteOrder": 900, "time": 0.14861302874356722, "position": { "x": 6, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 923, + "noteOrder": 924, "time": 0.15262959708798793, "position": { "x": 3, @@ -394,7 +394,7 @@ }, { "noteOrder": 948, - "time": 0.15664616543240867, + "time": 0.1566461654324087, "position": { "x": 4, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1069, + "noteOrder": 1070, "time": 0.17672900715451237, "position": { "x": 3, @@ -434,7 +434,7 @@ }, { "noteOrder": 1094, - "time": 0.1807455754989331, + "time": 0.18074557549893308, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1142, + "noteOrder": 1143, "time": 0.18877871218777456, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1312, + "noteOrder": 1313, "time": 0.2168946905987197, "position": { "x": 8, @@ -534,7 +534,7 @@ }, { "noteOrder": 1337, - "time": 0.22091125894314045, + "time": 0.22091125894314043, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1385, - "time": 0.2289443956319819, + "noteOrder": 1386, + "time": 0.22894439563198193, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1555, - "time": 0.2570603740429271, + "noteOrder": 1556, + "time": 0.25706037404292703, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1604, - "time": 0.2650935107317685, + "noteOrder": 1605, + "time": 0.26509351073176857, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1604, - "time": 0.2650935107317685, + "noteOrder": 1605, + "time": 0.26509351073176857, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1628, + "noteOrder": 1629, "time": 0.2691100790761893, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1628, + "noteOrder": 1629, "time": 0.2691100790761893, "position": { "x": 7, @@ -754,7 +754,7 @@ }, { "noteOrder": 1677, - "time": 0.27714321576503076, + "time": 0.2771432157650307, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1701, + "noteOrder": 1702, "time": 0.28115978410945147, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1774, - "time": 0.29320948914271366, + "noteOrder": 1775, + "time": 0.2932094891427137, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1847, + "noteOrder": 1848, "time": 0.30525919417597586, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1871, + "noteOrder": 1872, "time": 0.3092757625203966, "position": { "x": 5, @@ -874,7 +874,7 @@ }, { "noteOrder": 1896, - "time": 0.31329233086481734, + "time": 0.3132923308648174, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1968, - "time": 0.32534203589807953, + "noteOrder": 1969, + "time": 0.3253420358980796, "position": { "x": 5, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.333375172586921, "position": { "x": 5, @@ -934,7 +934,7 @@ }, { "noteOrder": 2066, - "time": 0.3414083092757625, + "time": 0.34140830927576254, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.3454248776201832, + "noteOrder": 2091, + "time": 0.34542487762018326, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2102, + "noteOrder": 2103, "time": 0.3474331617923936, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34944144596460397, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.35747458265344545, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3614911509978662, + "noteOrder": 2188, + "time": 0.36149115099786616, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2199, - "time": 0.3634994351700766, + "noteOrder": 2200, + "time": 0.36349943517007655, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2211, - "time": 0.36550771934228693, + "noteOrder": 2212, + "time": 0.3655077193422869, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2552, + "noteOrder": 2553, "time": 0.42173967616417724, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2577, "time": 0.42575624450859795, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2600, + "noteOrder": 2601, "time": 0.4297728128530187, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2747, "time": 0.4538722229195431, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2770, - "time": 0.4578887912639638, + "noteOrder": 2771, + "time": 0.45788879126396387, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2795, + "noteOrder": 2796, "time": 0.4619053596083846, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2916, + "noteOrder": 2917, "time": 0.48198820133048825, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2928, - "time": 0.48399648550269864, + "noteOrder": 2929, + "time": 0.4839964855026986, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.48600476967490897, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.49002133801932973, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.49002133801932973, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.49403790636375045, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.49403790636375045, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3111, - "time": 0.5141207480858542, + "noteOrder": 3112, + "time": 0.5141207480858541, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3123, + "noteOrder": 3124, "time": 0.5161290322580645, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3136, "time": 0.5181373164302748, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3159, + "noteOrder": 3160, "time": 0.5221538847746956, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3159, + "noteOrder": 3160, "time": 0.5221538847746956, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3184, + "noteOrder": 3185, "time": 0.5261704531191164, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3184, + "noteOrder": 3185, "time": 0.5261704531191164, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5342035898079578, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5342035898079578, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3258, "time": 0.5382201581523786, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3281, - "time": 0.5422367264967992, + "noteOrder": 3282, + "time": 0.5422367264967993, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3306, "time": 0.54625329484122, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.5502698631856408, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3354, - "time": 0.5542864315300615, + "noteOrder": 3355, + "time": 0.5542864315300614, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3378, - "time": 0.5583029998744822, + "noteOrder": 3379, + "time": 0.5583029998744823, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3475, + "noteOrder": 3476, "time": 0.5743692732521651, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3621, - "time": 0.5984686833186895, + "noteOrder": 3622, + "time": 0.5984686833186896, "position": { "x": 8, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3647, "time": 0.6024852516631103, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3670, + "noteOrder": 3671, "time": 0.6065018200075311, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3718, + "noteOrder": 3720, "time": 0.6145349566963725, "position": { "x": 2, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3743, + "noteOrder": 3744, "time": 0.6185515250407932, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3767, - "time": 0.6225680933852139, + "noteOrder": 3768, + "time": 0.622568093385214, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3890, "time": 0.6426509351073176, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3913, + "noteOrder": 3914, "time": 0.6466675034517384, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4279, "time": 0.7069160286180495, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4301, + "noteOrder": 4303, "time": 0.7109325969624702, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4327, "time": 0.7149491653068909, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4327, "time": 0.7149491653068909, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.7189657336513117, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.7189657336513117, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4473, "time": 0.7390485753734154, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4498, "time": 0.743065143717836, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.7470817120622568, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.7470817120622568, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4544, - "time": 0.7510982804066776, + "noteOrder": 4546, + "time": 0.7510982804066775, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4544, - "time": 0.7510982804066776, + "noteOrder": 4546, + "time": 0.7510982804066775, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4593, + "noteOrder": 4595, "time": 0.759131417095519, "position": { "x": 5, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4617, - "time": 0.7631479854399398, + "noteOrder": 4619, + "time": 0.7631479854399397, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4630, + "noteOrder": 4631, "time": 0.7651562696121501, "position": { "x": 5, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4642, + "noteOrder": 4643, "time": 0.7671645537843605, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4690, + "noteOrder": 4692, "time": 0.775197690473202, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4715, - "time": 0.7792142588176227, + "noteOrder": 4716, + "time": 0.7792142588176226, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4727, + "noteOrder": 4729, "time": 0.7812225429898331, "position": { "x": 5, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4739, + "noteOrder": 4741, "time": 0.7832308271620434, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4860, + "noteOrder": 4862, "time": 0.8033136688841471, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4860, + "noteOrder": 4862, "time": 0.8033136688841471, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8153633739174093, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8153633739174093, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5031, + "noteOrder": 5032, "time": 0.8314296472950923, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5128, - "time": 0.8474959206727752, + "noteOrder": 5130, + "time": 0.8474959206727751, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5274, + "noteOrder": 5276, "time": 0.8715953307392996, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5298, + "noteOrder": 5300, "time": 0.8756118990837203, "position": { "x": 5, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5322, + "noteOrder": 5324, "time": 0.879628467428141, "position": { "x": 5, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5468, + "noteOrder": 5470, "time": 0.9037278774946654, "position": { "x": 4, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.9077444458390862, "position": { "x": 5, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5517, - "time": 0.911761014183507, + "noteOrder": 5519, + "time": 0.9117610141835069, "position": { "x": 5, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5614, + "noteOrder": 5616, "time": 0.9278272875611899, "position": { "x": 5, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5638, + "noteOrder": 5640, "time": 0.9318438559056106, "position": { "x": 3, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5650, - "time": 0.933852140077821, + "noteOrder": 5652, + "time": 0.9338521400778209, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.9358604242500314, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5675, + "noteOrder": 5677, "time": 0.9378687084222417, "position": { "x": 5, @@ -2576,10 +2576,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.016066273377682943, + "time": 0.01606627337768294, "position": { "x": 7, "y": 0 @@ -2599,7 +2599,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, "time": 0.024099410066524413, @@ -2622,10 +2622,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.032132546755365886, + "time": 0.03213254675536588, "position": { "x": 3, "y": 0 @@ -2645,7 +2645,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, "time": 0.04016568344420735, @@ -2668,7 +2668,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, "time": 0.048198820133048825, @@ -2691,7 +2691,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, "time": 0.0562319568218903, @@ -2714,10 +2714,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, - "time": 0.06426509351073177, + "time": 0.06426509351073176, "position": { "x": 3, "y": 0 @@ -2737,9 +2737,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 437, + "noteOrder": 438, "time": 0.07229823019957324, "position": { "x": 3, @@ -2760,7 +2760,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 486, "time": 0.0803313668884147, @@ -2783,7 +2783,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 583, "time": 0.09639764026609765, @@ -2806,7 +2806,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.09639764026609765, @@ -2829,9 +2829,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 680, + "noteOrder": 681, "time": 0.1124639136437806, "position": { "x": 3, @@ -2852,7 +2852,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 729, "time": 0.12049705033262206, @@ -2875,9 +2875,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 753, + "noteOrder": 754, "time": 0.12451361867704279, "position": { "x": 7, @@ -2898,9 +2898,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 826, + "noteOrder": 827, "time": 0.136563323710305, "position": { "x": 3, @@ -2921,7 +2921,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 851, "time": 0.14057989205472574, @@ -2944,7 +2944,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 972, "time": 0.1606627337768294, @@ -2966,13 +2966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 996, - "time": 0.16467930212125015, + "noteOrder": 985, + "time": 0.1626710179490398, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2984,41 +2984,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, + "lineGroupId": 33, "indexInLine": 3, "isSliding": false, - "noteOrder": 1045, - "time": 0.1727124388100916, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 35, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1021, - "time": 0.16869587046567086, + "noteOrder": 985, + "time": 0.1626710179490398, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3035,13 +3012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1045, - "time": 0.1727124388100916, + "noteOrder": 997, + "time": 0.16467930212125015, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3053,16 +3030,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1167, - "time": 0.1927952805321953, + "noteOrder": 1009, + "time": 0.1666875862934605, "position": { "x": 3, "y": 0 @@ -3081,13 +3058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1191, - "time": 0.19681184887661604, + "noteOrder": 1009, + "time": 0.1666875862934605, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3099,18 +3076,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 3, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1239, - "time": 0.20484498556545752, + "noteOrder": 1021, + "time": 0.1686958704656709, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3122,16 +3099,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1215, - "time": 0.20082841722103678, + "noteOrder": 1021, + "time": 0.1686958704656709, "position": { "x": 3, "y": 0 @@ -3150,11 +3127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1239, - "time": 0.20484498556545752, + "noteOrder": 1045, + "time": 0.17271243881009163, "position": { "x": 3, "y": 0 @@ -3173,13 +3150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1264, - "time": 0.20886155390987823, + "noteOrder": 1021, + "time": 0.1686958704656709, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3196,13 +3173,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1361, - "time": 0.2249278272875612, + "noteOrder": 1045, + "time": 0.17271243881009163, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3219,13 +3196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1361, - "time": 0.2249278272875612, + "noteOrder": 1167, + "time": 0.1927952805321953, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3242,13 +3219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1458, - "time": 0.24099410066524413, + "noteOrder": 1179, + "time": 0.19480356470440566, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3265,13 +3242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1458, - "time": 0.24099410066524413, + "noteOrder": 1179, + "time": 0.19480356470440566, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3283,18 +3260,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 1482, - "time": 0.24501066900966487, + "noteOrder": 1191, + "time": 0.19681184887661604, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3311,13 +3288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1507, - "time": 0.24902723735408558, + "noteOrder": 1203, + "time": 0.19882013304882643, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3329,18 +3306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1531, - "time": 0.2530438056985063, + "noteOrder": 1203, + "time": 0.19882013304882643, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3352,18 +3329,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1725, - "time": 0.2851763524538722, + "noteOrder": 1216, + "time": 0.20082841722103678, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3375,18 +3352,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1823, - "time": 0.30124262583155514, + "noteOrder": 1216, + "time": 0.20082841722103678, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3398,16 +3375,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1920, - "time": 0.3173088992092381, + "noteOrder": 1240, + "time": 0.2048449855654575, "position": { "x": 7, "y": 0 @@ -3426,13 +3403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.333375172586921, + "noteOrder": 1216, + "time": 0.20082841722103678, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3444,18 +3421,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, - "time": 0.3373917409313417, + "noteOrder": 1240, + "time": 0.2048449855654575, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3472,13 +3449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 2066, - "time": 0.3414083092757625, + "noteOrder": 1264, + "time": 0.20886155390987823, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3490,16 +3467,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.35345801430902474, + "noteOrder": 1361, + "time": 0.2249278272875612, "position": { "x": 6, "y": 0 @@ -3518,13 +3495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, - "time": 0.35747458265344545, + "noteOrder": 1361, + "time": 0.2249278272875612, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3536,18 +3513,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2236, - "time": 0.3695242876867077, + "noteOrder": 1459, + "time": 0.24099410066524413, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3559,18 +3536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, - "time": 0.3735408560311284, + "noteOrder": 1459, + "time": 0.24099410066524413, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3587,11 +3564,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 53, "indexInLine": 2, "isSliding": false, - "noteOrder": 2333, - "time": 0.3855905610643906, + "noteOrder": 1483, + "time": 0.24501066900966487, "position": { "x": 6, "y": 0 @@ -3610,13 +3587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 3, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2345, - "time": 0.387598845236601, + "noteOrder": 1507, + "time": 0.24902723735408558, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3628,18 +3605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 4, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2357, - "time": 0.38960712940881137, + "noteOrder": 1532, + "time": 0.2530438056985063, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3651,18 +3628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 5, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2369, - "time": 0.3916154135810217, + "noteOrder": 1726, + "time": 0.28517635245387224, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3674,18 +3651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 6, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2382, - "time": 0.3936236977532321, + "noteOrder": 1823, + "time": 0.30124262583155514, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3697,16 +3674,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 7, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2394, - "time": 0.39563198192544247, + "noteOrder": 1921, + "time": 0.3173088992092381, "position": { "x": 7, "y": 0 @@ -3725,11 +3702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 8, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2406, - "time": 0.3976402660976528, + "noteOrder": 2018, + "time": 0.333375172586921, "position": { "x": 7, "y": 0 @@ -3748,13 +3725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.3775574243755491, + "noteOrder": 2042, + "time": 0.3373917409313418, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3771,11 +3748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.3815739927199699, + "noteOrder": 2066, + "time": 0.34140830927576254, "position": { "x": 4, "y": 0 @@ -3794,13 +3771,36 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2139, + "time": 0.35345801430902474, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, "indexInLine": 2, "isSliding": false, - "noteOrder": 2333, - "time": 0.3855905610643906, + "noteOrder": 2164, + "time": 0.35747458265344545, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3812,18 +3812,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3695242876867077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2261, + "time": 0.3735408560311284, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, "indexInLine": 3, "isSliding": false, - "noteOrder": 2345, - "time": 0.387598845236601, + "noteOrder": 2334, + "time": 0.3855905610643906, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3835,18 +3881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 87, "indexInLine": 4, "isSliding": false, - "noteOrder": 2357, - "time": 0.38960712940881137, + "noteOrder": 2346, + "time": 0.387598845236601, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3858,18 +3904,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 87, "indexInLine": 5, "isSliding": false, - "noteOrder": 2369, - "time": 0.3916154135810217, + "noteOrder": 2358, + "time": 0.3896071294088113, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3881,18 +3927,110 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 87, "indexInLine": 6, "isSliding": false, + "noteOrder": 2370, + "time": 0.3916154135810217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 7, + "isSliding": false, "noteOrder": 2382, "time": 0.3936236977532321, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2395, + "time": 0.3956319819254424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2407, + "time": 0.39764026609765285, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2285, + "time": 0.3775574243755491, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3910,10 +4048,10 @@ }, { "lineGroupId": 88, - "indexInLine": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2394, - "time": 0.39563198192544247, + "noteOrder": 2310, + "time": 0.38157399271996983, "position": { "x": 4, "y": 0 @@ -3933,10 +4071,10 @@ }, { "lineGroupId": 88, - "indexInLine": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2406, - "time": 0.3976402660976528, + "noteOrder": 2334, + "time": 0.3855905610643906, "position": { "x": 4, "y": 0 @@ -3955,13 +4093,2382 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2346, + "time": 0.387598845236601, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2358, + "time": 0.3896071294088113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2370, + "time": 0.3916154135810217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2382, + "time": 0.3936236977532321, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2395, + "time": 0.3956319819254424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2407, + "time": 0.39764026609765285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2431, + "time": 0.40165683444207356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2443, + "time": 0.4036651186142839, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2443, + "time": 0.4036651186142839, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2455, + "time": 0.4056734027864943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2455, + "time": 0.4056734027864943, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2455, + "time": 0.4056734027864943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2468, + "time": 0.40768168695870466, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2468, + "time": 0.40768168695870466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2480, + "time": 0.409689971130915, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2480, + "time": 0.409689971130915, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2480, + "time": 0.409689971130915, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2492, + "time": 0.41169825530312537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2492, + "time": 0.41169825530312537, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2504, + "time": 0.41370653947533576, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2504, + "time": 0.41370653947533576, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2504, + "time": 0.41370653947533576, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2516, + "time": 0.41571482364754614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2516, + "time": 0.41571482364754614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2528, + "time": 0.41772310781975647, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2528, + "time": 0.41772310781975647, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2528, + "time": 0.41772310781975647, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2553, + "time": 0.42173967616417724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2626, + "time": 0.4337893811974394, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2626, + "time": 0.4337893811974394, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2638, + "time": 0.4357976653696498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2638, + "time": 0.4357976653696498, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2650, + "time": 0.43780594954186014, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2650, + "time": 0.43780594954186014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2650, + "time": 0.43780594954186014, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2662, + "time": 0.4398142337140705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2662, + "time": 0.4398142337140705, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2674, + "time": 0.44182251788628085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2674, + "time": 0.44182251788628085, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2674, + "time": 0.44182251788628085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2686, + "time": 0.4438308020584913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2686, + "time": 0.4438308020584913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2699, + "time": 0.4458390862307016, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2699, + "time": 0.4458390862307016, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2699, + "time": 0.4458390862307016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2711, + "time": 0.447847370402912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2711, + "time": 0.447847370402912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2723, + "time": 0.4498556545751224, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2723, + "time": 0.4498556545751224, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2723, + "time": 0.4498556545751224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2747, + "time": 0.4538722229195431, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2820, + "time": 0.4659219279528053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2820, + "time": 0.4659219279528053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2832, + "time": 0.4679302121250157, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2832, + "time": 0.4679302121250157, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2844, + "time": 0.469938496297226, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2857, + "time": 0.4719467804694364, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2857, + "time": 0.4719467804694364, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2869, + "time": 0.4739550646416468, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2881, + "time": 0.47596334881385716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2881, + "time": 0.47596334881385716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2893, + "time": 0.47797163298606754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2905, + "time": 0.47997991715827787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2905, + "time": 0.47997991715827787, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3015, + "time": 0.49805447470817116, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3027, + "time": 0.5000627588803815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3027, + "time": 0.5000627588803815, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3039, + "time": 0.502071043052592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3051, + "time": 0.5040793272248023, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3051, + "time": 0.5040793272248023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3063, + "time": 0.5060876113970126, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5080958955692231, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5080958955692231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5101041797414334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5121124639136437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5121124639136437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3404, + "time": 0.5623195682189029, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3428, + "time": 0.5663361365633237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3428, + "time": 0.5663361365633237, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3452, + "time": 0.5703527049077445, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3452, + "time": 0.5703527049077445, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3476, + "time": 0.5743692732521651, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3501, + "time": 0.5783858415965859, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3513, + "time": 0.5803941257687962, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3513, + "time": 0.5803941257687962, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3525, + "time": 0.5824024099410066, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3537, + "time": 0.584410694113217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3537, + "time": 0.584410694113217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3549, + "time": 0.5864189782854274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3562, + "time": 0.5884272624576378, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3562, + "time": 0.5884272624576378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3574, + "time": 0.5904355466298481, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3586, + "time": 0.5924438308020585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3586, + "time": 0.5924438308020585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3598, + "time": 0.5944521149742689, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3622, + "time": 0.5984686833186896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6105183883519517, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6105183883519517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3720, + "time": 0.6145349566963725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3793, + "time": 0.6265846617296348, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3793, + "time": 0.6265846617296348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3817, + "time": 0.6306012300740554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3841, + "time": 0.6346177984184762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2430, - "time": 0.40165683444207356, + "noteOrder": 3865, + "time": 0.6386343667628969, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3973,16 +6480,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2455, - "time": 0.4056734027864943, + "noteOrder": 3938, + "time": 0.6506840717961592, "position": { "x": 7, "y": 0 @@ -4001,11 +6508,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2479, - "time": 0.40968997113091504, + "noteOrder": 3951, + "time": 0.6526923559683695, "position": { "x": 7, "y": 0 @@ -4019,18 +6526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2503, - "time": 0.41370653947533576, + "noteOrder": 3975, + "time": 0.6567089243127903, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4047,13 +6554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2527, - "time": 0.41772310781975647, + "noteOrder": 3987, + "time": 0.6587172084850006, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4065,18 +6572,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 2552, - "time": 0.42173967616417724, + "noteOrder": 3938, + "time": 0.6506840717961592, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4093,13 +6600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 157, "indexInLine": 2, "isSliding": false, - "noteOrder": 2625, - "time": 0.4337893811974394, + "noteOrder": 3951, + "time": 0.6526923559683695, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4116,13 +6623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2625, - "time": 0.4337893811974394, + "noteOrder": 3975, + "time": 0.6567089243127903, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4134,18 +6641,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2649, - "time": 0.43780594954186014, + "noteOrder": 3987, + "time": 0.6587172084850006, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4162,13 +6669,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2673, - "time": 0.4418225178862809, + "noteOrder": 4182, + "time": 0.6908497552403665, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4180,18 +6687,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2698, - "time": 0.4458390862307016, + "noteOrder": 4230, + "time": 0.6988828919292079, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4208,11 +6715,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2722, - "time": 0.4498556545751224, + "noteOrder": 4230, + "time": 0.6988828919292079, "position": { "x": 3, "y": 0 @@ -4231,11 +6738,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2746, - "time": 0.4538722229195431, + "noteOrder": 4279, + "time": 0.7069160286180495, "position": { "x": 3, "y": 0 @@ -4254,13 +6761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2819, - "time": 0.4659219279528053, + "noteOrder": 4376, + "time": 0.7229823019957323, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4277,13 +6784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2819, - "time": 0.4659219279528053, + "noteOrder": 4425, + "time": 0.7310154386845737, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4295,18 +6802,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2843, - "time": 0.46993849629722606, + "noteOrder": 4425, + "time": 0.7310154386845737, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4318,16 +6825,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2868, - "time": 0.4739550646416468, + "noteOrder": 4473, + "time": 0.7390485753734154, "position": { "x": 7, "y": 0 @@ -4346,13 +6853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2892, - "time": 0.4779716329860675, + "noteOrder": 4570, + "time": 0.7551148487510982, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4364,18 +6871,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3013, - "time": 0.49805447470817116, + "noteOrder": 4595, + "time": 0.759131417095519, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4387,18 +6894,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3038, - "time": 0.5020710430525919, + "noteOrder": 4668, + "time": 0.7711811221287812, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4410,18 +6917,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3062, - "time": 0.5060876113970126, + "noteOrder": 4692, + "time": 0.775197690473202, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4438,13 +6945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3086, - "time": 0.5101041797414334, + "noteOrder": 4765, + "time": 0.7872473955064642, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4456,18 +6963,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3402, - "time": 0.5623195682189029, + "noteOrder": 4789, + "time": 0.7912639638508848, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4479,18 +6986,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 3427, - "time": 0.5663361365633237, + "noteOrder": 4814, + "time": 0.7952805321953057, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4507,13 +7014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3427, - "time": 0.5663361365633237, + "noteOrder": 4838, + "time": 0.7992971005397264, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4525,18 +7032,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 3451, - "time": 0.5703527049077444, + "noteOrder": 4887, + "time": 0.8073302372285678, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4553,13 +7060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3451, - "time": 0.5703527049077444, + "noteOrder": 4911, + "time": 0.8113468055729885, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4571,18 +7078,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 3475, - "time": 0.5743692732521651, + "noteOrder": 4887, + "time": 0.8073302372285678, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4599,13 +7106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3500, - "time": 0.5783858415965859, + "noteOrder": 4911, + "time": 0.8113468055729885, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4622,11 +7129,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3524, - "time": 0.5824024099410066, + "noteOrder": 4959, + "time": 0.81937994226183, "position": { "x": 3, "y": 0 @@ -4640,18 +7147,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3548, - "time": 0.5864189782854273, + "noteOrder": 4972, + "time": 0.8213882264340403, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4668,13 +7175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3572, - "time": 0.5904355466298481, + "noteOrder": 4984, + "time": 0.8233965106062507, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4691,13 +7198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3597, - "time": 0.5944521149742689, + "noteOrder": 4996, + "time": 0.8254047947784612, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4709,18 +7216,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 3621, - "time": 0.5984686833186895, + "noteOrder": 5008, + "time": 0.8274130789506715, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4737,13 +7244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 197, "indexInLine": 2, "isSliding": false, - "noteOrder": 3694, - "time": 0.6105183883519517, + "noteOrder": 5020, + "time": 0.829421363122882, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4760,36 +7267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 3694, - "time": 0.6105183883519517, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3718, - "time": 0.6145349566963725, + "noteOrder": 5032, + "time": 0.8314296472950923, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4801,18 +7285,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 2, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3791, - "time": 0.6265846617296347, + "noteOrder": 5057, + "time": 0.8354462156395129, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4829,13 +7313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3791, - "time": 0.6265846617296347, + "noteOrder": 5069, + "time": 0.8374544998117234, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4847,18 +7331,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3815, - "time": 0.6306012300740554, + "noteOrder": 5081, + "time": 0.8394627839839337, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4875,13 +7359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3840, - "time": 0.6346177984184762, + "noteOrder": 5093, + "time": 0.841471068156144, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4893,18 +7377,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 3864, - "time": 0.6386343667628969, + "noteOrder": 5105, + "time": 0.8434793523283545, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4921,13 +7405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3937, - "time": 0.6506840717961591, + "noteOrder": 5117, + "time": 0.8454876365005648, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4944,13 +7428,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3949, - "time": 0.6526923559683695, + "noteOrder": 5130, + "time": 0.8474959206727751, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4967,13 +7451,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 2, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3973, - "time": 0.6567089243127902, + "noteOrder": 5154, + "time": 0.8515124890171959, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4985,18 +7469,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 3, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3986, - "time": 0.6587172084850006, + "noteOrder": 5166, + "time": 0.8535207731894062, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5008,18 +7492,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3937, - "time": 0.6506840717961591, + "noteOrder": 5166, + "time": 0.8535207731894062, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5036,13 +7520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3949, - "time": 0.6526923559683695, + "noteOrder": 5178, + "time": 0.8555290573616167, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5059,13 +7543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 2, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3973, - "time": 0.6567089243127902, + "noteOrder": 5178, + "time": 0.8555290573616167, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5082,11 +7566,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 3, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3986, - "time": 0.6587172084850006, + "noteOrder": 5178, + "time": 0.8555290573616167, "position": { "x": 7, "y": 0 @@ -5100,16 +7584,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4180, - "time": 0.6908497552403664, + "noteOrder": 5190, + "time": 0.8575373415338271, "position": { "x": 7, "y": 0 @@ -5123,18 +7607,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4229, - "time": 0.6988828919292079, + "noteOrder": 5190, + "time": 0.8575373415338271, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5146,18 +7630,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4229, - "time": 0.6988828919292079, + "noteOrder": 5203, + "time": 0.8595456257060374, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5174,13 +7658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4277, - "time": 0.7069160286180495, + "noteOrder": 5203, + "time": 0.8595456257060374, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5197,13 +7681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4374, - "time": 0.7229823019957324, + "noteOrder": 5203, + "time": 0.8595456257060374, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5215,18 +7699,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.7310154386845739, + "noteOrder": 5215, + "time": 0.8615539098782478, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5238,18 +7722,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.7310154386845739, + "noteOrder": 5215, + "time": 0.8615539098782478, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5266,13 +7750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4472, - "time": 0.7390485753734154, + "noteOrder": 5227, + "time": 0.8635621940504581, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5289,13 +7773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4569, - "time": 0.7551148487510982, + "noteOrder": 5227, + "time": 0.8635621940504581, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5312,13 +7796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 206, "indexInLine": 1, "isSliding": false, - "noteOrder": 4593, - "time": 0.759131417095519, + "noteOrder": 5227, + "time": 0.8635621940504581, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5330,18 +7814,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4666, - "time": 0.7711811221287812, + "noteOrder": 5239, + "time": 0.8655704782226685, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5358,13 +7842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4690, - "time": 0.775197690473202, + "noteOrder": 5239, + "time": 0.8655704782226685, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5381,13 +7865,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4763, - "time": 0.7872473955064642, + "noteOrder": 5251, + "time": 0.8675787623948789, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5404,13 +7888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4788, - "time": 0.7912639638508849, + "noteOrder": 5251, + "time": 0.8675787623948789, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5427,11 +7911,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4812, - "time": 0.7952805321953056, + "noteOrder": 5251, + "time": 0.8675787623948789, "position": { "x": 7, "y": 0 @@ -5450,13 +7934,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4836, - "time": 0.7992971005397264, + "noteOrder": 5276, + "time": 0.8715953307392996, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5473,13 +7957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4885, - "time": 0.8073302372285679, + "noteOrder": 5348, + "time": 0.8836450357725617, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5491,18 +7975,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 211, "indexInLine": 1, "isSliding": false, - "noteOrder": 4909, - "time": 0.8113468055729885, + "noteOrder": 5348, + "time": 0.8836450357725617, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5519,13 +8003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4885, - "time": 0.8073302372285679, + "noteOrder": 5361, + "time": 0.8856533199447723, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5537,18 +8021,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4909, - "time": 0.8113468055729885, + "noteOrder": 5361, + "time": 0.8856533199447723, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5560,18 +8044,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4958, - "time": 0.8193799422618301, + "noteOrder": 5373, + "time": 0.8876616041169826, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5583,18 +8067,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4970, - "time": 0.8213882264340404, + "noteOrder": 5373, + "time": 0.8876616041169826, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5606,18 +8090,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4982, - "time": 0.8233965106062507, + "noteOrder": 5373, + "time": 0.8876616041169826, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5629,18 +8113,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4994, - "time": 0.8254047947784612, + "noteOrder": 5385, + "time": 0.8896698882891929, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5652,18 +8136,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5006, - "time": 0.8274130789506715, + "noteOrder": 5385, + "time": 0.8896698882891929, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5680,11 +8164,11 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5018, - "time": 0.8294213631228818, + "noteOrder": 5397, + "time": 0.8916781724614032, "position": { "x": 4, "y": 0 @@ -5703,13 +8187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5031, - "time": 0.8314296472950923, + "noteOrder": 5397, + "time": 0.8916781724614032, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5726,13 +8210,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5055, - "time": 0.8354462156395129, + "noteOrder": 5397, + "time": 0.8916781724614032, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5749,13 +8233,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5067, - "time": 0.8374544998117234, + "noteOrder": 5409, + "time": 0.8936864566336137, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5772,13 +8256,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5079, - "time": 0.8394627839839337, + "noteOrder": 5409, + "time": 0.8936864566336137, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5790,16 +8274,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5091, - "time": 0.8414710681561441, + "noteOrder": 5421, + "time": 0.895694740805824, "position": { "x": 4, "y": 0 @@ -5813,18 +8297,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5103, - "time": 0.8434793523283545, + "noteOrder": 5421, + "time": 0.895694740805824, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5841,13 +8325,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 5116, - "time": 0.8454876365005648, + "noteOrder": 5421, + "time": 0.895694740805824, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5859,18 +8343,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 214, "indexInLine": 2, "isSliding": false, - "noteOrder": 5128, - "time": 0.8474959206727752, + "noteOrder": 5434, + "time": 0.8977030249780343, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5882,18 +8366,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5152, - "time": 0.8515124890171959, + "noteOrder": 5434, + "time": 0.8977030249780343, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5910,13 +8394,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5176, - "time": 0.8555290573616167, + "noteOrder": 5446, + "time": 0.8997113091502448, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5928,18 +8412,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5201, - "time": 0.8595456257060374, + "noteOrder": 5446, + "time": 0.8997113091502448, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5956,13 +8440,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5225, - "time": 0.8635621940504581, + "noteOrder": 5446, + "time": 0.8997113091502448, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5979,13 +8463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5249, - "time": 0.8675787623948789, + "noteOrder": 5470, + "time": 0.9037278774946654, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5997,18 +8481,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5274, - "time": 0.8715953307392996, + "noteOrder": 5543, + "time": 0.9157775825279277, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6020,18 +8504,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5346, - "time": 0.8836450357725618, + "noteOrder": 5543, + "time": 0.9157775825279277, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6048,13 +8532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5346, - "time": 0.8836450357725618, + "noteOrder": 5567, + "time": 0.9197941508723484, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6066,18 +8550,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5371, - "time": 0.8876616041169826, + "noteOrder": 5567, + "time": 0.9197941508723484, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6089,18 +8573,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5395, - "time": 0.8916781724614032, + "noteOrder": 5592, + "time": 0.9238107192167692, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6117,13 +8601,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5419, - "time": 0.895694740805824, + "noteOrder": 5592, + "time": 0.9238107192167692, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6140,13 +8624,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5444, - "time": 0.8997113091502448, + "noteOrder": 5616, + "time": 0.9278272875611899, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6158,16 +8642,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 5468, - "time": 0.9037278774946654, + "noteOrder": 5689, + "time": 0.939876992594452, "position": { "x": 3, "y": 0 @@ -6181,18 +8665,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 227, "indexInLine": 2, "isSliding": false, - "noteOrder": 5541, - "time": 0.9157775825279276, + "noteOrder": 5701, + "time": 0.9418852767666624, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6204,18 +8688,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5541, - "time": 0.9157775825279276, + "noteOrder": 5701, + "time": 0.9418852767666624, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6232,13 +8716,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5565, - "time": 0.9197941508723484, + "noteOrder": 5713, + "time": 0.9438935609388728, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6255,11 +8739,11 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5565, - "time": 0.9197941508723484, + "noteOrder": 5713, + "time": 0.9438935609388728, "position": { "x": 5, "y": 0 @@ -6273,18 +8757,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, + "lineGroupId": 228, "indexInLine": 1, "isSliding": false, - "noteOrder": 5589, - "time": 0.9238107192167692, + "noteOrder": 5713, + "time": 0.9438935609388728, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6301,13 +8785,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5589, - "time": 0.9238107192167692, + "noteOrder": 5725, + "time": 0.9459018451110832, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6319,18 +8803,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5614, - "time": 0.9278272875611899, + "noteOrder": 5725, + "time": 0.9459018451110832, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6342,18 +8826,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5687, - "time": 0.9398769925944521, + "noteOrder": 5737, + "time": 0.9479101292832935, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6365,16 +8849,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5711, - "time": 0.9438935609388728, + "noteOrder": 5737, + "time": 0.9479101292832935, "position": { "x": 3, "y": 0 @@ -6394,9 +8878,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5737, "time": 0.9479101292832935, "position": { "x": 7, @@ -6417,9 +8901,9 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9639764026609765, "position": { "x": 7, @@ -6440,9 +8924,9 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9639764026609765, "position": { "x": 3, @@ -6463,9 +8947,9 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5930, + "noteOrder": 5932, "time": 0.9800426760386595, "position": { "x": 3, diff --git a/tracks/Polar Night/251_difficulty_1b.json b/tracks/Polar Night/251_difficulty_1b.json index 14feb476..593ef406 100644 --- a/tracks/Polar Night/251_difficulty_1b.json +++ b/tracks/Polar Night/251_difficulty_1b.json @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.07229823019957324, "position": { "x": 4, @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 510, - "time": 0.08434793523283543, + "noteOrder": 511, + "time": 0.08434793523283544, "position": { "x": 5, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 680, + "noteOrder": 681, "time": 0.1124639136437806, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 753, + "noteOrder": 754, "time": 0.12451361867704279, "position": { "x": 4, @@ -294,7 +294,7 @@ }, { "noteOrder": 778, - "time": 0.12853018702146354, + "time": 0.12853018702146352, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 802, - "time": 0.13254675536588426, + "time": 0.13254675536588428, "position": { "x": 3, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 826, + "noteOrder": 827, "time": 0.136563323710305, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 826, + "noteOrder": 827, "time": 0.136563323710305, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 899, + "noteOrder": 900, "time": 0.14861302874356722, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 923, + "noteOrder": 924, "time": 0.15262959708798793, "position": { "x": 7, @@ -474,7 +474,7 @@ }, { "noteOrder": 948, - "time": 0.15664616543240867, + "time": 0.1566461654324087, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 996, + "noteOrder": 997, "time": 0.16467930212125015, "position": { "x": 6, @@ -514,7 +514,7 @@ }, { "noteOrder": 1045, - "time": 0.1727124388100916, + "time": 0.17271243881009163, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1069, + "noteOrder": 1070, "time": 0.17672900715451237, "position": { "x": 7, @@ -554,7 +554,7 @@ }, { "noteOrder": 1094, - "time": 0.1807455754989331, + "time": 0.18074557549893308, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1142, + "noteOrder": 1143, "time": 0.18877871218777456, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1239, - "time": 0.20484498556545752, + "noteOrder": 1240, + "time": 0.2048449855654575, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1385, - "time": 0.2289443956319819, + "noteOrder": 1386, + "time": 0.22894439563198193, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1604, - "time": 0.2650935107317685, + "noteOrder": 1605, + "time": 0.26509351073176857, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1774, - "time": 0.29320948914271366, + "noteOrder": 1775, + "time": 0.2932094891427137, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1798, + "noteOrder": 1799, "time": 0.29722605748713443, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1968, - "time": 0.32534203589807953, + "noteOrder": 1969, + "time": 0.3253420358980796, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.3293586042425003, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.333375172586921, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3373917409313417, + "noteOrder": 2042, + "time": 0.3373917409313418, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.3454248776201832, + "noteOrder": 2091, + "time": 0.34542487762018326, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34944144596460397, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3614911509978662, + "noteOrder": 2188, + "time": 0.36149115099786616, "position": { "x": 5, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2211, - "time": 0.36550771934228693, + "noteOrder": 2212, + "time": 0.3655077193422869, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.3775574243755491, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.3775574243755491, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2625, + "noteOrder": 2626, "time": 0.4337893811974394, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2649, + "noteOrder": 2650, "time": 0.43780594954186014, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2673, - "time": 0.4418225178862809, + "noteOrder": 2674, + "time": 0.44182251788628085, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2698, + "noteOrder": 2699, "time": 0.4458390862307016, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2722, + "noteOrder": 2723, "time": 0.4498556545751224, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2747, "time": 0.4538722229195431, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2770, - "time": 0.4578887912639638, + "noteOrder": 2771, + "time": 0.45788879126396387, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2795, + "noteOrder": 2796, "time": 0.4619053596083846, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2916, + "noteOrder": 2917, "time": 0.48198820133048825, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.48600476967490897, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.49002133801932973, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.49002133801932973, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.49403790636375045, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.49403790636375045, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3015, "time": 0.49805447470817116, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3038, - "time": 0.5020710430525919, + "noteOrder": 3039, + "time": 0.502071043052592, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3062, + "noteOrder": 3063, "time": 0.5060876113970126, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3086, + "noteOrder": 3088, "time": 0.5101041797414334, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3136, "time": 0.5181373164302748, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3184, + "noteOrder": 3185, "time": 0.5261704531191164, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5342035898079578, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3232, + "noteOrder": 3233, "time": 0.5342035898079578, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3256, + "noteOrder": 3258, "time": 0.5382201581523786, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3281, - "time": 0.5422367264967992, + "noteOrder": 3282, + "time": 0.5422367264967993, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3306, "time": 0.54625329484122, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.5502698631856408, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3354, - "time": 0.5542864315300615, + "noteOrder": 3355, + "time": 0.5542864315300614, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3378, - "time": 0.5583029998744822, + "noteOrder": 3379, + "time": 0.5583029998744823, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3427, + "noteOrder": 3428, "time": 0.5663361365633237, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3475, + "noteOrder": 3476, "time": 0.5743692732521651, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3500, + "noteOrder": 3501, "time": 0.5783858415965859, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 3525, "time": 0.5824024099410066, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.5864189782854273, + "noteOrder": 3549, + "time": 0.5864189782854274, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.5864189782854273, + "noteOrder": 3549, + "time": 0.5864189782854274, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3572, + "noteOrder": 3574, "time": 0.5904355466298481, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3572, + "noteOrder": 3574, "time": 0.5904355466298481, "position": { "x": 3, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3621, - "time": 0.5984686833186895, + "noteOrder": 3622, + "time": 0.5984686833186896, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3645, + "noteOrder": 3647, "time": 0.6024852516631103, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3670, + "noteOrder": 3671, "time": 0.6065018200075311, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3718, + "noteOrder": 3720, "time": 0.6145349566963725, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3743, + "noteOrder": 3744, "time": 0.6185515250407932, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3767, - "time": 0.6225680933852139, + "noteOrder": 3768, + "time": 0.622568093385214, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4423, - "time": 0.7310154386845739, + "noteOrder": 4425, + "time": 0.7310154386845737, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4522, "time": 0.7470817120622568, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4593, + "noteOrder": 4595, "time": 0.759131417095519, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4642, + "noteOrder": 4643, "time": 0.7671645537843605, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4690, + "noteOrder": 4692, "time": 0.775197690473202, "position": { "x": 2, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4739, + "noteOrder": 4741, "time": 0.7832308271620434, "position": { "x": 8, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4860, + "noteOrder": 4862, "time": 0.8033136688841471, "position": { "x": 3, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4885, - "time": 0.8073302372285679, + "noteOrder": 4887, + "time": 0.8073302372285678, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.8113468055729885, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4909, + "noteOrder": 4911, "time": 0.8113468055729885, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8153633739174093, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4933, + "noteOrder": 4935, "time": 0.8153633739174093, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5152, + "noteOrder": 5154, "time": 0.8515124890171959, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5176, + "noteOrder": 5178, "time": 0.8555290573616167, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5201, + "noteOrder": 5203, "time": 0.8595456257060374, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5225, + "noteOrder": 5227, "time": 0.8635621940504581, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5249, + "noteOrder": 5251, "time": 0.8675787623948789, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5274, + "noteOrder": 5276, "time": 0.8715953307392996, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5298, + "noteOrder": 5300, "time": 0.8756118990837203, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5322, + "noteOrder": 5324, "time": 0.879628467428141, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5444, + "noteOrder": 5446, "time": 0.8997113091502448, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5468, + "noteOrder": 5470, "time": 0.9037278774946654, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.9077444458390862, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.9077444458390862, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5517, - "time": 0.911761014183507, + "noteOrder": 5519, + "time": 0.9117610141835069, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5517, - "time": 0.911761014183507, + "noteOrder": 5519, + "time": 0.9117610141835069, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5541, - "time": 0.9157775825279276, + "noteOrder": 5543, + "time": 0.9157775825279277, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5565, + "noteOrder": 5567, "time": 0.9197941508723484, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5589, + "noteOrder": 5592, "time": 0.9238107192167692, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5614, + "noteOrder": 5616, "time": 0.9278272875611899, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.9358604242500314, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5711, + "noteOrder": 5713, "time": 0.9438935609388728, "position": { "x": 6, @@ -2576,10 +2576,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.016066273377682943, + "time": 0.01606627337768294, "position": { "x": 7, "y": 0 @@ -2599,7 +2599,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, "time": 0.024099410066524413, @@ -2622,10 +2622,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.032132546755365886, + "time": 0.03213254675536588, "position": { "x": 3, "y": 0 @@ -2645,7 +2645,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, "time": 0.04016568344420735, @@ -2668,7 +2668,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, "time": 0.048198820133048825, @@ -2691,7 +2691,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, "time": 0.0562319568218903, @@ -2714,10 +2714,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, - "time": 0.06426509351073177, + "time": 0.06426509351073176, "position": { "x": 3, "y": 0 @@ -2737,9 +2737,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 437, + "noteOrder": 438, "time": 0.07229823019957324, "position": { "x": 3, @@ -2760,7 +2760,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 486, "time": 0.0803313668884147, @@ -2783,7 +2783,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 583, "time": 0.09639764026609765, @@ -2806,7 +2806,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.09639764026609765, @@ -2829,9 +2829,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 680, + "noteOrder": 681, "time": 0.1124639136437806, "position": { "x": 3, @@ -2852,7 +2852,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 972, "time": 0.1606627337768294, @@ -2875,9 +2875,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 996, + "noteOrder": 997, "time": 0.16467930212125015, "position": { "x": 7, @@ -2898,10 +2898,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1021, - "time": 0.16869587046567086, + "time": 0.1686958704656709, "position": { "x": 3, "y": 0 @@ -2921,10 +2921,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1045, - "time": 0.1727124388100916, + "time": 0.17271243881009163, "position": { "x": 3, "y": 0 @@ -2944,7 +2944,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1167, "time": 0.1927952805321953, @@ -2967,7 +2967,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1191, "time": 0.19681184887661604, @@ -2990,9 +2990,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1215, + "noteOrder": 1216, "time": 0.20082841722103678, "position": { "x": 7, @@ -3013,10 +3013,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1239, - "time": 0.20484498556545752, + "noteOrder": 1240, + "time": 0.2048449855654575, "position": { "x": 7, "y": 0 @@ -3036,7 +3036,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1264, "time": 0.20886155390987823, @@ -3059,9 +3059,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1312, + "noteOrder": 1313, "time": 0.2168946905987197, "position": { "x": 3, @@ -3082,9 +3082,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1312, + "noteOrder": 1313, "time": 0.2168946905987197, "position": { "x": 7, @@ -3105,7 +3105,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1361, "time": 0.2249278272875612, @@ -3128,9 +3128,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1458, + "noteOrder": 1459, "time": 0.24099410066524413, "position": { "x": 7, @@ -3151,7 +3151,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1507, "time": 0.24902723735408558, @@ -3174,10 +3174,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1555, - "time": 0.2570603740429271, + "noteOrder": 1556, + "time": 0.25706037404292703, "position": { "x": 3, "y": 0 @@ -3197,10 +3197,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1604, - "time": 0.2650935107317685, + "noteOrder": 1605, + "time": 0.26509351073176857, "position": { "x": 3, "y": 0 @@ -3220,7 +3220,7 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1653, "time": 0.27312664742061, @@ -3243,9 +3243,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1701, + "noteOrder": 1702, "time": 0.28115978410945147, "position": { "x": 7, @@ -3266,9 +3266,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1701, + "noteOrder": 1702, "time": 0.28115978410945147, "position": { "x": 3, @@ -3289,7 +3289,7 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1750, "time": 0.28919292079829295, @@ -3312,7 +3312,7 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1750, "time": 0.28919292079829295, @@ -3335,9 +3335,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1847, + "noteOrder": 1848, "time": 0.30525919417597586, "position": { "x": 7, @@ -3358,9 +3358,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1847, + "noteOrder": 1848, "time": 0.30525919417597586, "position": { "x": 3, @@ -3381,10 +3381,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1896, - "time": 0.31329233086481734, + "time": 0.3132923308648174, "position": { "x": 3, "y": 0 @@ -3404,10 +3404,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1896, - "time": 0.31329233086481734, + "time": 0.3132923308648174, "position": { "x": 7, "y": 0 @@ -3427,9 +3427,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1944, + "noteOrder": 1945, "time": 0.3213254675536588, "position": { "x": 7, @@ -3450,9 +3450,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1944, + "noteOrder": 1945, "time": 0.3213254675536588, "position": { "x": 3, @@ -3473,10 +3473,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, - "time": 0.3373917409313417, + "noteOrder": 2042, + "time": 0.3373917409313418, "position": { "x": 3, "y": 0 @@ -3496,10 +3496,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2066, - "time": 0.3414083092757625, + "time": 0.34140830927576254, "position": { "x": 3, "y": 0 @@ -3519,9 +3519,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.34944144596460397, "position": { "x": 3, @@ -3542,9 +3542,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.35747458265344545, "position": { "x": 7, @@ -3565,10 +3565,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.36550771934228693, + "noteOrder": 2212, + "time": 0.3655077193422869, "position": { "x": 7, "y": 0 @@ -3588,9 +3588,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2333, + "noteOrder": 2334, "time": 0.3855905610643906, "position": { "x": 7, @@ -3611,7 +3611,7 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2382, "time": 0.3936236977532321, @@ -3634,10 +3634,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2357, - "time": 0.38960712940881137, + "noteOrder": 2358, + "time": 0.3896071294088113, "position": { "x": 3, "y": 0 @@ -3657,7 +3657,7 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2382, "time": 0.3936236977532321, @@ -3680,9 +3680,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2430, + "noteOrder": 2431, "time": 0.40165683444207356, "position": { "x": 7, @@ -3702,11 +3702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2479, - "time": 0.40968997113091504, + "noteOrder": 2455, + "time": 0.4056734027864943, "position": { "x": 7, "y": 0 @@ -3720,18 +3720,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2527, - "time": 0.41772310781975647, + "noteOrder": 2455, + "time": 0.4056734027864943, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3748,13 +3748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2576, - "time": 0.42575624450859795, + "noteOrder": 2480, + "time": 0.409689971130915, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3766,18 +3766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2819, - "time": 0.4659219279528053, + "noteOrder": 2480, + "time": 0.409689971130915, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3794,13 +3794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2868, - "time": 0.4739550646416468, + "noteOrder": 2480, + "time": 0.409689971130915, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3817,11 +3817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3111, - "time": 0.5141207480858542, + "noteOrder": 2504, + "time": 0.41370653947533576, "position": { "x": 7, "y": 0 @@ -3835,18 +3835,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3135, - "time": 0.5181373164302748, + "noteOrder": 2504, + "time": 0.41370653947533576, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3858,18 +3858,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3159, - "time": 0.5221538847746956, + "noteOrder": 2528, + "time": 0.41772310781975647, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3886,13 +3886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3184, - "time": 0.5261704531191164, + "noteOrder": 2528, + "time": 0.41772310781975647, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3909,13 +3909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3402, - "time": 0.5623195682189029, + "noteOrder": 2528, + "time": 0.41772310781975647, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3927,18 +3927,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3427, - "time": 0.5663361365633237, + "noteOrder": 2553, + "time": 0.42173967616417724, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3950,18 +3950,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3451, - "time": 0.5703527049077444, + "noteOrder": 2553, + "time": 0.42173967616417724, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3978,13 +3978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3475, - "time": 0.5743692732521651, + "noteOrder": 2577, + "time": 0.42575624450859795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4001,13 +4001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3597, - "time": 0.5944521149742689, + "noteOrder": 2577, + "time": 0.42575624450859795, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4019,18 +4019,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 3694, - "time": 0.6105183883519517, + "noteOrder": 2577, + "time": 0.42575624450859795, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4047,11 +4047,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3694, - "time": 0.6105183883519517, + "noteOrder": 2601, + "time": 0.4297728128530187, "position": { "x": 7, "y": 0 @@ -4065,18 +4065,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3791, - "time": 0.6265846617296347, + "noteOrder": 2601, + "time": 0.4297728128530187, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4088,18 +4088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3791, - "time": 0.6265846617296347, + "noteOrder": 2626, + "time": 0.4337893811974394, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4116,13 +4116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3840, - "time": 0.6346177984184762, + "noteOrder": 2626, + "time": 0.4337893811974394, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4139,11 +4139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3840, - "time": 0.6346177984184762, + "noteOrder": 2820, + "time": 0.4659219279528053, "position": { "x": 7, "y": 0 @@ -4162,11 +4162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3888, - "time": 0.6426509351073176, + "noteOrder": 2844, + "time": 0.469938496297226, "position": { "x": 7, "y": 0 @@ -4185,13 +4185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3888, - "time": 0.6426509351073176, + "noteOrder": 2844, + "time": 0.469938496297226, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4203,16 +4203,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 3937, - "time": 0.6506840717961591, + "noteOrder": 2869, + "time": 0.4739550646416468, "position": { "x": 3, "y": 0 @@ -4231,13 +4231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3913, - "time": 0.6466675034517384, + "noteOrder": 2893, + "time": 0.47797163298606754, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4249,18 +4249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3937, - "time": 0.6506840717961591, + "noteOrder": 2893, + "time": 0.47797163298606754, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4272,18 +4272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4180, - "time": 0.6908497552403664, + "noteOrder": 3112, + "time": 0.5141207480858541, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4295,18 +4295,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4229, - "time": 0.6988828919292079, + "noteOrder": 3136, + "time": 0.5181373164302748, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4318,18 +4318,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.6988828919292079, + "noteOrder": 3160, + "time": 0.5221538847746956, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4341,18 +4341,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4277, - "time": 0.7069160286180495, + "noteOrder": 3185, + "time": 0.5261704531191164, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4364,16 +4364,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.7069160286180495, + "noteOrder": 3404, + "time": 0.5623195682189029, "position": { "x": 3, "y": 0 @@ -4392,11 +4392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, - "time": 0.7149491653068909, + "noteOrder": 3428, + "time": 0.5663361365633237, "position": { "x": 3, "y": 0 @@ -4415,11 +4415,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.7149491653068909, + "noteOrder": 3452, + "time": 0.5703527049077445, "position": { "x": 7, "y": 0 @@ -4438,11 +4438,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4374, - "time": 0.7229823019957324, + "noteOrder": 3476, + "time": 0.5743692732521651, "position": { "x": 7, "y": 0 @@ -4461,11 +4461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4374, - "time": 0.7229823019957324, + "noteOrder": 3598, + "time": 0.5944521149742689, "position": { "x": 3, "y": 0 @@ -4483,14 +4483,773 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6105183883519517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6105183883519517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3793, + "time": 0.6265846617296348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3793, + "time": 0.6265846617296348, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3841, + "time": 0.6346177984184762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3841, + "time": 0.6346177984184762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3890, + "time": 0.6426509351073176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3890, + "time": 0.6426509351073176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3938, + "time": 0.6506840717961592, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3914, + "time": 0.6466675034517384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3938, + "time": 0.6506840717961592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4182, + "time": 0.6908497552403665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4230, + "time": 0.6988828919292079, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4230, + "time": 0.6988828919292079, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4279, + "time": 0.7069160286180495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4279, + "time": 0.7069160286180495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4327, + "time": 0.7149491653068909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.7149491653068909, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4376, + "time": 0.7229823019957323, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7310154386845739, + "noteOrder": 4376, + "time": 0.7229823019957323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4425, + "time": 0.7310154386845737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4473, + "time": 0.7390485753734154, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4522, + "time": 0.7470817120622568, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4570, + "time": 0.7551148487510982, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4595, + "time": 0.759131417095519, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4619, + "time": 0.7631479854399397, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4643, + "time": 0.7671645537843605, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4668, + "time": 0.7711811221287812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4692, + "time": 0.775197690473202, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4716, + "time": 0.7792142588176226, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4741, + "time": 0.7832308271620434, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7872473955064642, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7952805321953057, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7952805321953057, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4502,16 +5261,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4472, - "time": 0.7390485753734154, + "noteOrder": 4862, + "time": 0.8033136688841471, "position": { "x": 7, "y": 0 @@ -4530,13 +5289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 4520, - "time": 0.7470817120622568, + "noteOrder": 4959, + "time": 0.81937994226183, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4548,16 +5307,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4569, - "time": 0.7551148487510982, + "noteOrder": 4984, + "time": 0.8233965106062507, "position": { "x": 3, "y": 0 @@ -4576,13 +5335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4593, - "time": 0.759131417095519, + "noteOrder": 4984, + "time": 0.8233965106062507, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4599,13 +5358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4617, - "time": 0.7631479854399398, + "noteOrder": 5008, + "time": 0.8274130789506715, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4617,18 +5376,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5008, + "time": 0.8274130789506715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 4642, - "time": 0.7671645537843605, + "noteOrder": 5008, + "time": 0.8274130789506715, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4645,13 +5427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4666, - "time": 0.7711811221287812, + "noteOrder": 5032, + "time": 0.8314296472950923, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4663,16 +5445,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4690, - "time": 0.775197690473202, + "noteOrder": 5032, + "time": 0.8314296472950923, "position": { "x": 4, "y": 0 @@ -4686,18 +5468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4715, - "time": 0.7792142588176227, + "noteOrder": 5057, + "time": 0.8354462156395129, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4714,13 +5496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4739, - "time": 0.7832308271620434, + "noteOrder": 5057, + "time": 0.8354462156395129, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4737,11 +5519,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4763, - "time": 0.7872473955064642, + "noteOrder": 5057, + "time": 0.8354462156395129, "position": { "x": 3, "y": 0 @@ -4760,11 +5542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4812, - "time": 0.7952805321953056, + "noteOrder": 5081, + "time": 0.8394627839839337, "position": { "x": 3, "y": 0 @@ -4783,13 +5565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4812, - "time": 0.7952805321953056, + "noteOrder": 5081, + "time": 0.8394627839839337, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4801,18 +5583,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4860, - "time": 0.8033136688841471, + "noteOrder": 5105, + "time": 0.8434793523283545, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4824,18 +5606,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4958, - "time": 0.8193799422618301, + "noteOrder": 5105, + "time": 0.8434793523283545, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4852,11 +5634,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.8274130789506715, + "noteOrder": 5105, + "time": 0.8434793523283545, "position": { "x": 3, "y": 0 @@ -4875,11 +5657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5055, - "time": 0.8354462156395129, + "noteOrder": 5130, + "time": 0.8474959206727751, "position": { "x": 3, "y": 0 @@ -4893,18 +5675,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5103, - "time": 0.8434793523283545, + "noteOrder": 5130, + "time": 0.8474959206727751, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5154, + "time": 0.8515124890171959, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5154, + "time": 0.8515124890171959, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4922,10 +5750,33 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5348, + "time": 0.8836450357725617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5346, - "time": 0.8836450357725618, + "noteOrder": 5373, + "time": 0.8876616041169826, "position": { "x": 3, "y": 0 @@ -4943,11 +5794,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5373, + "time": 0.8876616041169826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5395, + "noteOrder": 5397, "time": 0.8916781724614032, "position": { "x": 7, @@ -4966,11 +5840,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5421, + "time": 0.895694740805824, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5421, + "time": 0.895694740805824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5638, + "noteOrder": 5640, "time": 0.9318438559056106, "position": { "x": 3, @@ -4991,9 +5911,9 @@ }, { "lineGroupId": 191, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.9358604242500314, "position": { "x": 3, @@ -5014,10 +5934,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5687, - "time": 0.9398769925944521, + "noteOrder": 5689, + "time": 0.939876992594452, "position": { "x": 7, "y": 0 @@ -5037,9 +5957,9 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5711, + "noteOrder": 5713, "time": 0.9438935609388728, "position": { "x": 7, @@ -5060,9 +5980,9 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5737, "time": 0.9479101292832935, "position": { "x": 3, @@ -5083,9 +6003,9 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9639764026609765, "position": { "x": 3, @@ -5106,9 +6026,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9639764026609765, "position": { "x": 7, @@ -5129,9 +6049,9 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5930, + "noteOrder": 5932, "time": 0.9800426760386595, "position": { "x": 7, diff --git a/tracks/Polar Night/info.json b/tracks/Polar Night/info.json index b630506e..cf6bd60d 100644 --- a/tracks/Polar Night/info.json +++ b/tracks/Polar Night/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Polar Night", - "SongLength": "138.187755", + "SongLength": "128.235102", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Pretender/321_difficulty_1a.json b/tracks/Pretender/321_difficulty_1a.json index d8cfe711..1b6d77ea 100644 --- a/tracks/Pretender/321_difficulty_1a.json +++ b/tracks/Pretender/321_difficulty_1a.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 145, "time": 0.03109311740890688, "position": { "x": 5, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 433, - "time": 0.09327935222672064, + "noteOrder": 434, + "time": 0.09327935222672065, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 458, - "time": 0.09846153846153846, + "time": 0.09846153846153845, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 506, - "time": 0.1088259109311741, + "time": 0.10882591093117408, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 722, + "noteOrder": 723, "time": 0.15546558704453442, "position": { "x": 6, @@ -314,7 +314,7 @@ }, { "noteOrder": 795, - "time": 0.17101214574898788, + "time": 0.17101214574898785, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 819, - "time": 0.17619433198380566, + "time": 0.17619433198380569, "position": { "x": 3, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 843, - "time": 0.18137651821862347, + "time": 0.1813765182186235, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 915, - "time": 0.19692307692307692, + "time": 0.1969230769230769, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 939, - "time": 0.20210526315789473, + "noteOrder": 940, + "time": 0.2021052631578947, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 987, - "time": 0.21246963562753038, + "noteOrder": 988, + "time": 0.21246963562753035, "position": { "x": 5, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1011, - "time": 0.2176518218623482, + "noteOrder": 1012, + "time": 0.21765182186234816, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1180, - "time": 0.2539271255060728, + "time": 0.2539271255060729, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1205, "time": 0.2591093117408907, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1228, + "noteOrder": 1229, "time": 0.2642914979757085, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1276, + "noteOrder": 1277, "time": 0.2746558704453441, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1469, + "noteOrder": 1470, "time": 0.31611336032388665, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1493, + "noteOrder": 1494, "time": 0.32129554655870446, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1517, + "noteOrder": 1518, "time": 0.32647773279352227, "position": { "x": 5, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1589, - "time": 0.34202429149797575, + "noteOrder": 1590, + "time": 0.3420242914979757, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1710, - "time": 0.36793522267206474, + "time": 0.3679352226720648, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1782, + "noteOrder": 1783, "time": 0.3834817813765182, "position": { "x": 5, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1806, - "time": 0.38866396761133604, + "noteOrder": 1807, + "time": 0.388663967611336, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1999, - "time": 0.43012145748987857, + "noteOrder": 2000, + "time": 0.4301214574898785, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2095, + "noteOrder": 2096, "time": 0.45085020242914975, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2167, + "noteOrder": 2168, "time": 0.46639676113360323, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2179, + "noteOrder": 2180, "time": 0.46898785425101214, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2191, + "noteOrder": 2192, "time": 0.47157894736842104, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2288, + "noteOrder": 2289, "time": 0.4923076923076923, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2384, - "time": 0.5130364372469635, + "noteOrder": 2385, + "time": 0.5130364372469636, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2408, + "noteOrder": 2409, "time": 0.5182186234817814, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2432, + "noteOrder": 2433, "time": 0.5234008097165992, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.5337651821862348, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2529, + "noteOrder": 2530, "time": 0.5441295546558704, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2553, + "noteOrder": 2554, "time": 0.5493117408906882, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2577, + "noteOrder": 2578, "time": 0.554493927125506, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2625, + "noteOrder": 2626, "time": 0.5648582995951417, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2649, + "noteOrder": 2650, "time": 0.5700404858299595, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.5752226720647773, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2721, + "noteOrder": 2722, "time": 0.5855870445344129, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.5907692307692307, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2818, + "noteOrder": 2819, "time": 0.6063157894736843, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2866, + "noteOrder": 2867, "time": 0.6166801619433199, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2938, + "noteOrder": 2939, "time": 0.6322267206477733, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 2951, "time": 0.6348178137651822, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 2963, "time": 0.6374089068825911, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3036, "time": 0.6529554655870445, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 3048, "time": 0.6555465587044534, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3058, + "noteOrder": 3060, "time": 0.6581376518218623, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3131, + "noteOrder": 3132, "time": 0.6736842105263158, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3143, + "noteOrder": 3144, "time": 0.6762753036437247, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3179, - "time": 0.6840485829959515, + "noteOrder": 3180, + "time": 0.6840485829959514, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3251, + "noteOrder": 3252, "time": 0.6995951417004048, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3299, - "time": 0.7099595141700404, + "noteOrder": 3301, + "time": 0.7099595141700406, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3323, - "time": 0.7151417004048582, + "noteOrder": 3325, + "time": 0.7151417004048584, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3347, - "time": 0.7203238866396761, + "noteOrder": 3349, + "time": 0.7203238866396762, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3420, - "time": 0.7358704453441295, + "noteOrder": 3421, + "time": 0.7358704453441296, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3432, - "time": 0.7384615384615384, + "noteOrder": 3433, + "time": 0.7384615384615385, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.7410526315789473, + "noteOrder": 3445, + "time": 0.7410526315789474, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3588, - "time": 0.7721457489878543, + "noteOrder": 3590, + "time": 0.7721457489878542, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3636, - "time": 0.7825101214574899, + "noteOrder": 3638, + "time": 0.7825101214574898, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3709, - "time": 0.7980566801619433, + "noteOrder": 3710, + "time": 0.7980566801619432, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3721, - "time": 0.8006477732793522, + "noteOrder": 3722, + "time": 0.8006477732793521, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3733, - "time": 0.8032388663967611, + "noteOrder": 3734, + "time": 0.803238866396761, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.8187854251012145, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3817, + "noteOrder": 3818, "time": 0.8213765182186235, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3829, + "noteOrder": 3831, "time": 0.8239676113360324, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3901, - "time": 0.8395141700404859, + "noteOrder": 3903, + "time": 0.8395141700404858, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3913, - "time": 0.8421052631578948, + "noteOrder": 3915, + "time": 0.8421052631578947, "position": { "x": 5, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3949, - "time": 0.8498785425101215, + "noteOrder": 3951, + "time": 0.8498785425101214, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3998, - "time": 0.8602429149797571, + "noteOrder": 3999, + "time": 0.860242914979757, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3998, - "time": 0.8602429149797571, + "noteOrder": 3999, + "time": 0.860242914979757, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4022, - "time": 0.8654251012145749, + "noteOrder": 4023, + "time": 0.8654251012145748, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.8706072874493928, + "noteOrder": 4047, + "time": 0.8706072874493926, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4070, - "time": 0.8757894736842106, + "noteOrder": 4071, + "time": 0.8757894736842105, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4094, - "time": 0.8809716599190284, + "noteOrder": 4096, + "time": 0.8809716599190283, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4118, - "time": 0.8861538461538462, + "noteOrder": 4120, + "time": 0.8861538461538461, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4263, - "time": 0.917246963562753, + "noteOrder": 4264, + "time": 0.9172469635627529, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4287, + "noteOrder": 4288, "time": 0.9224291497975708, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4311, + "noteOrder": 4312, "time": 0.9276113360323887, "position": { "x": 3, @@ -1996,7 +1996,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.020728744939271255, @@ -2019,9 +2019,9 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 144, + "noteOrder": 145, "time": 0.03109311740890688, "position": { "x": 7, @@ -2042,7 +2042,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.04145748987854251, @@ -2065,7 +2065,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, "time": 0.051821862348178135, @@ -2088,7 +2088,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.06218623481781376, @@ -2111,7 +2111,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.07255060728744939, @@ -2134,7 +2134,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.08291497975708502, @@ -2157,10 +2157,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 433, - "time": 0.09327935222672064, + "noteOrder": 434, + "time": 0.09327935222672065, "position": { "x": 3, "y": 0 @@ -2180,7 +2180,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, "time": 0.16582995951417004, @@ -2203,10 +2203,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 819, - "time": 0.17619433198380566, + "time": 0.17619433198380569, "position": { "x": 6, "y": 0 @@ -2226,10 +2226,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 867, - "time": 0.18655870445344128, + "time": 0.1865587044534413, "position": { "x": 3, "y": 0 @@ -2249,10 +2249,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 915, - "time": 0.19692307692307692, + "time": 0.1969230769230769, "position": { "x": 3, "y": 0 @@ -2272,9 +2272,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 963, + "noteOrder": 964, "time": 0.20728744939271254, "position": { "x": 7, @@ -2295,10 +2295,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1011, - "time": 0.2176518218623482, + "noteOrder": 1012, + "time": 0.21765182186234816, "position": { "x": 7, "y": 0 @@ -2318,7 +2318,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1060, "time": 0.22801619433198378, @@ -2341,7 +2341,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1156, "time": 0.24874493927125504, @@ -2364,7 +2364,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1156, "time": 0.24874493927125504, @@ -2387,9 +2387,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.2694736842105263, "position": { "x": 6, @@ -2410,9 +2410,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.2694736842105263, "position": { "x": 3, @@ -2433,9 +2433,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.27983805668016193, "position": { "x": 4, @@ -2456,9 +2456,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.27983805668016193, "position": { "x": 7, @@ -2479,7 +2479,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1349, "time": 0.29020242914979755, @@ -2502,7 +2502,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1349, "time": 0.29020242914979755, @@ -2525,7 +2525,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1373, "time": 0.29538461538461536, @@ -2548,7 +2548,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1373, "time": 0.29538461538461536, @@ -2571,7 +2571,7 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1397, "time": 0.3005668016194332, @@ -2594,7 +2594,7 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1397, "time": 0.3005668016194332, @@ -2617,7 +2617,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1421, "time": 0.30574898785425103, @@ -2640,7 +2640,7 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1421, "time": 0.30574898785425103, @@ -2663,7 +2663,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, "time": 0.31093117408906884, @@ -2686,9 +2686,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.3316599190283401, "position": { "x": 5, @@ -2709,10 +2709,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1589, - "time": 0.34202429149797575, + "noteOrder": 1590, + "time": 0.3420242914979757, "position": { "x": 5, "y": 0 @@ -2732,10 +2732,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1638, - "time": 0.3523886639676113, + "time": 0.35238866396761137, "position": { "x": 4, "y": 0 @@ -2755,10 +2755,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1686, - "time": 0.36275303643724693, + "time": 0.362753036437247, "position": { "x": 4, "y": 0 @@ -2778,10 +2778,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1638, - "time": 0.3523886639676113, + "time": 0.35238866396761137, "position": { "x": 6, "y": 0 @@ -2801,10 +2801,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1686, - "time": 0.36275303643724693, + "time": 0.362753036437247, "position": { "x": 6, "y": 0 @@ -2824,10 +2824,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1734, - "time": 0.37311740890688255, + "noteOrder": 1735, + "time": 0.3731174089068826, "position": { "x": 7, "y": 0 @@ -2847,9 +2847,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1782, + "noteOrder": 1783, "time": 0.3834817813765182, "position": { "x": 7, @@ -2870,10 +2870,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1830, - "time": 0.39384615384615385, + "noteOrder": 1831, + "time": 0.3938461538461538, "position": { "x": 6, "y": 0 @@ -2893,10 +2893,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1878, - "time": 0.40421052631578946, + "noteOrder": 1879, + "time": 0.4042105263157894, "position": { "x": 7, "y": 0 @@ -2916,10 +2916,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1830, - "time": 0.39384615384615385, + "noteOrder": 1831, + "time": 0.3938461538461538, "position": { "x": 3, "y": 0 @@ -2939,10 +2939,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1878, - "time": 0.40421052631578946, + "noteOrder": 1879, + "time": 0.4042105263157894, "position": { "x": 4, "y": 0 @@ -2962,7 +2962,7 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1927, "time": 0.4145748987854251, @@ -2985,10 +2985,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1975, - "time": 0.42493927125506076, + "time": 0.4249392712550607, "position": { "x": 7, "y": 0 @@ -3008,7 +3008,7 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1927, "time": 0.4145748987854251, @@ -3031,10 +3031,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1975, - "time": 0.42493927125506076, + "time": 0.4249392712550607, "position": { "x": 3, "y": 0 @@ -3054,10 +3054,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2023, - "time": 0.4353036437246964, + "noteOrder": 2024, + "time": 0.4353036437246963, "position": { "x": 3, "y": 0 @@ -3077,9 +3077,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2071, + "noteOrder": 2072, "time": 0.44566801619433194, "position": { "x": 4, @@ -3100,10 +3100,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2023, - "time": 0.4353036437246964, + "noteOrder": 2024, + "time": 0.4353036437246963, "position": { "x": 6, "y": 0 @@ -3123,9 +3123,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2071, + "noteOrder": 2072, "time": 0.44566801619433194, "position": { "x": 7, @@ -3146,9 +3146,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2119, + "noteOrder": 2120, "time": 0.45603238866396756, "position": { "x": 4, @@ -3169,9 +3169,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2143, + "noteOrder": 2144, "time": 0.4612145748987854, "position": { "x": 4, @@ -3192,9 +3192,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2143, + "noteOrder": 2144, "time": 0.4612145748987854, "position": { "x": 7, @@ -3215,9 +3215,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2167, + "noteOrder": 2168, "time": 0.46639676113360323, "position": { "x": 7, @@ -3238,7 +3238,7 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2216, "time": 0.47676113360323885, @@ -3260,11 +3260,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2240, - "time": 0.48194331983805666, + "noteOrder": 2228, + "time": 0.47935222672064776, "position": { "x": 7, "y": 0 @@ -3278,18 +3278,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2264, - "time": 0.48712550607287447, + "noteOrder": 2228, + "time": 0.47935222672064776, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3306,13 +3306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2312, - "time": 0.4974898785425101, + "noteOrder": 2240, + "time": 0.48194331983805666, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3329,13 +3329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2336, - "time": 0.502672064777328, + "noteOrder": 2253, + "time": 0.48453441295546557, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3347,18 +3347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2360, - "time": 0.5078542510121457, + "noteOrder": 2253, + "time": 0.48453441295546557, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3375,13 +3375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2456, - "time": 0.528582995951417, + "noteOrder": 2265, + "time": 0.48712550607287447, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3393,18 +3393,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2505, - "time": 0.5389473684210526, + "noteOrder": 2277, + "time": 0.4897165991902834, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3416,18 +3416,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2505, - "time": 0.5389473684210526, + "noteOrder": 2277, + "time": 0.4897165991902834, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3444,13 +3444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2553, - "time": 0.5493117408906882, + "noteOrder": 2313, + "time": 0.4974898785425101, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3462,16 +3462,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2601, - "time": 0.5596761133603239, + "noteOrder": 2325, + "time": 0.500080971659919, "position": { "x": 3, "y": 0 @@ -3490,13 +3490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2697, - "time": 0.5804048582995951, + "noteOrder": 2325, + "time": 0.500080971659919, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3513,13 +3513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2697, - "time": 0.5804048582995951, + "noteOrder": 2337, + "time": 0.502672064777328, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3536,13 +3536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2769, - "time": 0.5959514170040485, + "noteOrder": 2349, + "time": 0.5052631578947369, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3559,13 +3559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2794, - "time": 0.6011336032388664, + "noteOrder": 2349, + "time": 0.5052631578947369, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3582,13 +3582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2842, - "time": 0.6114979757085021, + "noteOrder": 2361, + "time": 0.5078542510121458, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3605,11 +3605,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2890, - "time": 0.6218623481781377, + "noteOrder": 2373, + "time": 0.5104453441295547, "position": { "x": 3, "y": 0 @@ -3628,13 +3628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2914, - "time": 0.6270445344129555, + "noteOrder": 2373, + "time": 0.5104453441295547, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3651,13 +3651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2914, - "time": 0.6270445344129555, + "noteOrder": 2457, + "time": 0.528582995951417, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3669,18 +3669,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2938, - "time": 0.6322267206477733, + "noteOrder": 2505, + "time": 0.5389473684210526, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3692,18 +3692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2986, - "time": 0.6425910931174089, + "noteOrder": 2505, + "time": 0.5389473684210526, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3720,11 +3720,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3010, - "time": 0.6477732793522267, + "noteOrder": 2554, + "time": 0.5493117408906882, "position": { "x": 6, "y": 0 @@ -3743,11 +3743,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3010, - "time": 0.6477732793522267, + "noteOrder": 2602, + "time": 0.5596761133603239, "position": { "x": 3, "y": 0 @@ -3766,13 +3766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3034, - "time": 0.6529554655870445, + "noteOrder": 2698, + "time": 0.5804048582995951, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3789,13 +3789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3083, - "time": 0.6633198380566802, + "noteOrder": 2698, + "time": 0.5804048582995951, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3807,18 +3807,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3107, - "time": 0.668502024291498, + "noteOrder": 2771, + "time": 0.5959514170040486, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3830,15 +3830,383 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2795, + "time": 0.6011336032388664, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2807, + "time": 0.6037246963562753, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2807, + "time": 0.6037246963562753, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2843, + "time": 0.6114979757085021, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2855, + "time": 0.614089068825911, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2855, + "time": 0.614089068825911, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2891, + "time": 0.6218623481781377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6270445344129555, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2915, + "time": 0.6270445344129555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2939, + "time": 0.6322267206477733, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2987, + "time": 0.6425910931174089, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3011, + "time": 0.6477732793522267, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3011, + "time": 0.6477732793522267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3036, + "time": 0.6529554655870445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3084, + "time": 0.6633198380566802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3108, + "time": 0.668502024291498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3107, + "noteOrder": 3108, "time": 0.668502024291498, "position": { "x": 6, @@ -3859,9 +4227,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3131, + "noteOrder": 3132, "time": 0.6736842105263158, "position": { "x": 6, @@ -3882,10 +4250,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3155, - "time": 0.6788663967611337, + "noteOrder": 3156, + "time": 0.6788663967611336, "position": { "x": 7, "y": 0 @@ -3905,10 +4273,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3179, - "time": 0.6840485829959515, + "noteOrder": 3180, + "time": 0.6840485829959514, "position": { "x": 7, "y": 0 @@ -3928,9 +4296,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3227, + "noteOrder": 3228, "time": 0.694412955465587, "position": { "x": 3, @@ -3951,10 +4319,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3275, - "time": 0.7047773279352226, + "noteOrder": 3276, + "time": 0.7047773279352227, "position": { "x": 3, "y": 0 @@ -3974,10 +4342,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3275, - "time": 0.7047773279352226, + "noteOrder": 3276, + "time": 0.7047773279352227, "position": { "x": 6, "y": 0 @@ -3997,10 +4365,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3323, - "time": 0.7151417004048582, + "noteOrder": 3325, + "time": 0.7151417004048584, "position": { "x": 6, "y": 0 @@ -4020,10 +4388,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3372, - "time": 0.7255060728744939, + "noteOrder": 3373, + "time": 0.725506072874494, "position": { "x": 3, "y": 0 @@ -4043,10 +4411,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3396, - "time": 0.7306882591093117, + "noteOrder": 3397, + "time": 0.7306882591093118, "position": { "x": 3, "y": 0 @@ -4066,10 +4434,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3396, - "time": 0.7306882591093117, + "noteOrder": 3397, + "time": 0.7306882591093118, "position": { "x": 6, "y": 0 @@ -4089,10 +4457,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3420, - "time": 0.7358704453441295, + "noteOrder": 3421, + "time": 0.7358704453441296, "position": { "x": 6, "y": 0 @@ -4112,10 +4480,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3468, - "time": 0.7462348178137651, + "noteOrder": 3469, + "time": 0.7462348178137652, "position": { "x": 7, "y": 0 @@ -4135,10 +4503,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3492, - "time": 0.7514170040485829, + "noteOrder": 3493, + "time": 0.751417004048583, "position": { "x": 7, "y": 0 @@ -4158,10 +4526,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3492, - "time": 0.7514170040485829, + "noteOrder": 3493, + "time": 0.751417004048583, "position": { "x": 4, "y": 0 @@ -4181,10 +4549,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3516, - "time": 0.7565991902834007, + "noteOrder": 3517, + "time": 0.7565991902834008, "position": { "x": 4, "y": 0 @@ -4204,10 +4572,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3516, - "time": 0.7565991902834007, + "noteOrder": 3517, + "time": 0.7565991902834008, "position": { "x": 7, "y": 0 @@ -4227,9 +4595,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3540, + "noteOrder": 3541, "time": 0.7617813765182186, "position": { "x": 6, @@ -4250,9 +4618,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3564, + "noteOrder": 3566, "time": 0.7669635627530365, "position": { "x": 3, @@ -4271,12 +4639,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3578, + "time": 0.7695546558704454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3578, + "time": 0.7695546558704454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3612, - "time": 0.7773279352226721, + "noteOrder": 3614, + "time": 0.777327935222672, "position": { "x": 3, "y": 0 @@ -4294,12 +4708,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3626, + "time": 0.7799190283400809, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3626, + "time": 0.7799190283400809, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3661, - "time": 0.7876923076923077, + "noteOrder": 3662, + "time": 0.7876923076923076, "position": { "x": 7, "y": 0 @@ -4319,10 +4779,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3685, - "time": 0.7928744939271255, + "noteOrder": 3686, + "time": 0.7928744939271254, "position": { "x": 7, "y": 0 @@ -4342,10 +4802,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3685, - "time": 0.7928744939271255, + "noteOrder": 3686, + "time": 0.7928744939271254, "position": { "x": 3, "y": 0 @@ -4365,10 +4825,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3709, - "time": 0.7980566801619433, + "noteOrder": 3710, + "time": 0.7980566801619432, "position": { "x": 3, "y": 0 @@ -4388,10 +4848,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3757, - "time": 0.8084210526315789, + "noteOrder": 3758, + "time": 0.8084210526315788, "position": { "x": 4, "y": 0 @@ -4411,9 +4871,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3781, + "noteOrder": 3782, "time": 0.8136032388663967, "position": { "x": 4, @@ -4434,9 +4894,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3781, + "noteOrder": 3782, "time": 0.8136032388663967, "position": { "x": 7, @@ -4457,9 +4917,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.8187854251012145, "position": { "x": 7, @@ -4480,9 +4940,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3853, + "noteOrder": 3855, "time": 0.8291497975708502, "position": { "x": 7, @@ -4503,9 +4963,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3877, + "noteOrder": 3879, "time": 0.834331983805668, "position": { "x": 7, @@ -4526,9 +4986,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3877, + "noteOrder": 3879, "time": 0.834331983805668, "position": { "x": 3, @@ -4549,10 +5009,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3901, - "time": 0.8395141700404859, + "noteOrder": 3903, + "time": 0.8395141700404858, "position": { "x": 3, "y": 0 @@ -4572,10 +5032,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3925, - "time": 0.8446963562753037, + "noteOrder": 3927, + "time": 0.8446963562753036, "position": { "x": 3, "y": 0 @@ -4595,10 +5055,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3949, - "time": 0.8498785425101215, + "noteOrder": 3951, + "time": 0.8498785425101214, "position": { "x": 3, "y": 0 @@ -4618,9 +5078,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4142, + "noteOrder": 4144, "time": 0.8913360323886639, "position": { "x": 4, @@ -4641,9 +5101,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.9017004048582995, "position": { "x": 4, @@ -4664,9 +5124,9 @@ }, { "lineGroupId": 167, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.9120647773279351, "position": { "x": 6, @@ -4687,9 +5147,9 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4142, + "noteOrder": 4144, "time": 0.8913360323886639, "position": { "x": 6, @@ -4710,9 +5170,9 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.9017004048582995, "position": { "x": 6, @@ -4733,9 +5193,9 @@ }, { "lineGroupId": 168, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.9120647773279351, "position": { "x": 4, @@ -4756,9 +5216,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4335, + "noteOrder": 4336, "time": 0.9327935222672065, "position": { "x": 4, @@ -4779,9 +5239,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4527, + "noteOrder": 4529, "time": 0.9742510121457489, "position": { "x": 4, @@ -4802,9 +5262,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4335, + "noteOrder": 4336, "time": 0.9327935222672065, "position": { "x": 6, @@ -4825,9 +5285,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4527, + "noteOrder": 4529, "time": 0.9742510121457489, "position": { "x": 6, diff --git a/tracks/Pretender/321_difficulty_1b.json b/tracks/Pretender/321_difficulty_1b.json index ebadfbd7..aae92b4a 100644 --- a/tracks/Pretender/321_difficulty_1b.json +++ b/tracks/Pretender/321_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 145, "time": 0.03109311740890688, "position": { "x": 3, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 722, + "noteOrder": 723, "time": 0.15546558704453442, "position": { "x": 7, @@ -194,7 +194,7 @@ }, { "noteOrder": 819, - "time": 0.17619433198380566, + "time": 0.17619433198380569, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 915, - "time": 0.19692307692307692, + "time": 0.1969230769230769, "position": { "x": 7, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1011, - "time": 0.2176518218623482, + "noteOrder": 1012, + "time": 0.21765182186234816, "position": { "x": 4, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1205, "time": 0.2591093117408907, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1493, + "noteOrder": 1494, "time": 0.32129554655870446, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1517, + "noteOrder": 1518, "time": 0.32647773279352227, "position": { "x": 2, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1589, - "time": 0.34202429149797575, + "noteOrder": 1590, + "time": 0.3420242914979757, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1710, - "time": 0.36793522267206474, + "time": 0.3679352226720648, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1830, - "time": 0.39384615384615385, + "noteOrder": 1831, + "time": 0.3938461538461538, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1854, - "time": 0.39902834008097166, + "noteOrder": 1855, + "time": 0.3990283400809716, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1951, - "time": 0.41975708502024295, + "time": 0.4197570850202429, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2023, - "time": 0.4353036437246964, + "noteOrder": 2024, + "time": 0.4353036437246963, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2047, - "time": 0.4404858299595142, + "noteOrder": 2048, + "time": 0.44048582995951413, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2119, + "noteOrder": 2120, "time": 0.45603238866396756, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2143, + "noteOrder": 2144, "time": 0.4612145748987854, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2167, + "noteOrder": 2168, "time": 0.46639676113360323, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2179, + "noteOrder": 2180, "time": 0.46898785425101214, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2191, + "noteOrder": 2192, "time": 0.47157894736842104, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2312, + "noteOrder": 2313, "time": 0.4974898785425101, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2336, + "noteOrder": 2337, "time": 0.502672064777328, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2408, + "noteOrder": 2409, "time": 0.5182186234817814, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.5337651821862348, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2529, + "noteOrder": 2530, "time": 0.5441295546558704, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2553, + "noteOrder": 2554, "time": 0.5493117408906882, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2577, + "noteOrder": 2578, "time": 0.554493927125506, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2649, + "noteOrder": 2650, "time": 0.5700404858299595, "position": { "x": 8, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.5907692307692307, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2794, + "noteOrder": 2795, "time": 0.6011336032388664, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2818, + "noteOrder": 2819, "time": 0.6063157894736843, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2842, + "noteOrder": 2843, "time": 0.6114979757085021, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2866, + "noteOrder": 2867, "time": 0.6166801619433199, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2890, + "noteOrder": 2891, "time": 0.6218623481781377, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2914, + "noteOrder": 2915, "time": 0.6270445344129555, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2938, + "noteOrder": 2939, "time": 0.6322267206477733, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 2951, "time": 0.6348178137651822, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 2963, "time": 0.6374089068825911, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2986, + "noteOrder": 2987, "time": 0.6425910931174089, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3010, + "noteOrder": 3011, "time": 0.6477732793522267, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3036, "time": 0.6529554655870445, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 3048, "time": 0.6555465587044534, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3058, + "noteOrder": 3060, "time": 0.6581376518218623, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.6633198380566802, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3107, + "noteOrder": 3108, "time": 0.668502024291498, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3131, + "noteOrder": 3132, "time": 0.6736842105263158, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3143, + "noteOrder": 3144, "time": 0.6762753036437247, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3155, - "time": 0.6788663967611337, + "noteOrder": 3156, + "time": 0.6788663967611336, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3227, + "noteOrder": 3228, "time": 0.694412955465587, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3251, + "noteOrder": 3252, "time": 0.6995951417004048, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3323, - "time": 0.7151417004048582, + "noteOrder": 3325, + "time": 0.7151417004048584, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3347, - "time": 0.7203238866396761, + "noteOrder": 3349, + "time": 0.7203238866396762, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3444, - "time": 0.7410526315789473, + "noteOrder": 3445, + "time": 0.7410526315789474, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3564, + "noteOrder": 3566, "time": 0.7669635627530365, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3588, - "time": 0.7721457489878543, + "noteOrder": 3590, + "time": 0.7721457489878542, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3612, - "time": 0.7773279352226721, + "noteOrder": 3614, + "time": 0.777327935222672, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3636, - "time": 0.7825101214574899, + "noteOrder": 3638, + "time": 0.7825101214574898, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3661, - "time": 0.7876923076923077, + "noteOrder": 3662, + "time": 0.7876923076923076, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3685, - "time": 0.7928744939271255, + "noteOrder": 3686, + "time": 0.7928744939271254, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3709, - "time": 0.7980566801619433, + "noteOrder": 3710, + "time": 0.7980566801619432, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3721, - "time": 0.8006477732793522, + "noteOrder": 3722, + "time": 0.8006477732793521, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3733, - "time": 0.8032388663967611, + "noteOrder": 3734, + "time": 0.803238866396761, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3757, - "time": 0.8084210526315789, + "noteOrder": 3758, + "time": 0.8084210526315788, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3781, + "noteOrder": 3782, "time": 0.8136032388663967, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.8187854251012145, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3817, + "noteOrder": 3818, "time": 0.8213765182186235, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3829, + "noteOrder": 3831, "time": 0.8239676113360324, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3853, + "noteOrder": 3855, "time": 0.8291497975708502, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3877, + "noteOrder": 3879, "time": 0.834331983805668, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3901, - "time": 0.8395141700404859, + "noteOrder": 3903, + "time": 0.8395141700404858, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3913, - "time": 0.8421052631578948, + "noteOrder": 3915, + "time": 0.8421052631578947, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3925, - "time": 0.8446963562753037, + "noteOrder": 3927, + "time": 0.8446963562753036, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3998, - "time": 0.8602429149797571, + "noteOrder": 3999, + "time": 0.860242914979757, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3998, - "time": 0.8602429149797571, + "noteOrder": 3999, + "time": 0.860242914979757, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4022, - "time": 0.8654251012145749, + "noteOrder": 4023, + "time": 0.8654251012145748, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.8706072874493928, + "noteOrder": 4047, + "time": 0.8706072874493926, "position": { "x": 3, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4070, - "time": 0.8757894736842106, + "noteOrder": 4071, + "time": 0.8757894736842105, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4094, - "time": 0.8809716599190284, + "noteOrder": 4096, + "time": 0.8809716599190283, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4118, - "time": 0.8861538461538462, + "noteOrder": 4120, + "time": 0.8861538461538461, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4287, + "noteOrder": 4288, "time": 0.9224291497975708, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4311, + "noteOrder": 4312, "time": 0.9276113360323887, "position": { "x": 4, @@ -1956,7 +1956,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.020728744939271255, @@ -1979,7 +1979,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, "time": 0.04145748987854251, @@ -2002,7 +2002,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.04145748987854251, @@ -2025,7 +2025,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 289, "time": 0.06218623481781376, @@ -2048,7 +2048,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.06218623481781376, @@ -2071,7 +2071,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 385, "time": 0.08291497975708502, @@ -2094,7 +2094,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.08291497975708502, @@ -2117,7 +2117,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, "time": 0.10364372469635627, @@ -2140,10 +2140,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 433, - "time": 0.09327935222672064, + "noteOrder": 434, + "time": 0.09327935222672065, "position": { "x": 7, "y": 0 @@ -2163,7 +2163,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 482, "time": 0.10364372469635627, @@ -2186,7 +2186,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, "time": 0.16582995951417004, @@ -2209,10 +2209,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 867, - "time": 0.18655870445344128, + "time": 0.1865587044534413, "position": { "x": 7, "y": 0 @@ -2232,10 +2232,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 867, - "time": 0.18655870445344128, + "time": 0.1865587044534413, "position": { "x": 4, "y": 0 @@ -2255,9 +2255,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 963, + "noteOrder": 964, "time": 0.20728744939271254, "position": { "x": 4, @@ -2278,9 +2278,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 963, + "noteOrder": 964, "time": 0.20728744939271254, "position": { "x": 7, @@ -2301,10 +2301,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1011, - "time": 0.2176518218623482, + "noteOrder": 1012, + "time": 0.21765182186234816, "position": { "x": 7, "y": 0 @@ -2324,7 +2324,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1060, "time": 0.22801619433198378, @@ -2347,7 +2347,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1156, "time": 0.24874493927125504, @@ -2370,7 +2370,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1156, "time": 0.24874493927125504, @@ -2393,9 +2393,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.2694736842105263, "position": { "x": 6, @@ -2416,9 +2416,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.2694736842105263, "position": { "x": 3, @@ -2439,9 +2439,9 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.27983805668016193, "position": { "x": 3, @@ -2462,9 +2462,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.27983805668016193, "position": { "x": 7, @@ -2485,7 +2485,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1349, "time": 0.29020242914979755, @@ -2508,7 +2508,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1445, "time": 0.31093117408906884, @@ -2531,9 +2531,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1493, + "noteOrder": 1494, "time": 0.32129554655870446, "position": { "x": 5, @@ -2554,9 +2554,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.3316599190283401, "position": { "x": 5, @@ -2577,10 +2577,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1589, - "time": 0.34202429149797575, + "noteOrder": 1590, + "time": 0.3420242914979757, "position": { "x": 5, "y": 0 @@ -2600,10 +2600,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1638, - "time": 0.3523886639676113, + "time": 0.35238866396761137, "position": { "x": 4, "y": 0 @@ -2623,10 +2623,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1686, - "time": 0.36275303643724693, + "time": 0.362753036437247, "position": { "x": 4, "y": 0 @@ -2646,10 +2646,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1638, - "time": 0.3523886639676113, + "time": 0.35238866396761137, "position": { "x": 6, "y": 0 @@ -2669,10 +2669,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1686, - "time": 0.36275303643724693, + "time": 0.362753036437247, "position": { "x": 6, "y": 0 @@ -2692,10 +2692,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1734, - "time": 0.37311740890688255, + "noteOrder": 1735, + "time": 0.3731174089068826, "position": { "x": 7, "y": 0 @@ -2715,10 +2715,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1830, - "time": 0.39384615384615385, + "noteOrder": 1831, + "time": 0.3938461538461538, "position": { "x": 7, "y": 0 @@ -2738,10 +2738,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1878, - "time": 0.40421052631578946, + "noteOrder": 1879, + "time": 0.4042105263157894, "position": { "x": 3, "y": 0 @@ -2761,7 +2761,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1927, "time": 0.4145748987854251, @@ -2784,10 +2784,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1975, - "time": 0.42493927125506076, + "time": 0.4249392712550607, "position": { "x": 7, "y": 0 @@ -2807,10 +2807,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2023, - "time": 0.4353036437246964, + "noteOrder": 2024, + "time": 0.4353036437246963, "position": { "x": 6, "y": 0 @@ -2830,9 +2830,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2071, + "noteOrder": 2072, "time": 0.44566801619433194, "position": { "x": 7, @@ -2853,9 +2853,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2119, + "noteOrder": 2120, "time": 0.45603238866396756, "position": { "x": 7, @@ -2876,9 +2876,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2264, + "noteOrder": 2265, "time": 0.48712550607287447, "position": { "x": 7, @@ -2899,9 +2899,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2312, + "noteOrder": 2313, "time": 0.4974898785425101, "position": { "x": 6, @@ -2922,10 +2922,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2360, - "time": 0.5078542510121457, + "noteOrder": 2361, + "time": 0.5078542510121458, "position": { "x": 3, "y": 0 @@ -2945,9 +2945,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2408, + "noteOrder": 2409, "time": 0.5182186234817814, "position": { "x": 4, @@ -2968,9 +2968,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2456, + "noteOrder": 2457, "time": 0.528582995951417, "position": { "x": 3, @@ -2991,7 +2991,7 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2505, "time": 0.5389473684210526, @@ -3014,7 +3014,7 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2505, "time": 0.5389473684210526, @@ -3037,9 +3037,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2553, + "noteOrder": 2554, "time": 0.5493117408906882, "position": { "x": 7, @@ -3060,9 +3060,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2601, + "noteOrder": 2602, "time": 0.5596761133603239, "position": { "x": 3, @@ -3083,9 +3083,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2697, + "noteOrder": 2698, "time": 0.5804048582995951, "position": { "x": 3, @@ -3106,9 +3106,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2697, + "noteOrder": 2698, "time": 0.5804048582995951, "position": { "x": 7, @@ -3129,10 +3129,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2769, - "time": 0.5959514170040485, + "noteOrder": 2771, + "time": 0.5959514170040486, "position": { "x": 7, "y": 0 @@ -3152,10 +3152,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3179, - "time": 0.6840485829959515, + "noteOrder": 3180, + "time": 0.6840485829959514, "position": { "x": 7, "y": 0 @@ -3175,10 +3175,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3203, - "time": 0.6892307692307693, + "noteOrder": 3204, + "time": 0.6892307692307692, "position": { "x": 7, "y": 0 @@ -3198,10 +3198,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3275, - "time": 0.7047773279352226, + "noteOrder": 3276, + "time": 0.7047773279352227, "position": { "x": 3, "y": 0 @@ -3221,10 +3221,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3347, - "time": 0.7203238866396761, + "noteOrder": 3349, + "time": 0.7203238866396762, "position": { "x": 3, "y": 0 @@ -3244,10 +3244,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3372, - "time": 0.7255060728744939, + "noteOrder": 3373, + "time": 0.725506072874494, "position": { "x": 6, "y": 0 @@ -3267,10 +3267,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3396, - "time": 0.7306882591093117, + "noteOrder": 3397, + "time": 0.7306882591093118, "position": { "x": 6, "y": 0 @@ -3290,10 +3290,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3396, - "time": 0.7306882591093117, + "noteOrder": 3397, + "time": 0.7306882591093118, "position": { "x": 3, "y": 0 @@ -3313,10 +3313,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3420, - "time": 0.7358704453441295, + "noteOrder": 3421, + "time": 0.7358704453441296, "position": { "x": 3, "y": 0 @@ -3336,10 +3336,10 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3420, - "time": 0.7358704453441295, + "noteOrder": 3421, + "time": 0.7358704453441296, "position": { "x": 7, "y": 0 @@ -3359,10 +3359,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3444, - "time": 0.7410526315789473, + "noteOrder": 3445, + "time": 0.7410526315789474, "position": { "x": 7, "y": 0 @@ -3382,10 +3382,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3468, - "time": 0.7462348178137651, + "noteOrder": 3469, + "time": 0.7462348178137652, "position": { "x": 4, "y": 0 @@ -3405,10 +3405,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3492, - "time": 0.7514170040485829, + "noteOrder": 3493, + "time": 0.751417004048583, "position": { "x": 4, "y": 0 @@ -3428,10 +3428,10 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3492, - "time": 0.7514170040485829, + "noteOrder": 3493, + "time": 0.751417004048583, "position": { "x": 7, "y": 0 @@ -3451,10 +3451,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3516, - "time": 0.7565991902834007, + "noteOrder": 3517, + "time": 0.7565991902834008, "position": { "x": 7, "y": 0 @@ -3474,10 +3474,10 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3516, - "time": 0.7565991902834007, + "noteOrder": 3517, + "time": 0.7565991902834008, "position": { "x": 4, "y": 0 @@ -3497,9 +3497,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3540, + "noteOrder": 3541, "time": 0.7617813765182186, "position": { "x": 4, @@ -3520,10 +3520,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3949, - "time": 0.8498785425101215, + "noteOrder": 3951, + "time": 0.8498785425101214, "position": { "x": 3, "y": 0 @@ -3543,10 +3543,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3974, - "time": 0.8550607287449393, + "noteOrder": 3975, + "time": 0.8550607287449392, "position": { "x": 4, "y": 0 @@ -3566,9 +3566,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4142, + "noteOrder": 4144, "time": 0.8913360323886639, "position": { "x": 3, @@ -3589,9 +3589,9 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.9017004048582995, "position": { "x": 3, @@ -3612,9 +3612,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4190, + "noteOrder": 4192, "time": 0.9017004048582995, "position": { "x": 6, @@ -3635,9 +3635,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.9120647773279351, "position": { "x": 6, @@ -3658,9 +3658,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.9120647773279351, "position": { "x": 3, @@ -3681,9 +3681,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4287, + "noteOrder": 4288, "time": 0.9224291497975708, "position": { "x": 3, @@ -3704,9 +3704,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4335, + "noteOrder": 4336, "time": 0.9327935222672065, "position": { "x": 6, @@ -3727,9 +3727,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4527, + "noteOrder": 4529, "time": 0.9742510121457489, "position": { "x": 6, @@ -3750,9 +3750,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4335, + "noteOrder": 4336, "time": 0.9327935222672065, "position": { "x": 4, @@ -3773,9 +3773,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4527, + "noteOrder": 4529, "time": 0.9742510121457489, "position": { "x": 4, diff --git a/tracks/Pretender/info.json b/tracks/Pretender/info.json index c56035ce..b5ee53c1 100644 --- a/tracks/Pretender/info.json +++ b/tracks/Pretender/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Pretender", - "SongLength": "136.280816", + "SongLength": "126.328163", "SongAuthorName": null, "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Prettiful!/338_difficulty_1a.json b/tracks/Prettiful!/338_difficulty_1a.json index d24e4391..6e01164e 100644 --- a/tracks/Prettiful!/338_difficulty_1a.json +++ b/tracks/Prettiful!/338_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 145, - "time": 0.024098401807380137, + "time": 0.024098401807380133, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.02811480210861016, + "time": 0.028114802108610157, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 338, - "time": 0.05622960421722032, + "time": 0.056229604217220314, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 506, - "time": 0.08434440632583048, + "noteOrder": 507, + "time": 0.08434440632583047, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 555, - "time": 0.09237720692829052, + "time": 0.0923772069282905, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 603, - "time": 0.10041000753075056, + "time": 0.10041000753075055, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 651, - "time": 0.10844280813321062, + "time": 0.1084428081332106, "position": { "x": 3, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 699, - "time": 0.11647560873567066, + "noteOrder": 700, + "time": 0.11647560873567064, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 748, - "time": 0.1245084093381307, + "time": 0.12450840933813069, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 784, - "time": 0.13053300978997576, + "time": 0.13053300978997573, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 808, - "time": 0.13454941009120577, + "time": 0.13454941009120575, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1013, - "time": 0.16868881265166097, + "time": 0.16868881265166094, "position": { "x": 3, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1157, - "time": 0.1927872144590411, + "noteOrder": 1158, + "time": 0.19278721445904107, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1182, - "time": 0.1968036147602711, + "time": 0.19680361476027108, "position": { "x": 5, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1206, - "time": 0.20082001506150113, + "time": 0.2008200150615011, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1350, - "time": 0.22491841686888128, + "noteOrder": 1351, + "time": 0.22491841686888125, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.22893481717011127, "position": { "x": 3, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.22893481717011127, "position": { "x": 5, @@ -554,7 +554,7 @@ }, { "noteOrder": 1399, - "time": 0.23295121747134132, + "time": 0.2329512174713413, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1399, - "time": 0.23295121747134132, + "time": 0.2329512174713413, "position": { "x": 5, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1471, - "time": 0.2450004183750314, + "noteOrder": 1472, + "time": 0.24500041837503136, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1519, + "noteOrder": 1520, "time": 0.2530332189774914, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1664, - "time": 0.2771316207848716, + "noteOrder": 1665, + "time": 0.2771316207848715, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1688, - "time": 0.28114802108610154, + "noteOrder": 1689, + "time": 0.2811480210861016, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1712, - "time": 0.2851644213873316, + "noteOrder": 1713, + "time": 0.28516442138733156, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1736, + "noteOrder": 1737, "time": 0.28918082168856163, "position": { "x": 2, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1760, + "noteOrder": 1761, "time": 0.29319722198979165, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1784, - "time": 0.2972136222910217, + "noteOrder": 1785, + "time": 0.29721362229102166, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.3092628231947117, "position": { "x": 5, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1881, + "noteOrder": 1882, "time": 0.3132792234959418, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1905, - "time": 0.3172956237971718, + "noteOrder": 1906, + "time": 0.31729562379717174, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1929, + "noteOrder": 1930, "time": 0.3213120240984018, "position": { "x": 8, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1953, + "noteOrder": 1954, "time": 0.32532842439963183, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1977, + "noteOrder": 1978, "time": 0.32934482470086185, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2002, "time": 0.33336122500209187, "position": { "x": 3, @@ -914,7 +914,7 @@ }, { "noteOrder": 2026, - "time": 0.33737762530332194, + "time": 0.3373776253033219, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2050, - "time": 0.34139402560455195, + "noteOrder": 2051, + "time": 0.3413940256045519, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.3454104259057819, + "noteOrder": 2075, + "time": 0.34541042590578197, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2098, + "noteOrder": 2099, "time": 0.34942682620701193, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2146, + "noteOrder": 2147, "time": 0.357459626809472, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2194, - "time": 0.3654924274119321, + "noteOrder": 2195, + "time": 0.36549242741193205, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.36950882771316207, + "noteOrder": 2219, + "time": 0.369508827713162, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2243, + "noteOrder": 2244, "time": 0.3735252280143921, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.3775416283156221, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2279, + "noteOrder": 2280, "time": 0.37954982846623714, "position": { "x": 5, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2291, - "time": 0.3815580286168522, + "noteOrder": 2292, + "time": 0.3815580286168521, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2303, + "noteOrder": 2304, "time": 0.38356622876746715, "position": { "x": 5, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2411, - "time": 0.40164003012300226, + "noteOrder": 2412, + "time": 0.4016400301230022, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2436, - "time": 0.40565643042423233, + "noteOrder": 2437, + "time": 0.4056564304242323, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2460, - "time": 0.40967283072546234, + "noteOrder": 2461, + "time": 0.4096728307254623, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2484, + "noteOrder": 2485, "time": 0.4136892310266923, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2508, + "noteOrder": 2509, "time": 0.4177056313279223, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 2533, "time": 0.4217220316291524, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2604, - "time": 0.4337712325328425, + "noteOrder": 2605, + "time": 0.4337712325328424, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2628, + "noteOrder": 2629, "time": 0.43778763283407246, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2821, + "noteOrder": 2822, "time": 0.46991883524391265, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2821, + "noteOrder": 2822, "time": 0.46991883524391265, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2845, + "noteOrder": 2847, "time": 0.47393523554514266, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2870, - "time": 0.47795163584637274, + "noteOrder": 2871, + "time": 0.4779516358463726, "position": { "x": 5, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2894, + "noteOrder": 2895, "time": 0.4819680361476027, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2918, + "noteOrder": 2919, "time": 0.4859844364488327, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3015, "time": 0.5020500376537528, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3038, + "noteOrder": 3040, "time": 0.5060664379549829, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3062, - "time": 0.5100828382562129, + "noteOrder": 3064, + "time": 0.5100828382562128, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3087, + "noteOrder": 3088, "time": 0.5140992385574429, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3111, + "noteOrder": 3112, "time": 0.518115638858673, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3159, + "noteOrder": 3160, "time": 0.526148439461133, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3207, + "noteOrder": 3208, "time": 0.534181240063593, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3328, - "time": 0.5542632415697432, + "noteOrder": 3329, + "time": 0.554263241569743, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3352, + "noteOrder": 3353, "time": 0.5582796418709731, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3376, - "time": 0.5622960421722031, + "noteOrder": 3377, + "time": 0.5622960421722032, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3400, + "noteOrder": 3401, "time": 0.5663124424734332, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3521, + "noteOrder": 3522, "time": 0.5863944439795833, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3545, + "noteOrder": 3546, "time": 0.5904108442808134, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3569, - "time": 0.5944272445820434, + "noteOrder": 3570, + "time": 0.5944272445820433, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3593, + "noteOrder": 3594, "time": 0.5984436448832734, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3619, "time": 0.6024600451845034, "position": { "x": 8, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3641, - "time": 0.6064764454857334, + "noteOrder": 3643, + "time": 0.6064764454857333, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3667, "time": 0.6104928457869634, "position": { "x": 8, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3715, "time": 0.6185256463894234, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3738, - "time": 0.6225420466906535, + "noteOrder": 3739, + "time": 0.6225420466906534, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3762, + "noteOrder": 3763, "time": 0.6265584469918836, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3786, + "noteOrder": 3787, "time": 0.6305748472931135, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3810, - "time": 0.6345912475943436, + "noteOrder": 3812, + "time": 0.6345912475943435, "position": { "x": 2, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3834, - "time": 0.6386076478955737, + "noteOrder": 3836, + "time": 0.6386076478955736, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3858, + "noteOrder": 3860, "time": 0.6426240481968036, "position": { "x": 2, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3931, + "noteOrder": 3932, "time": 0.6546732491004936, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3979, + "noteOrder": 3980, "time": 0.6627060497029538, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4003, + "noteOrder": 4005, "time": 0.6667224500041837, "position": { "x": 6, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4027, - "time": 0.6707388503054138, + "noteOrder": 4029, + "time": 0.6707388503054137, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4027, - "time": 0.6707388503054138, + "noteOrder": 4029, + "time": 0.6707388503054137, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4051, - "time": 0.6747552506066439, + "noteOrder": 4053, + "time": 0.6747552506066438, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4051, - "time": 0.6747552506066439, + "noteOrder": 4053, + "time": 0.6747552506066438, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4123, - "time": 0.686804451510334, + "noteOrder": 4125, + "time": 0.6868044515103338, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4172, + "noteOrder": 4173, "time": 0.6948372521127939, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4196, + "noteOrder": 4198, "time": 0.6988536524140239, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4208, - "time": 0.700861852564639, + "noteOrder": 4210, + "time": 0.7008618525646388, "position": { "x": 4, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4220, + "noteOrder": 4222, "time": 0.7028700527152539, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4232, + "noteOrder": 4234, "time": 0.7048782528658689, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4389, - "time": 0.7309848548238642, + "noteOrder": 4391, + "time": 0.7309848548238641, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4413, + "noteOrder": 4415, "time": 0.7350012551250941, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4437, - "time": 0.7390176554263241, + "noteOrder": 4439, + "time": 0.739017655426324, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4582, - "time": 0.7631160572337043, + "noteOrder": 4584, + "time": 0.7631160572337042, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4606, + "noteOrder": 4608, "time": 0.7671324575349343, "position": { "x": 5, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4630, - "time": 0.7711488578361644, + "noteOrder": 4632, + "time": 0.7711488578361643, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4775, + "noteOrder": 4777, "time": 0.7952472596435445, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4799, - "time": 0.7992636599447746, + "noteOrder": 4801, + "time": 0.7992636599447744, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4799, - "time": 0.7992636599447746, + "noteOrder": 4801, + "time": 0.7992636599447744, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4823, - "time": 0.8032800602460045, + "noteOrder": 4825, + "time": 0.8032800602460044, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4823, - "time": 0.8032800602460045, + "noteOrder": 4825, + "time": 0.8032800602460044, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4895, - "time": 0.8153292611496946, + "noteOrder": 4897, + "time": 0.8153292611496945, "position": { "x": 7, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4943, - "time": 0.8233620617521545, + "noteOrder": 4945, + "time": 0.8233620617521547, "position": { "x": 4, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 5018, "time": 0.8354112626558446, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 5090, "time": 0.8474604635595347, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5100, - "time": 0.8494686637101498, + "noteOrder": 5102, + "time": 0.8494686637101497, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5136, - "time": 0.8554932641619949, + "noteOrder": 5138, + "time": 0.8554932641619948, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5148, + "noteOrder": 5150, "time": 0.8575014643126099, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5281, + "noteOrder": 5283, "time": 0.8795916659693749, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5293, + "noteOrder": 5295, "time": 0.88159986611999, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5329, - "time": 0.887624466571835, + "noteOrder": 5331, + "time": 0.8876244665718349, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5341, - "time": 0.88963266672245, + "noteOrder": 5343, + "time": 0.8896326667224499, "position": { "x": 6, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5402, - "time": 0.8996736674755251, + "noteOrder": 5404, + "time": 0.899673667475525, "position": { "x": 3, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5414, - "time": 0.9016818676261401, + "noteOrder": 5416, + "time": 0.90168186762614, "position": { "x": 5, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5426, - "time": 0.9036900677767551, + "noteOrder": 5428, + "time": 0.903690067776755, "position": { "x": 7, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5438, - "time": 0.9056982679273702, + "noteOrder": 5440, + "time": 0.90569826792737, "position": { "x": 5, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5474, - "time": 0.9117228683792152, + "noteOrder": 5476, + "time": 0.9117228683792151, "position": { "x": 3, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5474, - "time": 0.9117228683792152, + "noteOrder": 5476, + "time": 0.9117228683792151, "position": { "x": 7, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5498, + "noteOrder": 5500, "time": 0.9157392686804451, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5498, + "noteOrder": 5500, "time": 0.9157392686804451, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5522, + "noteOrder": 5524, "time": 0.9197556689816752, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5522, + "noteOrder": 5524, "time": 0.9197556689816752, "position": { "x": 7, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.9358212701865953, + "noteOrder": 5621, + "time": 0.9358212701865952, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5631, - "time": 0.9378294703372103, + "noteOrder": 5633, + "time": 0.9378294703372102, "position": { "x": 5, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5667, - "time": 0.9438540707890554, + "noteOrder": 5669, + "time": 0.9438540707890553, "position": { "x": 5, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5691, + "noteOrder": 5693, "time": 0.9478704710902853, "position": { "x": 6, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5715, - "time": 0.9518868713915154, + "noteOrder": 5717, + "time": 0.9518868713915153, "position": { "x": 7, "y": 0 @@ -2936,7 +2936,7 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.08032800602460045, @@ -2959,7 +2959,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.0883608066270605, @@ -2982,7 +2982,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 531, "time": 0.0883608066270605, @@ -3005,10 +3005,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, - "time": 0.09639360722952055, + "time": 0.09639360722952053, "position": { "x": 3, "y": 0 @@ -3028,10 +3028,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, - "time": 0.09639360722952055, + "time": 0.09639360722952053, "position": { "x": 6, "y": 0 @@ -3051,7 +3051,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 627, "time": 0.10442640783198058, @@ -3074,7 +3074,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 627, "time": 0.10442640783198058, @@ -3097,10 +3097,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 675, - "time": 0.11245920843444064, + "time": 0.11245920843444063, "position": { "x": 4, "y": 0 @@ -3120,10 +3120,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.11245920843444064, + "time": 0.11245920843444063, "position": { "x": 7, "y": 0 @@ -3143,10 +3143,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 699, - "time": 0.11647560873567066, + "noteOrder": 700, + "time": 0.11647560873567064, "position": { "x": 5, "y": 0 @@ -3166,9 +3166,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 723, + "noteOrder": 724, "time": 0.12049200903690067, "position": { "x": 3, @@ -3189,10 +3189,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 748, - "time": 0.1245084093381307, + "time": 0.12450840933813069, "position": { "x": 5, "y": 0 @@ -3212,7 +3212,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, "time": 0.14459041084428081, @@ -3234,11 +3234,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 892, - "time": 0.14860681114551086, + "noteOrder": 881, + "time": 0.14659861099489582, "position": { "x": 3, "y": 0 @@ -3252,18 +3252,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 916, - "time": 0.15262321144674085, + "noteOrder": 881, + "time": 0.14659861099489582, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3280,13 +3280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 4, "isSliding": false, - "noteOrder": 940, - "time": 0.1566396117479709, + "noteOrder": 893, + "time": 0.14860681114551083, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3298,18 +3298,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1061, - "time": 0.176721613254121, + "noteOrder": 893, + "time": 0.14860681114551083, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3321,18 +3321,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1085, - "time": 0.18073801355535102, + "noteOrder": 893, + "time": 0.14860681114551083, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3344,18 +3344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1109, - "time": 0.18475441385658103, + "noteOrder": 905, + "time": 0.15061501129612584, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3372,13 +3372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1133, - "time": 0.18877081415781105, + "noteOrder": 905, + "time": 0.15061501129612584, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3390,18 +3390,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1254, - "time": 0.20885281566396116, + "noteOrder": 917, + "time": 0.15262321144674085, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3418,13 +3418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1278, - "time": 0.2128692159651912, + "noteOrder": 917, + "time": 0.15262321144674085, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3441,13 +3441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1278, - "time": 0.2128692159651912, + "noteOrder": 917, + "time": 0.15262321144674085, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3464,13 +3464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1302, - "time": 0.21688561626642125, + "noteOrder": 929, + "time": 0.15463141159735586, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3487,13 +3487,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.21688561626642125, + "noteOrder": 929, + "time": 0.15463141159735586, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3505,18 +3505,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1326, - "time": 0.22090201656765124, + "noteOrder": 941, + "time": 0.1566396117479709, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3528,18 +3528,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1326, - "time": 0.22090201656765124, + "noteOrder": 941, + "time": 0.1566396117479709, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3556,13 +3556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1350, - "time": 0.22491841686888128, + "noteOrder": 941, + "time": 0.1566396117479709, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3574,18 +3574,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1447, - "time": 0.24098401807380135, + "noteOrder": 953, + "time": 0.15864781189858587, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3602,11 +3602,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1495, - "time": 0.2490168186762614, + "noteOrder": 953, + "time": 0.15864781189858587, "position": { "x": 4, "y": 0 @@ -3620,18 +3620,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1543, - "time": 0.25704961927872144, + "noteOrder": 965, + "time": 0.1606560120492009, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3648,13 +3648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1567, - "time": 0.2610660195799515, + "noteOrder": 965, + "time": 0.1606560120492009, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3666,18 +3666,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 3, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1616, - "time": 0.26909882018241155, + "noteOrder": 1061, + "time": 0.176721613254121, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3689,16 +3689,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1592, - "time": 0.2650824198811815, + "noteOrder": 1074, + "time": 0.178729813404736, "position": { "x": 7, "y": 0 @@ -3717,13 +3717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1616, - "time": 0.26909882018241155, + "noteOrder": 1074, + "time": 0.178729813404736, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3740,13 +3740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1640, - "time": 0.2731152204836415, + "noteOrder": 1086, + "time": 0.180738013555351, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3763,13 +3763,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1664, - "time": 0.2771316207848716, + "noteOrder": 1086, + "time": 0.180738013555351, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3786,13 +3786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 2, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1712, - "time": 0.2851644213873316, + "noteOrder": 1086, + "time": 0.180738013555351, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3804,18 +3804,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 3, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1736, - "time": 0.28918082168856163, + "noteOrder": 1098, + "time": 0.18274621370596603, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3827,16 +3827,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 4, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1784, - "time": 0.2972136222910217, + "noteOrder": 1098, + "time": 0.18274621370596603, "position": { "x": 6, "y": 0 @@ -3850,18 +3850,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 5, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1833, - "time": 0.3052464228934817, + "noteOrder": 1110, + "time": 0.184754413856581, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3873,18 +3873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1833, - "time": 0.3052464228934817, + "noteOrder": 1110, + "time": 0.184754413856581, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3901,13 +3901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 1857, - "time": 0.3092628231947117, + "noteOrder": 1110, + "time": 0.184754413856581, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3919,18 +3919,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 41, "indexInLine": 2, "isSliding": false, - "noteOrder": 1905, - "time": 0.3172956237971718, + "noteOrder": 1122, + "time": 0.18676261400719604, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3942,16 +3942,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 41, "indexInLine": 3, "isSliding": false, - "noteOrder": 1929, - "time": 0.3213120240984018, + "noteOrder": 1122, + "time": 0.18676261400719604, "position": { "x": 6, "y": 0 @@ -3965,18 +3965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 41, "indexInLine": 4, "isSliding": false, - "noteOrder": 1977, - "time": 0.32934482470086185, + "noteOrder": 1134, + "time": 0.18877081415781105, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3988,18 +3988,3514 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1134, + "time": 0.18877081415781105, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1134, + "time": 0.18877081415781105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1146, + "time": 0.19077901430842606, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1146, + "time": 0.19077901430842606, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1158, + "time": 0.19278721445904107, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1158, + "time": 0.19278721445904107, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1254, + "time": 0.20885281566396116, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1279, + "time": 0.21286921596519118, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1279, + "time": 0.21286921596519118, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1303, + "time": 0.2168856162664212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1303, + "time": 0.2168856162664212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1327, + "time": 0.22090201656765124, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1327, + "time": 0.22090201656765124, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1351, + "time": 0.22491841686888125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1447, + "time": 0.24098401807380135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1459, + "time": 0.24299221822441636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1459, + "time": 0.24299221822441636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1496, + "time": 0.24901681867626138, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1508, + "time": 0.2510250188268764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1508, + "time": 0.2510250188268764, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.25704961927872144, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2590578194293365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1556, + "time": 0.2590578194293365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1568, + "time": 0.26106601957995146, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2630742197305665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2630742197305665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1592, + "time": 0.2650824198811815, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1592, + "time": 0.2650824198811815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1616, + "time": 0.2690988201824115, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1592, + "time": 0.2650824198811815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1616, + "time": 0.2690988201824115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1640, + "time": 0.2731152204836415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1665, + "time": 0.2771316207848715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1713, + "time": 0.28516442138733156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1737, + "time": 0.28918082168856163, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1785, + "time": 0.29721362229102166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1833, + "time": 0.3052464228934817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1833, + "time": 0.3052464228934817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1858, + "time": 0.3092628231947117, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1906, + "time": 0.31729562379717174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1930, + "time": 0.3213120240984018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1978, + "time": 0.32934482470086185, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 73, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2026, + "time": 0.3373776253033219, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2123, + "time": 0.353443226508242, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2171, + "time": 0.361476027110702, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2171, + "time": 0.361476027110702, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2219, + "time": 0.369508827713162, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2364, + "time": 0.39360722952054217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2388, + "time": 0.39762362982177224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2388, + "time": 0.39762362982177224, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2412, + "time": 0.4016400301230022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2557, + "time": 0.42573843193038235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2605, + "time": 0.4337712325328424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2654, + "time": 0.4418040331353025, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2678, + "time": 0.4458204334365325, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2702, + "time": 0.4498368337377625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2726, + "time": 0.4538532340389926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2557, + "time": 0.42573843193038235, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2581, + "time": 0.4297548322316124, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2654, + "time": 0.4418040331353025, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2678, + "time": 0.4458204334365325, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2702, + "time": 0.4498368337377625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2726, + "time": 0.4538532340389926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2750, + "time": 0.45786963434022254, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2762, + "time": 0.4598778344908376, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2762, + "time": 0.4598778344908376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2774, + "time": 0.4618860346414526, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2786, + "time": 0.4638942347920676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2786, + "time": 0.4638942347920676, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2943, + "time": 0.49000083675006273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2955, + "time": 0.49200903690067777, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2955, + "time": 0.49200903690067777, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2967, + "time": 0.49401723705129275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4960254372019078, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4960254372019078, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2991, + "time": 0.49803363735252276, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3015, + "time": 0.5020500376537528, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3088, + "time": 0.5140992385574429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3136, + "time": 0.5221320391599029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3148, + "time": 0.524140239310518, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3148, + "time": 0.524140239310518, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3160, + "time": 0.526148439461133, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3160, + "time": 0.526148439461133, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3184, + "time": 0.530164839762363, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3196, + "time": 0.532173039912978, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3196, + "time": 0.532173039912978, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3208, + "time": 0.534181240063593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3208, + "time": 0.534181240063593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3233, + "time": 0.538197640364823, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.540205840515438, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3245, + "time": 0.540205840515438, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3257, + "time": 0.542214040666053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3257, + "time": 0.542214040666053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3257, + "time": 0.542214040666053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3269, + "time": 0.544222240816668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3269, + "time": 0.544222240816668, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3281, + "time": 0.546230440967283, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3281, + "time": 0.546230440967283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3281, + "time": 0.546230440967283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3293, + "time": 0.548238641117898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3293, + "time": 0.548238641117898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3305, + "time": 0.5502468412685131, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3305, + "time": 0.5502468412685131, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3305, + "time": 0.5502468412685131, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3317, + "time": 0.5522550414191281, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3317, + "time": 0.5522550414191281, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3329, + "time": 0.554263241569743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3329, + "time": 0.554263241569743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3401, + "time": 0.5663124424734332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5703288427746631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3432, + "time": 0.5713329428499706, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5718349928876244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3438, + "time": 0.5723370429252781, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3444, + "time": 0.5733411430005858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5738431930382394, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3450, + "time": 0.5743452430758933, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3456, + "time": 0.5753493431512008, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5758513931888545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5763534432265083, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3468, + "time": 0.5773575433018158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5778595933394695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5783616433771233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5703288427746631, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3432, + "time": 0.5713329428499706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5718349928876244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3438, + "time": 0.5723370429252781, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3444, + "time": 0.5733411430005858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5738431930382394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3450, + "time": 0.5743452430758933, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3456, + "time": 0.5753493431512008, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5758513931888545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 3462, + "time": 0.5763534432265083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 3468, + "time": 0.5773575433018158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5778595933394695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5783616433771233, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3908, + "time": 0.6506568487992637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3932, + "time": 0.6546732491004936, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6586896494017237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6586896494017237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3980, + "time": 0.6627060497029538, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6667224500041837, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4101, + "time": 0.6827880512091038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4125, + "time": 0.6868044515103338, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.6908208518115639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4173, + "time": 0.6948372521127939, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4294, + "time": 0.714919253618944, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4306, + "time": 0.716927453769559, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4306, + "time": 0.716927453769559, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4318, + "time": 0.718935653920174, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, "indexInLine": 5, "isSliding": false, - "noteOrder": 2026, - "time": 0.33737762530332194, + "noteOrder": 4318, + "time": 0.718935653920174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4318, + "time": 0.718935653920174, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4330, + "time": 0.720943854070789, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4330, + "time": 0.720943854070789, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4011,18 +7507,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2122, - "time": 0.353443226508242, + "noteOrder": 4342, + "time": 0.722952054221404, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4039,13 +7535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2170, - "time": 0.36147602711070204, + "noteOrder": 4342, + "time": 0.722952054221404, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4062,13 +7558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2170, - "time": 0.36147602711070204, + "noteOrder": 4342, + "time": 0.722952054221404, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4085,13 +7581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2218, - "time": 0.36950882771316207, + "noteOrder": 4354, + "time": 0.724960254372019, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4108,13 +7604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2363, - "time": 0.3936072295205422, + "noteOrder": 4354, + "time": 0.724960254372019, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4126,18 +7622,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2387, - "time": 0.39762362982177224, + "noteOrder": 4366, + "time": 0.7269684545226341, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4149,18 +7645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2387, - "time": 0.39762362982177224, + "noteOrder": 4366, + "time": 0.7269684545226341, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4177,11 +7673,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 2411, - "time": 0.40164003012300226, + "noteOrder": 4366, + "time": 0.7269684545226341, "position": { "x": 3, "y": 0 @@ -4195,18 +7691,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2556, - "time": 0.4257384319303824, + "noteOrder": 4378, + "time": 0.7289766546732491, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4218,16 +7714,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2604, - "time": 0.4337712325328425, + "noteOrder": 4378, + "time": 0.7289766546732491, "position": { "x": 4, "y": 0 @@ -4241,18 +7737,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2653, - "time": 0.4418040331353025, + "noteOrder": 4391, + "time": 0.7309848548238641, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4264,18 +7760,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 3, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2677, - "time": 0.4458204334365325, + "noteOrder": 4391, + "time": 0.7309848548238641, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4287,18 +7783,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 4, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2701, - "time": 0.44983683373776256, + "noteOrder": 4487, + "time": 0.7470504560287842, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4310,18 +7806,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 5, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2725, - "time": 0.4538532340389926, + "noteOrder": 4499, + "time": 0.7490586561793992, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4333,16 +7829,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2556, - "time": 0.4257384319303824, + "noteOrder": 4499, + "time": 0.7490586561793992, "position": { "x": 6, "y": 0 @@ -4361,11 +7857,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2580, - "time": 0.4297548322316124, + "noteOrder": 4511, + "time": 0.7510668563300141, "position": { "x": 6, "y": 0 @@ -4384,13 +7880,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2653, - "time": 0.4418040331353025, + "noteOrder": 4511, + "time": 0.7510668563300141, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4407,11 +7903,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 2677, - "time": 0.4458204334365325, + "noteOrder": 4511, + "time": 0.7510668563300141, "position": { "x": 7, "y": 0 @@ -4425,18 +7921,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 191, "indexInLine": 2, "isSliding": false, - "noteOrder": 2701, - "time": 0.44983683373776256, + "noteOrder": 4523, + "time": 0.7530750564806292, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4448,18 +7944,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 191, "indexInLine": 3, "isSliding": false, - "noteOrder": 2725, - "time": 0.4538532340389926, + "noteOrder": 4523, + "time": 0.7530750564806292, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4471,18 +7967,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2749, - "time": 0.45786963434022254, + "noteOrder": 4535, + "time": 0.7550832566312442, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4499,13 +7995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2773, - "time": 0.4618860346414526, + "noteOrder": 4535, + "time": 0.7550832566312442, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4517,18 +8013,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2942, - "time": 0.4900008367500628, + "noteOrder": 4535, + "time": 0.7550832566312442, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4545,13 +8041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2966, - "time": 0.4940172370512928, + "noteOrder": 4547, + "time": 0.7570914567818593, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4563,16 +8059,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2990, - "time": 0.4980336373525228, + "noteOrder": 4547, + "time": 0.7570914567818593, "position": { "x": 6, "y": 0 @@ -4591,11 +8087,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3014, - "time": 0.5020500376537528, + "noteOrder": 4559, + "time": 0.7590996569324743, "position": { "x": 6, "y": 0 @@ -4614,11 +8110,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 2, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3087, - "time": 0.5140992385574429, + "noteOrder": 4559, + "time": 0.7590996569324743, "position": { "x": 4, "y": 0 @@ -4637,11 +8133,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3135, - "time": 0.522132039159903, + "noteOrder": 4559, + "time": 0.7590996569324743, "position": { "x": 7, "y": 0 @@ -4655,18 +8151,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3183, - "time": 0.530164839762363, + "noteOrder": 4571, + "time": 0.7611078570830893, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4683,13 +8179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3231, - "time": 0.5381976403648231, + "noteOrder": 4571, + "time": 0.7611078570830893, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4701,18 +8197,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3255, - "time": 0.542214040666053, + "noteOrder": 4584, + "time": 0.7631160572337042, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4729,13 +8225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3280, - "time": 0.546230440967283, + "noteOrder": 4584, + "time": 0.7631160572337042, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4747,18 +8243,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3304, - "time": 0.5502468412685132, + "noteOrder": 4680, + "time": 0.7791816584386244, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4770,18 +8266,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3400, - "time": 0.5663124424734332, + "noteOrder": 4704, + "time": 0.7831980587398544, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4793,18 +8289,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3424, - "time": 0.5703288427746632, + "noteOrder": 4704, + "time": 0.7831980587398544, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4816,18 +8312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3430, - "time": 0.5713329428499707, + "noteOrder": 4728, + "time": 0.7872144590410843, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4839,18 +8335,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3433, - "time": 0.5718349928876245, + "noteOrder": 4728, + "time": 0.7872144590410843, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4867,13 +8363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 3, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3436, - "time": 0.5723370429252782, + "noteOrder": 4752, + "time": 0.7912308593423145, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4890,13 +8386,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 4, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3442, - "time": 0.5733411430005857, + "noteOrder": 4752, + "time": 0.7912308593423145, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4908,18 +8404,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 5, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3445, - "time": 0.5738431930382395, + "noteOrder": 4777, + "time": 0.7952472596435445, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4931,18 +8427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 6, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3448, - "time": 0.5743452430758932, + "noteOrder": 4873, + "time": 0.8113128608484645, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4959,13 +8455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 7, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3454, - "time": 0.5753493431512008, + "noteOrder": 4885, + "time": 0.8133210609990795, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4982,11 +8478,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 8, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3457, - "time": 0.5758513931888546, + "noteOrder": 4885, + "time": 0.8133210609990795, "position": { "x": 6, "y": 0 @@ -5005,13 +8501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 9, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3460, - "time": 0.5763534432265083, + "noteOrder": 4921, + "time": 0.8193456614509246, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5023,16 +8519,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 10, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3466, - "time": 0.5773575433018158, + "noteOrder": 4933, + "time": 0.8213538616015396, "position": { "x": 4, "y": 0 @@ -5046,18 +8542,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 11, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3469, - "time": 0.5778595933394696, + "noteOrder": 4933, + "time": 0.8213538616015396, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5069,18 +8565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 12, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3472, - "time": 0.5783616433771233, + "noteOrder": 4970, + "time": 0.8273784620533846, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5097,13 +8593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3424, - "time": 0.5703288427746632, + "noteOrder": 4982, + "time": 0.8293866622039996, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5115,18 +8611,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3430, - "time": 0.5713329428499707, + "noteOrder": 4982, + "time": 0.8293866622039996, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5138,18 +8634,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 2, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3433, - "time": 0.5718349928876245, + "noteOrder": 4994, + "time": 0.8313948623546147, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5166,13 +8662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 3, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3436, - "time": 0.5723370429252782, + "noteOrder": 5006, + "time": 0.8334030625052297, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5189,13 +8685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 4, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3442, - "time": 0.5733411430005857, + "noteOrder": 5006, + "time": 0.8334030625052297, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5212,13 +8708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 5, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3445, - "time": 0.5738431930382395, + "noteOrder": 5018, + "time": 0.8354112626558446, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5235,13 +8731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 6, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3448, - "time": 0.5743452430758932, + "noteOrder": 5018, + "time": 0.8354112626558446, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5258,13 +8754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 7, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3454, - "time": 0.5753493431512008, + "noteOrder": 5066, + "time": 0.8434440632583048, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5281,13 +8777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 8, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3457, - "time": 0.5758513931888546, + "noteOrder": 5078, + "time": 0.8454522634089198, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5304,13 +8800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 9, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3460, - "time": 0.5763534432265083, + "noteOrder": 5078, + "time": 0.8454522634089198, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5327,13 +8823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 10, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3466, - "time": 0.5773575433018158, + "noteOrder": 5090, + "time": 0.8474604635595347, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5350,13 +8846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 11, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3469, - "time": 0.5778595933394696, + "noteOrder": 5090, + "time": 0.8474604635595347, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5373,13 +8869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 12, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3472, - "time": 0.5783616433771233, + "noteOrder": 5114, + "time": 0.8514768638607647, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5391,18 +8887,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3906, - "time": 0.6506568487992637, + "noteOrder": 5126, + "time": 0.8534850640113797, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5419,13 +8915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3931, - "time": 0.6546732491004936, + "noteOrder": 5126, + "time": 0.8534850640113797, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5442,13 +8938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3955, - "time": 0.6586896494017237, + "noteOrder": 5138, + "time": 0.8554932641619948, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5465,13 +8961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3955, - "time": 0.6586896494017237, + "noteOrder": 5138, + "time": 0.8554932641619948, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5483,18 +8979,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 3979, - "time": 0.6627060497029538, + "noteOrder": 5162, + "time": 0.8595096644632249, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5511,13 +9007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 222, "indexInLine": 2, "isSliding": false, - "noteOrder": 4003, - "time": 0.6667224500041837, + "noteOrder": 5175, + "time": 0.8615178646138398, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5534,13 +9030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4099, - "time": 0.6827880512091039, + "noteOrder": 5175, + "time": 0.8615178646138398, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5552,18 +9048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4123, - "time": 0.686804451510334, + "noteOrder": 5187, + "time": 0.8635260647644548, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5575,18 +9071,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4148, - "time": 0.6908208518115638, + "noteOrder": 5187, + "time": 0.8635260647644548, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5603,13 +9099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 4172, - "time": 0.6948372521127939, + "noteOrder": 5187, + "time": 0.8635260647644548, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5621,18 +9117,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4292, - "time": 0.714919253618944, + "noteOrder": 5199, + "time": 0.8655342649150698, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5644,18 +9140,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4316, - "time": 0.7189356539201741, + "noteOrder": 5199, + "time": 0.8655342649150698, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5672,13 +9168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4341, - "time": 0.7229520542214041, + "noteOrder": 5235, + "time": 0.8715588653669148, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5690,18 +9186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4365, - "time": 0.7269684545226341, + "noteOrder": 5211, + "time": 0.8675424650656848, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5713,18 +9209,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4485, - "time": 0.7470504560287842, + "noteOrder": 5235, + "time": 0.8715588653669148, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5736,18 +9232,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4509, - "time": 0.7510668563300142, + "noteOrder": 5259, + "time": 0.8755752656681449, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5759,18 +9255,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4533, - "time": 0.7550832566312442, + "noteOrder": 5271, + "time": 0.8775834658187599, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5787,13 +9283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4558, - "time": 0.7590996569324743, + "noteOrder": 5271, + "time": 0.8775834658187599, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5805,16 +9301,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4678, - "time": 0.7791816584386243, + "noteOrder": 5283, + "time": 0.8795916659693749, "position": { "x": 5, "y": 0 @@ -5833,13 +9329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4702, - "time": 0.7831980587398544, + "noteOrder": 5283, + "time": 0.8795916659693749, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5856,13 +9352,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4702, - "time": 0.7831980587398544, + "noteOrder": 5307, + "time": 0.883608066270605, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5879,13 +9375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4726, - "time": 0.7872144590410844, + "noteOrder": 5319, + "time": 0.8856162664212199, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5902,11 +9398,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4726, - "time": 0.7872144590410844, + "noteOrder": 5319, + "time": 0.8856162664212199, "position": { "x": 5, "y": 0 @@ -5920,16 +9416,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4750, - "time": 0.7912308593423144, + "noteOrder": 5331, + "time": 0.8876244665718349, "position": { "x": 5, "y": 0 @@ -5943,18 +9439,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4750, - "time": 0.7912308593423144, + "noteOrder": 5331, + "time": 0.8876244665718349, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5971,13 +9467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 4775, - "time": 0.7952472596435445, + "noteOrder": 5355, + "time": 0.891640866873065, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5989,18 +9485,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4871, - "time": 0.8113128608484647, + "noteOrder": 5368, + "time": 0.89364906702368, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6017,11 +9513,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4919, - "time": 0.8193456614509247, + "noteOrder": 5368, + "time": 0.89364906702368, "position": { "x": 4, "y": 0 @@ -6035,18 +9531,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4967, - "time": 0.8273784620533846, + "noteOrder": 5380, + "time": 0.8956572671742951, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6063,13 +9559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4992, - "time": 0.8313948623546147, + "noteOrder": 5380, + "time": 0.8956572671742951, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6081,18 +9577,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5064, - "time": 0.8434440632583048, + "noteOrder": 5380, + "time": 0.8956572671742951, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6109,13 +9605,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5112, - "time": 0.8514768638607648, + "noteOrder": 5392, + "time": 0.89766546732491, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6127,18 +9623,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5160, - "time": 0.8595096644632249, + "noteOrder": 5392, + "time": 0.89766546732491, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6155,13 +9651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5185, - "time": 0.8635260647644549, + "noteOrder": 5404, + "time": 0.899673667475525, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6173,16 +9669,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 2, + "lineGroupId": 233, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5233, - "time": 0.8715588653669148, + "noteOrder": 5404, + "time": 0.899673667475525, "position": { "x": 6, "y": 0 @@ -6196,18 +9692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5209, - "time": 0.867542465065685, + "noteOrder": 5548, + "time": 0.9237720692829052, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6219,18 +9715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5233, - "time": 0.8715588653669148, + "noteOrder": 5573, + "time": 0.9277884695841352, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6242,18 +9738,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5257, - "time": 0.8755752656681449, + "noteOrder": 5573, + "time": 0.9277884695841352, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6265,18 +9761,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5305, - "time": 0.883608066270605, + "noteOrder": 5597, + "time": 0.9318048698853652, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6293,13 +9789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5353, - "time": 0.891640866873065, + "noteOrder": 5597, + "time": 0.9318048698853652, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6316,13 +9812,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5377, - "time": 0.8956572671742951, + "noteOrder": 5621, + "time": 0.9358212701865952, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6334,18 +9830,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5546, - "time": 0.9237720692829052, + "noteOrder": 5645, + "time": 0.9398376704878253, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6357,18 +9853,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 1, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5570, - "time": 0.9277884695841352, + "noteOrder": 5669, + "time": 0.9438540707890553, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6380,16 +9876,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5570, - "time": 0.9277884695841352, + "noteOrder": 5717, + "time": 0.9518868713915153, "position": { "x": 5, "y": 0 @@ -6408,13 +9904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, + "lineGroupId": 254, "indexInLine": 1, "isSliding": false, - "noteOrder": 5594, - "time": 0.9318048698853653, + "noteOrder": 5741, + "time": 0.9559032716927452, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6426,18 +9922,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5594, - "time": 0.9318048698853653, + "noteOrder": 5754, + "time": 0.9579114718433603, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6454,11 +9950,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 1, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5619, - "time": 0.9358212701865953, + "noteOrder": 5754, + "time": 0.9579114718433603, "position": { "x": 5, "y": 0 @@ -6477,11 +9973,11 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5643, - "time": 0.9398376704878253, + "noteOrder": 5766, + "time": 0.9599196719939754, "position": { "x": 3, "y": 0 @@ -6500,11 +9996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 1, + "lineGroupId": 255, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5667, - "time": 0.9438540707890554, + "noteOrder": 5778, + "time": 0.9619278721445904, "position": { "x": 3, "y": 0 @@ -6523,11 +10019,11 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 2, + "lineGroupId": 255, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5715, - "time": 0.9518868713915154, + "noteOrder": 5778, + "time": 0.9619278721445904, "position": { "x": 5, "y": 0 @@ -6546,13 +10042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5739, - "time": 0.9559032716927455, + "noteOrder": 5790, + "time": 0.9639360722952054, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6564,16 +10060,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 255, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5763, - "time": 0.9599196719939753, + "noteOrder": 5790, + "time": 0.9639360722952054, "position": { "x": 3, "y": 0 @@ -6593,10 +10089,10 @@ }, { "lineGroupId": 255, - "indexInLine": 3, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5811, - "time": 0.9679524725964355, + "noteOrder": 5814, + "time": 0.9679524725964354, "position": { "x": 3, "y": 0 @@ -6616,9 +10112,9 @@ }, { "lineGroupId": 256, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5787, + "noteOrder": 5790, "time": 0.9639360722952054, "position": { "x": 7, @@ -6639,10 +10135,10 @@ }, { "lineGroupId": 256, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5811, - "time": 0.9679524725964355, + "noteOrder": 5814, + "time": 0.9679524725964354, "position": { "x": 7, "y": 0 diff --git a/tracks/Prettiful!/338_difficulty_1b.json b/tracks/Prettiful!/338_difficulty_1b.json index cb947d0f..55c55529 100644 --- a/tracks/Prettiful!/338_difficulty_1b.json +++ b/tracks/Prettiful!/338_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.024098401807380137, + "time": 0.024098401807380133, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 289, - "time": 0.048196803614760274, + "time": 0.04819680361476027, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 338, - "time": 0.05622960421722032, + "time": 0.056229604217220314, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 555, - "time": 0.09237720692829052, + "time": 0.0923772069282905, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 579, - "time": 0.09639360722952055, + "time": 0.09639360722952053, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 651, - "time": 0.10844280813321062, + "time": 0.1084428081332106, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 675, - "time": 0.11245920843444064, + "time": 0.11245920843444063, "position": { "x": 6, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 723, + "noteOrder": 724, "time": 0.12049200903690067, "position": { "x": 4, @@ -334,7 +334,7 @@ }, { "noteOrder": 748, - "time": 0.1245084093381307, + "time": 0.12450840933813069, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 844, - "time": 0.14057401054305077, + "time": 0.1405740105430508, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1013, - "time": 0.16868881265166097, + "time": 0.16868881265166094, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1157, - "time": 0.1927872144590411, + "noteOrder": 1158, + "time": 0.19278721445904107, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1182, - "time": 0.1968036147602711, + "time": 0.19680361476027108, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1206, - "time": 0.20082001506150113, + "time": 0.2008200150615011, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1350, - "time": 0.22491841686888128, + "noteOrder": 1351, + "time": 0.22491841686888125, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.22893481717011127, "position": { "x": 6, @@ -594,7 +594,7 @@ }, { "noteOrder": 1399, - "time": 0.23295121747134132, + "time": 0.2329512174713413, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1543, + "noteOrder": 1544, "time": 0.25704961927872144, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1567, - "time": 0.2610660195799515, + "noteOrder": 1568, + "time": 0.26106601957995146, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1688, - "time": 0.28114802108610154, + "noteOrder": 1689, + "time": 0.2811480210861016, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1736, + "noteOrder": 1737, "time": 0.28918082168856163, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1760, + "noteOrder": 1761, "time": 0.29319722198979165, "position": { "x": 5, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1784, - "time": 0.2972136222910217, + "noteOrder": 1785, + "time": 0.29721362229102166, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1881, + "noteOrder": 1882, "time": 0.3132792234959418, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1977, + "noteOrder": 1978, "time": 0.32934482470086185, "position": { "x": 2, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2002, "time": 0.33336122500209187, "position": { "x": 5, @@ -854,7 +854,7 @@ }, { "noteOrder": 2026, - "time": 0.33737762530332194, + "time": 0.3373776253033219, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2074, - "time": 0.3454104259057819, + "noteOrder": 2075, + "time": 0.34541042590578197, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2122, + "noteOrder": 2123, "time": 0.353443226508242, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2146, + "noteOrder": 2147, "time": 0.357459626809472, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2170, - "time": 0.36147602711070204, + "noteOrder": 2171, + "time": 0.361476027110702, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.36950882771316207, + "noteOrder": 2219, + "time": 0.369508827713162, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.3775416283156221, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2315, - "time": 0.3855744289180822, + "noteOrder": 2316, + "time": 0.38557442891808213, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2363, - "time": 0.3936072295205422, + "noteOrder": 2364, + "time": 0.39360722952054217, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2387, + "noteOrder": 2388, "time": 0.39762362982177224, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2508, + "noteOrder": 2509, "time": 0.4177056313279223, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 2533, "time": 0.4217220316291524, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2556, - "time": 0.4257384319303824, + "noteOrder": 2557, + "time": 0.42573843193038235, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2581, "time": 0.4297548322316124, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2701, - "time": 0.44983683373776256, + "noteOrder": 2702, + "time": 0.4498368337377625, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2749, + "noteOrder": 2750, "time": 0.45786963434022254, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2773, + "noteOrder": 2774, "time": 0.4618860346414526, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2845, + "noteOrder": 2847, "time": 0.47393523554514266, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2870, - "time": 0.47795163584637274, + "noteOrder": 2871, + "time": 0.4779516358463726, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2942, - "time": 0.4900008367500628, + "noteOrder": 2943, + "time": 0.49000083675006273, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2966, - "time": 0.4940172370512928, + "noteOrder": 2967, + "time": 0.49401723705129275, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2990, - "time": 0.4980336373525228, + "noteOrder": 2991, + "time": 0.49803363735252276, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3015, "time": 0.5020500376537528, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3038, + "noteOrder": 3040, "time": 0.5060664379549829, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3062, - "time": 0.5100828382562129, + "noteOrder": 3064, + "time": 0.5100828382562128, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3135, - "time": 0.522132039159903, + "noteOrder": 3136, + "time": 0.5221320391599029, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3183, + "noteOrder": 3184, "time": 0.530164839762363, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3231, - "time": 0.5381976403648231, + "noteOrder": 3233, + "time": 0.538197640364823, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3280, + "noteOrder": 3281, "time": 0.546230440967283, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3328, - "time": 0.5542632415697432, + "noteOrder": 3329, + "time": 0.554263241569743, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3352, + "noteOrder": 3353, "time": 0.5582796418709731, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3376, - "time": 0.5622960421722031, + "noteOrder": 3377, + "time": 0.5622960421722032, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3400, + "noteOrder": 3401, "time": 0.5663124424734332, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3619, "time": 0.6024600451845034, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3641, - "time": 0.6064764454857334, + "noteOrder": 3643, + "time": 0.6064764454857333, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3665, + "noteOrder": 3667, "time": 0.6104928457869634, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3810, - "time": 0.6345912475943436, + "noteOrder": 3812, + "time": 0.6345912475943435, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3834, - "time": 0.6386076478955737, + "noteOrder": 3836, + "time": 0.6386076478955736, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3858, + "noteOrder": 3860, "time": 0.6426240481968036, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4003, + "noteOrder": 4005, "time": 0.6667224500041837, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4027, - "time": 0.6707388503054138, + "noteOrder": 4029, + "time": 0.6707388503054137, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4051, - "time": 0.6747552506066439, + "noteOrder": 4053, + "time": 0.6747552506066438, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4196, + "noteOrder": 4198, "time": 0.6988536524140239, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4220, + "noteOrder": 4222, "time": 0.7028700527152539, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4389, - "time": 0.7309848548238642, + "noteOrder": 4391, + "time": 0.7309848548238641, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4413, + "noteOrder": 4415, "time": 0.7350012551250941, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4437, - "time": 0.7390176554263241, + "noteOrder": 4439, + "time": 0.739017655426324, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4582, - "time": 0.7631160572337043, + "noteOrder": 4584, + "time": 0.7631160572337042, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4582, - "time": 0.7631160572337043, + "noteOrder": 4584, + "time": 0.7631160572337042, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4606, + "noteOrder": 4608, "time": 0.7671324575349343, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4606, + "noteOrder": 4608, "time": 0.7671324575349343, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4630, - "time": 0.7711488578361644, + "noteOrder": 4632, + "time": 0.7711488578361643, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4630, - "time": 0.7711488578361644, + "noteOrder": 4632, + "time": 0.7711488578361643, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4775, + "noteOrder": 4777, "time": 0.7952472596435445, "position": { "x": 7, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4799, - "time": 0.7992636599447746, + "noteOrder": 4801, + "time": 0.7992636599447744, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4823, - "time": 0.8032800602460045, + "noteOrder": 4825, + "time": 0.8032800602460044, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4967, + "noteOrder": 4970, "time": 0.8273784620533846, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4967, + "noteOrder": 4970, "time": 0.8273784620533846, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4994, "time": 0.8313948623546147, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4994, "time": 0.8313948623546147, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 5018, "time": 0.8354112626558446, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 5018, "time": 0.8354112626558446, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 5162, "time": 0.8595096644632249, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5185, - "time": 0.8635260647644549, + "noteOrder": 5187, + "time": 0.8635260647644548, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5209, - "time": 0.867542465065685, + "noteOrder": 5211, + "time": 0.8675424650656848, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5402, - "time": 0.8996736674755251, + "noteOrder": 5404, + "time": 0.899673667475525, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5426, - "time": 0.9036900677767551, + "noteOrder": 5428, + "time": 0.903690067776755, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5546, + "noteOrder": 5548, "time": 0.9237720692829052, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5570, + "noteOrder": 5573, "time": 0.9277884695841352, "position": { "x": 6, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5594, - "time": 0.9318048698853653, + "noteOrder": 5597, + "time": 0.9318048698853652, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.9358212701865953, + "noteOrder": 5621, + "time": 0.9358212701865952, "position": { "x": 6, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5739, - "time": 0.9559032716927455, + "noteOrder": 5741, + "time": 0.9559032716927452, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5763, - "time": 0.9599196719939753, + "noteOrder": 5766, + "time": 0.9599196719939754, "position": { "x": 6, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5787, + "noteOrder": 5790, "time": 0.9639360722952054, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5787, + "noteOrder": 5790, "time": 0.9639360722952054, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5811, - "time": 0.9679524725964355, + "noteOrder": 5814, + "time": 0.9679524725964354, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5811, - "time": 0.9679524725964355, + "noteOrder": 5814, + "time": 0.9679524725964354, "position": { "x": 4, "y": 0 @@ -2396,7 +2396,7 @@ "lineNodes": [ { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, "time": 0.14459041084428081, @@ -2418,11 +2418,11 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 916, - "time": 0.15262321144674085, + "noteOrder": 893, + "time": 0.14860681114551083, "position": { "x": 6, "y": 0 @@ -2436,18 +2436,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1061, - "time": 0.176721613254121, + "noteOrder": 893, + "time": 0.14860681114551083, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2459,18 +2459,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1109, - "time": 0.18475441385658103, + "noteOrder": 917, + "time": 0.15262321144674085, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2482,18 +2482,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1254, - "time": 0.20885281566396116, + "noteOrder": 941, + "time": 0.1566396117479709, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2505,18 +2505,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1302, - "time": 0.21688561626642125, + "noteOrder": 941, + "time": 0.1566396117479709, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2533,11 +2533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1447, - "time": 0.24098401807380135, + "noteOrder": 1061, + "time": 0.176721613254121, "position": { "x": 3, "y": 0 @@ -2556,13 +2556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1495, - "time": 0.2490168186762614, + "noteOrder": 1086, + "time": 0.180738013555351, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2574,18 +2574,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1929, - "time": 0.3213120240984018, + "noteOrder": 1086, + "time": 0.180738013555351, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2597,18 +2597,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1977, - "time": 0.32934482470086185, + "noteOrder": 1110, + "time": 0.184754413856581, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2625,11 +2625,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2411, - "time": 0.40164003012300226, + "noteOrder": 1134, + "time": 0.18877081415781105, "position": { "x": 3, "y": 0 @@ -2643,18 +2643,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2460, - "time": 0.40967283072546234, + "noteOrder": 1134, + "time": 0.18877081415781105, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2671,11 +2671,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2604, - "time": 0.4337712325328425, + "noteOrder": 1254, + "time": 0.20885281566396116, "position": { "x": 7, "y": 0 @@ -2694,11 +2694,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2653, - "time": 0.4418040331353025, + "noteOrder": 1279, + "time": 0.21286921596519118, "position": { "x": 7, "y": 0 @@ -2712,18 +2712,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2797, - "time": 0.46590243494268263, + "noteOrder": 1279, + "time": 0.21286921596519118, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2735,18 +2735,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2894, - "time": 0.4819680361476027, + "noteOrder": 1303, + "time": 0.2168856162664212, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2758,18 +2758,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3087, - "time": 0.5140992385574429, + "noteOrder": 1327, + "time": 0.22090201656765124, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2786,13 +2786,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3135, - "time": 0.522132039159903, + "noteOrder": 1327, + "time": 0.22090201656765124, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2809,13 +2809,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3424, - "time": 0.5703288427746632, + "noteOrder": 1447, + "time": 0.24098401807380135, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2832,13 +2832,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3472, - "time": 0.5783616433771233, + "noteOrder": 1472, + "time": 0.24500041837503136, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2855,13 +2855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3424, - "time": 0.5703288427746632, + "noteOrder": 1472, + "time": 0.24500041837503136, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2873,16 +2873,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 3472, - "time": 0.5783616433771233, + "noteOrder": 1496, + "time": 0.24901681867626138, "position": { "x": 6, "y": 0 @@ -2901,13 +2901,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3521, - "time": 0.5863944439795833, + "noteOrder": 1520, + "time": 0.2530332189774914, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2924,13 +2924,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3569, - "time": 0.5944272445820434, + "noteOrder": 1520, + "time": 0.2530332189774914, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2947,13 +2947,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3569, - "time": 0.5944272445820434, + "noteOrder": 1930, + "time": 0.3213120240984018, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2965,18 +2965,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3617, - "time": 0.6024600451845034, + "noteOrder": 1978, + "time": 0.32934482470086185, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2988,16 +2988,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3714, - "time": 0.6185256463894234, + "noteOrder": 2412, + "time": 0.4016400301230022, "position": { "x": 3, "y": 0 @@ -3016,11 +3016,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3762, - "time": 0.6265584469918836, + "noteOrder": 2437, + "time": 0.4056564304242323, "position": { "x": 3, "y": 0 @@ -3039,13 +3039,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3762, - "time": 0.6265584469918836, + "noteOrder": 2437, + "time": 0.4056564304242323, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3057,18 +3057,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 3810, - "time": 0.6345912475943436, + "noteOrder": 2461, + "time": 0.4096728307254623, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3085,11 +3085,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3906, - "time": 0.6506568487992637, + "noteOrder": 2485, + "time": 0.4136892310266923, "position": { "x": 3, "y": 0 @@ -3103,16 +3103,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3955, - "time": 0.6586896494017237, + "noteOrder": 2485, + "time": 0.4136892310266923, "position": { "x": 4, "y": 0 @@ -3126,16 +3126,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3955, - "time": 0.6586896494017237, + "noteOrder": 2605, + "time": 0.4337712325328424, "position": { "x": 7, "y": 0 @@ -3154,13 +3154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4003, - "time": 0.6667224500041837, + "noteOrder": 2629, + "time": 0.43778763283407246, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3177,13 +3177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4099, - "time": 0.6827880512091039, + "noteOrder": 2629, + "time": 0.43778763283407246, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3200,13 +3200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 4148, - "time": 0.6908208518115638, + "noteOrder": 2654, + "time": 0.4418040331353025, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3218,18 +3218,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4148, - "time": 0.6908208518115638, + "noteOrder": 2678, + "time": 0.4458204334365325, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3246,13 +3246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4196, - "time": 0.6988536524140239, + "noteOrder": 2678, + "time": 0.4458204334365325, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3269,13 +3269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4292, - "time": 0.714919253618944, + "noteOrder": 2798, + "time": 0.4659024349426826, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3287,18 +3287,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4341, - "time": 0.7229520542214041, + "noteOrder": 2822, + "time": 0.46991883524391265, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3315,13 +3315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4485, - "time": 0.7470504560287842, + "noteOrder": 2822, + "time": 0.46991883524391265, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3338,13 +3338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4533, - "time": 0.7550832566312442, + "noteOrder": 2895, + "time": 0.4819680361476027, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3361,11 +3361,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4678, - "time": 0.7791816584386243, + "noteOrder": 2919, + "time": 0.4859844364488327, "position": { "x": 7, "y": 0 @@ -3384,13 +3384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4726, - "time": 0.7872144590410844, + "noteOrder": 2919, + "time": 0.4859844364488327, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3402,18 +3402,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4871, - "time": 0.8113128608484647, + "noteOrder": 3088, + "time": 0.5140992385574429, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3430,13 +3430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4919, - "time": 0.8193456614509247, + "noteOrder": 3136, + "time": 0.5221320391599029, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3448,18 +3448,1122 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5703288427746631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5783616433771233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3426, + "time": 0.5703288427746631, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3474, + "time": 0.5783616433771233, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3522, + "time": 0.5863944439795833, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5944272445820433, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5944272445820433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6024600451845034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3715, + "time": 0.6185256463894234, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6265584469918836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6265584469918836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3812, + "time": 0.6345912475943435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3908, + "time": 0.6506568487992637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6586896494017237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6586896494017237, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4005, + "time": 0.6667224500041837, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4101, + "time": 0.6827880512091038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4149, + "time": 0.6908208518115639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.6908208518115639, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4198, + "time": 0.6988536524140239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4294, + "time": 0.714919253618944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4318, + "time": 0.718935653920174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4318, + "time": 0.718935653920174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4342, + "time": 0.722952054221404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4366, + "time": 0.7269684545226341, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4366, + "time": 0.7269684545226341, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4487, + "time": 0.7470504560287842, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4511, + "time": 0.7510668563300141, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4511, + "time": 0.7510668563300141, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4535, + "time": 0.7550832566312442, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4559, + "time": 0.7590996569324743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4559, + "time": 0.7590996569324743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4680, + "time": 0.7791816584386244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4704, + "time": 0.7831980587398544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4704, + "time": 0.7831980587398544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4728, + "time": 0.7872144590410843, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4752, + "time": 0.7912308593423145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4752, + "time": 0.7912308593423145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4873, + "time": 0.8113128608484645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4897, + "time": 0.8153292611496945, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4897, + "time": 0.8153292611496945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4921, + "time": 0.8193456614509246, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4945, + "time": 0.8233620617521547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4945, + "time": 0.8233620617521547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5066, + "time": 0.8434440632583048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5090, + "time": 0.8474604635595347, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5090, + "time": 0.8474604635595347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5114, + "time": 0.8514768638607647, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5064, - "time": 0.8434440632583048, + "noteOrder": 5138, + "time": 0.8554932641619948, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3471,18 +4575,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5112, - "time": 0.8514768638607648, + "noteOrder": 5138, + "time": 0.8554932641619948, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3500,9 +4604,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5257, + "noteOrder": 5259, "time": 0.8755752656681449, "position": { "x": 3, @@ -3521,11 +4625,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5283, + "time": 0.8795916659693749, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5283, + "time": 0.8795916659693749, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5305, + "noteOrder": 5307, "time": 0.883608066270605, "position": { "x": 7, @@ -3544,11 +4694,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5331, + "time": 0.8876244665718349, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5331, + "time": 0.8876244665718349, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5450, + "noteOrder": 5452, "time": 0.9077064680779852, "position": { "x": 7, @@ -3567,11 +4763,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5476, + "time": 0.9117228683792151, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5476, + "time": 0.9117228683792151, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5498, + "noteOrder": 5500, "time": 0.9157392686804451, "position": { "x": 3, @@ -3590,11 +4832,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5524, + "time": 0.9197556689816752, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5524, + "time": 0.9197556689816752, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5643, + "noteOrder": 5645, "time": 0.9398376704878253, "position": { "x": 3, @@ -3613,11 +4901,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5669, + "time": 0.9438540707890553, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5669, + "time": 0.9438540707890553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5691, + "noteOrder": 5693, "time": 0.9478704710902853, "position": { "x": 7, @@ -3635,6 +4969,52 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5717, + "time": 0.9518868713915153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5717, + "time": 0.9518868713915153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Prettiful!/info.json b/tracks/Prettiful!/info.json index 6fcdcdb6..706a7146 100644 --- a/tracks/Prettiful!/info.json +++ b/tracks/Prettiful!/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Prettiful!", - "SongLength": "126.354286", + "SongLength": "116.401633", "SongAuthorName": "BlackY", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Rock The Club/374_difficulty_1a.json b/tracks/Rock The Club/374_difficulty_1a.json index b44f50a9..8d10846e 100644 --- a/tracks/Rock The Club/374_difficulty_1a.json +++ b/tracks/Rock The Club/374_difficulty_1a.json @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 193, + "noteOrder": 194, "time": 0.028985507246376812, "position": { "x": 7, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 580, + "noteOrder": 581, "time": 0.08695652173913043, "position": { "x": 5, @@ -174,7 +174,7 @@ }, { "noteOrder": 895, - "time": 0.13405797101449274, + "time": 0.13405797101449277, "position": { "x": 3, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 943, + "noteOrder": 944, "time": 0.14130434782608695, "position": { "x": 3, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 967, - "time": 0.14492753623188404, + "noteOrder": 968, + "time": 0.14492753623188406, "position": { "x": 4, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1185, - "time": 0.17753623188405795, + "noteOrder": 1186, + "time": 0.17753623188405798, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1524, - "time": 0.22826086956521738, + "time": 0.2282608695652174, "position": { "x": 3, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1693, - "time": 0.25362318840579706, + "noteOrder": 1694, + "time": 0.2536231884057971, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1717, + "noteOrder": 1718, "time": 0.2572463768115942, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1862, + "noteOrder": 1863, "time": 0.27898550724637683, "position": { "x": 5, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1886, + "noteOrder": 1887, "time": 0.2826086956521739, "position": { "x": 7, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2128, - "time": 0.3188405797101449, + "noteOrder": 2129, + "time": 0.31884057971014496, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2443, - "time": 0.36594202898550726, + "noteOrder": 2444, + "time": 0.3659420289855072, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.38405797101449274, + "noteOrder": 2565, + "time": 0.3840579710144928, "position": { "x": 5, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2588, - "time": 0.3876811594202898, + "noteOrder": 2589, + "time": 0.38768115942028986, "position": { "x": 5, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2612, - "time": 0.3913043478260869, + "noteOrder": 2613, + "time": 0.391304347826087, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2636, + "noteOrder": 2637, "time": 0.39492753623188404, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2709, + "noteOrder": 2710, "time": 0.40579710144927533, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2733, - "time": 0.40942028985507245, + "noteOrder": 2734, + "time": 0.4094202898550725, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2757, + "noteOrder": 2758, "time": 0.41304347826086957, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.41666666666666663, + "noteOrder": 2782, + "time": 0.4166666666666667, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2806, - "time": 0.42028985507246375, + "noteOrder": 2807, + "time": 0.4202898550724638, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.4239130434782608, + "noteOrder": 2831, + "time": 0.42391304347826086, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2854, + "noteOrder": 2855, "time": 0.427536231884058, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2878, + "noteOrder": 2879, "time": 0.43115942028985504, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2926, - "time": 0.4384057971014492, + "noteOrder": 2928, + "time": 0.4384057971014493, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2951, + "noteOrder": 2952, "time": 0.4420289855072464, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2975, - "time": 0.44565217391304346, + "noteOrder": 2976, + "time": 0.4456521739130435, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3097, "time": 0.463768115942029, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.46739130434782605, + "noteOrder": 3121, + "time": 0.4673913043478261, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.47101449275362317, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3168, - "time": 0.47463768115942023, + "noteOrder": 3170, + "time": 0.4746376811594203, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.4927536231884058, "position": { "x": 5, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3313, + "noteOrder": 3315, "time": 0.4963768115942029, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.5, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3362, + "noteOrder": 3363, "time": 0.5036231884057971, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.5181159420289855, + "noteOrder": 3460, + "time": 0.5181159420289856, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3484, "time": 0.5217391304347826, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3508, "time": 0.5253623188405797, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3531, - "time": 0.5289855072463768, + "noteOrder": 3532, + "time": 0.5289855072463767, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3555, - "time": 0.5326086956521738, + "noteOrder": 3557, + "time": 0.532608695652174, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3604, - "time": 0.5398550724637682, + "noteOrder": 3605, + "time": 0.5398550724637681, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3653, "time": 0.5471014492753623, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5507246376811594, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5543478260869565, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3726, "time": 0.5579710144927537, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3750, "time": 0.5615942028985507, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3797, + "noteOrder": 3799, "time": 0.568840579710145, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3847, "time": 0.5760869565217391, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.5833333333333333, + "noteOrder": 3895, + "time": 0.5833333333333334, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3942, - "time": 0.5905797101449275, + "noteOrder": 3944, + "time": 0.5905797101449276, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.5978260869565216, + "noteOrder": 3992, + "time": 0.5978260869565217, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4039, + "noteOrder": 4041, "time": 0.605072463768116, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4087, + "noteOrder": 4089, "time": 0.6123188405797101, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4136, + "noteOrder": 4137, "time": 0.6195652173913043, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4281, - "time": 0.6413043478260869, + "noteOrder": 4282, + "time": 0.641304347826087, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4331, "time": 0.6485507246376812, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4450, + "noteOrder": 4452, "time": 0.6666666666666666, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4462, - "time": 0.6684782608695652, + "noteOrder": 4464, + "time": 0.6684782608695653, "position": { "x": 5, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4474, + "noteOrder": 4476, "time": 0.6702898550724637, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4486, + "noteOrder": 4488, "time": 0.6721014492753623, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4523, + "noteOrder": 4524, "time": 0.677536231884058, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4595, + "noteOrder": 4597, "time": 0.6884057971014493, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4668, - "time": 0.6992753623188405, + "noteOrder": 4670, + "time": 0.6992753623188406, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4694, "time": 0.7028985507246377, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4716, + "noteOrder": 4718, "time": 0.7065217391304348, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4740, - "time": 0.7101449275362318, + "noteOrder": 4742, + "time": 0.7101449275362319, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5055, - "time": 0.7572463768115941, + "noteOrder": 5057, + "time": 0.7572463768115942, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5081, "time": 0.7608695652173914, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5105, "time": 0.7644927536231884, "position": { "x": 6, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5127, - "time": 0.7681159420289855, + "noteOrder": 5129, + "time": 0.7681159420289856, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5490, + "noteOrder": 5492, "time": 0.822463768115942, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5587, - "time": 0.8369565217391305, + "noteOrder": 5589, + "time": 0.8369565217391304, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5684, - "time": 0.8514492753623188, + "noteOrder": 5686, + "time": 0.851449275362319, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5732, - "time": 0.858695652173913, + "noteOrder": 5734, + "time": 0.8586956521739131, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5756, + "noteOrder": 5758, "time": 0.8623188405797101, "position": { "x": 6, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5780, - "time": 0.8659420289855072, + "noteOrder": 5783, + "time": 0.8659420289855073, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5829, + "noteOrder": 5831, "time": 0.8731884057971014, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5853, - "time": 0.8768115942028984, + "noteOrder": 5855, + "time": 0.8768115942028986, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5877, + "noteOrder": 5879, "time": 0.8804347826086957, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5926, - "time": 0.8876811594202898, + "noteOrder": 5928, + "time": 0.8876811594202899, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5938, + "noteOrder": 5940, "time": 0.8894927536231884, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5974, + "noteOrder": 5976, "time": 0.894927536231884, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5986, + "noteOrder": 5988, "time": 0.8967391304347826, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6119, + "noteOrder": 6121, "time": 0.9166666666666666, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6131, - "time": 0.9184782608695652, + "noteOrder": 6133, + "time": 0.9184782608695653, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6167, - "time": 0.9239130434782609, + "noteOrder": 6170, + "time": 0.923913043478261, "position": { "x": 7, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6179, + "noteOrder": 6182, "time": 0.9257246376811594, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 6194, "time": 0.927536231884058, "position": { "x": 3, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6216, - "time": 0.931159420289855, + "noteOrder": 6218, + "time": 0.9311594202898551, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6240, - "time": 0.9347826086956521, + "noteOrder": 6242, + "time": 0.9347826086956522, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6264, + "noteOrder": 6266, "time": 0.9384057971014493, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 6291, "time": 0.9420289855072463, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6312, + "noteOrder": 6315, "time": 0.9456521739130435, "position": { "x": 3, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6337, - "time": 0.9492753623188405, + "noteOrder": 6339, + "time": 0.9492753623188406, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6349, - "time": 0.951086956521739, + "noteOrder": 6351, + "time": 0.9510869565217391, "position": { "x": 5, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6361, + "noteOrder": 6363, "time": 0.9528985507246377, "position": { "x": 7, @@ -2216,10 +2216,33 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 121, - "time": 0.018115942028985504, + "time": 0.018115942028985508, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 133, + "time": 0.01992753623188406, "position": { "x": 3, "y": 0 @@ -2237,9 +2260,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 2, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 133, + "time": 0.01992753623188406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, "time": 0.021739130434782608, @@ -2260,9 +2306,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 3, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 157, + "time": 0.02355072463768116, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 3, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 157, + "time": 0.02355072463768116, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 169, "time": 0.02536231884057971, @@ -2283,9 +2375,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 4, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 181, + "time": 0.02717391304347826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 4, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 181, + "time": 0.02717391304347826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 218, "time": 0.03260869565217391, @@ -2306,12 +2444,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 230, + "time": 0.034420289855072464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 230, + "time": 0.034420289855072464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, - "time": 0.03623188405797101, + "time": 0.036231884057971016, "position": { "x": 3, "y": 0 @@ -2330,13 +2514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 8, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 2, "isSliding": false, - "noteOrder": 266, - "time": 0.03985507246376811, + "noteOrder": 254, + "time": 0.03804347826086957, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2348,18 +2532,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 7, + "indexInLine": 3, "isSliding": false, - "noteOrder": 314, - "time": 0.04710144927536232, + "noteOrder": 254, + "time": 0.03804347826086957, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2376,11 +2560,11 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 1, "isSliding": false, - "noteOrder": 339, - "time": 0.05072463768115942, + "noteOrder": 266, + "time": 0.03985507246376812, "position": { "x": 7, "y": 0 @@ -2399,13 +2583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 363, - "time": 0.05434782608695652, + "noteOrder": 278, + "time": 0.041666666666666664, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2417,18 +2601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 411, - "time": 0.06159420289855073, + "noteOrder": 278, + "time": 0.041666666666666664, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2445,11 +2629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 435, - "time": 0.06521739130434782, + "noteOrder": 315, + "time": 0.04710144927536232, "position": { "x": 3, "y": 0 @@ -2468,13 +2652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 460, - "time": 0.06884057971014493, + "noteOrder": 327, + "time": 0.04891304347826087, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2486,18 +2670,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 508, - "time": 0.07608695652173912, + "noteOrder": 327, + "time": 0.04891304347826087, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2509,18 +2693,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, + "lineGroupId": 11, "indexInLine": 1, "isSliding": false, - "noteOrder": 532, - "time": 0.07971014492753623, + "noteOrder": 339, + "time": 0.05072463768115942, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2537,13 +2721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 532, - "time": 0.07971014492753623, + "noteOrder": 351, + "time": 0.052536231884057975, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2555,16 +2739,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 1, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 556, - "time": 0.08333333333333333, + "noteOrder": 351, + "time": 0.052536231884057975, "position": { "x": 5, "y": 0 @@ -2578,18 +2762,4411 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 363, + "time": 0.05434782608695652, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 375, + "time": 0.05615942028985507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 375, + "time": 0.05615942028985507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 387, + "time": 0.057971014492753624, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 12, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 387, + "time": 0.057971014492753624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 411, + "time": 0.06159420289855073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 423, + "time": 0.06340579710144928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 423, + "time": 0.06340579710144928, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 436, + "time": 0.06521739130434782, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 448, + "time": 0.06702898550724638, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 448, + "time": 0.06702898550724638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 460, + "time": 0.06884057971014493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 460, + "time": 0.06884057971014493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 472, + "time": 0.07065217391304347, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 472, + "time": 0.07065217391304347, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 484, + "time": 0.07246376811594203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 484, + "time": 0.07246376811594203, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 460, + "time": 0.06884057971014493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 472, + "time": 0.07065217391304347, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 472, + "time": 0.07065217391304347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 484, + "time": 0.07246376811594203, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 484, + "time": 0.07246376811594203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 508, + "time": 0.07608695652173914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 532, + "time": 0.07971014492753624, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 532, + "time": 0.07971014492753624, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 556, + "time": 0.08333333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 556, + "time": 0.08333333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 581, + "time": 0.08695652173913043, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 605, + "time": 0.09057971014492754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 617, + "time": 0.09239130434782608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 617, + "time": 0.09239130434782608, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 629, + "time": 0.09420289855072464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 641, + "time": 0.0960144927536232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 641, + "time": 0.0960144927536232, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 653, + "time": 0.09782608695652174, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 665, + "time": 0.09963768115942029, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 665, + "time": 0.09963768115942029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 702, + "time": 0.10507246376811595, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 726, + "time": 0.10869565217391304, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 726, + "time": 0.10869565217391304, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 750, + "time": 0.11231884057971014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 750, + "time": 0.11231884057971014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 774, + "time": 0.11594202898550725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 798, + "time": 0.11956521739130435, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 811, + "time": 0.12137681159420291, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 823, + "time": 0.12318840579710146, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 823, + "time": 0.12318840579710146, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 835, + "time": 0.125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 847, + "time": 0.12681159420289856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 847, + "time": 0.12681159420289856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 859, + "time": 0.1286231884057971, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 871, + "time": 0.13043478260869565, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 919, + "time": 0.13768115942028986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 944, + "time": 0.14130434782608695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 944, + "time": 0.14130434782608695, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1016, + "time": 0.15217391304347827, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1040, + "time": 0.15579710144927536, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1040, + "time": 0.15579710144927536, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1258, + "time": 0.18840579710144928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1270, + "time": 0.19021739130434784, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1270, + "time": 0.19021739130434784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1282, + "time": 0.1920289855072464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1282, + "time": 0.1920289855072464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1282, + "time": 0.1920289855072464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1294, + "time": 0.19384057971014493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1294, + "time": 0.19384057971014493, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1307, + "time": 0.1956521739130435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1307, + "time": 0.1956521739130435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1307, + "time": 0.1956521739130435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1319, + "time": 0.19746376811594202, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1319, + "time": 0.19746376811594202, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1331, + "time": 0.19927536231884058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1331, + "time": 0.19927536231884058, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1331, + "time": 0.19927536231884058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1343, + "time": 0.20108695652173914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1343, + "time": 0.20108695652173914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1355, + "time": 0.20289855072463767, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1355, + "time": 0.20289855072463767, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1355, + "time": 0.20289855072463767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1367, + "time": 0.20471014492753625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1379, + "time": 0.20652173913043478, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1379, + "time": 0.20652173913043478, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1391, + "time": 0.20833333333333334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1403, + "time": 0.2101449275362319, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1403, + "time": 0.2101449275362319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1415, + "time": 0.21195652173913043, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1427, + "time": 0.213768115942029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1427, + "time": 0.213768115942029, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1440, + "time": 0.21557971014492752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1452, + "time": 0.21739130434782608, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1452, + "time": 0.21739130434782608, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1464, + "time": 0.21920289855072464, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1464, + "time": 0.21920289855072464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1476, + "time": 0.2210144927536232, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1488, + "time": 0.22282608695652176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1488, + "time": 0.22282608695652176, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1500, + "time": 0.2246376811594203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1512, + "time": 0.22644927536231885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1512, + "time": 0.22644927536231885, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1548, + "time": 0.2318840579710145, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1597, + "time": 0.2391304347826087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1621, + "time": 0.24275362318840582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1597, + "time": 0.2391304347826087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1621, + "time": 0.24275362318840582, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1645, + "time": 0.2463768115942029, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1669, + "time": 0.25, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1694, + "time": 0.2536231884057971, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1718, + "time": 0.2572463768115942, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1742, + "time": 0.2608695652173913, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1742, + "time": 0.2608695652173913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.26449275362318836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1766, + "time": 0.26449275362318836, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1790, + "time": 0.26811594202898553, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1790, + "time": 0.26811594202898553, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1815, + "time": 0.27173913043478265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1815, + "time": 0.27173913043478265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1839, + "time": 0.2753623188405797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1839, + "time": 0.2753623188405797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1863, + "time": 0.27898550724637683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1887, + "time": 0.2826086956521739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1911, + "time": 0.286231884057971, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1936, + "time": 0.2898550724637681, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1936, + "time": 0.2898550724637681, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1948, + "time": 0.2916666666666667, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1948, + "time": 0.2916666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1960, + "time": 0.2934782608695652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1972, + "time": 0.2952898550724638, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1972, + "time": 0.2952898550724638, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2032, + "time": 0.30434782608695654, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.30615942028985504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2044, + "time": 0.30615942028985504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2057, + "time": 0.30797101449275366, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2057, + "time": 0.30797101449275366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2057, + "time": 0.30797101449275366, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2069, + "time": 0.30978260869565216, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2069, + "time": 0.30978260869565216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2081, + "time": 0.3115942028985507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2081, + "time": 0.3115942028985507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2081, + "time": 0.3115942028985507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3134057971014493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2093, + "time": 0.3134057971014493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2105, + "time": 0.31521739130434784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2105, + "time": 0.31521739130434784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2105, + "time": 0.31521739130434784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2117, + "time": 0.31702898550724634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2117, + "time": 0.31702898550724634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2129, + "time": 0.31884057971014496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2129, + "time": 0.31884057971014496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2178, + "time": 0.32608695652173914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2190, + "time": 0.3278985507246377, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2202, + "time": 0.3297101449275362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2202, + "time": 0.3297101449275362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2214, + "time": 0.3315217391304348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2226, + "time": 0.3333333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2226, + "time": 0.3333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2238, + "time": 0.3351449275362319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2238, + "time": 0.3351449275362319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2250, + "time": 0.3369565217391305, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2262, + "time": 0.338768115942029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2262, + "time": 0.338768115942029, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2274, + "time": 0.34057971014492755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3423913043478261, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3423913043478261, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2323, + "time": 0.34782608695652173, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2347, + "time": 0.35144927536231885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2371, + "time": 0.35507246376811596, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.36231884057971014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2444, + "time": 0.3659420289855072, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2468, + "time": 0.3695652173913043, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2480, + "time": 0.3713768115942029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2480, + "time": 0.3713768115942029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2492, + "time": 0.3731884057971015, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2492, + "time": 0.3731884057971015, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2492, + "time": 0.3731884057971015, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2504, + "time": 0.375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2504, + "time": 0.375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2516, + "time": 0.37681159420289856, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2516, + "time": 0.37681159420289856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2516, + "time": 0.37681159420289856, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2528, + "time": 0.3786231884057971, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2528, + "time": 0.3786231884057971, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2540, + "time": 0.3804347826086957, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2540, + "time": 0.3804347826086957, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2540, + "time": 0.3804347826086957, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2565, + "time": 0.3840579710144928, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2589, + "time": 0.38768115942028986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2613, + "time": 0.391304347826087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2661, + "time": 0.39855072463768115, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2674, + "time": 0.4003623188405797, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2674, + "time": 0.4003623188405797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2686, + "time": 0.40217391304347827, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 556, - "time": 0.08333333333333333, + "noteOrder": 2698, + "time": 0.40398550724637683, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2606,13 +7183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 580, - "time": 0.08695652173913043, + "noteOrder": 2698, + "time": 0.40398550724637683, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2629,11 +7206,11 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 605, - "time": 0.09057971014492754, + "noteOrder": 2903, + "time": 0.43478260869565216, "position": { "x": 3, "y": 0 @@ -2652,13 +7229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 629, - "time": 0.09420289855072464, + "noteOrder": 2952, + "time": 0.4420289855072464, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2670,18 +7247,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 653, - "time": 0.09782608695652173, + "noteOrder": 3000, + "time": 0.4492753623188406, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2693,18 +7270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 701, - "time": 0.10507246376811594, + "noteOrder": 3012, + "time": 0.45108695652173914, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2721,11 +7298,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 726, - "time": 0.10869565217391304, + "noteOrder": 3012, + "time": 0.45108695652173914, "position": { "x": 5, "y": 0 @@ -2744,13 +7321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 726, - "time": 0.10869565217391304, + "noteOrder": 3024, + "time": 0.4528985507246377, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2767,13 +7344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 750, - "time": 0.11231884057971014, + "noteOrder": 3036, + "time": 0.4547101449275362, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2790,13 +7367,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 750, - "time": 0.11231884057971014, + "noteOrder": 3036, + "time": 0.4547101449275362, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2808,16 +7385,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 774, - "time": 0.11594202898550725, + "noteOrder": 3049, + "time": 0.4565217391304348, "position": { "x": 5, "y": 0 @@ -2836,11 +7413,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 798, - "time": 0.11956521739130435, + "noteOrder": 3073, + "time": 0.4601449275362319, "position": { "x": 5, "y": 0 @@ -2854,18 +7431,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 810, - "time": 0.1213768115942029, + "noteOrder": 3073, + "time": 0.4601449275362319, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2882,11 +7459,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, + "lineGroupId": 119, "indexInLine": 2, "isSliding": false, - "noteOrder": 822, - "time": 0.12318840579710146, + "noteOrder": 3097, + "time": 0.463768115942029, "position": { "x": 5, "y": 0 @@ -2905,11 +7482,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 822, - "time": 0.12318840579710146, + "noteOrder": 3194, + "time": 0.4782608695652174, "position": { "x": 5, "y": 0 @@ -2928,11 +7505,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 834, - "time": 0.125, + "noteOrder": 3206, + "time": 0.48007246376811596, "position": { "x": 6, "y": 0 @@ -2951,11 +7528,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 2, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 847, - "time": 0.12681159420289853, + "noteOrder": 3218, + "time": 0.4818840579710145, "position": { "x": 5, "y": 0 @@ -2974,11 +7551,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 847, - "time": 0.12681159420289853, + "noteOrder": 3218, + "time": 0.4818840579710145, "position": { "x": 5, "y": 0 @@ -2997,11 +7574,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 859, - "time": 0.1286231884057971, + "noteOrder": 3230, + "time": 0.483695652173913, "position": { "x": 4, "y": 0 @@ -3020,11 +7597,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 2, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 871, - "time": 0.13043478260869565, + "noteOrder": 3242, + "time": 0.48550724637681164, "position": { "x": 5, "y": 0 @@ -3043,13 +7620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 919, - "time": 0.13768115942028986, + "noteOrder": 3242, + "time": 0.48550724637681164, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3066,13 +7643,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1016, - "time": 0.15217391304347824, + "noteOrder": 3254, + "time": 0.48731884057971014, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3084,18 +7661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1258, - "time": 0.18840579710144928, + "noteOrder": 3266, + "time": 0.4891304347826087, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3112,13 +7689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1282, - "time": 0.19202898550724637, + "noteOrder": 3266, + "time": 0.4891304347826087, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3135,36 +7712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1306, - "time": 0.19565217391304346, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1330, - "time": 0.19927536231884058, + "noteOrder": 3278, + "time": 0.4909420289855072, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3181,13 +7735,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1354, - "time": 0.20289855072463767, + "noteOrder": 3290, + "time": 0.4927536231884058, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3199,18 +7753,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 132, "indexInLine": 1, "isSliding": false, - "noteOrder": 1366, - "time": 0.20471014492753623, + "noteOrder": 3387, + "time": 0.5072463768115942, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3222,18 +7776,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 132, "indexInLine": 2, "isSliding": false, - "noteOrder": 1379, - "time": 0.20652173913043478, + "noteOrder": 3399, + "time": 0.5090579710144927, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3245,16 +7799,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1379, - "time": 0.20652173913043478, + "noteOrder": 3399, + "time": 0.5090579710144927, "position": { "x": 5, "y": 0 @@ -3273,13 +7827,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 1391, - "time": 0.20833333333333331, + "noteOrder": 3411, + "time": 0.5108695652173914, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3291,18 +7845,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 133, "indexInLine": 2, "isSliding": false, - "noteOrder": 1403, - "time": 0.21014492753623187, + "noteOrder": 3424, + "time": 0.5126811594202899, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3314,18 +7868,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1403, - "time": 0.21014492753623187, + "noteOrder": 3424, + "time": 0.5126811594202899, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3342,13 +7896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 1415, - "time": 0.2119565217391304, + "noteOrder": 3436, + "time": 0.5144927536231884, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3360,18 +7914,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 134, "indexInLine": 2, "isSliding": false, - "noteOrder": 1427, - "time": 0.213768115942029, + "noteOrder": 3448, + "time": 0.516304347826087, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3383,16 +7937,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1427, - "time": 0.213768115942029, + "noteOrder": 3448, + "time": 0.516304347826087, "position": { "x": 5, "y": 0 @@ -3411,13 +7965,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 1439, - "time": 0.21557971014492752, + "noteOrder": 3581, + "time": 0.5362318840579711, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3434,13 +7988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 140, "indexInLine": 2, "isSliding": false, - "noteOrder": 1451, - "time": 0.21739130434782608, + "noteOrder": 3593, + "time": 0.5380434782608696, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3457,13 +8011,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1451, - "time": 0.21739130434782608, + "noteOrder": 3605, + "time": 0.5398550724637681, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3475,18 +8029,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1475, - "time": 0.2210144927536232, + "noteOrder": 3617, + "time": 0.5416666666666666, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3503,13 +8057,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1500, - "time": 0.2246376811594203, + "noteOrder": 3629, + "time": 0.5434782608695653, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3521,16 +8075,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.2318840579710145, + "noteOrder": 3629, + "time": 0.5434782608695653, "position": { "x": 5, "y": 0 @@ -3549,13 +8103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1596, - "time": 0.2391304347826087, + "noteOrder": 3641, + "time": 0.5452898550724637, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3572,13 +8126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 2, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1620, - "time": 0.2427536231884058, + "noteOrder": 3653, + "time": 0.5471014492753623, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3595,11 +8149,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1596, - "time": 0.2391304347826087, + "noteOrder": 3665, + "time": 0.548913043478261, "position": { "x": 6, "y": 0 @@ -3613,18 +8167,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1620, - "time": 0.2427536231884058, + "noteOrder": 3678, + "time": 0.5507246376811594, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3636,16 +8190,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1645, - "time": 0.2463768115942029, + "noteOrder": 3774, + "time": 0.5652173913043478, "position": { "x": 3, "y": 0 @@ -3664,11 +8218,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1669, - "time": 0.25, + "noteOrder": 3823, + "time": 0.572463768115942, "position": { "x": 3, "y": 0 @@ -3687,13 +8241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 2, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1693, - "time": 0.25362318840579706, + "noteOrder": 3823, + "time": 0.572463768115942, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3705,18 +8259,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 3, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1717, - "time": 0.2572463768115942, + "noteOrder": 3871, + "time": 0.5797101449275363, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3728,18 +8282,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 4, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, - "time": 0.2608695652173913, + "noteOrder": 3871, + "time": 0.5797101449275363, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3756,13 +8310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1741, - "time": 0.2608695652173913, + "noteOrder": 3895, + "time": 0.5833333333333334, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3774,18 +8328,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 154, "indexInLine": 1, "isSliding": false, - "noteOrder": 1766, - "time": 0.2644927536231884, + "noteOrder": 3920, + "time": 0.5869565217391304, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3802,13 +8356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1766, - "time": 0.2644927536231884, + "noteOrder": 3944, + "time": 0.5905797101449276, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3820,18 +8374,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.2681159420289855, + "noteOrder": 3968, + "time": 0.5942028985507246, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3848,13 +8402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1790, - "time": 0.2681159420289855, + "noteOrder": 4016, + "time": 0.601449275362319, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3866,18 +8420,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 1814, - "time": 0.2717391304347826, + "noteOrder": 4016, + "time": 0.601449275362319, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3894,13 +8448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1814, - "time": 0.2717391304347826, + "noteOrder": 4065, + "time": 0.6086956521739131, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3912,18 +8466,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 160, "indexInLine": 1, "isSliding": false, - "noteOrder": 1838, - "time": 0.2753623188405797, + "noteOrder": 4065, + "time": 0.6086956521739131, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3940,13 +8494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1838, - "time": 0.2753623188405797, + "noteOrder": 4089, + "time": 0.6123188405797101, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3958,16 +8512,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 1862, - "time": 0.27898550724637683, + "noteOrder": 4113, + "time": 0.6159420289855073, "position": { "x": 7, "y": 0 @@ -3986,11 +8540,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 162, "indexInLine": 2, "isSliding": false, - "noteOrder": 1886, - "time": 0.2826086956521739, + "noteOrder": 4137, + "time": 0.6195652173913043, "position": { "x": 6, "y": 0 @@ -4009,13 +8563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 3, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1911, - "time": 0.286231884057971, + "noteOrder": 4161, + "time": 0.6231884057971014, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4027,16 +8581,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 4, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1935, - "time": 0.28985507246376807, + "noteOrder": 4174, + "time": 0.625, "position": { "x": 5, "y": 0 @@ -4050,18 +8604,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1935, - "time": 0.28985507246376807, + "noteOrder": 4186, + "time": 0.6268115942028986, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4078,13 +8632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1959, - "time": 0.29347826086956524, + "noteOrder": 4186, + "time": 0.6268115942028986, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4101,13 +8655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2032, - "time": 0.3043478260869565, + "noteOrder": 4198, + "time": 0.6286231884057971, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4119,18 +8673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2056, - "time": 0.3079710144927536, + "noteOrder": 4210, + "time": 0.6304347826086957, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4147,13 +8701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2080, - "time": 0.3115942028985507, + "noteOrder": 4210, + "time": 0.6304347826086957, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4170,36 +8724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2104, - "time": 0.31521739130434784, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2177, - "time": 0.32608695652173914, + "noteOrder": 4222, + "time": 0.6322463768115942, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4216,11 +8747,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2189, - "time": 0.32789855072463764, + "noteOrder": 4234, + "time": 0.6340579710144927, "position": { "x": 4, "y": 0 @@ -4239,13 +8770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 2, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2201, - "time": 0.32971014492753625, + "noteOrder": 4234, + "time": 0.6340579710144927, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4257,16 +8788,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2201, - "time": 0.32971014492753625, + "noteOrder": 4246, + "time": 0.6358695652173914, "position": { "x": 6, "y": 0 @@ -4285,11 +8816,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2213, - "time": 0.33152173913043476, + "noteOrder": 4258, + "time": 0.6376811594202899, "position": { "x": 6, "y": 0 @@ -4308,13 +8839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 2, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2225, - "time": 0.3333333333333333, + "noteOrder": 4258, + "time": 0.6376811594202899, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4326,16 +8857,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2225, - "time": 0.3333333333333333, + "noteOrder": 4270, + "time": 0.6394927536231884, "position": { "x": 3, "y": 0 @@ -4354,13 +8885,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2249, - "time": 0.33695652173913043, + "noteOrder": 4270, + "time": 0.6394927536231884, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4372,18 +8903,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2273, - "time": 0.3405797101449275, + "noteOrder": 4282, + "time": 0.641304347826087, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4400,13 +8931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2322, - "time": 0.34782608695652173, + "noteOrder": 4282, + "time": 0.641304347826087, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4423,11 +8954,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 2346, - "time": 0.35144927536231885, + "noteOrder": 4307, + "time": 0.644927536231884, "position": { "x": 3, "y": 0 @@ -4441,18 +8972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 170, "indexInLine": 2, "isSliding": false, - "noteOrder": 2370, - "time": 0.3550724637681159, + "noteOrder": 4319, + "time": 0.6467391304347826, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4464,18 +8995,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2419, - "time": 0.36231884057971014, + "noteOrder": 4319, + "time": 0.6467391304347826, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4492,13 +9023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2443, - "time": 0.36594202898550726, + "noteOrder": 4331, + "time": 0.6485507246376812, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4515,11 +9046,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2467, - "time": 0.3695652173913043, + "noteOrder": 4331, + "time": 0.6485507246376812, "position": { "x": 6, "y": 0 @@ -4533,18 +9064,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2491, - "time": 0.37318840579710144, + "noteOrder": 4355, + "time": 0.6521739130434783, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4561,11 +9092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2515, - "time": 0.37681159420289856, + "noteOrder": 4367, + "time": 0.6539855072463768, "position": { "x": 7, "y": 0 @@ -4579,18 +9110,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2540, - "time": 0.3804347826086957, + "noteOrder": 4367, + "time": 0.6539855072463768, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4607,13 +9138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 2564, - "time": 0.38405797101449274, + "noteOrder": 4379, + "time": 0.6557971014492754, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4625,18 +9156,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 173, "indexInLine": 2, "isSliding": false, - "noteOrder": 2588, - "time": 0.3876811594202898, + "noteOrder": 4391, + "time": 0.657608695652174, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4648,18 +9179,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 173, "indexInLine": 3, "isSliding": false, - "noteOrder": 2612, - "time": 0.3913043478260869, + "noteOrder": 4391, + "time": 0.657608695652174, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4671,18 +9202,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2660, - "time": 0.39855072463768115, + "noteOrder": 4403, + "time": 0.6594202898550724, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4694,16 +9225,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2685, - "time": 0.4021739130434782, + "noteOrder": 4416, + "time": 0.6612318840579711, "position": { "x": 7, "y": 0 @@ -4722,13 +9253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2902, - "time": 0.43478260869565216, + "noteOrder": 4416, + "time": 0.6612318840579711, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4740,18 +9271,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 2951, - "time": 0.4420289855072464, + "noteOrder": 4428, + "time": 0.6630434782608696, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4768,13 +9299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2999, - "time": 0.4492753623188406, + "noteOrder": 4440, + "time": 0.6648550724637681, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4786,18 +9317,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3023, - "time": 0.45289855072463764, + "noteOrder": 4440, + "time": 0.6648550724637681, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4814,13 +9345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3047, - "time": 0.45652173913043476, + "noteOrder": 4500, + "time": 0.673913043478261, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4837,13 +9368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3072, - "time": 0.4601449275362319, + "noteOrder": 4512, + "time": 0.6757246376811594, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4860,13 +9391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3072, - "time": 0.4601449275362319, + "noteOrder": 4512, + "time": 0.6757246376811594, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4878,18 +9409,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3096, - "time": 0.463768115942029, + "noteOrder": 4524, + "time": 0.677536231884058, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4901,18 +9432,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3193, - "time": 0.4782608695652174, + "noteOrder": 4524, + "time": 0.677536231884058, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4929,13 +9460,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 3205, - "time": 0.4800724637681159, + "noteOrder": 4549, + "time": 0.6811594202898551, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4947,16 +9478,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 182, "indexInLine": 2, "isSliding": false, - "noteOrder": 3217, - "time": 0.48188405797101447, + "noteOrder": 4621, + "time": 0.6920289855072463, "position": { "x": 5, "y": 0 @@ -4970,18 +9501,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3217, - "time": 0.48188405797101447, + "noteOrder": 4645, + "time": 0.6956521739130435, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4993,18 +9524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3229, - "time": 0.483695652173913, + "noteOrder": 4742, + "time": 0.7101449275362319, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5016,18 +9547,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3241, - "time": 0.4855072463768116, + "noteOrder": 4766, + "time": 0.713768115942029, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5039,18 +9570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3241, - "time": 0.4855072463768116, + "noteOrder": 4778, + "time": 0.7155797101449276, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5067,13 +9598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3253, - "time": 0.48731884057971014, + "noteOrder": 4778, + "time": 0.7155797101449276, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5090,13 +9621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3265, - "time": 0.48913043478260865, + "noteOrder": 4791, + "time": 0.717391304347826, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5108,18 +9639,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3265, - "time": 0.48913043478260865, + "noteOrder": 4803, + "time": 0.7192028985507246, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5136,11 +9667,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3277, - "time": 0.4909420289855072, + "noteOrder": 4803, + "time": 0.7192028985507246, "position": { "x": 4, "y": 0 @@ -5159,13 +9690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 2, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3289, - "time": 0.4927536231884058, + "noteOrder": 4815, + "time": 0.7210144927536233, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5177,18 +9708,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.5072463768115941, + "noteOrder": 4827, + "time": 0.7228260869565217, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5200,18 +9731,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3410, - "time": 0.5108695652173914, + "noteOrder": 4827, + "time": 0.7228260869565217, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5228,11 +9759,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3434, - "time": 0.5144927536231884, + "noteOrder": 4839, + "time": 0.7246376811594203, "position": { "x": 3, "y": 0 @@ -5251,13 +9782,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3579, - "time": 0.536231884057971, + "noteOrder": 4863, + "time": 0.7282608695652174, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5274,13 +9805,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3592, - "time": 0.5380434782608695, + "noteOrder": 4863, + "time": 0.7282608695652174, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5297,13 +9828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 2, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.5398550724637682, + "noteOrder": 4863, + "time": 0.7282608695652174, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5315,18 +9846,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 3, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3616, - "time": 0.5416666666666666, + "noteOrder": 4875, + "time": 0.730072463768116, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5338,16 +9869,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 4, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3628, - "time": 0.5434782608695652, + "noteOrder": 4875, + "time": 0.730072463768116, "position": { "x": 5, "y": 0 @@ -5361,16 +9892,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3628, - "time": 0.5434782608695652, + "noteOrder": 4887, + "time": 0.7318840579710144, "position": { "x": 5, "y": 0 @@ -5389,13 +9920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3640, - "time": 0.5452898550724637, + "noteOrder": 4887, + "time": 0.7318840579710144, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5412,13 +9943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, - "time": 0.5471014492753623, + "noteOrder": 4887, + "time": 0.7318840579710144, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5430,16 +9961,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 3, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3664, - "time": 0.5489130434782609, + "noteOrder": 4899, + "time": 0.7336956521739131, "position": { "x": 6, "y": 0 @@ -5453,16 +9984,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 4, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3676, - "time": 0.5507246376811594, + "noteOrder": 4899, + "time": 0.7336956521739131, "position": { "x": 5, "y": 0 @@ -5476,18 +10007,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3773, - "time": 0.5652173913043478, + "noteOrder": 4912, + "time": 0.7355072463768116, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5504,11 +10035,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3821, - "time": 0.572463768115942, + "noteOrder": 4912, + "time": 0.7355072463768116, "position": { "x": 3, "y": 0 @@ -5527,13 +10058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3821, - "time": 0.572463768115942, + "noteOrder": 4912, + "time": 0.7355072463768116, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5550,13 +10081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3870, - "time": 0.5797101449275361, + "noteOrder": 4924, + "time": 0.7373188405797101, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5573,13 +10104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3870, - "time": 0.5797101449275361, + "noteOrder": 4924, + "time": 0.7373188405797101, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5591,18 +10122,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.5833333333333333, + "noteOrder": 4936, + "time": 0.7391304347826086, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5619,13 +10150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3918, - "time": 0.5869565217391305, + "noteOrder": 4960, + "time": 0.7427536231884058, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5637,18 +10168,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 3942, - "time": 0.5905797101449275, + "noteOrder": 4960, + "time": 0.7427536231884058, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5665,13 +10196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3966, - "time": 0.5942028985507246, + "noteOrder": 4984, + "time": 0.746376811594203, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5683,18 +10214,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 4015, - "time": 0.6014492753623188, + "noteOrder": 4984, + "time": 0.746376811594203, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5711,13 +10242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4015, - "time": 0.6014492753623188, + "noteOrder": 5008, + "time": 0.75, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5729,18 +10260,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 4063, - "time": 0.608695652173913, + "noteOrder": 5008, + "time": 0.75, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5757,13 +10288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4063, - "time": 0.608695652173913, + "noteOrder": 5032, + "time": 0.7536231884057971, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5775,18 +10306,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, - "time": 0.6123188405797101, + "noteOrder": 5032, + "time": 0.7536231884057971, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5803,13 +10334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4112, - "time": 0.6159420289855072, + "noteOrder": 5129, + "time": 0.7681159420289856, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5821,18 +10352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 206, "indexInLine": 1, "isSliding": false, - "noteOrder": 4136, - "time": 0.6195652173913043, + "noteOrder": 5153, + "time": 0.7717391304347826, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5844,18 +10375,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4160, - "time": 0.6231884057971014, + "noteOrder": 5166, + "time": 0.7735507246376812, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5872,11 +10403,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4172, - "time": 0.625, + "noteOrder": 5166, + "time": 0.7735507246376812, "position": { "x": 5, "y": 0 @@ -5895,13 +10426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4184, - "time": 0.6268115942028984, + "noteOrder": 5178, + "time": 0.7753623188405797, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5913,18 +10444,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4184, - "time": 0.6268115942028984, + "noteOrder": 5190, + "time": 0.7771739130434783, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5941,11 +10472,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4196, - "time": 0.6286231884057971, + "noteOrder": 5190, + "time": 0.7771739130434783, "position": { "x": 6, "y": 0 @@ -5964,13 +10495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4208, - "time": 0.6304347826086957, + "noteOrder": 5202, + "time": 0.7789855072463768, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5982,18 +10513,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4208, - "time": 0.6304347826086957, + "noteOrder": 5214, + "time": 0.7807971014492754, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6010,11 +10541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4220, - "time": 0.6322463768115942, + "noteOrder": 5214, + "time": 0.7807971014492754, "position": { "x": 5, "y": 0 @@ -6033,13 +10564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 2, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4233, - "time": 0.6340579710144928, + "noteOrder": 5226, + "time": 0.782608695652174, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6051,16 +10582,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4233, - "time": 0.6340579710144928, + "noteOrder": 5250, + "time": 0.7862318840579711, "position": { "x": 6, "y": 0 @@ -6079,13 +10610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4245, - "time": 0.6358695652173912, + "noteOrder": 5250, + "time": 0.7862318840579711, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6102,13 +10633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 2, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4257, - "time": 0.6376811594202898, + "noteOrder": 5250, + "time": 0.7862318840579711, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6120,18 +10651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4257, - "time": 0.6376811594202898, + "noteOrder": 5262, + "time": 0.7880434782608696, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6148,13 +10679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4305, - "time": 0.644927536231884, + "noteOrder": 5262, + "time": 0.7880434782608696, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6166,18 +10697,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4353, - "time": 0.6521739130434783, + "noteOrder": 5274, + "time": 0.7898550724637681, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6189,18 +10720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4378, - "time": 0.6557971014492753, + "noteOrder": 5274, + "time": 0.7898550724637681, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6217,13 +10748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4402, - "time": 0.6594202898550725, + "noteOrder": 5274, + "time": 0.7898550724637681, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6240,13 +10771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4426, - "time": 0.6630434782608695, + "noteOrder": 5287, + "time": 0.7916666666666666, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6258,18 +10789,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4499, - "time": 0.6739130434782609, + "noteOrder": 5287, + "time": 0.7916666666666666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6286,11 +10817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4547, - "time": 0.681159420289855, + "noteOrder": 5299, + "time": 0.7934782608695653, "position": { "x": 5, "y": 0 @@ -6304,18 +10835,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4619, - "time": 0.6920289855072463, + "noteOrder": 5299, + "time": 0.7934782608695653, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6327,16 +10858,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4644, - "time": 0.6956521739130435, + "noteOrder": 5299, + "time": 0.7934782608695653, "position": { "x": 4, "y": 0 @@ -6350,18 +10881,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4740, - "time": 0.7101449275362318, + "noteOrder": 5311, + "time": 0.7952898550724637, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6373,18 +10904,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4765, - "time": 0.7137681159420289, + "noteOrder": 5311, + "time": 0.7952898550724637, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6396,18 +10927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4789, - "time": 0.7173913043478262, + "noteOrder": 5323, + "time": 0.7971014492753623, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6419,18 +10950,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4813, - "time": 0.7210144927536232, + "noteOrder": 5335, + "time": 0.798913043478261, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6447,13 +10978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4837, - "time": 0.7246376811594203, + "noteOrder": 5347, + "time": 0.8007246376811594, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6465,18 +10996,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4861, - "time": 0.7282608695652173, + "noteOrder": 5347, + "time": 0.8007246376811594, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6488,18 +11019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, - "time": 0.7318840579710145, + "noteOrder": 5359, + "time": 0.802536231884058, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6516,13 +11047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4910, - "time": 0.7355072463768116, + "noteOrder": 5371, + "time": 0.8043478260869565, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6534,16 +11065,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4934, - "time": 0.7391304347826086, + "noteOrder": 5371, + "time": 0.8043478260869565, "position": { "x": 5, "y": 0 @@ -6557,18 +11088,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4958, - "time": 0.7427536231884058, + "noteOrder": 5383, + "time": 0.8061594202898551, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6580,16 +11111,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4958, - "time": 0.7427536231884058, + "noteOrder": 5395, + "time": 0.8079710144927537, "position": { "x": 5, "y": 0 @@ -6608,11 +11139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4982, - "time": 0.7463768115942029, + "noteOrder": 5395, + "time": 0.8079710144927537, "position": { "x": 5, "y": 0 @@ -6626,18 +11157,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.7463768115942029, + "noteOrder": 5408, + "time": 0.8097826086956522, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6654,11 +11185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5006, - "time": 0.75, + "noteOrder": 5420, + "time": 0.8115942028985507, "position": { "x": 5, "y": 0 @@ -6677,11 +11208,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.75, + "noteOrder": 5420, + "time": 0.8115942028985507, "position": { "x": 5, "y": 0 @@ -6700,11 +11231,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5031, - "time": 0.7536231884057971, + "noteOrder": 5468, + "time": 0.818840579710145, "position": { "x": 5, "y": 0 @@ -6723,13 +11254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5031, - "time": 0.7536231884057971, + "noteOrder": 5516, + "time": 0.8260869565217391, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6741,18 +11272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5127, - "time": 0.7681159420289855, + "noteOrder": 5528, + "time": 0.8278985507246377, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6764,18 +11295,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5152, - "time": 0.7717391304347826, + "noteOrder": 5528, + "time": 0.8278985507246377, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6787,18 +11318,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5176, - "time": 0.7753623188405796, + "noteOrder": 5541, + "time": 0.8297101449275363, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6815,13 +11346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5200, - "time": 0.7789855072463768, + "noteOrder": 5541, + "time": 0.8297101449275363, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6833,16 +11364,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5224, - "time": 0.7826086956521738, + "noteOrder": 5541, + "time": 0.8297101449275363, "position": { "x": 7, "y": 0 @@ -6856,18 +11387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5248, - "time": 0.786231884057971, + "noteOrder": 5553, + "time": 0.8315217391304348, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6884,13 +11415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5272, - "time": 0.7898550724637681, + "noteOrder": 5553, + "time": 0.8315217391304348, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6902,18 +11433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5297, - "time": 0.7934782608695652, + "noteOrder": 5565, + "time": 0.8333333333333334, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6930,13 +11461,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5321, - "time": 0.7971014492753623, + "noteOrder": 5565, + "time": 0.8333333333333334, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6948,18 +11479,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 5333, - "time": 0.7989130434782609, + "noteOrder": 5565, + "time": 0.8333333333333334, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6976,13 +11507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, + "lineGroupId": 223, "indexInLine": 2, "isSliding": false, - "noteOrder": 5345, - "time": 0.8007246376811594, + "noteOrder": 5577, + "time": 0.8351449275362319, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6999,13 +11530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5345, - "time": 0.8007246376811594, + "noteOrder": 5577, + "time": 0.8351449275362319, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -7017,18 +11548,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5357, - "time": 0.8025362318840579, + "noteOrder": 5589, + "time": 0.8369565217391304, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7040,18 +11571,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 2, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5369, - "time": 0.8043478260869564, + "noteOrder": 5589, + "time": 0.8369565217391304, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -7063,18 +11594,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5369, - "time": 0.8043478260869564, + "noteOrder": 5613, + "time": 0.8405797101449276, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -7091,13 +11622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5381, - "time": 0.8061594202898551, + "noteOrder": 5625, + "time": 0.842391304347826, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7114,13 +11645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 2, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5393, - "time": 0.8079710144927537, + "noteOrder": 5625, + "time": 0.842391304347826, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -7137,13 +11668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5393, - "time": 0.8079710144927537, + "noteOrder": 5637, + "time": 0.8442028985507246, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7160,13 +11691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5406, - "time": 0.8097826086956522, + "noteOrder": 5649, + "time": 0.8460144927536233, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7183,11 +11714,11 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 2, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5418, - "time": 0.8115942028985507, + "noteOrder": 5649, + "time": 0.8460144927536233, "position": { "x": 5, "y": 0 @@ -7206,13 +11737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5418, - "time": 0.8115942028985507, + "noteOrder": 5662, + "time": 0.8478260869565217, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -7229,13 +11760,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5466, - "time": 0.8188405797101449, + "noteOrder": 5710, + "time": 0.855072463768116, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -7252,13 +11783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5514, - "time": 0.8260869565217391, + "noteOrder": 5710, + "time": 0.855072463768116, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7270,18 +11801,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5539, - "time": 0.8297101449275361, + "noteOrder": 5734, + "time": 0.8586956521739131, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7298,13 +11829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5563, - "time": 0.8333333333333333, + "noteOrder": 5758, + "time": 0.8623188405797101, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7316,18 +11847,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5611, - "time": 0.8405797101449275, + "noteOrder": 5783, + "time": 0.8659420289855073, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7339,16 +11870,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5635, - "time": 0.8442028985507246, + "noteOrder": 5807, + "time": 0.8695652173913043, "position": { "x": 3, "y": 0 @@ -7367,11 +11898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5659, - "time": 0.8478260869565216, + "noteOrder": 5807, + "time": 0.8695652173913043, "position": { "x": 7, "y": 0 @@ -7390,13 +11921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5708, - "time": 0.855072463768116, + "noteOrder": 5831, + "time": 0.8731884057971014, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7413,13 +11944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5708, - "time": 0.855072463768116, + "noteOrder": 5855, + "time": 0.8768115942028986, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7431,18 +11962,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5732, - "time": 0.858695652173913, + "noteOrder": 5879, + "time": 0.8804347826086957, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7454,18 +11985,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 2, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5756, - "time": 0.8623188405797101, + "noteOrder": 5904, + "time": 0.8840579710144928, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7482,11 +12013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 3, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5780, - "time": 0.8659420289855072, + "noteOrder": 5928, + "time": 0.8876811594202899, "position": { "x": 4, "y": 0 @@ -7505,13 +12036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 4, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5805, - "time": 0.8695652173913043, + "noteOrder": 5952, + "time": 0.891304347826087, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7523,18 +12054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5805, - "time": 0.8695652173913043, + "noteOrder": 5976, + "time": 0.894927536231884, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7551,13 +12082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 5829, - "time": 0.8731884057971014, + "noteOrder": 6000, + "time": 0.8985507246376812, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7569,18 +12100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 243, "indexInLine": 2, "isSliding": false, - "noteOrder": 5853, - "time": 0.8768115942028984, + "noteOrder": 6012, + "time": 0.9003623188405797, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7592,18 +12123,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 243, "indexInLine": 3, "isSliding": false, - "noteOrder": 5877, - "time": 0.8804347826086957, + "noteOrder": 6012, + "time": 0.9003623188405797, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7615,18 +12146,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5901, - "time": 0.8840579710144928, + "noteOrder": 6024, + "time": 0.9021739130434783, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7638,18 +12169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 1, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5926, - "time": 0.8876811594202898, + "noteOrder": 6037, + "time": 0.9039855072463768, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7661,18 +12192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5950, - "time": 0.8913043478260869, + "noteOrder": 6037, + "time": 0.9039855072463768, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7689,13 +12220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 5974, - "time": 0.894927536231884, + "noteOrder": 6049, + "time": 0.9057971014492754, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7707,16 +12238,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5998, - "time": 0.8985507246376812, + "noteOrder": 6061, + "time": 0.907608695652174, "position": { "x": 3, "y": 0 @@ -7735,11 +12266,34 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6022, - "time": 0.9021739130434783, + "noteOrder": 6061, + "time": 0.907608695652174, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6073, + "time": 0.9094202898550724, "position": { "x": 7, "y": 0 @@ -7758,13 +12312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6046, - "time": 0.9057971014492753, + "noteOrder": 6085, + "time": 0.9112318840579711, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7776,18 +12330,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6071, - "time": 0.9094202898550725, + "noteOrder": 6085, + "time": 0.9112318840579711, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7805,10 +12359,10 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6095, - "time": 0.9130434782608695, + "noteOrder": 6097, + "time": 0.9130434782608696, "position": { "x": 3, "y": 0 @@ -7828,9 +12382,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6119, + "noteOrder": 6121, "time": 0.9166666666666666, "position": { "x": 4, @@ -7851,9 +12405,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6143, + "noteOrder": 6145, "time": 0.9202898550724637, "position": { "x": 7, @@ -7874,10 +12428,10 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6167, - "time": 0.9239130434782609, + "noteOrder": 6170, + "time": 0.923913043478261, "position": { "x": 6, "y": 0 @@ -7897,9 +12451,9 @@ }, { "lineGroupId": 266, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6373, + "noteOrder": 6375, "time": 0.9547101449275363, "position": { "x": 5, @@ -7920,9 +12474,9 @@ }, { "lineGroupId": 266, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6506, + "noteOrder": 6508, "time": 0.9746376811594203, "position": { "x": 5, diff --git a/tracks/Rock The Club/374_difficulty_1b.json b/tracks/Rock The Club/374_difficulty_1b.json index 11f6ac85..5255d213 100644 --- a/tracks/Rock The Club/374_difficulty_1b.json +++ b/tracks/Rock The Club/374_difficulty_1b.json @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 193, + "noteOrder": 194, "time": 0.028985507246376812, "position": { "x": 3, @@ -74,7 +74,7 @@ }, { "noteOrder": 242, - "time": 0.03623188405797101, + "time": 0.036231884057971016, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 266, - "time": 0.03985507246376811, + "time": 0.03985507246376812, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 435, + "noteOrder": 436, "time": 0.06521739130434782, "position": { "x": 4, @@ -234,7 +234,7 @@ }, { "noteOrder": 532, - "time": 0.07971014492753623, + "time": 0.07971014492753624, "position": { "x": 7, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 580, + "noteOrder": 581, "time": 0.08695652173913043, "position": { "x": 7, @@ -314,7 +314,7 @@ }, { "noteOrder": 653, - "time": 0.09782608695652173, + "time": 0.09782608695652174, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 822, + "noteOrder": 823, "time": 0.12318840579710146, "position": { "x": 7, @@ -414,7 +414,7 @@ }, { "noteOrder": 847, - "time": 0.12681159420289853, + "time": 0.12681159420289856, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1064, - "time": 0.15942028985507245, + "noteOrder": 1065, + "time": 0.15942028985507248, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1354, + "noteOrder": 1355, "time": 0.20289855072463767, "position": { "x": 3, @@ -514,7 +514,7 @@ }, { "noteOrder": 1403, - "time": 0.21014492753623187, + "time": 0.2101449275362319, "position": { "x": 7, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1597, "time": 0.2391304347826087, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1620, - "time": 0.2427536231884058, + "noteOrder": 1621, + "time": 0.24275362318840582, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1790, - "time": 0.2681159420289855, + "time": 0.26811594202898553, "position": { "x": 5, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1814, - "time": 0.2717391304347826, + "noteOrder": 1815, + "time": 0.27173913043478265, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1838, + "noteOrder": 1839, "time": 0.2753623188405797, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1862, + "noteOrder": 1863, "time": 0.27898550724637683, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1886, + "noteOrder": 1887, "time": 0.2826086956521739, "position": { "x": 4, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2177, + "noteOrder": 2178, "time": 0.32608695652173914, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2201, - "time": 0.32971014492753625, + "noteOrder": 2202, + "time": 0.3297101449275362, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2273, - "time": 0.3405797101449275, + "noteOrder": 2274, + "time": 0.34057971014492755, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2370, - "time": 0.3550724637681159, + "noteOrder": 2371, + "time": 0.35507246376811596, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2394, - "time": 0.3586956521739131, + "noteOrder": 2395, + "time": 0.358695652173913, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2394, - "time": 0.3586956521739131, + "noteOrder": 2395, + "time": 0.358695652173913, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2443, - "time": 0.36594202898550726, + "noteOrder": 2444, + "time": 0.3659420289855072, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.3695652173913043, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2491, - "time": 0.37318840579710144, + "noteOrder": 2492, + "time": 0.3731884057971015, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2564, - "time": 0.38405797101449274, + "noteOrder": 2565, + "time": 0.3840579710144928, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2588, - "time": 0.3876811594202898, + "noteOrder": 2589, + "time": 0.38768115942028986, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2757, + "noteOrder": 2758, "time": 0.41304347826086957, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.41666666666666663, + "noteOrder": 2782, + "time": 0.4166666666666667, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2806, - "time": 0.42028985507246375, + "noteOrder": 2807, + "time": 0.4202898550724638, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.4239130434782608, + "noteOrder": 2831, + "time": 0.42391304347826086, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2854, + "noteOrder": 2855, "time": 0.427536231884058, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2878, + "noteOrder": 2879, "time": 0.43115942028985504, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2951, + "noteOrder": 2952, "time": 0.4420289855072464, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3097, "time": 0.463768115942029, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.46739130434782605, + "noteOrder": 3121, + "time": 0.4673913043478261, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.47101449275362317, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3168, - "time": 0.47463768115942023, + "noteOrder": 3170, + "time": 0.4746376811594203, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.5, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3362, + "noteOrder": 3363, "time": 0.5036231884057971, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3531, - "time": 0.5289855072463768, + "noteOrder": 3532, + "time": 0.5289855072463767, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3628, - "time": 0.5434782608695652, + "noteOrder": 3629, + "time": 0.5434782608695653, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5507246376811594, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5543478260869565, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3726, "time": 0.5579710144927537, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3750, "time": 0.5615942028985507, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4281, - "time": 0.6413043478260869, + "noteOrder": 4282, + "time": 0.641304347826087, "position": { "x": 5, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4331, "time": 0.6485507246376812, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.6920289855072463, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4668, - "time": 0.6992753623188405, + "noteOrder": 4670, + "time": 0.6992753623188406, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4716, + "noteOrder": 4718, "time": 0.7065217391304348, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4886, - "time": 0.7318840579710145, + "noteOrder": 4887, + "time": 0.7318840579710144, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4912, "time": 0.7355072463768116, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5081, "time": 0.7608695652173914, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5105, "time": 0.7644927536231884, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5272, + "noteOrder": 5274, "time": 0.7898550724637681, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.7934782608695652, + "noteOrder": 5299, + "time": 0.7934782608695653, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5659, - "time": 0.8478260869565216, + "noteOrder": 5662, + "time": 0.8478260869565217, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5684, - "time": 0.8514492753623188, + "noteOrder": 5686, + "time": 0.851449275362319, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5853, - "time": 0.8768115942028984, + "noteOrder": 5855, + "time": 0.8768115942028986, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5877, + "noteOrder": 5879, "time": 0.8804347826086957, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5926, - "time": 0.8876811594202898, + "noteOrder": 5928, + "time": 0.8876811594202899, "position": { "x": 8, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5974, + "noteOrder": 5976, "time": 0.894927536231884, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6046, - "time": 0.9057971014492753, + "noteOrder": 6049, + "time": 0.9057971014492754, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6071, - "time": 0.9094202898550725, + "noteOrder": 6073, + "time": 0.9094202898550724, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6119, + "noteOrder": 6121, "time": 0.9166666666666666, "position": { "x": 2, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6167, - "time": 0.9239130434782609, + "noteOrder": 6170, + "time": 0.923913043478261, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 6194, "time": 0.927536231884058, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6216, - "time": 0.931159420289855, + "noteOrder": 6218, + "time": 0.9311594202898551, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6240, - "time": 0.9347826086956521, + "noteOrder": 6242, + "time": 0.9347826086956522, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6264, + "noteOrder": 6266, "time": 0.9384057971014493, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6361, + "noteOrder": 6363, "time": 0.9528985507246377, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6373, + "noteOrder": 6375, "time": 0.9547101449275363, "position": { "x": 5, @@ -1876,7 +1876,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.014492753623188406, @@ -1899,7 +1899,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.021739130434782608, @@ -1922,10 +1922,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, - "time": 0.07246376811594202, + "time": 0.07246376811594203, "position": { "x": 4, "y": 0 @@ -1945,10 +1945,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 532, - "time": 0.07971014492753623, + "time": 0.07971014492753624, "position": { "x": 5, "y": 0 @@ -1968,7 +1968,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, "time": 0.11594202898550725, @@ -1991,9 +1991,9 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.12318840579710146, "position": { "x": 5, @@ -2014,7 +2014,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 871, "time": 0.13043478260869565, @@ -2036,13 +2036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 919, - "time": 0.13768115942028986, + "noteOrder": 895, + "time": 0.13405797101449277, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2054,18 +2054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 967, - "time": 0.14492753623188404, + "noteOrder": 895, + "time": 0.13405797101449277, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2082,11 +2082,11 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1016, - "time": 0.15217391304347824, + "noteOrder": 919, + "time": 0.13768115942028986, "position": { "x": 4, "y": 0 @@ -2105,13 +2105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1258, - "time": 0.18840579710144928, + "noteOrder": 944, + "time": 0.14130434782608695, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2128,13 +2128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1306, - "time": 0.19565217391304346, + "noteOrder": 944, + "time": 0.14130434782608695, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2146,16 +2146,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1451, - "time": 0.21739130434782608, + "noteOrder": 968, + "time": 0.14492753623188406, "position": { "x": 7, "y": 0 @@ -2174,13 +2174,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1500, - "time": 0.2246376811594203, + "noteOrder": 992, + "time": 0.14855072463768115, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2192,18 +2192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1548, - "time": 0.2318840579710145, + "noteOrder": 992, + "time": 0.14855072463768115, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2220,13 +2220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1596, - "time": 0.2391304347826087, + "noteOrder": 1016, + "time": 0.15217391304347827, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2238,18 +2238,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1645, - "time": 0.2463768115942029, + "noteOrder": 1040, + "time": 0.15579710144927536, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2266,13 +2266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1693, - "time": 0.25362318840579706, + "noteOrder": 1040, + "time": 0.15579710144927536, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2289,13 +2289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1693, - "time": 0.25362318840579706, + "noteOrder": 1258, + "time": 0.18840579710144928, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2307,18 +2307,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1741, - "time": 0.2608695652173913, + "noteOrder": 1282, + "time": 0.1920289855072464, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2330,18 +2330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1741, - "time": 0.2608695652173913, + "noteOrder": 1282, + "time": 0.1920289855072464, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2358,13 +2358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.2681159420289855, + "noteOrder": 1307, + "time": 0.1956521739130435, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2376,18 +2376,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1935, - "time": 0.28985507246376807, + "noteOrder": 1331, + "time": 0.19927536231884058, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2404,13 +2404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1983, - "time": 0.2971014492753623, + "noteOrder": 1331, + "time": 0.19927536231884058, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2427,11 +2427,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2032, - "time": 0.3043478260869565, + "noteOrder": 1452, + "time": 0.21739130434782608, "position": { "x": 7, "y": 0 @@ -2450,13 +2450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2080, - "time": 0.3115942028985507, + "noteOrder": 1476, + "time": 0.2210144927536232, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2468,18 +2468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2128, - "time": 0.3188405797101449, + "noteOrder": 1476, + "time": 0.2210144927536232, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2496,13 +2496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2225, - "time": 0.3333333333333333, + "noteOrder": 1500, + "time": 0.2246376811594203, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2519,11 +2519,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2273, - "time": 0.3405797101449275, + "noteOrder": 1524, + "time": 0.2282608695652174, "position": { "x": 4, "y": 0 @@ -2542,13 +2542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2322, - "time": 0.34782608695652173, + "noteOrder": 1524, + "time": 0.2282608695652174, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2560,18 +2560,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 2370, - "time": 0.3550724637681159, + "noteOrder": 1548, + "time": 0.2318840579710145, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2588,13 +2588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2419, - "time": 0.36231884057971014, + "noteOrder": 1597, + "time": 0.2391304347826087, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2606,18 +2606,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2443, - "time": 0.36594202898550726, + "noteOrder": 1645, + "time": 0.2463768115942029, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2634,13 +2634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2515, - "time": 0.37681159420289856, + "noteOrder": 1694, + "time": 0.2536231884057971, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2652,18 +2652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2564, - "time": 0.38405797101449274, + "noteOrder": 1694, + "time": 0.2536231884057971, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2680,11 +2680,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2612, - "time": 0.3913043478260869, + "noteOrder": 1742, + "time": 0.2608695652173913, "position": { "x": 5, "y": 0 @@ -2698,16 +2698,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 2660, - "time": 0.39855072463768115, + "noteOrder": 1742, + "time": 0.2608695652173913, "position": { "x": 5, "y": 0 @@ -2726,11 +2726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2660, - "time": 0.39855072463768115, + "noteOrder": 1790, + "time": 0.26811594202898553, "position": { "x": 5, "y": 0 @@ -2744,16 +2744,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 2709, - "time": 0.40579710144927533, + "noteOrder": 1936, + "time": 0.2898550724637681, "position": { "x": 5, "y": 0 @@ -2772,11 +2772,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, - "time": 0.40579710144927533, + "noteOrder": 1984, + "time": 0.2971014492753623, "position": { "x": 5, "y": 0 @@ -2790,18 +2790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2757, - "time": 0.41304347826086957, + "noteOrder": 2032, + "time": 0.30434782608695654, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2813,16 +2813,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2902, - "time": 0.43478260869565216, + "noteOrder": 2057, + "time": 0.30797101449275366, "position": { "x": 7, "y": 0 @@ -2841,11 +2841,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2951, - "time": 0.4420289855072464, + "noteOrder": 2057, + "time": 0.30797101449275366, "position": { "x": 6, "y": 0 @@ -2864,13 +2864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 2, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2999, - "time": 0.4492753623188406, + "noteOrder": 2081, + "time": 0.3115942028985507, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2882,18 +2882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2999, - "time": 0.4492753623188406, + "noteOrder": 2105, + "time": 0.31521739130434784, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2910,13 +2910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3047, - "time": 0.45652173913043476, + "noteOrder": 2105, + "time": 0.31521739130434784, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2933,13 +2933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3047, - "time": 0.45652173913043476, + "noteOrder": 2129, + "time": 0.31884057971014496, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2956,13 +2956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3096, - "time": 0.463768115942029, + "noteOrder": 2153, + "time": 0.322463768115942, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2979,13 +2979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3193, - "time": 0.4782608695652174, + "noteOrder": 2153, + "time": 0.322463768115942, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3002,11 +3002,34 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2226, + "time": 0.3333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3241, - "time": 0.4855072463768116, + "noteOrder": 2274, + "time": 0.34057971014492755, "position": { "x": 4, "y": 0 @@ -3025,11 +3048,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3289, - "time": 0.4927536231884058, + "noteOrder": 2323, + "time": 0.34782608695652173, "position": { "x": 7, "y": 0 @@ -3048,11 +3071,80 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2371, + "time": 0.35507246376811596, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 3338, - "time": 0.5, + "noteOrder": 2419, + "time": 0.36231884057971014, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2444, + "time": 0.3659420289855072, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2516, + "time": 0.37681159420289856, "position": { "x": 7, "y": 0 @@ -3071,11 +3163,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.5072463768115941, + "noteOrder": 2565, + "time": 0.3840579710144928, "position": { "x": 7, "y": 0 @@ -3094,13 +3186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3434, - "time": 0.5144927536231884, + "noteOrder": 2613, + "time": 0.391304347826087, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3117,11 +3209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3483, - "time": 0.5217391304347826, + "noteOrder": 2661, + "time": 0.39855072463768115, "position": { "x": 5, "y": 0 @@ -3135,16 +3227,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 80, "indexInLine": 1, "isSliding": false, - "noteOrder": 3531, - "time": 0.5289855072463768, + "noteOrder": 2661, + "time": 0.39855072463768115, "position": { "x": 5, "y": 0 @@ -3163,11 +3255,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 80, "indexInLine": 2, "isSliding": false, - "noteOrder": 3579, - "time": 0.536231884057971, + "noteOrder": 2710, + "time": 0.40579710144927533, "position": { "x": 5, "y": 0 @@ -3186,13 +3278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3579, - "time": 0.536231884057971, + "noteOrder": 2710, + "time": 0.40579710144927533, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3209,13 +3301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3676, - "time": 0.5507246376811594, + "noteOrder": 2758, + "time": 0.41304347826086957, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3232,11 +3324,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3773, - "time": 0.5652173913043478, + "noteOrder": 2903, + "time": 0.43478260869565216, "position": { "x": 7, "y": 0 @@ -3255,13 +3347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3821, - "time": 0.572463768115942, + "noteOrder": 2952, + "time": 0.4420289855072464, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3273,18 +3365,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3870, - "time": 0.5797101449275361, + "noteOrder": 3000, + "time": 0.4492753623188406, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3301,13 +3393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3918, - "time": 0.5869565217391305, + "noteOrder": 3000, + "time": 0.4492753623188406, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3324,13 +3416,36 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3966, - "time": 0.5942028985507246, + "noteOrder": 3049, + "time": 0.4565217391304348, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3049, + "time": 0.4565217391304348, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3347,13 +3462,1784 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4015, - "time": 0.6014492753623188, + "noteOrder": 3097, + "time": 0.463768115942029, "position": { - "x": 4, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.4782608695652174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3218, + "time": 0.4818840579710145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3218, + "time": 0.4818840579710145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3242, + "time": 0.48550724637681164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3266, + "time": 0.4891304347826087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3266, + "time": 0.4891304347826087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3290, + "time": 0.4927536231884058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.5072463768115942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5108695652173914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5108695652173914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3436, + "time": 0.5144927536231884, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5181159420289856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5181159420289856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5217391304347826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5289855072463767, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3581, + "time": 0.5362318840579711, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3581, + "time": 0.5362318840579711, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5507246376811594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3774, + "time": 0.5652173913043478, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3799, + "time": 0.568840579710145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3799, + "time": 0.568840579710145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3823, + "time": 0.572463768115942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3847, + "time": 0.5760869565217391, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3847, + "time": 0.5760869565217391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3871, + "time": 0.5797101449275363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3895, + "time": 0.5833333333333334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3895, + "time": 0.5833333333333334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3920, + "time": 0.5869565217391304, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3944, + "time": 0.5905797101449276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3944, + "time": 0.5905797101449276, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3968, + "time": 0.5942028985507246, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3992, + "time": 0.5978260869565217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3992, + "time": 0.5978260869565217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4016, + "time": 0.601449275362319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4041, + "time": 0.605072463768116, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4041, + "time": 0.605072463768116, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4065, + "time": 0.6086956521739131, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4089, + "time": 0.6123188405797101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4089, + "time": 0.6123188405797101, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4113, + "time": 0.6159420289855073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4137, + "time": 0.6195652173913043, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4137, + "time": 0.6195652173913043, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4161, + "time": 0.6231884057971014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4210, + "time": 0.6304347826086957, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4210, + "time": 0.6304347826086957, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4258, + "time": 0.6376811594202899, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4258, + "time": 0.6376811594202899, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4282, + "time": 0.641304347826087, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4307, + "time": 0.644927536231884, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4331, + "time": 0.6485507246376812, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4355, + "time": 0.6521739130434783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4379, + "time": 0.6557971014492754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4379, + "time": 0.6557971014492754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4403, + "time": 0.6594202898550724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4428, + "time": 0.6630434782608696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4428, + "time": 0.6630434782608696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4452, + "time": 0.6666666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4476, + "time": 0.6702898550724637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4476, + "time": 0.6702898550724637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4500, + "time": 0.673913043478261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4524, + "time": 0.677536231884058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4524, + "time": 0.677536231884058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4549, + "time": 0.6811594202898551, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4597, + "time": 0.6884057971014493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4645, + "time": 0.6956521739130435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4670, + "time": 0.6992753623188406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4694, + "time": 0.7028985507246377, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4718, + "time": 0.7065217391304348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4742, + "time": 0.7101449275362319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4766, + "time": 0.713768115942029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4766, + "time": 0.713768115942029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4791, + "time": 0.717391304347826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4815, + "time": 0.7210144927536233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4815, + "time": 0.7210144927536233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4839, + "time": 0.7246376811594203, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4912, + "time": 0.7355072463768116, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3365,18 +5251,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4063, - "time": 0.608695652173913, + "noteOrder": 4936, + "time": 0.7391304347826086, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3388,16 +5274,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4112, - "time": 0.6159420289855072, + "noteOrder": 4960, + "time": 0.7427536231884058, "position": { "x": 4, "y": 0 @@ -3416,13 +5302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4160, - "time": 0.6231884057971014, + "noteOrder": 4960, + "time": 0.7427536231884058, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3434,18 +5320,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 4208, - "time": 0.6304347826086957, + "noteOrder": 4984, + "time": 0.746376811594203, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3462,13 +5348,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4208, - "time": 0.6304347826086957, + "noteOrder": 5008, + "time": 0.75, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3480,18 +5366,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4257, - "time": 0.6376811594202898, + "noteOrder": 5008, + "time": 0.75, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3503,18 +5389,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4257, - "time": 0.6376811594202898, + "noteOrder": 5032, + "time": 0.7536231884057971, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3526,18 +5412,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4281, - "time": 0.6413043478260869, + "noteOrder": 5081, + "time": 0.7608695652173914, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3549,18 +5435,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4305, - "time": 0.644927536231884, + "noteOrder": 5129, + "time": 0.7681159420289856, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3577,13 +5463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4329, - "time": 0.6485507246376812, + "noteOrder": 5153, + "time": 0.7717391304347826, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3600,13 +5486,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4353, - "time": 0.6521739130434783, + "noteOrder": 5153, + "time": 0.7717391304347826, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3623,13 +5509,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4402, - "time": 0.6594202898550725, + "noteOrder": 5178, + "time": 0.7753623188405797, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3646,13 +5532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4450, - "time": 0.6666666666666666, + "noteOrder": 5202, + "time": 0.7789855072463768, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3664,16 +5550,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4499, - "time": 0.6739130434782609, + "noteOrder": 5202, + "time": 0.7789855072463768, "position": { "x": 6, "y": 0 @@ -3692,11 +5578,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4547, - "time": 0.681159420289855, + "noteOrder": 5226, + "time": 0.782608695652174, "position": { "x": 4, "y": 0 @@ -3715,11 +5601,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4595, - "time": 0.6884057971014493, + "noteOrder": 5299, + "time": 0.7934782608695653, "position": { "x": 4, "y": 0 @@ -3738,13 +5624,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4644, - "time": 0.6956521739130435, + "noteOrder": 5323, + "time": 0.7971014492753623, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3756,18 +5642,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4668, - "time": 0.6992753623188405, + "noteOrder": 5347, + "time": 0.8007246376811594, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3779,18 +5665,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4692, - "time": 0.7028985507246377, + "noteOrder": 5347, + "time": 0.8007246376811594, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3807,13 +5693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 4716, - "time": 0.7065217391304348, + "noteOrder": 5371, + "time": 0.8043478260869565, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3825,18 +5711,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4740, - "time": 0.7101449275362318, + "noteOrder": 5395, + "time": 0.8079710144927537, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3848,16 +5734,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4789, - "time": 0.7173913043478262, + "noteOrder": 5395, + "time": 0.8079710144927537, "position": { "x": 4, "y": 0 @@ -3876,11 +5762,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4837, - "time": 0.7246376811594203, + "noteOrder": 5420, + "time": 0.8115942028985507, "position": { "x": 6, "y": 0 @@ -3899,11 +5785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4910, - "time": 0.7355072463768116, + "noteOrder": 5492, + "time": 0.822463768115942, "position": { "x": 6, "y": 0 @@ -3922,11 +5808,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4934, - "time": 0.7391304347826086, + "noteOrder": 5516, + "time": 0.8260869565217391, "position": { "x": 4, "y": 0 @@ -3945,13 +5831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, - "time": 0.7463768115942029, + "noteOrder": 5541, + "time": 0.8297101449275363, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3963,16 +5849,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5031, - "time": 0.7536231884057971, + "noteOrder": 5541, + "time": 0.8297101449275363, "position": { "x": 4, "y": 0 @@ -3991,13 +5877,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 5079, - "time": 0.7608695652173914, + "noteOrder": 5565, + "time": 0.8333333333333334, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4009,18 +5895,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5127, - "time": 0.7681159420289855, + "noteOrder": 5589, + "time": 0.8369565217391304, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4032,16 +5918,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5176, - "time": 0.7753623188405796, + "noteOrder": 5589, + "time": 0.8369565217391304, "position": { "x": 6, "y": 0 @@ -4060,11 +5946,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5224, - "time": 0.7826086956521738, + "noteOrder": 5613, + "time": 0.8405797101449276, "position": { "x": 4, "y": 0 @@ -4083,11 +5969,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5297, - "time": 0.7934782608695652, + "noteOrder": 5637, + "time": 0.8442028985507246, "position": { "x": 4, "y": 0 @@ -4106,13 +5992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5321, - "time": 0.7971014492753623, + "noteOrder": 5637, + "time": 0.8442028985507246, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4124,18 +6010,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5369, - "time": 0.8043478260869564, + "noteOrder": 5710, + "time": 0.855072463768116, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4147,16 +6033,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5418, - "time": 0.8115942028985507, + "noteOrder": 5734, + "time": 0.8586956521739131, "position": { "x": 6, "y": 0 @@ -4175,11 +6061,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5490, - "time": 0.822463768115942, + "noteOrder": 5734, + "time": 0.8586956521739131, "position": { "x": 6, "y": 0 @@ -4198,13 +6084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5514, - "time": 0.8260869565217391, + "noteOrder": 5758, + "time": 0.8623188405797101, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4221,13 +6107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5563, - "time": 0.8333333333333333, + "noteOrder": 5783, + "time": 0.8659420289855073, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4239,16 +6125,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5611, - "time": 0.8405797101449275, + "noteOrder": 5783, + "time": 0.8659420289855073, "position": { "x": 4, "y": 0 @@ -4267,11 +6153,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5708, - "time": 0.855072463768116, + "noteOrder": 5807, + "time": 0.8695652173913043, "position": { "x": 6, "y": 0 @@ -4290,13 +6176,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5756, - "time": 0.8623188405797101, + "noteOrder": 5831, + "time": 0.8731884057971014, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4308,16 +6194,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5805, - "time": 0.8695652173913043, + "noteOrder": 5831, + "time": 0.8731884057971014, "position": { "x": 6, "y": 0 @@ -4337,9 +6223,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5901, + "noteOrder": 5904, "time": 0.8840579710144928, "position": { "x": 4, @@ -4360,10 +6246,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5926, - "time": 0.8876811594202898, + "noteOrder": 5928, + "time": 0.8876811594202899, "position": { "x": 4, "y": 0 @@ -4383,10 +6269,10 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5950, - "time": 0.8913043478260869, + "noteOrder": 5952, + "time": 0.891304347826087, "position": { "x": 7, "y": 0 @@ -4406,9 +6292,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5974, + "noteOrder": 5976, "time": 0.894927536231884, "position": { "x": 6, @@ -4429,9 +6315,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5998, + "noteOrder": 6000, "time": 0.8985507246376812, "position": { "x": 5, @@ -4452,10 +6338,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6046, - "time": 0.9057971014492753, + "noteOrder": 6049, + "time": 0.9057971014492754, "position": { "x": 5, "y": 0 @@ -4475,10 +6361,10 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6095, - "time": 0.9130434782608695, + "noteOrder": 6097, + "time": 0.9130434782608696, "position": { "x": 6, "y": 0 @@ -4498,9 +6384,9 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6119, + "noteOrder": 6121, "time": 0.9166666666666666, "position": { "x": 6, @@ -4521,9 +6407,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6143, + "noteOrder": 6145, "time": 0.9202898550724637, "position": { "x": 3, @@ -4544,10 +6430,10 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6167, - "time": 0.9239130434782609, + "noteOrder": 6170, + "time": 0.923913043478261, "position": { "x": 4, "y": 0 @@ -4567,10 +6453,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6337, - "time": 0.9492753623188405, + "noteOrder": 6339, + "time": 0.9492753623188406, "position": { "x": 7, "y": 0 @@ -4590,9 +6476,9 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6361, + "noteOrder": 6363, "time": 0.9528985507246377, "position": { "x": 7, diff --git a/tracks/Rock The Club/info.json b/tracks/Rock The Club/info.json index 0b5dda64..d2126a88 100644 --- a/tracks/Rock The Club/info.json +++ b/tracks/Rock The Club/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Rock The Club", - "SongLength": "138.370612", + "SongLength": "128.417959", "SongAuthorName": "Expander", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1a.json b/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1a.json index 4928231b..d1ad7a62 100644 --- a/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1a.json +++ b/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 219, - "time": 0.034486887797868515, + "time": 0.03448688779786852, "position": { "x": 4, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 291, - "time": 0.04598251706382468, + "noteOrder": 292, + "time": 0.045982517063824696, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 316, - "time": 0.04981439348581008, + "time": 0.049814393485810085, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 340, - "time": 0.05364626990779547, + "time": 0.05364626990779548, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 364, - "time": 0.057478146329780856, + "time": 0.05747814632978087, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 413, - "time": 0.06514189917375164, + "time": 0.06514189917375166, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 437, - "time": 0.06897377559573703, + "time": 0.06897377559573704, "position": { "x": 2, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 462, - "time": 0.07280565201772242, + "time": 0.07280565201772245, "position": { "x": 5, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 510, - "time": 0.0804694048616932, + "time": 0.08046940486169321, "position": { "x": 5, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 534, + "noteOrder": 535, "time": 0.0843012812836786, "position": { "x": 7, @@ -274,7 +274,7 @@ }, { "noteOrder": 559, - "time": 0.08813315770566399, + "time": 0.088133157705664, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 607, - "time": 0.09579691054963477, + "time": 0.09579691054963478, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 632, - "time": 0.09962878697162016, + "time": 0.09962878697162017, "position": { "x": 8, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 656, - "time": 0.10346066339360555, + "time": 0.10346066339360557, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 680, - "time": 0.10729253981559093, + "time": 0.10729253981559096, "position": { "x": 8, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 704, - "time": 0.11112441623757634, + "noteOrder": 705, + "time": 0.11112441623757635, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 729, - "time": 0.11495629265956171, + "time": 0.11495629265956174, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 753, - "time": 0.11878816908154712, + "time": 0.11878816908154713, "position": { "x": 5, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 802, - "time": 0.12645192192551788, + "time": 0.1264519219255179, "position": { "x": 5, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 826, - "time": 0.13028379834750328, + "time": 0.1302837983475033, "position": { "x": 2, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 874, - "time": 0.13794755119147406, + "noteOrder": 875, + "time": 0.1379475511914741, "position": { "x": 2, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 899, - "time": 0.14177942761345946, + "time": 0.1417794276134595, "position": { "x": 5, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 923, - "time": 0.14561130403544484, + "time": 0.1456113040354449, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 947, - "time": 0.1494431804574302, + "noteOrder": 948, + "time": 0.14944318045743027, "position": { "x": 5, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1020, - "time": 0.1609388097233864, + "noteOrder": 1021, + "time": 0.16093880972338642, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1044, - "time": 0.1647706861453718, + "noteOrder": 1045, + "time": 0.16477068614537183, "position": { "x": 7, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1093, - "time": 0.17243443898934258, + "time": 0.1724344389893426, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1117, - "time": 0.17626631541132798, + "noteOrder": 1118, + "time": 0.176266315411328, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1142, - "time": 0.18009819183331335, + "time": 0.18009819183331338, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1263, - "time": 0.1992575739432403, + "noteOrder": 1264, + "time": 0.19925757394324034, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1287, - "time": 0.20308945036522572, + "noteOrder": 1288, + "time": 0.20308945036522574, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1312, - "time": 0.2069213267872111, + "time": 0.20692132678721115, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1336, - "time": 0.2107532032091965, + "time": 0.21075320320919652, "position": { "x": 3, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1482, - "time": 0.23374446174110883, + "time": 0.23374446174110888, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1506, - "time": 0.23757633816309423, + "noteOrder": 1507, + "time": 0.23757633816309426, "position": { "x": 8, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1676, - "time": 0.26439947311699197, + "noteOrder": 1677, + "time": 0.264399473116992, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1700, + "noteOrder": 1701, "time": 0.26823134953897737, "position": { "x": 2, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1773, - "time": 0.27972697880493347, + "noteOrder": 1774, + "time": 0.2797269788049336, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1797, - "time": 0.2835588552269189, + "noteOrder": 1798, + "time": 0.283558855226919, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1870, - "time": 0.2950544844928751, + "noteOrder": 1871, + "time": 0.29505448449287514, "position": { "x": 4, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1895, - "time": 0.2988863609148604, + "time": 0.29888636091486054, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1967, - "time": 0.31038199018081664, + "noteOrder": 1968, + "time": 0.3103819901808167, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1993, "time": 0.31421386660280204, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2016, - "time": 0.31804574302478744, + "noteOrder": 2017, + "time": 0.3180457430247875, "position": { "x": 3, "y": 0 @@ -1014,7 +1014,7 @@ }, { "noteOrder": 2065, - "time": 0.3257094958687582, + "time": 0.32570949586875825, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3295413722907436, + "noteOrder": 2090, + "time": 0.32954137229074365, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.333373248712729, + "noteOrder": 2114, + "time": 0.33337324871272905, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.3372051251347144, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.3601963836666267, + "noteOrder": 2284, + "time": 0.36019638366662676, "position": { "x": 2, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2295, - "time": 0.36211232187761944, + "noteOrder": 2296, + "time": 0.3621123218776195, "position": { "x": 6, "y": 0 @@ -1134,7 +1134,7 @@ }, { "noteOrder": 2308, - "time": 0.3640282600886121, + "time": 0.36402826008861217, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2321, "time": 0.36594419829960484, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2453, - "time": 0.38701951862052447, + "noteOrder": 2454, + "time": 0.3870195186205245, "position": { "x": 8, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2465, - "time": 0.38893545683151715, + "noteOrder": 2466, + "time": 0.3889354568315172, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2478, - "time": 0.3908513950425098, + "noteOrder": 2479, + "time": 0.39085139504250993, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2490, - "time": 0.39276733325350255, + "noteOrder": 2491, + "time": 0.3927673332535026, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2502, - "time": 0.3946832714644952, + "noteOrder": 2503, + "time": 0.39468327146449533, "position": { "x": 8, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2514, - "time": 0.39659920967548795, + "noteOrder": 2515, + "time": 0.396599209675488, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2587, - "time": 0.4080948389414441, + "noteOrder": 2588, + "time": 0.4080948389414442, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2599, - "time": 0.4100107771524368, + "noteOrder": 2600, + "time": 0.41001077715243683, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2720, - "time": 0.42917015926236374, + "noteOrder": 2722, + "time": 0.42917015926236385, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2757, - "time": 0.43491797389534187, + "noteOrder": 2758, + "time": 0.4349179738953419, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.4387498503173272, + "noteOrder": 2782, + "time": 0.43874985031732733, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.44641360316129797, + "noteOrder": 2831, + "time": 0.44641360316129813, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2854, - "time": 0.45024547958328337, + "noteOrder": 2855, + "time": 0.4502454795832835, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2878, + "noteOrder": 2879, "time": 0.45407735600526883, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2903, - "time": 0.4579092324272542, + "noteOrder": 2904, + "time": 0.4579092324272543, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3133, - "time": 0.4943120584361154, + "noteOrder": 3135, + "time": 0.4943120584361155, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3158, - "time": 0.49814393485810077, + "noteOrder": 3159, + "time": 0.4981439348581009, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3182, - "time": 0.5019758112800862, + "noteOrder": 3183, + "time": 0.5019758112800863, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3231, + "noteOrder": 3232, "time": 0.509639564124057, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3255, - "time": 0.5134714405460423, + "noteOrder": 3256, + "time": 0.5134714405460424, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3279, + "noteOrder": 3280, "time": 0.5173033169680278, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3328, - "time": 0.5249670698119985, + "noteOrder": 3329, + "time": 0.5249670698119986, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3352, - "time": 0.5287989462339839, + "noteOrder": 3353, + "time": 0.528798946233984, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3376, - "time": 0.5326308226559693, + "noteOrder": 3378, + "time": 0.5326308226559694, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3425, - "time": 0.5402945754999401, + "noteOrder": 3426, + "time": 0.5402945754999402, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3449, - "time": 0.5441264519219254, + "noteOrder": 3450, + "time": 0.5441264519219255, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3473, - "time": 0.5479583283439109, + "noteOrder": 3475, + "time": 0.547958328343911, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5556220811878817, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3571, - "time": 0.5632858340318524, + "noteOrder": 3572, + "time": 0.5632858340318525, "position": { "x": 3, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3595, - "time": 0.5671177104538379, + "noteOrder": 3596, + "time": 0.567117710453838, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5709495868758232, + "noteOrder": 3621, + "time": 0.5709495868758233, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3643, + "noteOrder": 3645, "time": 0.5747814632978087, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3716, - "time": 0.5862770925637647, + "noteOrder": 3718, + "time": 0.5862770925637648, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3765, - "time": 0.5939408454077356, + "noteOrder": 3766, + "time": 0.5939408454077357, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3886, + "noteOrder": 3888, "time": 0.6131002275176626, "position": { "x": 8, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3911, + "noteOrder": 3912, "time": 0.6169321039396479, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3935, - "time": 0.6207639803616333, + "noteOrder": 3936, + "time": 0.6207639803616334, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3947, - "time": 0.622679918572626, + "noteOrder": 3949, + "time": 0.6226799185726261, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3959, - "time": 0.6245958567836186, + "noteOrder": 3961, + "time": 0.6245958567836188, "position": { "x": 8, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3983, + "noteOrder": 3985, "time": 0.6284277332056041, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4008, - "time": 0.6322596096275894, + "noteOrder": 4009, + "time": 0.6322596096275895, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4032, - "time": 0.6360914860495749, + "noteOrder": 4034, + "time": 0.636091486049575, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4044, - "time": 0.6380074242605674, + "noteOrder": 4046, + "time": 0.6380074242605677, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4056, - "time": 0.6399233624715602, + "noteOrder": 4058, + "time": 0.6399233624715603, "position": { "x": 2, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4081, - "time": 0.6437552388935456, + "noteOrder": 4082, + "time": 0.6437552388935457, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4105, - "time": 0.647587115315531, + "noteOrder": 4107, + "time": 0.6475871153155311, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4129, - "time": 0.6514189917375164, + "noteOrder": 4131, + "time": 0.6514189917375165, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4141, + "noteOrder": 4143, "time": 0.6533349299485092, "position": { "x": 5, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.6552508681595018, + "noteOrder": 4155, + "time": 0.655250868159502, "position": { "x": 8, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6590827445814872, + "noteOrder": 4179, + "time": 0.6590827445814873, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6629146210034725, + "noteOrder": 4204, + "time": 0.6629146210034726, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4226, - "time": 0.666746497425458, + "noteOrder": 4228, + "time": 0.6667464974254581, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4239, - "time": 0.6686624356364507, + "noteOrder": 4240, + "time": 0.6686624356364508, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.6705783738474433, + "noteOrder": 4252, + "time": 0.6705783738474436, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.6782421266914141, + "noteOrder": 4301, + "time": 0.6782421266914143, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4324, - "time": 0.6820740031133995, + "noteOrder": 4325, + "time": 0.6820740031133997, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4336, - "time": 0.6839899413243922, + "noteOrder": 4337, + "time": 0.6839899413243923, "position": { "x": 8, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4348, - "time": 0.685905879535385, + "noteOrder": 4350, + "time": 0.6859058795353851, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4396, - "time": 0.6935696323793558, + "noteOrder": 4398, + "time": 0.6935696323793559, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4421, - "time": 0.697401508801341, + "noteOrder": 4422, + "time": 0.6974015088013412, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4433, - "time": 0.6993174470123338, + "noteOrder": 4435, + "time": 0.6993174470123339, "position": { "x": 2, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.7012333852233265, + "noteOrder": 4447, + "time": 0.7012333852233267, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7203927673332534, + "noteOrder": 4568, + "time": 0.7203927673332535, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4688, - "time": 0.7395521494431804, + "noteOrder": 4690, + "time": 0.7395521494431805, "position": { "x": 5, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4712, - "time": 0.7433840258651657, + "noteOrder": 4714, + "time": 0.7433840258651659, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.7472159022871512, + "noteOrder": 4738, + "time": 0.7472159022871513, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4785, - "time": 0.7548796551311219, + "noteOrder": 4787, + "time": 0.7548796551311221, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4809, - "time": 0.7587115315531073, + "noteOrder": 4811, + "time": 0.7587115315531076, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.7625434079750927, + "noteOrder": 4836, + "time": 0.7625434079750928, "position": { "x": 6, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4858, - "time": 0.7663752843970781, + "noteOrder": 4860, + "time": 0.7663752843970782, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4882, - "time": 0.7702071608190636, + "noteOrder": 4884, + "time": 0.7702071608190637, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4906, - "time": 0.7740390372410489, + "noteOrder": 4908, + "time": 0.774039037241049, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4931, - "time": 0.7778709136630343, + "noteOrder": 4933, + "time": 0.7778709136630344, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4979, - "time": 0.7855346665070051, + "noteOrder": 4981, + "time": 0.7855346665070052, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5004, - "time": 0.7893665429289904, + "noteOrder": 5006, + "time": 0.7893665429289907, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5028, - "time": 0.7931984193509759, + "noteOrder": 5030, + "time": 0.793198419350976, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5052, - "time": 0.7970302957729613, + "noteOrder": 5054, + "time": 0.7970302957729614, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5271, - "time": 0.8315171835708298, + "noteOrder": 5273, + "time": 0.8315171835708299, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5295, - "time": 0.8353490599928151, + "noteOrder": 5297, + "time": 0.8353490599928153, "position": { "x": 4, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5319, - "time": 0.8391809364148005, + "noteOrder": 5322, + "time": 0.8391809364148006, "position": { "x": 3, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5344, - "time": 0.843012812836786, + "noteOrder": 5346, + "time": 0.8430128128367861, "position": { "x": 2, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5441, - "time": 0.8583403185247275, + "noteOrder": 5443, + "time": 0.8583403185247277, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5441, - "time": 0.8583403185247275, + "noteOrder": 5443, + "time": 0.8583403185247277, "position": { "x": 2, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5465, - "time": 0.8621721949467129, + "noteOrder": 5467, + "time": 0.862172194946713, "position": { "x": 6, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5489, - "time": 0.8660040713686983, + "noteOrder": 5492, + "time": 0.8660040713686984, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5514, - "time": 0.8698359477906837, + "noteOrder": 5516, + "time": 0.8698359477906838, "position": { "x": 7, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5538, - "time": 0.873667824212669, + "noteOrder": 5540, + "time": 0.8736678242126692, "position": { "x": 8, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5550, - "time": 0.8755837624236618, + "noteOrder": 5552, + "time": 0.8755837624236619, "position": { "x": 5, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5562, - "time": 0.8774997006346544, + "noteOrder": 5565, + "time": 0.8774997006346547, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5574, - "time": 0.8794156388456471, + "noteOrder": 5577, + "time": 0.8794156388456473, "position": { "x": 4, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5587, - "time": 0.8813315770566398, + "noteOrder": 5589, + "time": 0.88133157705664, "position": { "x": 8, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5599, - "time": 0.8832475152676326, + "noteOrder": 5601, + "time": 0.8832475152676328, "position": { "x": 5, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5611, - "time": 0.8851634534786252, + "noteOrder": 5613, + "time": 0.8851634534786254, "position": { "x": 7, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5623, - "time": 0.8870793916896179, + "noteOrder": 5625, + "time": 0.887079391689618, "position": { "x": 5, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5732, - "time": 0.9043228355885522, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { "x": 8, "y": 0 @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.9081547120105377, "position": { "x": 4, @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5781, - "time": 0.9119865884325229, + "noteOrder": 5783, + "time": 0.9119865884325231, "position": { "x": 6, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5805, - "time": 0.9158184648545084, + "noteOrder": 5808, + "time": 0.9158184648545086, "position": { "x": 4, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6024, - "time": 0.9503053526523769, + "noteOrder": 6026, + "time": 0.950305352652377, "position": { "x": 2, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6036, - "time": 0.9522212908633695, + "noteOrder": 6038, + "time": 0.9522212908633697, "position": { "x": 5, "y": 0 @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6048, - "time": 0.9541372290743623, + "noteOrder": 6051, + "time": 0.9541372290743624, "position": { "x": 7, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6072, - "time": 0.9579691054963476, + "noteOrder": 6075, + "time": 0.9579691054963478, "position": { "x": 8, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6085, - "time": 0.9598850437073403, + "noteOrder": 6087, + "time": 0.9598850437073406, "position": { "x": 5, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6097, - "time": 0.9618009819183331, + "noteOrder": 6099, + "time": 0.9618009819183332, "position": { "x": 3, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.9656328583403184, + "noteOrder": 6123, + "time": 0.9656328583403186, "position": { "x": 7, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.9656328583403184, + "noteOrder": 6123, + "time": 0.9656328583403186, "position": { "x": 3, "y": 0 @@ -3296,10 +3296,10 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.030655011375883126, + "time": 0.030655011375883133, "position": { "x": 6, "y": 0 @@ -3319,10 +3319,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 389, - "time": 0.06131002275176625, + "time": 0.061310022751766266, "position": { "x": 6, "y": 0 @@ -3342,10 +3342,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, - "time": 0.06131002275176625, + "time": 0.061310022751766266, "position": { "x": 4, "y": 0 @@ -3365,10 +3365,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 583, - "time": 0.09196503412764936, + "time": 0.09196503412764939, "position": { "x": 4, "y": 0 @@ -3388,10 +3388,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, - "time": 0.09196503412764936, + "time": 0.09196503412764939, "position": { "x": 7, "y": 0 @@ -3411,10 +3411,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 777, - "time": 0.1226200455035325, + "noteOrder": 778, + "time": 0.12262004550353253, "position": { "x": 7, "y": 0 @@ -3434,10 +3434,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 777, - "time": 0.1226200455035325, + "noteOrder": 778, + "time": 0.12262004550353253, "position": { "x": 3, "y": 0 @@ -3457,7 +3457,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 972, "time": 0.15327505687941564, @@ -3480,7 +3480,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 972, "time": 0.15327505687941564, @@ -3503,7 +3503,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1069, "time": 0.1686025625673572, @@ -3526,7 +3526,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1069, "time": 0.1686025625673572, @@ -3549,10 +3549,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1166, - "time": 0.18393006825529873, + "time": 0.18393006825529878, "position": { "x": 4, "y": 0 @@ -3572,10 +3572,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1166, - "time": 0.18393006825529873, + "time": 0.18393006825529878, "position": { "x": 7, "y": 0 @@ -3594,13 +3594,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1190, - "time": 0.18776194467728416, + "noteOrder": 1179, + "time": 0.18584600646629149, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3612,18 +3612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1214, - "time": 0.19159382109926953, + "noteOrder": 1179, + "time": 0.18584600646629149, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3640,11 +3640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1239, - "time": 0.1954256975212549, + "noteOrder": 1191, + "time": 0.18776194467728416, "position": { "x": 3, "y": 0 @@ -3663,13 +3663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1360, - "time": 0.21458507963118187, + "noteOrder": 1203, + "time": 0.1896778828882769, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3686,13 +3686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1385, - "time": 0.21841695605316724, + "noteOrder": 1203, + "time": 0.1896778828882769, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3704,18 +3704,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1409, - "time": 0.22224883247515267, + "noteOrder": 1215, + "time": 0.19159382109926956, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3727,18 +3727,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1433, - "time": 0.22608070889713805, + "noteOrder": 1227, + "time": 0.19350975931026226, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3755,13 +3755,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1457, - "time": 0.22991258531912342, + "noteOrder": 1227, + "time": 0.19350975931026226, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3773,18 +3773,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1506, - "time": 0.23757633816309423, + "noteOrder": 1239, + "time": 0.19542569752125497, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3801,13 +3801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1555, - "time": 0.245240091007065, + "noteOrder": 1251, + "time": 0.19734163573224767, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3819,18 +3819,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1579, - "time": 0.24907196742905038, + "noteOrder": 1251, + "time": 0.19734163573224767, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3847,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1603, - "time": 0.25290384385103576, + "noteOrder": 1361, + "time": 0.21458507963118192, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3865,18 +3865,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1627, - "time": 0.25673572027302116, + "noteOrder": 1373, + "time": 0.2165010178421746, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3893,13 +3893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1652, - "time": 0.26056759669500656, + "noteOrder": 1373, + "time": 0.2165010178421746, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3911,16 +3911,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1700, - "time": 0.26823134953897737, + "noteOrder": 1385, + "time": 0.2184169560531673, "position": { "x": 4, "y": 0 @@ -3934,18 +3934,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1749, - "time": 0.2758951023829481, + "noteOrder": 1385, + "time": 0.2184169560531673, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3962,13 +3962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 1846, - "time": 0.2912226080708897, + "noteOrder": 1385, + "time": 0.2184169560531673, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3980,18 +3980,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1846, - "time": 0.2912226080708897, + "noteOrder": 1397, + "time": 0.22033289426416, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4008,13 +4008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1870, - "time": 0.2950544844928751, + "noteOrder": 1397, + "time": 0.22033289426416, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4031,13 +4031,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1895, - "time": 0.2988863609148604, + "noteOrder": 1409, + "time": 0.2222488324751527, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4054,13 +4054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1943, - "time": 0.3065501137588313, + "noteOrder": 1409, + "time": 0.2222488324751527, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4077,13 +4077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2040, - "time": 0.3218776194467728, + "noteOrder": 1409, + "time": 0.2222488324751527, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4095,16 +4095,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2040, - "time": 0.3218776194467728, + "noteOrder": 1422, + "time": 0.22416477068614538, "position": { "x": 2, "y": 0 @@ -4123,11 +4123,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2065, - "time": 0.3257094958687582, + "noteOrder": 1422, + "time": 0.22416477068614538, "position": { "x": 4, "y": 0 @@ -4146,13 +4146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 2, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2089, - "time": 0.3295413722907436, + "noteOrder": 1434, + "time": 0.2260807088971381, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4169,13 +4169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 3, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2113, - "time": 0.333373248712729, + "noteOrder": 1434, + "time": 0.2260807088971381, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4192,11 +4192,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 4, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2137, - "time": 0.3372051251347144, + "noteOrder": 1434, + "time": 0.2260807088971381, "position": { "x": 2, "y": 0 @@ -4210,16 +4210,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, - "time": 0.34103700155669975, + "noteOrder": 1446, + "time": 0.22799664710813078, "position": { "x": 2, "y": 0 @@ -4238,13 +4238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2186, - "time": 0.34486887797868515, + "noteOrder": 1446, + "time": 0.22799664710813078, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4256,18 +4256,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2210, - "time": 0.3487007544006705, + "noteOrder": 1458, + "time": 0.22991258531912348, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4284,13 +4284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2235, - "time": 0.35253263082265596, + "noteOrder": 1458, + "time": 0.22991258531912348, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4302,16 +4302,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2259, - "time": 0.35636450724464136, + "noteOrder": 1458, + "time": 0.22991258531912348, "position": { "x": 2, "y": 0 @@ -4325,18 +4325,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2332, - "time": 0.36786013651059746, + "noteOrder": 1507, + "time": 0.23757633816309426, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4353,11 +4353,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2356, - "time": 0.37169201293258286, + "noteOrder": 1555, + "time": 0.24524009100706506, "position": { "x": 8, "y": 0 @@ -4376,11 +4376,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.3755238893545683, + "noteOrder": 1567, + "time": 0.24715602921805774, "position": { "x": 8, "y": 0 @@ -4394,18 +4394,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2405, - "time": 0.37935576577655367, + "noteOrder": 1567, + "time": 0.24715602921805774, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4422,13 +4422,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2429, - "time": 0.38318764219853907, + "noteOrder": 1579, + "time": 0.24907196742905044, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4440,18 +4440,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3109, - "time": 0.49048018201413, + "noteOrder": 1579, + "time": 0.24907196742905044, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4468,13 +4468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 3206, - "time": 0.5058076877020715, + "noteOrder": 1579, + "time": 0.24907196742905044, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4486,18 +4486,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3206, - "time": 0.5058076877020715, + "noteOrder": 1592, + "time": 0.25098790564004314, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4514,13 +4514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3303, - "time": 0.5211351933900131, + "noteOrder": 1592, + "time": 0.25098790564004314, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4537,11 +4537,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3303, - "time": 0.5211351933900131, + "noteOrder": 1604, + "time": 0.2529038438510358, "position": { "x": 6, "y": 0 @@ -4555,18 +4555,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1604, + "time": 0.2529038438510358, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 3401, - "time": 0.5364626990779547, + "noteOrder": 1604, + "time": 0.2529038438510358, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4583,13 +4606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3401, - "time": 0.5364626990779547, + "noteOrder": 1616, + "time": 0.2548197820620285, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4601,18 +4624,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3498, - "time": 0.5517902047658962, + "noteOrder": 1616, + "time": 0.2548197820620285, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4624,16 +4647,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3498, - "time": 0.5517902047658962, + "noteOrder": 1628, + "time": 0.2567357202730212, "position": { "x": 6, "y": 0 @@ -4652,13 +4675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3546, - "time": 0.5594539576098669, + "noteOrder": 1628, + "time": 0.2567357202730212, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4675,13 +4698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3546, - "time": 0.5594539576098669, + "noteOrder": 1628, + "time": 0.2567357202730212, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4698,13 +4721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3595, - "time": 0.5671177104538379, + "noteOrder": 1640, + "time": 0.2586516584840139, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4721,11 +4744,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3692, - "time": 0.5824452161417794, + "noteOrder": 1640, + "time": 0.2586516584840139, "position": { "x": 6, "y": 0 @@ -4739,16 +4762,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3741, - "time": 0.5901089689857502, + "noteOrder": 1652, + "time": 0.2605675966950066, "position": { "x": 6, "y": 0 @@ -4762,18 +4785,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3741, - "time": 0.5901089689857502, + "noteOrder": 1652, + "time": 0.2605675966950066, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4790,11 +4813,34 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3789, - "time": 0.5977727218297209, + "noteOrder": 1652, + "time": 0.2605675966950066, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1701, + "time": 0.26823134953897737, "position": { "x": 4, "y": 0 @@ -4808,16 +4854,62 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1750, + "time": 0.2758951023829482, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1847, + "time": 0.2912226080708898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3789, - "time": 0.5977727218297209, + "noteOrder": 1847, + "time": 0.2912226080708898, "position": { "x": 8, "y": 0 @@ -4836,13 +4928,59 @@ "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1871, + "time": 0.29505448449287514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1895, + "time": 0.29888636091486054, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 3813, - "time": 0.6016045982517063, + "noteOrder": 1944, + "time": 0.3065501137588313, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4859,13 +4997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 81, "indexInLine": 2, "isSliding": false, - "noteOrder": 3838, - "time": 0.6054364746736917, + "noteOrder": 2041, + "time": 0.32187761944677284, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4882,11 +5020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3838, - "time": 0.6054364746736917, + "noteOrder": 2041, + "time": 0.32187761944677284, "position": { "x": 2, "y": 0 @@ -4905,13 +5043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3862, - "time": 0.6092683510956771, + "noteOrder": 2065, + "time": 0.32570949586875825, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4928,13 +5066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 2, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3886, - "time": 0.6131002275176626, + "noteOrder": 2090, + "time": 0.32954137229074365, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4951,13 +5089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4275, - "time": 0.6744102502694288, + "noteOrder": 2114, + "time": 0.33337324871272905, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4969,16 +5107,3834 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3372051251347144, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2150, + "time": 0.33912106334570713, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2150, + "time": 0.33912106334570713, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2163, + "time": 0.34103700155669986, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2163, + "time": 0.34103700155669986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.34103700155669986, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2175, + "time": 0.34295293976769253, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2175, + "time": 0.34295293976769253, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2199, + "time": 0.34678481618967794, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2199, + "time": 0.34678481618967794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3487007544006706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3487007544006706, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3487007544006706, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2223, + "time": 0.35061669261166334, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2223, + "time": 0.35061669261166334, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3544485690336487, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2248, + "time": 0.3544485690336487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3563645072446414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3563645072446414, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3563645072446414, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2272, + "time": 0.35828044545563414, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2272, + "time": 0.35828044545563414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2284, + "time": 0.36019638366662676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2284, + "time": 0.36019638366662676, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2333, + "time": 0.36786013651059757, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2345, + "time": 0.36977607472159024, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2345, + "time": 0.36977607472159024, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2357, + "time": 0.37169201293258297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2357, + "time": 0.37169201293258297, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.37169201293258297, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2369, + "time": 0.37360795114357565, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.37360795114357565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.3755238893545683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2381, + "time": 0.3755238893545683, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2381, + "time": 0.3755238893545683, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2393, + "time": 0.37743982756556105, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2393, + "time": 0.37743982756556105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2406, + "time": 0.3793557657765538, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2406, + "time": 0.3793557657765538, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.3793557657765538, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2418, + "time": 0.3812717039875464, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2418, + "time": 0.3812717039875464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2430, + "time": 0.3831876421985391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2430, + "time": 0.3831876421985391, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2430, + "time": 0.3831876421985391, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2442, + "time": 0.38510358040953185, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2442, + "time": 0.38510358040953185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2454, + "time": 0.3870195186205245, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2454, + "time": 0.3870195186205245, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3110, + "time": 0.49048018201413013, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3207, + "time": 0.5058076877020716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3207, + "time": 0.5058076877020716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3305, + "time": 0.5211351933900132, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3305, + "time": 0.5211351933900132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3402, + "time": 0.5364626990779547, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3402, + "time": 0.5364626990779547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3499, + "time": 0.5517902047658964, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3499, + "time": 0.5517902047658964, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3548, + "time": 0.5594539576098672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3548, + "time": 0.5594539576098672, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3596, + "time": 0.567117710453838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3693, + "time": 0.5824452161417796, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3742, + "time": 0.5901089689857503, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3742, + "time": 0.5901089689857503, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3791, + "time": 0.5977727218297211, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3791, + "time": 0.5977727218297211, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3815, + "time": 0.6016045982517064, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3839, + "time": 0.6054364746736919, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3839, + "time": 0.6054364746736919, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3864, + "time": 0.6092683510956772, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3888, + "time": 0.6131002275176626, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4277, + "time": 0.6744102502694288, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4325, + "time": 0.6820740031133997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4374, + "time": 0.6897377559573704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4422, + "time": 0.6974015088013412, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4471, + "time": 0.705065261645312, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7069811998563047, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4483, + "time": 0.7069811998563047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4495, + "time": 0.7088971380672974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4508, + "time": 0.71081307627829, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4508, + "time": 0.71081307627829, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4520, + "time": 0.7127290144892828, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4532, + "time": 0.7146449527002755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4532, + "time": 0.7146449527002755, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4544, + "time": 0.7165608909112683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7184768291222609, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4556, + "time": 0.7184768291222609, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7357202730211951, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4763, + "time": 0.7510477787091366, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4763, + "time": 0.7510477787091366, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4787, + "time": 0.7548796551311221, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4811, + "time": 0.7587115315531076, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4836, + "time": 0.7625434079750928, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4860, + "time": 0.7663752843970782, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4933, + "time": 0.7778709136630344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4957, + "time": 0.7817027900850199, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4981, + "time": 0.7855346665070052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5006, + "time": 0.7893665429289907, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5030, + "time": 0.793198419350976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5054, + "time": 0.7970302957729614, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5066, + "time": 0.798946233983954, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5066, + "time": 0.798946233983954, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5079, + "time": 0.8008621721949468, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5079, + "time": 0.8008621721949468, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5079, + "time": 0.8008621721949468, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5091, + "time": 0.8027781104059395, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5091, + "time": 0.8027781104059395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5103, + "time": 0.8046940486169323, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5103, + "time": 0.8046940486169323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5103, + "time": 0.8046940486169323, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5115, + "time": 0.8066099868279248, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5115, + "time": 0.8066099868279248, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5127, + "time": 0.8085259250389175, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5127, + "time": 0.8085259250389175, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5127, + "time": 0.8085259250389175, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5139, + "time": 0.8104418632499103, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5139, + "time": 0.8104418632499103, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5151, + "time": 0.812357801460903, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5151, + "time": 0.812357801460903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5151, + "time": 0.812357801460903, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5164, + "time": 0.8142737396718956, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5164, + "time": 0.8142737396718956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5176, + "time": 0.8161896778828884, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5176, + "time": 0.8161896778828884, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5176, + "time": 0.8161896778828884, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5188, + "time": 0.818105616093881, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5188, + "time": 0.818105616093881, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5200, + "time": 0.8200215543048737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5200, + "time": 0.8200215543048737, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5200, + "time": 0.8200215543048737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5212, + "time": 0.8219374925158665, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5212, + "time": 0.8219374925158665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5224, + "time": 0.8238534307268591, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5224, + "time": 0.8238534307268591, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5224, + "time": 0.8238534307268591, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5236, + "time": 0.8257693689378519, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5236, + "time": 0.8257693689378519, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5249, + "time": 0.8276853071488446, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5249, + "time": 0.8276853071488446, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5249, + "time": 0.8276853071488446, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5346, + "time": 0.8430128128367861, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5467, + "time": 0.862172194946713, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5516, + "time": 0.8698359477906838, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5637, + "time": 0.8889953299006108, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5650, + "time": 0.8909112681116035, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5650, + "time": 0.8909112681116035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5662, + "time": 0.8928272063225963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5662, + "time": 0.8928272063225963, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5662, + "time": 0.8928272063225963, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8947431445335888, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5674, + "time": 0.8947431445335888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5686, + "time": 0.8966590827445815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5686, + "time": 0.8966590827445815, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5686, + "time": 0.8966590827445815, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5698, + "time": 0.8985750209555743, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5698, + "time": 0.8985750209555743, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5710, + "time": 0.900490959166567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5710, + "time": 0.900490959166567, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5710, + "time": 0.900490959166567, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5722, + "time": 0.9024068973775596, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4324, - "time": 0.6820740031133995, + "noteOrder": 5722, + "time": 0.9024068973775596, "position": { "x": 6, "y": 0 @@ -4992,18 +8948,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4372, - "time": 0.6897377559573703, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5020,13 +8976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 240, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4421, - "time": 0.697401508801341, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5043,13 +8999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, - "time": 0.7050652616453119, + "noteOrder": 5832, + "time": 0.9196503412764939, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5061,18 +9017,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4494, - "time": 0.7088971380672973, + "noteOrder": 5844, + "time": 0.9215662794874866, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5089,13 +9045,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4518, - "time": 0.7127290144892827, + "noteOrder": 5844, + "time": 0.9215662794874866, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5107,18 +9063,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4542, - "time": 0.716560890911268, + "noteOrder": 5856, + "time": 0.9234822176984793, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5135,13 +9091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4664, - "time": 0.7357202730211949, + "noteOrder": 5856, + "time": 0.9234822176984793, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5158,13 +9114,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 246, "indexInLine": 1, "isSliding": false, - "noteOrder": 4761, - "time": 0.7510477787091366, + "noteOrder": 5856, + "time": 0.9234822176984793, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5176,16 +9132,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4761, - "time": 0.7510477787091366, + "noteOrder": 5868, + "time": 0.925398155909472, "position": { "x": 2, "y": 0 @@ -5204,11 +9160,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4785, - "time": 0.7548796551311219, + "noteOrder": 5868, + "time": 0.925398155909472, "position": { "x": 4, "y": 0 @@ -5227,13 +9183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 246, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4809, - "time": 0.7587115315531073, + "noteOrder": 5880, + "time": 0.9273140941204647, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5250,13 +9206,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 3, + "lineGroupId": 246, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4834, - "time": 0.7625434079750927, + "noteOrder": 5880, + "time": 0.9273140941204647, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5273,11 +9229,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 4, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4858, - "time": 0.7663752843970781, + "noteOrder": 5880, + "time": 0.9273140941204647, "position": { "x": 2, "y": 0 @@ -5291,18 +9247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 5, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4931, - "time": 0.7778709136630343, + "noteOrder": 5893, + "time": 0.9292300323314574, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5314,18 +9270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4955, - "time": 0.7817027900850196, + "noteOrder": 5893, + "time": 0.9292300323314574, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5342,13 +9298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4979, - "time": 0.7855346665070051, + "noteOrder": 5905, + "time": 0.9311459705424501, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5365,13 +9321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 2, + "lineGroupId": 247, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5004, - "time": 0.7893665429289904, + "noteOrder": 5905, + "time": 0.9311459705424501, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5388,13 +9344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 3, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5028, - "time": 0.7931984193509759, + "noteOrder": 5905, + "time": 0.9311459705424501, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -5406,18 +9362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 4, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5052, - "time": 0.7970302957729613, + "noteOrder": 5917, + "time": 0.9330619087534427, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5429,18 +9385,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5077, - "time": 0.8008621721949466, + "noteOrder": 5917, + "time": 0.9330619087534427, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5457,13 +9413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5101, - "time": 0.8046940486169321, + "noteOrder": 5929, + "time": 0.9349778469644355, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5475,18 +9431,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5125, - "time": 0.8085259250389174, + "noteOrder": 5929, + "time": 0.9349778469644355, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5503,13 +9459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5149, - "time": 0.8123578014609029, + "noteOrder": 5929, + "time": 0.9349778469644355, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5526,13 +9482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5174, - "time": 0.8161896778828882, + "noteOrder": 5941, + "time": 0.9368937851754282, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5544,18 +9500,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5198, - "time": 0.8200215543048736, + "noteOrder": 5941, + "time": 0.9368937851754282, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5572,13 +9528,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5222, - "time": 0.823853430726859, + "noteOrder": 5953, + "time": 0.9388097233864209, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5590,18 +9546,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5247, - "time": 0.8276853071488444, + "noteOrder": 5953, + "time": 0.9388097233864209, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5618,13 +9574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 250, "indexInLine": 1, "isSliding": false, - "noteOrder": 5344, - "time": 0.843012812836786, + "noteOrder": 5953, + "time": 0.9388097233864209, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5636,16 +9592,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5465, - "time": 0.8621721949467129, + "noteOrder": 5965, + "time": 0.9407256615974136, "position": { "x": 2, "y": 0 @@ -5664,13 +9620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 1, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5514, - "time": 0.8698359477906837, + "noteOrder": 5965, + "time": 0.9407256615974136, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5687,13 +9643,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5635, - "time": 0.8889953299006107, + "noteOrder": 5978, + "time": 0.9426415998084062, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5705,18 +9661,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5659, - "time": 0.8928272063225959, + "noteOrder": 5978, + "time": 0.9426415998084062, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5733,13 +9689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5684, - "time": 0.8966590827445814, + "noteOrder": 5978, + "time": 0.9426415998084062, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5756,13 +9712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5708, - "time": 0.9004909591665667, + "noteOrder": 5990, + "time": 0.944557538019399, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5774,18 +9730,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5829, - "time": 0.9196503412764937, + "noteOrder": 5990, + "time": 0.944557538019399, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5802,13 +9758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5854, - "time": 0.9234822176984792, + "noteOrder": 6002, + "time": 0.9464734762303917, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5820,18 +9776,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5878, - "time": 0.9273140941204646, + "noteOrder": 6002, + "time": 0.9464734762303917, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5848,11 +9804,11 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5902, - "time": 0.93114597054245, + "noteOrder": 6002, + "time": 0.9464734762303917, "position": { "x": 2, "y": 0 @@ -5871,11 +9827,11 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5927, - "time": 0.9349778469644353, + "noteOrder": 6014, + "time": 0.9483894144413844, "position": { "x": 2, "y": 0 @@ -5889,18 +9845,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5951, - "time": 0.9388097233864207, + "noteOrder": 6014, + "time": 0.9483894144413844, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5917,13 +9873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5975, - "time": 0.9426415998084061, + "noteOrder": 6026, + "time": 0.950305352652377, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5935,18 +9891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6000, - "time": 0.9464734762303915, + "noteOrder": 6026, + "time": 0.950305352652377, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5964,10 +9920,10 @@ }, { "lineGroupId": 261, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6145, - "time": 0.9694647347623039, + "noteOrder": 6148, + "time": 0.969464734762304, "position": { "x": 4, "y": 0 @@ -5987,10 +9943,10 @@ }, { "lineGroupId": 261, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6157, - "time": 0.9713806729732964, + "noteOrder": 6160, + "time": 0.9713806729732968, "position": { "x": 4, "y": 0 @@ -6010,10 +9966,10 @@ }, { "lineGroupId": 261, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6182, - "time": 0.9752125493952819, + "noteOrder": 6184, + "time": 0.975212549395282, "position": { "x": 6, "y": 0 @@ -6033,10 +9989,10 @@ }, { "lineGroupId": 261, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6218, - "time": 0.98096036402826, + "noteOrder": 6221, + "time": 0.9809603640282603, "position": { "x": 6, "y": 0 @@ -6056,10 +10012,10 @@ }, { "lineGroupId": 262, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6145, - "time": 0.9694647347623039, + "noteOrder": 6148, + "time": 0.969464734762304, "position": { "x": 6, "y": 0 @@ -6079,10 +10035,10 @@ }, { "lineGroupId": 262, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6157, - "time": 0.9713806729732964, + "noteOrder": 6160, + "time": 0.9713806729732968, "position": { "x": 6, "y": 0 @@ -6102,10 +10058,10 @@ }, { "lineGroupId": 262, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6182, - "time": 0.9752125493952819, + "noteOrder": 6184, + "time": 0.975212549395282, "position": { "x": 4, "y": 0 @@ -6125,10 +10081,10 @@ }, { "lineGroupId": 262, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6218, - "time": 0.98096036402826, + "noteOrder": 6221, + "time": 0.9809603640282603, "position": { "x": 4, "y": 0 diff --git a/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1b.json b/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1b.json index 21850716..1bd9242c 100644 --- a/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1b.json +++ b/tracks/Sakura Reflection (STARDOM Remix)/264_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 219, - "time": 0.034486887797868515, + "time": 0.03448688779786852, "position": { "x": 6, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 291, - "time": 0.04598251706382468, + "noteOrder": 292, + "time": 0.045982517063824696, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 316, - "time": 0.04981439348581008, + "time": 0.049814393485810085, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 340, - "time": 0.05364626990779547, + "time": 0.05364626990779548, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 364, - "time": 0.057478146329780856, + "time": 0.05747814632978087, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 389, - "time": 0.06131002275176625, + "time": 0.061310022751766266, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 437, - "time": 0.06897377559573703, + "time": 0.06897377559573704, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 510, - "time": 0.0804694048616932, + "time": 0.08046940486169321, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 534, + "noteOrder": 535, "time": 0.0843012812836786, "position": { "x": 4, @@ -234,7 +234,7 @@ }, { "noteOrder": 559, - "time": 0.08813315770566399, + "time": 0.088133157705664, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 607, - "time": 0.09579691054963477, + "time": 0.09579691054963478, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 656, - "time": 0.10346066339360555, + "time": 0.10346066339360557, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 680, - "time": 0.10729253981559093, + "time": 0.10729253981559096, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 704, - "time": 0.11112441623757634, + "noteOrder": 705, + "time": 0.11112441623757635, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 729, - "time": 0.11495629265956171, + "time": 0.11495629265956174, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 753, - "time": 0.11878816908154712, + "time": 0.11878816908154713, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 777, - "time": 0.1226200455035325, + "noteOrder": 778, + "time": 0.12262004550353253, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 826, - "time": 0.13028379834750328, + "time": 0.1302837983475033, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 874, - "time": 0.13794755119147406, + "noteOrder": 875, + "time": 0.1379475511914741, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 899, - "time": 0.14177942761345946, + "time": 0.1417794276134595, "position": { "x": 4, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 923, - "time": 0.14561130403544484, + "time": 0.1456113040354449, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 947, - "time": 0.1494431804574302, + "noteOrder": 948, + "time": 0.14944318045743027, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1044, - "time": 0.1647706861453718, + "noteOrder": 1045, + "time": 0.16477068614537183, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1093, - "time": 0.17243443898934258, + "time": 0.1724344389893426, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1142, - "time": 0.18009819183331335, + "time": 0.18009819183331338, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1166, - "time": 0.18393006825529873, + "time": 0.18393006825529878, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1190, + "noteOrder": 1191, "time": 0.18776194467728416, "position": { "x": 4, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1214, - "time": 0.19159382109926953, + "noteOrder": 1215, + "time": 0.19159382109926956, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1239, - "time": 0.1954256975212549, + "time": 0.19542569752125497, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1263, - "time": 0.1992575739432403, + "noteOrder": 1264, + "time": 0.19925757394324034, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1409, - "time": 0.22224883247515267, + "time": 0.2222488324751527, "position": { "x": 2, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1457, - "time": 0.22991258531912342, + "noteOrder": 1458, + "time": 0.22991258531912348, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1506, - "time": 0.23757633816309423, + "noteOrder": 1507, + "time": 0.23757633816309426, "position": { "x": 2, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1603, - "time": 0.25290384385103576, + "noteOrder": 1604, + "time": 0.2529038438510358, "position": { "x": 5, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1652, - "time": 0.26056759669500656, + "time": 0.2605675966950066, "position": { "x": 8, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1700, + "noteOrder": 1701, "time": 0.26823134953897737, "position": { "x": 5, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1993, "time": 0.31421386660280204, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2040, - "time": 0.3218776194467728, + "noteOrder": 2041, + "time": 0.32187761944677284, "position": { "x": 2, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 2065, - "time": 0.3257094958687582, + "time": 0.32570949586875825, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3295413722907436, + "noteOrder": 2090, + "time": 0.32954137229074365, "position": { "x": 2, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.3755238893545683, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2429, - "time": 0.38318764219853907, + "noteOrder": 2430, + "time": 0.3831876421985391, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2478, - "time": 0.3908513950425098, + "noteOrder": 2479, + "time": 0.39085139504250993, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2526, - "time": 0.3985151478864806, + "noteOrder": 2527, + "time": 0.3985151478864807, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2550, - "time": 0.40234702430846603, + "noteOrder": 2551, + "time": 0.40234702430846614, "position": { "x": 2, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2575, - "time": 0.40617890073045143, + "noteOrder": 2576, + "time": 0.4061789007304515, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2599, - "time": 0.4100107771524368, + "noteOrder": 2600, + "time": 0.41001077715243683, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2623, - "time": 0.4138426535744222, + "noteOrder": 2624, + "time": 0.4138426535744223, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2648, - "time": 0.41767452999640753, + "noteOrder": 2649, + "time": 0.41767452999640764, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2672, - "time": 0.421506406418393, + "noteOrder": 2673, + "time": 0.42150640641839304, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2696, + "noteOrder": 2697, "time": 0.4253382828403784, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2720, - "time": 0.42917015926236374, + "noteOrder": 2722, + "time": 0.42917015926236385, "position": { "x": 8, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2745, - "time": 0.43300203568434914, + "noteOrder": 2746, + "time": 0.4330020356843492, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2769, - "time": 0.4368339121063345, + "noteOrder": 2770, + "time": 0.4368339121063346, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2793, - "time": 0.4406657885283199, + "noteOrder": 2794, + "time": 0.44066578852832, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2818, - "time": 0.44449766495030535, + "noteOrder": 2819, + "time": 0.4444976649503054, "position": { "x": 2, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2842, - "time": 0.4483295413722907, + "noteOrder": 2843, + "time": 0.44832954137229075, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3109, - "time": 0.49048018201413, + "noteOrder": 3110, + "time": 0.49048018201413013, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3158, - "time": 0.49814393485810077, + "noteOrder": 3159, + "time": 0.4981439348581009, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3206, - "time": 0.5058076877020715, + "noteOrder": 3207, + "time": 0.5058076877020716, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3255, - "time": 0.5134714405460423, + "noteOrder": 3256, + "time": 0.5134714405460424, "position": { "x": 8, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3303, - "time": 0.5211351933900131, + "noteOrder": 3305, + "time": 0.5211351933900132, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3352, - "time": 0.5287989462339839, + "noteOrder": 3353, + "time": 0.528798946233984, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3402, "time": 0.5364626990779547, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3449, - "time": 0.5441264519219254, + "noteOrder": 3450, + "time": 0.5441264519219255, "position": { "x": 8, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3498, - "time": 0.5517902047658962, + "noteOrder": 3499, + "time": 0.5517902047658964, "position": { "x": 4, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5556220811878817, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3546, - "time": 0.5594539576098669, + "noteOrder": 3548, + "time": 0.5594539576098672, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3595, - "time": 0.5671177104538379, + "noteOrder": 3596, + "time": 0.567117710453838, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5709495868758232, + "noteOrder": 3621, + "time": 0.5709495868758233, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3643, + "noteOrder": 3645, "time": 0.5747814632978087, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3692, - "time": 0.5824452161417794, + "noteOrder": 3693, + "time": 0.5824452161417796, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3716, - "time": 0.5862770925637647, + "noteOrder": 3718, + "time": 0.5862770925637648, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3741, - "time": 0.5901089689857502, + "noteOrder": 3742, + "time": 0.5901089689857503, "position": { "x": 4, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3789, - "time": 0.5977727218297209, + "noteOrder": 3791, + "time": 0.5977727218297211, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3813, - "time": 0.6016045982517063, + "noteOrder": 3815, + "time": 0.6016045982517064, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3838, - "time": 0.6054364746736917, + "noteOrder": 3839, + "time": 0.6054364746736919, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3862, - "time": 0.6092683510956771, + "noteOrder": 3864, + "time": 0.6092683510956772, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3886, + "noteOrder": 3888, "time": 0.6131002275176626, "position": { "x": 5, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3911, + "noteOrder": 3912, "time": 0.6169321039396479, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3935, - "time": 0.6207639803616333, + "noteOrder": 3936, + "time": 0.6207639803616334, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3959, - "time": 0.6245958567836186, + "noteOrder": 3961, + "time": 0.6245958567836188, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3983, + "noteOrder": 3985, "time": 0.6284277332056041, "position": { "x": 6, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4008, - "time": 0.6322596096275894, + "noteOrder": 4009, + "time": 0.6322596096275895, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4032, - "time": 0.6360914860495749, + "noteOrder": 4034, + "time": 0.636091486049575, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4056, - "time": 0.6399233624715602, + "noteOrder": 4058, + "time": 0.6399233624715603, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4081, - "time": 0.6437552388935456, + "noteOrder": 4082, + "time": 0.6437552388935457, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4105, - "time": 0.647587115315531, + "noteOrder": 4107, + "time": 0.6475871153155311, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4129, - "time": 0.6514189917375164, + "noteOrder": 4131, + "time": 0.6514189917375165, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.6552508681595018, + "noteOrder": 4155, + "time": 0.655250868159502, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6590827445814872, + "noteOrder": 4179, + "time": 0.6590827445814873, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6629146210034725, + "noteOrder": 4204, + "time": 0.6629146210034726, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4226, - "time": 0.666746497425458, + "noteOrder": 4228, + "time": 0.6667464974254581, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.6705783738474433, + "noteOrder": 4252, + "time": 0.6705783738474436, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4275, + "noteOrder": 4277, "time": 0.6744102502694288, "position": { "x": 2, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.6782421266914141, + "noteOrder": 4301, + "time": 0.6782421266914143, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4324, - "time": 0.6820740031133995, + "noteOrder": 4325, + "time": 0.6820740031133997, "position": { "x": 5, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4348, - "time": 0.685905879535385, + "noteOrder": 4350, + "time": 0.6859058795353851, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.6897377559573703, + "noteOrder": 4374, + "time": 0.6897377559573704, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4396, - "time": 0.6935696323793558, + "noteOrder": 4398, + "time": 0.6935696323793559, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4421, - "time": 0.697401508801341, + "noteOrder": 4422, + "time": 0.6974015088013412, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.7012333852233265, + "noteOrder": 4447, + "time": 0.7012333852233267, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4469, - "time": 0.7050652616453119, + "noteOrder": 4471, + "time": 0.705065261645312, "position": { "x": 2, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4494, - "time": 0.7088971380672973, + "noteOrder": 4495, + "time": 0.7088971380672974, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4518, - "time": 0.7127290144892827, + "noteOrder": 4520, + "time": 0.7127290144892828, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4542, - "time": 0.716560890911268, + "noteOrder": 4544, + "time": 0.7165608909112683, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4566, - "time": 0.7203927673332534, + "noteOrder": 4568, + "time": 0.7203927673332535, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4906, - "time": 0.7740390372410489, + "noteOrder": 4908, + "time": 0.774039037241049, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4955, - "time": 0.7817027900850196, + "noteOrder": 4957, + "time": 0.7817027900850199, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5004, - "time": 0.7893665429289904, + "noteOrder": 5006, + "time": 0.7893665429289907, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5101, - "time": 0.8046940486169321, + "noteOrder": 5103, + "time": 0.8046940486169323, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5149, - "time": 0.8123578014609029, + "noteOrder": 5151, + "time": 0.812357801460903, "position": { "x": 8, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5198, - "time": 0.8200215543048736, + "noteOrder": 5200, + "time": 0.8200215543048737, "position": { "x": 5, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5344, - "time": 0.843012812836786, + "noteOrder": 5346, + "time": 0.8430128128367861, "position": { "x": 8, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5368, - "time": 0.8468446892587713, + "noteOrder": 5370, + "time": 0.8468446892587715, "position": { "x": 4, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5392, + "noteOrder": 5394, "time": 0.8506765656807568, "position": { "x": 8, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5417, - "time": 0.854508442102742, + "noteOrder": 5419, + "time": 0.8545084421027422, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5489, - "time": 0.8660040713686983, + "noteOrder": 5492, + "time": 0.8660040713686984, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5538, - "time": 0.873667824212669, + "noteOrder": 5540, + "time": 0.8736678242126692, "position": { "x": 2, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5562, - "time": 0.8774997006346544, + "noteOrder": 5565, + "time": 0.8774997006346547, "position": { "x": 2, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5587, - "time": 0.8813315770566398, + "noteOrder": 5589, + "time": 0.88133157705664, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5611, - "time": 0.8851634534786252, + "noteOrder": 5613, + "time": 0.8851634534786254, "position": { "x": 2, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5732, - "time": 0.9043228355885522, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { "x": 2, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.9081547120105377, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5781, - "time": 0.9119865884325229, + "noteOrder": 5783, + "time": 0.9119865884325231, "position": { "x": 2, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5805, - "time": 0.9158184648545084, + "noteOrder": 5808, + "time": 0.9158184648545086, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5878, - "time": 0.9273140941204646, + "noteOrder": 5880, + "time": 0.9273140941204647, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5927, - "time": 0.9349778469644353, + "noteOrder": 5929, + "time": 0.9349778469644355, "position": { "x": 4, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5975, - "time": 0.9426415998084061, + "noteOrder": 5978, + "time": 0.9426415998084062, "position": { "x": 7, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6024, - "time": 0.9503053526523769, + "noteOrder": 6026, + "time": 0.950305352652377, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6048, - "time": 0.9541372290743623, + "noteOrder": 6051, + "time": 0.9541372290743624, "position": { "x": 2, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6072, - "time": 0.9579691054963476, + "noteOrder": 6075, + "time": 0.9579691054963478, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6097, - "time": 0.9618009819183331, + "noteOrder": 6099, + "time": 0.9618009819183332, "position": { "x": 4, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.9656328583403184, + "noteOrder": 6123, + "time": 0.9656328583403186, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6121, - "time": 0.9656328583403184, + "noteOrder": 6123, + "time": 0.9656328583403186, "position": { "x": 7, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6145, - "time": 0.9694647347623039, + "noteOrder": 6148, + "time": 0.969464734762304, "position": { "x": 6, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6145, - "time": 0.9694647347623039, + "noteOrder": 6148, + "time": 0.969464734762304, "position": { "x": 4, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6170, - "time": 0.9732966111842892, + "noteOrder": 6172, + "time": 0.9732966111842893, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6170, - "time": 0.9732966111842892, + "noteOrder": 6172, + "time": 0.9732966111842893, "position": { "x": 3, "y": 0 @@ -2856,10 +2856,10 @@ "lineNodes": [ { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1360, - "time": 0.21458507963118187, + "noteOrder": 1361, + "time": 0.21458507963118192, "position": { "x": 7, "y": 0 @@ -2879,10 +2879,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1409, - "time": 0.22224883247515267, + "time": 0.2222488324751527, "position": { "x": 4, "y": 0 @@ -2902,10 +2902,10 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1457, - "time": 0.22991258531912342, + "noteOrder": 1458, + "time": 0.22991258531912348, "position": { "x": 6, "y": 0 @@ -2925,12 +2925,1484 @@ }, { "lineGroupId": 38, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1507, + "time": 0.23757633816309426, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1555, + "time": 0.24524009100706506, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1555, + "time": 0.24524009100706506, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1604, + "time": 0.2529038438510358, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1652, + "time": 0.2605675966950066, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1701, + "time": 0.26823134953897737, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1750, + "time": 0.2758951023829482, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1750, + "time": 0.2758951023829482, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1774, + "time": 0.2797269788049336, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, "indexInLine": 3, "isSliding": false, - "noteOrder": 1506, - "time": 0.23757633816309423, + "noteOrder": 1774, + "time": 0.2797269788049336, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1798, + "time": 0.283558855226919, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1798, + "time": 0.283558855226919, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1798, + "time": 0.283558855226919, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1822, + "time": 0.28739073164890433, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1822, + "time": 0.28739073164890433, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1847, + "time": 0.2912226080708898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1847, + "time": 0.2912226080708898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1847, + "time": 0.2912226080708898, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1871, + "time": 0.29505448449287514, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1871, + "time": 0.29505448449287514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1895, + "time": 0.29888636091486054, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1895, + "time": 0.29888636091486054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1895, + "time": 0.29888636091486054, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1920, + "time": 0.30271823733684594, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1920, + "time": 0.30271823733684594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1944, + "time": 0.3065501137588313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1944, + "time": 0.3065501137588313, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1944, + "time": 0.3065501137588313, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2041, + "time": 0.32187761944677284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3372051251347144, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2163, + "time": 0.34103700155669986, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2163, + "time": 0.34103700155669986, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2187, + "time": 0.3448688779786852, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3487007544006706, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3487007544006706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.352532630822656, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3563645072446414, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2260, + "time": 0.3563645072446414, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2284, + "time": 0.36019638366662676, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2284, + "time": 0.36019638366662676, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2284, + "time": 0.36019638366662676, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2308, + "time": 0.36402826008861217, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2308, + "time": 0.36402826008861217, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2333, + "time": 0.36786013651059757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2333, + "time": 0.36786013651059757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2333, + "time": 0.36786013651059757, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2381, + "time": 0.3755238893545683, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2430, + "time": 0.3831876421985391, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2479, + "time": 0.39085139504250993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2527, + "time": 0.3985151478864807, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2867, + "time": 0.4521614177942762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2916, + "time": 0.45982517063824696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2892, + "time": 0.45599329421626156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2916, + "time": 0.45982517063824696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7357202730211951, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4690, + "time": 0.7395521494431805, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4690, + "time": 0.7395521494431805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4714, + "time": 0.7433840258651659, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4714, + "time": 0.7433840258651659, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4714, + "time": 0.7433840258651659, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4738, + "time": 0.7472159022871513, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2942,16 +4414,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 4, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1555, - "time": 0.245240091007065, + "noteOrder": 4738, + "time": 0.7472159022871513, "position": { "x": 6, "y": 0 @@ -2965,18 +4437,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1555, - "time": 0.245240091007065, + "noteOrder": 4763, + "time": 0.7510477787091366, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2993,13 +4465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1603, - "time": 0.25290384385103576, + "noteOrder": 4763, + "time": 0.7510477787091366, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3016,13 +4488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 2, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1652, - "time": 0.26056759669500656, + "noteOrder": 4763, + "time": 0.7510477787091366, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3034,18 +4506,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 3, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1700, - "time": 0.26823134953897737, + "noteOrder": 4787, + "time": 0.7548796551311221, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3057,16 +4529,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 4, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1749, - "time": 0.2758951023829481, + "noteOrder": 4787, + "time": 0.7548796551311221, "position": { "x": 6, "y": 0 @@ -3080,18 +4552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1749, - "time": 0.2758951023829481, + "noteOrder": 4811, + "time": 0.7587115315531076, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3108,13 +4580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1797, - "time": 0.2835588552269189, + "noteOrder": 4811, + "time": 0.7587115315531076, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3126,16 +4598,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1846, - "time": 0.2912226080708897, + "noteOrder": 4811, + "time": 0.7587115315531076, "position": { "x": 8, "y": 0 @@ -3149,16 +4621,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1895, - "time": 0.2988863609148604, + "noteOrder": 4836, + "time": 0.7625434079750928, "position": { "x": 8, "y": 0 @@ -3177,13 +4649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1943, - "time": 0.3065501137588313, + "noteOrder": 4836, + "time": 0.7625434079750928, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3195,18 +4667,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2040, - "time": 0.3218776194467728, + "noteOrder": 4860, + "time": 0.7663752843970782, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3218,18 +4690,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2137, - "time": 0.3372051251347144, + "noteOrder": 4860, + "time": 0.7663752843970782, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3246,13 +4718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2186, - "time": 0.34486887797868515, + "noteOrder": 4860, + "time": 0.7663752843970782, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3269,13 +4741,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.35253263082265596, + "noteOrder": 4908, + "time": 0.774039037241049, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3287,18 +4759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2283, - "time": 0.3601963836666267, + "noteOrder": 4957, + "time": 0.7817027900850199, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3315,13 +4787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2332, - "time": 0.36786013651059746, + "noteOrder": 5006, + "time": 0.7893665429289907, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3333,18 +4805,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 2380, - "time": 0.3755238893545683, + "noteOrder": 5054, + "time": 0.7970302957729614, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3361,13 +4833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 140, "indexInLine": 2, "isSliding": false, - "noteOrder": 2429, - "time": 0.38318764219853907, + "noteOrder": 5103, + "time": 0.8046940486169323, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3384,11 +4856,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 140, "indexInLine": 3, "isSliding": false, - "noteOrder": 2478, - "time": 0.3908513950425098, + "noteOrder": 5151, + "time": 0.812357801460903, "position": { "x": 6, "y": 0 @@ -3407,11 +4879,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 140, "indexInLine": 4, "isSliding": false, - "noteOrder": 2526, - "time": 0.3985151478864806, + "noteOrder": 5200, + "time": 0.8200215543048737, "position": { "x": 2, "y": 0 @@ -3430,13 +4902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2866, - "time": 0.4521614177942761, + "noteOrder": 5249, + "time": 0.8276853071488446, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3453,13 +4925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 144, "indexInLine": 1, "isSliding": false, - "noteOrder": 2915, - "time": 0.45982517063824685, + "noteOrder": 5249, + "time": 0.8276853071488446, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3471,18 +4943,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2890, - "time": 0.45599329421626145, + "noteOrder": 5273, + "time": 0.8315171835708299, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3499,13 +4971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2915, - "time": 0.45982517063824685, + "noteOrder": 5273, + "time": 0.8315171835708299, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3522,13 +4994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4664, - "time": 0.7357202730211949, + "noteOrder": 5297, + "time": 0.8353490599928153, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3545,13 +5017,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4712, - "time": 0.7433840258651657, + "noteOrder": 5297, + "time": 0.8353490599928153, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3563,16 +5035,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4761, - "time": 0.7510477787091366, + "noteOrder": 5297, + "time": 0.8353490599928153, "position": { "x": 8, "y": 0 @@ -3586,16 +5058,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4809, - "time": 0.7587115315531073, + "noteOrder": 5322, + "time": 0.8391809364148006, "position": { "x": 8, "y": 0 @@ -3614,13 +5086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4858, - "time": 0.7663752843970781, + "noteOrder": 5322, + "time": 0.8391809364148006, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3632,18 +5104,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4906, - "time": 0.7740390372410489, + "noteOrder": 5346, + "time": 0.8430128128367861, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3655,18 +5127,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 2, + "lineGroupId": 145, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4955, - "time": 0.7817027900850196, + "noteOrder": 5346, + "time": 0.8430128128367861, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3678,18 +5150,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 3, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5004, - "time": 0.7893665429289904, + "noteOrder": 5443, + "time": 0.8583403185247277, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3706,13 +5178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5052, - "time": 0.7970302957729613, + "noteOrder": 5540, + "time": 0.8736678242126692, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3724,16 +5196,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 5101, - "time": 0.8046940486169321, + "noteOrder": 5637, + "time": 0.8889953299006108, "position": { "x": 2, "y": 0 @@ -3752,13 +5224,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 156, "indexInLine": 2, "isSliding": false, - "noteOrder": 5149, - "time": 0.8123578014609029, + "noteOrder": 5662, + "time": 0.8928272063225963, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3775,13 +5247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 156, "indexInLine": 3, "isSliding": false, - "noteOrder": 5198, - "time": 0.8200215543048736, + "noteOrder": 5662, + "time": 0.8928272063225963, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3798,13 +5270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 156, "indexInLine": 4, "isSliding": false, - "noteOrder": 5247, - "time": 0.8276853071488444, + "noteOrder": 5686, + "time": 0.8966590827445815, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3821,13 +5293,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5247, - "time": 0.8276853071488444, + "noteOrder": 5686, + "time": 0.8966590827445815, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3839,18 +5311,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, - "time": 0.8353490599928151, + "noteOrder": 5686, + "time": 0.8966590827445815, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3862,18 +5334,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5441, - "time": 0.8583403185247275, + "noteOrder": 5710, + "time": 0.900490959166567, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3890,11 +5362,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5538, - "time": 0.873667824212669, + "noteOrder": 5710, + "time": 0.900490959166567, "position": { "x": 4, "y": 0 @@ -3913,13 +5385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5635, - "time": 0.8889953299006107, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3931,18 +5403,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5684, - "time": 0.8966590827445814, + "noteOrder": 5735, + "time": 0.9043228355885524, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3960,10 +5432,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5829, - "time": 0.9196503412764937, + "noteOrder": 5832, + "time": 0.9196503412764939, "position": { "x": 2, "y": 0 @@ -3983,10 +5455,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5878, - "time": 0.9273140941204646, + "noteOrder": 5880, + "time": 0.9273140941204647, "position": { "x": 6, "y": 0 @@ -4006,10 +5478,10 @@ }, { "lineGroupId": 162, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5927, - "time": 0.9349778469644353, + "noteOrder": 5929, + "time": 0.9349778469644355, "position": { "x": 3, "y": 0 @@ -4029,10 +5501,10 @@ }, { "lineGroupId": 162, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5975, - "time": 0.9426415998084061, + "noteOrder": 5978, + "time": 0.9426415998084062, "position": { "x": 6, "y": 0 @@ -4052,10 +5524,10 @@ }, { "lineGroupId": 162, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6024, - "time": 0.9503053526523769, + "noteOrder": 6026, + "time": 0.950305352652377, "position": { "x": 2, "y": 0 diff --git a/tracks/Sakura Reflection (STARDOM Remix)/info.json b/tracks/Sakura Reflection (STARDOM Remix)/info.json index ed8ee3f1..c20b9da9 100644 --- a/tracks/Sakura Reflection (STARDOM Remix)/info.json +++ b/tracks/Sakura Reflection (STARDOM Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Sakura Reflection (STARDOM Remix)", - "SongLength": "128.261224", + "SongLength": "118.308571", "SongAuthorName": "\u304b\u3081\u308a\u3042", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1a.json b/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1a.json index 92d5ee18..e77cda72 100644 --- a/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1a.json +++ b/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.01644736842105263, + "time": 0.016447368421052634, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.019736842105263157, + "time": 0.01973684210526316, "position": { "x": 5, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 217, "time": 0.02960526315789474, "position": { "x": 4, @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 240, - "time": 0.03289473684210526, + "noteOrder": 241, + "time": 0.03289473684210527, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 361, - "time": 0.049342105263157895, + "time": 0.0493421052631579, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 457, - "time": 0.0625, + "time": 0.06250000000000001, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 649, - "time": 0.08881578947368421, + "noteOrder": 650, + "time": 0.08881578947368422, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 697, - "time": 0.09539473684210525, + "noteOrder": 698, + "time": 0.09539473684210527, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 890, - "time": 0.12171052631578948, + "time": 0.12171052631578949, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 914, - "time": 0.125, + "time": 0.12500000000000003, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 986, - "time": 0.13486842105263158, + "time": 0.1348684210526316, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1010, - "time": 0.1381578947368421, + "time": 0.13815789473684212, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1035, "time": 0.14144736842105265, "position": { "x": 6, @@ -454,7 +454,7 @@ }, { "noteOrder": 1371, - "time": 0.1875, + "time": 0.18750000000000003, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1395, - "time": 0.1907894736842105, + "time": 0.19078947368421054, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1419, - "time": 0.19407894736842107, + "time": 0.19407894736842105, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1563, - "time": 0.21381578947368424, + "noteOrder": 1564, + "time": 0.2138157894736842, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.21710526315789475, "position": { "x": 5, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1611, - "time": 0.22039473684210525, + "noteOrder": 1612, + "time": 0.22039473684210528, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1756, - "time": 0.24013157894736842, + "time": 0.24013157894736845, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2020, - "time": 0.2763157894736842, + "noteOrder": 2021, + "time": 0.27631578947368424, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2092, + "noteOrder": 2093, "time": 0.2861842105263158, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.29934210526315785, + "noteOrder": 2189, + "time": 0.2993421052631579, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2261, + "noteOrder": 2262, "time": 0.3092105263157895, "position": { "x": 8, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2273, - "time": 0.31085526315789475, + "noteOrder": 2274, + "time": 0.3108552631578948, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2285, - "time": 0.3125, + "noteOrder": 2286, + "time": 0.31250000000000006, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.3141447368421053, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2381, + "noteOrder": 2382, "time": 0.32565789473684215, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2429, + "noteOrder": 2430, "time": 0.33223684210526316, "position": { "x": 8, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2453, - "time": 0.3355263157894737, + "noteOrder": 2454, + "time": 0.33552631578947373, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2477, - "time": 0.3388157894736842, + "noteOrder": 2478, + "time": 0.33881578947368424, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2525, - "time": 0.3453947368421053, + "noteOrder": 2526, + "time": 0.34539473684210525, "position": { "x": 2, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.3486842105263158, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2573, + "noteOrder": 2574, "time": 0.3519736842105263, "position": { "x": 5, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.35855263157894735, + "noteOrder": 2622, + "time": 0.3585526315789474, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.36184210526315785, + "noteOrder": 2646, + "time": 0.36184210526315796, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2671, "time": 0.3651315789473685, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 2695, "time": 0.368421052631579, "position": { "x": 2, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2706, - "time": 0.3700657894736842, + "noteOrder": 2707, + "time": 0.37006578947368424, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.3717105263157895, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2730, + "noteOrder": 2731, "time": 0.37335526315789475, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.375, + "noteOrder": 2743, + "time": 0.37500000000000006, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2754, + "noteOrder": 2755, "time": 0.3766447368421053, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2766, - "time": 0.3782894736842105, + "noteOrder": 2767, + "time": 0.37828947368421056, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2814, - "time": 0.38486842105263164, + "noteOrder": 2815, + "time": 0.3848684210526316, "position": { "x": 8, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2862, + "noteOrder": 2863, "time": 0.39144736842105265, "position": { "x": 8, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3006, + "noteOrder": 3007, "time": 0.4111842105263158, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3030, + "noteOrder": 3031, "time": 0.4144736842105263, "position": { "x": 8, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3054, - "time": 0.41776315789473684, + "noteOrder": 3055, + "time": 0.4177631578947369, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3078, - "time": 0.42105263157894735, + "noteOrder": 3080, + "time": 0.4210526315789474, "position": { "x": 7, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3102, - "time": 0.42434210526315785, + "noteOrder": 3104, + "time": 0.4243421052631579, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3126, - "time": 0.4276315789473685, + "noteOrder": 3128, + "time": 0.4276315789473684, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3152, "time": 0.430921052631579, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3199, - "time": 0.4375, + "noteOrder": 3200, + "time": 0.43750000000000006, "position": { "x": 2, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3247, - "time": 0.444078947368421, + "noteOrder": 3248, + "time": 0.44407894736842113, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3367, - "time": 0.4605263157894737, + "noteOrder": 3368, + "time": 0.46052631578947373, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3379, + "noteOrder": 3380, "time": 0.462171052631579, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.4638157894736842, + "noteOrder": 3392, + "time": 0.46381578947368424, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3403, + "noteOrder": 3404, "time": 0.4654605263157895, "position": { "x": 8, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3415, + "noteOrder": 3416, "time": 0.46710526315789475, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3427, + "noteOrder": 3428, "time": 0.46875, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3439, + "noteOrder": 3440, "time": 0.4703947368421053, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3451, - "time": 0.4720394736842105, + "noteOrder": 3452, + "time": 0.47203947368421056, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3559, - "time": 0.4868421052631579, + "noteOrder": 3561, + "time": 0.48684210526315796, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3571, - "time": 0.48848684210526316, + "noteOrder": 3573, + "time": 0.4884868421052632, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.4901315789473685, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3607, + "noteOrder": 3609, "time": 0.493421052631579, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.4950657894736842, + "noteOrder": 3621, + "time": 0.49506578947368424, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3631, + "noteOrder": 3633, "time": 0.4967105263157895, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.5, + "noteOrder": 3657, + "time": 0.5000000000000001, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3668, + "noteOrder": 3669, "time": 0.5016447368421053, "position": { "x": 7, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.5032894736842105, + "noteOrder": 3681, + "time": 0.5032894736842106, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3692, + "noteOrder": 3693, "time": 0.5049342105263158, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.506578947368421, + "noteOrder": 3705, + "time": 0.5065789473684211, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3717, "time": 0.5082236842105263, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3728, + "noteOrder": 3729, "time": 0.5098684210526316, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3752, + "noteOrder": 3753, "time": 0.5131578947368421, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3764, - "time": 0.5148026315789473, + "noteOrder": 3765, + "time": 0.5148026315789475, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.5164473684210527, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3801, "time": 0.5197368421052632, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3813, "time": 0.5213815789473685, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3825, "time": 0.5230263157894737, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3848, - "time": 0.5263157894736842, + "noteOrder": 3849, + "time": 0.5263157894736843, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3860, + "noteOrder": 3861, "time": 0.5279605263157895, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3872, + "noteOrder": 3873, "time": 0.5296052631578948, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3884, + "noteOrder": 3885, "time": 0.53125, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3896, + "noteOrder": 3898, "time": 0.5328947368421053, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3908, - "time": 0.5345394736842105, + "noteOrder": 3910, + "time": 0.5345394736842106, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3920, - "time": 0.5361842105263157, + "noteOrder": 3922, + "time": 0.5361842105263158, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3944, - "time": 0.5394736842105263, + "noteOrder": 3946, + "time": 0.5394736842105264, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3956, - "time": 0.5411184210526315, + "noteOrder": 3958, + "time": 0.5411184210526316, "position": { "x": 6, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3968, + "noteOrder": 3970, "time": 0.542763157894737, "position": { "x": 7, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3992, - "time": 0.5460526315789473, + "noteOrder": 3994, + "time": 0.5460526315789475, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4004, - "time": 0.5476973684210525, + "noteOrder": 4006, + "time": 0.5476973684210527, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4016, + "noteOrder": 4018, "time": 0.549342105263158, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.5526315789473684, + "noteOrder": 4042, + "time": 0.5526315789473685, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4052, - "time": 0.5542763157894738, + "noteOrder": 4054, + "time": 0.5542763157894737, "position": { "x": 6, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4064, + "noteOrder": 4066, "time": 0.555921052631579, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4076, + "noteOrder": 4078, "time": 0.5575657894736842, "position": { "x": 5, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4088, - "time": 0.5592105263157894, + "noteOrder": 4090, + "time": 0.5592105263157896, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4100, + "noteOrder": 4102, "time": 0.5608552631578948, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.5625, + "noteOrder": 4114, + "time": 0.5625000000000001, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4136, + "noteOrder": 4138, "time": 0.5657894736842106, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4149, + "noteOrder": 4150, "time": 0.5674342105263158, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4161, - "time": 0.569078947368421, + "noteOrder": 4162, + "time": 0.5690789473684211, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4186, "time": 0.5723684210526316, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4197, + "noteOrder": 4198, "time": 0.5740131578947368, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4209, - "time": 0.575657894736842, + "noteOrder": 4210, + "time": 0.5756578947368421, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4329, - "time": 0.5921052631578947, + "noteOrder": 4331, + "time": 0.5921052631578948, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4353, + "noteOrder": 4355, "time": 0.5953947368421053, "position": { "x": 6, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4377, - "time": 0.5986842105263157, + "noteOrder": 4379, + "time": 0.5986842105263158, "position": { "x": 7, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4401, + "noteOrder": 4403, "time": 0.6019736842105263, "position": { "x": 6, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4425, - "time": 0.605263157894737, + "noteOrder": 4427, + "time": 0.6052631578947368, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4449, + "noteOrder": 4451, "time": 0.6085526315789473, "position": { "x": 4, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4473, - "time": 0.611842105263158, + "noteOrder": 4475, + "time": 0.6118421052631579, "position": { "x": 5, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4497, - "time": 0.6151315789473684, + "noteOrder": 4499, + "time": 0.6151315789473685, "position": { "x": 6, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4521, + "noteOrder": 4523, "time": 0.618421052631579, "position": { "x": 7, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4545, - "time": 0.6217105263157895, + "noteOrder": 4547, + "time": 0.6217105263157896, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4569, - "time": 0.625, + "noteOrder": 4571, + "time": 0.6250000000000001, "position": { "x": 7, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4593, + "noteOrder": 4595, "time": 0.6282894736842106, "position": { "x": 4, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4738, - "time": 0.6480263157894737, + "noteOrder": 4740, + "time": 0.6480263157894738, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.6513157894736843, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4786, - "time": 0.6546052631578947, + "noteOrder": 4788, + "time": 0.6546052631578948, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.6611842105263157, + "noteOrder": 4836, + "time": 0.6611842105263158, "position": { "x": 5, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.6644736842105263, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 4884, "time": 0.667763157894737, "position": { "x": 3, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5219, + "noteOrder": 5221, "time": 0.7138157894736843, "position": { "x": 7, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5267, + "noteOrder": 5269, "time": 0.7203947368421053, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5363, - "time": 0.7335526315789473, + "noteOrder": 5365, + "time": 0.7335526315789475, "position": { "x": 3, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5483, - "time": 0.75, + "noteOrder": 5485, + "time": 0.7500000000000001, "position": { "x": 4, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5603, + "noteOrder": 5606, "time": 0.7664473684210527, "position": { "x": 6, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5628, - "time": 0.7697368421052633, + "noteOrder": 5630, + "time": 0.7697368421052632, "position": { "x": 5, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5652, + "noteOrder": 5654, "time": 0.7730263157894737, "position": { "x": 4, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5796, + "noteOrder": 5798, "time": 0.792763157894737, "position": { "x": 4, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5820, - "time": 0.7960526315789473, + "noteOrder": 5822, + "time": 0.7960526315789475, "position": { "x": 5, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5844, + "noteOrder": 5846, "time": 0.799342105263158, "position": { "x": 6, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5940, - "time": 0.8125, + "noteOrder": 5943, + "time": 0.8125000000000001, "position": { "x": 4, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6036, - "time": 0.825657894736842, + "noteOrder": 6039, + "time": 0.8256578947368421, "position": { "x": 6, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6253, - "time": 0.855263157894737, + "noteOrder": 6255, + "time": 0.8552631578947368, "position": { "x": 4, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6277, - "time": 0.8585526315789473, + "noteOrder": 6279, + "time": 0.8585526315789475, "position": { "x": 8, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6325, - "time": 0.8651315789473684, + "noteOrder": 6327, + "time": 0.8651315789473685, "position": { "x": 8, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6469, + "noteOrder": 6472, "time": 0.8848684210526316, "position": { "x": 5, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6493, - "time": 0.888157894736842, + "noteOrder": 6496, + "time": 0.8881578947368423, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6517, - "time": 0.8914473684210527, + "noteOrder": 6520, + "time": 0.8914473684210528, "position": { "x": 3, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6662, - "time": 0.9111842105263157, + "noteOrder": 6664, + "time": 0.9111842105263158, "position": { "x": 2, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6710, + "noteOrder": 6712, "time": 0.917763157894737, "position": { "x": 2, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6854, + "noteOrder": 6857, "time": 0.9375, "position": { "x": 5, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6878, + "noteOrder": 6881, "time": 0.9407894736842106, "position": { "x": 3, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6902, - "time": 0.944078947368421, + "noteOrder": 6905, + "time": 0.9440789473684211, "position": { "x": 7, "y": 0 @@ -3196,10 +3196,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.013157894736842105, + "time": 0.013157894736842106, "position": { "x": 8, "y": 0 @@ -3219,10 +3219,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, - "time": 0.01644736842105263, + "time": 0.016447368421052634, "position": { "x": 8, "y": 0 @@ -3242,7 +3242,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 168, "time": 0.023026315789473686, @@ -3265,10 +3265,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02631578947368421, + "time": 0.026315789473684213, "position": { "x": 2, "y": 0 @@ -3288,9 +3288,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 216, + "noteOrder": 217, "time": 0.02960526315789474, "position": { "x": 2, @@ -3311,7 +3311,7 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 265, "time": 0.03618421052631579, @@ -3334,10 +3334,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.039473684210526314, + "time": 0.03947368421052632, "position": { "x": 6, "y": 0 @@ -3357,7 +3357,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 313, "time": 0.04276315789473684, @@ -3380,7 +3380,7 @@ }, { "lineGroupId": 9, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 337, "time": 0.04605263157894737, @@ -3403,10 +3403,10 @@ }, { "lineGroupId": 9, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 361, - "time": 0.049342105263157895, + "time": 0.0493421052631579, "position": { "x": 7, "y": 0 @@ -3426,10 +3426,10 @@ }, { "lineGroupId": 9, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 385, - "time": 0.05263157894736842, + "time": 0.052631578947368425, "position": { "x": 6, "y": 0 @@ -3449,10 +3449,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, - "time": 0.05263157894736842, + "time": 0.052631578947368425, "position": { "x": 4, "y": 0 @@ -3472,7 +3472,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, "time": 0.055921052631578955, @@ -3495,7 +3495,7 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 433, "time": 0.05921052631578948, @@ -3518,10 +3518,10 @@ }, { "lineGroupId": 13, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 457, - "time": 0.0625, + "time": 0.06250000000000001, "position": { "x": 3, "y": 0 @@ -3541,10 +3541,10 @@ }, { "lineGroupId": 13, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 481, - "time": 0.06578947368421052, + "time": 0.06578947368421054, "position": { "x": 4, "y": 0 @@ -3564,10 +3564,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.06578947368421052, + "time": 0.06578947368421054, "position": { "x": 7, "y": 0 @@ -3587,10 +3587,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, - "time": 0.06907894736842105, + "time": 0.06907894736842106, "position": { "x": 7, "y": 0 @@ -3610,10 +3610,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 505, - "time": 0.06907894736842105, + "time": 0.06907894736842106, "position": { "x": 3, "y": 0 @@ -3633,7 +3633,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.07236842105263158, @@ -3656,7 +3656,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.07236842105263158, @@ -3679,10 +3679,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, - "time": 0.07565789473684212, + "time": 0.0756578947368421, "position": { "x": 7, "y": 0 @@ -3702,10 +3702,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 553, - "time": 0.07565789473684212, + "time": 0.0756578947368421, "position": { "x": 3, "y": 0 @@ -3725,10 +3725,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.07894736842105263, + "time": 0.07894736842105264, "position": { "x": 3, "y": 0 @@ -3748,10 +3748,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.07894736842105263, + "time": 0.07894736842105264, "position": { "x": 6, "y": 0 @@ -3771,9 +3771,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 625, + "noteOrder": 626, "time": 0.08552631578947369, "position": { "x": 6, @@ -3794,9 +3794,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 625, + "noteOrder": 626, "time": 0.08552631578947369, "position": { "x": 4, @@ -3817,9 +3817,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 673, + "noteOrder": 674, "time": 0.09210526315789475, "position": { "x": 4, @@ -3840,9 +3840,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, + "noteOrder": 674, "time": 0.09210526315789475, "position": { "x": 6, @@ -3863,10 +3863,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 721, - "time": 0.09868421052631579, + "noteOrder": 722, + "time": 0.0986842105263158, "position": { "x": 6, "y": 0 @@ -3886,10 +3886,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, - "time": 0.09868421052631579, + "noteOrder": 722, + "time": 0.0986842105263158, "position": { "x": 4, "y": 0 @@ -3909,10 +3909,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 770, - "time": 0.10526315789473684, + "time": 0.10526315789473685, "position": { "x": 4, "y": 0 @@ -3932,10 +3932,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 770, - "time": 0.10526315789473684, + "time": 0.10526315789473685, "position": { "x": 7, "y": 0 @@ -3954,13 +3954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 794, - "time": 0.10855263157894737, + "noteOrder": 782, + "time": 0.1069078947368421, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3972,18 +3972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 818, - "time": 0.11184210526315791, + "noteOrder": 782, + "time": 0.1069078947368421, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4000,11 +4000,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 842, - "time": 0.11513157894736842, + "noteOrder": 794, + "time": 0.10855263157894737, "position": { "x": 3, "y": 0 @@ -4023,13 +4023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 866, - "time": 0.11842105263157895, + "noteOrder": 806, + "time": 0.11019736842105264, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4041,18 +4041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 890, - "time": 0.12171052631578948, + "noteOrder": 806, + "time": 0.11019736842105264, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4064,18 +4064,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 938, - "time": 0.12828947368421054, + "noteOrder": 818, + "time": 0.11184210526315791, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4092,13 +4092,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 962, - "time": 0.13157894736842105, + "noteOrder": 830, + "time": 0.11348684210526316, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4110,18 +4110,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 986, - "time": 0.13486842105263158, + "noteOrder": 830, + "time": 0.11348684210526316, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4133,18 +4133,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 2, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1034, - "time": 0.14144736842105265, + "noteOrder": 842, + "time": 0.11513157894736843, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4161,13 +4161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1058, - "time": 0.14473684210526316, + "noteOrder": 854, + "time": 0.11677631578947369, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4179,18 +4179,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1082, - "time": 0.14802631578947367, + "noteOrder": 854, + "time": 0.11677631578947369, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4207,13 +4207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1106, - "time": 0.15131578947368424, + "noteOrder": 866, + "time": 0.11842105263157895, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4230,13 +4230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1130, - "time": 0.15460526315789475, + "noteOrder": 890, + "time": 0.12171052631578949, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4248,18 +4248,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1251, - "time": 0.17105263157894737, + "noteOrder": 938, + "time": 0.12828947368421054, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4276,13 +4276,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1275, - "time": 0.1743421052631579, + "noteOrder": 962, + "time": 0.13157894736842107, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4299,13 +4299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1299, - "time": 0.17763157894736842, + "noteOrder": 986, + "time": 0.1348684210526316, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4317,18 +4317,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1323, - "time": 0.18092105263157893, + "noteOrder": 1035, + "time": 0.14144736842105265, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4345,13 +4345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1347, - "time": 0.1842105263157895, + "noteOrder": 1059, + "time": 0.14473684210526316, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4368,13 +4368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1371, - "time": 0.1875, + "noteOrder": 1071, + "time": 0.14638157894736842, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4391,13 +4391,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1419, - "time": 0.19407894736842107, + "noteOrder": 1071, + "time": 0.14638157894736842, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4414,13 +4414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1443, - "time": 0.19736842105263158, + "noteOrder": 1083, + "time": 0.1480263157894737, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4437,13 +4437,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1467, - "time": 0.2006578947368421, + "noteOrder": 1095, + "time": 0.14967105263157895, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4455,18 +4455,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1491, - "time": 0.20394736842105265, + "noteOrder": 1095, + "time": 0.14967105263157895, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4483,13 +4483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1515, - "time": 0.20723684210526316, + "noteOrder": 1107, + "time": 0.1513157894736842, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4506,13 +4506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1539, - "time": 0.21052631578947367, + "noteOrder": 1119, + "time": 0.15296052631578946, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4524,18 +4524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1563, - "time": 0.21381578947368424, + "noteOrder": 1119, + "time": 0.15296052631578946, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4547,18 +4547,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1611, - "time": 0.22039473684210525, + "noteOrder": 1131, + "time": 0.15460526315789475, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4575,13 +4575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.22368421052631582, + "noteOrder": 1143, + "time": 0.15625000000000003, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4593,18 +4593,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1659, - "time": 0.22697368421052633, + "noteOrder": 1143, + "time": 0.15625000000000003, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4621,13 +4621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1683, - "time": 0.23026315789473684, + "noteOrder": 1251, + "time": 0.17105263157894737, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4644,13 +4644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1708, - "time": 0.23355263157894737, + "noteOrder": 1263, + "time": 0.17269736842105263, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4662,16 +4662,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1732, - "time": 0.2368421052631579, + "noteOrder": 1263, + "time": 0.17269736842105263, "position": { "x": 6, "y": 0 @@ -4690,11 +4690,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1780, - "time": 0.24342105263157895, + "noteOrder": 1275, + "time": 0.1743421052631579, "position": { "x": 6, "y": 0 @@ -4713,13 +4713,36 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1780, - "time": 0.24342105263157895, + "noteOrder": 1275, + "time": 0.1743421052631579, "position": { - "x": 4, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1275, + "time": 0.1743421052631579, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -4736,13 +4759,6016 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1287, + "time": 0.17598684210526316, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1287, + "time": 0.17598684210526316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1299, + "time": 0.17763157894736845, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1299, + "time": 0.17763157894736845, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 1828, - "time": 0.25, + "noteOrder": 1299, + "time": 0.17763157894736845, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1311, + "time": 0.1792763157894737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1311, + "time": 0.1792763157894737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1323, + "time": 0.18092105263157898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1323, + "time": 0.18092105263157898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1323, + "time": 0.18092105263157898, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1335, + "time": 0.18256578947368424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1335, + "time": 0.18256578947368424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1347, + "time": 0.1842105263157895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1347, + "time": 0.1842105263157895, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1347, + "time": 0.1842105263157895, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1371, + "time": 0.18750000000000003, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1419, + "time": 0.19407894736842105, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1444, + "time": 0.1973684210526316, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1456, + "time": 0.19901315789473686, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1456, + "time": 0.19901315789473686, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1468, + "time": 0.20065789473684212, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1468, + "time": 0.20065789473684212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1468, + "time": 0.20065789473684212, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2023026315789474, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2023026315789474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1492, + "time": 0.20394736842105265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1492, + "time": 0.20394736842105265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.20394736842105265, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2055921052631579, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1504, + "time": 0.2055921052631579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1516, + "time": 0.20723684210526316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1516, + "time": 0.20723684210526316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1516, + "time": 0.20723684210526316, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1528, + "time": 0.20888157894736845, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1528, + "time": 0.20888157894736845, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1540, + "time": 0.2105263157894737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1540, + "time": 0.2105263157894737, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1540, + "time": 0.2105263157894737, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1564, + "time": 0.2138157894736842, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1612, + "time": 0.22039473684210528, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1636, + "time": 0.22368421052631582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1648, + "time": 0.22532894736842107, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1648, + "time": 0.22532894736842107, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1660, + "time": 0.22697368421052633, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1672, + "time": 0.2286184210526316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1672, + "time": 0.2286184210526316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1684, + "time": 0.23026315789473686, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1696, + "time": 0.23190789473684212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1696, + "time": 0.23190789473684212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1708, + "time": 0.23355263157894737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1720, + "time": 0.23519736842105265, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1720, + "time": 0.23519736842105265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.2368421052631579, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1780, + "time": 0.24342105263157898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1780, + "time": 0.24342105263157898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1828, + "time": 0.25000000000000006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.25000000000000006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1840, + "time": 0.2516447368421053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1840, + "time": 0.2516447368421053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1853, + "time": 0.25328947368421056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1865, + "time": 0.2549342105263158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1865, + "time": 0.2549342105263158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1877, + "time": 0.2565789473684211, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1889, + "time": 0.2582236842105263, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1889, + "time": 0.2582236842105263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1901, + "time": 0.2598684210526316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1913, + "time": 0.26151315789473684, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1913, + "time": 0.26151315789473684, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2021, + "time": 0.27631578947368424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2033, + "time": 0.2779605263157895, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2033, + "time": 0.2779605263157895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2045, + "time": 0.2796052631578948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2045, + "time": 0.2796052631578948, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2045, + "time": 0.2796052631578948, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2057, + "time": 0.28125000000000006, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2057, + "time": 0.28125000000000006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2069, + "time": 0.2828947368421053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2069, + "time": 0.2828947368421053, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2069, + "time": 0.2828947368421053, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2093, + "time": 0.2861842105263158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2117, + "time": 0.2894736842105263, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2129, + "time": 0.2911184210526316, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2129, + "time": 0.2911184210526316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2141, + "time": 0.29276315789473684, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2141, + "time": 0.29276315789473684, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2141, + "time": 0.29276315789473684, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2153, + "time": 0.29440789473684215, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2153, + "time": 0.29440789473684215, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2165, + "time": 0.2960526315789474, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2165, + "time": 0.2960526315789474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2165, + "time": 0.2960526315789474, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2189, + "time": 0.2993421052631579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3026315789473684, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2225, + "time": 0.3042763157894737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2225, + "time": 0.3042763157894737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3059210526315789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3059210526315789, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3059210526315789, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2249, + "time": 0.30756578947368424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2249, + "time": 0.30756578947368424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2262, + "time": 0.3092105263157895, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2262, + "time": 0.3092105263157895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2310, + "time": 0.31578947368421056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2322, + "time": 0.3174342105263158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2322, + "time": 0.3174342105263158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2334, + "time": 0.3190789473684211, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2346, + "time": 0.3207236842105264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2346, + "time": 0.3207236842105264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2358, + "time": 0.32236842105263164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2370, + "time": 0.3240131578947369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2370, + "time": 0.3240131578947369, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2406, + "time": 0.32894736842105265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2430, + "time": 0.33223684210526316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2454, + "time": 0.33552631578947373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2478, + "time": 0.33881578947368424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2502, + "time": 0.34210526315789475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2526, + "time": 0.34539473684210525, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2550, + "time": 0.3486842105263158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2574, + "time": 0.3519736842105263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.3552631578947369, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2622, + "time": 0.3585526315789474, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2671, + "time": 0.3651315789473685, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2791, + "time": 0.3815789473684211, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3832236842105263, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2803, + "time": 0.3832236842105263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2815, + "time": 0.3848684210526316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2815, + "time": 0.3848684210526316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2839, + "time": 0.3881578947368421, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2851, + "time": 0.3898026315789474, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2851, + "time": 0.3898026315789474, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2863, + "time": 0.39144736842105265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2863, + "time": 0.39144736842105265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2887, + "time": 0.3947368421052632, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2899, + "time": 0.3963815789473685, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2899, + "time": 0.3963815789473685, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2911, + "time": 0.39802631578947373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2911, + "time": 0.39802631578947373, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2911, + "time": 0.39802631578947373, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2923, + "time": 0.399671052631579, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2923, + "time": 0.399671052631579, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2935, + "time": 0.40131578947368424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2935, + "time": 0.40131578947368424, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2935, + "time": 0.40131578947368424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2947, + "time": 0.40296052631578955, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2947, + "time": 0.40296052631578955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2959, + "time": 0.4046052631578948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2959, + "time": 0.4046052631578948, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2959, + "time": 0.4046052631578948, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2971, + "time": 0.40625000000000006, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2971, + "time": 0.40625000000000006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2983, + "time": 0.4078947368421053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2983, + "time": 0.4078947368421053, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2983, + "time": 0.4078947368421053, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3007, + "time": 0.4111842105263158, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3152, + "time": 0.430921052631579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3176, + "time": 0.4342105263157895, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3188, + "time": 0.4358552631578948, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3188, + "time": 0.4358552631578948, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3200, + "time": 0.43750000000000006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3200, + "time": 0.43750000000000006, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3224, + "time": 0.44078947368421056, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3236, + "time": 0.4424342105263158, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3236, + "time": 0.4424342105263158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3248, + "time": 0.44407894736842113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3248, + "time": 0.44407894736842113, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3272, + "time": 0.44736842105263164, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3284, + "time": 0.4490131578947369, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3284, + "time": 0.4490131578947369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3296, + "time": 0.45065789473684215, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3296, + "time": 0.45065789473684215, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3296, + "time": 0.45065789473684215, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3308, + "time": 0.4523026315789474, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3308, + "time": 0.4523026315789474, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3320, + "time": 0.45394736842105265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3320, + "time": 0.45394736842105265, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3320, + "time": 0.45394736842105265, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3332, + "time": 0.4555921052631579, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3332, + "time": 0.4555921052631579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3344, + "time": 0.4572368421052632, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3344, + "time": 0.4572368421052632, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3344, + "time": 0.4572368421052632, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3356, + "time": 0.4588815789473685, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3356, + "time": 0.4588815789473685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3368, + "time": 0.46052631578947373, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3368, + "time": 0.46052631578947373, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4331, + "time": 0.5921052631578948, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4355, + "time": 0.5953947368421053, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4427, + "time": 0.6052631578947368, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4523, + "time": 0.618421052631579, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4595, + "time": 0.6282894736842106, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4716, + "time": 0.6447368421052633, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4788, + "time": 0.6546052631578948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4812, + "time": 0.6578947368421053, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4884, + "time": 0.667763157894737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4908, + "time": 0.6710526315789475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6726973684210528, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 240, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6726973684210528, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4932, + "time": 0.674342105263158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4944, + "time": 0.6759868421052633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4944, + "time": 0.6759868421052633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4956, + "time": 0.6776315789473685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6792763157894738, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4968, + "time": 0.6792763157894738, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4980, + "time": 0.680921052631579, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4992, + "time": 0.6825657894736843, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4992, + "time": 0.6825657894736843, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5100, + "time": 0.6973684210526316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 249, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5125, + "time": 0.7006578947368421, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5125, + "time": 0.7006578947368421, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 251, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5149, + "time": 0.7039473684210527, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5149, + "time": 0.7039473684210527, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5173, + "time": 0.7072368421052633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5173, + "time": 0.7072368421052633, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5197, + "time": 0.7105263157894738, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 256, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5197, + "time": 0.7105263157894738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 256, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5245, + "time": 0.7171052631578948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5245, + "time": 0.7171052631578948, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 258, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5293, + "time": 0.7236842105263159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 261, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5293, + "time": 0.7236842105263159, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 261, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5317, + "time": 0.7269736842105264, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5317, + "time": 0.7269736842105264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5341, + "time": 0.730263157894737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5341, + "time": 0.730263157894737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5365, + "time": 0.7335526315789475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5485, + "time": 0.7500000000000001, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5497, + "time": 0.7516447368421054, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5497, + "time": 0.7516447368421054, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5509, + "time": 0.7532894736842106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5509, + "time": 0.7532894736842106, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5509, + "time": 0.7532894736842106, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5521, + "time": 0.7549342105263159, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5521, + "time": 0.7549342105263159, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5534, + "time": 0.7565789473684211, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 274, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5534, + "time": 0.7565789473684211, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 275, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5534, + "time": 0.7565789473684211, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 275, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5546, + "time": 0.7582236842105264, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 275, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5546, + "time": 0.7582236842105264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 275, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5558, + "time": 0.7598684210526316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 275, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5558, + "time": 0.7598684210526316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5558, + "time": 0.7598684210526316, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5570, + "time": 0.761513157894737, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5570, + "time": 0.761513157894737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5582, + "time": 0.7631578947368421, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 276, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5582, + "time": 0.7631578947368421, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 277, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5582, + "time": 0.7631578947368421, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 277, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5606, + "time": 0.7664473684210527, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 277, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5654, + "time": 0.7730263157894737, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5678, + "time": 0.7763157894736842, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5690, + "time": 0.7779605263157896, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5690, + "time": 0.7779605263157896, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5702, + "time": 0.7796052631578948, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5702, + "time": 0.7796052631578948, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5702, + "time": 0.7796052631578948, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5714, + "time": 0.7812500000000001, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5714, + "time": 0.7812500000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5726, + "time": 0.7828947368421053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5726, + "time": 0.7828947368421053, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 283, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5726, + "time": 0.7828947368421053, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 283, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5738, + "time": 0.7845394736842106, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 283, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5738, + "time": 0.7845394736842106, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 283, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5750, + "time": 0.7861842105263158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 283, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5750, + "time": 0.7861842105263158, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4759,13 +10785,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1828, - "time": 0.25, + "noteOrder": 5750, + "time": 0.7861842105263158, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4782,13 +10808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1852, - "time": 0.2532894736842105, + "noteOrder": 5762, + "time": 0.7878289473684211, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4800,18 +10826,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1876, - "time": 0.2565789473684211, + "noteOrder": 5762, + "time": 0.7878289473684211, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4828,13 +10854,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1900, - "time": 0.2598684210526316, + "noteOrder": 5774, + "time": 0.7894736842105264, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4846,18 +10872,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2020, - "time": 0.2763157894736842, + "noteOrder": 5774, + "time": 0.7894736842105264, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4874,13 +10900,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2044, - "time": 0.2796052631578947, + "noteOrder": 5774, + "time": 0.7894736842105264, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4897,13 +10923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2068, - "time": 0.2828947368421053, + "noteOrder": 5798, + "time": 0.792763157894737, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4915,18 +10941,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2092, - "time": 0.2861842105263158, + "noteOrder": 5846, + "time": 0.799342105263158, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4938,18 +10964,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2116, - "time": 0.2894736842105263, + "noteOrder": 5870, + "time": 0.8026315789473685, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4961,18 +10987,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2140, - "time": 0.29276315789473684, + "noteOrder": 5882, + "time": 0.8042763157894738, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4989,13 +11015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.29605263157894735, + "noteOrder": 5882, + "time": 0.8042763157894738, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5007,18 +11033,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 289, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2188, - "time": 0.29934210526315785, + "noteOrder": 5894, + "time": 0.8059210526315791, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5030,18 +11056,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2213, - "time": 0.3026315789473685, + "noteOrder": 5894, + "time": 0.8059210526315791, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5058,11 +11084,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2237, - "time": 0.305921052631579, + "noteOrder": 5894, + "time": 0.8059210526315791, "position": { "x": 8, "y": 0 @@ -5081,13 +11107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2309, - "time": 0.3157894736842105, + "noteOrder": 5906, + "time": 0.8075657894736843, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5099,18 +11125,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2333, - "time": 0.319078947368421, + "noteOrder": 5906, + "time": 0.8075657894736843, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5127,13 +11153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2357, - "time": 0.32236842105263164, + "noteOrder": 5918, + "time": 0.8092105263157896, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5145,18 +11171,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2405, - "time": 0.32894736842105265, + "noteOrder": 5918, + "time": 0.8092105263157896, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5173,13 +11199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 291, "indexInLine": 1, "isSliding": false, - "noteOrder": 2429, - "time": 0.33223684210526316, + "noteOrder": 5918, + "time": 0.8092105263157896, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5191,16 +11217,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 291, "indexInLine": 2, "isSliding": false, - "noteOrder": 2453, - "time": 0.3355263157894737, + "noteOrder": 5943, + "time": 0.8125000000000001, "position": { "x": 6, "y": 0 @@ -5214,18 +11240,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 3, + "lineGroupId": 293, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2477, - "time": 0.3388157894736842, + "noteOrder": 5967, + "time": 0.8157894736842106, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5242,13 +11268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2501, - "time": 0.34210526315789475, + "noteOrder": 5979, + "time": 0.8174342105263158, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -5260,18 +11286,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 293, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2525, - "time": 0.3453947368421053, + "noteOrder": 5979, + "time": 0.8174342105263158, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5283,16 +11309,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 2, + "lineGroupId": 293, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2549, - "time": 0.3486842105263158, + "noteOrder": 5991, + "time": 0.8190789473684211, "position": { "x": 4, "y": 0 @@ -5306,18 +11332,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 3, + "lineGroupId": 293, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2573, - "time": 0.3519736842105263, + "noteOrder": 5991, + "time": 0.8190789473684211, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5329,18 +11355,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2597, - "time": 0.35526315789473684, + "noteOrder": 5991, + "time": 0.8190789473684211, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5357,13 +11383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 294, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2621, - "time": 0.35855263157894735, + "noteOrder": 6003, + "time": 0.8207236842105263, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5380,13 +11406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 2, + "lineGroupId": 294, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2669, - "time": 0.3651315789473685, + "noteOrder": 6003, + "time": 0.8207236842105263, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5403,13 +11429,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2790, - "time": 0.381578947368421, + "noteOrder": 6015, + "time": 0.8223684210526316, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5426,13 +11452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 294, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2838, - "time": 0.38815789473684215, + "noteOrder": 6015, + "time": 0.8223684210526316, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5444,18 +11470,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2886, - "time": 0.39473684210526316, + "noteOrder": 6015, + "time": 0.8223684210526316, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5467,18 +11493,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2910, - "time": 0.3980263157894737, + "noteOrder": 6039, + "time": 0.8256578947368421, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5495,13 +11521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2934, - "time": 0.4013157894736842, + "noteOrder": 6063, + "time": 0.8289473684210527, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5518,13 +11544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2958, - "time": 0.40460526315789475, + "noteOrder": 6075, + "time": 0.8305921052631579, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5536,18 +11562,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2982, - "time": 0.4078947368421053, + "noteOrder": 6075, + "time": 0.8305921052631579, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5564,13 +11590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 298, "indexInLine": 1, "isSliding": false, - "noteOrder": 3006, - "time": 0.4111842105263158, + "noteOrder": 6087, + "time": 0.8322368421052633, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5582,18 +11608,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 298, "indexInLine": 2, "isSliding": false, - "noteOrder": 3150, - "time": 0.430921052631579, + "noteOrder": 6099, + "time": 0.8338815789473686, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5605,18 +11631,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 298, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3175, - "time": 0.4342105263157895, + "noteOrder": 6099, + "time": 0.8338815789473686, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5633,13 +11659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3223, - "time": 0.4407894736842105, + "noteOrder": 6111, + "time": 0.8355263157894738, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5656,13 +11682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3271, - "time": 0.44736842105263164, + "noteOrder": 6123, + "time": 0.8371710526315791, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5674,18 +11700,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3295, - "time": 0.45065789473684215, + "noteOrder": 6123, + "time": 0.8371710526315791, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5702,13 +11728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3319, - "time": 0.45394736842105265, + "noteOrder": 6135, + "time": 0.8388157894736843, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5725,13 +11751,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3343, - "time": 0.45723684210526316, + "noteOrder": 6147, + "time": 0.8404605263157896, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5743,18 +11769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4329, - "time": 0.5921052631578947, + "noteOrder": 6147, + "time": 0.8404605263157896, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5766,16 +11792,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 306, "indexInLine": 1, "isSliding": false, - "noteOrder": 4353, - "time": 0.5953947368421053, + "noteOrder": 6255, + "time": 0.8552631578947368, "position": { "x": 8, "y": 0 @@ -5794,13 +11820,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 306, "indexInLine": 2, "isSliding": false, - "noteOrder": 4425, - "time": 0.605263157894737, + "noteOrder": 6267, + "time": 0.8569078947368421, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5817,13 +11843,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 306, "indexInLine": 3, "isSliding": false, - "noteOrder": 4521, - "time": 0.618421052631579, + "noteOrder": 6267, + "time": 0.8569078947368421, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5840,13 +11866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 306, "indexInLine": 4, "isSliding": false, - "noteOrder": 4593, - "time": 0.6282894736842106, + "noteOrder": 6279, + "time": 0.8585526315789475, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5863,13 +11889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4714, - "time": 0.6447368421052633, + "noteOrder": 6279, + "time": 0.8585526315789475, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5881,18 +11907,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, + "lineGroupId": 308, "indexInLine": 1, "isSliding": false, - "noteOrder": 4786, - "time": 0.6546052631578947, + "noteOrder": 6303, + "time": 0.861842105263158, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5909,11 +11935,11 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4810, - "time": 0.6578947368421053, + "noteOrder": 6315, + "time": 0.8634868421052633, "position": { "x": 8, "y": 0 @@ -5927,18 +11953,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 1, + "lineGroupId": 308, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4882, - "time": 0.667763157894737, + "noteOrder": 6315, + "time": 0.8634868421052633, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5950,18 +11976,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4906, - "time": 0.6710526315789473, + "noteOrder": 6327, + "time": 0.8651315789473685, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5978,13 +12004,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4930, - "time": 0.674342105263158, + "noteOrder": 6327, + "time": 0.8651315789473685, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5996,18 +12022,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4954, - "time": 0.6776315789473684, + "noteOrder": 6352, + "time": 0.868421052631579, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6019,18 +12045,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4978, - "time": 0.680921052631579, + "noteOrder": 6364, + "time": 0.8700657894736843, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -6047,13 +12073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5098, - "time": 0.6973684210526316, + "noteOrder": 6364, + "time": 0.8700657894736843, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6070,13 +12096,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 1, + "lineGroupId": 310, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5123, - "time": 0.700657894736842, + "noteOrder": 6376, + "time": 0.8717105263157896, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6093,13 +12119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5123, - "time": 0.700657894736842, + "noteOrder": 6376, + "time": 0.8717105263157896, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6111,18 +12137,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 251, + "lineGroupId": 311, "indexInLine": 1, "isSliding": false, - "noteOrder": 5147, - "time": 0.7039473684210527, + "noteOrder": 6376, + "time": 0.8717105263157896, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6139,13 +12165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 311, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5147, - "time": 0.7039473684210527, + "noteOrder": 6388, + "time": 0.8733552631578948, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -6157,18 +12183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 1, + "lineGroupId": 311, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5171, - "time": 0.7072368421052633, + "noteOrder": 6388, + "time": 0.8733552631578948, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6180,18 +12206,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 311, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5171, - "time": 0.7072368421052633, + "noteOrder": 6400, + "time": 0.8750000000000001, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6208,13 +12234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 1, + "lineGroupId": 311, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5195, - "time": 0.7105263157894737, + "noteOrder": 6400, + "time": 0.8750000000000001, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6231,13 +12257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 312, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5195, - "time": 0.7105263157894737, + "noteOrder": 6400, + "time": 0.8750000000000001, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6254,13 +12280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 1, + "lineGroupId": 312, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5243, - "time": 0.7171052631578947, + "noteOrder": 6412, + "time": 0.8766447368421053, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -6277,13 +12303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 312, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5243, - "time": 0.7171052631578947, + "noteOrder": 6412, + "time": 0.8766447368421053, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6295,18 +12321,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 1, + "lineGroupId": 312, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5291, - "time": 0.7236842105263157, + "noteOrder": 6424, + "time": 0.8782894736842106, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6318,18 +12344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 312, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5291, - "time": 0.7236842105263157, + "noteOrder": 6424, + "time": 0.8782894736842106, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6346,13 +12372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 261, + "lineGroupId": 313, "indexInLine": 1, "isSliding": false, - "noteOrder": 5315, - "time": 0.7269736842105263, + "noteOrder": 6424, + "time": 0.8782894736842106, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -6364,18 +12390,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 313, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5315, - "time": 0.7269736842105263, + "noteOrder": 6436, + "time": 0.8799342105263158, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -6392,13 +12418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 1, + "lineGroupId": 313, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5339, - "time": 0.730263157894737, + "noteOrder": 6436, + "time": 0.8799342105263158, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6415,13 +12441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 313, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5339, - "time": 0.730263157894737, + "noteOrder": 6448, + "time": 0.8815789473684211, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6433,18 +12459,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 1, + "lineGroupId": 313, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5363, - "time": 0.7335526315789473, + "noteOrder": 6448, + "time": 0.8815789473684211, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6456,16 +12482,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 272, - "indexInLine": 0, + "lineGroupId": 314, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5483, - "time": 0.75, + "noteOrder": 6448, + "time": 0.8815789473684211, "position": { "x": 8, "y": 0 @@ -6484,13 +12510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 314, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5507, - "time": 0.7532894736842106, + "noteOrder": 6520, + "time": 0.8914473684210528, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6502,18 +12528,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 318, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5531, - "time": 0.756578947368421, + "noteOrder": 6544, + "time": 0.8947368421052633, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6525,18 +12551,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 276, - "indexInLine": 0, + "lineGroupId": 318, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5555, - "time": 0.7598684210526316, + "noteOrder": 6556, + "time": 0.8963815789473685, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6553,13 +12579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 318, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5579, - "time": 0.763157894736842, + "noteOrder": 6556, + "time": 0.8963815789473685, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6571,18 +12597,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 277, + "lineGroupId": 319, "indexInLine": 1, "isSliding": false, - "noteOrder": 5603, - "time": 0.7664473684210527, + "noteOrder": 6568, + "time": 0.8980263157894738, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -6599,13 +12625,13 @@ "isPlayAudio": false }, { - "lineGroupId": 277, + "lineGroupId": 319, "indexInLine": 2, "isSliding": false, - "noteOrder": 5652, - "time": 0.7730263157894737, + "noteOrder": 6580, + "time": 0.899671052631579, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6622,13 +12648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 0, + "lineGroupId": 319, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5676, - "time": 0.7763157894736843, + "noteOrder": 6580, + "time": 0.899671052631579, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -6640,18 +12666,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 320, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5700, - "time": 0.7796052631578947, + "noteOrder": 6592, + "time": 0.9013157894736843, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6663,18 +12689,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 283, - "indexInLine": 0, + "lineGroupId": 320, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5724, - "time": 0.7828947368421053, + "noteOrder": 6604, + "time": 0.9029605263157895, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -6691,13 +12717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 284, - "indexInLine": 0, + "lineGroupId": 320, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5748, - "time": 0.7861842105263157, + "noteOrder": 6604, + "time": 0.9029605263157895, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6709,18 +12735,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 0, + "lineGroupId": 321, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5772, - "time": 0.7894736842105263, + "noteOrder": 6616, + "time": 0.9046052631578948, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6732,18 +12758,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 1, + "lineGroupId": 321, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5796, - "time": 0.792763157894737, + "noteOrder": 6628, + "time": 0.90625, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6755,18 +12781,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 2, + "lineGroupId": 321, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5844, - "time": 0.799342105263158, + "noteOrder": 6628, + "time": 0.90625, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6778,18 +12804,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 322, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5868, - "time": 0.8026315789473684, + "noteOrder": 6640, + "time": 0.9078947368421053, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6801,18 +12827,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 290, - "indexInLine": 0, + "lineGroupId": 322, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5892, - "time": 0.805921052631579, + "noteOrder": 6652, + "time": 0.9095394736842105, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -6829,13 +12855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 322, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5916, - "time": 0.8092105263157895, + "noteOrder": 6652, + "time": 0.9095394736842105, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6847,18 +12873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 1, + "lineGroupId": 322, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5940, - "time": 0.8125, + "noteOrder": 6664, + "time": 0.9111842105263158, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6870,18 +12896,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 0, + "lineGroupId": 322, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5964, - "time": 0.8157894736842106, + "noteOrder": 6664, + "time": 0.9111842105263158, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6898,11 +12924,11 @@ "isPlayAudio": false }, { - "lineGroupId": 294, - "indexInLine": 0, + "lineGroupId": 324, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5988, - "time": 0.819078947368421, + "noteOrder": 6688, + "time": 0.9144736842105264, "position": { "x": 2, "y": 0 @@ -6921,11 +12947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 0, + "lineGroupId": 324, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6012, - "time": 0.8223684210526316, + "noteOrder": 6700, + "time": 0.9161184210526317, "position": { "x": 2, "y": 0 @@ -6939,16 +12965,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 1, + "lineGroupId": 324, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6036, - "time": 0.825657894736842, + "noteOrder": 6700, + "time": 0.9161184210526317, "position": { "x": 4, "y": 0 @@ -6962,18 +12988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 0, + "lineGroupId": 324, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6060, - "time": 0.8289473684210527, + "noteOrder": 6712, + "time": 0.917763157894737, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6990,13 +13016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 298, - "indexInLine": 0, + "lineGroupId": 324, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6084, - "time": 0.8322368421052633, + "noteOrder": 6712, + "time": 0.917763157894737, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7008,18 +13034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6109, - "time": 0.8355263157894737, + "noteOrder": 6736, + "time": 0.9210526315789475, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -7031,18 +13057,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6133, - "time": 0.8388157894736843, + "noteOrder": 6748, + "time": 0.9226973684210528, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -7059,13 +13085,13 @@ "isPlayAudio": false }, { - "lineGroupId": 306, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6253, - "time": 0.855263157894737, + "noteOrder": 6748, + "time": 0.9226973684210528, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7077,18 +13103,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 308, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6301, - "time": 0.861842105263158, + "noteOrder": 6761, + "time": 0.924342105263158, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7105,13 +13131,13 @@ "isPlayAudio": false }, { - "lineGroupId": 310, - "indexInLine": 0, + "lineGroupId": 326, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6349, - "time": 0.868421052631579, + "noteOrder": 6761, + "time": 0.924342105263158, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -7123,18 +13149,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 311, - "indexInLine": 0, + "lineGroupId": 327, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6373, - "time": 0.8717105263157895, + "noteOrder": 6761, + "time": 0.924342105263158, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -7146,18 +13172,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 312, - "indexInLine": 0, + "lineGroupId": 327, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6397, - "time": 0.875, + "noteOrder": 6773, + "time": 0.9259868421052633, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -7174,13 +13200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 313, - "indexInLine": 0, + "lineGroupId": 327, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6421, - "time": 0.8782894736842106, + "noteOrder": 6773, + "time": 0.9259868421052633, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7192,18 +13218,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 314, - "indexInLine": 0, + "lineGroupId": 327, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6445, - "time": 0.881578947368421, + "noteOrder": 6785, + "time": 0.9276315789473685, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -7220,13 +13246,13 @@ "isPlayAudio": false }, { - "lineGroupId": 314, - "indexInLine": 1, + "lineGroupId": 327, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6517, - "time": 0.8914473684210527, + "noteOrder": 6785, + "time": 0.9276315789473685, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7243,13 +13269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 318, - "indexInLine": 0, + "lineGroupId": 328, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6541, - "time": 0.8947368421052633, + "noteOrder": 6785, + "time": 0.9276315789473685, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -7266,13 +13292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 319, - "indexInLine": 0, + "lineGroupId": 328, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6565, - "time": 0.8980263157894737, + "noteOrder": 6797, + "time": 0.9292763157894738, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -7284,18 +13310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 320, - "indexInLine": 0, + "lineGroupId": 328, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6590, - "time": 0.9013157894736843, + "noteOrder": 6797, + "time": 0.9292763157894738, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7312,13 +13338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 321, - "indexInLine": 0, + "lineGroupId": 328, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6614, - "time": 0.9046052631578947, + "noteOrder": 6809, + "time": 0.930921052631579, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7330,18 +13356,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 322, - "indexInLine": 0, + "lineGroupId": 328, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6638, - "time": 0.9078947368421053, + "noteOrder": 6809, + "time": 0.930921052631579, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -7358,11 +13384,11 @@ "isPlayAudio": false }, { - "lineGroupId": 324, - "indexInLine": 0, + "lineGroupId": 329, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6686, - "time": 0.9144736842105263, + "noteOrder": 6809, + "time": 0.930921052631579, "position": { "x": 2, "y": 0 @@ -7381,11 +13407,11 @@ "isPlayAudio": false }, { - "lineGroupId": 326, - "indexInLine": 0, + "lineGroupId": 329, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6734, - "time": 0.9210526315789473, + "noteOrder": 6821, + "time": 0.9325657894736843, "position": { "x": 2, "y": 0 @@ -7399,18 +13425,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 327, - "indexInLine": 0, + "lineGroupId": 329, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6758, - "time": 0.924342105263158, + "noteOrder": 6821, + "time": 0.9325657894736843, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -7427,13 +13453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 328, - "indexInLine": 0, + "lineGroupId": 329, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6782, - "time": 0.9276315789473684, + "noteOrder": 6833, + "time": 0.9342105263157895, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -7445,18 +13471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 329, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6806, - "time": 0.930921052631579, + "noteOrder": 6833, + "time": 0.9342105263157895, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -7474,9 +13500,9 @@ }, { "lineGroupId": 330, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6830, + "noteOrder": 6833, "time": 0.9342105263157895, "position": { "x": 2, @@ -7497,10 +13523,10 @@ }, { "lineGroupId": 330, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6902, - "time": 0.944078947368421, + "noteOrder": 6905, + "time": 0.9440789473684211, "position": { "x": 6, "y": 0 diff --git a/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1b.json b/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1b.json index d1892570..4f8e72ec 100644 --- a/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1b.json +++ b/tracks/Set Me Free (Hommarju Remix)/375_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.013157894736842105, + "time": 0.013157894736842106, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.01644736842105263, + "time": 0.016447368421052634, "position": { "x": 8, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.019736842105263157, + "time": 0.01973684210526316, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 192, - "time": 0.02631578947368421, + "time": 0.026315789473684213, "position": { "x": 3, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 217, "time": 0.02960526315789474, "position": { "x": 7, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 240, - "time": 0.03289473684210526, + "noteOrder": 241, + "time": 0.03289473684210527, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 289, - "time": 0.039473684210526314, + "time": 0.03947368421052632, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 361, - "time": 0.049342105263157895, + "time": 0.0493421052631579, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 385, - "time": 0.05263157894736842, + "time": 0.052631578947368425, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 457, - "time": 0.0625, + "time": 0.06250000000000001, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 481, - "time": 0.06578947368421052, + "time": 0.06578947368421054, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 505, - "time": 0.06907894736842105, + "time": 0.06907894736842106, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 553, - "time": 0.07565789473684212, + "time": 0.0756578947368421, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 577, - "time": 0.07894736842105263, + "time": 0.07894736842105264, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 626, "time": 0.08552631578947369, "position": { "x": 5, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 649, - "time": 0.08881578947368421, + "noteOrder": 650, + "time": 0.08881578947368422, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 673, + "noteOrder": 674, "time": 0.09210526315789475, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 697, - "time": 0.09539473684210525, + "noteOrder": 698, + "time": 0.09539473684210527, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 721, - "time": 0.09868421052631579, + "noteOrder": 722, + "time": 0.0986842105263158, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 770, - "time": 0.10526315789473684, + "time": 0.10526315789473685, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 842, - "time": 0.11513157894736842, + "time": 0.11513157894736843, "position": { "x": 4, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 914, - "time": 0.125, + "time": 0.12500000000000003, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1010, - "time": 0.1381578947368421, + "time": 0.13815789473684212, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1491, + "noteOrder": 1492, "time": 0.20394736842105265, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1539, - "time": 0.21052631578947367, + "noteOrder": 1540, + "time": 0.2105263157894737, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1587, + "noteOrder": 1588, "time": 0.21710526315789475, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1876, + "noteOrder": 1877, "time": 0.2565789473684211, "position": { "x": 5, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1924, - "time": 0.2631578947368421, + "noteOrder": 1925, + "time": 0.26315789473684215, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1972, - "time": 0.26973684210526316, + "noteOrder": 1973, + "time": 0.2697368421052632, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.29605263157894735, + "noteOrder": 2165, + "time": 0.2960526315789474, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2357, + "noteOrder": 2358, "time": 0.32236842105263164, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2597, - "time": 0.35526315789473684, + "noteOrder": 2598, + "time": 0.3552631578947369, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.35855263157894735, + "noteOrder": 2622, + "time": 0.3585526315789474, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.36184210526315785, + "noteOrder": 2646, + "time": 0.36184210526315796, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2669, + "noteOrder": 2671, "time": 0.3651315789473685, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2838, - "time": 0.38815789473684215, + "noteOrder": 2839, + "time": 0.3881578947368421, "position": { "x": 2, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2886, - "time": 0.39473684210526316, + "noteOrder": 2887, + "time": 0.3947368421052632, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2934, - "time": 0.4013157894736842, + "noteOrder": 2935, + "time": 0.40131578947368424, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3030, + "noteOrder": 3031, "time": 0.4144736842105263, "position": { "x": 8, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3078, - "time": 0.42105263157894735, + "noteOrder": 3080, + "time": 0.4210526315789474, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3126, - "time": 0.4276315789473685, + "noteOrder": 3128, + "time": 0.4276315789473684, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3320, "time": 0.45394736842105265, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3511, - "time": 0.48026315789473684, + "noteOrder": 3513, + "time": 0.4802631578947369, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3559, - "time": 0.4868421052631579, + "noteOrder": 3561, + "time": 0.48684210526315796, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.4901315789473685, "position": { "x": 2, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3607, + "noteOrder": 3609, "time": 0.493421052631579, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3631, + "noteOrder": 3633, "time": 0.4967105263157895, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3655, - "time": 0.5, + "noteOrder": 3657, + "time": 0.5000000000000001, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.5032894736842105, + "noteOrder": 3681, + "time": 0.5032894736842106, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.506578947368421, + "noteOrder": 3705, + "time": 0.5065789473684211, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3728, + "noteOrder": 3729, "time": 0.5098684210526316, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3752, + "noteOrder": 3753, "time": 0.5131578947368421, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3776, + "noteOrder": 3777, "time": 0.5164473684210527, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3800, + "noteOrder": 3801, "time": 0.5197368421052632, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3824, + "noteOrder": 3825, "time": 0.5230263157894737, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3848, - "time": 0.5263157894736842, + "noteOrder": 3849, + "time": 0.5263157894736843, "position": { "x": 5, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3872, + "noteOrder": 3873, "time": 0.5296052631578948, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3896, + "noteOrder": 3898, "time": 0.5328947368421053, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3920, - "time": 0.5361842105263157, + "noteOrder": 3922, + "time": 0.5361842105263158, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3944, - "time": 0.5394736842105263, + "noteOrder": 3946, + "time": 0.5394736842105264, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3968, + "noteOrder": 3970, "time": 0.542763157894737, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3992, - "time": 0.5460526315789473, + "noteOrder": 3994, + "time": 0.5460526315789475, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4016, + "noteOrder": 4018, "time": 0.549342105263158, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4040, - "time": 0.5526315789473684, + "noteOrder": 4042, + "time": 0.5526315789473685, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4064, + "noteOrder": 4066, "time": 0.555921052631579, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4088, - "time": 0.5592105263157894, + "noteOrder": 4090, + "time": 0.5592105263157896, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.5625, + "noteOrder": 4114, + "time": 0.5625000000000001, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4136, + "noteOrder": 4138, "time": 0.5657894736842106, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4161, - "time": 0.569078947368421, + "noteOrder": 4162, + "time": 0.5690789473684211, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4186, "time": 0.5723684210526316, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4209, - "time": 0.575657894736842, + "noteOrder": 4210, + "time": 0.5756578947368421, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4281, + "noteOrder": 4282, "time": 0.5855263157894737, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4281, + "noteOrder": 4282, "time": 0.5855263157894737, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4377, - "time": 0.5986842105263157, + "noteOrder": 4379, + "time": 0.5986842105263158, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4473, - "time": 0.611842105263158, + "noteOrder": 4475, + "time": 0.6118421052631579, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4569, - "time": 0.625, + "noteOrder": 4571, + "time": 0.6250000000000001, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4666, - "time": 0.638157894736842, + "noteOrder": 4667, + "time": 0.6381578947368421, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.6513157894736843, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.6644736842105263, "position": { "x": 3, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4954, - "time": 0.6776315789473684, + "noteOrder": 4956, + "time": 0.6776315789473685, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5050, - "time": 0.6907894736842106, + "noteOrder": 5052, + "time": 0.6907894736842105, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.6973684210526316, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5123, - "time": 0.700657894736842, + "noteOrder": 5125, + "time": 0.7006578947368421, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5147, + "noteOrder": 5149, "time": 0.7039473684210527, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5173, "time": 0.7072368421052633, "position": { "x": 4, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5195, - "time": 0.7105263157894737, + "noteOrder": 5197, + "time": 0.7105263157894738, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5219, + "noteOrder": 5221, "time": 0.7138157894736843, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5243, - "time": 0.7171052631578947, + "noteOrder": 5245, + "time": 0.7171052631578948, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5267, + "noteOrder": 5269, "time": 0.7203947368421053, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5291, - "time": 0.7236842105263157, + "noteOrder": 5293, + "time": 0.7236842105263159, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5315, - "time": 0.7269736842105263, + "noteOrder": 5317, + "time": 0.7269736842105264, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5339, + "noteOrder": 5341, "time": 0.730263157894737, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5363, - "time": 0.7335526315789473, + "noteOrder": 5365, + "time": 0.7335526315789475, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5724, + "noteOrder": 5726, "time": 0.7828947368421053, "position": { "x": 5, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5772, - "time": 0.7894736842105263, + "noteOrder": 5774, + "time": 0.7894736842105264, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5820, - "time": 0.7960526315789473, + "noteOrder": 5822, + "time": 0.7960526315789475, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6109, - "time": 0.8355263157894737, + "noteOrder": 6111, + "time": 0.8355263157894738, "position": { "x": 5, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6157, - "time": 0.8421052631578947, + "noteOrder": 6159, + "time": 0.8421052631578948, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6205, - "time": 0.8486842105263157, + "noteOrder": 6207, + "time": 0.8486842105263158, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6445, - "time": 0.881578947368421, + "noteOrder": 6448, + "time": 0.8815789473684211, "position": { "x": 6, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6469, + "noteOrder": 6472, "time": 0.8848684210526316, "position": { "x": 6, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6493, - "time": 0.888157894736842, + "noteOrder": 6496, + "time": 0.8881578947368423, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6517, - "time": 0.8914473684210527, + "noteOrder": 6520, + "time": 0.8914473684210528, "position": { "x": 4, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6541, + "noteOrder": 6544, "time": 0.8947368421052633, "position": { "x": 6, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6565, - "time": 0.8980263157894737, + "noteOrder": 6568, + "time": 0.8980263157894738, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6590, + "noteOrder": 6592, "time": 0.9013157894736843, "position": { "x": 4, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6614, - "time": 0.9046052631578947, + "noteOrder": 6616, + "time": 0.9046052631578948, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6830, + "noteOrder": 6833, "time": 0.9342105263157895, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6854, + "noteOrder": 6857, "time": 0.9375, "position": { "x": 7, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6878, + "noteOrder": 6881, "time": 0.9407894736842106, "position": { "x": 4, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6902, - "time": 0.944078947368421, + "noteOrder": 6905, + "time": 0.9440789473684211, "position": { "x": 4, "y": 0 @@ -2456,7 +2456,7 @@ "lineNodes": [ { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 866, "time": 0.11842105263157895, @@ -2479,10 +2479,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 890, - "time": 0.12171052631578948, + "time": 0.12171052631578949, "position": { "x": 3, "y": 0 @@ -2502,10 +2502,10 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 914, - "time": 0.125, + "time": 0.12500000000000003, "position": { "x": 4, "y": 0 @@ -2525,10 +2525,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, - "time": 0.13157894736842105, + "time": 0.13157894736842107, "position": { "x": 7, "y": 0 @@ -2548,10 +2548,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 986, - "time": 0.13486842105263158, + "time": 0.1348684210526316, "position": { "x": 7, "y": 0 @@ -2571,10 +2571,10 @@ }, { "lineGroupId": 35, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1010, - "time": 0.1381578947368421, + "time": 0.13815789473684212, "position": { "x": 6, "y": 0 @@ -2594,9 +2594,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1058, + "noteOrder": 1059, "time": 0.14473684210526316, "position": { "x": 3, @@ -2616,13 +2616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1106, - "time": 0.15131578947368424, + "noteOrder": 1083, + "time": 0.1480263157894737, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2634,18 +2634,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1251, - "time": 0.17105263157894737, + "noteOrder": 1083, + "time": 0.1480263157894737, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2657,16 +2657,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1299, - "time": 0.17763157894736842, + "noteOrder": 1107, + "time": 0.1513157894736842, "position": { "x": 7, "y": 0 @@ -2680,16 +2680,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1347, - "time": 0.1842105263157895, + "noteOrder": 1131, + "time": 0.15460526315789475, "position": { "x": 7, "y": 0 @@ -2708,13 +2708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1395, - "time": 0.1907894736842105, + "noteOrder": 1131, + "time": 0.15460526315789475, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2726,16 +2726,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1443, - "time": 0.19736842105263158, + "noteOrder": 1251, + "time": 0.17105263157894737, "position": { "x": 7, "y": 0 @@ -2754,11 +2754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1467, - "time": 0.2006578947368421, + "noteOrder": 1275, + "time": 0.1743421052631579, "position": { "x": 7, "y": 0 @@ -2777,13 +2777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1587, - "time": 0.21710526315789475, + "noteOrder": 1275, + "time": 0.1743421052631579, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2800,13 +2800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.22368421052631582, + "noteOrder": 1299, + "time": 0.17763157894736845, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2823,13 +2823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.23026315789473684, + "noteOrder": 1323, + "time": 0.18092105263157898, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2841,18 +2841,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1732, - "time": 0.2368421052631579, + "noteOrder": 1323, + "time": 0.18092105263157898, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2869,13 +2869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1780, - "time": 0.24342105263157895, + "noteOrder": 1347, + "time": 0.1842105263157895, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2892,13 +2892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1828, - "time": 0.25, + "noteOrder": 1371, + "time": 0.18750000000000003, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2910,18 +2910,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1852, - "time": 0.2532894736842105, + "noteOrder": 1371, + "time": 0.18750000000000003, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2933,18 +2933,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1972, - "time": 0.26973684210526316, + "noteOrder": 1395, + "time": 0.19078947368421054, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2961,11 +2961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2020, - "time": 0.2763157894736842, + "noteOrder": 1419, + "time": 0.19407894736842105, "position": { "x": 7, "y": 0 @@ -2979,18 +2979,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2068, - "time": 0.2828947368421053, + "noteOrder": 1419, + "time": 0.19407894736842105, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3007,11 +3007,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2116, - "time": 0.2894736842105263, + "noteOrder": 1444, + "time": 0.1973684210526316, "position": { "x": 7, "y": 0 @@ -3030,11 +3030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2140, - "time": 0.29276315789473684, + "noteOrder": 1468, + "time": 0.20065789473684212, "position": { "x": 7, "y": 0 @@ -3053,13 +3053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.29605263157894735, + "noteOrder": 1588, + "time": 0.21710526315789475, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3076,11 +3076,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2213, - "time": 0.3026315789473685, + "noteOrder": 1636, + "time": 0.22368421052631582, "position": { "x": 3, "y": 0 @@ -3099,11 +3099,11 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2261, - "time": 0.3092105263157895, + "noteOrder": 1660, + "time": 0.22697368421052633, "position": { "x": 3, "y": 0 @@ -3117,18 +3117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2309, - "time": 0.3157894736842105, + "noteOrder": 1660, + "time": 0.22697368421052633, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3145,11 +3145,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 2333, - "time": 0.319078947368421, + "noteOrder": 1684, + "time": 0.23026315789473686, "position": { "x": 3, "y": 0 @@ -3163,18 +3163,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 50, "indexInLine": 2, "isSliding": false, - "noteOrder": 2357, - "time": 0.32236842105263164, + "noteOrder": 1708, + "time": 0.23355263157894737, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3186,18 +3186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2405, - "time": 0.32894736842105265, + "noteOrder": 1708, + "time": 0.23355263157894737, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3214,11 +3214,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2453, - "time": 0.3355263157894737, + "noteOrder": 1732, + "time": 0.2368421052631579, "position": { "x": 3, "y": 0 @@ -3237,13 +3237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2501, - "time": 0.34210526315789475, + "noteOrder": 1756, + "time": 0.24013157894736845, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3255,18 +3255,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2549, - "time": 0.3486842105263158, + "noteOrder": 1756, + "time": 0.24013157894736845, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3283,11 +3283,11 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2790, - "time": 0.381578947368421, + "noteOrder": 1780, + "time": 0.24342105263157898, "position": { "x": 3, "y": 0 @@ -3306,13 +3306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2934, - "time": 0.4013157894736842, + "noteOrder": 1804, + "time": 0.2467105263157895, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3329,13 +3329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2982, - "time": 0.4078947368421053, + "noteOrder": 1804, + "time": 0.2467105263157895, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3347,18 +3347,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 3126, - "time": 0.4276315789473685, + "noteOrder": 1828, + "time": 0.25000000000000006, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3375,11 +3375,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3175, - "time": 0.4342105263157895, + "noteOrder": 1853, + "time": 0.25328947368421056, "position": { "x": 3, "y": 0 @@ -3398,13 +3398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3223, - "time": 0.4407894736842105, + "noteOrder": 1973, + "time": 0.2697368421052632, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3416,18 +3416,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3271, - "time": 0.44736842105263164, + "noteOrder": 2021, + "time": 0.27631578947368424, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3439,18 +3439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3295, - "time": 0.45065789473684215, + "noteOrder": 2045, + "time": 0.2796052631578948, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3462,18 +3462,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 2, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3319, - "time": 0.45394736842105265, + "noteOrder": 2045, + "time": 0.2796052631578948, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3485,16 +3485,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3367, - "time": 0.4605263157894737, + "noteOrder": 2069, + "time": 0.2828947368421053, "position": { "x": 7, "y": 0 @@ -3508,16 +3508,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3415, - "time": 0.46710526315789475, + "noteOrder": 2093, + "time": 0.2861842105263158, "position": { "x": 7, "y": 0 @@ -3536,13 +3536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3463, - "time": 0.4736842105263158, + "noteOrder": 2093, + "time": 0.2861842105263158, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3554,16 +3554,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 3487, - "time": 0.4769736842105263, + "noteOrder": 2117, + "time": 0.2894736842105263, "position": { "x": 7, "y": 0 @@ -3582,13 +3582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 59, "indexInLine": 2, "isSliding": false, - "noteOrder": 3511, - "time": 0.48026315789473684, + "noteOrder": 2141, + "time": 0.29276315789473684, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3605,11 +3605,11 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4329, - "time": 0.5921052631578947, + "noteOrder": 2165, + "time": 0.2960526315789474, "position": { "x": 6, "y": 0 @@ -3628,13 +3628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 4425, - "time": 0.605263157894737, + "noteOrder": 2213, + "time": 0.3026315789473684, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3646,18 +3646,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4425, - "time": 0.605263157894737, + "noteOrder": 2237, + "time": 0.3059210526315789, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3674,11 +3674,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4521, - "time": 0.618421052631579, + "noteOrder": 2237, + "time": 0.3059210526315789, "position": { "x": 4, "y": 0 @@ -3697,13 +3697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4521, - "time": 0.618421052631579, + "noteOrder": 2262, + "time": 0.3092105263157895, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3720,13 +3720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4617, - "time": 0.631578947368421, + "noteOrder": 2286, + "time": 0.31250000000000006, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3743,11 +3743,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4617, - "time": 0.631578947368421, + "noteOrder": 2286, + "time": 0.31250000000000006, "position": { "x": 4, "y": 0 @@ -3761,18 +3761,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 4714, - "time": 0.6447368421052633, + "noteOrder": 2310, + "time": 0.31578947368421056, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3789,13 +3789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4714, - "time": 0.6447368421052633, + "noteOrder": 2334, + "time": 0.3190789473684211, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3807,18 +3807,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4810, - "time": 0.6578947368421053, + "noteOrder": 2358, + "time": 0.32236842105263164, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3830,18 +3830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4810, - "time": 0.6578947368421053, + "noteOrder": 2406, + "time": 0.32894736842105265, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3853,18 +3853,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4906, - "time": 0.6710526315789473, + "noteOrder": 2430, + "time": 0.33223684210526316, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3876,16 +3876,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4906, - "time": 0.6710526315789473, + "noteOrder": 2430, + "time": 0.33223684210526316, "position": { "x": 6, "y": 0 @@ -3904,13 +3904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 5002, - "time": 0.6842105263157895, + "noteOrder": 2454, + "time": 0.33552631578947373, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3922,18 +3922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5002, - "time": 0.6842105263157895, + "noteOrder": 2478, + "time": 0.33881578947368424, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3950,11 +3950,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5098, - "time": 0.6973684210526316, + "noteOrder": 2478, + "time": 0.33881578947368424, "position": { "x": 4, "y": 0 @@ -3973,11 +3973,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5483, - "time": 0.75, + "noteOrder": 2502, + "time": 0.34210526315789475, "position": { "x": 7, "y": 0 @@ -3996,11 +3996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5531, - "time": 0.756578947368421, + "noteOrder": 2526, + "time": 0.34539473684210525, "position": { "x": 7, "y": 0 @@ -4014,18 +4014,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5579, - "time": 0.763157894736842, + "noteOrder": 2526, + "time": 0.34539473684210525, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4042,13 +4042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5628, - "time": 0.7697368421052633, + "noteOrder": 2550, + "time": 0.3486842105263158, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4065,13 +4065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5676, - "time": 0.7763157894736843, + "noteOrder": 2574, + "time": 0.3519736842105263, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4083,18 +4083,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2574, + "time": 0.3519736842105263, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 5700, - "time": 0.7796052631578947, + "noteOrder": 2791, + "time": 0.3815789473684211, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4111,13 +4134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 75, "indexInLine": 2, "isSliding": false, - "noteOrder": 5820, - "time": 0.7960526315789473, + "noteOrder": 2935, + "time": 0.40131578947368424, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4134,13 +4157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5868, - "time": 0.8026315789473684, + "noteOrder": 2983, + "time": 0.4078947368421053, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4157,13 +4180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5916, - "time": 0.8092105263157895, + "noteOrder": 3128, + "time": 0.4276315789473684, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4175,16 +4198,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5964, - "time": 0.8157894736842106, + "noteOrder": 3176, + "time": 0.4342105263157895, "position": { "x": 3, "y": 0 @@ -4203,11 +4226,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6012, - "time": 0.8223684210526316, + "noteOrder": 3200, + "time": 0.43750000000000006, "position": { "x": 3, "y": 0 @@ -4221,18 +4244,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6060, - "time": 0.8289473684210527, + "noteOrder": 3200, + "time": 0.43750000000000006, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4249,11 +4272,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 6084, - "time": 0.8322368421052633, + "noteOrder": 3224, + "time": 0.44078947368421056, "position": { "x": 3, "y": 0 @@ -4267,18 +4290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 84, "indexInLine": 2, "isSliding": false, - "noteOrder": 6205, - "time": 0.8486842105263157, + "noteOrder": 3248, + "time": 0.44407894736842113, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4290,18 +4313,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6253, - "time": 0.855263157894737, + "noteOrder": 3248, + "time": 0.44407894736842113, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4318,11 +4341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6301, - "time": 0.861842105263158, + "noteOrder": 3272, + "time": 0.44736842105263164, "position": { "x": 3, "y": 0 @@ -4341,13 +4364,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6349, - "time": 0.868421052631579, + "noteOrder": 3296, + "time": 0.45065789473684215, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4359,18 +4382,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6397, - "time": 0.875, + "noteOrder": 3320, + "time": 0.45394736842105265, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4387,13 +4410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6686, - "time": 0.9144736842105263, + "noteOrder": 3368, + "time": 0.46052631578947373, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4405,16 +4428,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6734, - "time": 0.9210526315789473, + "noteOrder": 3392, + "time": 0.46381578947368424, "position": { "x": 7, "y": 0 @@ -4433,13 +4456,1692 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6782, - "time": 0.9276315789473684, + "noteOrder": 3392, + "time": 0.46381578947368424, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3416, + "time": 0.46710526315789475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3440, + "time": 0.4703947368421053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3440, + "time": 0.4703947368421053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3464, + "time": 0.4736842105263158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3489, + "time": 0.4769736842105263, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3513, + "time": 0.4802631578947369, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4331, + "time": 0.5921052631578948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4427, + "time": 0.6052631578947368, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4427, + "time": 0.6052631578947368, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4523, + "time": 0.618421052631579, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4523, + "time": 0.618421052631579, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4619, + "time": 0.6315789473684211, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4619, + "time": 0.6315789473684211, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4716, + "time": 0.6447368421052633, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4716, + "time": 0.6447368421052633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4812, + "time": 0.6578947368421053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4812, + "time": 0.6578947368421053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4908, + "time": 0.6710526315789475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4908, + "time": 0.6710526315789475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5004, + "time": 0.6842105263157895, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5004, + "time": 0.6842105263157895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5100, + "time": 0.6973684210526316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5485, + "time": 0.7500000000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5509, + "time": 0.7532894736842106, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5509, + "time": 0.7532894736842106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5534, + "time": 0.7565789473684211, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5558, + "time": 0.7598684210526316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5558, + "time": 0.7598684210526316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5582, + "time": 0.7631578947368421, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5606, + "time": 0.7664473684210527, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5606, + "time": 0.7664473684210527, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5630, + "time": 0.7697368421052632, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5654, + "time": 0.7730263157894737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5654, + "time": 0.7730263157894737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5678, + "time": 0.7763157894736842, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5702, + "time": 0.7796052631578948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5822, + "time": 0.7960526315789475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5870, + "time": 0.8026315789473685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5894, + "time": 0.8059210526315791, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5894, + "time": 0.8059210526315791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5918, + "time": 0.8092105263157896, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5943, + "time": 0.8125000000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5943, + "time": 0.8125000000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5967, + "time": 0.8157894736842106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5991, + "time": 0.8190789473684211, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5991, + "time": 0.8190789473684211, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6015, + "time": 0.8223684210526316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6039, + "time": 0.8256578947368421, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6039, + "time": 0.8256578947368421, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6063, + "time": 0.8289473684210527, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6087, + "time": 0.8322368421052633, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6207, + "time": 0.8486842105263158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6255, + "time": 0.8552631578947368, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6279, + "time": 0.8585526315789475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6279, + "time": 0.8585526315789475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6303, + "time": 0.861842105263158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6327, + "time": 0.8651315789473685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6327, + "time": 0.8651315789473685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6352, + "time": 0.868421052631579, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6376, + "time": 0.8717105263157896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6376, + "time": 0.8717105263157896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6400, + "time": 0.8750000000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6424, + "time": 0.8782894736842106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6424, + "time": 0.8782894736842106, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6688, + "time": 0.9144736842105264, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6712, + "time": 0.917763157894737, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6712, + "time": 0.917763157894737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6736, + "time": 0.9210526315789475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6761, + "time": 0.924342105263158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6761, + "time": 0.924342105263158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6785, + "time": 0.9276315789473685, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6809, + "time": 0.930921052631579, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6809, + "time": 0.930921052631579, + "position": { + "x": 4, "y": 0 }, "position2D": { diff --git a/tracks/Set Me Free (Hommarju Remix)/info.json b/tracks/Set Me Free (Hommarju Remix)/info.json index e1058ed7..90e2a277 100644 --- a/tracks/Set Me Free (Hommarju Remix)/info.json +++ b/tracks/Set Me Free (Hommarju Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Set Me Free (Hommarju Remix)", - "SongLength": "130.246531", + "SongLength": "120.293878", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/She Shines Under The Mirror Ball/339_difficulty_1a.json b/tracks/She Shines Under The Mirror Ball/339_difficulty_1a.json index c8686087..888c225e 100644 --- a/tracks/She Shines Under The Mirror Ball/339_difficulty_1a.json +++ b/tracks/She Shines Under The Mirror Ball/339_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 123, - "time": 0.022525693368999018, + "time": 0.022525693368999015, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 197, - "time": 0.036041109390398424, + "time": 0.03604110939039842, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 222, - "time": 0.04054624806419823, + "time": 0.04054624806419822, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 247, - "time": 0.045051386737998037, + "time": 0.04505138673799803, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 321, - "time": 0.058566802759397435, + "time": 0.05856680275939743, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 395, - "time": 0.07208221878079685, + "time": 0.07208221878079683, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 444, - "time": 0.08109249612839646, + "time": 0.08109249612839645, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 444, - "time": 0.08109249612839646, + "time": 0.08109249612839645, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 518, - "time": 0.09460791214979586, + "time": 0.09460791214979584, "position": { "x": 2, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 567, - "time": 0.10361818949739547, + "noteOrder": 568, + "time": 0.10361818949739546, "position": { "x": 8, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 617, - "time": 0.11262846684499508, + "time": 0.11262846684499507, "position": { "x": 5, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 641, - "time": 0.11713360551879487, + "noteOrder": 642, + "time": 0.11713360551879486, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 666, - "time": 0.12163874419259468, + "time": 0.12163874419259467, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 666, - "time": 0.12163874419259468, + "time": 0.12163874419259467, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 715, + "noteOrder": 716, "time": 0.13064902154019428, "position": { "x": 8, @@ -474,7 +474,7 @@ }, { "noteOrder": 765, - "time": 0.1396592988877939, + "time": 0.13965929888779388, "position": { "x": 2, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 814, - "time": 0.1486695762353935, + "time": 0.14866957623539348, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 863, - "time": 0.1576798535829931, + "noteOrder": 864, + "time": 0.15767985358299308, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 863, - "time": 0.1576798535829931, + "noteOrder": 864, + "time": 0.15767985358299308, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 888, - "time": 0.16218499225679292, + "time": 0.1621849922567929, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 888, - "time": 0.16218499225679292, + "time": 0.1621849922567929, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 913, - "time": 0.16669013093059273, + "time": 0.16669013093059268, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 913, - "time": 0.16669013093059273, + "time": 0.16669013093059268, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17119526960439252, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17119526960439252, "position": { "x": 3, @@ -734,7 +734,7 @@ }, { "noteOrder": 987, - "time": 0.18020554695199215, + "time": 0.18020554695199212, "position": { "x": 3, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1011, - "time": 0.18471068562579193, + "noteOrder": 1012, + "time": 0.1847106856257919, "position": { "x": 5, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1110, - "time": 0.20273124032099116, + "time": 0.20273124032099113, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1159, - "time": 0.21174151766859073, + "noteOrder": 1160, + "time": 0.2117415176685907, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1356, - "time": 0.24778262705898918, + "noteOrder": 1357, + "time": 0.24778262705898915, "position": { "x": 5, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1504, - "time": 0.274813459101788, + "noteOrder": 1505, + "time": 0.27481345910178795, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1702, - "time": 0.31085456849218646, + "noteOrder": 1703, + "time": 0.3108545684921864, "position": { "x": 2, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1726, - "time": 0.3153597071659862, + "noteOrder": 1727, + "time": 0.31535970716598616, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1751, - "time": 0.319864845839786, + "noteOrder": 1752, + "time": 0.31986484583978597, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 1801, "time": 0.3288751231873856, "position": { "x": 8, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1825, - "time": 0.33338026186118547, + "noteOrder": 1826, + "time": 0.33338026186118536, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.3378854005349852, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.34689567788258485, + "noteOrder": 1900, + "time": 0.3468956778825848, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1948, + "noteOrder": 1949, "time": 0.3559059552301844, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1973, - "time": 0.3604110939039843, + "noteOrder": 1974, + "time": 0.36041109390398424, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1973, - "time": 0.3604110939039843, + "noteOrder": 1974, + "time": 0.36041109390398424, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1998, - "time": 0.36491623257778405, + "noteOrder": 1999, + "time": 0.364916232577784, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1998, - "time": 0.36491623257778405, + "noteOrder": 1999, + "time": 0.364916232577784, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2022, - "time": 0.36942137125158386, + "noteOrder": 2023, + "time": 0.3694213712515838, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2035, - "time": 0.3716739405884838, + "noteOrder": 2036, + "time": 0.3716739405884837, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.3739265099253836, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2072, - "time": 0.37843164859918343, + "noteOrder": 2073, + "time": 0.3784316485991834, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2096, - "time": 0.3829367872729833, + "noteOrder": 2097, + "time": 0.38293678727298325, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2170, + "noteOrder": 2171, "time": 0.39645220329438263, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2183, + "noteOrder": 2184, "time": 0.39870477263128257, "position": { "x": 5, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.4099676193157821, + "noteOrder": 2245, + "time": 0.409967619315782, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2294, - "time": 0.4189778966633817, + "noteOrder": 2295, + "time": 0.41897789666338164, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2343, - "time": 0.4279881740109813, + "noteOrder": 2344, + "time": 0.4279881740109812, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2392, + "noteOrder": 2393, "time": 0.4369984513585809, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2417, - "time": 0.4415035900323807, + "noteOrder": 2418, + "time": 0.44150359003238066, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2442, + "noteOrder": 2443, "time": 0.44600872870618047, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2442, + "noteOrder": 2443, "time": 0.44600872870618047, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2466, - "time": 0.45051386737998034, + "noteOrder": 2467, + "time": 0.4505138673799803, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2491, - "time": 0.45501900605378015, + "noteOrder": 2492, + "time": 0.45501900605378004, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2565, - "time": 0.4685344220751795, + "noteOrder": 2566, + "time": 0.4685344220751794, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2577, + "noteOrder": 2578, "time": 0.4707869914120794, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2639, + "noteOrder": 2640, "time": 0.4820498380965789, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2688, - "time": 0.49106011544417855, + "noteOrder": 2690, + "time": 0.4910601154441785, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5000703927917781, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2764, "time": 0.5045755314655779, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2764, "time": 0.5045755314655779, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.5090806701393777, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.5090806701393777, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2886, + "noteOrder": 2887, "time": 0.5271012248345769, "position": { "x": 2, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2910, - "time": 0.5316063635083768, + "noteOrder": 2912, + "time": 0.5316063635083766, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2935, - "time": 0.5361115021821766, + "noteOrder": 2936, + "time": 0.5361115021821765, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2984, + "noteOrder": 2986, "time": 0.5451217795297761, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.5541320568773758, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3108, + "noteOrder": 3109, "time": 0.5676474728987752, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.5699000422356751, + "noteOrder": 3121, + "time": 0.569900042235675, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3157, - "time": 0.5766577502463748, + "noteOrder": 3158, + "time": 0.5766577502463747, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3182, - "time": 0.5811628889201746, + "noteOrder": 3183, + "time": 0.5811628889201745, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3208, "time": 0.5856680275939744, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3208, "time": 0.5856680275939744, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3231, + "noteOrder": 3232, "time": 0.5901731662677742, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3231, + "noteOrder": 3232, "time": 0.5901731662677742, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3280, + "noteOrder": 3282, "time": 0.5991834436153738, "position": { "x": 8, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.6036885822891737, + "noteOrder": 3306, + "time": 0.6036885822891735, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3331, "time": 0.6081937209629734, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3379, - "time": 0.617203998310573, + "noteOrder": 3380, + "time": 0.6172039983105729, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3428, - "time": 0.6262142756581727, + "noteOrder": 3430, + "time": 0.6262142756581726, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3502, - "time": 0.639729691679572, + "noteOrder": 3504, + "time": 0.6397296916795719, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3515, + "noteOrder": 3516, "time": 0.6419822610164719, "position": { "x": 5, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3552, - "time": 0.6487399690271717, + "noteOrder": 3553, + "time": 0.6487399690271716, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3576, - "time": 0.6532451077009714, + "noteOrder": 3578, + "time": 0.6532451077009713, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3601, + "noteOrder": 3602, "time": 0.6577502463747712, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3601, + "noteOrder": 3602, "time": 0.6577502463747712, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.6622553850485711, + "noteOrder": 3627, + "time": 0.662255385048571, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.6622553850485711, + "noteOrder": 3627, + "time": 0.662255385048571, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.6712656623961707, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3687, - "time": 0.6735182317330706, + "noteOrder": 3689, + "time": 0.6735182317330705, "position": { "x": 5, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.6802759397437702, + "noteOrder": 3726, + "time": 0.6802759397437701, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3736, - "time": 0.6825285090806702, + "noteOrder": 3738, + "time": 0.6825285090806701, "position": { "x": 5, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3872, - "time": 0.7073067717865691, + "noteOrder": 3874, + "time": 0.707306771786569, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3921, - "time": 0.7163170491341687, + "noteOrder": 3923, + "time": 0.7163170491341686, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3995, - "time": 0.7298324651555681, + "noteOrder": 3997, + "time": 0.729832465155568, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4020, + "noteOrder": 4022, "time": 0.7343376038293679, "position": { "x": 7, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4069, - "time": 0.7433478811769676, + "noteOrder": 4071, + "time": 0.7433478811769674, "position": { "x": 5, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4094, + "noteOrder": 4096, "time": 0.7478530198507672, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4119, - "time": 0.7523581585245671, + "noteOrder": 4121, + "time": 0.752358158524567, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4119, - "time": 0.7523581585245671, + "noteOrder": 4121, + "time": 0.752358158524567, "position": { "x": 6, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.7613684358721667, "position": { "x": 2, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.7703787132197663, + "noteOrder": 4219, + "time": 0.7703787132197661, "position": { "x": 8, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4267, + "noteOrder": 4269, "time": 0.7793889905673659, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.7838941292411657, + "noteOrder": 4293, + "time": 0.7838941292411656, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4316, - "time": 0.7883992679149656, + "noteOrder": 4318, + "time": 0.7883992679149655, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4316, - "time": 0.7883992679149656, + "noteOrder": 4318, + "time": 0.7883992679149655, "position": { "x": 6, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4341, + "noteOrder": 4343, "time": 0.7929044065887653, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4341, + "noteOrder": 4343, "time": 0.7929044065887653, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4538, - "time": 0.8289455159791638, + "noteOrder": 4540, + "time": 0.8289455159791637, "position": { "x": 3, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4550, + "noteOrder": 4552, "time": 0.8311980853160637, "position": { "x": 5, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.8334506546529636, + "noteOrder": 4565, + "time": 0.8334506546529634, "position": { "x": 7, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4587, - "time": 0.8379557933267634, + "noteOrder": 4589, + "time": 0.8379557933267633, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4587, - "time": 0.8379557933267634, + "noteOrder": 4589, + "time": 0.8379557933267633, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.8424609320005632, + "noteOrder": 4614, + "time": 0.842460932000563, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.8424609320005632, + "noteOrder": 4614, + "time": 0.842460932000563, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.8514712093481628, "position": { "x": 2, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.8559763480219627, + "noteOrder": 4688, + "time": 0.8559763480219624, "position": { "x": 6, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4711, - "time": 0.8604814866957624, + "noteOrder": 4713, + "time": 0.8604814866957622, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4785, + "noteOrder": 4787, "time": 0.8739969027171618, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4809, - "time": 0.8785020413909617, + "noteOrder": 4812, + "time": 0.8785020413909616, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.8830071800647614, + "noteOrder": 4836, + "time": 0.8830071800647613, "position": { "x": 6, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.8830071800647614, + "noteOrder": 4836, + "time": 0.8830071800647613, "position": { "x": 4, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8875123187385612, "position": { "x": 3, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8875123187385612, "position": { "x": 7, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4886, "time": 0.8920174574123609, "position": { "x": 6, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4886, "time": 0.8920174574123609, "position": { "x": 4, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.8965225960861608, + "noteOrder": 4910, + "time": 0.8965225960861607, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.8965225960861608, + "noteOrder": 4910, + "time": 0.8965225960861607, "position": { "x": 7, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.9010277347599607, + "noteOrder": 4935, + "time": 0.9010277347599606, "position": { "x": 6, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.9010277347599607, + "noteOrder": 4935, + "time": 0.9010277347599606, "position": { "x": 4, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4945, - "time": 0.9032803040968604, + "noteOrder": 4947, + "time": 0.9032803040968603, "position": { "x": 6, "y": 0 @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4945, - "time": 0.9032803040968604, + "noteOrder": 4947, + "time": 0.9032803040968603, "position": { "x": 4, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4957, - "time": 0.9055328734337604, + "noteOrder": 4960, + "time": 0.9055328734337603, "position": { "x": 3, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4957, - "time": 0.9055328734337604, + "noteOrder": 4960, + "time": 0.9055328734337603, "position": { "x": 7, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4982, - "time": 0.9100380121075603, + "noteOrder": 4984, + "time": 0.9100380121075601, "position": { "x": 4, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4982, - "time": 0.9100380121075603, + "noteOrder": 4984, + "time": 0.9100380121075601, "position": { "x": 6, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.9122905814444602, + "noteOrder": 4997, + "time": 0.9122905814444601, "position": { "x": 4, "y": 0 @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.9122905814444602, + "noteOrder": 4997, + "time": 0.9122905814444601, "position": { "x": 6, "y": 0 @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5009, "time": 0.91454315078136, "position": { "x": 7, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5009, "time": 0.91454315078136, "position": { "x": 3, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5056, - "time": 0.9235534281289597, + "noteOrder": 5058, + "time": 0.9235534281289595, "position": { "x": 6, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5105, - "time": 0.9325637054765593, + "noteOrder": 5108, + "time": 0.9325637054765591, "position": { "x": 4, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5130, - "time": 0.937068844150359, + "noteOrder": 5132, + "time": 0.9370688441503588, "position": { "x": 7, "y": 0 @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5155, + "noteOrder": 5157, "time": 0.9415739828241588, "position": { "x": 3, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5179, - "time": 0.9460791214979587, + "noteOrder": 5182, + "time": 0.9460791214979585, "position": { "x": 4, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5179, - "time": 0.9460791214979587, + "noteOrder": 5182, + "time": 0.9460791214979585, "position": { "x": 6, "y": 0 @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5204, + "noteOrder": 5206, "time": 0.9505842601717585, "position": { "x": 3, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5204, + "noteOrder": 5206, "time": 0.9505842601717585, "position": { "x": 7, @@ -3396,10 +3396,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 99, - "time": 0.018020554695199212, + "time": 0.01802055469519921, "position": { "x": 3, "y": 0 @@ -3419,10 +3419,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 197, - "time": 0.036041109390398424, + "time": 0.03604110939039842, "position": { "x": 3, "y": 0 @@ -3442,7 +3442,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 296, "time": 0.054061664085597635, @@ -3465,10 +3465,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 395, - "time": 0.07208221878079685, + "time": 0.07208221878079683, "position": { "x": 7, "y": 0 @@ -3488,10 +3488,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 493, - "time": 0.09010277347599607, + "time": 0.09010277347599606, "position": { "x": 4, "y": 0 @@ -3511,10 +3511,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 518, - "time": 0.09460791214979586, + "time": 0.09460791214979584, "position": { "x": 4, "y": 0 @@ -3534,7 +3534,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 543, "time": 0.09911305082359566, @@ -3557,10 +3557,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 567, - "time": 0.10361818949739547, + "noteOrder": 568, + "time": 0.10361818949739546, "position": { "x": 6, "y": 0 @@ -3580,7 +3580,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 592, "time": 0.10812332817119527, @@ -3603,10 +3603,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 617, - "time": 0.11262846684499508, + "time": 0.11262846684499507, "position": { "x": 3, "y": 0 @@ -3626,10 +3626,10 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 641, - "time": 0.11713360551879487, + "noteOrder": 642, + "time": 0.11713360551879486, "position": { "x": 4, "y": 0 @@ -3649,7 +3649,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 691, "time": 0.12614388286639447, @@ -3672,9 +3672,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 715, + "noteOrder": 716, "time": 0.13064902154019428, "position": { "x": 6, @@ -3695,7 +3695,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 740, "time": 0.1351541602139941, @@ -3718,10 +3718,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 765, - "time": 0.1396592988877939, + "time": 0.13965929888779388, "position": { "x": 4, "y": 0 @@ -3741,10 +3741,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 789, - "time": 0.1441644375615937, + "noteOrder": 790, + "time": 0.14416443756159367, "position": { "x": 7, "y": 0 @@ -3764,10 +3764,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 814, - "time": 0.1486695762353935, + "time": 0.14866957623539348, "position": { "x": 7, "y": 0 @@ -3787,7 +3787,7 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 839, "time": 0.1531747149091933, @@ -3810,10 +3810,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1036, - "time": 0.18921582429959172, + "time": 0.1892158242995917, "position": { "x": 7, "y": 0 @@ -3833,7 +3833,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1061, "time": 0.19372096297339153, @@ -3856,9 +3856,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.19822610164719132, "position": { "x": 3, @@ -3879,10 +3879,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1110, - "time": 0.20273124032099116, + "time": 0.20273124032099113, "position": { "x": 3, "y": 0 @@ -3902,10 +3902,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1135, - "time": 0.20723637899479094, + "time": 0.20723637899479092, "position": { "x": 7, "y": 0 @@ -3925,10 +3925,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1159, - "time": 0.21174151766859073, + "noteOrder": 1160, + "time": 0.2117415176685907, "position": { "x": 7, "y": 0 @@ -3948,10 +3948,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1209, - "time": 0.22075179501619036, + "time": 0.22075179501619033, "position": { "x": 7, "y": 0 @@ -3971,10 +3971,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1258, - "time": 0.22976207236378995, + "time": 0.22976207236378993, "position": { "x": 3, "y": 0 @@ -3994,10 +3994,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1209, - "time": 0.22075179501619036, + "time": 0.22075179501619033, "position": { "x": 3, "y": 0 @@ -4017,10 +4017,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1258, - "time": 0.22976207236378995, + "time": 0.22976207236378993, "position": { "x": 7, "y": 0 @@ -4040,10 +4040,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1282, - "time": 0.23426721103758974, + "noteOrder": 1283, + "time": 0.2342672110375897, "position": { "x": 5, "y": 0 @@ -4063,10 +4063,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1307, - "time": 0.23877234971138958, + "noteOrder": 1308, + "time": 0.23877234971138955, "position": { "x": 5, "y": 0 @@ -4086,10 +4086,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1307, - "time": 0.23877234971138958, + "noteOrder": 1308, + "time": 0.23877234971138955, "position": { "x": 5, "y": 0 @@ -4109,10 +4109,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1332, - "time": 0.24327748838518937, + "time": 0.24327748838518934, "position": { "x": 5, "y": 0 @@ -4132,10 +4132,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1332, - "time": 0.24327748838518937, + "time": 0.24327748838518934, "position": { "x": 5, "y": 0 @@ -4155,10 +4155,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1356, - "time": 0.24778262705898918, + "noteOrder": 1357, + "time": 0.24778262705898915, "position": { "x": 5, "y": 0 @@ -4178,9 +4178,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1381, + "noteOrder": 1382, "time": 0.25228776573278894, "position": { "x": 7, @@ -4200,13 +4200,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1406, - "time": 0.2567929044065888, + "noteOrder": 1394, + "time": 0.25454033506968887, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4218,18 +4218,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1430, - "time": 0.26129804308038856, + "noteOrder": 1394, + "time": 0.25454033506968887, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4246,11 +4246,11 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1455, - "time": 0.2658031817541884, + "noteOrder": 1406, + "time": 0.25679290440658875, "position": { "x": 3, "y": 0 @@ -4269,13 +4269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1480, - "time": 0.2703083204279882, + "noteOrder": 1419, + "time": 0.25904547374348863, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4287,18 +4287,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1529, - "time": 0.2793185977755878, + "noteOrder": 1419, + "time": 0.25904547374348863, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4315,13 +4315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1578, - "time": 0.2883288751231874, + "noteOrder": 1431, + "time": 0.26129804308038856, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4333,18 +4333,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1591, - "time": 0.2905814444600873, + "noteOrder": 1443, + "time": 0.26355061241728844, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4356,18 +4356,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 2, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1603, - "time": 0.2928340137969872, + "noteOrder": 1443, + "time": 0.26355061241728844, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4379,18 +4379,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1615, - "time": 0.2950865831338871, + "noteOrder": 1456, + "time": 0.2658031817541883, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4407,13 +4407,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 4, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1628, - "time": 0.297339152470787, + "noteOrder": 1468, + "time": 0.26805575109108826, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4430,11 +4430,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 5, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1640, - "time": 0.2995917218076869, + "noteOrder": 1468, + "time": 0.26805575109108826, "position": { "x": 4, "y": 0 @@ -4453,13 +4453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 6, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1652, - "time": 0.30184429114458683, + "noteOrder": 1480, + "time": 0.2703083204279882, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4471,18 +4471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1578, - "time": 0.2883288751231874, + "noteOrder": 1493, + "time": 0.27256088976488807, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4499,11 +4499,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1591, - "time": 0.2905814444600873, + "noteOrder": 1493, + "time": 0.27256088976488807, "position": { "x": 6, "y": 0 @@ -4522,13 +4522,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 2, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1603, - "time": 0.2928340137969872, + "noteOrder": 1505, + "time": 0.27481345910178795, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4545,11 +4545,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 3, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1615, - "time": 0.2950865831338871, + "noteOrder": 1505, + "time": 0.27481345910178795, "position": { "x": 7, "y": 0 @@ -4568,13 +4568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 4, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1628, - "time": 0.297339152470787, + "noteOrder": 1530, + "time": 0.27931859777558776, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4586,18 +4586,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 5, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1640, - "time": 0.2995917218076869, + "noteOrder": 1542, + "time": 0.28157116711248764, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4609,18 +4609,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 6, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1652, - "time": 0.30184429114458683, + "noteOrder": 1542, + "time": 0.28157116711248764, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4632,18 +4632,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1677, - "time": 0.3063494298183866, + "noteOrder": 1554, + "time": 0.2838237364493876, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4660,13 +4660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1776, - "time": 0.32436998451358584, + "noteOrder": 1554, + "time": 0.2838237364493876, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4683,13 +4683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1776, - "time": 0.32436998451358584, + "noteOrder": 1579, + "time": 0.28832887512318733, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4701,16 +4701,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, - "time": 0.34239053920878504, + "noteOrder": 1591, + "time": 0.29058144446008727, "position": { "x": 4, "y": 0 @@ -4724,18 +4724,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.34239053920878504, + "noteOrder": 1604, + "time": 0.2928340137969872, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4752,13 +4752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1899, - "time": 0.34689567788258485, + "noteOrder": 1616, + "time": 0.2950865831338871, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4775,13 +4775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1924, - "time": 0.3514008165563846, + "noteOrder": 1629, + "time": 0.29733915247078696, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4793,18 +4793,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1948, - "time": 0.3559059552301844, + "noteOrder": 1641, + "time": 0.2995917218076869, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4816,18 +4816,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2121, - "time": 0.38744192594678306, + "noteOrder": 1653, + "time": 0.3018442911445868, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4839,16 +4839,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 2133, - "time": 0.38969449528368294, + "noteOrder": 1579, + "time": 0.28832887512318733, "position": { "x": 6, "y": 0 @@ -4867,13 +4867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 71, "indexInLine": 2, "isSliding": false, - "noteOrder": 2146, - "time": 0.3919470646205829, + "noteOrder": 1591, + "time": 0.29058144446008727, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4890,13 +4890,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2146, - "time": 0.3919470646205829, + "noteOrder": 1604, + "time": 0.2928340137969872, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4908,18 +4908,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2158, - "time": 0.3941996339574828, + "noteOrder": 1616, + "time": 0.2950865831338871, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4931,18 +4931,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2195, - "time": 0.40095734196818245, + "noteOrder": 1629, + "time": 0.29733915247078696, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4959,13 +4959,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2220, - "time": 0.4054624806419823, + "noteOrder": 1641, + "time": 0.2995917218076869, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4977,16 +4977,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2269, - "time": 0.4144727579895819, + "noteOrder": 1653, + "time": 0.3018442911445868, "position": { "x": 7, "y": 0 @@ -5005,13 +5005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2318, - "time": 0.42348303533718146, + "noteOrder": 1678, + "time": 0.3063494298183866, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5028,13 +5028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2368, - "time": 0.4324933126847811, + "noteOrder": 1777, + "time": 0.3243699845135858, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5046,16 +5046,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 2392, - "time": 0.4369984513585809, + "noteOrder": 1777, + "time": 0.3243699845135858, "position": { "x": 7, "y": 0 @@ -5074,13 +5074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 76, "indexInLine": 2, "isSliding": false, - "noteOrder": 2417, - "time": 0.4415035900323807, + "noteOrder": 1875, + "time": 0.34239053920878504, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5097,11 +5097,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2516, - "time": 0.4595241447275799, + "noteOrder": 1875, + "time": 0.34239053920878504, "position": { "x": 3, "y": 0 @@ -5120,13 +5120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2528, - "time": 0.46177671406447984, + "noteOrder": 1900, + "time": 0.3468956778825848, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5143,13 +5143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 2, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2540, - "time": 0.4640292834013797, + "noteOrder": 1925, + "time": 0.3514008165563846, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5161,16 +5161,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2540, - "time": 0.4640292834013797, + "noteOrder": 1949, + "time": 0.3559059552301844, "position": { "x": 7, "y": 0 @@ -5189,13 +5189,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 2553, - "time": 0.46628185273827966, + "noteOrder": 2122, + "time": 0.38744192594678306, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5212,13 +5212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2590, - "time": 0.47303956074897935, + "noteOrder": 2134, + "time": 0.38969449528368294, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5230,16 +5230,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2614, - "time": 0.47754469942277916, + "noteOrder": 2147, + "time": 0.3919470646205828, "position": { "x": 7, "y": 0 @@ -5258,11 +5258,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2664, - "time": 0.48655497677037873, + "noteOrder": 2147, + "time": 0.3919470646205828, "position": { "x": 3, "y": 0 @@ -5281,13 +5281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2713, - "time": 0.49556525411797836, + "noteOrder": 2159, + "time": 0.39419963395748275, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5299,18 +5299,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2812, - "time": 0.5135858088131776, + "noteOrder": 2196, + "time": 0.40095734196818245, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5322,18 +5322,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2836, - "time": 0.5180909474869774, + "noteOrder": 2208, + "time": 0.4032099113050823, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5345,16 +5345,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.5135858088131776, + "noteOrder": 2208, + "time": 0.4032099113050823, "position": { "x": 6, "y": 0 @@ -5373,13 +5373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2836, - "time": 0.5180909474869774, + "noteOrder": 2221, + "time": 0.40546248064198226, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5391,18 +5391,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2861, - "time": 0.5225960861607771, + "noteOrder": 2233, + "time": 0.40771504997888214, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5419,11 +5419,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2886, - "time": 0.5271012248345769, + "noteOrder": 2233, + "time": 0.40771504997888214, "position": { "x": 4, "y": 0 @@ -5442,13 +5442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 2, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2960, - "time": 0.5406166408559764, + "noteOrder": 2245, + "time": 0.409967619315782, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5465,13 +5465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2960, - "time": 0.5406166408559764, + "noteOrder": 2245, + "time": 0.409967619315782, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5483,16 +5483,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 101, "indexInLine": 1, "isSliding": false, - "noteOrder": 2984, - "time": 0.5451217795297761, + "noteOrder": 2270, + "time": 0.41447275798958183, "position": { "x": 7, "y": 0 @@ -5511,13 +5511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3009, - "time": 0.549626918203576, + "noteOrder": 2282, + "time": 0.4167253273264817, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5529,18 +5529,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3034, - "time": 0.5541320568773758, + "noteOrder": 2282, + "time": 0.4167253273264817, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5552,18 +5552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3058, - "time": 0.5586371955511756, + "noteOrder": 2295, + "time": 0.41897789666338164, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5580,13 +5580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3083, - "time": 0.5631423342249754, + "noteOrder": 2295, + "time": 0.41897789666338164, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5598,16 +5598,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3132, - "time": 0.572152611572575, + "noteOrder": 2319, + "time": 0.4234830353371814, "position": { "x": 7, "y": 0 @@ -5621,18 +5621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3256, - "time": 0.594678304941574, + "noteOrder": 2332, + "time": 0.4257356046740814, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5644,16 +5644,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3280, - "time": 0.5991834436153738, + "noteOrder": 2332, + "time": 0.4257356046740814, "position": { "x": 6, "y": 0 @@ -5667,18 +5667,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 2, + "lineGroupId": 103, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3354, - "time": 0.6126988596367732, + "noteOrder": 2344, + "time": 0.4279881740109812, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5690,18 +5690,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3354, - "time": 0.6126988596367732, + "noteOrder": 2344, + "time": 0.4279881740109812, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5718,13 +5718,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 3379, - "time": 0.617203998310573, + "noteOrder": 2369, + "time": 0.4324933126847811, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5736,16 +5736,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3404, - "time": 0.6217091369843729, + "noteOrder": 2393, + "time": 0.4369984513585809, "position": { "x": 7, "y": 0 @@ -5764,13 +5764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3428, - "time": 0.6262142756581727, + "noteOrder": 2418, + "time": 0.44150359003238066, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5787,11 +5787,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3453, - "time": 0.6307194143319724, + "noteOrder": 2517, + "time": 0.45952414472757985, "position": { "x": 3, "y": 0 @@ -5810,13 +5810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3478, - "time": 0.6352245530057722, + "noteOrder": 2529, + "time": 0.46177671406447973, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5828,18 +5828,2272 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2541, + "time": 0.46402928340137967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2541, + "time": 0.46402928340137967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2554, + "time": 0.46628185273827955, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2591, + "time": 0.47303956074897924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2603, + "time": 0.4752921300858792, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2603, + "time": 0.4752921300858792, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2615, + "time": 0.4775446994227791, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2628, + "time": 0.479797268759679, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2628, + "time": 0.479797268759679, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2640, + "time": 0.4820498380965789, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2640, + "time": 0.4820498380965789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2665, + "time": 0.4865549767703787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2677, + "time": 0.4888075461072786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2677, + "time": 0.4888075461072786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2690, + "time": 0.4910601154441785, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2690, + "time": 0.4910601154441785, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2714, + "time": 0.4955652541179783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2727, + "time": 0.4978178234548782, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2727, + "time": 0.4978178234548782, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2739, + "time": 0.5000703927917781, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2739, + "time": 0.5000703927917781, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2813, + "time": 0.5135858088131775, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2838, + "time": 0.5180909474869773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2813, + "time": 0.5135858088131775, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2838, + "time": 0.5180909474869773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2862, + "time": 0.5225960861607771, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2887, + "time": 0.5271012248345769, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2961, + "time": 0.5406166408559764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2961, + "time": 0.5406166408559764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2986, + "time": 0.5451217795297761, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3010, + "time": 0.5496269182035759, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3035, + "time": 0.5541320568773758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3060, + "time": 0.5586371955511755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3072, + "time": 0.5608897648880754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3072, + "time": 0.5608897648880754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3084, + "time": 0.5631423342249753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3097, + "time": 0.5653949035618753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3097, + "time": 0.5653949035618753, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3134, + "time": 0.5721526115725749, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3146, + "time": 0.5744051809094748, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3146, + "time": 0.5744051809094748, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3257, + "time": 0.5946783049415739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3282, + "time": 0.5991834436153738, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3356, + "time": 0.6126988596367732, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3356, + "time": 0.6126988596367732, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3380, + "time": 0.6172039983105729, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3405, + "time": 0.6217091369843728, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3430, + "time": 0.6262142756581726, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3454, + "time": 0.6307194143319723, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3467, + "time": 0.6329719836688723, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3467, + "time": 0.6329719836688723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3479, + "time": 0.6352245530057722, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3491, + "time": 0.637477122342672, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3491, + "time": 0.637477122342672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3528, + "time": 0.6442348303533718, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3541, + "time": 0.6464873996902717, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3541, + "time": 0.6464873996902717, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.6667605237223707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3664, + "time": 0.6690130930592707, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3664, + "time": 0.6690130930592707, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3676, + "time": 0.6712656623961707, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3701, + "time": 0.6757708010699705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6780233704068703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3713, + "time": 0.6780233704068703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3726, + "time": 0.6802759397437701, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6847810784175701, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6870336477544698, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6870336477544698, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6892862170913698, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6892862170913698, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6892862170913698, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3788, + "time": 0.6915387864282697, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3788, + "time": 0.6915387864282697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3800, + "time": 0.6937913557651696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3825, + "time": 0.6982964944389695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3800, + "time": 0.6937913557651696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3825, + "time": 0.6982964944389695, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3849, + "time": 0.7028016331127692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3874, + "time": 0.707306771786569, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3899, + "time": 0.7118119104603688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3923, + "time": 0.7163170491341686, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3948, + "time": 0.7208221878079685, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3960, + "time": 0.7230747571448684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3960, + "time": 0.7230747571448684, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3973, + "time": 0.7253273264817682, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3985, + "time": 0.7275798958186682, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3985, + "time": 0.7275798958186682, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3997, + "time": 0.729832465155568, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3997, + "time": 0.729832465155568, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4010, + "time": 0.732085034492468, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4010, + "time": 0.732085034492468, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4022, + "time": 0.7343376038293679, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4022, + "time": 0.7343376038293679, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4047, + "time": 0.7388427425031676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4071, + "time": 0.7433478811769674, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4096, + "time": 0.7478530198507672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4145, + "time": 0.7568632971983668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4170, + "time": 0.7613684358721667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3527, - "time": 0.6442348303533719, + "noteOrder": 4195, + "time": 0.7658735745459665, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5851,18 +8105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, - "time": 0.6667605237223709, + "noteOrder": 4219, + "time": 0.7703787132197661, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5879,13 +8133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3675, - "time": 0.6712656623961707, + "noteOrder": 4244, + "time": 0.7748838518935661, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5897,16 +8151,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3699, - "time": 0.6757708010699705, + "noteOrder": 4269, + "time": 0.7793889905673659, "position": { "x": 3, "y": 0 @@ -5925,11 +8179,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3724, - "time": 0.6802759397437702, + "noteOrder": 4293, + "time": 0.7838941292411656, "position": { "x": 4, "y": 0 @@ -5948,13 +8202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3749, - "time": 0.6847810784175701, + "noteOrder": 4367, + "time": 0.7974095452625651, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5971,11 +8225,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3773, - "time": 0.68928621709137, + "noteOrder": 4417, + "time": 0.8064198226101646, "position": { "x": 7, "y": 0 @@ -5989,18 +8243,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 2, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6937913557651697, + "noteOrder": 4367, + "time": 0.7974095452625651, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6017,13 +8271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 3, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3823, - "time": 0.6982964944389695, + "noteOrder": 4417, + "time": 0.8064198226101646, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6040,11 +8294,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6937913557651697, + "noteOrder": 4441, + "time": 0.8109249612839645, "position": { "x": 7, "y": 0 @@ -6063,13 +8317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3823, - "time": 0.6982964944389695, + "noteOrder": 4454, + "time": 0.8131775306208643, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6086,13 +8340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3847, - "time": 0.7028016331127692, + "noteOrder": 4454, + "time": 0.8131775306208643, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6109,13 +8363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3872, - "time": 0.7073067717865691, + "noteOrder": 4466, + "time": 0.8154300999577643, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6132,13 +8386,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3897, - "time": 0.7118119104603688, + "noteOrder": 4466, + "time": 0.8154300999577643, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6150,18 +8404,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 206, "indexInLine": 1, "isSliding": false, - "noteOrder": 3921, - "time": 0.7163170491341687, + "noteOrder": 4466, + "time": 0.8154300999577643, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6178,11 +8432,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3946, - "time": 0.7208221878079686, + "noteOrder": 4478, + "time": 0.8176826692946643, "position": { "x": 7, "y": 0 @@ -6196,18 +8450,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3971, - "time": 0.7253273264817682, + "noteOrder": 4478, + "time": 0.8176826692946643, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6224,13 +8478,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4045, - "time": 0.7388427425031677, + "noteOrder": 4491, + "time": 0.819935238631564, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6242,18 +8496,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4069, - "time": 0.7433478811769676, + "noteOrder": 4491, + "time": 0.819935238631564, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6265,18 +8519,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 2, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4094, - "time": 0.7478530198507672, + "noteOrder": 4491, + "time": 0.819935238631564, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6293,13 +8547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4143, - "time": 0.7568632971983669, + "noteOrder": 4503, + "time": 0.822187807968464, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6311,18 +8565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4168, - "time": 0.7613684358721667, + "noteOrder": 4503, + "time": 0.822187807968464, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6334,18 +8588,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4193, - "time": 0.7658735745459666, + "noteOrder": 4515, + "time": 0.8244403773053639, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6357,18 +8611,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4217, - "time": 0.7703787132197663, + "noteOrder": 4528, + "time": 0.8266929466422638, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6380,18 +8634,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4242, - "time": 0.7748838518935661, + "noteOrder": 4528, + "time": 0.8266929466422638, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6408,13 +8662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4267, - "time": 0.7793889905673659, + "noteOrder": 4639, + "time": 0.8469660706743628, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6431,11 +8685,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 216, "indexInLine": 2, "isSliding": false, - "noteOrder": 4291, - "time": 0.7838941292411657, + "noteOrder": 4663, + "time": 0.8514712093481628, "position": { "x": 4, "y": 0 @@ -6454,13 +8708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4365, - "time": 0.7974095452625651, + "noteOrder": 4737, + "time": 0.8649866253695622, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6472,16 +8726,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4415, - "time": 0.8064198226101648, + "noteOrder": 4737, + "time": 0.8649866253695622, "position": { "x": 7, "y": 0 @@ -6500,11 +8754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4365, - "time": 0.7974095452625651, + "noteOrder": 4750, + "time": 0.867239194706462, "position": { "x": 7, "y": 0 @@ -6518,18 +8772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4415, - "time": 0.8064198226101648, + "noteOrder": 4750, + "time": 0.867239194706462, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6541,18 +8795,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4439, - "time": 0.8109249612839646, + "noteOrder": 4762, + "time": 0.8694917640433619, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6564,18 +8818,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4464, - "time": 0.8154300999577644, + "noteOrder": 4774, + "time": 0.8717443333802618, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6592,13 +8846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4489, - "time": 0.8199352386315641, + "noteOrder": 4774, + "time": 0.8717443333802618, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6610,18 +8864,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4513, - "time": 0.8244403773053639, + "noteOrder": 4787, + "time": 0.8739969027171618, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6638,13 +8892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4637, - "time": 0.8469660706743629, + "noteOrder": 4787, + "time": 0.8739969027171618, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6661,13 +8915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4661, - "time": 0.8514712093481628, + "noteOrder": 4799, + "time": 0.8762494720540616, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6684,13 +8938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 2, + "lineGroupId": 221, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4735, - "time": 0.8649866253695622, + "noteOrder": 4799, + "time": 0.8762494720540616, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6707,13 +8961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4735, - "time": 0.8649866253695622, + "noteOrder": 4812, + "time": 0.8785020413909616, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6725,16 +8979,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4760, - "time": 0.8694917640433619, + "noteOrder": 4812, + "time": 0.8785020413909616, "position": { "x": 3, "y": 0 @@ -6754,10 +9008,10 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5031, - "time": 0.9190482894551598, + "noteOrder": 5034, + "time": 0.9190482894551597, "position": { "x": 7, "y": 0 @@ -6777,10 +9031,10 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5056, - "time": 0.9235534281289597, + "noteOrder": 5058, + "time": 0.9235534281289595, "position": { "x": 7, "y": 0 @@ -6800,10 +9054,10 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5081, - "time": 0.9280585668027594, + "noteOrder": 5083, + "time": 0.9280585668027593, "position": { "x": 3, "y": 0 @@ -6823,10 +9077,10 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5105, - "time": 0.9325637054765593, + "noteOrder": 5108, + "time": 0.9325637054765591, "position": { "x": 3, "y": 0 diff --git a/tracks/She Shines Under The Mirror Ball/339_difficulty_1b.json b/tracks/She Shines Under The Mirror Ball/339_difficulty_1b.json index 10380b36..35fee614 100644 --- a/tracks/She Shines Under The Mirror Ball/339_difficulty_1b.json +++ b/tracks/She Shines Under The Mirror Ball/339_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 197, - "time": 0.036041109390398424, + "time": 0.03604110939039842, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 222, - "time": 0.04054624806419823, + "time": 0.04054624806419822, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 247, - "time": 0.045051386737998037, + "time": 0.04505138673799803, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 395, - "time": 0.07208221878079685, + "time": 0.07208221878079683, "position": { "x": 6, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 567, - "time": 0.10361818949739547, + "noteOrder": 568, + "time": 0.10361818949739546, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 617, - "time": 0.11262846684499508, + "time": 0.11262846684499507, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 641, - "time": 0.11713360551879487, + "noteOrder": 642, + "time": 0.11713360551879486, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 666, - "time": 0.12163874419259468, + "time": 0.12163874419259467, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 765, - "time": 0.1396592988877939, + "time": 0.13965929888779388, "position": { "x": 4, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 789, - "time": 0.1441644375615937, + "noteOrder": 790, + "time": 0.14416443756159367, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 814, - "time": 0.1486695762353935, + "time": 0.14866957623539348, "position": { "x": 4, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 863, - "time": 0.1576798535829931, + "noteOrder": 864, + "time": 0.15767985358299308, "position": { "x": 3, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17119526960439252, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.17119526960439252, "position": { "x": 6, @@ -414,7 +414,7 @@ }, { "noteOrder": 987, - "time": 0.18020554695199215, + "time": 0.18020554695199212, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1011, - "time": 0.18471068562579193, + "noteOrder": 1012, + "time": 0.1847106856257919, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1036, - "time": 0.18921582429959172, + "time": 0.1892158242995917, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1135, - "time": 0.20723637899479094, + "time": 0.20723637899479092, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1159, - "time": 0.21174151766859073, + "noteOrder": 1160, + "time": 0.2117415176685907, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1209, - "time": 0.22075179501619036, + "time": 0.22075179501619033, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1381, + "noteOrder": 1382, "time": 0.25228776573278894, "position": { "x": 7, @@ -594,7 +594,7 @@ }, { "noteOrder": 1406, - "time": 0.2567929044065888, + "time": 0.25679290440658875, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1430, + "noteOrder": 1431, "time": 0.26129804308038856, "position": { "x": 6, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1455, - "time": 0.2658031817541884, + "noteOrder": 1456, + "time": 0.2658031817541883, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1677, + "noteOrder": 1678, "time": 0.3063494298183866, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1702, - "time": 0.31085456849218646, + "noteOrder": 1703, + "time": 0.3108545684921864, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1726, - "time": 0.3153597071659862, + "noteOrder": 1727, + "time": 0.31535970716598616, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1751, - "time": 0.319864845839786, + "noteOrder": 1752, + "time": 0.31986484583978597, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1776, - "time": 0.32436998451358584, + "noteOrder": 1777, + "time": 0.3243699845135858, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 1801, "time": 0.3288751231873856, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1825, - "time": 0.33338026186118547, + "noteOrder": 1826, + "time": 0.33338026186118536, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.3378854005349852, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2022, - "time": 0.36942137125158386, + "noteOrder": 2023, + "time": 0.3694213712515838, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2022, - "time": 0.36942137125158386, + "noteOrder": 2023, + "time": 0.3694213712515838, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.3739265099253836, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.3739265099253836, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2121, + "noteOrder": 2122, "time": 0.38744192594678306, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2146, - "time": 0.3919470646205829, + "noteOrder": 2147, + "time": 0.3919470646205828, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2170, + "noteOrder": 2171, "time": 0.39645220329438263, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2195, + "noteOrder": 2196, "time": 0.40095734196818245, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2220, - "time": 0.4054624806419823, + "noteOrder": 2221, + "time": 0.40546248064198226, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.4099676193157821, + "noteOrder": 2245, + "time": 0.409967619315782, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2318, - "time": 0.42348303533718146, + "noteOrder": 2319, + "time": 0.4234830353371814, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2343, - "time": 0.4279881740109813, + "noteOrder": 2344, + "time": 0.4279881740109812, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2368, + "noteOrder": 2369, "time": 0.4324933126847811, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2392, + "noteOrder": 2393, "time": 0.4369984513585809, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2417, - "time": 0.4415035900323807, + "noteOrder": 2418, + "time": 0.44150359003238066, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2442, + "noteOrder": 2443, "time": 0.44600872870618047, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2516, - "time": 0.4595241447275799, + "noteOrder": 2517, + "time": 0.45952414472757985, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2540, - "time": 0.4640292834013797, + "noteOrder": 2541, + "time": 0.46402928340137967, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2565, - "time": 0.4685344220751795, + "noteOrder": 2566, + "time": 0.4685344220751794, "position": { "x": 3, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2590, - "time": 0.47303956074897935, + "noteOrder": 2591, + "time": 0.47303956074897924, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2614, - "time": 0.47754469942277916, + "noteOrder": 2615, + "time": 0.4775446994227791, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2639, + "noteOrder": 2640, "time": 0.4820498380965789, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2713, - "time": 0.49556525411797836, + "noteOrder": 2714, + "time": 0.4955652541179783, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5000703927917781, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2762, + "noteOrder": 2764, "time": 0.5045755314655779, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.5090806701393777, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2812, - "time": 0.5135858088131776, + "noteOrder": 2813, + "time": 0.5135858088131775, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.5180909474869774, + "noteOrder": 2838, + "time": 0.5180909474869773, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2910, - "time": 0.5316063635083768, + "noteOrder": 2912, + "time": 0.5316063635083766, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2935, - "time": 0.5361115021821766, + "noteOrder": 2936, + "time": 0.5361115021821765, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3058, - "time": 0.5586371955511756, + "noteOrder": 3060, + "time": 0.5586371955511755, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3083, - "time": 0.5631423342249754, + "noteOrder": 3084, + "time": 0.5631423342249753, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3108, + "noteOrder": 3109, "time": 0.5676474728987752, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3108, + "noteOrder": 3109, "time": 0.5676474728987752, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3132, - "time": 0.572152611572575, + "noteOrder": 3134, + "time": 0.5721526115725749, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3132, - "time": 0.572152611572575, + "noteOrder": 3134, + "time": 0.5721526115725749, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3157, - "time": 0.5766577502463748, + "noteOrder": 3158, + "time": 0.5766577502463747, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3182, - "time": 0.5811628889201746, + "noteOrder": 3183, + "time": 0.5811628889201745, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.6036885822891737, + "noteOrder": 3306, + "time": 0.6036885822891735, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3331, "time": 0.6081937209629734, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3453, - "time": 0.6307194143319724, + "noteOrder": 3454, + "time": 0.6307194143319723, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3478, + "noteOrder": 3479, "time": 0.6352245530057722, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3502, - "time": 0.639729691679572, + "noteOrder": 3504, + "time": 0.6397296916795719, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3502, - "time": 0.639729691679572, + "noteOrder": 3504, + "time": 0.6397296916795719, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3527, - "time": 0.6442348303533719, + "noteOrder": 3528, + "time": 0.6442348303533718, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3527, - "time": 0.6442348303533719, + "noteOrder": 3528, + "time": 0.6442348303533718, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3552, - "time": 0.6487399690271717, + "noteOrder": 3553, + "time": 0.6487399690271716, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3576, - "time": 0.6532451077009714, + "noteOrder": 3578, + "time": 0.6532451077009713, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.6667605237223709, + "noteOrder": 3652, + "time": 0.6667605237223707, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.6712656623961707, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 3701, "time": 0.6757708010699705, "position": { "x": 8, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3724, - "time": 0.6802759397437702, + "noteOrder": 3726, + "time": 0.6802759397437701, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3751, "time": 0.6847810784175701, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3773, - "time": 0.68928621709137, + "noteOrder": 3775, + "time": 0.6892862170913698, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.6937913557651697, + "noteOrder": 3800, + "time": 0.6937913557651696, "position": { "x": 2, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3823, + "noteOrder": 3825, "time": 0.6982964944389695, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3897, + "noteOrder": 3899, "time": 0.7118119104603688, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3921, - "time": 0.7163170491341687, + "noteOrder": 3923, + "time": 0.7163170491341686, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3946, - "time": 0.7208221878079686, + "noteOrder": 3948, + "time": 0.7208221878079685, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3973, "time": 0.7253273264817682, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4045, - "time": 0.7388427425031677, + "noteOrder": 4047, + "time": 0.7388427425031676, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4069, - "time": 0.7433478811769676, + "noteOrder": 4071, + "time": 0.7433478811769674, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4094, + "noteOrder": 4096, "time": 0.7478530198507672, "position": { "x": 2, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4119, - "time": 0.7523581585245671, + "noteOrder": 4121, + "time": 0.752358158524567, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4143, - "time": 0.7568632971983669, + "noteOrder": 4145, + "time": 0.7568632971983668, "position": { "x": 6, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.7613684358721667, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4193, - "time": 0.7658735745459666, + "noteOrder": 4195, + "time": 0.7658735745459665, "position": { "x": 8, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.7703787132197663, + "noteOrder": 4219, + "time": 0.7703787132197661, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.7838941292411657, + "noteOrder": 4293, + "time": 0.7838941292411656, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4316, - "time": 0.7883992679149656, + "noteOrder": 4318, + "time": 0.7883992679149655, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4341, + "noteOrder": 4343, "time": 0.7929044065887653, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4365, + "noteOrder": 4367, "time": 0.7974095452625651, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8019146839363649, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4390, + "noteOrder": 4392, "time": 0.8019146839363649, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8064198226101648, + "noteOrder": 4417, + "time": 0.8064198226101646, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.8064198226101648, + "noteOrder": 4417, + "time": 0.8064198226101646, "position": { "x": 3, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4464, - "time": 0.8154300999577644, + "noteOrder": 4466, + "time": 0.8154300999577643, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4513, + "noteOrder": 4515, "time": 0.8244403773053639, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.8334506546529636, + "noteOrder": 4565, + "time": 0.8334506546529634, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.8424609320005632, + "noteOrder": 4614, + "time": 0.842460932000563, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4637, - "time": 0.8469660706743629, + "noteOrder": 4639, + "time": 0.8469660706743628, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.8514712093481628, "position": { "x": 4, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4686, - "time": 0.8559763480219627, + "noteOrder": 4688, + "time": 0.8559763480219624, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4711, - "time": 0.8604814866957624, + "noteOrder": 4713, + "time": 0.8604814866957622, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.8649866253695622, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.8694917640433619, "position": { "x": 3, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4785, + "noteOrder": 4787, "time": 0.8739969027171618, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4785, + "noteOrder": 4787, "time": 0.8739969027171618, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4809, - "time": 0.8785020413909617, + "noteOrder": 4812, + "time": 0.8785020413909616, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4809, - "time": 0.8785020413909617, + "noteOrder": 4812, + "time": 0.8785020413909616, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4834, - "time": 0.8830071800647614, + "noteOrder": 4836, + "time": 0.8830071800647613, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4859, + "noteOrder": 4861, "time": 0.8875123187385612, "position": { "x": 4, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4886, "time": 0.8920174574123609, "position": { "x": 8, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.8965225960861608, + "noteOrder": 4910, + "time": 0.8965225960861607, "position": { "x": 6, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.9010277347599607, + "noteOrder": 4935, + "time": 0.9010277347599606, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4957, - "time": 0.9055328734337604, + "noteOrder": 4960, + "time": 0.9055328734337603, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4982, - "time": 0.9100380121075603, + "noteOrder": 4984, + "time": 0.9100380121075601, "position": { "x": 2, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5009, "time": 0.91454315078136, "position": { "x": 4, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5031, - "time": 0.9190482894551598, + "noteOrder": 5034, + "time": 0.9190482894551597, "position": { "x": 7, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5056, - "time": 0.9235534281289597, + "noteOrder": 5058, + "time": 0.9235534281289595, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5081, - "time": 0.9280585668027594, + "noteOrder": 5083, + "time": 0.9280585668027593, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5105, - "time": 0.9325637054765593, + "noteOrder": 5108, + "time": 0.9325637054765591, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5130, - "time": 0.937068844150359, + "noteOrder": 5132, + "time": 0.9370688441503588, "position": { "x": 3, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5155, + "noteOrder": 5157, "time": 0.9415739828241588, "position": { "x": 7, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5179, - "time": 0.9460791214979587, + "noteOrder": 5182, + "time": 0.9460791214979585, "position": { "x": 6, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5179, - "time": 0.9460791214979587, + "noteOrder": 5182, + "time": 0.9460791214979585, "position": { "x": 4, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5204, + "noteOrder": 5206, "time": 0.9505842601717585, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5204, + "noteOrder": 5206, "time": 0.9505842601717585, "position": { "x": 3, @@ -2976,10 +2976,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 99, - "time": 0.018020554695199212, + "time": 0.01802055469519921, "position": { "x": 7, "y": 0 @@ -2999,10 +2999,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 123, - "time": 0.022525693368999018, + "time": 0.022525693368999015, "position": { "x": 7, "y": 0 @@ -3022,7 +3022,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 148, "time": 0.027030832042798818, @@ -3045,7 +3045,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 173, "time": 0.03153597071659862, @@ -3068,7 +3068,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 296, "time": 0.054061664085597635, @@ -3091,10 +3091,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 321, - "time": 0.058566802759397435, + "time": 0.05856680275939743, "position": { "x": 7, "y": 0 @@ -3114,7 +3114,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 345, "time": 0.06307194143319723, @@ -3137,7 +3137,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 370, "time": 0.06757708010699705, @@ -3160,10 +3160,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 444, - "time": 0.08109249612839646, + "time": 0.08109249612839645, "position": { "x": 3, "y": 0 @@ -3183,7 +3183,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 469, "time": 0.08559763480219626, @@ -3206,10 +3206,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 444, - "time": 0.08109249612839646, + "time": 0.08109249612839645, "position": { "x": 7, "y": 0 @@ -3229,7 +3229,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 469, "time": 0.08559763480219626, @@ -3252,10 +3252,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 493, - "time": 0.09010277347599607, + "time": 0.09010277347599606, "position": { "x": 7, "y": 0 @@ -3275,10 +3275,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 567, - "time": 0.10361818949739547, + "noteOrder": 568, + "time": 0.10361818949739546, "position": { "x": 7, "y": 0 @@ -3298,7 +3298,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 691, "time": 0.12614388286639447, @@ -3321,10 +3321,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 765, - "time": 0.1396592988877939, + "time": 0.13965929888779388, "position": { "x": 3, "y": 0 @@ -3344,10 +3344,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 888, - "time": 0.16218499225679292, + "time": 0.1621849922567929, "position": { "x": 3, "y": 0 @@ -3367,10 +3367,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, - "time": 0.16669013093059273, + "time": 0.16669013093059268, "position": { "x": 3, "y": 0 @@ -3390,10 +3390,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 888, - "time": 0.16218499225679292, + "time": 0.1621849922567929, "position": { "x": 7, "y": 0 @@ -3413,10 +3413,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, - "time": 0.16669013093059273, + "time": 0.16669013093059268, "position": { "x": 7, "y": 0 @@ -3436,9 +3436,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1085, + "noteOrder": 1086, "time": 0.19822610164719132, "position": { "x": 3, @@ -3459,10 +3459,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1159, - "time": 0.21174151766859073, + "noteOrder": 1160, + "time": 0.2117415176685907, "position": { "x": 3, "y": 0 @@ -3482,10 +3482,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1233, - "time": 0.22525693368999017, + "noteOrder": 1234, + "time": 0.22525693368999014, "position": { "x": 3, "y": 0 @@ -3505,10 +3505,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1258, - "time": 0.22976207236378995, + "time": 0.22976207236378993, "position": { "x": 3, "y": 0 @@ -3528,10 +3528,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1233, - "time": 0.22525693368999017, + "noteOrder": 1234, + "time": 0.22525693368999014, "position": { "x": 7, "y": 0 @@ -3551,10 +3551,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1258, - "time": 0.22976207236378995, + "time": 0.22976207236378993, "position": { "x": 7, "y": 0 @@ -3574,10 +3574,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1282, - "time": 0.23426721103758974, + "noteOrder": 1283, + "time": 0.2342672110375897, "position": { "x": 5, "y": 0 @@ -3597,10 +3597,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1307, - "time": 0.23877234971138958, + "noteOrder": 1308, + "time": 0.23877234971138955, "position": { "x": 5, "y": 0 @@ -3620,10 +3620,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1332, - "time": 0.24327748838518937, + "time": 0.24327748838518934, "position": { "x": 5, "y": 0 @@ -3643,10 +3643,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1356, - "time": 0.24778262705898918, + "noteOrder": 1357, + "time": 0.24778262705898915, "position": { "x": 5, "y": 0 @@ -3666,7 +3666,7 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1480, "time": 0.2703083204279882, @@ -3689,10 +3689,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1504, - "time": 0.274813459101788, + "noteOrder": 1505, + "time": 0.27481345910178795, "position": { "x": 7, "y": 0 @@ -3712,10 +3712,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1529, - "time": 0.2793185977755878, + "noteOrder": 1530, + "time": 0.27931859777558776, "position": { "x": 3, "y": 0 @@ -3735,7 +3735,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1554, "time": 0.2838237364493876, @@ -3758,10 +3758,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1578, - "time": 0.2883288751231874, + "noteOrder": 1579, + "time": 0.28832887512318733, "position": { "x": 6, "y": 0 @@ -3781,10 +3781,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1652, - "time": 0.30184429114458683, + "noteOrder": 1653, + "time": 0.3018442911445868, "position": { "x": 7, "y": 0 @@ -3804,10 +3804,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1578, - "time": 0.2883288751231874, + "noteOrder": 1579, + "time": 0.28832887512318733, "position": { "x": 2, "y": 0 @@ -3827,10 +3827,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1652, - "time": 0.30184429114458683, + "noteOrder": 1653, + "time": 0.3018442911445868, "position": { "x": 5, "y": 0 @@ -3850,9 +3850,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.34239053920878504, "position": { "x": 7, @@ -3873,10 +3873,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1899, - "time": 0.34689567788258485, + "noteOrder": 1900, + "time": 0.3468956778825848, "position": { "x": 7, "y": 0 @@ -3896,9 +3896,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1924, + "noteOrder": 1925, "time": 0.3514008165563846, "position": { "x": 3, @@ -3919,9 +3919,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1948, + "noteOrder": 1949, "time": 0.3559059552301844, "position": { "x": 3, @@ -3942,10 +3942,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1973, - "time": 0.3604110939039843, + "noteOrder": 1974, + "time": 0.36041109390398424, "position": { "x": 3, "y": 0 @@ -3965,10 +3965,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, - "time": 0.36491623257778405, + "noteOrder": 1999, + "time": 0.364916232577784, "position": { "x": 3, "y": 0 @@ -3988,10 +3988,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1973, - "time": 0.3604110939039843, + "noteOrder": 1974, + "time": 0.36041109390398424, "position": { "x": 7, "y": 0 @@ -4011,10 +4011,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, - "time": 0.36491623257778405, + "noteOrder": 1999, + "time": 0.364916232577784, "position": { "x": 7, "y": 0 @@ -4034,10 +4034,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2269, - "time": 0.4144727579895819, + "noteOrder": 2270, + "time": 0.41447275798958183, "position": { "x": 3, "y": 0 @@ -4057,10 +4057,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2343, - "time": 0.4279881740109813, + "noteOrder": 2344, + "time": 0.4279881740109812, "position": { "x": 3, "y": 0 @@ -4080,10 +4080,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2664, - "time": 0.48655497677037873, + "noteOrder": 2665, + "time": 0.4865549767703787, "position": { "x": 7, "y": 0 @@ -4103,9 +4103,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5000703927917781, "position": { "x": 7, @@ -4126,9 +4126,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5225960861607771, "position": { "x": 3, @@ -4149,9 +4149,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2886, + "noteOrder": 2887, "time": 0.5271012248345769, "position": { "x": 3, @@ -4172,9 +4172,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.5406166408559764, "position": { "x": 3, @@ -4195,9 +4195,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2984, + "noteOrder": 2986, "time": 0.5451217795297761, "position": { "x": 3, @@ -4218,9 +4218,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.5406166408559764, "position": { "x": 7, @@ -4241,9 +4241,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2984, + "noteOrder": 2986, "time": 0.5451217795297761, "position": { "x": 7, @@ -4264,10 +4264,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3009, - "time": 0.549626918203576, + "noteOrder": 3010, + "time": 0.5496269182035759, "position": { "x": 4, "y": 0 @@ -4287,9 +4287,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.5541320568773758, "position": { "x": 4, @@ -4310,10 +4310,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3009, - "time": 0.549626918203576, + "noteOrder": 3010, + "time": 0.5496269182035759, "position": { "x": 6, "y": 0 @@ -4333,9 +4333,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.5541320568773758, "position": { "x": 6, @@ -4356,10 +4356,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3256, - "time": 0.594678304941574, + "noteOrder": 3257, + "time": 0.5946783049415739, "position": { "x": 7, "y": 0 @@ -4379,9 +4379,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3280, + "noteOrder": 3282, "time": 0.5991834436153738, "position": { "x": 7, @@ -4402,9 +4402,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3354, + "noteOrder": 3356, "time": 0.6126988596367732, "position": { "x": 7, @@ -4425,10 +4425,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3379, - "time": 0.617203998310573, + "noteOrder": 3380, + "time": 0.6172039983105729, "position": { "x": 7, "y": 0 @@ -4448,9 +4448,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3354, + "noteOrder": 3356, "time": 0.6126988596367732, "position": { "x": 3, @@ -4471,10 +4471,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3379, - "time": 0.617203998310573, + "noteOrder": 3380, + "time": 0.6172039983105729, "position": { "x": 3, "y": 0 @@ -4494,10 +4494,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3404, - "time": 0.6217091369843729, + "noteOrder": 3405, + "time": 0.6217091369843728, "position": { "x": 6, "y": 0 @@ -4517,10 +4517,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3428, - "time": 0.6262142756581727, + "noteOrder": 3430, + "time": 0.6262142756581726, "position": { "x": 6, "y": 0 @@ -4540,10 +4540,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3404, - "time": 0.6217091369843729, + "noteOrder": 3405, + "time": 0.6217091369843728, "position": { "x": 4, "y": 0 @@ -4563,10 +4563,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3428, - "time": 0.6262142756581727, + "noteOrder": 3430, + "time": 0.6262142756581726, "position": { "x": 4, "y": 0 @@ -4586,9 +4586,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3847, + "noteOrder": 3849, "time": 0.7028016331127692, "position": { "x": 7, @@ -4609,10 +4609,10 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3921, - "time": 0.7163170491341687, + "noteOrder": 3923, + "time": 0.7163170491341686, "position": { "x": 7, "y": 0 @@ -4632,9 +4632,9 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4242, + "noteOrder": 4244, "time": 0.7748838518935661, "position": { "x": 3, @@ -4655,10 +4655,10 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4316, - "time": 0.7883992679149656, + "noteOrder": 4318, + "time": 0.7883992679149655, "position": { "x": 3, "y": 0 @@ -4678,10 +4678,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4439, - "time": 0.8109249612839646, + "noteOrder": 4441, + "time": 0.8109249612839645, "position": { "x": 3, "y": 0 @@ -4701,10 +4701,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4464, - "time": 0.8154300999577644, + "noteOrder": 4466, + "time": 0.8154300999577643, "position": { "x": 3, "y": 0 @@ -4724,10 +4724,10 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4489, - "time": 0.8199352386315641, + "noteOrder": 4491, + "time": 0.819935238631564, "position": { "x": 3, "y": 0 @@ -4747,9 +4747,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4513, + "noteOrder": 4515, "time": 0.8244403773053639, "position": { "x": 3, @@ -4770,10 +4770,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4538, - "time": 0.8289455159791638, + "noteOrder": 4540, + "time": 0.8289455159791637, "position": { "x": 7, "y": 0 @@ -4793,10 +4793,10 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4563, - "time": 0.8334506546529636, + "noteOrder": 4565, + "time": 0.8334506546529634, "position": { "x": 7, "y": 0 @@ -4816,10 +4816,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4587, - "time": 0.8379557933267634, + "noteOrder": 4589, + "time": 0.8379557933267633, "position": { "x": 7, "y": 0 @@ -4839,10 +4839,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4612, - "time": 0.8424609320005632, + "noteOrder": 4614, + "time": 0.842460932000563, "position": { "x": 7, "y": 0 diff --git a/tracks/She Shines Under The Mirror Ball/info.json b/tracks/She Shines Under The Mirror Ball/info.json index 050b5d0c..36053d56 100644 --- a/tracks/She Shines Under The Mirror Ball/info.json +++ b/tracks/She Shines Under The Mirror Ball/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "She Shines Under The Mirror Ball", - "SongLength": "115.278367", + "SongLength": "105.325714", "SongAuthorName": "BEMANI Sound Team \"Sota F.\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1a.json b/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1a.json index 59e65239..43cc4b93 100644 --- a/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1a.json +++ b/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.020836046360203152, + "time": 0.02083604636020315, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.037504883448365674, + "time": 0.03750488344836567, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 240, - "time": 0.041672092720406305, + "time": 0.0416720927204063, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 432, - "time": 0.07500976689673135, + "time": 0.07500976689673133, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 456, - "time": 0.07917697616877198, + "time": 0.07917697616877196, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 504, - "time": 0.08751139471285324, + "time": 0.08751139471285323, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.09584581325693449, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 577, "time": 0.10001302252897512, "position": { "x": 5, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.10418023180101575, "position": { "x": 8, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.10834744107305638, "position": { "x": 6, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.11251465034509701, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 769, "time": 0.13335069670530017, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.13751790597734082, + "noteOrder": 793, + "time": 0.1375179059773408, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.14168511524938143, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.14168511524938143, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.14585232452142205, + "noteOrder": 841, + "time": 0.14585232452142208, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.14585232452142205, + "noteOrder": 841, + "time": 0.14585232452142208, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 985, "time": 0.17085558015366584, "position": { "x": 3, @@ -574,7 +574,7 @@ }, { "noteOrder": 1165, - "time": 0.20210964969397058, + "time": 0.20210964969397055, "position": { "x": 5, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1189, - "time": 0.20627685896601122, + "time": 0.2062768589660112, "position": { "x": 5, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1417, - "time": 0.24586534705039717, + "time": 0.2458653470503972, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1609, - "time": 0.27920302122672225, + "time": 0.2792030212267222, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.3000390675869254, + "noteOrder": 1730, + "time": 0.30003906758692533, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.304206276858966, + "noteOrder": 1754, + "time": 0.30420627685896595, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.3083734861310066, "position": { "x": 3, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.3125406954030473, + "noteOrder": 1802, + "time": 0.31254069540304724, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1897, - "time": 0.3292095324912098, + "noteOrder": 1898, + "time": 0.32920953249120977, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.33337674176325044, + "noteOrder": 1922, + "time": 0.3333767417632504, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.33754395103529106, + "noteOrder": 1946, + "time": 0.337543951035291, "position": { "x": 3, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3417111603073317, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.34587836957937235, + "noteOrder": 1994, + "time": 0.3458783695793723, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.34587836957937235, + "noteOrder": 1994, + "time": 0.3458783695793723, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2137, - "time": 0.3708816252116161, + "noteOrder": 2138, + "time": 0.37088162521161605, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.3792160437556974, + "noteOrder": 2186, + "time": 0.37921604375569734, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.41255371793202245, + "noteOrder": 2378, + "time": 0.4125537179320224, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.4208881364761037, + "noteOrder": 2426, + "time": 0.4208881364761036, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.4250553457481443, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.4292225550201849, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.4375569735642662, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2546, "time": 0.4417241828363068, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.44589139210834744, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.45422581065242873, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2641, + "noteOrder": 2642, "time": 0.45839301992446935, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.46256022919650996, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2689, + "noteOrder": 2690, "time": 0.4667274384685506, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2714, "time": 0.47089464774059125, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.47506185701263187, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2763, "time": 0.4792290662846725, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2809, + "noteOrder": 2811, "time": 0.4875634848287538, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2833, - "time": 0.49173069410079434, + "noteOrder": 2835, + "time": 0.4917306941007944, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2857, + "noteOrder": 2859, "time": 0.495897903372835, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2905, + "noteOrder": 2907, "time": 0.5042323219169162, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2929, + "noteOrder": 2931, "time": 0.5083995311889569, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2953, + "noteOrder": 2955, "time": 0.5125667404609975, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3001, - "time": 0.5209011590050788, + "noteOrder": 3003, + "time": 0.5209011590050787, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3025, - "time": 0.5250683682771194, + "noteOrder": 3027, + "time": 0.5250683682771193, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3049, - "time": 0.5292355775491601, + "noteOrder": 3051, + "time": 0.52923557754916, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.5375699960932413, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.5459044146373225, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.5542388331814038, "position": { "x": 2, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.5625732517254851, "position": { "x": 8, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3291, "time": 0.5709076702695663, "position": { "x": 2, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.5792420888136476, "position": { "x": 8, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.5875765073577288, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.5959109259018102, "position": { "x": 8, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3483, "time": 0.6042453444458914, "position": { "x": 2, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3531, "time": 0.6125797629899726, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3554, + "noteOrder": 3555, "time": 0.6167469722620132, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.6209141815340539, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.6250813908060946, + "noteOrder": 3603, + "time": 0.6250813908060945, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.6292486000781352, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.6334158093501758, + "noteOrder": 3651, + "time": 0.6334158093501757, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.6375830186222164, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3698, - "time": 0.6417502278942571, + "noteOrder": 3699, + "time": 0.641750227894257, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.6459174371662977, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3747, "time": 0.6500846464383383, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3771, "time": 0.6542518557103789, "position": { "x": 3, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3794, - "time": 0.6584190649824196, + "noteOrder": 3795, + "time": 0.6584190649824195, "position": { "x": 5, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3818, + "noteOrder": 3819, "time": 0.6625862742544603, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3842, - "time": 0.6667534835265009, + "noteOrder": 3843, + "time": 0.6667534835265008, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3866, - "time": 0.6709206927985414, + "noteOrder": 3868, + "time": 0.6709206927985415, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.6750879020705821, + "noteOrder": 3892, + "time": 0.675087902070582, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.6750879020705821, + "noteOrder": 3892, + "time": 0.675087902070582, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.6792551113426227, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.6792551113426227, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.7000911577028259, + "noteOrder": 4036, + "time": 0.7000911577028258, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.7021747623388462, + "noteOrder": 4048, + "time": 0.7021747623388461, "position": { "x": 5, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4058, - "time": 0.7042583669748664, + "noteOrder": 4060, + "time": 0.7042583669748665, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.7084255762469072, + "noteOrder": 4084, + "time": 0.708425576246907, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.7084255762469072, + "noteOrder": 4084, + "time": 0.708425576246907, "position": { "x": 6, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.7125927855189478, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.7125927855189478, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4346, + "noteOrder": 4348, "time": 0.7542648782393541, "position": { "x": 5, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4370, - "time": 0.7584320875113948, + "noteOrder": 4372, + "time": 0.7584320875113947, "position": { "x": 8, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.7625992967834354, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.7667665060554759, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7709337153275165, + "noteOrder": 4444, + "time": 0.7709337153275166, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7751009245995573, + "noteOrder": 4468, + "time": 0.7751009245995572, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7751009245995573, + "noteOrder": 4468, + "time": 0.7751009245995572, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.7792681338715979, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.7792681338715979, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4730, - "time": 0.8209402265920042, + "noteOrder": 4732, + "time": 0.820940226592004, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4754, - "time": 0.8251074358640449, + "noteOrder": 4756, + "time": 0.8251074358640448, "position": { "x": 2, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4778, + "noteOrder": 4780, "time": 0.8292746451360854, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4802, + "noteOrder": 4804, "time": 0.833441854408126, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4826, + "noteOrder": 4828, "time": 0.8376090636801666, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.8417762729522074, + "noteOrder": 4852, + "time": 0.8417762729522072, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4850, - "time": 0.8417762729522074, + "noteOrder": 4852, + "time": 0.8417762729522072, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.845943482224248, + "noteOrder": 4876, + "time": 0.8459434822242479, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.845943482224248, + "noteOrder": 4876, + "time": 0.8459434822242479, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5018, + "noteOrder": 5021, "time": 0.8709467378564917, "position": { "x": 7, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5066, - "time": 0.879281156400573, + "noteOrder": 5069, + "time": 0.8792811564005729, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.9126188305768981, + "noteOrder": 5261, + "time": 0.912618830576898, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.9334548769371012, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5403, + "noteOrder": 5405, "time": 0.9376220862091418, "position": { "x": 6, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.9417892954811825, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.9459565047532231, + "noteOrder": 5453, + "time": 0.945956504753223, "position": { "x": 4, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5549, "time": 0.9626253418413856, "position": { "x": 6, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5571, + "noteOrder": 5573, "time": 0.9667925511134262, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5597, "time": 0.9709597603854668, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5621, "time": 0.9751269696575076, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5643, - "time": 0.9792941789295482, + "noteOrder": 5645, + "time": 0.9792941789295481, "position": { "x": 3, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5643, - "time": 0.9792941789295482, + "noteOrder": 5645, + "time": 0.9792941789295481, "position": { "x": 7, "y": 0 @@ -2736,9 +2736,9 @@ "lineNodes": [ { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.11668185961713765, "position": { "x": 3, @@ -2758,13 +2758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 696, - "time": 0.12084906888917828, + "noteOrder": 685, + "time": 0.11876546425315797, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2776,18 +2776,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 720, - "time": 0.1250162781612189, + "noteOrder": 685, + "time": 0.11876546425315797, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2804,11 +2804,11 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 744, - "time": 0.12918348743325955, + "noteOrder": 697, + "time": 0.12084906888917828, "position": { "x": 7, "y": 0 @@ -2827,11 +2827,11 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 864, - "time": 0.1500195337934627, + "noteOrder": 709, + "time": 0.1229326735251986, "position": { "x": 7, "y": 0 @@ -2850,13 +2850,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 888, - "time": 0.1541867430655033, + "noteOrder": 709, + "time": 0.1229326735251986, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2868,18 +2868,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 912, - "time": 0.15835395233754396, + "noteOrder": 721, + "time": 0.1250162781612189, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2891,18 +2891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 936, - "time": 0.16252116160958457, + "noteOrder": 733, + "time": 0.12709988279723922, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2919,13 +2919,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 960, - "time": 0.16668837088162522, + "noteOrder": 733, + "time": 0.12709988279723922, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2937,18 +2937,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 984, - "time": 0.17085558015366584, + "noteOrder": 745, + "time": 0.12918348743325953, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2965,13 +2965,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1008, - "time": 0.17502278942570648, + "noteOrder": 757, + "time": 0.13126709206927983, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2983,18 +2983,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1033, - "time": 0.1791899986977471, + "noteOrder": 757, + "time": 0.13126709206927983, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3006,16 +3006,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, - "time": 0.18335720796978772, + "noteOrder": 865, + "time": 0.15001953379346267, "position": { "x": 7, "y": 0 @@ -3034,11 +3034,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1081, - "time": 0.18752441724182836, + "noteOrder": 877, + "time": 0.15210313842948298, "position": { "x": 7, "y": 0 @@ -3052,18 +3052,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.19169162651386898, + "noteOrder": 877, + "time": 0.15210313842948298, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3080,13 +3080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1129, - "time": 0.19585883578590962, + "noteOrder": 889, + "time": 0.1541867430655033, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3098,18 +3098,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1201, - "time": 0.2083604636020315, + "noteOrder": 889, + "time": 0.1541867430655033, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3126,13 +3126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.21669488214611277, + "noteOrder": 889, + "time": 0.1541867430655033, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3149,13 +3149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, - "time": 0.2208620914181534, + "noteOrder": 901, + "time": 0.15627034770152362, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3167,18 +3167,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1297, - "time": 0.22502930069019403, + "noteOrder": 901, + "time": 0.15627034770152362, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3195,13 +3195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, - "time": 0.22919650996223467, + "noteOrder": 913, + "time": 0.15835395233754393, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3213,18 +3213,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1345, - "time": 0.2333637192342753, + "noteOrder": 913, + "time": 0.15835395233754393, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3241,13 +3241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 37, "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.23753092850631594, + "noteOrder": 913, + "time": 0.15835395233754393, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3259,16 +3259,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.24169813777835655, + "noteOrder": 925, + "time": 0.16043755697356424, "position": { "x": 7, "y": 0 @@ -3287,11 +3287,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1417, - "time": 0.24586534705039717, + "noteOrder": 925, + "time": 0.16043755697356424, "position": { "x": 6, "y": 0 @@ -3310,13 +3310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1441, - "time": 0.2500325563224378, + "noteOrder": 937, + "time": 0.16252116160958457, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3328,18 +3328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1465, - "time": 0.25419976559447843, + "noteOrder": 937, + "time": 0.16252116160958457, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3356,13 +3356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, - "time": 0.2583669748665191, + "noteOrder": 937, + "time": 0.16252116160958457, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3379,13 +3379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, - "time": 0.2625341841385597, + "noteOrder": 949, + "time": 0.16460476624560488, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3397,18 +3397,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1537, - "time": 0.26670139341060034, + "noteOrder": 949, + "time": 0.16460476624560488, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3425,13 +3425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1561, - "time": 0.27086860268264096, + "noteOrder": 961, + "time": 0.1666883708816252, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3443,18 +3443,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1585, - "time": 0.27503581195468163, + "noteOrder": 961, + "time": 0.1666883708816252, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3471,13 +3471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.28337023049876287, + "noteOrder": 961, + "time": 0.1666883708816252, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3494,13 +3494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.28753743977080354, + "noteOrder": 985, + "time": 0.17085558015366584, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3517,13 +3517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1657, - "time": 0.28753743977080354, + "noteOrder": 1009, + "time": 0.17502278942570645, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3540,13 +3540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2917046490428441, + "noteOrder": 1033, + "time": 0.1791899986977471, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3563,13 +3563,4475 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1057, + "time": 0.18335720796978772, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1069, + "time": 0.18544081260580803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1069, + "time": 0.18544081260580803, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1081, + "time": 0.18752441724182836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1081, + "time": 0.18752441724182836, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1081, + "time": 0.18752441724182836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1093, + "time": 0.18960802187784867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1093, + "time": 0.18960802187784867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1117, + "time": 0.1937752311498893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1117, + "time": 0.1937752311498893, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1129, + "time": 0.19585883578590962, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1129, + "time": 0.19585883578590962, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1129, + "time": 0.19585883578590962, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1141, + "time": 0.19794244042192993, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1141, + "time": 0.19794244042192993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1201, + "time": 0.2083604636020315, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1213, + "time": 0.2104440682380518, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1213, + "time": 0.2104440682380518, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1225, + "time": 0.21252767287407215, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1225, + "time": 0.21252767287407215, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1249, + "time": 0.21669488214611277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1261, + "time": 0.2187784867821331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1261, + "time": 0.2187784867821331, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1273, + "time": 0.2208620914181534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1273, + "time": 0.2208620914181534, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1273, + "time": 0.2208620914181534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1285, + "time": 0.22294569605417372, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1285, + "time": 0.22294569605417372, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1309, + "time": 0.22711290532621436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1309, + "time": 0.22711290532621436, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1321, + "time": 0.22919650996223467, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1321, + "time": 0.22919650996223467, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1321, + "time": 0.22919650996223467, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1333, + "time": 0.23128011459825498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1333, + "time": 0.23128011459825498, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1369, + "time": 0.23753092850631594, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1393, + "time": 0.24169813777835655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1417, + "time": 0.2458653470503972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1441, + "time": 0.2500325563224378, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1453, + "time": 0.2521161609584581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1453, + "time": 0.2521161609584581, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1465, + "time": 0.25419976559447843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1465, + "time": 0.25419976559447843, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1465, + "time": 0.25419976559447843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1477, + "time": 0.25628337023049874, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1477, + "time": 0.25628337023049874, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1501, + "time": 0.26045057950253936, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1501, + "time": 0.26045057950253936, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1513, + "time": 0.26253418413855967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1513, + "time": 0.26253418413855967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1513, + "time": 0.26253418413855967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1525, + "time": 0.26461778877458, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1525, + "time": 0.26461778877458, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1549, + "time": 0.26878499804662065, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1549, + "time": 0.26878499804662065, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1561, + "time": 0.27086860268264096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1573, + "time": 0.27295220731866127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1573, + "time": 0.27295220731866127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1585, + "time": 0.2750358119546816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1597, + "time": 0.2771194165907019, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1597, + "time": 0.2771194165907019, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1609, + "time": 0.2792030212267222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1609, + "time": 0.2792030212267222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1633, + "time": 0.28337023049876287, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1658, + "time": 0.2875374397708035, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.2875374397708035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29170464904284416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29170464904284416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1706, + "time": 0.2958718583148848, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1706, + "time": 0.2958718583148848, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.30003906758692533, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.31670790467508786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1850, + "time": 0.3208751139471285, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1850, + "time": 0.3208751139471285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1874, + "time": 0.32504232321916915, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.32504232321916915, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1898, + "time": 0.32920953249120977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.3500455788514129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2030, + "time": 0.3521291834874333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2030, + "time": 0.3521291834874333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2042, + "time": 0.3542127881234535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2042, + "time": 0.3542127881234535, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2042, + "time": 0.3542127881234535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2054, + "time": 0.3562963927594739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2054, + "time": 0.3562963927594739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3583799973954942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3583799973954942, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3583799973954942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2078, + "time": 0.3604636020315145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2078, + "time": 0.3604636020315145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3625472066675348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3625472066675348, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2090, + "time": 0.3625472066675348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2102, + "time": 0.3646308113035552, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2102, + "time": 0.3646308113035552, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2114, + "time": 0.36671441593957543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2114, + "time": 0.36671441593957543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.36671441593957543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.37088162521161605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.3750488344836567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2186, + "time": 0.37921604375569734, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.38338325302773796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3875504622997786, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3875504622997786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.39171767157181925, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.39171767157181925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2282, + "time": 0.39588488084385987, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2282, + "time": 0.39588488084385987, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2294, + "time": 0.39796848547988023, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.4000520901159005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2318, + "time": 0.4021356947519208, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2318, + "time": 0.4021356947519208, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2330, + "time": 0.4042192993879411, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2342, + "time": 0.4063029040239614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2342, + "time": 0.4063029040239614, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2354, + "time": 0.4083865086599818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2366, + "time": 0.410470113296002, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2366, + "time": 0.410470113296002, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2378, + "time": 0.4125537179320224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2378, + "time": 0.4125537179320224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.5500716239093631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3195, + "time": 0.5542388331814038, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.5584060424534444, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3243, + "time": 0.5625732517254851, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5667404609975257, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3291, + "time": 0.5709076702695663, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3315, + "time": 0.575074879541607, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5792420888136476, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.5834092980856883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3387, + "time": 0.5875765073577288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3411, + "time": 0.5917437166297695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3435, + "time": 0.5959109259018102, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.6000781351738507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3483, + "time": 0.6042453444458914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3507, + "time": 0.6084125537179319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3531, + "time": 0.6125797629899726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3940, + "time": 0.6834223206146633, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3964, + "time": 0.687589529886704, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3988, + "time": 0.6917567391587446, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4012, + "time": 0.6959239484307853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4132, + "time": 0.7167599947909884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4156, + "time": 0.720927204063029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4156, + "time": 0.720927204063029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4204, + "time": 0.7292616226071104, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4204, + "time": 0.7292616226071104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4240, + "time": 0.7355124365151712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4240, + "time": 0.7355124365151712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4252, + "time": 0.7375960411511916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4252, + "time": 0.7375960411511916, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4252, + "time": 0.7375960411511916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4264, + "time": 0.7396796457872119, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4264, + "time": 0.7396796457872119, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4288, + "time": 0.7438468550592524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4288, + "time": 0.7438468550592524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7459304596952728, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7459304596952728, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7459304596952728, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4312, + "time": 0.7480140643312931, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4312, + "time": 0.7480140643312931, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4348, + "time": 0.7542648782393541, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4420, + "time": 0.7667665060554759, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4516, + "time": 0.7834353431436385, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4540, + "time": 0.7876025524156791, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4540, + "time": 0.7876025524156791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4564, + "time": 0.7917697616877197, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4564, + "time": 0.7917697616877197, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4564, + "time": 0.7917697616877197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2917046490428441, + "noteOrder": 4588, + "time": 0.7959369709597605, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3586,13 +8048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1705, - "time": 0.2958718583148848, + "noteOrder": 4588, + "time": 0.7959369709597605, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3609,13 +8071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1705, - "time": 0.2958718583148848, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3627,16 +8089,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1729, - "time": 0.3000390675869254, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { "x": 5, "y": 0 @@ -3650,18 +8112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3167079046750879, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3673,18 +8135,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1849, - "time": 0.32087511394712853, + "noteOrder": 4624, + "time": 0.8021877848678213, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3696,18 +8158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1849, - "time": 0.32087511394712853, + "noteOrder": 4624, + "time": 0.8021877848678213, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3724,13 +8186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1873, - "time": 0.32504232321916915, + "noteOrder": 4636, + "time": 0.8042713895038416, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3747,13 +8209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1873, - "time": 0.32504232321916915, + "noteOrder": 4636, + "time": 0.8042713895038416, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3765,18 +8227,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 1897, - "time": 0.3292095324912098, + "noteOrder": 4636, + "time": 0.8042713895038416, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3793,13 +8255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.35004557885141296, + "noteOrder": 4648, + "time": 0.806354994139862, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3816,13 +8278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2041, - "time": 0.3542127881234536, + "noteOrder": 4648, + "time": 0.806354994139862, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3834,18 +8296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2065, - "time": 0.3583799973954942, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3862,13 +8324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2089, - "time": 0.36254720666753487, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3880,18 +8342,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.36671441593957543, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3903,18 +8365,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.3708816252116161, + "noteOrder": 4672, + "time": 0.8105222034119025, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3926,18 +8388,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.3750488344836567, + "noteOrder": 4672, + "time": 0.8105222034119025, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3954,11 +8416,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2185, - "time": 0.3792160437556974, + "noteOrder": 4684, + "time": 0.8126058080479228, "position": { "x": 4, "y": 0 @@ -3977,13 +8439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2209, - "time": 0.38338325302773796, + "noteOrder": 4684, + "time": 0.8126058080479228, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3995,18 +8457,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 2233, - "time": 0.38755046229977863, + "noteOrder": 4684, + "time": 0.8126058080479228, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4023,13 +8485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.38755046229977863, + "noteOrder": 4696, + "time": 0.8146894126839432, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4041,18 +8503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2257, - "time": 0.39171767157181925, + "noteOrder": 4696, + "time": 0.8146894126839432, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4064,16 +8526,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2257, - "time": 0.39171767157181925, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { "x": 4, "y": 0 @@ -4092,11 +8554,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2281, - "time": 0.3958848808438599, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { "x": 5, "y": 0 @@ -4115,13 +8577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2281, - "time": 0.3958848808438599, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4138,13 +8600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2293, - "time": 0.3979684854798802, + "noteOrder": 4732, + "time": 0.820940226592004, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4161,13 +8623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.4000520901159005, + "noteOrder": 4804, + "time": 0.833441854408126, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4179,16 +8641,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2329, - "time": 0.40421929938794116, + "noteOrder": 4900, + "time": 0.8501106914962886, "position": { "x": 3, "y": 0 @@ -4207,13 +8669,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2353, - "time": 0.4083865086599818, + "noteOrder": 4912, + "time": 0.8521942961323089, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4225,16 +8687,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3170, - "time": 0.5500716239093633, + "noteOrder": 4912, + "time": 0.8521942961323089, "position": { "x": 4, "y": 0 @@ -4253,11 +8715,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3194, - "time": 0.5542388331814038, + "noteOrder": 4924, + "time": 0.8542779007683291, "position": { "x": 4, "y": 0 @@ -4276,13 +8738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3218, - "time": 0.5584060424534445, + "noteOrder": 4924, + "time": 0.8542779007683291, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4294,18 +8756,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 3242, - "time": 0.5625732517254851, + "noteOrder": 4924, + "time": 0.8542779007683291, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4322,13 +8784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, - "time": 0.5667404609975257, + "noteOrder": 4936, + "time": 0.8563615054043495, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4340,16 +8802,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3290, - "time": 0.5709076702695663, + "noteOrder": 4936, + "time": 0.8563615054043495, "position": { "x": 4, "y": 0 @@ -4363,18 +8825,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3314, - "time": 0.5750748795416071, + "noteOrder": 4949, + "time": 0.8584451100403698, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4391,13 +8853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 210, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3338, - "time": 0.5792420888136476, + "noteOrder": 4949, + "time": 0.8584451100403698, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4414,11 +8876,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, - "time": 0.5834092980856882, + "noteOrder": 4949, + "time": 0.8584451100403698, "position": { "x": 3, "y": 0 @@ -4437,13 +8899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.5875765073577288, + "noteOrder": 4961, + "time": 0.8605287146763901, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4460,13 +8922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3410, - "time": 0.5917437166297695, + "noteOrder": 4961, + "time": 0.8605287146763901, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4478,18 +8940,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3434, - "time": 0.5959109259018102, + "noteOrder": 4973, + "time": 0.8626123193124104, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4501,18 +8963,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3458, - "time": 0.6000781351738508, + "noteOrder": 4973, + "time": 0.8626123193124104, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4529,13 +8991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 3482, - "time": 0.6042453444458914, + "noteOrder": 4973, + "time": 0.8626123193124104, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4547,18 +9009,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, - "time": 0.608412553717932, + "noteOrder": 4985, + "time": 0.8646959239484308, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4575,13 +9037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3530, - "time": 0.6125797629899726, + "noteOrder": 4985, + "time": 0.8646959239484308, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4598,13 +9060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3938, - "time": 0.6834223206146633, + "noteOrder": 4997, + "time": 0.8667795285844511, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4621,13 +9083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3962, - "time": 0.687589529886704, + "noteOrder": 4997, + "time": 0.8667795285844511, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4644,13 +9106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3986, - "time": 0.6917567391587447, + "noteOrder": 4997, + "time": 0.8667795285844511, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4667,11 +9129,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4010, - "time": 0.6959239484307853, + "noteOrder": 5021, + "time": 0.8709467378564917, "position": { "x": 4, "y": 0 @@ -4690,11 +9152,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4130, - "time": 0.7167599947909884, + "noteOrder": 5045, + "time": 0.8751139471285324, "position": { "x": 7, "y": 0 @@ -4713,13 +9175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4178, - "time": 0.7250944133350697, + "noteOrder": 5069, + "time": 0.8792811564005729, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4731,18 +9193,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.7334288318791509, + "noteOrder": 5093, + "time": 0.8834483656726136, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4754,18 +9216,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4250, - "time": 0.7375960411511915, + "noteOrder": 5105, + "time": 0.885531970308634, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4782,13 +9244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4274, - "time": 0.7417632504232322, + "noteOrder": 5105, + "time": 0.885531970308634, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4800,18 +9262,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4298, - "time": 0.7459304596952728, + "noteOrder": 5117, + "time": 0.8876155749446542, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4828,13 +9290,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4322, - "time": 0.7500976689673134, + "noteOrder": 5117, + "time": 0.8876155749446542, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4846,18 +9308,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 218, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.7542648782393541, + "noteOrder": 5117, + "time": 0.8876155749446542, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4874,13 +9336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 218, "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.7667665060554759, + "noteOrder": 5129, + "time": 0.8896991795806746, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4897,13 +9359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4514, - "time": 0.7834353431436385, + "noteOrder": 5129, + "time": 0.8896991795806746, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4915,18 +9377,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4562, - "time": 0.7917697616877198, + "noteOrder": 5141, + "time": 0.8917827842166949, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4943,13 +9405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4610, - "time": 0.800104180231801, + "noteOrder": 5141, + "time": 0.8917827842166949, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4961,16 +9423,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4634, - "time": 0.8042713895038416, + "noteOrder": 5141, + "time": 0.8917827842166949, "position": { "x": 3, "y": 0 @@ -4984,16 +9446,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4658, - "time": 0.8084385987758823, + "noteOrder": 5153, + "time": 0.8938663888527152, "position": { "x": 3, "y": 0 @@ -5012,13 +9474,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4682, - "time": 0.8126058080479229, + "noteOrder": 5153, + "time": 0.8938663888527152, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5030,18 +9492,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4706, - "time": 0.8167730173199635, + "noteOrder": 5165, + "time": 0.8959499934887355, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5058,13 +9520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4730, - "time": 0.8209402265920042, + "noteOrder": 5165, + "time": 0.8959499934887355, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5081,13 +9543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4802, - "time": 0.833441854408126, + "noteOrder": 5165, + "time": 0.8959499934887355, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5099,16 +9561,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4898, - "time": 0.8501106914962886, + "noteOrder": 5177, + "time": 0.8980335981247558, "position": { "x": 3, "y": 0 @@ -5122,18 +9584,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4922, - "time": 0.8542779007683292, + "noteOrder": 5177, + "time": 0.8980335981247558, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5150,13 +9612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4946, - "time": 0.8584451100403698, + "noteOrder": 5189, + "time": 0.9001172027607761, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5168,18 +9630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4970, - "time": 0.8626123193124104, + "noteOrder": 5189, + "time": 0.9001172027607761, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5196,11 +9658,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4994, - "time": 0.8667795285844511, + "noteOrder": 5189, + "time": 0.9001172027607761, "position": { "x": 3, "y": 0 @@ -5219,13 +9681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5018, - "time": 0.8709467378564917, + "noteOrder": 5201, + "time": 0.9022008073967964, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5242,13 +9704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5042, - "time": 0.8751139471285324, + "noteOrder": 5201, + "time": 0.9022008073967964, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5260,18 +9722,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 5066, - "time": 0.879281156400573, + "noteOrder": 5213, + "time": 0.9042844120328167, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5288,13 +9750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5090, - "time": 0.8834483656726136, + "noteOrder": 5225, + "time": 0.906368016668837, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5306,18 +9768,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5115, - "time": 0.8876155749446543, + "noteOrder": 5225, + "time": 0.906368016668837, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5334,11 +9796,11 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5139, - "time": 0.8917827842166949, + "noteOrder": 5237, + "time": 0.9084516213048575, "position": { "x": 3, "y": 0 @@ -5357,11 +9819,11 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5163, - "time": 0.8959499934887355, + "noteOrder": 5249, + "time": 0.9105352259408777, "position": { "x": 3, "y": 0 @@ -5375,18 +9837,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5187, - "time": 0.9001172027607761, + "noteOrder": 5249, + "time": 0.9105352259408777, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5403,13 +9865,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5211, - "time": 0.9042844120328167, + "noteOrder": 5261, + "time": 0.912618830576898, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5421,16 +9883,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5235, - "time": 0.9084516213048575, + "noteOrder": 5261, + "time": 0.912618830576898, "position": { "x": 3, "y": 0 @@ -5450,9 +9912,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5283, + "noteOrder": 5285, "time": 0.9167860398489387, "position": { "x": 4, @@ -5473,9 +9935,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.9209532491209792, "position": { "x": 5, @@ -5496,9 +9958,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.9209532491209792, "position": { "x": 6, @@ -5519,9 +9981,9 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.9251204583930199, "position": { "x": 5, @@ -5542,9 +10004,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.9251204583930199, "position": { "x": 4, @@ -5565,9 +10027,9 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.9292876676650605, "position": { "x": 5, @@ -5588,9 +10050,9 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.9292876676650605, "position": { "x": 6, @@ -5611,9 +10073,9 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.9334548769371012, "position": { "x": 5, @@ -5634,9 +10096,9 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, + "noteOrder": 5477, "time": 0.9501237140252637, "position": { "x": 4, @@ -5657,9 +10119,9 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5499, + "noteOrder": 5501, "time": 0.9542909232973042, "position": { "x": 5, @@ -5680,9 +10142,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5499, + "noteOrder": 5501, "time": 0.9542909232973042, "position": { "x": 6, @@ -5703,9 +10165,9 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.958458132569345, "position": { "x": 5, @@ -5726,9 +10188,9 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.958458132569345, "position": { "x": 4, @@ -5749,9 +10211,9 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5547, + "noteOrder": 5549, "time": 0.9626253418413856, "position": { "x": 5, diff --git a/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1b.json b/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1b.json index 0f4b88ed..64c72065 100644 --- a/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1b.json +++ b/tracks/Shuffle The Cards RUNNING MAN EDITION/368_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.020836046360203152, + "time": 0.02083604636020315, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.037504883448365674, + "time": 0.03750488344836567, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 456, - "time": 0.07917697616877198, + "time": 0.07917697616877196, "position": { "x": 6, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.10834744107305638, "position": { "x": 6, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.11668185961713765, "position": { "x": 2, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.12084906888917828, "position": { "x": 8, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.1250162781612189, "position": { "x": 4, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.12918348743325955, + "noteOrder": 745, + "time": 0.12918348743325953, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 769, "time": 0.13335069670530017, "position": { "x": 2, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.13751790597734082, + "noteOrder": 793, + "time": 0.1375179059773408, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.14168511524938143, "position": { "x": 8, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.14585232452142205, + "noteOrder": 841, + "time": 0.14585232452142208, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.33337674176325044, + "noteOrder": 1922, + "time": 0.3333767417632504, "position": { "x": 8, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.33754395103529106, + "noteOrder": 1946, + "time": 0.337543951035291, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.3417111603073317, "position": { "x": 2, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.34587836957937235, + "noteOrder": 1994, + "time": 0.3458783695793723, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.4000520901159005, "position": { "x": 8, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2329, - "time": 0.40421929938794116, + "noteOrder": 2330, + "time": 0.4042192993879411, "position": { "x": 2, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.4083865086599818, "position": { "x": 6, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2377, - "time": 0.41255371793202245, + "noteOrder": 2378, + "time": 0.4125537179320224, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.4208881364761037, + "noteOrder": 2426, + "time": 0.4208881364761036, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.4292225550201849, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.4375569735642662, "position": { "x": 8, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.44589139210834744, "position": { "x": 8, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.45422581065242873, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.46256022919650996, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2714, "time": 0.47089464774059125, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2763, "time": 0.4792290662846725, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2809, + "noteOrder": 2811, "time": 0.4875634848287538, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2857, + "noteOrder": 2859, "time": 0.495897903372835, "position": { "x": 5, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2905, + "noteOrder": 2907, "time": 0.5042323219169162, "position": { "x": 8, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2953, + "noteOrder": 2955, "time": 0.5125667404609975, "position": { "x": 8, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3001, - "time": 0.5209011590050788, + "noteOrder": 3003, + "time": 0.5209011590050787, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3049, - "time": 0.5292355775491601, + "noteOrder": 3051, + "time": 0.52923557754916, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3074, + "noteOrder": 3075, "time": 0.5334027868212007, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.5375699960932413, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.5417372053652819, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.5459044146373225, "position": { "x": 2, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.5542388331814038, "position": { "x": 2, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3218, - "time": 0.5584060424534445, + "noteOrder": 3219, + "time": 0.5584060424534444, "position": { "x": 2, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.5625732517254851, "position": { "x": 2, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3267, "time": 0.5667404609975257, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3290, + "noteOrder": 3291, "time": 0.5709076702695663, "position": { "x": 5, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3314, - "time": 0.5750748795416071, + "noteOrder": 3315, + "time": 0.575074879541607, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.5792420888136476, "position": { "x": 5, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.5834092980856882, + "noteOrder": 3363, + "time": 0.5834092980856883, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.5875765073577288, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3411, "time": 0.5917437166297695, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.5959109259018102, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.6000781351738508, + "noteOrder": 3459, + "time": 0.6000781351738507, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3483, "time": 0.6042453444458914, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.608412553717932, + "noteOrder": 3507, + "time": 0.6084125537179319, "position": { "x": 7, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3531, "time": 0.6125797629899726, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.6209141815340539, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.6250813908060946, + "noteOrder": 3603, + "time": 0.6250813908060945, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.6292486000781352, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3675, "time": 0.6375830186222164, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3698, - "time": 0.6417502278942571, + "noteOrder": 3699, + "time": 0.641750227894257, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3723, "time": 0.6459174371662977, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3746, + "noteOrder": 3747, "time": 0.6500846464383383, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3771, "time": 0.6542518557103789, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3794, - "time": 0.6584190649824196, + "noteOrder": 3795, + "time": 0.6584190649824195, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3818, + "noteOrder": 3819, "time": 0.6625862742544603, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3842, - "time": 0.6667534835265009, + "noteOrder": 3843, + "time": 0.6667534835265008, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3866, - "time": 0.6709206927985414, + "noteOrder": 3868, + "time": 0.6709206927985415, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.6750879020705821, + "noteOrder": 3892, + "time": 0.675087902070582, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.6792551113426227, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.7000911577028259, + "noteOrder": 4036, + "time": 0.7000911577028258, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.7084255762469072, + "noteOrder": 4084, + "time": 0.708425576246907, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.7667665060554759, "position": { "x": 8, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4442, - "time": 0.7709337153275165, + "noteOrder": 4444, + "time": 0.7709337153275166, "position": { "x": 2, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7751009245995573, + "noteOrder": 4468, + "time": 0.7751009245995572, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.7751009245995573, + "noteOrder": 4468, + "time": 0.7751009245995572, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.7792681338715979, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 4492, "time": 0.7792681338715979, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5187, + "noteOrder": 5189, "time": 0.9001172027607761, "position": { "x": 2, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.9042844120328167, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.9084516213048575, "position": { "x": 8, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.9126188305768981, + "noteOrder": 5261, + "time": 0.912618830576898, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5571, + "noteOrder": 5573, "time": 0.9667925511134262, "position": { "x": 2, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5597, "time": 0.9709597603854668, "position": { "x": 8, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5621, "time": 0.9751269696575076, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5643, - "time": 0.9792941789295482, + "noteOrder": 5645, + "time": 0.9792941789295481, "position": { "x": 6, "y": 0 @@ -1916,10 +1916,10 @@ "lineNodes": [ { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, - "time": 0.08334418544081261, + "time": 0.0833441854408126, "position": { "x": 3, "y": 0 @@ -1939,7 +1939,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 528, "time": 0.09167860398489386, @@ -1962,9 +1962,9 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, + "noteOrder": 577, "time": 0.10001302252897512, "position": { "x": 7, @@ -1985,9 +1985,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 624, + "noteOrder": 625, "time": 0.10834744107305638, "position": { "x": 7, @@ -2008,10 +2008,33 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 865, + "time": 0.15001953379346267, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 864, - "time": 0.1500195337934627, + "noteOrder": 889, + "time": 0.1541867430655033, "position": { "x": 2, "y": 0 @@ -2029,12 +2052,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 889, + "time": 0.1541867430655033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 913, + "time": 0.15835395233754393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 913, + "time": 0.15835395233754393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 912, - "time": 0.15835395233754396, + "noteOrder": 913, + "time": 0.15835395233754393, "position": { "x": 2, "y": 0 @@ -2053,11 +2145,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 960, - "time": 0.16668837088162522, + "noteOrder": 937, + "time": 0.16252116160958457, "position": { "x": 2, "y": 0 @@ -2071,18 +2163,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1008, - "time": 0.17502278942570648, + "noteOrder": 937, + "time": 0.16252116160958457, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2099,11 +2191,57 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1057, - "time": 0.18335720796978772, + "noteOrder": 961, + "time": 0.1666883708816252, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 961, + "time": 0.1666883708816252, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 24, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 961, + "time": 0.1666883708816252, "position": { "x": 2, "y": 0 @@ -2122,11 +2260,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.19169162651386898, + "noteOrder": 985, + "time": 0.17085558015366584, "position": { "x": 2, "y": 0 @@ -2140,18 +2278,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, - "time": 0.21669488214611277, + "noteOrder": 985, + "time": 0.17085558015366584, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2163,18 +2301,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1297, - "time": 0.22502930069019403, + "noteOrder": 1009, + "time": 0.17502278942570645, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2191,13 +2329,36 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1345, - "time": 0.2333637192342753, + "noteOrder": 1009, + "time": 0.17502278942570645, "position": { - "x": 8, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1009, + "time": 0.17502278942570645, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -2214,13 +2375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1393, - "time": 0.24169813777835655, + "noteOrder": 1033, + "time": 0.1791899986977471, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2232,18 +2393,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1441, - "time": 0.2500325563224378, + "noteOrder": 1033, + "time": 0.1791899986977471, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2260,13 +2421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1489, - "time": 0.2583669748665191, + "noteOrder": 1057, + "time": 0.18335720796978772, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2278,18 +2439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1537, - "time": 0.26670139341060034, + "noteOrder": 1057, + "time": 0.18335720796978772, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2306,13 +2467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.27086860268264096, + "noteOrder": 1057, + "time": 0.18335720796978772, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2324,16 +2485,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.27503581195468163, + "noteOrder": 1081, + "time": 0.18752441724182836, "position": { "x": 2, "y": 0 @@ -2347,18 +2508,2065 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1081, + "time": 0.18752441724182836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1105, + "time": 0.19169162651386898, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1129, + "time": 0.19585883578590962, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1129, + "time": 0.19585883578590962, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1153, + "time": 0.20002604505795024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1153, + "time": 0.20002604505795024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1249, + "time": 0.21669488214611277, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1273, + "time": 0.2208620914181534, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1273, + "time": 0.2208620914181534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1297, + "time": 0.22502930069019403, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1321, + "time": 0.22919650996223467, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1321, + "time": 0.22919650996223467, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.2333637192342753, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1369, + "time": 0.23753092850631594, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1369, + "time": 0.23753092850631594, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1393, + "time": 0.24169813777835655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1393, + "time": 0.24169813777835655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1393, + "time": 0.24169813777835655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1417, + "time": 0.2458653470503972, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1417, + "time": 0.2458653470503972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1441, + "time": 0.2500325563224378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1441, + "time": 0.2500325563224378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1441, + "time": 0.2500325563224378, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1465, + "time": 0.25419976559447843, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1465, + "time": 0.25419976559447843, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1489, + "time": 0.25836697486651905, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1513, + "time": 0.26253418413855967, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1513, + "time": 0.26253418413855967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1537, + "time": 0.26670139341060034, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1561, + "time": 0.27086860268264096, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1585, + "time": 0.2750358119546816, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1609, + "time": 0.2792030212267222, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1633, + "time": 0.28337023049876287, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29170464904284416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.29170464904284416, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1730, + "time": 0.30003906758692533, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.30003906758692533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1778, + "time": 0.3083734861310066, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1778, + "time": 0.3083734861310066, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1826, + "time": 0.31670790467508786, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.31670790467508786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1874, + "time": 0.32504232321916915, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.32504232321916915, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1922, + "time": 0.3333767417632504, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.3500455788514129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3583799973954942, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3583799973954942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2114, + "time": 0.36671441593957543, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.36671441593957543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2162, + "time": 0.3750488344836567, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.3750488344836567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2210, + "time": 0.38338325302773796, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.38338325302773796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.39171767157181925, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.39171767157181925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.4000520901159005, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4132, + "time": 0.7167599947909884, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4156, + "time": 0.720927204063029, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4156, + "time": 0.720927204063029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4180, + "time": 0.7250944133350696, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4204, + "time": 0.7292616226071104, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4204, + "time": 0.7292616226071104, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4228, + "time": 0.7334288318791509, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4252, + "time": 0.7375960411511916, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4252, + "time": 0.7375960411511916, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4276, + "time": 0.7417632504232321, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7459304596952728, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4300, + "time": 0.7459304596952728, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4324, + "time": 0.7500976689673134, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4348, + "time": 0.7542648782393541, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4348, + "time": 0.7542648782393541, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 126, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1609, - "time": 0.27920302122672225, + "noteOrder": 4372, + "time": 0.7584320875113947, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2370,18 +4578,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1633, - "time": 0.28337023049876287, + "noteOrder": 4372, + "time": 0.7584320875113947, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2398,13 +4606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, + "lineGroupId": 127, "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.2917046490428441, + "noteOrder": 4372, + "time": 0.7584320875113947, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -2416,18 +4624,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.2917046490428441, + "noteOrder": 4396, + "time": 0.7625992967834354, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2444,13 +4652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1729, - "time": 0.3000390675869254, + "noteOrder": 4396, + "time": 0.7625992967834354, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2467,13 +4675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1729, - "time": 0.3000390675869254, + "noteOrder": 4420, + "time": 0.7667665060554759, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2485,18 +4693,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1777, - "time": 0.3083734861310066, + "noteOrder": 4420, + "time": 0.7667665060554759, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2508,18 +4716,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.3083734861310066, + "noteOrder": 4516, + "time": 0.7834353431436385, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2536,13 +4744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.3167079046750879, + "noteOrder": 4540, + "time": 0.7876025524156791, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2559,11 +4767,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1825, - "time": 0.3167079046750879, + "noteOrder": 4540, + "time": 0.7876025524156791, "position": { "x": 4, "y": 0 @@ -2577,18 +4785,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1873, - "time": 0.32504232321916915, + "noteOrder": 4564, + "time": 0.7917697616877197, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2600,18 +4808,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1873, - "time": 0.32504232321916915, + "noteOrder": 4564, + "time": 0.7917697616877197, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2628,13 +4836,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 1921, - "time": 0.33337674176325044, + "noteOrder": 4564, + "time": 0.7917697616877197, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2646,18 +4854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.35004557885141296, + "noteOrder": 4588, + "time": 0.7959369709597605, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2674,13 +4882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2065, - "time": 0.3583799973954942, + "noteOrder": 4588, + "time": 0.7959369709597605, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2697,13 +4905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2065, - "time": 0.3583799973954942, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2715,18 +4923,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2113, - "time": 0.36671441593957543, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2738,18 +4946,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.36671441593957543, + "noteOrder": 4612, + "time": 0.800104180231801, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2761,18 +4969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.3750488344836567, + "noteOrder": 4636, + "time": 0.8042713895038416, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2784,18 +4992,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.3750488344836567, + "noteOrder": 4636, + "time": 0.8042713895038416, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2812,13 +5020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2209, - "time": 0.38338325302773796, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2835,11 +5043,11 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2209, - "time": 0.38338325302773796, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { "x": 4, "y": 0 @@ -2853,18 +5061,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 2257, - "time": 0.39171767157181925, + "noteOrder": 4660, + "time": 0.8084385987758822, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2881,13 +5089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2257, - "time": 0.39171767157181925, + "noteOrder": 4684, + "time": 0.8126058080479228, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2899,18 +5107,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.4000520901159005, + "noteOrder": 4684, + "time": 0.8126058080479228, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2922,18 +5130,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4130, - "time": 0.7167599947909884, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2950,13 +5158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4178, - "time": 0.7250944133350697, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2968,18 +5176,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.7334288318791509, + "noteOrder": 4708, + "time": 0.8167730173199635, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2991,18 +5199,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4274, - "time": 0.7417632504232322, + "noteOrder": 4732, + "time": 0.820940226592004, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3019,13 +5227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4322, - "time": 0.7500976689673134, + "noteOrder": 4732, + "time": 0.820940226592004, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3037,18 +5245,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4370, - "time": 0.7584320875113948, + "noteOrder": 4756, + "time": 0.8251074358640448, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3065,13 +5273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4514, - "time": 0.7834353431436385, + "noteOrder": 4756, + "time": 0.8251074358640448, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3088,11 +5296,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4562, - "time": 0.7917697616877198, + "noteOrder": 4756, + "time": 0.8251074358640448, "position": { "x": 2, "y": 0 @@ -3111,11 +5319,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4610, - "time": 0.800104180231801, + "noteOrder": 4780, + "time": 0.8292746451360854, "position": { "x": 2, "y": 0 @@ -3129,18 +5337,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4658, - "time": 0.8084385987758823, + "noteOrder": 4780, + "time": 0.8292746451360854, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3157,13 +5365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4706, - "time": 0.8167730173199635, + "noteOrder": 4804, + "time": 0.833441854408126, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3175,18 +5383,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4754, - "time": 0.8251074358640449, + "noteOrder": 4804, + "time": 0.833441854408126, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3204,9 +5412,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4802, + "noteOrder": 4804, "time": 0.833441854408126, "position": { "x": 2, @@ -3227,9 +5435,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4826, + "noteOrder": 4828, "time": 0.8376090636801666, "position": { "x": 2, @@ -3250,10 +5458,10 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4850, - "time": 0.8417762729522074, + "noteOrder": 4852, + "time": 0.8417762729522072, "position": { "x": 8, "y": 0 @@ -3273,10 +5481,10 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4874, - "time": 0.845943482224248, + "noteOrder": 4876, + "time": 0.8459434822242479, "position": { "x": 8, "y": 0 @@ -3296,9 +5504,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4898, + "noteOrder": 4900, "time": 0.8501106914962886, "position": { "x": 6, @@ -3319,9 +5527,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4946, + "noteOrder": 4949, "time": 0.8584451100403698, "position": { "x": 5, @@ -3342,9 +5550,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4946, + "noteOrder": 4949, "time": 0.8584451100403698, "position": { "x": 4, @@ -3365,9 +5573,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4994, + "noteOrder": 4997, "time": 0.8667795285844511, "position": { "x": 5, @@ -3388,9 +5596,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4994, + "noteOrder": 4997, "time": 0.8667795285844511, "position": { "x": 6, @@ -3411,9 +5619,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5042, + "noteOrder": 5045, "time": 0.8751139471285324, "position": { "x": 5, @@ -3434,9 +5642,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5042, + "noteOrder": 5045, "time": 0.8751139471285324, "position": { "x": 4, @@ -3457,9 +5665,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5090, + "noteOrder": 5093, "time": 0.8834483656726136, "position": { "x": 5, @@ -3480,9 +5688,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5090, + "noteOrder": 5093, "time": 0.8834483656726136, "position": { "x": 6, @@ -3503,9 +5711,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5139, + "noteOrder": 5141, "time": 0.8917827842166949, "position": { "x": 5, @@ -3526,9 +5734,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5139, + "noteOrder": 5141, "time": 0.8917827842166949, "position": { "x": 4, @@ -3549,9 +5757,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5187, + "noteOrder": 5189, "time": 0.9001172027607761, "position": { "x": 5, @@ -3572,9 +5780,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5283, + "noteOrder": 5285, "time": 0.9167860398489387, "position": { "x": 6, @@ -3595,9 +5803,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.9251204583930199, "position": { "x": 5, @@ -3618,9 +5826,9 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.9251204583930199, "position": { "x": 4, @@ -3641,9 +5849,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.9334548769371012, "position": { "x": 5, @@ -3664,9 +5872,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.9334548769371012, "position": { "x": 6, @@ -3687,9 +5895,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.9417892954811825, "position": { "x": 5, @@ -3710,9 +5918,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.9417892954811825, "position": { "x": 4, @@ -3733,9 +5941,9 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5475, + "noteOrder": 5477, "time": 0.9501237140252637, "position": { "x": 5, @@ -3756,9 +5964,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, + "noteOrder": 5477, "time": 0.9501237140252637, "position": { "x": 6, @@ -3779,9 +5987,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.958458132569345, "position": { "x": 5, @@ -3802,9 +6010,9 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.958458132569345, "position": { "x": 4, @@ -3825,9 +6033,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5571, + "noteOrder": 5573, "time": 0.9667925511134262, "position": { "x": 5, diff --git a/tracks/Shuffle The Cards RUNNING MAN EDITION/info.json b/tracks/Shuffle The Cards RUNNING MAN EDITION/info.json index 661a94cc..7fa68ca1 100644 --- a/tracks/Shuffle The Cards RUNNING MAN EDITION/info.json +++ b/tracks/Shuffle The Cards RUNNING MAN EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Shuffle The Cards RUNNING MAN EDITION", - "SongLength": "122.540408", + "SongLength": "112.587755", "SongAuthorName": "uno(IOSYS TRAX)", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Sleepwell/253_difficulty_1a.json b/tracks/Sleepwell/253_difficulty_1a.json index 60f28b24..7cb6cab2 100644 --- a/tracks/Sleepwell/253_difficulty_1a.json +++ b/tracks/Sleepwell/253_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 240, - "time": 0.04171011470281544, + "time": 0.04171011470281543, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 337, - "time": 0.058394160583941604, + "time": 0.0583941605839416, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 337, - "time": 0.058394160583941604, + "time": 0.0583941605839416, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 601, - "time": 0.1042752867570386, + "time": 0.10427528675703857, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 649, - "time": 0.11261730969760168, + "time": 0.11261730969760166, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 673, - "time": 0.11678832116788321, + "time": 0.1167883211678832, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 697, - "time": 0.12095933263816476, + "time": 0.12095933263816475, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 745, - "time": 0.12930135557872785, + "time": 0.12930135557872782, "position": { "x": 7, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 4, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 6, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1543274244004171, + "noteOrder": 890, + "time": 0.15432742440041708, "position": { "x": 3, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.1543274244004171, + "noteOrder": 890, + "time": 0.15432742440041708, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1106, - "time": 0.19186652763295098, + "time": 0.19186652763295095, "position": { "x": 5, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1154, - "time": 0.20020855057351408, + "time": 0.20020855057351405, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1202, - "time": 0.2085505735140772, + "time": 0.20855057351407713, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1202, - "time": 0.2085505735140772, + "time": 0.20855057351407713, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1226, - "time": 0.21272158498435872, + "time": 0.2127215849843587, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1226, - "time": 0.21272158498435872, + "time": 0.2127215849843587, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1250, - "time": 0.21689259645464026, + "time": 0.21689259645464024, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.22523461939520337, + "noteOrder": 1299, + "time": 0.2252346193952033, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.22940563086548488, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.24191866527632952, + "noteOrder": 1395, + "time": 0.2419186652763295, "position": { "x": 5, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.2586027111574557, + "noteOrder": 1491, + "time": 0.25860271115745564, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 3, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1562, - "time": 0.2711157455683003, + "noteOrder": 1563, + "time": 0.27111574556830026, "position": { "x": 7, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27528675703858185, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27528675703858185, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2794577685088634, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2794577685088634, "position": { "x": 3, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.283628779979145, + "noteOrder": 1635, + "time": 0.28362877997914493, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.28779979144942647, "position": { "x": 5, @@ -834,7 +834,7 @@ }, { "noteOrder": 1707, - "time": 0.2961418143899896, + "time": 0.29614181438998954, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1755, - "time": 0.3044838373305527, + "time": 0.3044838373305526, "position": { "x": 5, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1779, - "time": 0.3086548488008342, + "time": 0.30865484880083416, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.3295099061522419, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.3295099061522419, "position": { "x": 4, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.337851929092805, + "noteOrder": 1948, + "time": 0.3378519290928049, "position": { "x": 5, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.3420229405630866, + "noteOrder": 1972, + "time": 0.3420229405630865, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.3461939520333681, + "noteOrder": 1996, + "time": 0.34619395203336806, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2043, - "time": 0.3545359749739312, + "noteOrder": 2044, + "time": 0.35453597497393113, "position": { "x": 5, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.3587069864442128, + "noteOrder": 2068, + "time": 0.35870698644421267, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.36287799791449427, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.36704900938477586, + "noteOrder": 2116, + "time": 0.36704900938477575, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.37122002085505734, + "noteOrder": 2140, + "time": 0.3712200208550573, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3753910323253389, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.3962460896767466, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.3962460896767466, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.40458811261730976, + "noteOrder": 2333, + "time": 0.40458811261730965, "position": { "x": 5, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.40875912408759124, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.4129301355578728, + "noteOrder": 2381, + "time": 0.4129301355578727, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.42127215849843586, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.42961418143899893, + "noteOrder": 2477, + "time": 0.4296141814389989, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.43795620437956206, + "noteOrder": 2525, + "time": 0.437956204379562, "position": { "x": 2, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.44212721584984355, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.44629822732012514, + "noteOrder": 2573, + "time": 0.4462982273201251, "position": { "x": 2, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.4546402502606882, + "noteOrder": 2621, + "time": 0.45464025026068816, "position": { "x": 8, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.45881126173096975, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.46298227320125135, + "noteOrder": 2669, + "time": 0.46298227320125124, "position": { "x": 8, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.4713242961418144, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { "x": 2, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4796663190823775, + "noteOrder": 2765, + "time": 0.4796663190823774, "position": { "x": 8, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2886, "time": 0.5005213764337851, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.5046923879040668, + "noteOrder": 2910, + "time": 0.5046923879040667, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.5088633993743483, + "noteOrder": 2934, + "time": 0.5088633993743482, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.5130344108446299, + "noteOrder": 2958, + "time": 0.5130344108446298, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.5130344108446299, + "noteOrder": 2958, + "time": 0.5130344108446298, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.5172054223149114, + "noteOrder": 2982, + "time": 0.5172054223149113, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3006, "time": 0.5213764337851929, "position": { "x": 5, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.5255474452554745, + "noteOrder": 3030, + "time": 0.5255474452554744, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.529718456725756, + "noteOrder": 3054, + "time": 0.5297184567257559, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.529718456725756, + "noteOrder": 3054, + "time": 0.5297184567257559, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5338894681960376, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3089, - "time": 0.5359749739311783, + "noteOrder": 3090, + "time": 0.5359749739311782, "position": { "x": 5, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5380604796663191, + "noteOrder": 3102, + "time": 0.538060479666319, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3113, + "noteOrder": 3114, "time": 0.5401459854014599, "position": { "x": 5, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3125, - "time": 0.5422314911366006, + "noteOrder": 3126, + "time": 0.5422314911366005, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.5443169968717414, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.5464025026068822, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5505735140771637, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5505735140771637, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.5547445255474452, + "noteOrder": 3198, + "time": 0.5547445255474451, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.5547445255474452, + "noteOrder": 3198, + "time": 0.5547445255474451, "position": { "x": 7, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5714285714285714, "position": { "x": 7, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5797705943691346, + "noteOrder": 3342, + "time": 0.5797705943691345, "position": { "x": 7, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.5881126173096977, + "noteOrder": 3391, + "time": 0.5881126173096975, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3487, "time": 0.6047966631908237, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3533, - "time": 0.6131386861313869, + "noteOrder": 3535, + "time": 0.6131386861313868, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3581, - "time": 0.6214807090719501, + "noteOrder": 3583, + "time": 0.62148070907195, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.629822732012513, + "noteOrder": 3631, + "time": 0.6298227320125129, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.6381647549530761, + "noteOrder": 3679, + "time": 0.638164754953076, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3726, - "time": 0.6465067778936393, + "noteOrder": 3727, + "time": 0.6465067778936392, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.6548488008342023, + "noteOrder": 3775, + "time": 0.6548488008342022, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3872, "time": 0.6715328467153284, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.6798748696558916, + "noteOrder": 3920, + "time": 0.6798748696558915, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3942, - "time": 0.6840458811261731, + "noteOrder": 3944, + "time": 0.684045881126173, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.6882168925964547, + "noteOrder": 3968, + "time": 0.6882168925964545, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 4064, + "time": 0.7049009384775807, "position": { "x": 5, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4086, - "time": 0.7090719499478624, + "noteOrder": 4088, + "time": 0.7090719499478623, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7132429614181439, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.721584984358707, + "noteOrder": 4160, + "time": 0.7215849843587069, "position": { "x": 5, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7257559958289885, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4206, - "time": 0.7299270072992701, + "noteOrder": 4208, + "time": 0.72992700729927, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.7382690302398333, + "noteOrder": 4256, + "time": 0.7382690302398331, "position": { "x": 8, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.7424400417101147, + "noteOrder": 4280, + "time": 0.7424400417101146, "position": { "x": 4, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.7466110531803962, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.7507820646506778, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4351, - "time": 0.7549530761209594, + "noteOrder": 4352, + "time": 0.7549530761209592, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 4376, + "time": 0.7591240875912408, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7632950990615225, + "noteOrder": 4401, + "time": 0.7632950990615224, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7716371220020855, "position": { "x": 5, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4471, - "time": 0.7758081334723671, + "noteOrder": 4473, + "time": 0.775808133472367, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7799791449426486, + "noteOrder": 4497, + "time": 0.7799791449426484, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7883211678832116, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4569, "time": 0.7924921793534933, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.7966631908237748, + "noteOrder": 4593, + "time": 0.7966631908237747, "position": { "x": 4, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8050052137643379, "position": { "x": 2, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4663, - "time": 0.8091762252346195, + "noteOrder": 4665, + "time": 0.8091762252346193, "position": { "x": 6, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.8133472367049009, + "noteOrder": 4689, + "time": 0.8133472367049008, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4711, + "noteOrder": 4713, "time": 0.8175182481751825, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4735, - "time": 0.821689259645464, + "noteOrder": 4737, + "time": 0.8216892596454639, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.8258602711157456, + "noteOrder": 4761, + "time": 0.8258602711157454, "position": { "x": 4, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.8258602711157456, + "noteOrder": 4761, + "time": 0.8258602711157454, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4783, - "time": 0.8300312825860272, + "noteOrder": 4785, + "time": 0.8300312825860271, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4783, - "time": 0.8300312825860272, + "noteOrder": 4785, + "time": 0.8300312825860271, "position": { "x": 7, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.8425443169968717, "position": { "x": 3, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.8592283628779979, + "noteOrder": 4954, + "time": 0.8592283628779978, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.8592283628779979, + "noteOrder": 4954, + "time": 0.8592283628779978, "position": { "x": 4, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.8633993743482794, "position": { "x": 7, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.8633993743482794, "position": { "x": 3, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8759124087591241, + "noteOrder": 5050, + "time": 0.875912408759124, "position": { "x": 7, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8821689259645464, + "noteOrder": 5086, + "time": 0.8821689259645462, "position": { "x": 6, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8821689259645464, + "noteOrder": 5086, + "time": 0.8821689259645462, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8884254431699687, + "noteOrder": 5122, + "time": 0.8884254431699686, "position": { "x": 7, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8884254431699687, + "noteOrder": 5122, + "time": 0.8884254431699686, "position": { "x": 3, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5216, - "time": 0.905109489051095, + "noteOrder": 5218, + "time": 0.9051094890510948, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5264, - "time": 0.913451511991658, + "noteOrder": 5266, + "time": 0.9134515119916579, "position": { "x": 7, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9384775808133472, + "noteOrder": 5410, + "time": 0.9384775808133471, "position": { "x": 8, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5456, - "time": 0.9468196037539104, + "noteOrder": 5459, + "time": 0.9468196037539102, "position": { "x": 2, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5504, + "noteOrder": 5507, "time": 0.9551616266944734, "position": { "x": 5, @@ -2996,10 +2996,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 276, - "time": 0.047966631908237745, + "noteOrder": 277, + "time": 0.04796663190823774, "position": { "x": 6, "y": 0 @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 312, - "time": 0.054223149113660066, + "noteOrder": 313, + "time": 0.05422314911366006, "position": { "x": 6, "y": 0 @@ -3042,10 +3042,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 276, - "time": 0.047966631908237745, + "noteOrder": 277, + "time": 0.04796663190823774, "position": { "x": 4, "y": 0 @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 312, - "time": 0.054223149113660066, + "noteOrder": 313, + "time": 0.05422314911366006, "position": { "x": 4, "y": 0 @@ -3088,10 +3088,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 469, - "time": 0.08133472367049009, + "time": 0.08133472367049008, "position": { "x": 6, "y": 0 @@ -3111,7 +3111,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.08759124087591241, @@ -3134,10 +3134,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 469, - "time": 0.08133472367049009, + "time": 0.08133472367049008, "position": { "x": 4, "y": 0 @@ -3157,7 +3157,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.08759124087591241, @@ -3180,10 +3180,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10010427528675704, + "time": 0.10010427528675703, "position": { "x": 3, "y": 0 @@ -3203,10 +3203,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.1042752867570386, + "time": 0.10427528675703857, "position": { "x": 3, "y": 0 @@ -3226,10 +3226,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10844629822732013, + "time": 0.10844629822732012, "position": { "x": 7, "y": 0 @@ -3249,10 +3249,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.11261730969760168, + "time": 0.11261730969760166, "position": { "x": 7, "y": 0 @@ -3272,7 +3272,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.1334723670490094, @@ -3295,9 +3295,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.145985401459854, "position": { "x": 4, @@ -3318,10 +3318,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, - "time": 0.1418143899895725, + "noteOrder": 818, + "time": 0.14181438998957246, "position": { "x": 6, "y": 0 @@ -3341,9 +3341,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.145985401459854, "position": { "x": 6, @@ -3364,9 +3364,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.15849843587069865, "position": { "x": 4, @@ -3387,10 +3387,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16266944734098018, + "noteOrder": 938, + "time": 0.16266944734098016, "position": { "x": 4, "y": 0 @@ -3410,9 +3410,9 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, + "noteOrder": 914, "time": 0.15849843587069865, "position": { "x": 6, @@ -3433,10 +3433,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16266944734098018, + "noteOrder": 938, + "time": 0.16266944734098016, "position": { "x": 6, "y": 0 @@ -3456,10 +3456,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16684045881126175, + "noteOrder": 962, + "time": 0.16684045881126172, "position": { "x": 7, "y": 0 @@ -3479,7 +3479,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1010, "time": 0.17518248175182483, @@ -3502,10 +3502,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.18352450469238793, + "time": 0.18352450469238787, "position": { "x": 3, "y": 0 @@ -3525,10 +3525,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1106, - "time": 0.19186652763295098, + "time": 0.19186652763295095, "position": { "x": 3, "y": 0 @@ -3548,10 +3548,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.23357664233576642, + "noteOrder": 1347, + "time": 0.2335766423357664, "position": { "x": 3, "y": 0 @@ -3571,10 +3571,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.24191866527632952, + "noteOrder": 1395, + "time": 0.2419186652763295, "position": { "x": 3, "y": 0 @@ -3594,9 +3594,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.25026068821689257, "position": { "x": 7, @@ -3617,10 +3617,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.2586027111574557, + "noteOrder": 1491, + "time": 0.25860271115745564, "position": { "x": 7, "y": 0 @@ -3640,10 +3640,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1803, - "time": 0.31282586027111575, + "time": 0.3128258602711157, "position": { "x": 5, "y": 0 @@ -3663,10 +3663,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1851, - "time": 0.3211678832116789, + "noteOrder": 1852, + "time": 0.3211678832116788, "position": { "x": 5, "y": 0 @@ -3686,10 +3686,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1851, - "time": 0.3211678832116789, + "noteOrder": 1852, + "time": 0.3211678832116788, "position": { "x": 7, "y": 0 @@ -3709,10 +3709,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.32533889468196037, + "noteOrder": 1876, + "time": 0.3253388946819603, "position": { "x": 7, "y": 0 @@ -3732,10 +3732,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1923, - "time": 0.3336809176225235, + "noteOrder": 1924, + "time": 0.33368091762252344, "position": { "x": 3, "y": 0 @@ -3755,9 +3755,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.35036496350364965, "position": { "x": 3, @@ -3778,9 +3778,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.35036496350364965, "position": { "x": 7, @@ -3801,10 +3801,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2043, - "time": 0.3545359749739312, + "noteOrder": 2044, + "time": 0.35453597497393113, "position": { "x": 7, "y": 0 @@ -3824,10 +3824,10 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.3795620437956205, + "noteOrder": 2188, + "time": 0.3795620437956204, "position": { "x": 5, "y": 0 @@ -3847,10 +3847,10 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.38790406673618355, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { "x": 5, "y": 0 @@ -3870,10 +3870,10 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2235, - "time": 0.38790406673618355, + "noteOrder": 2236, + "time": 0.3879040667361835, "position": { "x": 3, "y": 0 @@ -3893,10 +3893,10 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.3920750782064651, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { "x": 3, "y": 0 @@ -3916,10 +3916,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.40041710114702816, + "noteOrder": 2308, + "time": 0.4004171011470281, "position": { "x": 7, "y": 0 @@ -3939,10 +3939,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2404, - "time": 0.4171011470281544, + "noteOrder": 2405, + "time": 0.41710114702815426, "position": { "x": 7, "y": 0 @@ -3962,10 +3962,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.4171011470281544, + "noteOrder": 2405, + "time": 0.41710114702815426, "position": { "x": 3, "y": 0 @@ -3985,9 +3985,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.42127215849843586, "position": { "x": 3, @@ -4008,10 +4008,10 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { "x": 7, "y": 0 @@ -4031,10 +4031,10 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.42961418143899893, + "noteOrder": 2477, + "time": 0.4296141814389989, "position": { "x": 7, "y": 0 @@ -4054,10 +4054,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.4337851929092805, + "noteOrder": 2501, + "time": 0.43378519290928047, "position": { "x": 4, "y": 0 @@ -4077,10 +4077,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.45046923879040673, + "noteOrder": 2597, + "time": 0.4504692387904066, "position": { "x": 4, "y": 0 @@ -4100,10 +4100,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.45046923879040673, + "noteOrder": 2597, + "time": 0.4504692387904066, "position": { "x": 6, "y": 0 @@ -4123,10 +4123,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.46715328467153283, + "noteOrder": 2693, + "time": 0.4671532846715328, "position": { "x": 6, "y": 0 @@ -4146,10 +4146,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.46715328467153283, + "noteOrder": 2693, + "time": 0.4671532846715328, "position": { "x": 4, "y": 0 @@ -4169,10 +4169,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2716, - "time": 0.4713242961418144, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { "x": 4, "y": 0 @@ -4192,10 +4192,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, - "time": 0.47549530761209596, + "noteOrder": 2741, + "time": 0.47549530761209585, "position": { "x": 6, "y": 0 @@ -4215,10 +4215,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2764, - "time": 0.4796663190823775, + "noteOrder": 2765, + "time": 0.4796663190823774, "position": { "x": 6, "y": 0 @@ -4238,10 +4238,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.48383733055265904, + "noteOrder": 2789, + "time": 0.483837330552659, "position": { "x": 6, "y": 0 @@ -4261,10 +4261,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2800, - "time": 0.4859228362877998, + "noteOrder": 2801, + "time": 0.4859228362877997, "position": { "x": 6, "y": 0 @@ -4284,10 +4284,10 @@ }, { "lineGroupId": 106, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.48800834202294063, + "noteOrder": 2813, + "time": 0.4880083420229405, "position": { "x": 6, "y": 0 @@ -4307,10 +4307,10 @@ }, { "lineGroupId": 106, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2824, - "time": 0.49009384775808135, + "noteOrder": 2825, + "time": 0.4900938477580813, "position": { "x": 6, "y": 0 @@ -4330,10 +4330,10 @@ }, { "lineGroupId": 106, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2836, - "time": 0.4921793534932221, + "noteOrder": 2837, + "time": 0.492179353493222, "position": { "x": 6, "y": 0 @@ -4353,10 +4353,10 @@ }, { "lineGroupId": 106, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2848, - "time": 0.4942648592283629, + "noteOrder": 2850, + "time": 0.49426485922836283, "position": { "x": 6, "y": 0 @@ -4376,10 +4376,10 @@ }, { "lineGroupId": 106, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2860, - "time": 0.49635036496350365, + "noteOrder": 2862, + "time": 0.4963503649635036, "position": { "x": 6, "y": 0 @@ -4399,10 +4399,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, - "time": 0.48383733055265904, + "noteOrder": 2789, + "time": 0.483837330552659, "position": { "x": 4, "y": 0 @@ -4422,10 +4422,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2800, - "time": 0.4859228362877998, + "noteOrder": 2801, + "time": 0.4859228362877997, "position": { "x": 4, "y": 0 @@ -4445,10 +4445,10 @@ }, { "lineGroupId": 107, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2812, - "time": 0.48800834202294063, + "noteOrder": 2813, + "time": 0.4880083420229405, "position": { "x": 3, "y": 0 @@ -4468,10 +4468,10 @@ }, { "lineGroupId": 107, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2824, - "time": 0.49009384775808135, + "noteOrder": 2825, + "time": 0.4900938477580813, "position": { "x": 3, "y": 0 @@ -4491,10 +4491,10 @@ }, { "lineGroupId": 107, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2836, - "time": 0.4921793534932221, + "noteOrder": 2837, + "time": 0.492179353493222, "position": { "x": 4, "y": 0 @@ -4514,10 +4514,10 @@ }, { "lineGroupId": 107, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2848, - "time": 0.4942648592283629, + "noteOrder": 2850, + "time": 0.49426485922836283, "position": { "x": 4, "y": 0 @@ -4537,10 +4537,10 @@ }, { "lineGroupId": 107, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2860, - "time": 0.49635036496350365, + "noteOrder": 2862, + "time": 0.4963503649635036, "position": { "x": 3, "y": 0 @@ -4560,9 +4560,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5589155370177268, "position": { "x": 6, @@ -4583,9 +4583,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5630865484880083, "position": { "x": 6, @@ -4606,9 +4606,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5589155370177268, "position": { "x": 4, @@ -4629,9 +4629,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5630865484880083, "position": { "x": 4, @@ -4652,10 +4652,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, - "time": 0.56725755995829, + "noteOrder": 3270, + "time": 0.5672575599582899, "position": { "x": 7, "y": 0 @@ -4677,10 +4677,10 @@ "lineGroupId": 132, "indexInLine": 2, "isSliding": false, - "noteOrder": 3293, - "time": 0.5714285714285714, + "noteOrder": 3282, + "time": 0.5693430656934306, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4697,13 +4697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3317, - "time": 0.5755995828988529, + "noteOrder": 3282, + "time": 0.5693430656934306, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4715,16 +4715,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 2, + "lineGroupId": 132, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3341, - "time": 0.5797705943691346, + "noteOrder": 3294, + "time": 0.5714285714285714, "position": { "x": 6, "y": 0 @@ -4738,16 +4738,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.583941605839416, + "noteOrder": 3318, + "time": 0.5755995828988529, "position": { "x": 7, "y": 0 @@ -4761,18 +4761,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 134, "indexInLine": 2, "isSliding": false, - "noteOrder": 3389, - "time": 0.5881126173096977, + "noteOrder": 3330, + "time": 0.5776850886339937, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4784,18 +4784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3413, - "time": 0.5922836287799792, + "noteOrder": 3330, + "time": 0.5776850886339937, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4812,13 +4812,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3437, - "time": 0.5964546402502607, + "noteOrder": 3342, + "time": 0.5797705943691345, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4830,18 +4830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, - "time": 0.6006256517205422, + "noteOrder": 3367, + "time": 0.583941605839416, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4853,18 +4853,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 136, "indexInLine": 2, "isSliding": false, - "noteOrder": 3485, - "time": 0.6047966631908237, + "noteOrder": 3379, + "time": 0.5860271115745568, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4876,18 +4876,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3509, - "time": 0.6089676746611054, + "noteOrder": 3379, + "time": 0.5860271115745568, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4904,13 +4904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 2, + "lineGroupId": 136, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3533, - "time": 0.6131386861313869, + "noteOrder": 3391, + "time": 0.5881126173096975, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4927,13 +4927,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.6173096976016684, + "noteOrder": 3415, + "time": 0.5922836287799791, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4950,13 +4950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3581, - "time": 0.6214807090719501, + "noteOrder": 3427, + "time": 0.5943691345151199, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4973,13 +4973,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3605, - "time": 0.6256517205422315, + "noteOrder": 3427, + "time": 0.5943691345151199, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4991,16 +4991,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3629, - "time": 0.629822732012513, + "noteOrder": 3439, + "time": 0.5964546402502606, "position": { "x": 6, "y": 0 @@ -5014,18 +5014,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3653, - "time": 0.6339937434827946, + "noteOrder": 3439, + "time": 0.5964546402502606, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5042,13 +5042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 2, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3677, - "time": 0.6381647549530761, + "noteOrder": 3439, + "time": 0.5964546402502606, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5060,18 +5060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3702, - "time": 0.6423357664233578, + "noteOrder": 3451, + "time": 0.5985401459854014, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5088,13 +5088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 2, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3726, - "time": 0.6465067778936393, + "noteOrder": 3451, + "time": 0.5985401459854014, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5111,11 +5111,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3750, - "time": 0.6506777893639207, + "noteOrder": 3463, + "time": 0.6006256517205422, "position": { "x": 3, "y": 0 @@ -5134,13 +5134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 140, "indexInLine": 2, "isSliding": false, - "noteOrder": 3774, - "time": 0.6548488008342023, + "noteOrder": 3475, + "time": 0.6027111574556829, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5157,13 +5157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3798, - "time": 0.6590198123044838, + "noteOrder": 3475, + "time": 0.6027111574556829, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5175,18 +5175,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3822, - "time": 0.6631908237747655, + "noteOrder": 3487, + "time": 0.6047966631908237, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5203,11 +5203,678 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3846, - "time": 0.667361835245047, + "noteOrder": 3511, + "time": 0.6089676746611052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6110531803962461, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6110531803962461, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6131386861313868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6173096976016683, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3583, + "time": 0.62148070907195, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3607, + "time": 0.6256517205422314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3631, + "time": 0.6298227320125129, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6339937434827946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3667, + "time": 0.6360792492179353, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3667, + "time": 0.6360792492179353, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3679, + "time": 0.638164754953076, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3703, + "time": 0.6423357664233575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3715, + "time": 0.6444212721584984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3715, + "time": 0.6444212721584984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3727, + "time": 0.6465067778936392, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3751, + "time": 0.6506777893639206, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6527632950990614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3763, + "time": 0.6527632950990614, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3775, + "time": 0.6548488008342022, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3799, + "time": 0.6590198123044838, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3811, + "time": 0.6611053180396246, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3811, + "time": 0.6611053180396246, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3823, + "time": 0.6631908237747652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3823, + "time": 0.6631908237747652, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3823, + "time": 0.6631908237747652, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3835, + "time": 0.665276329509906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3835, + "time": 0.665276329509906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6673618352450469, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3859, + "time": 0.6694473409801877, "position": { "x": 7, "y": 0 @@ -5226,13 +5893,82 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3859, + "time": 0.6694473409801877, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3872, + "time": 0.6715328467153284, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.6757038581856099, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, "indexInLine": 2, "isSliding": false, - "noteOrder": 3870, - "time": 0.6715328467153284, + "noteOrder": 3908, + "time": 0.6777893639207506, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5244,18 +5980,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3894, - "time": 0.67570385818561, + "noteOrder": 3908, + "time": 0.6777893639207506, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5273,10 +6009,10 @@ }, { "lineGroupId": 158, - "indexInLine": 2, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3918, - "time": 0.6798748696558916, + "noteOrder": 3920, + "time": 0.6798748696558915, "position": { "x": 6, "y": 0 @@ -5296,10 +6032,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6923879040667362, + "noteOrder": 3992, + "time": 0.6923879040667361, "position": { "x": 4, "y": 0 @@ -5319,9 +6055,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6965589155370177, "position": { "x": 4, @@ -5342,10 +6078,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6923879040667362, + "noteOrder": 3992, + "time": 0.6923879040667361, "position": { "x": 6, "y": 0 @@ -5365,9 +6101,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6965589155370177, "position": { "x": 6, @@ -5388,9 +6124,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4038, + "noteOrder": 4040, "time": 0.7007299270072993, "position": { "x": 7, @@ -5411,10 +6147,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 4064, + "time": 0.7049009384775807, "position": { "x": 7, "y": 0 @@ -5434,10 +6170,10 @@ }, { "lineGroupId": 165, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4134, - "time": 0.7174139728884256, + "noteOrder": 4136, + "time": 0.7174139728884253, "position": { "x": 6, "y": 0 @@ -5457,10 +6193,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.7174139728884256, + "noteOrder": 4136, + "time": 0.7174139728884253, "position": { "x": 3, "y": 0 @@ -5480,10 +6216,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4158, - "time": 0.721584984358707, + "noteOrder": 4160, + "time": 0.7215849843587069, "position": { "x": 3, "y": 0 @@ -5503,10 +6239,10 @@ }, { "lineGroupId": 169, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4230, - "time": 0.7340980187695517, + "noteOrder": 4232, + "time": 0.7340980187695515, "position": { "x": 4, "y": 0 @@ -5526,10 +6262,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4230, - "time": 0.7340980187695517, + "noteOrder": 4232, + "time": 0.7340980187695515, "position": { "x": 6, "y": 0 @@ -5549,10 +6285,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4254, - "time": 0.7382690302398333, + "noteOrder": 4256, + "time": 0.7382690302398331, "position": { "x": 6, "y": 0 @@ -5572,9 +6308,9 @@ }, { "lineGroupId": 173, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.7507820646506778, "position": { "x": 5, @@ -5595,10 +6331,10 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7674661105318039, + "noteOrder": 4425, + "time": 0.7674661105318038, "position": { "x": 3, "y": 0 @@ -5618,9 +6354,9 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7716371220020855, "position": { "x": 3, @@ -5641,10 +6377,10 @@ }, { "lineGroupId": 181, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4519, - "time": 0.7841501564129302, + "noteOrder": 4521, + "time": 0.7841501564129301, "position": { "x": 4, "y": 0 @@ -5664,10 +6400,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.7841501564129302, + "noteOrder": 4521, + "time": 0.7841501564129301, "position": { "x": 7, "y": 0 @@ -5687,9 +6423,9 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7883211678832116, "position": { "x": 7, @@ -5710,10 +6446,10 @@ }, { "lineGroupId": 185, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4615, - "time": 0.8008342022940563, + "noteOrder": 4617, + "time": 0.8008342022940562, "position": { "x": 6, "y": 0 @@ -5733,10 +6469,10 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4615, - "time": 0.8008342022940563, + "noteOrder": 4617, + "time": 0.8008342022940562, "position": { "x": 4, "y": 0 @@ -5756,9 +6492,9 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8050052137643379, "position": { "x": 4, @@ -5779,9 +6515,9 @@ }, { "lineGroupId": 189, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4711, + "noteOrder": 4713, "time": 0.8175182481751825, "position": { "x": 5, @@ -5802,10 +6538,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.8342022940563087, + "noteOrder": 4809, + "time": 0.8342022940563085, "position": { "x": 7, "y": 0 @@ -5825,9 +6561,9 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.8425443169968717, "position": { "x": 7, @@ -5848,9 +6584,9 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.848800834202294, "position": { "x": 4, @@ -5871,10 +6607,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.8550573514077164, + "noteOrder": 4930, + "time": 0.8550573514077163, "position": { "x": 4, "y": 0 @@ -5894,9 +6630,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.848800834202294, "position": { "x": 6, @@ -5917,10 +6653,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.8550573514077164, + "noteOrder": 4930, + "time": 0.8550573514077163, "position": { "x": 6, "y": 0 @@ -5940,10 +6676,10 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, - "time": 0.867570385818561, + "noteOrder": 5002, + "time": 0.8675703858185609, "position": { "x": 3, "y": 0 @@ -5963,10 +6699,10 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5048, - "time": 0.8759124087591241, + "noteOrder": 5050, + "time": 0.875912408759124, "position": { "x": 3, "y": 0 @@ -5986,10 +6722,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5144, - "time": 0.8925964546402503, + "noteOrder": 5146, + "time": 0.8925964546402502, "position": { "x": 4, "y": 0 @@ -6009,10 +6745,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5168, - "time": 0.8967674661105318, + "noteOrder": 5170, + "time": 0.8967674661105317, "position": { "x": 4, "y": 0 @@ -6032,10 +6768,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5144, - "time": 0.8925964546402503, + "noteOrder": 5146, + "time": 0.8925964546402502, "position": { "x": 6, "y": 0 @@ -6055,10 +6791,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5168, - "time": 0.8967674661105318, + "noteOrder": 5170, + "time": 0.8967674661105317, "position": { "x": 6, "y": 0 @@ -6078,10 +6814,10 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9009384775808135, + "noteOrder": 5194, + "time": 0.9009384775808132, "position": { "x": 7, "y": 0 @@ -6101,10 +6837,10 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, - "time": 0.905109489051095, + "noteOrder": 5218, + "time": 0.9051094890510948, "position": { "x": 6, "y": 0 @@ -6124,10 +6860,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, - "time": 0.9092805005213764, + "noteOrder": 5242, + "time": 0.9092805005213763, "position": { "x": 3, "y": 0 @@ -6147,10 +6883,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, - "time": 0.913451511991658, + "noteOrder": 5266, + "time": 0.9134515119916579, "position": { "x": 4, "y": 0 @@ -6170,9 +6906,9 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9176225234619395, "position": { "x": 7, @@ -6191,12 +6927,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 221, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5302, + "time": 0.9197080291970803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5302, + "time": 0.9197080291970803, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5314, + "time": 0.9217935349322209, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5312, - "time": 0.9217935349322212, + "noteOrder": 5326, + "time": 0.9238790406673617, "position": { "x": 3, "y": 0 @@ -6214,12 +7019,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 222, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5326, + "time": 0.9238790406673617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5338, + "time": 0.9259645464025025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5336, - "time": 0.9259645464025027, + "noteOrder": 5350, + "time": 0.9280500521376432, "position": { "x": 7, "y": 0 @@ -6237,11 +7088,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5350, + "time": 0.9280500521376432, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.9301355578727841, "position": { "x": 3, @@ -6260,12 +7134,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5374, + "time": 0.9322210636079249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5374, + "time": 0.9322210636079249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.9343065693430657, + "noteOrder": 5386, + "time": 0.9343065693430656, "position": { "x": 6, "y": 0 @@ -6285,10 +7205,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5408, - "time": 0.9384775808133472, + "noteOrder": 5410, + "time": 0.9384775808133471, "position": { "x": 6, "y": 0 @@ -6308,10 +7228,10 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5432, - "time": 0.9426485922836289, + "noteOrder": 5435, + "time": 0.9426485922836287, "position": { "x": 4, "y": 0 @@ -6331,10 +7251,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5456, - "time": 0.9468196037539104, + "noteOrder": 5459, + "time": 0.9468196037539102, "position": { "x": 4, "y": 0 @@ -6354,10 +7274,10 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241917, "position": { "x": 7, "y": 0 @@ -6377,10 +7297,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5552, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 7, "y": 0 @@ -6400,10 +7320,10 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5528, - "time": 0.959332638164755, + "noteOrder": 5531, + "time": 0.9593326381647548, "position": { "x": 3, "y": 0 @@ -6423,10 +7343,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5552, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 3, "y": 0 diff --git a/tracks/Sleepwell/253_difficulty_1b.json b/tracks/Sleepwell/253_difficulty_1b.json index 1f654581..9b100401 100644 --- a/tracks/Sleepwell/253_difficulty_1b.json +++ b/tracks/Sleepwell/253_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 240, - "time": 0.04171011470281544, + "time": 0.04171011470281543, "position": { "x": 3, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 276, - "time": 0.047966631908237745, + "noteOrder": 277, + "time": 0.04796663190823774, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 337, - "time": 0.058394160583941604, + "time": 0.0583941605839416, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 469, - "time": 0.08133472367049009, + "time": 0.08133472367049008, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 673, - "time": 0.11678832116788321, + "time": 0.1167883211678832, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 697, - "time": 0.12095933263816476, + "time": 0.12095933263816475, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 745, - "time": 0.12930135557872785, + "time": 0.12930135557872782, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1106, - "time": 0.19186652763295098, + "time": 0.19186652763295095, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1250, - "time": 0.21689259645464026, + "time": 0.21689259645464024, "position": { "x": 3, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.24191866527632952, + "noteOrder": 1395, + "time": 0.2419186652763295, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.2586027111574557, + "noteOrder": 1491, + "time": 0.25860271115745564, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.283628779979145, + "noteOrder": 1635, + "time": 0.28362877997914493, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.28779979144942647, "position": { "x": 3, @@ -414,7 +414,7 @@ }, { "noteOrder": 1779, - "time": 0.3086548488008342, + "time": 0.30865484880083416, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.32533889468196037, + "noteOrder": 1876, + "time": 0.3253388946819603, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.3336809176225235, + "noteOrder": 1924, + "time": 0.33368091762252344, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.337851929092805, + "noteOrder": 1948, + "time": 0.3378519290928049, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.3420229405630866, + "noteOrder": 1972, + "time": 0.3420229405630865, "position": { "x": 3, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3753910323253389, "position": { "x": 6, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.3920750782064651, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.40041710114702816, + "noteOrder": 2308, + "time": 0.4004171011470281, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2331, - "time": 0.40458811261730976, + "noteOrder": 2333, + "time": 0.40458811261730965, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.40875912408759124, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.4129301355578728, + "noteOrder": 2381, + "time": 0.4129301355578727, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2404, - "time": 0.4171011470281544, + "noteOrder": 2405, + "time": 0.41710114702815426, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2404, - "time": 0.4171011470281544, + "noteOrder": 2405, + "time": 0.41710114702815426, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.42127215849843586, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.42127215849843586, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.43795620437956206, + "noteOrder": 2525, + "time": 0.437956204379562, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.44212721584984355, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.44629822732012514, + "noteOrder": 2573, + "time": 0.4462982273201251, "position": { "x": 5, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2620, - "time": 0.4546402502606882, + "noteOrder": 2621, + "time": 0.45464025026068816, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2645, "time": 0.45881126173096975, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.46298227320125135, + "noteOrder": 2669, + "time": 0.46298227320125124, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.46715328467153283, + "noteOrder": 2693, + "time": 0.4671532846715328, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.4713242961418144, + "noteOrder": 2717, + "time": 0.47132429614181437, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.47549530761209596, + "noteOrder": 2741, + "time": 0.47549530761209585, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4796663190823775, + "noteOrder": 2765, + "time": 0.4796663190823774, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.48383733055265904, + "noteOrder": 2789, + "time": 0.483837330552659, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2788, - "time": 0.48383733055265904, + "noteOrder": 2789, + "time": 0.483837330552659, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2886, "time": 0.5005213764337851, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.5046923879040668, + "noteOrder": 2910, + "time": 0.5046923879040667, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.5088633993743483, + "noteOrder": 2934, + "time": 0.5088633993743482, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.5130344108446299, + "noteOrder": 2958, + "time": 0.5130344108446298, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.5130344108446299, + "noteOrder": 2958, + "time": 0.5130344108446298, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.5172054223149114, + "noteOrder": 2982, + "time": 0.5172054223149113, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3006, "time": 0.5213764337851929, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.5255474452554745, + "noteOrder": 3030, + "time": 0.5255474452554744, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.529718456725756, + "noteOrder": 3054, + "time": 0.5297184567257559, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.529718456725756, + "noteOrder": 3054, + "time": 0.5297184567257559, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.5338894681960376, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.5380604796663191, + "noteOrder": 3102, + "time": 0.538060479666319, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3125, - "time": 0.5422314911366006, + "noteOrder": 3126, + "time": 0.5422314911366005, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.5464025026068822, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3150, "time": 0.5464025026068822, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5505735140771637, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.5547445255474452, + "noteOrder": 3198, + "time": 0.5547445255474451, "position": { "x": 5, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5589155370177268, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5630865484880083, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3246, "time": 0.5630865484880083, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.56725755995829, + "noteOrder": 3270, + "time": 0.5672575599582899, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5714285714285714, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3318, "time": 0.5755995828988529, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5797705943691346, + "noteOrder": 3342, + "time": 0.5797705943691345, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3367, "time": 0.583941605839416, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.5881126173096977, + "noteOrder": 3391, + "time": 0.5881126173096975, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5922836287799792, + "noteOrder": 3415, + "time": 0.5922836287799791, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3437, - "time": 0.5964546402502607, + "noteOrder": 3439, + "time": 0.5964546402502606, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3557, - "time": 0.6173096976016684, + "noteOrder": 3559, + "time": 0.6173096976016683, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3581, - "time": 0.6214807090719501, + "noteOrder": 3583, + "time": 0.62148070907195, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.6256517205422315, + "noteOrder": 3607, + "time": 0.6256517205422314, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.6256517205422315, + "noteOrder": 3607, + "time": 0.6256517205422314, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.629822732012513, + "noteOrder": 3631, + "time": 0.6298227320125129, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3629, - "time": 0.629822732012513, + "noteOrder": 3631, + "time": 0.6298227320125129, "position": { "x": 3, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3655, "time": 0.6339937434827946, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3677, - "time": 0.6381647549530761, + "noteOrder": 3679, + "time": 0.638164754953076, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3702, - "time": 0.6423357664233578, + "noteOrder": 3703, + "time": 0.6423357664233575, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3726, - "time": 0.6465067778936393, + "noteOrder": 3727, + "time": 0.6465067778936392, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3750, - "time": 0.6506777893639207, + "noteOrder": 3751, + "time": 0.6506777893639206, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.6548488008342023, + "noteOrder": 3775, + "time": 0.6548488008342022, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3799, "time": 0.6590198123044838, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3822, - "time": 0.6631908237747655, + "noteOrder": 3823, + "time": 0.6631908237747652, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3942, - "time": 0.6840458811261731, + "noteOrder": 3944, + "time": 0.684045881126173, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.6882168925964547, + "noteOrder": 3968, + "time": 0.6882168925964545, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 4064, + "time": 0.7049009384775807, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7132429614181439, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.721584984358707, + "noteOrder": 4160, + "time": 0.7215849843587069, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4206, - "time": 0.7299270072992701, + "noteOrder": 4208, + "time": 0.72992700729927, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4230, - "time": 0.7340980187695517, + "noteOrder": 4232, + "time": 0.7340980187695515, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.7382690302398333, + "noteOrder": 4256, + "time": 0.7382690302398331, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4278, - "time": 0.7424400417101147, + "noteOrder": 4280, + "time": 0.7424400417101146, "position": { "x": 7, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.7466110531803962, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4326, + "noteOrder": 4328, "time": 0.7507820646506778, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4351, - "time": 0.7549530761209594, + "noteOrder": 4352, + "time": 0.7549530761209592, "position": { "x": 7, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 4376, + "time": 0.7591240875912408, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.759124087591241, + "noteOrder": 4376, + "time": 0.7591240875912408, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7632950990615225, + "noteOrder": 4401, + "time": 0.7632950990615224, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7632950990615225, + "noteOrder": 4401, + "time": 0.7632950990615224, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7716371220020855, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7799791449426486, + "noteOrder": 4497, + "time": 0.7799791449426484, "position": { "x": 6, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7883211678832116, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.7966631908237748, + "noteOrder": 4593, + "time": 0.7966631908237747, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4615, - "time": 0.8008342022940563, + "noteOrder": 4617, + "time": 0.8008342022940562, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4641, "time": 0.8050052137643379, "position": { "x": 6, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4663, - "time": 0.8091762252346195, + "noteOrder": 4665, + "time": 0.8091762252346193, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.8133472367049009, + "noteOrder": 4689, + "time": 0.8133472367049008, "position": { "x": 4, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4711, + "noteOrder": 4713, "time": 0.8175182481751825, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4735, - "time": 0.821689259645464, + "noteOrder": 4737, + "time": 0.8216892596454639, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.8258602711157456, + "noteOrder": 4761, + "time": 0.8258602711157454, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.8258602711157456, + "noteOrder": 4761, + "time": 0.8258602711157454, "position": { "x": 6, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4783, - "time": 0.8300312825860272, + "noteOrder": 4785, + "time": 0.8300312825860271, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4783, - "time": 0.8300312825860272, + "noteOrder": 4785, + "time": 0.8300312825860271, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4807, - "time": 0.8342022940563087, + "noteOrder": 4809, + "time": 0.8342022940563085, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4855, + "noteOrder": 4857, "time": 0.8425443169968717, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.848800834202294, "position": { "x": 7, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4951, - "time": 0.8592283628779979, + "noteOrder": 4954, + "time": 0.8592283628779978, "position": { "x": 7, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4978, "time": 0.8633993743482794, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.867570385818561, + "noteOrder": 5002, + "time": 0.8675703858185609, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.8759124087591241, + "noteOrder": 5050, + "time": 0.875912408759124, "position": { "x": 7, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8821689259645464, + "noteOrder": 5086, + "time": 0.8821689259645462, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.8821689259645464, + "noteOrder": 5086, + "time": 0.8821689259645462, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8884254431699687, + "noteOrder": 5122, + "time": 0.8884254431699686, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5144, - "time": 0.8925964546402503, + "noteOrder": 5146, + "time": 0.8925964546402502, "position": { "x": 3, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5168, - "time": 0.8967674661105318, + "noteOrder": 5170, + "time": 0.8967674661105317, "position": { "x": 6, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5168, - "time": 0.8967674661105318, + "noteOrder": 5170, + "time": 0.8967674661105317, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5240, - "time": 0.9092805005213764, + "noteOrder": 5242, + "time": 0.9092805005213763, "position": { "x": 5, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.9259645464025027, + "noteOrder": 5338, + "time": 0.9259645464025025, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.9384775808133472, + "noteOrder": 5410, + "time": 0.9384775808133471, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5456, - "time": 0.9468196037539104, + "noteOrder": 5459, + "time": 0.9468196037539102, "position": { "x": 4, "y": 0 @@ -2736,10 +2736,10 @@ "lineNodes": [ { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10010427528675704, + "time": 0.10010427528675703, "position": { "x": 7, "y": 0 @@ -2759,10 +2759,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, - "time": 0.1042752867570386, + "time": 0.10427528675703857, "position": { "x": 7, "y": 0 @@ -2782,10 +2782,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.10844629822732013, + "time": 0.10844629822732012, "position": { "x": 3, "y": 0 @@ -2805,10 +2805,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 649, - "time": 0.11261730969760168, + "time": 0.11261730969760166, "position": { "x": 3, "y": 0 @@ -2828,7 +2828,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.1334723670490094, @@ -2851,9 +2851,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 793, + "noteOrder": 794, "time": 0.13764337851929093, "position": { "x": 7, @@ -2874,10 +2874,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, - "time": 0.1418143899895725, + "noteOrder": 818, + "time": 0.14181438998957246, "position": { "x": 3, "y": 0 @@ -2897,9 +2897,9 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.145985401459854, "position": { "x": 3, @@ -2920,9 +2920,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 6, @@ -2943,10 +2943,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16266944734098018, + "noteOrder": 938, + "time": 0.16266944734098016, "position": { "x": 6, "y": 0 @@ -2966,9 +2966,9 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.15015641293013554, "position": { "x": 4, @@ -2989,10 +2989,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16266944734098018, + "noteOrder": 938, + "time": 0.16266944734098016, "position": { "x": 4, "y": 0 @@ -3012,10 +3012,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.16684045881126175, + "noteOrder": 962, + "time": 0.16684045881126172, "position": { "x": 3, "y": 0 @@ -3035,7 +3035,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1010, "time": 0.17518248175182483, @@ -3058,10 +3058,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.18352450469238793, + "time": 0.18352450469238787, "position": { "x": 7, "y": 0 @@ -3081,10 +3081,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1106, - "time": 0.19186652763295098, + "time": 0.19186652763295095, "position": { "x": 7, "y": 0 @@ -3104,10 +3104,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, - "time": 0.20020855057351408, + "time": 0.20020855057351405, "position": { "x": 3, "y": 0 @@ -3127,7 +3127,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1178, "time": 0.20437956204379562, @@ -3150,10 +3150,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1202, - "time": 0.2085505735140772, + "time": 0.20855057351407713, "position": { "x": 7, "y": 0 @@ -3173,10 +3173,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1226, - "time": 0.21272158498435872, + "time": 0.2127215849843587, "position": { "x": 7, "y": 0 @@ -3196,10 +3196,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, - "time": 0.22523461939520337, + "noteOrder": 1299, + "time": 0.2252346193952033, "position": { "x": 4, "y": 0 @@ -3219,9 +3219,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.22940563086548488, "position": { "x": 4, @@ -3242,10 +3242,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, - "time": 0.22523461939520337, + "noteOrder": 1299, + "time": 0.2252346193952033, "position": { "x": 6, "y": 0 @@ -3265,9 +3265,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.22940563086548488, "position": { "x": 6, @@ -3288,10 +3288,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.23357664233576642, + "noteOrder": 1347, + "time": 0.2335766423357664, "position": { "x": 7, "y": 0 @@ -3311,10 +3311,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.24191866527632952, + "noteOrder": 1395, + "time": 0.2419186652763295, "position": { "x": 7, "y": 0 @@ -3334,9 +3334,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.25026068821689257, "position": { "x": 3, @@ -3357,10 +3357,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.2586027111574557, + "noteOrder": 1491, + "time": 0.25860271115745564, "position": { "x": 3, "y": 0 @@ -3380,9 +3380,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.2669447340980188, "position": { "x": 7, @@ -3403,10 +3403,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1562, - "time": 0.2711157455683003, + "noteOrder": 1563, + "time": 0.27111574556830026, "position": { "x": 7, "y": 0 @@ -3426,9 +3426,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.27528675703858185, "position": { "x": 3, @@ -3449,9 +3449,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2794577685088634, "position": { "x": 3, @@ -3472,7 +3472,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1683, "time": 0.291970802919708, @@ -3495,10 +3495,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1707, - "time": 0.2961418143899896, + "time": 0.29614181438998954, "position": { "x": 4, "y": 0 @@ -3518,7 +3518,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1683, "time": 0.291970802919708, @@ -3541,10 +3541,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1707, - "time": 0.2961418143899896, + "time": 0.29614181438998954, "position": { "x": 6, "y": 0 @@ -3564,7 +3564,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1731, "time": 0.3003128258602711, @@ -3587,10 +3587,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1779, - "time": 0.3086548488008342, + "time": 0.30865484880083416, "position": { "x": 3, "y": 0 @@ -3610,9 +3610,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3169968717413973, "position": { "x": 7, @@ -3633,10 +3633,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.32533889468196037, + "noteOrder": 1876, + "time": 0.3253388946819603, "position": { "x": 7, "y": 0 @@ -3656,10 +3656,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1995, - "time": 0.3461939520333681, + "noteOrder": 1996, + "time": 0.34619395203336806, "position": { "x": 7, "y": 0 @@ -3679,9 +3679,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.36287799791449427, "position": { "x": 7, @@ -3702,10 +3702,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.3545359749739312, + "noteOrder": 2044, + "time": 0.35453597497393113, "position": { "x": 3, "y": 0 @@ -3725,9 +3725,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.36287799791449427, "position": { "x": 3, @@ -3748,10 +3748,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.36704900938477586, + "noteOrder": 2116, + "time": 0.36704900938477575, "position": { "x": 7, "y": 0 @@ -3771,9 +3771,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3753910323253389, "position": { "x": 7, @@ -3794,10 +3794,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, - "time": 0.38373305526590196, + "noteOrder": 2212, + "time": 0.3837330552659019, "position": { "x": 3, "y": 0 @@ -3817,10 +3817,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.3920750782064651, + "noteOrder": 2260, + "time": 0.39207507820646503, "position": { "x": 3, "y": 0 @@ -3840,10 +3840,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { "x": 6, "y": 0 @@ -3863,10 +3863,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.42961418143899893, + "noteOrder": 2477, + "time": 0.4296141814389989, "position": { "x": 6, "y": 0 @@ -3886,10 +3886,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2452, - "time": 0.42544316996871745, + "noteOrder": 2453, + "time": 0.4254431699687174, "position": { "x": 4, "y": 0 @@ -3909,10 +3909,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.42961418143899893, + "noteOrder": 2477, + "time": 0.4296141814389989, "position": { "x": 4, "y": 0 @@ -3932,10 +3932,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.4337851929092805, + "noteOrder": 2501, + "time": 0.43378519290928047, "position": { "x": 7, "y": 0 @@ -3955,10 +3955,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.45046923879040673, + "noteOrder": 2597, + "time": 0.4504692387904066, "position": { "x": 7, "y": 0 @@ -3978,10 +3978,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.45046923879040673, + "noteOrder": 2597, + "time": 0.4504692387904066, "position": { "x": 3, "y": 0 @@ -4001,10 +4001,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.46715328467153283, + "noteOrder": 2693, + "time": 0.4671532846715328, "position": { "x": 3, "y": 0 @@ -4024,10 +4024,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2812, - "time": 0.48800834202294063, + "noteOrder": 2813, + "time": 0.4880083420229405, "position": { "x": 3, "y": 0 @@ -4047,10 +4047,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2860, - "time": 0.49635036496350365, + "noteOrder": 2862, + "time": 0.4963503649635036, "position": { "x": 3, "y": 0 @@ -4070,10 +4070,10 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2812, - "time": 0.48800834202294063, + "noteOrder": 2813, + "time": 0.4880083420229405, "position": { "x": 7, "y": 0 @@ -4093,10 +4093,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2860, - "time": 0.49635036496350365, + "noteOrder": 2862, + "time": 0.4963503649635036, "position": { "x": 7, "y": 0 @@ -4116,9 +4116,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3461, + "noteOrder": 3463, "time": 0.6006256517205422, "position": { "x": 7, @@ -4137,12 +4137,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3487, + "time": 0.6047966631908237, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3487, + "time": 0.6047966631908237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6089676746611052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6131386861313868, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6131386861313868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3509, - "time": 0.6089676746611054, + "noteOrder": 3847, + "time": 0.6673618352450469, "position": { "x": 3, "y": 0 @@ -4162,10 +4277,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3846, - "time": 0.667361835245047, + "noteOrder": 3872, + "time": 0.6715328467153284, "position": { "x": 3, "y": 0 @@ -4183,12 +4298,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3872, + "time": 0.6715328467153284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.6757038581856099, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3894, - "time": 0.67570385818561, + "noteOrder": 3920, + "time": 0.6798748696558915, "position": { "x": 7, "y": 0 @@ -4206,12 +4367,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3920, + "time": 0.6798748696558915, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6923879040667362, + "noteOrder": 3992, + "time": 0.6923879040667361, "position": { "x": 4, "y": 0 @@ -4231,9 +4415,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6965589155370177, "position": { "x": 4, @@ -4254,10 +4438,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6923879040667362, + "noteOrder": 3992, + "time": 0.6923879040667361, "position": { "x": 6, "y": 0 @@ -4277,9 +4461,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6965589155370177, "position": { "x": 6, @@ -4300,9 +4484,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4038, + "noteOrder": 4040, "time": 0.7007299270072993, "position": { "x": 4, @@ -4323,10 +4507,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4062, - "time": 0.7049009384775808, + "noteOrder": 4064, + "time": 0.7049009384775807, "position": { "x": 4, "y": 0 @@ -4346,10 +4530,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4086, - "time": 0.7090719499478624, + "noteOrder": 4088, + "time": 0.7090719499478623, "position": { "x": 3, "y": 0 @@ -4369,9 +4553,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7132429614181439, "position": { "x": 3, @@ -4392,10 +4576,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.7174139728884256, + "noteOrder": 4136, + "time": 0.7174139728884253, "position": { "x": 6, "y": 0 @@ -4415,10 +4599,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4158, - "time": 0.721584984358707, + "noteOrder": 4160, + "time": 0.7215849843587069, "position": { "x": 6, "y": 0 @@ -4438,9 +4622,9 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4182, + "noteOrder": 4184, "time": 0.7257559958289885, "position": { "x": 7, @@ -4461,10 +4645,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.7299270072992701, + "noteOrder": 4208, + "time": 0.72992700729927, "position": { "x": 7, "y": 0 @@ -4484,10 +4668,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7674661105318039, + "noteOrder": 4425, + "time": 0.7674661105318038, "position": { "x": 6, "y": 0 @@ -4507,9 +4691,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7716371220020855, "position": { "x": 6, @@ -4530,10 +4714,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4471, - "time": 0.7758081334723671, + "noteOrder": 4473, + "time": 0.775808133472367, "position": { "x": 7, "y": 0 @@ -4553,10 +4737,10 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4495, - "time": 0.7799791449426486, + "noteOrder": 4497, + "time": 0.7799791449426484, "position": { "x": 7, "y": 0 @@ -4576,10 +4760,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.7841501564129302, + "noteOrder": 4521, + "time": 0.7841501564129301, "position": { "x": 4, "y": 0 @@ -4599,9 +4783,9 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4543, + "noteOrder": 4545, "time": 0.7883211678832116, "position": { "x": 4, @@ -4622,9 +4806,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4567, + "noteOrder": 4569, "time": 0.7924921793534933, "position": { "x": 3, @@ -4645,10 +4829,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4591, - "time": 0.7966631908237748, + "noteOrder": 4593, + "time": 0.7966631908237747, "position": { "x": 3, "y": 0 @@ -4668,10 +4852,10 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9009384775808135, + "noteOrder": 5194, + "time": 0.9009384775808132, "position": { "x": 7, "y": 0 @@ -4691,10 +4875,10 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5240, - "time": 0.9092805005213764, + "noteOrder": 5242, + "time": 0.9092805005213763, "position": { "x": 7, "y": 0 @@ -4714,9 +4898,9 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5288, + "noteOrder": 5290, "time": 0.9176225234619395, "position": { "x": 3, @@ -4737,10 +4921,10 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5336, - "time": 0.9259645464025027, + "noteOrder": 5338, + "time": 0.9259645464025025, "position": { "x": 3, "y": 0 @@ -4760,10 +4944,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5384, - "time": 0.9343065693430657, + "noteOrder": 5386, + "time": 0.9343065693430656, "position": { "x": 7, "y": 0 @@ -4783,10 +4967,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5408, - "time": 0.9384775808133472, + "noteOrder": 5410, + "time": 0.9384775808133471, "position": { "x": 7, "y": 0 @@ -4806,10 +4990,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5432, - "time": 0.9426485922836289, + "noteOrder": 5435, + "time": 0.9426485922836287, "position": { "x": 3, "y": 0 @@ -4829,10 +5013,10 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5456, - "time": 0.9468196037539104, + "noteOrder": 5459, + "time": 0.9468196037539102, "position": { "x": 3, "y": 0 @@ -4852,10 +5036,10 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241917, "position": { "x": 6, "y": 0 @@ -4875,10 +5059,10 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5552, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 6, "y": 0 @@ -4898,10 +5082,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5480, - "time": 0.9509906152241919, + "noteOrder": 5483, + "time": 0.9509906152241917, "position": { "x": 4, "y": 0 @@ -4921,10 +5105,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5552, - "time": 0.9635036496350365, + "noteOrder": 5555, + "time": 0.9635036496350364, "position": { "x": 4, "y": 0 diff --git a/tracks/Sleepwell/info.json b/tracks/Sleepwell/info.json index e5fc33f0..b79606c8 100644 --- a/tracks/Sleepwell/info.json +++ b/tracks/Sleepwell/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Sleepwell", - "SongLength": "116.715102", + "SongLength": "106.762449", "SongAuthorName": "DJ WILDPARTY feat. yosumi", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/So What/357_difficulty_1a.json b/tracks/So What/357_difficulty_1a.json index 900bdd83..36c55ae5 100644 --- a/tracks/So What/357_difficulty_1a.json +++ b/tracks/So What/357_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.02620444929712024, + "time": 0.026204449297120236, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 169, "time": 0.030571857513306946, "position": { "x": 7, @@ -94,7 +94,7 @@ }, { "noteOrder": 217, - "time": 0.03930667394568036, + "time": 0.039306673945680354, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 433, - "time": 0.07861334789136072, + "time": 0.07861334789136071, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 457, - "time": 0.08298075610754742, + "time": 0.08298075610754743, "position": { "x": 5, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 529, + "noteOrder": 530, "time": 0.09608298075610755, "position": { "x": 3, @@ -294,7 +294,7 @@ }, { "noteOrder": 554, - "time": 0.10045038897229426, + "time": 0.10045038897229425, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 578, - "time": 0.10481779718848096, + "time": 0.10481779718848094, "position": { "x": 5, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.14849187935034802, "position": { "x": 5, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 866, - "time": 0.15722669578272144, + "noteOrder": 867, + "time": 0.15722669578272142, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 890, + "noteOrder": 891, "time": 0.16159410399890814, "position": { "x": 7, @@ -534,7 +534,7 @@ }, { "noteOrder": 939, - "time": 0.17032892043128156, + "time": 0.17032892043128153, "position": { "x": 5, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1011, - "time": 0.18343114507984168, + "time": 0.18343114507984165, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1155, - "time": 0.20963559437696191, + "noteOrder": 1156, + "time": 0.2096355943769619, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1179, - "time": 0.21400300259314864, + "noteOrder": 1180, + "time": 0.2140030025931486, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1191, + "noteOrder": 1192, "time": 0.21618670670124196, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1203, + "noteOrder": 1204, "time": 0.21837041080933534, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1227, - "time": 0.22273781902552203, + "noteOrder": 1228, + "time": 0.22273781902552206, "position": { "x": 7, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1251, + "noteOrder": 1252, "time": 0.22710522724170873, "position": { "x": 5, @@ -714,7 +714,7 @@ }, { "noteOrder": 1276, - "time": 0.23147263545789543, + "time": 0.23147263545789545, "position": { "x": 5, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1300, - "time": 0.23584004367408215, + "time": 0.23584004367408218, "position": { "x": 5, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1492, + "noteOrder": 1493, "time": 0.2707793094035758, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1516, + "noteOrder": 1517, "time": 0.2751467176197625, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.2795141258359492, "position": { "x": 7, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1564, - "time": 0.28388153405213595, + "noteOrder": 1565, + "time": 0.2838815340521359, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1576, + "noteOrder": 1577, "time": 0.2860652381602293, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1588, + "noteOrder": 1589, "time": 0.28824894226832265, "position": { "x": 2, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1612, + "noteOrder": 1613, "time": 0.29261635048450935, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1829, - "time": 0.3319230244301897, + "noteOrder": 1830, + "time": 0.33192302443018973, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.3450252490787499, + "noteOrder": 1902, + "time": 0.3450252490787498, "position": { "x": 3, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1998, - "time": 0.3624948819434966, + "time": 0.36249488194349666, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2022, - "time": 0.36686229015968336, + "noteOrder": 2023, + "time": 0.3668622901596833, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2095, "time": 0.37996451480824345, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2214, - "time": 0.40180155588917704, + "noteOrder": 2215, + "time": 0.401801555889177, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2286, + "noteOrder": 2287, "time": 0.41490378053773713, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2384, "time": 0.4323734134024839, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2408, "time": 0.43674082161867067, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2479, + "noteOrder": 2480, "time": 0.44984304626723076, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2504, "time": 0.45421045448341746, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2527, - "time": 0.4585778626996042, + "noteOrder": 2528, + "time": 0.45857786269960416, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2551, - "time": 0.46294527091579085, + "noteOrder": 2552, + "time": 0.4629452709157909, "position": { "x": 7, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2575, + "noteOrder": 2576, "time": 0.4673126791319776, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2720, + "noteOrder": 2721, "time": 0.49351712842909784, "position": { "x": 5, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2768, - "time": 0.5022519448614713, + "noteOrder": 2769, + "time": 0.5022519448614712, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.5066193530776579, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.5109867612938447, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2841, "time": 0.5153541695100313, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.5197215777262181, "position": { "x": 5, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3106, "time": 0.5633956598880852, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3177, + "noteOrder": 3178, "time": 0.5764978845366453, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3201, + "noteOrder": 3202, "time": 0.5808652927528319, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3226, "time": 0.5852327009690187, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3249, + "noteOrder": 3250, "time": 0.5896001091852053, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3275, "time": 0.5939675174013921, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3297, - "time": 0.5983349256175788, + "noteOrder": 3299, + "time": 0.5983349256175787, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3658, - "time": 0.6638460488603793, + "noteOrder": 3660, + "time": 0.6638460488603795, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3682, + "noteOrder": 3684, "time": 0.6682134570765661, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3694, + "noteOrder": 3696, "time": 0.6703971611846594, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3706, + "noteOrder": 3708, "time": 0.6725808652927528, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3730, + "noteOrder": 3732, "time": 0.6769482735089395, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3754, - "time": 0.6813156817251262, + "noteOrder": 3756, + "time": 0.6813156817251261, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3780, "time": 0.685683089941313, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3803, - "time": 0.6900504981574997, + "noteOrder": 3804, + "time": 0.6900504981574996, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3827, - "time": 0.6944179063736863, + "noteOrder": 3828, + "time": 0.6944179063736864, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3995, - "time": 0.7249897638869932, + "noteOrder": 3997, + "time": 0.7249897638869933, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4019, + "noteOrder": 4021, "time": 0.72935717210318, "position": { "x": 6, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4043, - "time": 0.7337245803193667, + "noteOrder": 4045, + "time": 0.7337245803193666, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4069, "time": 0.7380919885355535, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4079, + "noteOrder": 4081, "time": 0.7402756926436468, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4091, + "noteOrder": 4093, "time": 0.7424593967517401, "position": { "x": 8, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4115, + "noteOrder": 4117, "time": 0.7468268049679269, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4428, - "time": 0.8036031117783541, + "noteOrder": 4430, + "time": 0.803603111778354, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4452, - "time": 0.8079705199945406, + "noteOrder": 4454, + "time": 0.8079705199945407, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 4478, "time": 0.8123379282107274, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4695, "time": 0.8516446021564078, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4717, - "time": 0.8560120103725946, + "noteOrder": 4719, + "time": 0.8560120103725944, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4741, + "noteOrder": 4743, "time": 0.8603794185887812, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4910, - "time": 0.8909512761020881, + "noteOrder": 4912, + "time": 0.8909512761020882, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4934, - "time": 0.8953186843182748, + "noteOrder": 4936, + "time": 0.8953186843182749, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8996860925344615, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4984, "time": 0.9040535007506483, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5126, + "noteOrder": 5129, "time": 0.9302579500477685, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5174, - "time": 0.938992766480142, + "noteOrder": 5177, + "time": 0.9389927664801418, "position": { "x": 5, "y": 0 @@ -2016,10 +2016,10 @@ "lineNodes": [ { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.05240889859424048, + "time": 0.05240889859424047, "position": { "x": 4, "y": 0 @@ -2039,7 +2039,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.06114371502661389, @@ -2062,9 +2062,9 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, + "noteOrder": 482, "time": 0.08734816432373413, "position": { "x": 7, @@ -2085,9 +2085,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, + "noteOrder": 530, "time": 0.09608298075610755, "position": { "x": 6, @@ -2108,9 +2108,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 794, + "noteOrder": 795, "time": 0.14412447113416132, "position": { "x": 7, @@ -2131,9 +2131,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 818, + "noteOrder": 819, "time": 0.14849187935034802, "position": { "x": 7, @@ -2154,10 +2154,10 @@ }, { "lineGroupId": 28, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 842, - "time": 0.15285928756653472, + "noteOrder": 843, + "time": 0.15285928756653475, "position": { "x": 4, "y": 0 @@ -2177,10 +2177,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 915, - "time": 0.16596151221509484, + "time": 0.16596151221509486, "position": { "x": 3, "y": 0 @@ -2200,7 +2200,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 963, "time": 0.17469632864746826, @@ -2223,7 +2223,7 @@ }, { "lineGroupId": 33, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 987, "time": 0.17906373686365498, @@ -2246,10 +2246,10 @@ }, { "lineGroupId": 33, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1011, - "time": 0.18343114507984168, + "time": 0.18343114507984165, "position": { "x": 7, "y": 0 @@ -2269,7 +2269,7 @@ }, { "lineGroupId": 33, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1035, "time": 0.18779855329602838, @@ -2292,7 +2292,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1059, "time": 0.1921659615122151, @@ -2315,10 +2315,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1107, - "time": 0.20090077794458852, + "noteOrder": 1108, + "time": 0.2009007779445885, "position": { "x": 7, "y": 0 @@ -2338,10 +2338,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1107, - "time": 0.20090077794458852, + "noteOrder": 1108, + "time": 0.2009007779445885, "position": { "x": 3, "y": 0 @@ -2361,10 +2361,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1155, - "time": 0.20963559437696191, + "noteOrder": 1156, + "time": 0.2096355943769619, "position": { "x": 3, "y": 0 @@ -2384,7 +2384,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1348, "time": 0.24457486010645557, @@ -2407,10 +2407,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1372, - "time": 0.24894226832264227, + "time": 0.2489422683226423, "position": { "x": 6, "y": 0 @@ -2430,9 +2430,9 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1396, + "noteOrder": 1397, "time": 0.25330967653882897, "position": { "x": 7, @@ -2453,9 +2453,9 @@ }, { "lineGroupId": 49, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1420, + "noteOrder": 1421, "time": 0.25767708475501566, "position": { "x": 8, @@ -2476,7 +2476,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1348, "time": 0.24457486010645557, @@ -2499,10 +2499,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1372, - "time": 0.24894226832264227, + "time": 0.2489422683226423, "position": { "x": 4, "y": 0 @@ -2522,9 +2522,9 @@ }, { "lineGroupId": 50, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1396, + "noteOrder": 1397, "time": 0.25330967653882897, "position": { "x": 5, @@ -2545,9 +2545,9 @@ }, { "lineGroupId": 50, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1420, + "noteOrder": 1421, "time": 0.25767708475501566, "position": { "x": 6, @@ -2568,9 +2568,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1444, + "noteOrder": 1445, "time": 0.2620444929712024, "position": { "x": 3, @@ -2591,9 +2591,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1492, + "noteOrder": 1493, "time": 0.2707793094035758, "position": { "x": 3, @@ -2614,7 +2614,7 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1637, "time": 0.29698375870069604, @@ -2637,7 +2637,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1661, "time": 0.30135116691688274, @@ -2660,7 +2660,7 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1661, "time": 0.30135116691688274, @@ -2683,10 +2683,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1685, - "time": 0.30571857513306944, + "time": 0.3057185751330695, "position": { "x": 5, "y": 0 @@ -2706,10 +2706,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1685, - "time": 0.30571857513306944, + "time": 0.3057185751330695, "position": { "x": 5, "y": 0 @@ -2729,9 +2729,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1709, + "noteOrder": 1710, "time": 0.3100859833492562, "position": { "x": 5, @@ -2752,9 +2752,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1709, + "noteOrder": 1710, "time": 0.3100859833492562, "position": { "x": 5, @@ -2775,10 +2775,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1733, - "time": 0.3144533915654429, + "noteOrder": 1734, + "time": 0.31445339156544283, "position": { "x": 5, "y": 0 @@ -2798,9 +2798,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1853, + "noteOrder": 1854, "time": 0.3362904326463764, "position": { "x": 3, @@ -2820,11 +2820,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1877, - "time": 0.3406578408625631, + "noteOrder": 1866, + "time": 0.33847413675446975, "position": { "x": 3, "y": 0 @@ -2838,18 +2838,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1925, - "time": 0.3493926572949365, + "noteOrder": 1866, + "time": 0.33847413675446975, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2866,13 +2866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1949, - "time": 0.35376006551112327, + "noteOrder": 1878, + "time": 0.34065784086256307, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2884,16 +2884,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1974, - "time": 0.35812747372730996, + "noteOrder": 1878, + "time": 0.34065784086256307, "position": { "x": 6, "y": 0 @@ -2912,13 +2912,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2046, - "time": 0.37122969837587005, + "noteOrder": 1878, + "time": 0.34065784086256307, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2935,13 +2935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2070, - "time": 0.37559710659205675, + "noteOrder": 1890, + "time": 0.3428415449706565, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2953,16 +2953,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2118, - "time": 0.3843319230244302, + "noteOrder": 1890, + "time": 0.3428415449706565, "position": { "x": 4, "y": 0 @@ -2981,11 +2981,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2142, - "time": 0.38869933124061684, + "noteOrder": 1902, + "time": 0.3450252490787498, "position": { "x": 4, "y": 0 @@ -2999,18 +2999,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2166, - "time": 0.3930667394568036, + "noteOrder": 1902, + "time": 0.3450252490787498, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3027,13 +3027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2190, - "time": 0.3974341476729903, + "noteOrder": 1926, + "time": 0.3493926572949365, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3050,13 +3050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2238, - "time": 0.4061689641053637, + "noteOrder": 1938, + "time": 0.35157636140302984, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3073,13 +3073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2262, - "time": 0.41053637232155044, + "noteOrder": 1938, + "time": 0.35157636140302984, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3091,18 +3091,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2310, - "time": 0.41927118875392383, + "noteOrder": 1950, + "time": 0.3537600655111232, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3119,11 +3119,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2335, - "time": 0.4236385969701105, + "noteOrder": 1950, + "time": 0.3537600655111232, "position": { "x": 3, "y": 0 @@ -3137,18 +3137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2359, - "time": 0.4280060051862973, + "noteOrder": 1950, + "time": 0.3537600655111232, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3160,18 +3160,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2431, - "time": 0.44110822983485737, + "noteOrder": 1962, + "time": 0.35594376961921653, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3183,18 +3183,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2455, - "time": 0.44547563805104406, + "noteOrder": 1962, + "time": 0.35594376961921653, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3211,13 +3211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2599, - "time": 0.4716800873481643, + "noteOrder": 1974, + "time": 0.35812747372730996, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3234,13 +3234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2623, - "time": 0.47604749556435105, + "noteOrder": 1974, + "time": 0.35812747372730996, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3257,13 +3257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2623, - "time": 0.47604749556435105, + "noteOrder": 1974, + "time": 0.35812747372730996, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3280,13 +3280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2647, - "time": 0.4804149037805377, + "noteOrder": 1986, + "time": 0.3603111778354033, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3303,13 +3303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2647, - "time": 0.4804149037805377, + "noteOrder": 1986, + "time": 0.3603111778354033, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3321,18 +3321,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2671, - "time": 0.48478231199672445, + "noteOrder": 1998, + "time": 0.36249488194349666, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3344,18 +3344,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2671, - "time": 0.48478231199672445, + "noteOrder": 1998, + "time": 0.36249488194349666, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3372,13 +3372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 2696, - "time": 0.48914972021291114, + "noteOrder": 2047, + "time": 0.37122969837587005, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3390,18 +3390,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2696, - "time": 0.48914972021291114, + "noteOrder": 2059, + "time": 0.37341340248396343, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3418,13 +3418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2720, - "time": 0.49351712842909784, + "noteOrder": 2059, + "time": 0.37341340248396343, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3441,13 +3441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2744, - "time": 0.49788453664528454, + "noteOrder": 2071, + "time": 0.37559710659205675, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3459,18 +3459,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2768, - "time": 0.5022519448614713, + "noteOrder": 2071, + "time": 0.37559710659205675, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3482,18 +3482,1766 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2888, - "time": 0.5240889859424048, + "noteOrder": 2071, + "time": 0.37559710659205675, "position": { - "x": 4, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2083, + "time": 0.3777808107001501, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2083, + "time": 0.3777808107001501, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2095, + "time": 0.37996451480824345, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2095, + "time": 0.37996451480824345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2119, + "time": 0.3843319230244302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3865156271325235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3865156271325235, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2143, + "time": 0.3886993312406169, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2143, + "time": 0.3886993312406169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2143, + "time": 0.3886993312406169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2155, + "time": 0.3908830353487102, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2155, + "time": 0.3908830353487102, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2167, + "time": 0.39306673945680354, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2167, + "time": 0.39306673945680354, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2167, + "time": 0.39306673945680354, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2179, + "time": 0.39525044356489697, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2179, + "time": 0.39525044356489697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2191, + "time": 0.3974341476729903, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2191, + "time": 0.3974341476729903, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2191, + "time": 0.3974341476729903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2203, + "time": 0.39961785178108367, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2203, + "time": 0.39961785178108367, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2215, + "time": 0.401801555889177, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2215, + "time": 0.401801555889177, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2239, + "time": 0.4061689641053637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2251, + "time": 0.40835266821345706, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2251, + "time": 0.40835266821345706, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41053637232155044, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41053637232155044, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41053637232155044, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2275, + "time": 0.41272007642964376, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2275, + "time": 0.41272007642964376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2287, + "time": 0.41490378053773713, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2287, + "time": 0.41490378053773713, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2311, + "time": 0.4192711887539238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2324, + "time": 0.4214548928620172, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2324, + "time": 0.4214548928620172, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2336, + "time": 0.4236385969701105, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2336, + "time": 0.4236385969701105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2336, + "time": 0.4236385969701105, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2348, + "time": 0.4258223010782039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2348, + "time": 0.4258223010782039, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2360, + "time": 0.4280060051862972, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2360, + "time": 0.4280060051862972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2360, + "time": 0.4280060051862972, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2372, + "time": 0.4301897092943906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2372, + "time": 0.4301897092943906, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2384, + "time": 0.4323734134024839, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2384, + "time": 0.4323734134024839, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2432, + "time": 0.44110822983485737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2444, + "time": 0.4432919339429507, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2444, + "time": 0.4432919339429507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2456, + "time": 0.4454756380510441, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2456, + "time": 0.4454756380510441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2456, + "time": 0.4454756380510441, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2468, + "time": 0.44765934215913744, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2468, + "time": 0.44765934215913744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2480, + "time": 0.44984304626723076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2480, + "time": 0.44984304626723076, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2600, + "time": 0.47168008734816436, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2624, + "time": 0.476047495564351, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2624, + "time": 0.476047495564351, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2649, + "time": 0.4804149037805377, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2649, + "time": 0.4804149037805377, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2673, + "time": 0.4847823119967244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2673, + "time": 0.4847823119967244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2697, + "time": 0.48914972021291114, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2697, + "time": 0.48914972021291114, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2721, + "time": 0.49351712842909784, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2745, + "time": 0.4978845366452846, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2769, + "time": 0.5022519448614712, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2889, + "time": 0.5240889859424048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2913, + "time": 0.5284563941585915, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2937, + "time": 0.5328238023747782, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2962, + "time": 0.5371912105909649, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2986, + "time": 0.5415586188071516, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3511,12 +5259,1484 @@ }, { "lineGroupId": 111, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3010, + "time": 0.5459260270233384, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2889, + "time": 0.5240889859424048, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2913, + "time": 0.5284563941585915, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2937, + "time": 0.5328238023747782, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2962, + "time": 0.5371912105909649, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2986, + "time": 0.5415586188071516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3010, + "time": 0.5459260270233384, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3034, + "time": 0.550293435239525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3034, + "time": 0.550293435239525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3058, + "time": 0.5546608434557116, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3058, + "time": 0.5546608434557116, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5590282516718984, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5590282516718984, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3106, + "time": 0.5633956598880852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3130, + "time": 0.5677630681042718, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3154, + "time": 0.5721304763204585, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3154, + "time": 0.5721304763204585, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3178, + "time": 0.5764978845366453, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3323, + "time": 0.6027023338337655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3335, + "time": 0.6048860379418588, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3335, + "time": 0.6048860379418588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3347, + "time": 0.6070697420499521, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3359, + "time": 0.6092534461580454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3359, + "time": 0.6092534461580454, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3371, + "time": 0.611437150266139, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3539, + "time": 0.6420090077794459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3564, + "time": 0.6463764159956326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3612, + "time": 0.655111232428006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3612, + "time": 0.655111232428006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3660, + "time": 0.6638460488603795, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3852, + "time": 0.698785314589873, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3877, + "time": 0.7031527228060597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3901, + "time": 0.7075201310222464, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3925, + "time": 0.7118875392384331, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3852, + "time": 0.698785314589873, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3877, + "time": 0.7031527228060597, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3901, + "time": 0.7075201310222464, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3925, + "time": 0.7118875392384331, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3949, + "time": 0.7162549474546199, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3997, + "time": 0.7249897638869933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4141, + "time": 0.7511942131841135, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4153, + "time": 0.7533779172922068, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4153, + "time": 0.7533779172922068, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4165, + "time": 0.7555616214003003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4177, + "time": 0.7577453255083936, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4177, + "time": 0.7577453255083936, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4190, + "time": 0.7599290296164869, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4202, + "time": 0.7621127337245802, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4202, + "time": 0.7621127337245802, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4214, + "time": 0.7642964378326736, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4226, + "time": 0.7664801419407671, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4226, + "time": 0.7664801419407671, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4334, + "time": 0.7861334789136071, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4430, + "time": 0.803603111778354, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4527, + "time": 0.8210727446431009, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4539, + "time": 0.8232564487511942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4539, + "time": 0.8232564487511942, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4551, + "time": 0.8254401528592875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4551, + "time": 0.8254401528592875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4551, + "time": 0.8254401528592875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4563, + "time": 0.8276238569673808, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4563, + "time": 0.8276238569673808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4575, + "time": 0.8298075610754743, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4575, + "time": 0.8298075610754743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 2912, - "time": 0.5284563941585916, + "noteOrder": 4575, + "time": 0.8298075610754743, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3528,18 +6748,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 166, "indexInLine": 2, "isSliding": false, - "noteOrder": 2936, - "time": 0.5328238023747782, + "noteOrder": 4587, + "time": 0.8319912651835676, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3551,16 +6771,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 166, "indexInLine": 3, "isSliding": false, - "noteOrder": 2960, - "time": 0.5371912105909649, + "noteOrder": 4587, + "time": 0.8319912651835676, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4599, + "time": 0.8341749692916609, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4599, + "time": 0.8341749692916609, "position": { "x": 4, "y": 0 @@ -3574,16 +6840,62 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4599, + "time": 0.8341749692916609, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 4, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2984, - "time": 0.5415586188071516, + "noteOrder": 4611, + "time": 0.8363586733997542, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4611, + "time": 0.8363586733997542, "position": { "x": 5, "y": 0 @@ -3602,11 +6914,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 5, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3008, - "time": 0.5459260270233383, + "noteOrder": 4623, + "time": 0.8385423775078475, "position": { "x": 5, "y": 0 @@ -3625,13 +6937,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2888, - "time": 0.5240889859424048, + "noteOrder": 4623, + "time": 0.8385423775078475, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3643,18 +6955,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 2912, - "time": 0.5284563941585916, + "noteOrder": 4623, + "time": 0.8385423775078475, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3671,13 +6983,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 168, "indexInLine": 2, "isSliding": false, - "noteOrder": 2936, - "time": 0.5328238023747782, + "noteOrder": 4635, + "time": 0.8407260816159411, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3694,13 +7006,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 168, "indexInLine": 3, "isSliding": false, - "noteOrder": 2960, - "time": 0.5371912105909649, + "noteOrder": 4635, + "time": 0.8407260816159411, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3717,13 +7029,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 168, "indexInLine": 4, "isSliding": false, - "noteOrder": 2984, - "time": 0.5415586188071516, + "noteOrder": 4647, + "time": 0.8429097857240344, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3740,13 +7052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3008, - "time": 0.5459260270233383, + "noteOrder": 4647, + "time": 0.8429097857240344, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3763,13 +7075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 3032, - "time": 0.550293435239525, + "noteOrder": 4647, + "time": 0.8429097857240344, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3781,18 +7093,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3032, - "time": 0.550293435239525, + "noteOrder": 4659, + "time": 0.8450934898321277, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3809,11 +7121,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3057, - "time": 0.5546608434557118, + "noteOrder": 4659, + "time": 0.8450934898321277, "position": { "x": 5, "y": 0 @@ -3832,11 +7144,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3057, - "time": 0.5546608434557118, + "noteOrder": 4671, + "time": 0.847277193940221, "position": { "x": 5, "y": 0 @@ -3850,18 +7162,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3081, - "time": 0.5590282516718984, + "noteOrder": 4671, + "time": 0.847277193940221, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3873,18 +7185,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3081, - "time": 0.5590282516718984, + "noteOrder": 4671, + "time": 0.847277193940221, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3896,18 +7208,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3105, - "time": 0.5633956598880852, + "noteOrder": 4683, + "time": 0.8494608980483145, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3919,16 +7231,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3129, - "time": 0.5677630681042719, + "noteOrder": 4683, + "time": 0.8494608980483145, "position": { "x": 5, "y": 0 @@ -3947,11 +7259,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3153, - "time": 0.5721304763204585, + "noteOrder": 4695, + "time": 0.8516446021564078, "position": { "x": 5, "y": 0 @@ -3970,13 +7282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3153, - "time": 0.5721304763204585, + "noteOrder": 4695, + "time": 0.8516446021564078, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3988,18 +7300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, - "time": 0.5764978845366453, + "noteOrder": 4767, + "time": 0.8647468268049678, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4016,13 +7328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3321, - "time": 0.6027023338337655, + "noteOrder": 4779, + "time": 0.8669305309130612, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4034,18 +7346,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3345, - "time": 0.6070697420499522, + "noteOrder": 4779, + "time": 0.8669305309130612, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4062,13 +7374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3369, - "time": 0.6114371502661389, + "noteOrder": 4791, + "time": 0.8691142350211546, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4080,16 +7392,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3538, - "time": 0.6420090077794458, + "noteOrder": 4791, + "time": 0.8691142350211546, "position": { "x": 7, "y": 0 @@ -4103,18 +7415,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3562, - "time": 0.6463764159956326, + "noteOrder": 4791, + "time": 0.8691142350211546, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4126,18 +7438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3610, - "time": 0.6551112324280061, + "noteOrder": 4804, + "time": 0.871297939129248, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4149,18 +7461,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3610, - "time": 0.6551112324280061, + "noteOrder": 4804, + "time": 0.871297939129248, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4177,13 +7489,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3658, - "time": 0.6638460488603793, + "noteOrder": 4816, + "time": 0.8734816432373413, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4200,13 +7512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3851, - "time": 0.698785314589873, + "noteOrder": 4816, + "time": 0.8734816432373413, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4218,18 +7530,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 3875, - "time": 0.7031527228060598, + "noteOrder": 4816, + "time": 0.8734816432373413, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4246,13 +7558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 176, "indexInLine": 2, "isSliding": false, - "noteOrder": 3899, - "time": 0.7075201310222465, + "noteOrder": 4828, + "time": 0.8756653473454347, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4269,13 +7581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 176, "indexInLine": 3, "isSliding": false, - "noteOrder": 3923, - "time": 0.7118875392384332, + "noteOrder": 4828, + "time": 0.8756653473454347, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4292,13 +7604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3851, - "time": 0.698785314589873, + "noteOrder": 4840, + "time": 0.877849051453528, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4310,18 +7622,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3875, - "time": 0.7031527228060598, + "noteOrder": 4840, + "time": 0.877849051453528, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4333,18 +7645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 2, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3899, - "time": 0.7075201310222465, + "noteOrder": 4840, + "time": 0.877849051453528, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4361,13 +7673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 3, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3923, - "time": 0.7118875392384332, + "noteOrder": 4852, + "time": 0.8800327555616213, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4384,13 +7696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3947, - "time": 0.7162549474546199, + "noteOrder": 4852, + "time": 0.8800327555616213, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4407,13 +7719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3995, - "time": 0.7249897638869932, + "noteOrder": 4864, + "time": 0.8822164596697147, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4430,11 +7742,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4140, - "time": 0.7511942131841135, + "noteOrder": 4864, + "time": 0.8822164596697147, "position": { "x": 7, "y": 0 @@ -4453,13 +7765,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4164, - "time": 0.7555616214003003, + "noteOrder": 4864, + "time": 0.8822164596697147, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4476,13 +7788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4188, - "time": 0.7599290296164869, + "noteOrder": 4876, + "time": 0.8844001637778081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4494,18 +7806,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4212, - "time": 0.7642964378326736, + "noteOrder": 4876, + "time": 0.8844001637778081, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4522,11 +7834,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4332, - "time": 0.7861334789136072, + "noteOrder": 4888, + "time": 0.8865838678859014, "position": { "x": 5, "y": 0 @@ -4540,18 +7852,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4428, - "time": 0.8036031117783541, + "noteOrder": 4888, + "time": 0.8865838678859014, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4563,18 +7875,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4525, - "time": 0.8210727446431009, + "noteOrder": 4888, + "time": 0.8865838678859014, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4591,13 +7903,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4549, - "time": 0.8254401528592875, + "noteOrder": 4900, + "time": 0.8887675719939947, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4609,18 +7921,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4573, - "time": 0.8298075610754743, + "noteOrder": 4900, + "time": 0.8887675719939947, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4637,13 +7949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4597, - "time": 0.834174969291661, + "noteOrder": 4912, + "time": 0.8909512761020882, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4655,18 +7967,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4621, - "time": 0.8385423775078477, + "noteOrder": 4912, + "time": 0.8909512761020882, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4683,13 +7995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4645, - "time": 0.8429097857240343, + "noteOrder": 5008, + "time": 0.9084209089668349, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4706,13 +8018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4669, - "time": 0.847277193940221, + "noteOrder": 5020, + "time": 0.9106046130749282, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4724,16 +8036,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4765, - "time": 0.8647468268049678, + "noteOrder": 5020, + "time": 0.9106046130749282, "position": { "x": 4, "y": 0 @@ -4752,13 +8064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4789, - "time": 0.8691142350211546, + "noteOrder": 5032, + "time": 0.9127883171830217, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4775,11 +8087,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4813, - "time": 0.8734816432373413, + "noteOrder": 5044, + "time": 0.914972021291115, "position": { "x": 7, "y": 0 @@ -4793,18 +8105,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4837, - "time": 0.877849051453528, + "noteOrder": 5044, + "time": 0.914972021291115, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4821,13 +8133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4862, - "time": 0.8822164596697147, + "noteOrder": 5056, + "time": 0.9171557253992083, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4844,13 +8156,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, - "time": 0.8865838678859015, + "noteOrder": 5068, + "time": 0.9193394295073017, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4862,18 +8174,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5006, - "time": 0.9084209089668349, + "noteOrder": 5068, + "time": 0.9193394295073017, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4890,11 +8202,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5030, - "time": 0.9127883171830217, + "noteOrder": 5080, + "time": 0.9215231336153951, "position": { "x": 7, "y": 0 @@ -4913,13 +8225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5054, - "time": 0.9171557253992084, + "noteOrder": 5092, + "time": 0.9237068377234885, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4931,18 +8243,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5078, - "time": 0.9215231336153952, + "noteOrder": 5092, + "time": 0.9237068377234885, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4960,10 +8272,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5102, - "time": 0.9258905418315817, + "noteOrder": 5104, + "time": 0.9258905418315818, "position": { "x": 5, "y": 0 @@ -4983,9 +8295,9 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5126, + "noteOrder": 5129, "time": 0.9302579500477685, "position": { "x": 5, @@ -5006,9 +8318,9 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5150, + "noteOrder": 5153, "time": 0.9346253582639552, "position": { "x": 5, @@ -5029,10 +8341,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5174, - "time": 0.938992766480142, + "noteOrder": 5177, + "time": 0.9389927664801418, "position": { "x": 5, "y": 0 @@ -5052,10 +8364,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5199, - "time": 0.9433601746963286, + "noteOrder": 5201, + "time": 0.9433601746963287, "position": { "x": 6, "y": 0 @@ -5075,9 +8387,9 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5223, + "noteOrder": 5225, "time": 0.9477275829125154, "position": { "x": 6, @@ -5098,10 +8410,10 @@ }, { "lineGroupId": 192, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5247, - "time": 0.9520949911287021, + "noteOrder": 5249, + "time": 0.952094991128702, "position": { "x": 7, "y": 0 @@ -5121,9 +8433,9 @@ }, { "lineGroupId": 192, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.9564623993448887, "position": { "x": 5, @@ -5144,9 +8456,9 @@ }, { "lineGroupId": 192, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.9608298075610754, "position": { "x": 6, @@ -5167,9 +8479,9 @@ }, { "lineGroupId": 192, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5319, + "noteOrder": 5321, "time": 0.9651972157772621, "position": { "x": 5, @@ -5190,10 +8502,10 @@ }, { "lineGroupId": 192, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5343, - "time": 0.9695646239934489, + "noteOrder": 5345, + "time": 0.9695646239934488, "position": { "x": 5, "y": 0 @@ -5213,9 +8525,9 @@ }, { "lineGroupId": 192, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.9782994404258223, "position": { "x": 5, @@ -5236,10 +8548,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5199, - "time": 0.9433601746963286, + "noteOrder": 5201, + "time": 0.9433601746963287, "position": { "x": 4, "y": 0 @@ -5259,9 +8571,9 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5223, + "noteOrder": 5225, "time": 0.9477275829125154, "position": { "x": 4, @@ -5282,10 +8594,10 @@ }, { "lineGroupId": 193, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5247, - "time": 0.9520949911287021, + "noteOrder": 5249, + "time": 0.952094991128702, "position": { "x": 5, "y": 0 @@ -5305,9 +8617,9 @@ }, { "lineGroupId": 193, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.9564623993448887, "position": { "x": 3, @@ -5328,9 +8640,9 @@ }, { "lineGroupId": 193, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.9608298075610754, "position": { "x": 4, @@ -5351,9 +8663,9 @@ }, { "lineGroupId": 193, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5319, + "noteOrder": 5321, "time": 0.9651972157772621, "position": { "x": 5, @@ -5374,10 +8686,10 @@ }, { "lineGroupId": 193, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5343, - "time": 0.9695646239934489, + "noteOrder": 5345, + "time": 0.9695646239934488, "position": { "x": 5, "y": 0 @@ -5397,9 +8709,9 @@ }, { "lineGroupId": 193, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.9782994404258223, "position": { "x": 5, diff --git a/tracks/So What/357_difficulty_1b.json b/tracks/So What/357_difficulty_1b.json index cc4851cf..5e6026ce 100644 --- a/tracks/So What/357_difficulty_1b.json +++ b/tracks/So What/357_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.02620444929712024, + "time": 0.026204449297120236, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 217, - "time": 0.03930667394568036, + "time": 0.039306673945680354, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 433, - "time": 0.07861334789136072, + "time": 0.07861334789136071, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 457, - "time": 0.08298075610754742, + "time": 0.08298075610754743, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 529, + "noteOrder": 530, "time": 0.09608298075610755, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 554, - "time": 0.10045038897229426, + "time": 0.10045038897229425, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 578, - "time": 0.10481779718848096, + "time": 0.10481779718848094, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 650, - "time": 0.11792002183704108, + "time": 0.11792002183704109, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 794, + "noteOrder": 795, "time": 0.14412447113416132, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 890, + "noteOrder": 891, "time": 0.16159410399890814, "position": { "x": 4, @@ -474,7 +474,7 @@ }, { "noteOrder": 915, - "time": 0.16596151221509484, + "time": 0.16596151221509486, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 939, - "time": 0.17032892043128156, + "time": 0.17032892043128153, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1397, "time": 0.25330967653882897, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1420, + "noteOrder": 1421, "time": 0.25767708475501566, "position": { "x": 7, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1877, - "time": 0.3406578408625631, + "noteOrder": 1878, + "time": 0.34065784086256307, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.3450252490787499, + "noteOrder": 1902, + "time": 0.3450252490787498, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1998, - "time": 0.3624948819434966, + "time": 0.36249488194349666, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.37559710659205675, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2095, "time": 0.37996451480824345, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2142, - "time": 0.38869933124061684, + "noteOrder": 2143, + "time": 0.3886993312406169, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2166, - "time": 0.3930667394568036, + "noteOrder": 2167, + "time": 0.39306673945680354, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2190, + "noteOrder": 2191, "time": 0.3974341476729903, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2262, + "noteOrder": 2263, "time": 0.41053637232155044, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2286, + "noteOrder": 2287, "time": 0.41490378053773713, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2359, - "time": 0.4280060051862973, + "noteOrder": 2360, + "time": 0.4280060051862972, "position": { "x": 2, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2384, "time": 0.4323734134024839, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2455, - "time": 0.44547563805104406, + "noteOrder": 2456, + "time": 0.4454756380510441, "position": { "x": 8, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2479, + "noteOrder": 2480, "time": 0.44984304626723076, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2527, - "time": 0.4585778626996042, + "noteOrder": 2528, + "time": 0.45857786269960416, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2551, - "time": 0.46294527091579085, + "noteOrder": 2552, + "time": 0.4629452709157909, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2575, + "noteOrder": 2576, "time": 0.4673126791319776, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2744, - "time": 0.49788453664528454, + "noteOrder": 2745, + "time": 0.4978845366452846, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2768, - "time": 0.5022519448614713, + "noteOrder": 2769, + "time": 0.5022519448614712, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2889, "time": 0.5240889859424048, "position": { "x": 7, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2912, - "time": 0.5284563941585916, + "noteOrder": 2913, + "time": 0.5284563941585915, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2937, "time": 0.5328238023747782, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2962, "time": 0.5371912105909649, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3129, - "time": 0.5677630681042719, + "noteOrder": 3130, + "time": 0.5677630681042718, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3153, + "noteOrder": 3154, "time": 0.5721304763204585, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3275, "time": 0.5939675174013921, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3297, - "time": 0.5983349256175788, + "noteOrder": 3299, + "time": 0.5983349256175787, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3321, + "noteOrder": 3323, "time": 0.6027023338337655, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3345, - "time": 0.6070697420499522, + "noteOrder": 3347, + "time": 0.6070697420499521, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3803, - "time": 0.6900504981574997, + "noteOrder": 3804, + "time": 0.6900504981574996, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3899, - "time": 0.7075201310222465, + "noteOrder": 3901, + "time": 0.7075201310222464, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.847277193940221, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4695, "time": 0.8516446021564078, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4862, + "noteOrder": 4864, "time": 0.8822164596697147, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4886, - "time": 0.8865838678859015, + "noteOrder": 4888, + "time": 0.8865838678859014, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8996860925344615, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5054, - "time": 0.9171557253992084, + "noteOrder": 5056, + "time": 0.9171557253992083, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5153, "time": 0.9346253582639552, "position": { "x": 3, @@ -1376,10 +1376,10 @@ "lineNodes": [ { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.05240889859424048, + "time": 0.05240889859424047, "position": { "x": 4, "y": 0 @@ -1399,7 +1399,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.06114371502661389, @@ -1422,9 +1422,9 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, + "noteOrder": 482, "time": 0.08734816432373413, "position": { "x": 7, @@ -1445,9 +1445,9 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, + "noteOrder": 530, "time": 0.09608298075610755, "position": { "x": 6, @@ -1468,9 +1468,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 818, + "noteOrder": 819, "time": 0.14849187935034802, "position": { "x": 6, @@ -1491,10 +1491,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 842, - "time": 0.15285928756653472, + "noteOrder": 843, + "time": 0.15285928756653475, "position": { "x": 6, "y": 0 @@ -1514,7 +1514,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 963, "time": 0.17469632864746826, @@ -1537,7 +1537,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 987, "time": 0.17906373686365498, @@ -1560,10 +1560,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1011, - "time": 0.18343114507984168, + "time": 0.18343114507984165, "position": { "x": 3, "y": 0 @@ -1583,7 +1583,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1035, "time": 0.18779855329602838, @@ -1606,7 +1606,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1059, "time": 0.1921659615122151, @@ -1628,11 +1628,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1107, - "time": 0.20090077794458852, + "noteOrder": 1083, + "time": 0.19653336972840177, "position": { "x": 7, "y": 0 @@ -1646,18 +1646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1155, - "time": 0.20963559437696191, + "noteOrder": 1083, + "time": 0.19653336972840177, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1674,13 +1674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1203, - "time": 0.21837041080933534, + "noteOrder": 1108, + "time": 0.2009007779445885, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1697,13 +1697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1251, - "time": 0.22710522724170873, + "noteOrder": 1132, + "time": 0.20526818616077522, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1720,13 +1720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1251, - "time": 0.22710522724170873, + "noteOrder": 1132, + "time": 0.20526818616077522, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1738,18 +1738,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 1300, - "time": 0.23584004367408215, + "noteOrder": 1156, + "time": 0.2096355943769619, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1766,13 +1766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1300, - "time": 0.23584004367408215, + "noteOrder": 1180, + "time": 0.2140030025931486, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1784,18 +1784,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1180, + "time": 0.2140030025931486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1348, - "time": 0.24457486010645557, + "noteOrder": 1204, + "time": 0.21837041080933534, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -1812,13 +1835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1348, - "time": 0.24457486010645557, + "noteOrder": 1252, + "time": 0.22710522724170873, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -1830,16 +1853,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 1396, - "time": 0.25330967653882897, + "noteOrder": 1252, + "time": 0.22710522724170873, "position": { "x": 5, "y": 0 @@ -1858,13 +1881,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1444, - "time": 0.2620444929712024, + "noteOrder": 1300, + "time": 0.23584004367408218, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -1876,18 +1899,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1492, - "time": 0.2707793094035758, + "noteOrder": 1300, + "time": 0.23584004367408218, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -1899,18 +1922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1540, - "time": 0.2795141258359492, + "noteOrder": 1348, + "time": 0.24457486010645557, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -1927,13 +1950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1588, - "time": 0.28824894226832265, + "noteOrder": 1348, + "time": 0.24457486010645557, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1950,13 +1973,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1637, - "time": 0.29698375870069604, + "noteOrder": 1397, + "time": 0.25330967653882897, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -1973,13 +1996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1733, - "time": 0.3144533915654429, + "noteOrder": 1445, + "time": 0.2620444929712024, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -1991,16 +2014,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1637, - "time": 0.29698375870069604, + "noteOrder": 1469, + "time": 0.2664119011873891, "position": { "x": 3, "y": 0 @@ -2019,11 +2042,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1733, - "time": 0.3144533915654429, + "noteOrder": 1469, + "time": 0.2664119011873891, "position": { "x": 4, "y": 0 @@ -2042,11 +2065,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1829, - "time": 0.3319230244301897, + "noteOrder": 1493, + "time": 0.2707793094035758, "position": { "x": 3, "y": 0 @@ -2060,18 +2083,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1877, - "time": 0.3406578408625631, + "noteOrder": 1517, + "time": 0.2751467176197625, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2083,18 +2106,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1925, - "time": 0.3493926572949365, + "noteOrder": 1517, + "time": 0.2751467176197625, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2111,13 +2134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 1974, - "time": 0.35812747372730996, + "noteOrder": 1541, + "time": 0.2795141258359492, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2129,16 +2152,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2022, - "time": 0.36686229015968336, + "noteOrder": 1565, + "time": 0.2838815340521359, "position": { "x": 3, "y": 0 @@ -2157,11 +2180,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2070, - "time": 0.37559710659205675, + "noteOrder": 1565, + "time": 0.2838815340521359, "position": { "x": 4, "y": 0 @@ -2180,13 +2203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2214, - "time": 0.40180155588917704, + "noteOrder": 1589, + "time": 0.28824894226832265, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2198,18 +2221,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2262, - "time": 0.41053637232155044, + "noteOrder": 1637, + "time": 0.29698375870069604, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2221,18 +2244,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2310, - "time": 0.41927118875392383, + "noteOrder": 1734, + "time": 0.31445339156544283, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2249,13 +2272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 2359, - "time": 0.4280060051862973, + "noteOrder": 1637, + "time": 0.29698375870069604, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2267,18 +2290,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2407, - "time": 0.43674082161867067, + "noteOrder": 1734, + "time": 0.31445339156544283, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2295,13 +2318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 2455, - "time": 0.44547563805104406, + "noteOrder": 1830, + "time": 0.33192302443018973, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2318,13 +2341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2599, - "time": 0.4716800873481643, + "noteOrder": 1878, + "time": 0.34065784086256307, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2341,13 +2364,1278 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1926, + "time": 0.3493926572949365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1974, + "time": 0.35812747372730996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2023, + "time": 0.3668622901596833, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2071, + "time": 0.37559710659205675, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2215, + "time": 0.401801555889177, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41053637232155044, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2311, + "time": 0.4192711887539238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2360, + "time": 0.4280060051862972, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2408, + "time": 0.43674082161867067, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2456, + "time": 0.4454756380510441, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2600, + "time": 0.47168008734816436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2624, + "time": 0.476047495564351, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2624, + "time": 0.476047495564351, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2649, + "time": 0.4804149037805377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2673, + "time": 0.4847823119967244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2673, + "time": 0.4847823119967244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2697, + "time": 0.48914972021291114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2721, + "time": 0.49351712842909784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2721, + "time": 0.49351712842909784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2793, + "time": 0.5066193530776579, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2817, + "time": 0.5109867612938447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2817, + "time": 0.5109867612938447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2841, + "time": 0.5153541695100313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2865, + "time": 0.5197215777262181, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2865, + "time": 0.5197215777262181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2986, + "time": 0.5415586188071516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3010, + "time": 0.5459260270233384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3010, + "time": 0.5459260270233384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3034, + "time": 0.550293435239525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3058, + "time": 0.5546608434557116, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3058, + "time": 0.5546608434557116, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3082, + "time": 0.5590282516718984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3106, + "time": 0.5633956598880852, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3106, + "time": 0.5633956598880852, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3178, + "time": 0.5764978845366453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3202, + "time": 0.5808652927528319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3202, + "time": 0.5808652927528319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3226, + "time": 0.5852327009690187, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3250, + "time": 0.5896001091852053, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3250, + "time": 0.5896001091852053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3371, + "time": 0.611437150266139, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3539, + "time": 0.6420090077794459, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3371, + "time": 0.611437150266139, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3539, + "time": 0.6420090077794459, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3564, + "time": 0.6463764159956326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3588, + "time": 0.6507438242118192, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3588, + "time": 0.6507438242118192, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3612, + "time": 0.655111232428006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3636, + "time": 0.6594786406441926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3636, + "time": 0.6594786406441926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3660, + "time": 0.6638460488603795, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3684, + "time": 0.6682134570765661, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3684, + "time": 0.6682134570765661, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6725808652927528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3756, + "time": 0.6813156817251261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2647, - "time": 0.4804149037805377, + "noteOrder": 3756, + "time": 0.6813156817251261, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2359,18 +3647,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2696, - "time": 0.48914972021291114, + "noteOrder": 3804, + "time": 0.6900504981574996, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2387,13 +3675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2792, - "time": 0.5066193530776579, + "noteOrder": 3852, + "time": 0.698785314589873, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2410,13 +3698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2840, - "time": 0.5153541695100313, + "noteOrder": 3901, + "time": 0.7075201310222464, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2428,16 +3716,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2984, - "time": 0.5415586188071516, + "noteOrder": 3949, + "time": 0.7162549474546199, "position": { "x": 7, "y": 0 @@ -2456,11 +3744,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3032, - "time": 0.550293435239525, + "noteOrder": 3973, + "time": 0.7206223556708066, "position": { "x": 7, "y": 0 @@ -2474,18 +3762,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3081, - "time": 0.5590282516718984, + "noteOrder": 3973, + "time": 0.7206223556708066, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2502,13 +3790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, - "time": 0.5764978845366453, + "noteOrder": 3997, + "time": 0.7249897638869933, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2525,13 +3813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3225, - "time": 0.5852327009690187, + "noteOrder": 4021, + "time": 0.72935717210318, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2543,16 +3831,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3369, - "time": 0.6114371502661389, + "noteOrder": 4021, + "time": 0.72935717210318, "position": { "x": 6, "y": 0 @@ -2566,18 +3854,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 3538, - "time": 0.6420090077794458, + "noteOrder": 4045, + "time": 0.7337245803193666, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2594,13 +3882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3369, - "time": 0.6114371502661389, + "noteOrder": 4069, + "time": 0.7380919885355535, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2612,18 +3900,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3538, - "time": 0.6420090077794458, + "noteOrder": 4069, + "time": 0.7380919885355535, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2635,18 +3923,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3562, - "time": 0.6463764159956326, + "noteOrder": 4093, + "time": 0.7424593967517401, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2663,13 +3951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3610, - "time": 0.6551112324280061, + "noteOrder": 4141, + "time": 0.7511942131841135, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2681,16 +3969,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3658, - "time": 0.6638460488603793, + "noteOrder": 4238, + "time": 0.7686638460488604, "position": { "x": 3, "y": 0 @@ -2709,11 +3997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3706, - "time": 0.6725808652927528, + "noteOrder": 4141, + "time": 0.7511942131841135, "position": { "x": 7, "y": 0 @@ -2732,11 +4020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3754, - "time": 0.6813156817251262, + "noteOrder": 4238, + "time": 0.7686638460488604, "position": { "x": 6, "y": 0 @@ -2755,13 +4043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3754, - "time": 0.6813156817251262, + "noteOrder": 4334, + "time": 0.7861334789136071, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2773,18 +4061,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3803, - "time": 0.6900504981574997, + "noteOrder": 4478, + "time": 0.8123379282107274, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2796,18 +4084,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3851, - "time": 0.698785314589873, + "noteOrder": 4382, + "time": 0.7948682953459806, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2819,18 +4107,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3899, - "time": 0.7075201310222465, + "noteOrder": 4478, + "time": 0.8123379282107274, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2842,16 +4130,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3947, - "time": 0.7162549474546199, + "noteOrder": 4527, + "time": 0.8210727446431009, "position": { "x": 7, "y": 0 @@ -2870,11 +4158,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3995, - "time": 0.7249897638869932, + "noteOrder": 4551, + "time": 0.8254401528592875, "position": { "x": 7, "y": 0 @@ -2888,18 +4176,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4043, - "time": 0.7337245803193667, + "noteOrder": 4551, + "time": 0.8254401528592875, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2916,13 +4204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4091, - "time": 0.7424593967517401, + "noteOrder": 4575, + "time": 0.8298075610754743, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2939,13 +4227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4140, - "time": 0.7511942131841135, + "noteOrder": 4599, + "time": 0.8341749692916609, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2962,13 +4250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 2, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4236, - "time": 0.7686638460488604, + "noteOrder": 4599, + "time": 0.8341749692916609, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2985,11 +4273,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4140, - "time": 0.7511942131841135, + "noteOrder": 4623, + "time": 0.8385423775078475, "position": { "x": 7, "y": 0 @@ -3008,13 +4296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4236, - "time": 0.7686638460488604, + "noteOrder": 4647, + "time": 0.8429097857240344, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3031,11 +4319,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4332, - "time": 0.7861334789136072, + "noteOrder": 4647, + "time": 0.8429097857240344, "position": { "x": 6, "y": 0 @@ -3054,13 +4342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 4476, - "time": 0.8123379282107274, + "noteOrder": 4719, + "time": 0.8560120103725944, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3072,18 +4360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4380, - "time": 0.7948682953459806, + "noteOrder": 4743, + "time": 0.8603794185887812, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3100,11 +4388,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4476, - "time": 0.8123379282107274, + "noteOrder": 4743, + "time": 0.8603794185887812, "position": { "x": 4, "y": 0 @@ -3123,13 +4411,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4525, - "time": 0.8210727446431009, + "noteOrder": 4767, + "time": 0.8647468268049678, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3146,13 +4434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4573, - "time": 0.8298075610754743, + "noteOrder": 4791, + "time": 0.8691142350211546, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3164,18 +4452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4621, - "time": 0.8385423775078477, + "noteOrder": 4791, + "time": 0.8691142350211546, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3192,11 +4480,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4717, - "time": 0.8560120103725946, + "noteOrder": 4816, + "time": 0.8734816432373413, "position": { "x": 3, "y": 0 @@ -3215,11 +4503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4765, - "time": 0.8647468268049678, + "noteOrder": 4840, + "time": 0.877849051453528, "position": { "x": 3, "y": 0 @@ -3233,18 +4521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4813, - "time": 0.8734816432373413, + "noteOrder": 4840, + "time": 0.877849051453528, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3262,10 +4550,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4910, - "time": 0.8909512761020881, + "noteOrder": 4912, + "time": 0.8909512761020882, "position": { "x": 7, "y": 0 @@ -3285,9 +4573,9 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4958, + "noteOrder": 4960, "time": 0.8996860925344615, "position": { "x": 6, @@ -3308,9 +4596,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.9084209089668349, "position": { "x": 3, @@ -3331,10 +4619,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5054, - "time": 0.9171557253992084, + "noteOrder": 5056, + "time": 0.9171557253992083, "position": { "x": 4, "y": 0 @@ -3354,10 +4642,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5102, - "time": 0.9258905418315817, + "noteOrder": 5104, + "time": 0.9258905418315818, "position": { "x": 7, "y": 0 @@ -3377,9 +4665,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5150, + "noteOrder": 5153, "time": 0.9346253582639552, "position": { "x": 6, @@ -3400,10 +4688,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5199, - "time": 0.9433601746963286, + "noteOrder": 5201, + "time": 0.9433601746963287, "position": { "x": 5, "y": 0 @@ -3423,10 +4711,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5247, - "time": 0.9520949911287021, + "noteOrder": 5249, + "time": 0.952094991128702, "position": { "x": 5, "y": 0 @@ -3446,10 +4734,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5247, - "time": 0.9520949911287021, + "noteOrder": 5249, + "time": 0.952094991128702, "position": { "x": 5, "y": 0 @@ -3469,9 +4757,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.9608298075610754, "position": { "x": 5, @@ -3492,9 +4780,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.9608298075610754, "position": { "x": 5, @@ -3515,10 +4803,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5343, - "time": 0.9695646239934489, + "noteOrder": 5345, + "time": 0.9695646239934488, "position": { "x": 5, "y": 0 @@ -3538,9 +4826,9 @@ }, { "lineGroupId": 150, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.9782994404258223, "position": { "x": 5, diff --git a/tracks/So What/info.json b/tracks/So What/info.json index 9da040a5..954b04fd 100644 --- a/tracks/So What/info.json +++ b/tracks/So What/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "So What", - "SongLength": "117.629388", + "SongLength": "107.676735", "SongAuthorName": "PRIDASK", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Spin & Slide/255_difficulty_1a.json b/tracks/Spin & Slide/255_difficulty_1a.json index 250c22a4..32edfd00 100644 --- a/tracks/Spin & Slide/255_difficulty_1a.json +++ b/tracks/Spin & Slide/255_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 120, - "time": 0.020833333333333336, + "time": 0.020833333333333332, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.025000000000000005, + "time": 0.024999999999999998, "position": { "x": 2, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 168, - "time": 0.029166666666666667, + "time": 0.029166666666666664, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 192, - "time": 0.03333333333333334, + "time": 0.03333333333333333, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 240, - "time": 0.04166666666666667, + "time": 0.041666666666666664, "position": { "x": 8, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 264, - "time": 0.04583333333333334, + "noteOrder": 265, + "time": 0.04583333333333332, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 313, - "time": 0.05416666666666667, + "time": 0.05416666666666666, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 337, - "time": 0.058333333333333334, + "time": 0.05833333333333333, "position": { "x": 8, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 361, - "time": 0.0625, + "time": 0.06249999999999999, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 385, - "time": 0.06666666666666668, + "time": 0.06666666666666667, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 457, - "time": 0.07916666666666668, + "time": 0.07916666666666666, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 505, - "time": 0.08750000000000001, + "time": 0.08749999999999998, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 601, - "time": 0.10416666666666667, + "time": 0.10416666666666666, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 625, - "time": 0.10833333333333334, + "time": 0.10833333333333332, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 649, - "time": 0.1125, + "time": 0.11249999999999999, "position": { "x": 8, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 685, - "time": 0.11875000000000001, + "time": 0.11874999999999998, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 769, - "time": 0.13333333333333336, + "noteOrder": 770, + "time": 0.13333333333333333, "position": { "x": 3, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 781, - "time": 0.13541666666666669, + "noteOrder": 782, + "time": 0.13541666666666666, "position": { "x": 5, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 793, - "time": 0.1375, + "noteOrder": 794, + "time": 0.13749999999999998, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.14166666666666666, "position": { "x": 3, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 829, - "time": 0.14375000000000002, + "noteOrder": 830, + "time": 0.14375, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.15416666666666667, + "noteOrder": 890, + "time": 0.15416666666666665, "position": { "x": 7, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 938, - "time": 0.1625, + "time": 0.16249999999999998, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 986, - "time": 0.17083333333333334, + "time": 0.1708333333333333, "position": { "x": 5, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1010, - "time": 0.17500000000000002, + "time": 0.17499999999999996, "position": { "x": 4, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1034, - "time": 0.17916666666666667, + "time": 0.17916666666666664, "position": { "x": 2, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1070, - "time": 0.18541666666666667, + "time": 0.18541666666666665, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1154, - "time": 0.20000000000000004, + "time": 0.19999999999999998, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1178, - "time": 0.2041666666666667, + "time": 0.20416666666666666, "position": { "x": 3, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1202, - "time": 0.20833333333333334, + "time": 0.20833333333333331, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1214, - "time": 0.21041666666666667, + "time": 0.21041666666666664, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.22083333333333335, + "noteOrder": 1275, + "time": 0.22083333333333333, "position": { "x": 5, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.225, + "noteOrder": 1299, + "time": 0.22499999999999998, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.22916666666666669, + "noteOrder": 1323, + "time": 0.22916666666666666, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1346, - "time": 0.23333333333333334, + "noteOrder": 1347, + "time": 0.2333333333333333, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.23750000000000002, + "noteOrder": 1371, + "time": 0.23749999999999996, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.24166666666666667, + "noteOrder": 1395, + "time": 0.24166666666666664, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.24583333333333335, + "noteOrder": 1419, + "time": 0.2458333333333333, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.25833333333333336, + "noteOrder": 1491, + "time": 0.2583333333333333, "position": { "x": 6, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1538, - "time": 0.2666666666666667, + "noteOrder": 1539, + "time": 0.26666666666666666, "position": { "x": 6, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1575, - "time": 0.2729166666666667, + "time": 0.27291666666666664, "position": { "x": 4, "y": 0 @@ -954,7 +954,7 @@ }, { "noteOrder": 1659, - "time": 0.28750000000000003, + "time": 0.2875, "position": { "x": 5, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1683, - "time": 0.2916666666666667, + "time": 0.29166666666666663, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1707, - "time": 0.29583333333333334, + "noteOrder": 1708, + "time": 0.2958333333333333, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.3, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1755, - "time": 0.3041666666666667, + "noteOrder": 1756, + "time": 0.30416666666666664, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.30833333333333335, + "noteOrder": 1780, + "time": 0.3083333333333333, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.3125, + "noteOrder": 1804, + "time": 0.31249999999999994, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.325, + "noteOrder": 1876, + "time": 0.32499999999999996, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.33333333333333337, + "noteOrder": 1924, + "time": 0.3333333333333333, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1959, - "time": 0.33958333333333335, + "noteOrder": 1960, + "time": 0.3395833333333333, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.3458333333333334, + "noteOrder": 1996, + "time": 0.34583333333333327, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.36250000000000004, + "noteOrder": 2092, + "time": 0.36249999999999993, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.37083333333333335, + "noteOrder": 2140, + "time": 0.3708333333333333, "position": { "x": 7, "y": 0 @@ -1214,7 +1214,7 @@ }, { "noteOrder": 2188, - "time": 0.3791666666666667, + "time": 0.37916666666666665, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.4041666666666667, "position": { "x": 3, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4083333333333334, + "noteOrder": 2357, + "time": 0.4083333333333333, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.41250000000000003, + "noteOrder": 2381, + "time": 0.4125, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.4291666666666667, + "noteOrder": 2477, + "time": 0.42916666666666664, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.4375, + "noteOrder": 2525, + "time": 0.43749999999999994, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.4458333333333333, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.4708333333333334, + "noteOrder": 2718, + "time": 0.47083333333333327, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.47500000000000003, + "noteOrder": 2742, + "time": 0.4749999999999999, "position": { "x": 8, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4791666666666667, + "noteOrder": 2766, + "time": 0.47916666666666663, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3173, - "time": 0.55, + "noteOrder": 3175, + "time": 0.5499999999999999, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.5541666666666667, + "noteOrder": 3199, + "time": 0.5541666666666666, "position": { "x": 5, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.5583333333333333, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3247, "time": 0.5625, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3271, "time": 0.5666666666666667, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.5708333333333334, + "noteOrder": 3295, + "time": 0.5708333333333333, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5750000000000001, + "noteOrder": 3319, + "time": 0.575, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5791666666666667, + "noteOrder": 3343, + "time": 0.5791666666666666, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5833333333333334, + "noteOrder": 3367, + "time": 0.5833333333333333, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.5875, + "noteOrder": 3391, + "time": 0.5874999999999999, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5916666666666667, + "noteOrder": 3415, + "time": 0.5916666666666666, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3438, - "time": 0.5958333333333334, + "noteOrder": 3439, + "time": 0.5958333333333333, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.6, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3486, - "time": 0.6041666666666667, + "noteOrder": 3487, + "time": 0.6041666666666666, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3510, - "time": 0.6083333333333334, + "noteOrder": 3511, + "time": 0.6083333333333333, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3535, "time": 0.6125, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.6583333333333333, + "noteOrder": 3800, + "time": 0.6583333333333332, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3810, - "time": 0.6604166666666667, + "noteOrder": 3812, + "time": 0.6604166666666665, "position": { "x": 5, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.6625, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.6666666666666667, + "noteOrder": 3848, + "time": 0.6666666666666666, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.6666666666666667, + "noteOrder": 3848, + "time": 0.6666666666666666, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.6875000000000001, + "noteOrder": 3968, + "time": 0.6875, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4016, "time": 0.6958333333333333, "position": { "x": 3, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4063, - "time": 0.7041666666666667, + "noteOrder": 4064, + "time": 0.7041666666666666, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.7083333333333334, + "noteOrder": 4088, + "time": 0.7083333333333333, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4111, - "time": 0.7125, + "noteOrder": 4112, + "time": 0.7124999999999999, "position": { "x": 8, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4147, + "noteOrder": 4149, "time": 0.71875, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4231, - "time": 0.7333333333333334, + "noteOrder": 4233, + "time": 0.7333333333333332, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4243, - "time": 0.7354166666666667, + "noteOrder": 4245, + "time": 0.7354166666666666, "position": { "x": 5, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4255, - "time": 0.7375, + "noteOrder": 4257, + "time": 0.7374999999999999, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4279, - "time": 0.7416666666666667, + "noteOrder": 4281, + "time": 0.7416666666666666, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.7437500000000001, + "noteOrder": 4293, + "time": 0.74375, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.7541666666666667, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7625000000000001, + "noteOrder": 4401, + "time": 0.7625, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.7708333333333334, + "noteOrder": 4449, + "time": 0.7708333333333333, "position": { "x": 5, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.775, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7791666666666668, + "noteOrder": 4497, + "time": 0.7791666666666666, "position": { "x": 2, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4531, + "noteOrder": 4533, "time": 0.7854166666666667, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4615, - "time": 0.8000000000000002, + "noteOrder": 4617, + "time": 0.7999999999999999, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4627, - "time": 0.8020833333333334, + "noteOrder": 4630, + "time": 0.8020833333333333, "position": { "x": 5, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4639, - "time": 0.8041666666666667, + "noteOrder": 4642, + "time": 0.8041666666666666, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4666, "time": 0.8083333333333333, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4676, - "time": 0.8104166666666667, + "noteOrder": 4678, + "time": 0.8104166666666666, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.8208333333333333, + "noteOrder": 4738, + "time": 0.8208333333333332, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4760, - "time": 0.8250000000000001, + "noteOrder": 4762, + "time": 0.825, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4784, - "time": 0.8291666666666667, + "noteOrder": 4786, + "time": 0.8291666666666666, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4808, - "time": 0.8333333333333334, + "noteOrder": 4810, + "time": 0.8333333333333333, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4832, - "time": 0.8375, + "noteOrder": 4834, + "time": 0.8374999999999999, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4856, - "time": 0.8416666666666667, + "noteOrder": 4858, + "time": 0.8416666666666666, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4880, - "time": 0.8458333333333334, + "noteOrder": 4882, + "time": 0.8458333333333332, "position": { "x": 5, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.8583333333333334, + "noteOrder": 4954, + "time": 0.8583333333333333, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5000, - "time": 0.8666666666666667, + "noteOrder": 5002, + "time": 0.8666666666666666, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5036, + "noteOrder": 5038, "time": 0.8729166666666667, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5072, - "time": 0.8791666666666667, + "noteOrder": 5074, + "time": 0.8791666666666665, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8875000000000001, + "noteOrder": 5123, + "time": 0.8874999999999998, "position": { "x": 5, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5147, "time": 0.8916666666666666, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5171, "time": 0.8958333333333334, "position": { "x": 3, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.9, + "noteOrder": 5195, + "time": 0.8999999999999999, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5216, - "time": 0.9041666666666668, + "noteOrder": 5219, + "time": 0.9041666666666667, "position": { "x": 4, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5240, - "time": 0.9083333333333333, + "noteOrder": 5243, + "time": 0.9083333333333332, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5264, + "noteOrder": 5267, "time": 0.9125, "position": { "x": 5, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5337, - "time": 0.9250000000000002, + "noteOrder": 5339, + "time": 0.9249999999999999, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5385, - "time": 0.9333333333333333, + "noteOrder": 5387, + "time": 0.9333333333333332, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5421, - "time": 0.9395833333333334, + "noteOrder": 5423, + "time": 0.9395833333333332, "position": { "x": 6, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5457, + "noteOrder": 5459, "time": 0.9458333333333333, "position": { "x": 7, @@ -2716,10 +2716,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.01666666666666667, + "time": 0.016666666666666666, "position": { "x": 4, "y": 0 @@ -2739,10 +2739,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, - "time": 0.029166666666666667, + "time": 0.029166666666666664, "position": { "x": 4, "y": 0 @@ -2762,10 +2762,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.05000000000000001, + "noteOrder": 289, + "time": 0.049999999999999996, "position": { "x": 6, "y": 0 @@ -2785,10 +2785,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, - "time": 0.0625, + "time": 0.06249999999999999, "position": { "x": 6, "y": 0 @@ -2808,10 +2808,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08333333333333334, + "time": 0.08333333333333333, "position": { "x": 3, "y": 0 @@ -2830,11 +2830,11 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, - "time": 0.09166666666666667, + "noteOrder": 493, + "time": 0.08541666666666665, "position": { "x": 3, "y": 0 @@ -2848,18 +2848,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 577, - "time": 0.10000000000000002, + "noteOrder": 493, + "time": 0.08541666666666665, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2876,13 +2876,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 17, + "indexInLine": 4, "isSliding": false, - "noteOrder": 601, - "time": 0.10416666666666667, + "noteOrder": 505, + "time": 0.08749999999999998, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2899,13 +2899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 2, + "lineGroupId": 17, + "indexInLine": 5, "isSliding": false, - "noteOrder": 649, - "time": 0.1125, + "noteOrder": 505, + "time": 0.08749999999999998, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2922,13 +2922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 673, - "time": 0.11666666666666667, + "noteOrder": 529, + "time": 0.09166666666666665, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2945,13 +2945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 685, - "time": 0.11875000000000001, + "noteOrder": 541, + "time": 0.09375, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2968,11 +2968,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 2, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 697, - "time": 0.12083333333333333, + "noteOrder": 541, + "time": 0.09375, "position": { "x": 4, "y": 0 @@ -2991,13 +2991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 4, "isSliding": false, - "noteOrder": 721, - "time": 0.125, + "noteOrder": 553, + "time": 0.09583333333333333, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3009,18 +3009,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 5, "isSliding": false, - "noteOrder": 745, - "time": 0.12916666666666668, + "noteOrder": 553, + "time": 0.09583333333333333, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3037,13 +3037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.15, + "noteOrder": 577, + "time": 0.09999999999999999, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3055,18 +3055,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 913, - "time": 0.15833333333333335, + "noteOrder": 601, + "time": 0.10416666666666666, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3083,13 +3083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 962, - "time": 0.16666666666666669, + "noteOrder": 649, + "time": 0.11249999999999999, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3101,18 +3101,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 25, "indexInLine": 1, "isSliding": false, - "noteOrder": 986, - "time": 0.17083333333333334, + "noteOrder": 673, + "time": 0.11666666666666665, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3129,13 +3129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 25, "indexInLine": 2, "isSliding": false, - "noteOrder": 1034, - "time": 0.17916666666666667, + "noteOrder": 685, + "time": 0.11874999999999998, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3152,13 +3152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1058, - "time": 0.18333333333333335, + "noteOrder": 697, + "time": 0.12083333333333332, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3170,18 +3170,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 27, "indexInLine": 1, "isSliding": false, - "noteOrder": 1070, - "time": 0.18541666666666667, + "noteOrder": 721, + "time": 0.12499999999999999, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3198,13 +3198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 27, "indexInLine": 2, "isSliding": false, - "noteOrder": 1082, - "time": 0.1875, + "noteOrder": 734, + "time": 0.12708333333333333, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3221,13 +3221,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1106, - "time": 0.19166666666666665, + "noteOrder": 734, + "time": 0.12708333333333333, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3239,18 +3239,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1130, - "time": 0.19583333333333333, + "noteOrder": 746, + "time": 0.12916666666666665, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3267,13 +3267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1250, - "time": 0.21666666666666667, + "noteOrder": 746, + "time": 0.12916666666666665, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3290,11 +3290,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1274, - "time": 0.22083333333333335, + "noteOrder": 746, + "time": 0.12916666666666665, "position": { "x": 3, "y": 0 @@ -3308,18 +3308,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 28, "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, - "time": 0.22916666666666669, + "noteOrder": 758, + "time": 0.13125, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3331,18 +3331,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 28, "indexInLine": 3, "isSliding": false, - "noteOrder": 1346, - "time": 0.23333333333333334, + "noteOrder": 758, + "time": 0.13125, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3354,18 +3354,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 28, "indexInLine": 4, "isSliding": false, - "noteOrder": 1418, - "time": 0.24583333333333335, + "noteOrder": 770, + "time": 0.13333333333333333, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3377,18 +3377,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1442, - "time": 0.25, + "noteOrder": 770, + "time": 0.13333333333333333, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3405,13 +3405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, - "time": 0.25416666666666665, + "noteOrder": 866, + "time": 0.15, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3423,18 +3423,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, - "time": 0.2625, + "noteOrder": 878, + "time": 0.15208333333333332, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3451,11 +3451,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1563, - "time": 0.27083333333333337, + "noteOrder": 878, + "time": 0.15208333333333332, "position": { "x": 6, "y": 0 @@ -3469,16 +3469,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1575, - "time": 0.2729166666666667, + "noteOrder": 890, + "time": 0.15416666666666665, "position": { "x": 6, "y": 0 @@ -3492,18 +3492,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 2, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1587, - "time": 0.275, + "noteOrder": 890, + "time": 0.15416666666666665, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3515,16 +3515,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1635, - "time": 0.2833333333333333, + "noteOrder": 914, + "time": 0.15833333333333333, "position": { "x": 7, "y": 0 @@ -3538,16 +3538,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1659, - "time": 0.28750000000000003, + "noteOrder": 926, + "time": 0.16041666666666665, "position": { "x": 7, "y": 0 @@ -3561,18 +3561,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 2, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1707, - "time": 0.29583333333333334, + "noteOrder": 926, + "time": 0.16041666666666665, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3584,18 +3584,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 3, + "lineGroupId": 37, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1731, - "time": 0.3, + "noteOrder": 938, + "time": 0.16249999999999998, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3607,18 +3607,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 4, + "lineGroupId": 37, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1803, - "time": 0.3125, + "noteOrder": 938, + "time": 0.16249999999999998, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3630,18 +3630,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3166666666666667, + "noteOrder": 962, + "time": 0.16666666666666666, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3653,18 +3653,3054 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 986, + "time": 0.1708333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1034, + "time": 0.17916666666666664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1058, + "time": 0.1833333333333333, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1070, + "time": 0.18541666666666665, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1082, + "time": 0.1875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1106, + "time": 0.19166666666666665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1118, + "time": 0.19375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1118, + "time": 0.19375, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1130, + "time": 0.19583333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1130, + "time": 0.19583333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1130, + "time": 0.19583333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1142, + "time": 0.19791666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1142, + "time": 0.19791666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1154, + "time": 0.19999999999999998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1154, + "time": 0.19999999999999998, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1251, + "time": 0.21666666666666665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1275, + "time": 0.22083333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1323, + "time": 0.22916666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1347, + "time": 0.2333333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2458333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.24999999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1455, + "time": 0.2520833333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1455, + "time": 0.2520833333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1467, + "time": 0.25416666666666665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1467, + "time": 0.25416666666666665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1467, + "time": 0.25416666666666665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.25625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.25625, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1491, + "time": 0.2583333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1491, + "time": 0.2583333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.2625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1527, + "time": 0.26458333333333334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1527, + "time": 0.26458333333333334, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1539, + "time": 0.26666666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1539, + "time": 0.26666666666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1563, + "time": 0.2708333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1575, + "time": 0.27291666666666664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1587, + "time": 0.27499999999999997, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.2833333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.2875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1708, + "time": 0.2958333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1732, + "time": 0.3, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1804, + "time": 0.31249999999999994, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.31666666666666665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1840, + "time": 0.31875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1840, + "time": 0.31875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3208333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3208333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1852, + "time": 0.3208333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1864, + "time": 0.3229166666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1864, + "time": 0.3229166666666667, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1876, + "time": 0.32499999999999996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1876, + "time": 0.32499999999999996, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1900, + "time": 0.3291666666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1912, + "time": 0.33125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1912, + "time": 0.33125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1924, + "time": 0.3333333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1924, + "time": 0.3333333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1948, + "time": 0.33749999999999997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1960, + "time": 0.3395833333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1972, + "time": 0.3416666666666666, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.3499999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2032, + "time": 0.3520833333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2032, + "time": 0.3520833333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.35416666666666663, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2056, + "time": 0.35624999999999996, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2056, + "time": 0.35624999999999996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3583333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2080, + "time": 0.36041666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2080, + "time": 0.36041666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2092, + "time": 0.36249999999999993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2092, + "time": 0.36249999999999993, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3666666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2128, + "time": 0.36874999999999997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2128, + "time": 0.36874999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3708333333333333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3708333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2188, + "time": 0.37916666666666665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2213, + "time": 0.3833333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2261, + "time": 0.39166666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2261, + "time": 0.39166666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.3958333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2285, + "time": 0.3958333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2309, + "time": 0.39999999999999997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2309, + "time": 0.39999999999999997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2333, + "time": 0.4041666666666667, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2357, + "time": 0.4083333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.4125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.41666666666666663, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2417, + "time": 0.41874999999999996, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2417, + "time": 0.41874999999999996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2429, + "time": 0.4208333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2441, + "time": 0.4229166666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2441, + "time": 0.4229166666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.425, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.42708333333333326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2465, + "time": 0.42708333333333326, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42916666666666664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2477, + "time": 0.42916666666666664, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2513, + "time": 0.4354166666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2513, + "time": 0.4354166666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2525, + "time": 0.43749999999999994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2525, + "time": 0.43749999999999994, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2549, + "time": 0.44166666666666665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2573, + "time": 0.4458333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.44999999999999996, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4541666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.4541666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2645, + "time": 0.4583333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2645, + "time": 0.4583333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2669, + "time": 0.46249999999999997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.46249999999999997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2694, + "time": 0.4666666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2694, + "time": 0.4666666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2718, + "time": 0.47083333333333327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2742, + "time": 0.4749999999999999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2766, + "time": 0.47916666666666663, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.49999999999999994, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2934, + "time": 0.5083333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5166666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2910, + "time": 0.5041666666666667, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5166666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6166666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3583, + "time": 0.6208333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6333333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1851, - "time": 0.3208333333333333, + "noteOrder": 3680, + "time": 0.6375, "position": { - "x": 4, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3752, + "time": 0.6499999999999999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.6499999999999999, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -3681,13 +6717,59 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1899, - "time": 0.32916666666666666, + "noteOrder": 3764, + "time": 0.6520833333333332, "position": { - "x": 4, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3764, + "time": 0.6520833333333332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3776, + "time": 0.6541666666666667, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3704,11 +6786,34 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1947, - "time": 0.33749999999999997, + "noteOrder": 3788, + "time": 0.65625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3788, + "time": 0.65625, "position": { "x": 4, "y": 0 @@ -3722,16 +6827,85 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 148, "indexInLine": 1, "isSliding": false, - "noteOrder": 1959, - "time": 0.33958333333333335, + "noteOrder": 3944, + "time": 0.6833333333333332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6854166666666667, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3956, + "time": 0.6854166666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3968, + "time": 0.6875, "position": { "x": 4, "y": 0 @@ -3745,18 +6919,64 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3968, + "time": 0.6875, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3992, + "time": 0.6916666666666665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 150, "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.3416666666666667, + "noteOrder": 4004, + "time": 0.69375, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3773,13 +6993,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2019, - "time": 0.35000000000000003, + "noteOrder": 4004, + "time": 0.69375, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3796,13 +7016,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2043, - "time": 0.3541666666666667, + "noteOrder": 4016, + "time": 0.6958333333333333, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3814,18 +7034,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2067, - "time": 0.35833333333333334, + "noteOrder": 4016, + "time": 0.6958333333333333, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3842,13 +7062,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.3666666666666667, + "noteOrder": 4040, + "time": 0.6999999999999998, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3865,13 +7085,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.375, + "noteOrder": 4064, + "time": 0.7041666666666666, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3883,16 +7103,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2188, - "time": 0.3791666666666667, + "noteOrder": 4112, + "time": 0.7124999999999999, "position": { "x": 6, "y": 0 @@ -3906,18 +7126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2212, - "time": 0.3833333333333333, + "noteOrder": 4136, + "time": 0.7166666666666666, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3934,13 +7154,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2236, - "time": 0.3875, + "noteOrder": 4149, + "time": 0.71875, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3957,13 +7177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2236, - "time": 0.3875, + "noteOrder": 4161, + "time": 0.7208333333333333, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3975,18 +7195,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, - "time": 0.39166666666666666, + "noteOrder": 4185, + "time": 0.7249999999999999, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4003,13 +7223,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2260, - "time": 0.39166666666666666, + "noteOrder": 4197, + "time": 0.7270833333333333, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4021,18 +7241,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2284, - "time": 0.39583333333333337, + "noteOrder": 4197, + "time": 0.7270833333333333, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4044,18 +7264,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2284, - "time": 0.39583333333333337, + "noteOrder": 4209, + "time": 0.7291666666666666, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4072,11 +7292,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2308, - "time": 0.4000000000000001, + "noteOrder": 4209, + "time": 0.7291666666666666, "position": { "x": 5, "y": 0 @@ -4095,13 +7315,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.4000000000000001, + "noteOrder": 4209, + "time": 0.7291666666666666, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4118,13 +7338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2332, - "time": 0.4041666666666667, + "noteOrder": 4221, + "time": 0.73125, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4141,11 +7361,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 2, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2356, - "time": 0.4083333333333334, + "noteOrder": 4221, + "time": 0.73125, "position": { "x": 4, "y": 0 @@ -4164,13 +7384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 3, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2380, - "time": 0.41250000000000003, + "noteOrder": 4233, + "time": 0.7333333333333332, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4187,13 +7407,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2404, - "time": 0.4166666666666667, + "noteOrder": 4233, + "time": 0.7333333333333332, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4205,16 +7425,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2428, - "time": 0.42083333333333334, + "noteOrder": 4329, + "time": 0.75, "position": { "x": 7, "y": 0 @@ -4233,13 +7453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.42500000000000004, + "noteOrder": 4341, + "time": 0.7520833333333333, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4251,18 +7471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.43333333333333335, + "noteOrder": 4341, + "time": 0.7520833333333333, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4279,13 +7499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2548, - "time": 0.4416666666666667, + "noteOrder": 4353, + "time": 0.7541666666666667, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4297,18 +7517,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2572, - "time": 0.4458333333333333, + "noteOrder": 4353, + "time": 0.7541666666666667, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4320,18 +7540,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, - "time": 0.45, + "noteOrder": 4377, + "time": 0.7583333333333333, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4348,13 +7568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.45416666666666666, + "noteOrder": 4389, + "time": 0.7604166666666666, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4371,13 +7591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2620, - "time": 0.45416666666666666, + "noteOrder": 4389, + "time": 0.7604166666666666, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4389,18 +7609,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2644, - "time": 0.45833333333333337, + "noteOrder": 4401, + "time": 0.7625, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4412,16 +7632,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2644, - "time": 0.45833333333333337, + "noteOrder": 4401, + "time": 0.7625, "position": { "x": 5, "y": 0 @@ -4440,13 +7660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 2668, - "time": 0.4625000000000001, + "noteOrder": 4425, + "time": 0.7666666666666666, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4458,18 +7678,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2668, - "time": 0.4625000000000001, + "noteOrder": 4449, + "time": 0.7708333333333333, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4486,13 +7706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.4666666666666667, + "noteOrder": 4497, + "time": 0.7791666666666666, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4509,13 +7729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.4666666666666667, + "noteOrder": 4521, + "time": 0.7833333333333333, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4532,13 +7752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2716, - "time": 0.4708333333333334, + "noteOrder": 4533, + "time": 0.7854166666666667, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4555,11 +7775,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 2, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2740, - "time": 0.47500000000000003, + "noteOrder": 4545, + "time": 0.7874999999999999, "position": { "x": 6, "y": 0 @@ -4578,13 +7798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 3, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2764, - "time": 0.4791666666666667, + "noteOrder": 4569, + "time": 0.7916666666666666, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4596,18 +7816,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5, + "noteOrder": 4581, + "time": 0.79375, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4624,13 +7844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2933, - "time": 0.5083333333333333, + "noteOrder": 4581, + "time": 0.79375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4647,13 +7867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 2, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2981, - "time": 0.5166666666666667, + "noteOrder": 4593, + "time": 0.7958333333333333, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4670,11 +7890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2909, - "time": 0.5041666666666667, + "noteOrder": 4593, + "time": 0.7958333333333333, "position": { "x": 5, "y": 0 @@ -4688,18 +7908,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.5166666666666667, + "noteOrder": 4593, + "time": 0.7958333333333333, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4716,11 +7936,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.6166666666666667, + "noteOrder": 4605, + "time": 0.7979166666666665, "position": { "x": 7, "y": 0 @@ -4734,18 +7954,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3582, - "time": 0.6208333333333333, + "noteOrder": 4605, + "time": 0.7979166666666665, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4757,18 +7977,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 2, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3654, - "time": 0.6333333333333334, + "noteOrder": 4617, + "time": 0.7999999999999999, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4780,18 +8000,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3654, - "time": 0.6333333333333334, + "noteOrder": 4617, + "time": 0.7999999999999999, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4808,11 +8028,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 3678, - "time": 0.6375000000000001, + "noteOrder": 4714, + "time": 0.8166666666666667, "position": { "x": 3, "y": 0 @@ -4831,13 +8051,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 184, "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.65, + "noteOrder": 4738, + "time": 0.8208333333333332, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4854,13 +8074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3750, - "time": 0.65, + "noteOrder": 4786, + "time": 0.8291666666666666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4872,18 +8092,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3774, - "time": 0.6541666666666668, + "noteOrder": 4810, + "time": 0.8333333333333333, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4900,11 +8120,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3942, - "time": 0.6833333333333333, + "noteOrder": 4882, + "time": 0.8458333333333332, "position": { "x": 3, "y": 0 @@ -4923,13 +8143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6916666666666668, + "noteOrder": 4906, + "time": 0.85, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4946,13 +8166,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.7000000000000001, + "noteOrder": 4918, + "time": 0.8520833333333332, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4964,18 +8184,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4063, - "time": 0.7041666666666667, + "noteOrder": 4918, + "time": 0.8520833333333332, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4987,18 +8207,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 2, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4111, - "time": 0.7125, + "noteOrder": 4930, + "time": 0.8541666666666665, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5010,18 +8230,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4135, - "time": 0.7166666666666667, + "noteOrder": 4930, + "time": 0.8541666666666665, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5038,13 +8258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 4147, - "time": 0.71875, + "noteOrder": 4930, + "time": 0.8541666666666665, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5056,18 +8276,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 193, "indexInLine": 2, "isSliding": false, - "noteOrder": 4159, - "time": 0.7208333333333334, + "noteOrder": 4942, + "time": 0.85625, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5079,18 +8299,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4183, - "time": 0.7250000000000001, + "noteOrder": 4942, + "time": 0.85625, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5107,13 +8327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4207, - "time": 0.7291666666666666, + "noteOrder": 4954, + "time": 0.8583333333333333, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5125,18 +8345,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4327, - "time": 0.75, + "noteOrder": 4954, + "time": 0.8583333333333333, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5148,18 +8368,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, - "time": 0.7583333333333334, + "noteOrder": 4978, + "time": 0.8624999999999998, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5171,18 +8391,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.7666666666666666, + "noteOrder": 4990, + "time": 0.8645833333333333, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5199,13 +8419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4447, - "time": 0.7708333333333334, + "noteOrder": 4990, + "time": 0.8645833333333333, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5222,13 +8442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4495, - "time": 0.7791666666666668, + "noteOrder": 5002, + "time": 0.8666666666666666, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5245,13 +8465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4519, - "time": 0.7833333333333333, + "noteOrder": 5002, + "time": 0.8666666666666666, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5263,18 +8483,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 4531, - "time": 0.7854166666666667, + "noteOrder": 5026, + "time": 0.8708333333333332, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5291,11 +8511,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 197, "indexInLine": 2, "isSliding": false, - "noteOrder": 4543, - "time": 0.7875, + "noteOrder": 5038, + "time": 0.8729166666666667, "position": { "x": 6, "y": 0 @@ -5314,13 +8534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4567, - "time": 0.7916666666666667, + "noteOrder": 5050, + "time": 0.8749999999999999, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5332,16 +8552,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.7958333333333334, + "noteOrder": 5098, + "time": 0.8833333333333333, "position": { "x": 7, "y": 0 @@ -5355,18 +8575,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4712, - "time": 0.8166666666666668, + "noteOrder": 5123, + "time": 0.8874999999999998, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5378,18 +8598,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4736, - "time": 0.8208333333333333, + "noteOrder": 5171, + "time": 0.8958333333333334, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5401,16 +8621,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 2, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4784, - "time": 0.8291666666666667, + "noteOrder": 5195, + "time": 0.8999999999999999, "position": { "x": 5, "y": 0 @@ -5424,18 +8644,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 3, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4808, - "time": 0.8333333333333334, + "noteOrder": 5267, + "time": 0.9125, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5447,18 +8667,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 4, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4880, - "time": 0.8458333333333334, + "noteOrder": 5291, + "time": 0.9166666666666666, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5475,13 +8695,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4904, - "time": 0.8500000000000001, + "noteOrder": 5303, + "time": 0.9187499999999998, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5493,18 +8713,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4928, - "time": 0.8541666666666667, + "noteOrder": 5303, + "time": 0.9187499999999998, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5521,13 +8741,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4976, - "time": 0.8625, + "noteOrder": 5315, + "time": 0.9208333333333333, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5539,16 +8759,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5024, - "time": 0.8708333333333335, + "noteOrder": 5315, + "time": 0.9208333333333333, "position": { "x": 6, "y": 0 @@ -5567,13 +8787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 5036, - "time": 0.8729166666666667, + "noteOrder": 5315, + "time": 0.9208333333333333, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5585,18 +8805,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 209, "indexInLine": 2, "isSliding": false, - "noteOrder": 5048, - "time": 0.875, + "noteOrder": 5327, + "time": 0.9229166666666666, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5608,18 +8828,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5096, - "time": 0.8833333333333334, + "noteOrder": 5327, + "time": 0.9229166666666666, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5636,13 +8856,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5120, - "time": 0.8875000000000001, + "noteOrder": 5339, + "time": 0.9249999999999999, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5659,13 +8879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 2, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5168, - "time": 0.8958333333333334, + "noteOrder": 5339, + "time": 0.9249999999999999, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5682,13 +8902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 3, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9, + "noteOrder": 5363, + "time": 0.9291666666666666, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5700,18 +8920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 4, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, - "time": 0.9125, + "noteOrder": 5375, + "time": 0.9312499999999999, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5723,18 +8943,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5288, - "time": 0.9166666666666667, + "noteOrder": 5375, + "time": 0.9312499999999999, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5751,13 +8971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5313, - "time": 0.9208333333333334, + "noteOrder": 5387, + "time": 0.9333333333333332, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5769,18 +8989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5361, - "time": 0.9291666666666667, + "noteOrder": 5387, + "time": 0.9333333333333332, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5798,10 +9018,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5409, - "time": 0.9375000000000001, + "noteOrder": 5411, + "time": 0.9375, "position": { "x": 4, "y": 0 @@ -5821,10 +9041,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5421, - "time": 0.9395833333333334, + "noteOrder": 5423, + "time": 0.9395833333333332, "position": { "x": 4, "y": 0 @@ -5844,10 +9064,10 @@ }, { "lineGroupId": 213, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5433, - "time": 0.9416666666666668, + "noteOrder": 5435, + "time": 0.9416666666666665, "position": { "x": 8, "y": 0 diff --git a/tracks/Spin & Slide/255_difficulty_1b.json b/tracks/Spin & Slide/255_difficulty_1b.json index 1e4bb0a5..3fe6989f 100644 --- a/tracks/Spin & Slide/255_difficulty_1b.json +++ b/tracks/Spin & Slide/255_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.01666666666666667, + "time": 0.016666666666666666, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.020833333333333336, + "time": 0.020833333333333332, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 168, - "time": 0.029166666666666667, + "time": 0.029166666666666664, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 192, - "time": 0.03333333333333334, + "time": 0.03333333333333333, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 240, - "time": 0.04166666666666667, + "time": 0.041666666666666664, "position": { "x": 8, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 264, - "time": 0.04583333333333334, + "noteOrder": 265, + "time": 0.04583333333333332, "position": { "x": 5, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 288, - "time": 0.05000000000000001, + "noteOrder": 289, + "time": 0.049999999999999996, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 313, - "time": 0.05416666666666667, + "time": 0.05416666666666666, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 361, - "time": 0.0625, + "time": 0.06249999999999999, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 385, - "time": 0.06666666666666668, + "time": 0.06666666666666667, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 457, - "time": 0.07916666666666668, + "time": 0.07916666666666666, "position": { "x": 5, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 577, - "time": 0.10000000000000002, + "time": 0.09999999999999999, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 601, - "time": 0.10416666666666667, + "time": 0.10416666666666666, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 625, - "time": 0.10833333333333334, + "time": 0.10833333333333332, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 649, - "time": 0.1125, + "time": 0.11249999999999999, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 673, - "time": 0.11666666666666667, + "time": 0.11666666666666665, "position": { "x": 8, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 697, - "time": 0.12083333333333333, + "time": 0.12083333333333332, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 721, - "time": 0.125, + "time": 0.12499999999999999, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 745, - "time": 0.12916666666666668, + "noteOrder": 746, + "time": 0.12916666666666665, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 769, - "time": 0.13333333333333336, + "noteOrder": 770, + "time": 0.13333333333333333, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 793, - "time": 0.1375, + "noteOrder": 794, + "time": 0.13749999999999998, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 962, - "time": 0.16666666666666669, + "time": 0.16666666666666666, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 986, - "time": 0.17083333333333334, + "time": 0.1708333333333333, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1010, - "time": 0.17500000000000002, + "time": 0.17499999999999996, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1034, - "time": 0.17916666666666667, + "time": 0.17916666666666664, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1058, - "time": 0.18333333333333335, + "time": 0.1833333333333333, "position": { "x": 2, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1154, - "time": 0.20000000000000004, + "time": 0.19999999999999998, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1178, - "time": 0.2041666666666667, + "time": 0.20416666666666666, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1250, - "time": 0.21666666666666667, + "noteOrder": 1251, + "time": 0.21666666666666665, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.22083333333333335, + "noteOrder": 1275, + "time": 0.22083333333333333, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1298, - "time": 0.225, + "noteOrder": 1299, + "time": 0.22499999999999998, "position": { "x": 3, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.22916666666666669, + "noteOrder": 1323, + "time": 0.22916666666666666, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1346, - "time": 0.23333333333333334, + "noteOrder": 1347, + "time": 0.2333333333333333, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.23750000000000002, + "noteOrder": 1371, + "time": 0.23749999999999996, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.24166666666666667, + "noteOrder": 1395, + "time": 0.24166666666666664, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.24583333333333335, + "noteOrder": 1419, + "time": 0.2458333333333333, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1490, - "time": 0.25833333333333336, + "noteOrder": 1491, + "time": 0.2583333333333333, "position": { "x": 6, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1587, - "time": 0.275, + "time": 0.27499999999999997, "position": { "x": 6, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1659, - "time": 0.28750000000000003, + "time": 0.2875, "position": { "x": 5, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1683, - "time": 0.2916666666666667, + "time": 0.29166666666666663, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1707, - "time": 0.29583333333333334, + "noteOrder": 1708, + "time": 0.2958333333333333, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.3, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1755, - "time": 0.3041666666666667, + "noteOrder": 1756, + "time": 0.30416666666666664, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.30833333333333335, + "noteOrder": 1780, + "time": 0.3083333333333333, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.3125, + "noteOrder": 1804, + "time": 0.31249999999999994, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.325, + "noteOrder": 1876, + "time": 0.32499999999999996, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.3416666666666667, + "noteOrder": 1972, + "time": 0.3416666666666666, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.35000000000000003, + "noteOrder": 2020, + "time": 0.3499999999999999, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2043, - "time": 0.3541666666666667, + "noteOrder": 2044, + "time": 0.35416666666666663, "position": { "x": 3, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.35833333333333334, + "noteOrder": 2068, + "time": 0.3583333333333333, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.36250000000000004, + "noteOrder": 2092, + "time": 0.36249999999999993, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2115, - "time": 0.3666666666666667, + "noteOrder": 2116, + "time": 0.3666666666666666, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.37083333333333335, + "noteOrder": 2140, + "time": 0.3708333333333333, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.375, "position": { "x": 7, @@ -1234,7 +1234,7 @@ }, { "noteOrder": 2188, - "time": 0.3791666666666667, + "time": 0.37916666666666665, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.4000000000000001, + "noteOrder": 2309, + "time": 0.39999999999999997, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.4041666666666667, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4083333333333334, + "noteOrder": 2357, + "time": 0.4083333333333333, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.41250000000000003, + "noteOrder": 2381, + "time": 0.4125, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2404, - "time": 0.4166666666666667, + "noteOrder": 2405, + "time": 0.41666666666666663, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2428, - "time": 0.42083333333333334, + "noteOrder": 2429, + "time": 0.4208333333333333, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.42500000000000004, + "noteOrder": 2453, + "time": 0.425, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.4291666666666667, + "noteOrder": 2477, + "time": 0.42916666666666664, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.43333333333333335, + "noteOrder": 2501, + "time": 0.4333333333333333, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.4375, + "noteOrder": 2525, + "time": 0.43749999999999994, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.4416666666666667, + "noteOrder": 2549, + "time": 0.44166666666666665, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.4458333333333333, "position": { "x": 5, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.4666666666666667, + "noteOrder": 2694, + "time": 0.4666666666666666, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.4708333333333334, + "noteOrder": 2718, + "time": 0.47083333333333327, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2740, - "time": 0.47500000000000003, + "noteOrder": 2742, + "time": 0.4749999999999999, "position": { "x": 8, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2764, - "time": 0.4791666666666667, + "noteOrder": 2766, + "time": 0.47916666666666663, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2885, - "time": 0.5, + "noteOrder": 2886, + "time": 0.49999999999999994, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3173, - "time": 0.55, + "noteOrder": 3175, + "time": 0.5499999999999999, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.5541666666666667, + "noteOrder": 3199, + "time": 0.5541666666666666, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.5583333333333333, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3247, "time": 0.5625, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3271, "time": 0.5666666666666667, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.5708333333333334, + "noteOrder": 3295, + "time": 0.5708333333333333, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3317, - "time": 0.5750000000000001, + "noteOrder": 3319, + "time": 0.575, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5791666666666667, + "noteOrder": 3343, + "time": 0.5791666666666666, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.5833333333333334, + "noteOrder": 3367, + "time": 0.5833333333333333, "position": { "x": 2, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.5875, + "noteOrder": 3391, + "time": 0.5874999999999999, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.5916666666666667, + "noteOrder": 3415, + "time": 0.5916666666666666, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3438, - "time": 0.5958333333333334, + "noteOrder": 3439, + "time": 0.5958333333333333, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.6, "position": { "x": 5, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3486, - "time": 0.6041666666666667, + "noteOrder": 3487, + "time": 0.6041666666666666, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3510, - "time": 0.6083333333333334, + "noteOrder": 3511, + "time": 0.6083333333333333, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3535, "time": 0.6125, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.6666666666666667, + "noteOrder": 3848, + "time": 0.6666666666666666, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.6666666666666667, + "noteOrder": 3848, + "time": 0.6666666666666666, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4038, - "time": 0.7000000000000001, + "noteOrder": 4040, + "time": 0.6999999999999998, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4063, - "time": 0.7041666666666667, + "noteOrder": 4064, + "time": 0.7041666666666666, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.7083333333333334, + "noteOrder": 4088, + "time": 0.7083333333333333, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4111, - "time": 0.7125, + "noteOrder": 4112, + "time": 0.7124999999999999, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4135, - "time": 0.7166666666666667, + "noteOrder": 4136, + "time": 0.7166666666666666, "position": { "x": 8, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4159, - "time": 0.7208333333333334, + "noteOrder": 4161, + "time": 0.7208333333333333, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4183, - "time": 0.7250000000000001, + "noteOrder": 4185, + "time": 0.7249999999999999, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4209, "time": 0.7291666666666666, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4231, - "time": 0.7333333333333334, + "noteOrder": 4233, + "time": 0.7333333333333332, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4255, - "time": 0.7375, + "noteOrder": 4257, + "time": 0.7374999999999999, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4423, + "noteOrder": 4425, "time": 0.7666666666666666, "position": { "x": 7, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.7708333333333334, + "noteOrder": 4449, + "time": 0.7708333333333333, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.775, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4495, - "time": 0.7791666666666668, + "noteOrder": 4497, + "time": 0.7791666666666666, "position": { "x": 4, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4521, "time": 0.7833333333333333, "position": { "x": 2, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4543, - "time": 0.7875, + "noteOrder": 4545, + "time": 0.7874999999999999, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.7916666666666667, + "noteOrder": 4569, + "time": 0.7916666666666666, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.7958333333333334, + "noteOrder": 4593, + "time": 0.7958333333333333, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4615, - "time": 0.8000000000000002, + "noteOrder": 4617, + "time": 0.7999999999999999, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4639, - "time": 0.8041666666666667, + "noteOrder": 4642, + "time": 0.8041666666666666, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4712, - "time": 0.8166666666666668, + "noteOrder": 4714, + "time": 0.8166666666666667, "position": { "x": 4, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.8208333333333333, + "noteOrder": 4738, + "time": 0.8208333333333332, "position": { "x": 5, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4760, - "time": 0.8250000000000001, + "noteOrder": 4762, + "time": 0.825, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4784, - "time": 0.8291666666666667, + "noteOrder": 4786, + "time": 0.8291666666666666, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4808, - "time": 0.8333333333333334, + "noteOrder": 4810, + "time": 0.8333333333333333, "position": { "x": 4, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4832, - "time": 0.8375, + "noteOrder": 4834, + "time": 0.8374999999999999, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4856, - "time": 0.8416666666666667, + "noteOrder": 4858, + "time": 0.8416666666666666, "position": { "x": 3, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4880, - "time": 0.8458333333333334, + "noteOrder": 4882, + "time": 0.8458333333333332, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.8583333333333334, + "noteOrder": 4954, + "time": 0.8583333333333333, "position": { "x": 6, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5048, - "time": 0.875, + "noteOrder": 5050, + "time": 0.8749999999999999, "position": { "x": 6, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5096, - "time": 0.8833333333333334, + "noteOrder": 5098, + "time": 0.8833333333333333, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5120, - "time": 0.8875000000000001, + "noteOrder": 5123, + "time": 0.8874999999999998, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5147, "time": 0.8916666666666666, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5171, "time": 0.8958333333333334, "position": { "x": 4, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.9, + "noteOrder": 5195, + "time": 0.8999999999999999, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5216, - "time": 0.9041666666666668, + "noteOrder": 5219, + "time": 0.9041666666666667, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5240, - "time": 0.9083333333333333, + "noteOrder": 5243, + "time": 0.9083333333333332, "position": { "x": 7, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5264, + "noteOrder": 5267, "time": 0.9125, "position": { "x": 6, @@ -2716,10 +2716,10 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08333333333333334, + "time": 0.08333333333333333, "position": { "x": 3, "y": 0 @@ -2738,11 +2738,11 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 529, - "time": 0.09166666666666667, + "noteOrder": 505, + "time": 0.08749999999999998, "position": { "x": 3, "y": 0 @@ -2756,18 +2756,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 865, - "time": 0.15, + "noteOrder": 505, + "time": 0.08749999999999998, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2779,18 +2779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, - "time": 0.15833333333333335, + "noteOrder": 529, + "time": 0.09166666666666665, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2802,18 +2802,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.25, + "noteOrder": 553, + "time": 0.09583333333333333, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2830,13 +2830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1538, - "time": 0.2666666666666667, + "noteOrder": 553, + "time": 0.09583333333333333, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2848,18 +2848,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3166666666666667, + "noteOrder": 866, + "time": 0.15, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2871,18 +2871,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.33333333333333337, + "noteOrder": 890, + "time": 0.15416666666666665, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2899,13 +2899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2212, - "time": 0.3833333333333333, + "noteOrder": 890, + "time": 0.15416666666666665, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2922,13 +2922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 2236, - "time": 0.3875, + "noteOrder": 914, + "time": 0.15833333333333333, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2940,18 +2940,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2236, - "time": 0.3875, + "noteOrder": 938, + "time": 0.16249999999999998, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2968,13 +2968,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2260, - "time": 0.39166666666666666, + "noteOrder": 938, + "time": 0.16249999999999998, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2991,13 +2991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, - "time": 0.39166666666666666, + "noteOrder": 1443, + "time": 0.24999999999999997, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3014,13 +3014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2284, - "time": 0.39583333333333337, + "noteOrder": 1467, + "time": 0.25416666666666665, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3037,11 +3037,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2284, - "time": 0.39583333333333337, + "noteOrder": 1467, + "time": 0.25416666666666665, "position": { "x": 5, "y": 0 @@ -3055,18 +3055,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 2308, - "time": 0.4000000000000001, + "noteOrder": 1539, + "time": 0.26666666666666666, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3083,13 +3083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.45, + "noteOrder": 1563, + "time": 0.2708333333333333, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3106,11 +3106,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2620, - "time": 0.45416666666666666, + "noteOrder": 1563, + "time": 0.2708333333333333, "position": { "x": 5, "y": 0 @@ -3129,13 +3129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.45416666666666666, + "noteOrder": 1828, + "time": 0.31666666666666665, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3147,18 +3147,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2644, - "time": 0.45833333333333337, + "noteOrder": 1852, + "time": 0.3208333333333333, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3170,16 +3170,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2644, - "time": 0.45833333333333337, + "noteOrder": 1852, + "time": 0.3208333333333333, "position": { "x": 5, "y": 0 @@ -3198,13 +3198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 2668, - "time": 0.4625000000000001, + "noteOrder": 1924, + "time": 0.3333333333333333, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3216,16 +3216,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1948, + "time": 0.33749999999999997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2668, - "time": 0.4625000000000001, + "noteOrder": 1948, + "time": 0.33749999999999997, "position": { "x": 5, "y": 0 @@ -3244,11 +3267,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, - "time": 0.4666666666666667, + "noteOrder": 2213, + "time": 0.3833333333333333, "position": { "x": 5, "y": 0 @@ -3267,11 +3290,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2909, - "time": 0.5041666666666667, + "noteOrder": 2237, + "time": 0.3875, "position": { "x": 5, "y": 0 @@ -3285,16 +3308,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.5166666666666667, + "noteOrder": 2237, + "time": 0.3875, "position": { "x": 5, "y": 0 @@ -3313,13 +3336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.6166666666666667, + "noteOrder": 2261, + "time": 0.39166666666666666, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3331,18 +3354,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.625, + "noteOrder": 2261, + "time": 0.39166666666666666, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3359,13 +3382,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.6333333333333334, + "noteOrder": 2285, + "time": 0.3958333333333333, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3377,18 +3400,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.6416666666666666, + "noteOrder": 2285, + "time": 0.3958333333333333, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3405,13 +3428,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.65, + "noteOrder": 2309, + "time": 0.39999999999999997, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3423,18 +3446,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6583333333333333, + "noteOrder": 2597, + "time": 0.44999999999999996, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3451,13 +3474,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.6833333333333333, + "noteOrder": 2621, + "time": 0.4541666666666666, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3474,13 +3497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3990, - "time": 0.6916666666666668, + "noteOrder": 2621, + "time": 0.4541666666666666, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3497,13 +3520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.75, + "noteOrder": 2645, + "time": 0.4583333333333333, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3520,13 +3543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, - "time": 0.7583333333333334, + "noteOrder": 2645, + "time": 0.4583333333333333, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3543,13 +3566,36 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4904, - "time": 0.8500000000000001, + "noteOrder": 2669, + "time": 0.46249999999999997, "position": { - "x": 6, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2669, + "time": 0.46249999999999997, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3566,13 +3612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5000, - "time": 0.8666666666666667, + "noteOrder": 2694, + "time": 0.4666666666666666, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3584,18 +3630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5288, - "time": 0.9166666666666667, + "noteOrder": 2910, + "time": 0.5041666666666667, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3612,13 +3658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5337, - "time": 0.9250000000000002, + "noteOrder": 2982, + "time": 0.5166666666666666, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3630,18 +3676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5385, - "time": 0.9333333333333333, + "noteOrder": 3559, + "time": 0.6166666666666666, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -3653,18 +3699,892 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5433, - "time": 0.9416666666666668, + "noteOrder": 3607, + "time": 0.6249999999999999, "position": { - "x": 4, + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.6333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.6416666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.6499999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3776, + "time": 0.6541666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3776, + "time": 0.6541666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3800, + "time": 0.6583333333333332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3824, + "time": 0.6625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3824, + "time": 0.6625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3944, + "time": 0.6833333333333332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3968, + "time": 0.6875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3968, + "time": 0.6875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3992, + "time": 0.6916666666666665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4016, + "time": 0.6958333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4016, + "time": 0.6958333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4329, + "time": 0.75, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4353, + "time": 0.7541666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4353, + "time": 0.7541666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4377, + "time": 0.7583333333333333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4401, + "time": 0.7625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4401, + "time": 0.7625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4906, + "time": 0.85, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4930, + "time": 0.8541666666666665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4930, + "time": 0.8541666666666665, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5002, + "time": 0.8666666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5026, + "time": 0.8708333333333332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5026, + "time": 0.8708333333333332, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5291, + "time": 0.9166666666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5315, + "time": 0.9208333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5315, + "time": 0.9208333333333333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5339, + "time": 0.9249999999999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5363, + "time": 0.9291666666666666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5363, + "time": 0.9291666666666666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5387, + "time": 0.9333333333333332, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5411, + "time": 0.9375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5411, + "time": 0.9375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5435, + "time": 0.9416666666666665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5459, + "time": 0.9458333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5459, + "time": 0.9458333333333333, + "position": { + "x": 5, "y": 0 }, "position2D": { diff --git a/tracks/Spin & Slide/info.json b/tracks/Spin & Slide/info.json index 77ad1e90..1a96c645 100644 --- a/tracks/Spin & Slide/info.json +++ b/tracks/Spin & Slide/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Spin & Slide", - "SongLength": "115.278367", + "SongLength": "105.325714", "SongAuthorName": "KAN TAKAHIKO", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Starlight Parade/336_difficulty_1a.json b/tracks/Starlight Parade/336_difficulty_1a.json index 988f5e10..24a2a2d2 100644 --- a/tracks/Starlight Parade/336_difficulty_1a.json +++ b/tracks/Starlight Parade/336_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 146, - "time": 0.021278953784772247, + "time": 0.02127895378477225, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 219, - "time": 0.03191843067715837, + "time": 0.031918430677158376, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 536, - "time": 0.07802283054416491, + "time": 0.07802283054416492, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 585, - "time": 0.08511581513908899, + "time": 0.085115815139089, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 634, - "time": 0.09220879973401307, + "time": 0.09220879973401308, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 682, - "time": 0.09930178432893715, + "noteOrder": 683, + "time": 0.09930178432893717, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 731, - "time": 0.10639476892386122, + "time": 0.10639476892386125, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 756, - "time": 0.10994126122132328, + "time": 0.10994126122132329, "position": { "x": 7, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 804, - "time": 0.11703424581624736, + "noteOrder": 805, + "time": 0.11703424581624737, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 829, - "time": 0.1205807381137094, + "time": 0.12058073811370941, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1194, - "time": 0.17377812257564001, + "noteOrder": 1195, + "time": 0.17377812257564004, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1219, - "time": 0.17732461487310205, + "time": 0.17732461487310208, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1243, - "time": 0.1808711071705641, + "noteOrder": 1244, + "time": 0.18087110717056412, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1292, - "time": 0.18796409176548817, + "time": 0.18796409176548823, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1341, - "time": 0.19505707636041225, + "time": 0.19505707636041228, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1633, - "time": 0.23761498392995675, + "noteOrder": 1634, + "time": 0.2376149839299568, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.25889393771472896, + "noteOrder": 1780, + "time": 0.258893937714729, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1828, - "time": 0.2659869223096531, + "noteOrder": 1829, + "time": 0.26598692230965315, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.2730799069045772, "position": { "x": 3, @@ -494,7 +494,7 @@ }, { "noteOrder": 1999, - "time": 0.29081236839188734, + "time": 0.2908123683918874, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2047, - "time": 0.2979053529868115, + "noteOrder": 2048, + "time": 0.29790535298681153, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.30499833758173556, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2145, - "time": 0.31209132217665964, + "noteOrder": 2146, + "time": 0.3120913221766597, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 2194, - "time": 0.31918430677158366, + "time": 0.31918430677158377, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.34046326055635595, + "noteOrder": 2341, + "time": 0.340463260556356, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.34046326055635595, + "noteOrder": 2341, + "time": 0.340463260556356, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.34400975285381796, + "noteOrder": 2365, + "time": 0.3440097528538181, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2364, - "time": 0.34400975285381796, + "noteOrder": 2365, + "time": 0.3440097528538181, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.34755624515128003, + "noteOrder": 2390, + "time": 0.3475562451512801, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.34755624515128003, + "noteOrder": 2390, + "time": 0.3475562451512801, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2413, - "time": 0.35110273744874204, + "noteOrder": 2414, + "time": 0.3511027374487421, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2413, - "time": 0.35110273744874204, + "noteOrder": 2414, + "time": 0.3511027374487421, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2657, - "time": 0.3865676604233625, + "noteOrder": 2658, + "time": 0.38656766042336255, "position": { "x": 5, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2681, - "time": 0.3901141527208245, + "noteOrder": 2682, + "time": 0.39011415272082456, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2706, - "time": 0.3936606450182865, + "noteOrder": 2707, + "time": 0.3936606450182866, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2730, - "time": 0.3972071373157486, + "noteOrder": 2731, + "time": 0.3972071373157487, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2754, - "time": 0.40075362961321065, + "noteOrder": 2755, + "time": 0.4007536296132107, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2779, + "noteOrder": 2780, "time": 0.4043001219106727, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2803, - "time": 0.40784661420813473, + "noteOrder": 2804, + "time": 0.4078466142081348, "position": { "x": 5, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2827, + "noteOrder": 2828, "time": 0.4113931065055968, "position": { "x": 8, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3047, - "time": 0.4433115371827551, + "noteOrder": 3048, + "time": 0.44331153718275523, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3071, - "time": 0.4468580294802172, + "noteOrder": 3072, + "time": 0.44685802948021724, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3096, - "time": 0.4504045217776792, + "noteOrder": 3097, + "time": 0.4504045217776793, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.45395101407514127, + "noteOrder": 3121, + "time": 0.4539510140751414, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3144, - "time": 0.4574975063726033, + "noteOrder": 3145, + "time": 0.45749750637260334, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3169, - "time": 0.46104399867006535, + "noteOrder": 3170, + "time": 0.4610439986700654, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3193, - "time": 0.46459049096752736, + "noteOrder": 3194, + "time": 0.46459049096752747, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3217, - "time": 0.4681369832649894, + "noteOrder": 3219, + "time": 0.4681369832649895, "position": { "x": 2, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3236, - "time": 0.47079685248808595, + "noteOrder": 3237, + "time": 0.47079685248808606, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3254, - "time": 0.47345672171118247, + "noteOrder": 3255, + "time": 0.4734567217111826, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3291, - "time": 0.47877646015737557, + "noteOrder": 3292, + "time": 0.4787764601573756, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.5780782444863127, + "noteOrder": 3974, + "time": 0.5780782444863128, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4119, - "time": 0.5993571982710849, + "noteOrder": 4121, + "time": 0.599357198271085, "position": { "x": 5, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4144, + "noteOrder": 4145, "time": 0.602903690568547, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.606450182866009, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.6135431674609331, + "noteOrder": 4218, + "time": 0.6135431674609332, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4265, - "time": 0.6206361520558571, + "noteOrder": 4267, + "time": 0.6206361520558573, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4339, - "time": 0.6312756289482433, + "noteOrder": 4340, + "time": 0.6312756289482434, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4558, - "time": 0.6631940596254017, + "noteOrder": 4560, + "time": 0.6631940596254018, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4704, - "time": 0.6844730134101739, + "noteOrder": 4706, + "time": 0.6844730134101741, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4729, - "time": 0.6880195057076359, + "noteOrder": 4730, + "time": 0.6880195057076361, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4753, - "time": 0.691565998005098, + "noteOrder": 4755, + "time": 0.6915659980050981, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4790, - "time": 0.696885736451291, + "noteOrder": 4791, + "time": 0.6968857364512913, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4838, - "time": 0.7039787210462151, + "noteOrder": 4840, + "time": 0.7039787210462152, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.7163914440873322, + "noteOrder": 4925, + "time": 0.7163914440873324, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4972, - "time": 0.7234844286822564, + "noteOrder": 4974, + "time": 0.7234844286822565, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5021, - "time": 0.7305774132771805, + "noteOrder": 5023, + "time": 0.7305774132771806, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5070, - "time": 0.7376703978721045, + "noteOrder": 5072, + "time": 0.7376703978721046, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5119, - "time": 0.7447633824670287, + "noteOrder": 5120, + "time": 0.7447633824670288, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5167, - "time": 0.7518563670619527, + "noteOrder": 5169, + "time": 0.7518563670619529, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.7554028593594148, + "noteOrder": 5194, + "time": 0.7554028593594149, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.7589493516568768, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.7624958439543389, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5265, - "time": 0.7660423362518008, + "noteOrder": 5267, + "time": 0.766042336251801, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5277, - "time": 0.7678155824005318, + "noteOrder": 5279, + "time": 0.7678155824005319, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5289, - "time": 0.7695888285492629, + "noteOrder": 5291, + "time": 0.769588828549263, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5301, + "noteOrder": 5303, "time": 0.771362074697994, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5314, - "time": 0.773135320846725, + "noteOrder": 5316, + "time": 0.7731353208467251, "position": { "x": 7, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5326, - "time": 0.774908566995456, + "noteOrder": 5328, + "time": 0.7749085669954561, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5338, - "time": 0.776681813144187, + "noteOrder": 5340, + "time": 0.7766818131441872, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5582, - "time": 0.8121467361188074, + "noteOrder": 5584, + "time": 0.8121467361188075, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5606, - "time": 0.8156932284162695, + "noteOrder": 5608, + "time": 0.8156932284162696, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5630, - "time": 0.8192397207137314, + "noteOrder": 5633, + "time": 0.8192397207137316, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.8227862130111936, "position": { "x": 5, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5679, - "time": 0.8263327053086555, + "noteOrder": 5681, + "time": 0.8263327053086557, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5704, - "time": 0.8298791976061176, + "noteOrder": 5706, + "time": 0.8298791976061177, "position": { "x": 3, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5728, - "time": 0.8334256899035797, + "noteOrder": 5730, + "time": 0.8334256899035798, "position": { "x": 5, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5752, - "time": 0.8369721822010416, + "noteOrder": 5754, + "time": 0.8369721822010419, "position": { "x": 2, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5972, - "time": 0.8688906128782, + "noteOrder": 5974, + "time": 0.8688906128782001, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.8724371051756622, "position": { "x": 7, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6020, - "time": 0.8759835974731242, + "noteOrder": 6023, + "time": 0.8759835974731243, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6045, - "time": 0.8795300897705862, + "noteOrder": 6047, + "time": 0.8795300897705863, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6069, - "time": 0.8830765820680482, + "noteOrder": 6071, + "time": 0.8830765820680484, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6094, - "time": 0.8866230743655102, + "noteOrder": 6096, + "time": 0.8866230743655105, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6118, - "time": 0.8901695666629723, + "noteOrder": 6120, + "time": 0.8901695666629724, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6142, - "time": 0.8937160589604344, + "noteOrder": 6145, + "time": 0.8937160589604345, "position": { "x": 8, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6161, + "noteOrder": 6163, "time": 0.896375928183531, "position": { "x": 5, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6179, - "time": 0.8990357974066274, + "noteOrder": 6181, + "time": 0.8990357974066275, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6215, - "time": 0.9043555358528206, + "noteOrder": 6218, + "time": 0.9043555358528207, "position": { "x": 4, "y": 0 @@ -2116,10 +2116,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 122, - "time": 0.017732461487310204, + "time": 0.017732461487310208, "position": { "x": 7, "y": 0 @@ -2139,10 +2139,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.021278953784772247, + "time": 0.02127895378477225, "position": { "x": 7, "y": 0 @@ -2162,10 +2162,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 171, - "time": 0.024825446082234286, + "time": 0.024825446082234293, "position": { "x": 3, "y": 0 @@ -2185,10 +2185,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, - "time": 0.02837193837969633, + "time": 0.028371938379696336, "position": { "x": 3, "y": 0 @@ -2208,10 +2208,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 219, - "time": 0.03191843067715837, + "time": 0.031918430677158376, "position": { "x": 3, "y": 0 @@ -2231,10 +2231,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 268, - "time": 0.039011415272082454, + "time": 0.03901141527208246, "position": { "x": 6, "y": 0 @@ -2254,10 +2254,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 292, - "time": 0.042557907569544494, + "noteOrder": 293, + "time": 0.0425579075695445, "position": { "x": 5, "y": 0 @@ -2277,10 +2277,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 341, - "time": 0.04965089216446857, + "time": 0.04965089216446859, "position": { "x": 5, "y": 0 @@ -2300,10 +2300,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 341, - "time": 0.04965089216446857, + "time": 0.04965089216446859, "position": { "x": 5, "y": 0 @@ -2323,10 +2323,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 390, - "time": 0.05674387675939266, + "time": 0.05674387675939267, "position": { "x": 5, "y": 0 @@ -2346,10 +2346,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 390, - "time": 0.05674387675939266, + "time": 0.05674387675939267, "position": { "x": 5, "y": 0 @@ -2369,10 +2369,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 439, - "time": 0.06383686135431674, + "time": 0.06383686135431675, "position": { "x": 5, "y": 0 @@ -2392,10 +2392,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 439, - "time": 0.06383686135431674, + "time": 0.06383686135431675, "position": { "x": 5, "y": 0 @@ -2415,10 +2415,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 487, - "time": 0.07092984594924082, + "noteOrder": 488, + "time": 0.07092984594924083, "position": { "x": 5, "y": 0 @@ -2438,10 +2438,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 512, - "time": 0.07447633824670287, + "time": 0.07447633824670288, "position": { "x": 6, "y": 0 @@ -2461,10 +2461,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 561, - "time": 0.08156932284162693, + "time": 0.08156932284162695, "position": { "x": 5, "y": 0 @@ -2484,10 +2484,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 561, - "time": 0.08156932284162693, + "time": 0.08156932284162695, "position": { "x": 4, "y": 0 @@ -2507,10 +2507,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 609, - "time": 0.08866230743655103, + "noteOrder": 610, + "time": 0.08866230743655104, "position": { "x": 5, "y": 0 @@ -2530,10 +2530,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 609, - "time": 0.08866230743655103, + "noteOrder": 610, + "time": 0.08866230743655104, "position": { "x": 6, "y": 0 @@ -2553,10 +2553,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 658, - "time": 0.0957552920314751, + "time": 0.09575529203147512, "position": { "x": 5, "y": 0 @@ -2576,10 +2576,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 658, - "time": 0.0957552920314751, + "time": 0.09575529203147512, "position": { "x": 4, "y": 0 @@ -2599,7 +2599,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 707, "time": 0.1028482766263992, @@ -2622,10 +2622,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 877, - "time": 0.12767372270863347, + "noteOrder": 878, + "time": 0.1276737227086335, "position": { "x": 7, "y": 0 @@ -2644,11 +2644,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 902, - "time": 0.13122021500609554, + "noteOrder": 890, + "time": 0.1294469688573645, "position": { "x": 7, "y": 0 @@ -2662,18 +2662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 926, - "time": 0.13476670730355758, + "noteOrder": 890, + "time": 0.1294469688573645, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2690,13 +2690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 4, "isSliding": false, - "noteOrder": 951, - "time": 0.1383131996010196, + "noteOrder": 902, + "time": 0.13122021500609554, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2708,18 +2708,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 5, "isSliding": false, - "noteOrder": 975, - "time": 0.14185969189848163, + "noteOrder": 902, + "time": 0.13122021500609554, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2736,13 +2736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 999, - "time": 0.14540618419594367, + "noteOrder": 902, + "time": 0.13122021500609554, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2759,11 +2759,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1024, - "time": 0.14895267649340574, + "noteOrder": 914, + "time": 0.13299346115482658, "position": { "x": 7, "y": 0 @@ -2777,18 +2777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1072, - "time": 0.15604566108832982, + "noteOrder": 914, + "time": 0.13299346115482658, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2800,18 +2800,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1097, - "time": 0.15959215338579183, + "noteOrder": 927, + "time": 0.13476670730355758, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2828,13 +2828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1121, - "time": 0.16313864568325387, + "noteOrder": 927, + "time": 0.13476670730355758, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2846,16 +2846,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1146, - "time": 0.16668513798071594, + "noteOrder": 927, + "time": 0.13476670730355758, "position": { "x": 7, "y": 0 @@ -2869,16 +2869,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1170, - "time": 0.17023163027817798, + "noteOrder": 939, + "time": 0.1365399534522886, "position": { "x": 7, "y": 0 @@ -2897,13 +2897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1243, - "time": 0.1808711071705641, + "noteOrder": 939, + "time": 0.1365399534522886, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2920,13 +2920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1267, - "time": 0.18441759946802613, + "noteOrder": 951, + "time": 0.13831319960101962, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2938,18 +2938,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1316, - "time": 0.1915105840629502, + "noteOrder": 951, + "time": 0.13831319960101962, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2966,13 +2966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1365, - "time": 0.1986035686578743, + "noteOrder": 951, + "time": 0.13831319960101962, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2989,11 +2989,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1389, - "time": 0.20215006095533636, + "noteOrder": 963, + "time": 0.14008644574975063, "position": { "x": 7, "y": 0 @@ -3007,18 +3007,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1462, - "time": 0.21278953784772245, + "noteOrder": 963, + "time": 0.14008644574975063, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3035,13 +3035,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1487, - "time": 0.21633603014518452, + "noteOrder": 975, + "time": 0.14185969189848166, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3053,18 +3053,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1511, - "time": 0.21988252244264656, + "noteOrder": 975, + "time": 0.14185969189848166, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3081,13 +3081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1536, - "time": 0.2234290147401086, + "noteOrder": 975, + "time": 0.14185969189848166, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3104,13 +3104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1560, - "time": 0.22697550703757063, + "noteOrder": 988, + "time": 0.1436329380472127, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3122,18 +3122,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1584, - "time": 0.23052199933503267, + "noteOrder": 988, + "time": 0.1436329380472127, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3150,11 +3150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1609, - "time": 0.2340684916324947, + "noteOrder": 1000, + "time": 0.1454061841959437, "position": { "x": 3, "y": 0 @@ -3173,11 +3173,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.2411614762274188, + "noteOrder": 1012, + "time": 0.14717943034467473, "position": { "x": 3, "y": 0 @@ -3196,13 +3196,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.24470796852488083, + "noteOrder": 1012, + "time": 0.14717943034467473, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3214,18 +3214,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1706, - "time": 0.24825446082234287, + "noteOrder": 1024, + "time": 0.14895267649340577, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3237,18 +3237,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1731, - "time": 0.2518009531198049, + "noteOrder": 1036, + "time": 0.15072592264213674, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3265,13 +3265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1755, - "time": 0.25534744541726695, + "noteOrder": 1036, + "time": 0.15072592264213674, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3283,16 +3283,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1828, - "time": 0.2659869223096531, + "noteOrder": 1048, + "time": 0.15249916879086778, "position": { "x": 6, "y": 0 @@ -3306,16 +3306,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1852, - "time": 0.26953341460711516, + "noteOrder": 1048, + "time": 0.15249916879086778, "position": { "x": 7, "y": 0 @@ -3334,13 +3334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1901, - "time": 0.2766263992020392, + "noteOrder": 1073, + "time": 0.15604566108832985, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3352,16 +3352,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1950, - "time": 0.28371938379696326, + "noteOrder": 1085, + "time": 0.15781890723706085, "position": { "x": 7, "y": 0 @@ -3380,13 +3380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1974, - "time": 0.28726587609442533, + "noteOrder": 1085, + "time": 0.15781890723706085, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3398,18 +3398,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2072, - "time": 0.3014518452842735, + "noteOrder": 1097, + "time": 0.15959215338579189, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3426,11 +3426,195 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 34, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1097, + "time": 0.15959215338579189, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, "indexInLine": 1, "isSliding": false, - "noteOrder": 2096, - "time": 0.30499833758173556, + "noteOrder": 1097, + "time": 0.15959215338579189, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1109, + "time": 0.16136539953452292, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1109, + "time": 0.16136539953452292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1122, + "time": 0.1631386456832539, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1122, + "time": 0.1631386456832539, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1122, + "time": 0.1631386456832539, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1134, + "time": 0.16491189183198493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1134, + "time": 0.16491189183198493, "position": { "x": 6, "y": 0 @@ -3449,13 +3633,4360 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1146, + "time": 0.16668513798071596, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1146, + "time": 0.16668513798071596, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1146, + "time": 0.16668513798071596, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1158, + "time": 0.16845838412944697, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1158, + "time": 0.16845838412944697, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1170, + "time": 0.170231630278178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1170, + "time": 0.170231630278178, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1170, + "time": 0.170231630278178, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1244, + "time": 0.18087110717056412, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1268, + "time": 0.18441759946802616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1280, + "time": 0.1861908456167572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1280, + "time": 0.1861908456167572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1317, + "time": 0.19151058406295024, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1329, + "time": 0.19328383021168127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1329, + "time": 0.19328383021168127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1365, + "time": 0.19860356865787435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1378, + "time": 0.20037681480660535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1378, + "time": 0.20037681480660535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1390, + "time": 0.20215006095533636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1402, + "time": 0.2039233071040674, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1402, + "time": 0.2039233071040674, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1463, + "time": 0.2127895378477225, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1475, + "time": 0.2145627839964535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1475, + "time": 0.2145627839964535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21633603014518452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21633603014518452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1487, + "time": 0.21633603014518452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1500, + "time": 0.21810927629391555, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1500, + "time": 0.21810927629391555, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1512, + "time": 0.21988252244264658, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1512, + "time": 0.21988252244264658, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1512, + "time": 0.21988252244264658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1524, + "time": 0.22165576859137762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1524, + "time": 0.22165576859137762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1536, + "time": 0.22342901474010862, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1536, + "time": 0.22342901474010862, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1536, + "time": 0.22342901474010862, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1548, + "time": 0.22520226088883966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1548, + "time": 0.22520226088883966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1561, + "time": 0.2269755070375707, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1561, + "time": 0.2269755070375707, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1561, + "time": 0.2269755070375707, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1573, + "time": 0.22874875318630167, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1573, + "time": 0.22874875318630167, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1585, + "time": 0.2305219993350327, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1597, + "time": 0.23229524548376373, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1597, + "time": 0.23229524548376373, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1609, + "time": 0.23406849163249474, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1621, + "time": 0.23584173778122577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1621, + "time": 0.23584173778122577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1634, + "time": 0.2376149839299568, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1634, + "time": 0.2376149839299568, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.24116147622741882, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.24293472237614985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1670, + "time": 0.24293472237614985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1682, + "time": 0.24470796852488086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1682, + "time": 0.24470796852488086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.24470796852488086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1695, + "time": 0.2464812146736119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1695, + "time": 0.2464812146736119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1707, + "time": 0.24825446082234293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1707, + "time": 0.24825446082234293, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1707, + "time": 0.24825446082234293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1719, + "time": 0.25002770697107396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1719, + "time": 0.25002770697107396, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1731, + "time": 0.25180095311980494, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1731, + "time": 0.25180095311980494, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.25180095311980494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1743, + "time": 0.25357419926853597, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1743, + "time": 0.25357419926853597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1756, + "time": 0.255347445417267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1756, + "time": 0.255347445417267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1756, + "time": 0.255347445417267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1829, + "time": 0.26598692230965315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1853, + "time": 0.26953341460711516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1865, + "time": 0.2713066607558462, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1865, + "time": 0.2713066607558462, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1902, + "time": 0.27662639920203924, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1914, + "time": 0.2783996453507703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1914, + "time": 0.2783996453507703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1951, + "time": 0.2837193837969633, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1963, + "time": 0.28549262994569435, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1963, + "time": 0.28549262994569435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1975, + "time": 0.2872658760944254, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1987, + "time": 0.2890391222431564, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1987, + "time": 0.2890391222431564, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2073, + "time": 0.3014518452842735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2097, + "time": 0.30499833758173556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2121, + "time": 0.3085448298791976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3120913221766597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.3156378144741217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2194, + "time": 0.31918430677158377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2219, + "time": 0.32273079906904584, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2243, + "time": 0.3262772913665078, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2243, + "time": 0.3262772913665078, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2268, + "time": 0.32982378366396986, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2268, + "time": 0.32982378366396986, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2292, + "time": 0.33337027596143193, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2292, + "time": 0.33337027596143193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2316, + "time": 0.33691676825889394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2438, + "time": 0.35464922974620416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2585, + "time": 0.37592818353097646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.3794746758284384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2438, + "time": 0.35464922974620416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2451, + "time": 0.35642247589493514, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2463, + "time": 0.3581957220436662, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3599689681923972, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2499, + "time": 0.3635154604898593, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2524, + "time": 0.3670619527873213, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2536, + "time": 0.3688351989360523, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2548, + "time": 0.37060844508478336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2560, + "time": 0.3723816912335144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 2609, + "time": 0.3794746758284384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2633, + "time": 0.3830211681259005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2731, + "time": 0.3972071373157487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2828, + "time": 0.4113931065055968, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2853, + "time": 0.41493959880305886, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2877, + "time": 0.41848609110052093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2877, + "time": 0.41848609110052093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2902, + "time": 0.42203258339798294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2902, + "time": 0.42203258339798294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2926, + "time": 0.425579075695445, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2926, + "time": 0.425579075695445, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2950, + "time": 0.429125567992907, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2950, + "time": 0.429125567992907, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2975, + "time": 0.43267206029036903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.43267206029036903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2999, + "time": 0.4362185525878311, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3024, + "time": 0.43976504488529317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3121, + "time": 0.4539510140751414, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4681369832649895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.4752299678599136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3292, + "time": 0.4787764601573756, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3316, + "time": 0.48232295245483764, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3328, + "time": 0.4840961986035687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3328, + "time": 0.4840961986035687, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3341, + "time": 0.4858694447522997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3353, + "time": 0.4876426909010307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3353, + "time": 0.4876426909010307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3365, + "time": 0.4894159370497617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3377, + "time": 0.49118918319849275, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3377, + "time": 0.49118918319849275, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3389, + "time": 0.4929624293472238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3401, + "time": 0.4947356754959548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3401, + "time": 0.4947356754959548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3804, + "time": 0.5532527984040785, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3816, + "time": 0.5550260445528095, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3816, + "time": 0.5550260445528095, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3828, + "time": 0.5567992907015406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3828, + "time": 0.5567992907015406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3828, + "time": 0.5567992907015406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3840, + "time": 0.5585725368502715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3840, + "time": 0.5585725368502715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3853, + "time": 0.5603457829990025, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3853, + "time": 0.5603457829990025, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3853, + "time": 0.5603457829990025, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3865, + "time": 0.5621190291477336, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3865, + "time": 0.5621190291477336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3877, + "time": 0.5638922752964646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3877, + "time": 0.5638922752964646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3877, + "time": 0.5638922752964646, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3889, + "time": 0.5656655214451957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3889, + "time": 0.5656655214451957, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3901, + "time": 0.5674387675939266, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3901, + "time": 0.5674387675939266, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3901, + "time": 0.5674387675939266, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3914, + "time": 0.5692120137426577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3914, + "time": 0.5692120137426577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3926, + "time": 0.5709852598913887, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3938, + "time": 0.5727585060401197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3938, + "time": 0.5727585060401197, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3950, + "time": 0.5745317521888508, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3962, + "time": 0.5763049983375818, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3962, + "time": 0.5763049983375818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3974, + "time": 0.5780782444863128, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3974, + "time": 0.5780782444863128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3999, + "time": 0.5816247367837748, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4011, + "time": 0.5833979829325059, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4011, + "time": 0.5833979829325059, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4023, + "time": 0.5851712290812369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4023, + "time": 0.5851712290812369, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4023, + "time": 0.5851712290812369, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4035, + "time": 0.586944475229968, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4035, + "time": 0.586944475229968, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5887177213786989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5887177213786989, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5887177213786989, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4060, + "time": 0.59049096752743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4060, + "time": 0.59049096752743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2121, - "time": 0.30854482987919757, + "noteOrder": 4072, + "time": 0.592264213676161, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3472,13 +8003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2145, - "time": 0.31209132217665964, + "noteOrder": 4072, + "time": 0.592264213676161, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3495,13 +8026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2169, - "time": 0.31563781447412165, + "noteOrder": 4072, + "time": 0.592264213676161, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3518,13 +8049,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2194, - "time": 0.31918430677158366, + "noteOrder": 4084, + "time": 0.594037459824892, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3541,13 +8072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2218, - "time": 0.3227307990690457, + "noteOrder": 4084, + "time": 0.594037459824892, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3559,16 +8090,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 150, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2242, - "time": 0.32627729136650774, + "noteOrder": 4096, + "time": 0.5958107059736231, "position": { "x": 4, "y": 0 @@ -3582,18 +8113,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2242, - "time": 0.32627729136650774, + "noteOrder": 4096, + "time": 0.5958107059736231, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3610,13 +8141,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 151, "indexInLine": 1, "isSliding": false, - "noteOrder": 2267, - "time": 0.32982378366396986, + "noteOrder": 4096, + "time": 0.5958107059736231, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3628,18 +8159,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2267, - "time": 0.32982378366396986, + "noteOrder": 4170, + "time": 0.606450182866009, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3656,13 +8187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 2291, - "time": 0.3333702759614319, + "noteOrder": 4194, + "time": 0.6099966751634711, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3674,16 +8205,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2291, - "time": 0.3333702759614319, + "noteOrder": 4206, + "time": 0.6117699213122022, "position": { "x": 7, "y": 0 @@ -3702,11 +8233,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2316, - "time": 0.33691676825889394, + "noteOrder": 4206, + "time": 0.6117699213122022, "position": { "x": 6, "y": 0 @@ -3725,13 +8256,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2437, - "time": 0.3546492297462041, + "noteOrder": 4243, + "time": 0.6170896597583952, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3748,13 +8279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2584, - "time": 0.37592818353097635, + "noteOrder": 4255, + "time": 0.6188629059071262, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3771,13 +8302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 2, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2608, - "time": 0.3794746758284384, + "noteOrder": 4255, + "time": 0.6188629059071262, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3794,11 +8325,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2437, - "time": 0.3546492297462041, + "noteOrder": 4291, + "time": 0.6241826443533194, "position": { "x": 7, "y": 0 @@ -3817,13 +8348,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2450, - "time": 0.35642247589493514, + "noteOrder": 4304, + "time": 0.6259558905020504, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3840,13 +8371,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 2, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2462, - "time": 0.3581957220436661, + "noteOrder": 4304, + "time": 0.6259558905020504, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3863,11 +8394,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 3, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2474, - "time": 0.35996896819239715, + "noteOrder": 4316, + "time": 0.6277291366507813, "position": { "x": 3, "y": 0 @@ -3881,18 +8412,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 4, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2498, - "time": 0.3635154604898592, + "noteOrder": 4328, + "time": 0.6295023827995124, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3904,18 +8435,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 5, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2523, - "time": 0.36706195278732123, + "noteOrder": 4328, + "time": 0.6295023827995124, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3927,18 +8458,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 6, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2535, - "time": 0.36883519893605227, + "noteOrder": 4389, + "time": 0.6383686135431675, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3955,13 +8486,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 7, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2547, - "time": 0.3706084450847833, + "noteOrder": 4401, + "time": 0.6401418596918985, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3978,11 +8509,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 8, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2559, - "time": 0.37238169123351433, + "noteOrder": 4401, + "time": 0.6401418596918985, "position": { "x": 6, "y": 0 @@ -4001,11 +8532,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 9, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2608, - "time": 0.3794746758284384, + "noteOrder": 4413, + "time": 0.6419151058406296, "position": { "x": 6, "y": 0 @@ -4024,13 +8555,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2632, - "time": 0.3830211681259004, + "noteOrder": 4413, + "time": 0.6419151058406296, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4047,13 +8578,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 2730, - "time": 0.3972071373157486, + "noteOrder": 4413, + "time": 0.6419151058406296, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4065,16 +8596,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 166, "indexInLine": 2, "isSliding": false, - "noteOrder": 2827, - "time": 0.4113931065055968, + "noteOrder": 4426, + "time": 0.6436883519893606, "position": { "x": 7, "y": 0 @@ -4088,18 +8619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2852, - "time": 0.4149395988030588, + "noteOrder": 4426, + "time": 0.6436883519893606, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4116,11 +8647,11 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2876, - "time": 0.4184860911005208, + "noteOrder": 4438, + "time": 0.6454615981380917, "position": { "x": 6, "y": 0 @@ -4139,13 +8670,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2876, - "time": 0.4184860911005208, + "noteOrder": 4438, + "time": 0.6454615981380917, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4157,18 +8688,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 2901, - "time": 0.4220325833979829, + "noteOrder": 4438, + "time": 0.6454615981380917, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4185,13 +8716,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2901, - "time": 0.4220325833979829, + "noteOrder": 4450, + "time": 0.6472348442868227, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4203,18 +8734,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2925, - "time": 0.4255790756954449, + "noteOrder": 4450, + "time": 0.6472348442868227, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4226,16 +8757,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2925, - "time": 0.4255790756954449, + "noteOrder": 4462, + "time": 0.6490080904355536, "position": { "x": 6, "y": 0 @@ -4254,11 +8785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2949, - "time": 0.42912556799290696, + "noteOrder": 4462, + "time": 0.6490080904355536, "position": { "x": 5, "y": 0 @@ -4277,13 +8808,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2949, - "time": 0.42912556799290696, + "noteOrder": 4462, + "time": 0.6490080904355536, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4300,13 +8831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.43267206029036903, + "noteOrder": 4474, + "time": 0.6507813365842846, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4323,13 +8854,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2974, - "time": 0.43267206029036903, + "noteOrder": 4474, + "time": 0.6507813365842846, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4341,18 +8872,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2998, - "time": 0.4362185525878311, + "noteOrder": 4487, + "time": 0.6525545827330156, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4364,18 +8895,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3022, - "time": 0.4397650448852931, + "noteOrder": 4487, + "time": 0.6525545827330156, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4392,13 +8923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 3120, - "time": 0.45395101407514127, + "noteOrder": 4487, + "time": 0.6525545827330156, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4410,18 +8941,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 3217, - "time": 0.4681369832649894, + "noteOrder": 4499, + "time": 0.6543278288817467, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4433,18 +8964,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.4752299678599135, + "noteOrder": 4499, + "time": 0.6543278288817467, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4456,18 +8987,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 3291, - "time": 0.47877646015737557, + "noteOrder": 4511, + "time": 0.6561010750304777, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4484,11 +9015,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, - "time": 0.4823229524548376, + "noteOrder": 4523, + "time": 0.6578743211792086, "position": { "x": 3, "y": 0 @@ -4507,13 +9038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3339, - "time": 0.48586944475229965, + "noteOrder": 4523, + "time": 0.6578743211792086, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4525,18 +9056,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.48941593704976166, + "noteOrder": 4535, + "time": 0.6596475673279397, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4548,16 +9079,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3388, - "time": 0.4929624293472237, + "noteOrder": 4547, + "time": 0.6614208134766707, "position": { "x": 7, "y": 0 @@ -4576,13 +9107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3802, - "time": 0.5532527984040784, + "noteOrder": 4547, + "time": 0.6614208134766707, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4594,18 +9125,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3827, - "time": 0.5567992907015406, + "noteOrder": 4560, + "time": 0.6631940596254018, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4622,13 +9153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3851, - "time": 0.5603457829990025, + "noteOrder": 4560, + "time": 0.6631940596254018, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4640,18 +9171,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3876, - "time": 0.5638922752964646, + "noteOrder": 4584, + "time": 0.6667405519228639, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4668,13 +9199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3900, - "time": 0.5674387675939265, + "noteOrder": 4596, + "time": 0.6685137980715948, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4686,18 +9217,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3924, - "time": 0.5709852598913886, + "noteOrder": 4596, + "time": 0.6685137980715948, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4714,13 +9245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3949, - "time": 0.5745317521888507, + "noteOrder": 4608, + "time": 0.6702870442203258, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4732,18 +9263,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3997, - "time": 0.5816247367837747, + "noteOrder": 4608, + "time": 0.6702870442203258, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4755,18 +9286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4022, - "time": 0.5851712290812368, + "noteOrder": 4608, + "time": 0.6702870442203258, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4778,18 +9309,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4046, - "time": 0.5887177213786989, + "noteOrder": 4621, + "time": 0.6720602903690569, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4806,13 +9337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4070, - "time": 0.5922642136761609, + "noteOrder": 4621, + "time": 0.6720602903690569, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4824,18 +9355,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4095, - "time": 0.595810705973623, + "noteOrder": 4633, + "time": 0.6738335365177879, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4852,13 +9383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4168, - "time": 0.606450182866009, + "noteOrder": 4633, + "time": 0.6738335365177879, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4875,11 +9406,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4192, - "time": 0.6099966751634711, + "noteOrder": 4633, + "time": 0.6738335365177879, "position": { "x": 7, "y": 0 @@ -4898,13 +9429,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4241, - "time": 0.6170896597583951, + "noteOrder": 4645, + "time": 0.675606782666519, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4916,18 +9447,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4290, - "time": 0.6241826443533193, + "noteOrder": 4645, + "time": 0.675606782666519, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4944,13 +9475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4314, - "time": 0.6277291366507813, + "noteOrder": 4657, + "time": 0.67738002881525, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4962,18 +9493,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4387, - "time": 0.6383686135431673, + "noteOrder": 4657, + "time": 0.67738002881525, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4990,11 +9521,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4412, - "time": 0.6419151058406295, + "noteOrder": 4657, + "time": 0.67738002881525, "position": { "x": 7, "y": 0 @@ -5013,11 +9544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4436, - "time": 0.6454615981380915, + "noteOrder": 4669, + "time": 0.6791532749639809, "position": { "x": 7, "y": 0 @@ -5031,18 +9562,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4460, - "time": 0.6490080904355535, + "noteOrder": 4669, + "time": 0.6791532749639809, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5059,13 +9590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4485, - "time": 0.6525545827330155, + "noteOrder": 4682, + "time": 0.680926521112712, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5077,18 +9608,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4509, - "time": 0.6561010750304777, + "noteOrder": 4682, + "time": 0.680926521112712, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5105,11 +9636,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4534, - "time": 0.6596475673279397, + "noteOrder": 4682, + "time": 0.680926521112712, "position": { "x": 7, "y": 0 @@ -5128,13 +9659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4582, - "time": 0.6667405519228637, + "noteOrder": 4755, + "time": 0.6915659980050981, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5151,13 +9682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4607, - "time": 0.6702870442203257, + "noteOrder": 4779, + "time": 0.6951124903025602, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5174,13 +9705,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4631, - "time": 0.6738335365177879, + "noteOrder": 4791, + "time": 0.6968857364512913, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5192,18 +9723,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4655, - "time": 0.6773800288152498, + "noteOrder": 4804, + "time": 0.6986589826000222, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5220,11 +9751,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4680, - "time": 0.6809265211127119, + "noteOrder": 4828, + "time": 0.7022054748974842, "position": { "x": 7, "y": 0 @@ -5243,13 +9774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4753, - "time": 0.691565998005098, + "noteOrder": 4840, + "time": 0.7039787210462152, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5266,13 +9797,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4777, - "time": 0.6951124903025601, + "noteOrder": 4852, + "time": 0.7057519671949463, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5284,16 +9815,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 4790, - "time": 0.696885736451291, + "noteOrder": 4877, + "time": 0.7092984594924083, "position": { "x": 3, "y": 0 @@ -5312,13 +9843,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 187, "indexInLine": 2, "isSliding": false, - "noteOrder": 4802, - "time": 0.6986589826000221, + "noteOrder": 4889, + "time": 0.7110717056411393, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5335,13 +9866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4826, - "time": 0.7022054748974841, + "noteOrder": 4889, + "time": 0.7110717056411393, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5353,41 +9884,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 4838, - "time": 0.7039787210462151, - "position": { - "x": 7, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 184, - "indexInLine": 2, - "isSliding": false, - "noteOrder": 4850, - "time": 0.7057519671949463, + "noteOrder": 4901, + "time": 0.7128449517898703, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5404,13 +9912,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.7092984594924082, + "noteOrder": 4913, + "time": 0.7146181979386014, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5422,18 +9930,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.7128449517898703, + "noteOrder": 4913, + "time": 0.7146181979386014, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5451,10 +9959,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, - "time": 0.7270309209797184, + "noteOrder": 4999, + "time": 0.7270309209797186, "position": { "x": 3, "y": 0 @@ -5474,10 +9982,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5021, - "time": 0.7305774132771805, + "noteOrder": 5023, + "time": 0.7305774132771806, "position": { "x": 4, "y": 0 @@ -5497,10 +10005,10 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5045, - "time": 0.7341239055746425, + "noteOrder": 5047, + "time": 0.7341239055746426, "position": { "x": 7, "y": 0 @@ -5520,10 +10028,10 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5070, - "time": 0.7376703978721045, + "noteOrder": 5072, + "time": 0.7376703978721046, "position": { "x": 6, "y": 0 @@ -5543,10 +10051,10 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5094, - "time": 0.7412168901695666, + "noteOrder": 5096, + "time": 0.7412168901695667, "position": { "x": 3, "y": 0 @@ -5566,10 +10074,10 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5119, - "time": 0.7447633824670287, + "noteOrder": 5120, + "time": 0.7447633824670288, "position": { "x": 4, "y": 0 @@ -5589,10 +10097,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5143, - "time": 0.7483098747644906, + "noteOrder": 5145, + "time": 0.7483098747644908, "position": { "x": 7, "y": 0 @@ -5612,10 +10120,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5167, - "time": 0.7518563670619527, + "noteOrder": 5169, + "time": 0.7518563670619529, "position": { "x": 6, "y": 0 @@ -5635,10 +10143,10 @@ }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5362, - "time": 0.780228305441649, + "noteOrder": 5364, + "time": 0.7802283054416491, "position": { "x": 3, "y": 0 @@ -5658,10 +10166,10 @@ }, { "lineGroupId": 210, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5375, - "time": 0.7820015515903801, + "noteOrder": 5377, + "time": 0.7820015515903802, "position": { "x": 5, "y": 0 @@ -5681,10 +10189,10 @@ }, { "lineGroupId": 210, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5387, - "time": 0.7837747977391111, + "noteOrder": 5389, + "time": 0.7837747977391112, "position": { "x": 6, "y": 0 @@ -5704,10 +10212,10 @@ }, { "lineGroupId": 210, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5399, - "time": 0.785548043887842, + "noteOrder": 5401, + "time": 0.7855480438878423, "position": { "x": 7, "y": 0 @@ -5727,9 +10235,9 @@ }, { "lineGroupId": 210, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5423, + "noteOrder": 5425, "time": 0.7890945361853042, "position": { "x": 8, @@ -5750,10 +10258,10 @@ }, { "lineGroupId": 210, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5448, - "time": 0.7926410284827662, + "noteOrder": 5450, + "time": 0.7926410284827663, "position": { "x": 8, "y": 0 @@ -5773,10 +10281,10 @@ }, { "lineGroupId": 210, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5460, - "time": 0.7944142746314972, + "noteOrder": 5462, + "time": 0.7944142746314974, "position": { "x": 7, "y": 0 @@ -5796,10 +10304,10 @@ }, { "lineGroupId": 210, - "indexInLine": 7, + "indexInLine": 8, "isSliding": false, - "noteOrder": 5472, - "time": 0.7961875207802283, + "noteOrder": 5474, + "time": 0.7961875207802284, "position": { "x": 6, "y": 0 @@ -5819,10 +10327,10 @@ }, { "lineGroupId": 210, - "indexInLine": 8, + "indexInLine": 9, "isSliding": false, - "noteOrder": 5484, - "time": 0.7979607669289592, + "noteOrder": 5486, + "time": 0.7979607669289595, "position": { "x": 4, "y": 0 @@ -5842,10 +10350,10 @@ }, { "lineGroupId": 210, - "indexInLine": 9, + "indexInLine": 10, "isSliding": false, - "noteOrder": 5533, - "time": 0.8050537515238834, + "noteOrder": 5535, + "time": 0.8050537515238835, "position": { "x": 4, "y": 0 @@ -5865,10 +10373,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5362, - "time": 0.780228305441649, + "noteOrder": 5364, + "time": 0.7802283054416491, "position": { "x": 5, "y": 0 @@ -5888,10 +10396,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5509, - "time": 0.8015072592264213, + "noteOrder": 5511, + "time": 0.8015072592264214, "position": { "x": 5, "y": 0 @@ -5911,10 +10419,10 @@ }, { "lineGroupId": 211, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5533, - "time": 0.8050537515238834, + "noteOrder": 5535, + "time": 0.8050537515238835, "position": { "x": 4, "y": 0 @@ -5934,9 +10442,9 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5557, + "noteOrder": 5559, "time": 0.8086002438213454, "position": { "x": 3, @@ -5957,9 +10465,9 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.8227862130111936, "position": { "x": 6, @@ -5980,10 +10488,10 @@ }, { "lineGroupId": 212, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5752, - "time": 0.8369721822010416, + "noteOrder": 5754, + "time": 0.8369721822010419, "position": { "x": 3, "y": 0 @@ -6003,10 +10511,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5777, - "time": 0.8405186744985038, + "noteOrder": 5779, + "time": 0.8405186744985039, "position": { "x": 5, "y": 0 @@ -6026,10 +10534,10 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5801, - "time": 0.8440651667959658, + "noteOrder": 5803, + "time": 0.8440651667959659, "position": { "x": 4, "y": 0 @@ -6049,10 +10557,10 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5801, - "time": 0.8440651667959658, + "noteOrder": 5803, + "time": 0.8440651667959659, "position": { "x": 3, "y": 0 @@ -6072,10 +10580,10 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5825, - "time": 0.8476116590934278, + "noteOrder": 5828, + "time": 0.847611659093428, "position": { "x": 4, "y": 0 @@ -6095,10 +10603,10 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5825, - "time": 0.8476116590934278, + "noteOrder": 5828, + "time": 0.847611659093428, "position": { "x": 6, "y": 0 @@ -6118,10 +10626,10 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5850, - "time": 0.8511581513908898, + "noteOrder": 5852, + "time": 0.85115815139089, "position": { "x": 6, "y": 0 @@ -6141,10 +10649,10 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5850, - "time": 0.8511581513908898, + "noteOrder": 5852, + "time": 0.85115815139089, "position": { "x": 4, "y": 0 @@ -6164,10 +10672,10 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5874, - "time": 0.854704643688352, + "noteOrder": 5876, + "time": 0.8547046436883521, "position": { "x": 5, "y": 0 @@ -6187,10 +10695,10 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5874, - "time": 0.854704643688352, + "noteOrder": 5876, + "time": 0.8547046436883521, "position": { "x": 7, "y": 0 @@ -6210,10 +10718,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.8582511359858139, + "noteOrder": 5901, + "time": 0.858251135985814, "position": { "x": 6, "y": 0 @@ -6233,10 +10741,10 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5899, - "time": 0.8582511359858139, + "noteOrder": 5901, + "time": 0.858251135985814, "position": { "x": 5, "y": 0 @@ -6256,10 +10764,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5923, - "time": 0.861797628283276, + "noteOrder": 5925, + "time": 0.8617976282832761, "position": { "x": 6, "y": 0 @@ -6279,9 +10787,9 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5947, + "noteOrder": 5950, "time": 0.8653441205807381, "position": { "x": 7, @@ -6302,10 +10810,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6045, - "time": 0.8795300897705862, + "noteOrder": 6047, + "time": 0.8795300897705863, "position": { "x": 4, "y": 0 @@ -6325,10 +10833,10 @@ }, { "lineGroupId": 228, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6142, - "time": 0.8937160589604344, + "noteOrder": 6145, + "time": 0.8937160589604345, "position": { "x": 7, "y": 0 @@ -6348,10 +10856,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6191, - "time": 0.9008090435553584, + "noteOrder": 6193, + "time": 0.9008090435553586, "position": { "x": 7, "y": 0 @@ -6371,10 +10879,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6215, - "time": 0.9043555358528206, + "noteOrder": 6218, + "time": 0.9043555358528207, "position": { "x": 6, "y": 0 @@ -6394,10 +10902,33 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6242, + "time": 0.9079020281502828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6240, - "time": 0.9079020281502825, + "noteOrder": 6254, + "time": 0.9096752742990137, "position": { "x": 7, "y": 0 @@ -6415,11 +10946,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 241, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6254, + "time": 0.9096752742990137, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6264, + "noteOrder": 6267, "time": 0.9114485204477446, "position": { "x": 3, @@ -6438,12 +10992,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 242, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6279, + "time": 0.9132217665964757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 242, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6279, + "time": 0.9132217665964757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6291, + "time": 0.9149950127452067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6289, - "time": 0.9149950127452066, + "noteOrder": 6303, + "time": 0.9167682588939378, "position": { "x": 7, "y": 0 @@ -6461,12 +11084,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 243, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6303, + "time": 0.9167682588939378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6313, - "time": 0.9185415050426686, + "noteOrder": 6315, + "time": 0.9185415050426687, "position": { "x": 3, "y": 0 @@ -6485,11 +11131,11 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.9291809819350547, + "noteOrder": 6327, + "time": 0.9203147511913997, "position": { "x": 3, "y": 0 @@ -6507,12 +11153,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6327, + "time": 0.9203147511913997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 246, "indexInLine": 1, "isSliding": false, - "noteOrder": 6532, - "time": 0.950459935719827, + "noteOrder": 6388, + "time": 0.9291809819350549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6535, + "time": 0.9504599357198272, "position": { "x": 3, "y": 0 @@ -6532,10 +11224,10 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6386, - "time": 0.9291809819350547, + "noteOrder": 6388, + "time": 0.9291809819350549, "position": { "x": 7, "y": 0 @@ -6555,10 +11247,10 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6532, - "time": 0.950459935719827, + "noteOrder": 6535, + "time": 0.9504599357198272, "position": { "x": 7, "y": 0 diff --git a/tracks/Starlight Parade/336_difficulty_1b.json b/tracks/Starlight Parade/336_difficulty_1b.json index 1b2d9433..04da0e9f 100644 --- a/tracks/Starlight Parade/336_difficulty_1b.json +++ b/tracks/Starlight Parade/336_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 1121, - "time": 0.16313864568325387, + "noteOrder": 1122, + "time": 0.1631386456832539, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 1170, - "time": 0.17023163027817798, + "time": 0.170231630278178, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 1219, - "time": 0.17732461487310205, + "time": 0.17732461487310208, "position": { "x": 3, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 1267, - "time": 0.18441759946802613, + "noteOrder": 1268, + "time": 0.18441759946802616, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 1292, - "time": 0.18796409176548817, + "time": 0.18796409176548823, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1316, - "time": 0.1915105840629502, + "noteOrder": 1317, + "time": 0.19151058406295024, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1341, - "time": 0.19505707636041225, + "time": 0.19505707636041228, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1365, - "time": 0.1986035686578743, + "time": 0.19860356865787435, "position": { "x": 3, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1389, + "noteOrder": 1390, "time": 0.20215006095533636, "position": { "x": 7, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.24825446082234287, + "noteOrder": 1707, + "time": 0.24825446082234293, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1755, - "time": 0.25534744541726695, + "noteOrder": 1756, + "time": 0.255347445417267, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1852, + "noteOrder": 1853, "time": 0.26953341460711516, "position": { "x": 7, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.2730799069045772, "position": { "x": 3, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.2766263992020392, + "noteOrder": 1902, + "time": 0.27662639920203924, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1950, - "time": 0.28371938379696326, + "noteOrder": 1951, + "time": 0.2837193837969633, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1974, - "time": 0.28726587609442533, + "noteOrder": 1975, + "time": 0.2872658760944254, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1999, - "time": 0.29081236839188734, + "time": 0.2908123683918874, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.30499833758173556, "position": { "x": 6, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2145, - "time": 0.31209132217665964, + "noteOrder": 2146, + "time": 0.3120913221766597, "position": { "x": 4, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 2194, - "time": 0.31918430677158366, + "time": 0.31918430677158377, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2291, - "time": 0.3333702759614319, + "noteOrder": 2292, + "time": 0.33337027596143193, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.34046326055635595, + "noteOrder": 2341, + "time": 0.340463260556356, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2389, - "time": 0.34755624515128003, + "noteOrder": 2390, + "time": 0.3475562451512801, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2730, - "time": 0.3972071373157486, + "noteOrder": 2731, + "time": 0.3972071373157487, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2754, - "time": 0.40075362961321065, + "noteOrder": 2755, + "time": 0.4007536296132107, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2779, + "noteOrder": 2780, "time": 0.4043001219106727, "position": { "x": 7, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2876, - "time": 0.4184860911005208, + "noteOrder": 2877, + "time": 0.41848609110052093, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2925, - "time": 0.4255790756954449, + "noteOrder": 2926, + "time": 0.425579075695445, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2974, + "noteOrder": 2975, "time": 0.43267206029036903, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.45395101407514127, + "noteOrder": 3121, + "time": 0.4539510140751414, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3144, - "time": 0.4574975063726033, + "noteOrder": 3145, + "time": 0.45749750637260334, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3169, - "time": 0.46104399867006535, + "noteOrder": 3170, + "time": 0.4610439986700654, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.4752299678599135, + "noteOrder": 3267, + "time": 0.4752299678599136, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.4823229524548376, + "noteOrder": 3316, + "time": 0.48232295245483764, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3364, - "time": 0.48941593704976166, + "noteOrder": 3365, + "time": 0.4894159370497617, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4046, + "noteOrder": 4048, "time": 0.5887177213786989, "position": { "x": 6, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4095, - "time": 0.595810705973623, + "noteOrder": 4096, + "time": 0.5958107059736231, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4144, + "noteOrder": 4145, "time": 0.602903690568547, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4192, + "noteOrder": 4194, "time": 0.6099966751634711, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.6135431674609331, + "noteOrder": 4218, + "time": 0.6135431674609332, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4241, - "time": 0.6170896597583951, + "noteOrder": 4243, + "time": 0.6170896597583952, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4265, - "time": 0.6206361520558571, + "noteOrder": 4267, + "time": 0.6206361520558573, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4290, - "time": 0.6241826443533193, + "noteOrder": 4291, + "time": 0.6241826443533194, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4314, + "noteOrder": 4316, "time": 0.6277291366507813, "position": { "x": 3, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4339, - "time": 0.6312756289482433, + "noteOrder": 4340, + "time": 0.6312756289482434, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4633, "time": 0.6738335365177879, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4680, - "time": 0.6809265211127119, + "noteOrder": 4682, + "time": 0.680926521112712, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4729, - "time": 0.6880195057076359, + "noteOrder": 4730, + "time": 0.6880195057076361, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4777, - "time": 0.6951124903025601, + "noteOrder": 4779, + "time": 0.6951124903025602, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4802, - "time": 0.6986589826000221, + "noteOrder": 4804, + "time": 0.6986589826000222, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.7022054748974841, + "noteOrder": 4828, + "time": 0.7022054748974842, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7057519671949463, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.7092984594924082, + "noteOrder": 4877, + "time": 0.7092984594924083, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.7128449517898703, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4924, - "time": 0.7163914440873322, + "noteOrder": 4925, + "time": 0.7163914440873324, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5021, - "time": 0.7305774132771805, + "noteOrder": 5023, + "time": 0.7305774132771806, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5070, - "time": 0.7376703978721045, + "noteOrder": 5072, + "time": 0.7376703978721046, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5119, - "time": 0.7447633824670287, + "noteOrder": 5120, + "time": 0.7447633824670288, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.7589493516568768, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5265, - "time": 0.7660423362518008, + "noteOrder": 5267, + "time": 0.766042336251801, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5314, - "time": 0.773135320846725, + "noteOrder": 5316, + "time": 0.7731353208467251, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.8227862130111936, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5679, - "time": 0.8263327053086555, + "noteOrder": 5681, + "time": 0.8263327053086557, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5704, - "time": 0.8298791976061176, + "noteOrder": 5706, + "time": 0.8298791976061177, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5801, - "time": 0.8440651667959658, + "noteOrder": 5803, + "time": 0.8440651667959659, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5850, - "time": 0.8511581513908898, + "noteOrder": 5852, + "time": 0.85115815139089, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5899, - "time": 0.8582511359858139, + "noteOrder": 5901, + "time": 0.858251135985814, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6045, - "time": 0.8795300897705862, + "noteOrder": 6047, + "time": 0.8795300897705863, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6069, - "time": 0.8830765820680482, + "noteOrder": 6071, + "time": 0.8830765820680484, "position": { "x": 3, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6094, - "time": 0.8866230743655102, + "noteOrder": 6096, + "time": 0.8866230743655105, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6191, - "time": 0.9008090435553584, + "noteOrder": 6193, + "time": 0.9008090435553586, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6240, - "time": 0.9079020281502825, + "noteOrder": 6242, + "time": 0.9079020281502828, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6289, - "time": 0.9149950127452066, + "noteOrder": 6291, + "time": 0.9149950127452067, "position": { "x": 4, "y": 0 @@ -1536,10 +1536,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 97, - "time": 0.014185969189848165, + "noteOrder": 98, + "time": 0.014185969189848168, "position": { "x": 7, "y": 0 @@ -1559,10 +1559,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 195, - "time": 0.02837193837969633, + "time": 0.028371938379696336, "position": { "x": 7, "y": 0 @@ -1582,10 +1582,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, - "time": 0.02837193837969633, + "time": 0.028371938379696336, "position": { "x": 4, "y": 0 @@ -1605,10 +1605,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 292, - "time": 0.042557907569544494, + "noteOrder": 293, + "time": 0.0425579075695445, "position": { "x": 4, "y": 0 @@ -1628,10 +1628,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 292, - "time": 0.042557907569544494, + "noteOrder": 293, + "time": 0.0425579075695445, "position": { "x": 6, "y": 0 @@ -1651,10 +1651,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 390, - "time": 0.05674387675939266, + "time": 0.05674387675939267, "position": { "x": 6, "y": 0 @@ -1674,10 +1674,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 390, - "time": 0.05674387675939266, + "time": 0.05674387675939267, "position": { "x": 3, "y": 0 @@ -1697,10 +1697,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 487, - "time": 0.07092984594924082, + "noteOrder": 488, + "time": 0.07092984594924083, "position": { "x": 3, "y": 0 @@ -1720,10 +1720,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 487, - "time": 0.07092984594924082, + "noteOrder": 488, + "time": 0.07092984594924083, "position": { "x": 6, "y": 0 @@ -1743,10 +1743,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 585, - "time": 0.08511581513908899, + "time": 0.085115815139089, "position": { "x": 6, "y": 0 @@ -1766,10 +1766,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, - "time": 0.08511581513908899, + "time": 0.085115815139089, "position": { "x": 4, "y": 0 @@ -1789,10 +1789,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 682, - "time": 0.09930178432893715, + "noteOrder": 683, + "time": 0.09930178432893717, "position": { "x": 4, "y": 0 @@ -1812,10 +1812,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 682, - "time": 0.09930178432893715, + "noteOrder": 683, + "time": 0.09930178432893717, "position": { "x": 6, "y": 0 @@ -1835,10 +1835,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 780, - "time": 0.11348775351878532, + "time": 0.11348775351878534, "position": { "x": 6, "y": 0 @@ -1858,10 +1858,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 780, - "time": 0.11348775351878532, + "time": 0.11348775351878534, "position": { "x": 4, "y": 0 @@ -1881,10 +1881,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 877, - "time": 0.12767372270863347, + "noteOrder": 878, + "time": 0.1276737227086335, "position": { "x": 4, "y": 0 @@ -1904,10 +1904,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 877, - "time": 0.12767372270863347, + "noteOrder": 878, + "time": 0.1276737227086335, "position": { "x": 8, "y": 0 @@ -1926,11 +1926,11 @@ "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 926, - "time": 0.13476670730355758, + "noteOrder": 902, + "time": 0.13122021500609554, "position": { "x": 8, "y": 0 @@ -1944,18 +1944,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 975, - "time": 0.14185969189848163, + "noteOrder": 902, + "time": 0.13122021500609554, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -1972,11 +1972,11 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1024, - "time": 0.14895267649340574, + "noteOrder": 927, + "time": 0.13476670730355758, "position": { "x": 8, "y": 0 @@ -1995,11 +1995,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1072, - "time": 0.15604566108832982, + "noteOrder": 951, + "time": 0.13831319960101962, "position": { "x": 8, "y": 0 @@ -2013,16 +2013,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 1, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1121, - "time": 0.16313864568325387, + "noteOrder": 951, + "time": 0.13831319960101962, "position": { "x": 6, "y": 0 @@ -2036,18 +2036,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 2, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1170, - "time": 0.17023163027817798, + "noteOrder": 975, + "time": 0.14185969189848166, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2064,13 +2064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 3, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1219, - "time": 0.17732461487310205, + "noteOrder": 1000, + "time": 0.1454061841959437, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2087,36 +2087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1462, - "time": 0.21278953784772245, - "position": { - "x": 2, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1511, - "time": 0.21988252244264656, + "noteOrder": 1000, + "time": 0.1454061841959437, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2133,13 +2110,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1560, - "time": 0.22697550703757063, + "noteOrder": 1024, + "time": 0.14895267649340577, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2156,13 +2133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, - "time": 0.2340684916324947, + "noteOrder": 1048, + "time": 0.15249916879086778, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2174,18 +2151,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1657, - "time": 0.2411614762274188, + "noteOrder": 1048, + "time": 0.15249916879086778, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2202,13 +2179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, + "lineGroupId": 13, "indexInLine": 1, "isSliding": false, - "noteOrder": 1706, - "time": 0.24825446082234287, + "noteOrder": 1073, + "time": 0.15604566108832985, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2220,18 +2197,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, + "lineGroupId": 13, "indexInLine": 2, "isSliding": false, - "noteOrder": 1755, - "time": 0.25534744541726695, + "noteOrder": 1122, + "time": 0.1631386456832539, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2243,16 +2220,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, + "lineGroupId": 13, "indexInLine": 3, "isSliding": false, - "noteOrder": 1804, - "time": 0.2624404300121911, + "noteOrder": 1170, + "time": 0.170231630278178, "position": { "x": 6, "y": 0 @@ -2266,18 +2243,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2047, - "time": 0.2979053529868115, + "noteOrder": 1219, + "time": 0.17732461487310208, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2294,13 +2271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 2194, - "time": 0.31918430677158366, + "noteOrder": 1463, + "time": 0.2127895378477225, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2312,16 +2289,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2242, - "time": 0.32627729136650774, + "noteOrder": 1487, + "time": 0.21633603014518452, "position": { "x": 2, "y": 0 @@ -2340,13 +2317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2389, - "time": 0.34755624515128003, + "noteOrder": 1487, + "time": 0.21633603014518452, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2363,13 +2340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2632, - "time": 0.3830211681259004, + "noteOrder": 1512, + "time": 0.21988252244264658, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2386,13 +2363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2681, - "time": 0.3901141527208245, + "noteOrder": 1536, + "time": 0.22342901474010862, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2404,18 +2381,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2827, - "time": 0.4113931065055968, + "noteOrder": 1536, + "time": 0.22342901474010862, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2432,13 +2409,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 2974, - "time": 0.43267206029036903, + "noteOrder": 1561, + "time": 0.2269755070375707, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -2450,16 +2427,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3022, - "time": 0.4397650448852931, + "noteOrder": 1585, + "time": 0.2305219993350327, "position": { "x": 2, "y": 0 @@ -2478,13 +2455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3071, - "time": 0.4468580294802172, + "noteOrder": 1585, + "time": 0.2305219993350327, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2496,16 +2473,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3217, - "time": 0.4681369832649894, + "noteOrder": 1609, + "time": 0.23406849163249474, "position": { "x": 2, "y": 0 @@ -2519,18 +2496,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.48941593704976166, + "noteOrder": 1634, + "time": 0.2376149839299568, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2542,18 +2519,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3802, - "time": 0.5532527984040784, + "noteOrder": 1634, + "time": 0.2376149839299568, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2565,16 +2542,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3851, - "time": 0.5603457829990025, + "noteOrder": 1658, + "time": 0.24116147622741882, "position": { "x": 2, "y": 0 @@ -2588,18 +2565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3900, - "time": 0.5674387675939265, + "noteOrder": 1707, + "time": 0.24825446082234293, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2616,13 +2593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3949, - "time": 0.5745317521888507, + "noteOrder": 1756, + "time": 0.255347445417267, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2634,18 +2611,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3997, - "time": 0.5816247367837747, + "noteOrder": 1804, + "time": 0.2624404300121911, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2662,13 +2639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 4046, - "time": 0.5887177213786989, + "noteOrder": 2048, + "time": 0.29790535298681153, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2680,16 +2657,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 39, "indexInLine": 2, "isSliding": false, - "noteOrder": 4095, - "time": 0.595810705973623, + "noteOrder": 2194, + "time": 0.31918430677158377, "position": { "x": 4, "y": 0 @@ -2703,18 +2680,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 3, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4144, - "time": 0.602903690568547, + "noteOrder": 2243, + "time": 0.3262772913665078, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -2731,13 +2708,910 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4387, - "time": 0.6383686135431673, + "noteOrder": 2390, + "time": 0.3475562451512801, "position": { - "x": 8, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2633, + "time": 0.3830211681259005, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.38656766042336255, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2658, + "time": 0.38656766042336255, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2682, + "time": 0.39011415272082456, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2707, + "time": 0.3936606450182866, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2707, + "time": 0.3936606450182866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2828, + "time": 0.4113931065055968, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2975, + "time": 0.43267206029036903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3024, + "time": 0.43976504488529317, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3048, + "time": 0.44331153718275523, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3048, + "time": 0.44331153718275523, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3072, + "time": 0.44685802948021724, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3097, + "time": 0.4504045217776793, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3097, + "time": 0.4504045217776793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4681369832649895, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3365, + "time": 0.4894159370497617, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3804, + "time": 0.5532527984040785, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3828, + "time": 0.5567992907015406, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3828, + "time": 0.5567992907015406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3853, + "time": 0.5603457829990025, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3877, + "time": 0.5638922752964646, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3877, + "time": 0.5638922752964646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3901, + "time": 0.5674387675939266, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3926, + "time": 0.5709852598913887, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3926, + "time": 0.5709852598913887, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3950, + "time": 0.5745317521888508, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3974, + "time": 0.5780782444863128, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3974, + "time": 0.5780782444863128, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3999, + "time": 0.5816247367837748, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5887177213786989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4096, + "time": 0.5958107059736231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4145, + "time": 0.602903690568547, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4389, + "time": 0.6383686135431675, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4413, + "time": 0.6419151058406296, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4413, + "time": 0.6419151058406296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4438, + "time": 0.6454615981380917, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4462, + "time": 0.6490080904355536, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4462, + "time": 0.6490080904355536, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4487, + "time": 0.6525545827330156, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -2754,11 +3628,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4436, - "time": 0.6454615981380915, + "noteOrder": 4511, + "time": 0.6561010750304777, "position": { "x": 8, "y": 0 @@ -2772,18 +3646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4485, - "time": 0.6525545827330155, + "noteOrder": 4511, + "time": 0.6561010750304777, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2801,9 +3675,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4534, + "noteOrder": 4535, "time": 0.6596475673279397, "position": { "x": 8, @@ -2822,12 +3696,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6631940596254018, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4560, + "time": 0.6631940596254018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4582, - "time": 0.6667405519228637, + "noteOrder": 4584, + "time": 0.6667405519228639, "position": { "x": 8, "y": 0 @@ -2847,9 +3767,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4631, + "noteOrder": 4633, "time": 0.6738335365177879, "position": { "x": 6, @@ -2870,10 +3790,10 @@ }, { "lineGroupId": 91, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4680, - "time": 0.6809265211127119, + "noteOrder": 4682, + "time": 0.680926521112712, "position": { "x": 6, "y": 0 @@ -2893,10 +3813,10 @@ }, { "lineGroupId": 91, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4729, - "time": 0.6880195057076359, + "noteOrder": 4730, + "time": 0.6880195057076361, "position": { "x": 4, "y": 0 @@ -2916,10 +3836,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4972, - "time": 0.7234844286822564, + "noteOrder": 4974, + "time": 0.7234844286822565, "position": { "x": 2, "y": 0 @@ -2939,10 +3859,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5119, - "time": 0.7447633824670287, + "noteOrder": 5120, + "time": 0.7447633824670288, "position": { "x": 6, "y": 0 @@ -2962,10 +3882,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5167, - "time": 0.7518563670619527, + "noteOrder": 5169, + "time": 0.7518563670619529, "position": { "x": 8, "y": 0 @@ -2985,10 +3905,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5314, - "time": 0.773135320846725, + "noteOrder": 5316, + "time": 0.7731353208467251, "position": { "x": 4, "y": 0 @@ -3008,9 +3928,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5557, + "noteOrder": 5559, "time": 0.8086002438213454, "position": { "x": 2, @@ -3029,12 +3949,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5584, + "time": 0.8121467361188075, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5584, + "time": 0.8121467361188075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5608, + "time": 0.8156932284162696, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5606, - "time": 0.8156932284162695, + "noteOrder": 5633, + "time": 0.8192397207137316, "position": { "x": 2, "y": 0 @@ -3052,12 +4041,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5633, + "time": 0.8192397207137316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5752, - "time": 0.8369721822010416, + "noteOrder": 5754, + "time": 0.8369721822010419, "position": { "x": 2, "y": 0 @@ -3077,10 +4089,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.8582511359858139, + "noteOrder": 5901, + "time": 0.858251135985814, "position": { "x": 6, "y": 0 @@ -3100,9 +4112,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5947, + "noteOrder": 5950, "time": 0.8653441205807381, "position": { "x": 8, @@ -3121,11 +4133,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5974, + "time": 0.8688906128782001, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5974, + "time": 0.8688906128782001, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.8724371051756622, "position": { "x": 8, @@ -3144,12 +4202,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6023, + "time": 0.8759835974731243, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6023, + "time": 0.8759835974731243, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6142, - "time": 0.8937160589604344, + "noteOrder": 6145, + "time": 0.8937160589604345, "position": { "x": 8, "y": 0 @@ -3169,10 +4273,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6289, - "time": 0.9149950127452066, + "noteOrder": 6291, + "time": 0.9149950127452067, "position": { "x": 4, "y": 0 @@ -3192,10 +4296,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6386, - "time": 0.9291809819350547, + "noteOrder": 6388, + "time": 0.9291809819350549, "position": { "x": 4, "y": 0 @@ -3215,10 +4319,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6532, - "time": 0.950459935719827, + "noteOrder": 6535, + "time": 0.9504599357198272, "position": { "x": 4, "y": 0 @@ -3238,10 +4342,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6386, - "time": 0.9291809819350547, + "noteOrder": 6388, + "time": 0.9291809819350549, "position": { "x": 6, "y": 0 @@ -3261,10 +4365,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6532, - "time": 0.950459935719827, + "noteOrder": 6535, + "time": 0.9504599357198272, "position": { "x": 6, "y": 0 diff --git a/tracks/Starlight Parade/info.json b/tracks/Starlight Parade/info.json index 0bb4a290..a1244192 100644 --- a/tracks/Starlight Parade/info.json +++ b/tracks/Starlight Parade/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Starlight Parade", - "SongLength": "137.273469", + "SongLength": "127.320816", "SongAuthorName": "ARM (IOSYS) ft. Renko", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1a.json b/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1a.json index 881dc3ef..307815c1 100644 --- a/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1a.json +++ b/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 528, - "time": 0.08089164655865794, + "time": 0.08089164655865792, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 600, - "time": 0.09192232563483857, + "time": 0.09192232563483856, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 600, - "time": 0.09192232563483857, + "time": 0.09192232563483856, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 624, - "time": 0.09559921866023209, + "time": 0.0955992186602321, "position": { "x": 6, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10295300471101917, + "noteOrder": 673, + "time": 0.10295300471101919, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.10662989773641272, "position": { "x": 6, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.11030679076180627, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.11398368378719981, "position": { "x": 3, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 769, "time": 0.11766057681259336, "position": { "x": 5, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 793, "time": 0.1213374698379869, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12501436286338044, "position": { "x": 5, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.12869125588877398, "position": { "x": 3, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 864, - "time": 0.13236814891416754, + "noteOrder": 865, + "time": 0.1323681489141675, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 888, - "time": 0.13604504193956107, + "noteOrder": 889, + "time": 0.13604504193956105, "position": { "x": 6, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 913, "time": 0.1397219349649546, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 961, "time": 0.14707572101574168, "position": { "x": 3, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 985, "time": 0.15075261404113524, "position": { "x": 3, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1009, "time": 0.15442950706652878, "position": { "x": 3, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1056, - "time": 0.16178329311731587, + "noteOrder": 1057, + "time": 0.16178329311731585, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1080, - "time": 0.16546018614270938, + "noteOrder": 1081, + "time": 0.1654601861427094, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1105, "time": 0.16913707916810294, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1129, "time": 0.17281397219349648, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1153, "time": 0.17649086521889004, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1177, "time": 0.18016775824428358, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1200, - "time": 0.18384465126967714, + "noteOrder": 1201, + "time": 0.1838446512696771, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1225, "time": 0.18752154429507065, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1273, "time": 0.19487533034585774, "position": { "x": 5, @@ -694,7 +694,7 @@ }, { "noteOrder": 1321, - "time": 0.20222911639664484, + "time": 0.20222911639664481, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1513, - "time": 0.23164426059979315, + "time": 0.23164426059979318, "position": { "x": 7, "y": 0 @@ -1014,7 +1014,7 @@ }, { "noteOrder": 1777, - "time": 0.27209008387912215, + "time": 0.2720900838791221, "position": { "x": 5, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1897, - "time": 0.2904745490060899, + "time": 0.2904745490060898, "position": { "x": 7, "y": 0 @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1945, - "time": 0.29782833505687695, + "time": 0.2978283350568769, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.30518212110766396, + "noteOrder": 1994, + "time": 0.305182121107664, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.3125359071584511, "position": { "x": 5, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.3162128001838447, + "noteOrder": 2066, + "time": 0.3162128001838446, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.31988969320923816, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.32356658623463175, + "noteOrder": 2114, + "time": 0.3235665862346317, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.3272434792600253, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.33092037228541876, + "noteOrder": 2162, + "time": 0.3309203722854188, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2185, + "noteOrder": 2186, "time": 0.33459726531081235, "position": { "x": 5, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.3419510513615995, + "noteOrder": 2234, + "time": 0.3419510513615994, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.34562794438699296, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.3493048374123865, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.3529817304377801, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2329, - "time": 0.35665862346317356, + "noteOrder": 2330, + "time": 0.3566586234631736, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.36033551648856715, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2377, + "noteOrder": 2378, "time": 0.3640124095139607, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.3676893025393543, + "noteOrder": 2402, + "time": 0.3676893025393542, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2425, + "noteOrder": 2426, "time": 0.37136619556474776, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3750430885901413, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.3787199816155349, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.38239687464092836, + "noteOrder": 2498, + "time": 0.3823968746409284, "position": { "x": 3, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.38607376766632195, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2546, "time": 0.3897506606917155, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2569, + "noteOrder": 2570, "time": 0.393427553717109, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2593, + "noteOrder": 2594, "time": 0.39710444674250256, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2618, "time": 0.4007813397678961, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.4044582327932897, + "noteOrder": 2642, + "time": 0.40445823279328963, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2666, "time": 0.4081351258186832, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2689, - "time": 0.4118120188440767, + "noteOrder": 2690, + "time": 0.41181201884407675, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2714, "time": 0.4154889118694703, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.4191658048948638, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.42284269792025736, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2809, - "time": 0.4301964839710445, + "noteOrder": 2810, + "time": 0.43019648397104443, "position": { "x": 5, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2833, + "noteOrder": 2834, "time": 0.433873376996438, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2857, - "time": 0.4375502700218315, + "noteOrder": 2858, + "time": 0.43755027002183156, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2905, + "noteOrder": 2906, "time": 0.4449040560726186, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2929, + "noteOrder": 2930, "time": 0.44858094909801216, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2953, + "noteOrder": 2954, "time": 0.4522578421234057, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3193, - "time": 0.4890267723773411, + "noteOrder": 3194, + "time": 0.48902677237734116, "position": { "x": 5, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3218, "time": 0.4927036654027347, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3241, + "noteOrder": 3242, "time": 0.4963805584281282, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3289, + "noteOrder": 3290, "time": 0.5037343444789153, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3313, + "noteOrder": 3315, "time": 0.5074112375043088, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3337, + "noteOrder": 3339, "time": 0.5110881305297024, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3361, + "noteOrder": 3363, "time": 0.5147650235550959, "position": { "x": 2, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3385, + "noteOrder": 3387, "time": 0.5184419165804894, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3409, + "noteOrder": 3411, "time": 0.522118809605883, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.5257957026312766, + "noteOrder": 3435, + "time": 0.5257957026312765, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3745, + "noteOrder": 3747, "time": 0.5735953119613926, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3769, - "time": 0.5772722049867862, + "noteOrder": 3771, + "time": 0.5772722049867861, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3793, - "time": 0.5809490980121798, + "noteOrder": 3795, + "time": 0.5809490980121796, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3817, + "noteOrder": 3819, "time": 0.5846259910375732, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3841, + "noteOrder": 3843, "time": 0.5883028840629667, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3865, + "noteOrder": 3867, "time": 0.5919797770883602, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.5956566701137539, + "noteOrder": 3891, + "time": 0.5956566701137538, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.5993335631391474, + "noteOrder": 3915, + "time": 0.5993335631391473, "position": { "x": 5, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4130, - "time": 0.6324256003676894, + "noteOrder": 4131, + "time": 0.6324256003676892, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4154, + "noteOrder": 4155, "time": 0.6361024933930828, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4178, + "noteOrder": 4179, "time": 0.6397793864184763, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4202, + "noteOrder": 4203, "time": 0.6434562794438698, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4226, - "time": 0.6471331724692635, + "noteOrder": 4227, + "time": 0.6471331724692634, "position": { "x": 5, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4250, - "time": 0.650810065494657, + "noteOrder": 4251, + "time": 0.6508100654946569, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4274, + "noteOrder": 4275, "time": 0.6544869585200506, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4298, + "noteOrder": 4299, "time": 0.6581638515454441, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4611, "time": 0.7059634608755602, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4634, + "noteOrder": 4636, "time": 0.7096403539009537, "position": { "x": 6, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7133172469263471, + "noteOrder": 4660, + "time": 0.7133172469263472, "position": { "x": 5, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4682, - "time": 0.7169941399517407, + "noteOrder": 4684, + "time": 0.7169941399517408, "position": { "x": 3, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4898, + "noteOrder": 4900, "time": 0.7500861771802826, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4922, - "time": 0.7537630702056762, + "noteOrder": 4924, + "time": 0.7537630702056761, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574399632310698, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7611168562564633, "position": { "x": 3, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.7647937492818567, + "noteOrder": 4996, + "time": 0.7647937492818568, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.7647937492818567, + "noteOrder": 4996, + "time": 0.7647937492818568, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5090, + "noteOrder": 5092, "time": 0.779501321383431, "position": { "x": 5, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5114, + "noteOrder": 5116, "time": 0.7831782144088245, "position": { "x": 5, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5138, + "noteOrder": 5140, "time": 0.786855107434218, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5162, + "noteOrder": 5164, "time": 0.7905320004596116, "position": { "x": 5, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5186, + "noteOrder": 5188, "time": 0.7942088934850051, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5210, + "noteOrder": 5212, "time": 0.7978857865103987, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5234, + "noteOrder": 5236, "time": 0.8015626795357922, "position": { "x": 3, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5258, + "noteOrder": 5260, "time": 0.8052395725611857, "position": { "x": 4, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5282, - "time": 0.8089164655865794, + "noteOrder": 5284, + "time": 0.8089164655865793, "position": { "x": 5, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5306, + "noteOrder": 5308, "time": 0.8125933586119729, "position": { "x": 5, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5330, + "noteOrder": 5332, "time": 0.8162702516373664, "position": { "x": 5, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5354, - "time": 0.8199471446627599, + "noteOrder": 5356, + "time": 0.81994714466276, "position": { "x": 5, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5378, - "time": 0.8236240376881534, + "noteOrder": 5380, + "time": 0.8236240376881535, "position": { "x": 7, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5402, + "noteOrder": 5404, "time": 0.827300930713547, "position": { "x": 6, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5426, + "noteOrder": 5428, "time": 0.8309778237389406, "position": { "x": 3, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5450, + "noteOrder": 5452, "time": 0.8346547167643341, "position": { "x": 4, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5594, + "noteOrder": 5596, "time": 0.8567160749166953, "position": { "x": 5, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5618, - "time": 0.860392967942089, + "noteOrder": 5620, + "time": 0.8603929679420889, "position": { "x": 4, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5642, + "noteOrder": 5644, "time": 0.8640698609674825, "position": { "x": 3, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5786, + "noteOrder": 5788, "time": 0.8861312191198437, "position": { "x": 5, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5810, + "noteOrder": 5812, "time": 0.8898081121452373, "position": { "x": 6, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5834, + "noteOrder": 5836, "time": 0.8934850051706308, "position": { "x": 7, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5858, + "noteOrder": 5860, "time": 0.8971618981960243, "position": { "x": 8, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5882, + "noteOrder": 5884, "time": 0.9008387912214179, "position": { "x": 4, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5906, + "noteOrder": 5908, "time": 0.9045156842468114, "position": { "x": 5, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5954, + "noteOrder": 5957, "time": 0.9118694702975985, "position": { "x": 2, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5978, + "noteOrder": 5981, "time": 0.9155463633229921, "position": { "x": 6, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6002, + "noteOrder": 6005, "time": 0.9192232563483856, "position": { "x": 5, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6050, - "time": 0.9265770423991726, + "noteOrder": 6053, + "time": 0.9265770423991727, "position": { "x": 5, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6074, - "time": 0.9302539354245661, + "noteOrder": 6077, + "time": 0.9302539354245662, "position": { "x": 3, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6098, + "noteOrder": 6101, "time": 0.9339308284499598, "position": { "x": 5, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6122, + "noteOrder": 6125, "time": 0.9376077214753533, "position": { "x": 7, @@ -3216,7 +3216,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01470757210157417, @@ -3239,7 +3239,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.02941514420314834, @@ -3262,7 +3262,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 180, "time": 0.027576697690451568, @@ -3285,7 +3285,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.04412271630472251, @@ -3308,7 +3308,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04412271630472251, @@ -3331,7 +3331,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, "time": 0.05883028840629668, @@ -3354,7 +3354,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 372, "time": 0.056991841893599904, @@ -3377,7 +3377,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 480, "time": 0.07353786050787084, @@ -3400,10 +3400,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1248, - "time": 0.19119843732046418, + "noteOrder": 1249, + "time": 0.1911984373204642, "position": { "x": 3, "y": 0 @@ -3423,10 +3423,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1321, - "time": 0.20222911639664484, + "time": 0.20222911639664481, "position": { "x": 6, "y": 0 @@ -3446,10 +3446,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, - "time": 0.20590600942203835, + "time": 0.20590600942203838, "position": { "x": 7, "y": 0 @@ -3469,7 +3469,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1417, "time": 0.216936688498219, @@ -3492,7 +3492,7 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1633, "time": 0.2500287257267609, @@ -3515,7 +3515,7 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1657, "time": 0.2537056187521544, @@ -3538,7 +3538,7 @@ }, { "lineGroupId": 55, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1681, "time": 0.25738251177754795, @@ -3561,7 +3561,7 @@ }, { "lineGroupId": 55, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1705, "time": 0.2610594048029415, @@ -3584,10 +3584,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1729, - "time": 0.2647362978283351, + "time": 0.264736297828335, "position": { "x": 7, "y": 0 @@ -3607,7 +3607,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1753, "time": 0.26841319085372856, @@ -3630,10 +3630,10 @@ }, { "lineGroupId": 59, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1777, - "time": 0.27209008387912215, + "time": 0.2720900838791221, "position": { "x": 8, "y": 0 @@ -3653,7 +3653,7 @@ }, { "lineGroupId": 59, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1801, "time": 0.2757669769045157, @@ -3676,7 +3676,7 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1825, "time": 0.2794438699299092, @@ -3699,7 +3699,7 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1873, "time": 0.2867976559806963, @@ -3722,7 +3722,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1873, "time": 0.2867976559806963, @@ -3745,7 +3745,7 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1921, "time": 0.29415144203148336, @@ -3768,7 +3768,7 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1921, "time": 0.29415144203148336, @@ -3791,7 +3791,7 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1969, "time": 0.3015052280822705, @@ -3814,7 +3814,7 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1969, "time": 0.3015052280822705, @@ -3837,9 +3837,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.30885901413305755, "position": { "x": 6, @@ -3860,9 +3860,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.30885901413305755, "position": { "x": 3, @@ -3883,9 +3883,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3382741583362059, "position": { "x": 3, @@ -3906,9 +3906,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3382741583362059, "position": { "x": 6, @@ -3929,10 +3929,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.3676893025393543, + "noteOrder": 2402, + "time": 0.3676893025393542, "position": { "x": 6, "y": 0 @@ -3952,9 +3952,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, + "noteOrder": 2786, "time": 0.4265195909456509, "position": { "x": 3, @@ -3975,9 +3975,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2881, + "noteOrder": 2882, "time": 0.4412271630472251, "position": { "x": 6, @@ -3998,9 +3998,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2881, + "noteOrder": 2882, "time": 0.4412271630472251, "position": { "x": 7, @@ -4021,9 +4021,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2977, + "noteOrder": 2978, "time": 0.45593473514879923, "position": { "x": 4, @@ -4044,9 +4044,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2977, + "noteOrder": 2978, "time": 0.45593473514879923, "position": { "x": 2, @@ -4066,13 +4066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3025, - "time": 0.4632885211995863, + "noteOrder": 3002, + "time": 0.4596116281741928, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4084,18 +4084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3073, - "time": 0.4706423072503734, + "noteOrder": 3002, + "time": 0.4596116281741928, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4112,11 +4112,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3121, - "time": 0.4779960933011605, + "noteOrder": 3026, + "time": 0.46328852119958636, "position": { "x": 7, "y": 0 @@ -4135,13 +4135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3169, - "time": 0.4853498793519476, + "noteOrder": 3050, + "time": 0.4669654142249799, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4153,18 +4153,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3050, + "time": 0.4669654142249799, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, "indexInLine": 1, "isSliding": false, - "noteOrder": 3265, - "time": 0.5000574514535218, + "noteOrder": 3074, + "time": 0.4706423072503734, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4181,13 +4204,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3265, - "time": 0.5000574514535218, + "noteOrder": 3098, + "time": 0.47431920027576696, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4199,16 +4222,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3361, - "time": 0.5147650235550959, + "noteOrder": 3098, + "time": 0.47431920027576696, "position": { "x": 4, "y": 0 @@ -4222,16 +4245,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3553, - "time": 0.5441801677582443, + "noteOrder": 3122, + "time": 0.4779960933011605, "position": { "x": 7, "y": 0 @@ -4250,11 +4273,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3577, - "time": 0.5478570607836378, + "noteOrder": 3146, + "time": 0.48167298632655403, "position": { "x": 7, "y": 0 @@ -4268,18 +4291,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3601, - "time": 0.5515339538090314, + "noteOrder": 3146, + "time": 0.48167298632655403, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4296,13 +4319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3625, - "time": 0.5552108468344249, + "noteOrder": 3170, + "time": 0.4853498793519476, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4319,13 +4342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3649, - "time": 0.5588877398598184, + "noteOrder": 3266, + "time": 0.5000574514535218, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4337,16 +4360,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3673, - "time": 0.562564632885212, + "noteOrder": 3266, + "time": 0.5000574514535218, "position": { "x": 7, "y": 0 @@ -4360,18 +4383,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3697, - "time": 0.5662415259106055, + "noteOrder": 3363, + "time": 0.5147650235550959, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4388,11 +4411,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3721, - "time": 0.569918418935999, + "noteOrder": 3555, + "time": 0.5441801677582442, "position": { "x": 7, "y": 0 @@ -4406,18 +4429,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3938, - "time": 0.603010456164541, + "noteOrder": 3567, + "time": 0.546018614270941, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4429,18 +4452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3962, - "time": 0.6066873491899345, + "noteOrder": 3567, + "time": 0.546018614270941, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4457,13 +4480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3986, - "time": 0.6103642422153279, + "noteOrder": 3579, + "time": 0.5478570607836377, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4475,18 +4498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4010, - "time": 0.6140411352407216, + "noteOrder": 3579, + "time": 0.5478570607836377, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4503,13 +4526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.6177180282661151, + "noteOrder": 3579, + "time": 0.5478570607836377, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4526,13 +4549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4058, - "time": 0.6213949212915086, + "noteOrder": 3591, + "time": 0.5496955072963347, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4544,18 +4567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4082, - "time": 0.6250718143169022, + "noteOrder": 3591, + "time": 0.5496955072963347, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4572,13 +4595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4106, - "time": 0.6287487073422957, + "noteOrder": 3603, + "time": 0.5515339538090314, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4590,16 +4613,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4322, - "time": 0.6618407445708375, + "noteOrder": 3603, + "time": 0.5515339538090314, "position": { "x": 5, "y": 0 @@ -4618,13 +4641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 131, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.6655176375962312, + "noteOrder": 3603, + "time": 0.5515339538090314, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4636,18 +4659,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.6691945306216247, + "noteOrder": 3615, + "time": 0.5533724003217282, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4664,11 +4687,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4394, - "time": 0.6728714236470182, + "noteOrder": 3615, + "time": 0.5533724003217282, "position": { "x": 6, "y": 0 @@ -4687,13 +4710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4418, - "time": 0.6765483166724118, + "noteOrder": 3627, + "time": 0.5552108468344249, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4705,7 +4728,1617 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3627, + "time": 0.5552108468344249, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3627, + "time": 0.5552108468344249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3639, + "time": 0.5570492933471217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3639, + "time": 0.5570492933471217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3651, + "time": 0.5588877398598184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3651, + "time": 0.5588877398598184, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3651, + "time": 0.5588877398598184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3663, + "time": 0.5607261863725153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3663, + "time": 0.5607261863725153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3675, + "time": 0.562564632885212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3675, + "time": 0.562564632885212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3675, + "time": 0.562564632885212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3687, + "time": 0.5644030793979088, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3687, + "time": 0.5644030793979088, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3699, + "time": 0.5662415259106055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3699, + "time": 0.5662415259106055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3699, + "time": 0.5662415259106055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3711, + "time": 0.5680799724233023, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3711, + "time": 0.5680799724233023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3723, + "time": 0.569918418935999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3723, + "time": 0.569918418935999, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3723, + "time": 0.569918418935999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3735, + "time": 0.5717568654486959, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3735, + "time": 0.5717568654486959, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3747, + "time": 0.5735953119613926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3747, + "time": 0.5735953119613926, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3939, + "time": 0.603010456164541, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3951, + "time": 0.6048489026772378, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3951, + "time": 0.6048489026772378, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3963, + "time": 0.6066873491899345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3963, + "time": 0.6066873491899345, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3963, + "time": 0.6066873491899345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3975, + "time": 0.6085257957026313, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3975, + "time": 0.6085257957026313, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3987, + "time": 0.610364242215328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3987, + "time": 0.610364242215328, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3987, + "time": 0.610364242215328, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3999, + "time": 0.6122026887280249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3999, + "time": 0.6122026887280249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4011, + "time": 0.6140411352407216, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4011, + "time": 0.6140411352407216, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4011, + "time": 0.6140411352407216, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4023, + "time": 0.6158795817534184, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4023, + "time": 0.6158795817534184, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4035, + "time": 0.6177180282661151, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4035, + "time": 0.6177180282661151, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4035, + "time": 0.6177180282661151, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4047, + "time": 0.6195564747788119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4047, + "time": 0.6195564747788119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4059, + "time": 0.6213949212915086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4059, + "time": 0.6213949212915086, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4059, + "time": 0.6213949212915086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4071, + "time": 0.6232333678042055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4071, + "time": 0.6232333678042055, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4083, + "time": 0.6250718143169022, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4083, + "time": 0.6250718143169022, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4083, + "time": 0.6250718143169022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4095, + "time": 0.626910260829599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4095, + "time": 0.626910260829599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4107, + "time": 0.6287487073422957, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4107, + "time": 0.6287487073422957, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4107, + "time": 0.6287487073422957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4119, + "time": 0.6305871538549925, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4119, + "time": 0.6305871538549925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4131, + "time": 0.6324256003676892, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4131, + "time": 0.6324256003676892, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4323, + "time": 0.6618407445708376, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4347, + "time": 0.6655176375962312, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4371, + "time": 0.6691945306216247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4395, + "time": 0.6728714236470182, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, @@ -4713,10 +6346,677 @@ "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 4442, - "time": 0.6802252096978053, + "noteOrder": 4419, + "time": 0.6765483166724118, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4443, + "time": 0.6802252096978053, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4467, + "time": 0.6839021027231988, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4491, + "time": 0.6875789957485924, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4515, + "time": 0.6912558887739859, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4539, + "time": 0.6949327817993795, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4563, + "time": 0.698609674824773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7022865678501665, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7206710329771343, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7243479260025278, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7280248190279214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7317017120533149, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7353786050787084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4828, + "time": 0.739055498104102, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4852, + "time": 0.7427323911294955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4876, + "time": 0.746409284154889, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5476, + "time": 0.8383316097897276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5488, + "time": 0.8401700563024244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5488, + "time": 0.8401700563024244, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5500, + "time": 0.8420085028151212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5500, + "time": 0.8420085028151212, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5500, + "time": 0.8420085028151212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5512, + "time": 0.8438469493278179, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5512, + "time": 0.8438469493278179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5524, + "time": 0.8456853958405147, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5524, + "time": 0.8456853958405147, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5524, + "time": 0.8456853958405147, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5536, + "time": 0.8475238423532114, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5536, + "time": 0.8475238423532114, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5548, + "time": 0.8493622888659083, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4728,16 +7028,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4466, - "time": 0.683902102723199, + "noteOrder": 5548, + "time": 0.8493622888659083, "position": { "x": 5, "y": 0 @@ -4756,11 +7056,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 4490, - "time": 0.6875789957485924, + "noteOrder": 5548, + "time": 0.8493622888659083, "position": { "x": 7, "y": 0 @@ -4774,18 +7074,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, - "time": 0.6912558887739859, + "noteOrder": 5560, + "time": 0.851200735378605, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4802,13 +7102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4538, - "time": 0.6949327817993795, + "noteOrder": 5560, + "time": 0.851200735378605, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4825,11 +7125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4562, - "time": 0.698609674824773, + "noteOrder": 5572, + "time": 0.8530391818913018, "position": { "x": 6, "y": 0 @@ -4843,18 +7143,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 200, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5572, + "time": 0.8530391818913018, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 4586, - "time": 0.7022865678501666, + "noteOrder": 5572, + "time": 0.8530391818913018, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4871,13 +7194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4706, - "time": 0.7206710329771343, + "noteOrder": 5644, + "time": 0.8640698609674825, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4889,18 +7212,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 4730, - "time": 0.7243479260025278, + "noteOrder": 5668, + "time": 0.867746753992876, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4917,13 +7240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4754, - "time": 0.7280248190279214, + "noteOrder": 5680, + "time": 0.8695852005055728, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4935,16 +7258,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4778, - "time": 0.7317017120533149, + "noteOrder": 5680, + "time": 0.8695852005055728, "position": { "x": 4, "y": 0 @@ -4958,18 +7281,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4802, - "time": 0.7353786050787086, + "noteOrder": 5692, + "time": 0.8714236470182696, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4986,11 +7309,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4826, - "time": 0.739055498104102, + "noteOrder": 5692, + "time": 0.8714236470182696, "position": { "x": 5, "y": 0 @@ -5009,13 +7332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4850, - "time": 0.7427323911294955, + "noteOrder": 5692, + "time": 0.8714236470182696, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5032,13 +7355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4874, - "time": 0.746409284154889, + "noteOrder": 5704, + "time": 0.8732620935309663, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5055,13 +7378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5474, - "time": 0.8383316097897276, + "noteOrder": 5704, + "time": 0.8732620935309663, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5078,13 +7401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5498, - "time": 0.8420085028151213, + "noteOrder": 5716, + "time": 0.8751005400436631, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5096,18 +7419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5522, - "time": 0.8456853958405147, + "noteOrder": 5716, + "time": 0.8751005400436631, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5124,13 +7447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5546, - "time": 0.8493622888659083, + "noteOrder": 5716, + "time": 0.8751005400436631, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5147,13 +7470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5570, - "time": 0.8530391818913018, + "noteOrder": 5728, + "time": 0.8769389865563598, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5165,16 +7488,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5642, - "time": 0.8640698609674825, + "noteOrder": 5728, + "time": 0.8769389865563598, "position": { "x": 4, "y": 0 @@ -5188,18 +7511,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5666, - "time": 0.867746753992876, + "noteOrder": 5740, + "time": 0.8787774330690566, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5216,11 +7539,34 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5740, + "time": 0.8787774330690566, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5690, - "time": 0.8714236470182695, + "noteOrder": 5740, + "time": 0.8787774330690566, "position": { "x": 3, "y": 0 @@ -5239,11 +7585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5714, - "time": 0.875100540043663, + "noteOrder": 5752, + "time": 0.8806158795817534, "position": { "x": 3, "y": 0 @@ -5257,18 +7603,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5738, - "time": 0.8787774330690566, + "noteOrder": 5752, + "time": 0.8806158795817534, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5764, + "time": 0.8824543260944502, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5764, + "time": 0.8824543260944502, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5286,9 +7678,9 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5762, + "noteOrder": 5764, "time": 0.8824543260944502, "position": { "x": 3, @@ -5309,9 +7701,9 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5834, + "noteOrder": 5836, "time": 0.8934850051706308, "position": { "x": 6, @@ -5332,9 +7724,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6146, + "noteOrder": 6149, "time": 0.9412846145007469, "position": { "x": 5, @@ -5355,9 +7747,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6194, + "noteOrder": 6197, "time": 0.9486384005515339, "position": { "x": 3, @@ -5378,9 +7770,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.955992186602321, "position": { "x": 7, @@ -5401,9 +7793,9 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6341, "time": 0.9706997587038952, "position": { "x": 7, @@ -5424,9 +7816,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.955992186602321, "position": { "x": 3, @@ -5447,9 +7839,9 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6341, "time": 0.9706997587038952, "position": { "x": 3, diff --git a/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1b.json b/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1b.json index 048c6b71..25e20ef0 100644 --- a/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1b.json +++ b/tracks/Sunrise (feat. LEO & Viola)/192_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 528, - "time": 0.08089164655865794, + "time": 0.08089164655865792, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 624, - "time": 0.09559921866023209, + "time": 0.0955992186602321, "position": { "x": 6, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 672, - "time": 0.10295300471101917, + "noteOrder": 673, + "time": 0.10295300471101919, "position": { "x": 6, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.10662989773641272, "position": { "x": 6, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.11030679076180627, "position": { "x": 4, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 745, "time": 0.11398368378719981, "position": { "x": 3, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 769, "time": 0.11766057681259336, "position": { "x": 6, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 793, "time": 0.1213374698379869, "position": { "x": 6, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.12501436286338044, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.12869125588877398, "position": { "x": 3, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 864, - "time": 0.13236814891416754, + "noteOrder": 865, + "time": 0.1323681489141675, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 913, "time": 0.1397219349649546, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 961, "time": 0.14707572101574168, "position": { "x": 3, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1009, "time": 0.15442950706652878, "position": { "x": 3, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1056, - "time": 0.16178329311731587, + "noteOrder": 1057, + "time": 0.16178329311731585, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1080, - "time": 0.16546018614270938, + "noteOrder": 1081, + "time": 0.1654601861427094, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1105, "time": 0.16913707916810294, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1129, "time": 0.17281397219349648, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1153, "time": 0.17649086521889004, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1177, "time": 0.18016775824428358, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1200, - "time": 0.18384465126967714, + "noteOrder": 1201, + "time": 0.1838446512696771, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1225, "time": 0.18752154429507065, "position": { "x": 4, @@ -654,7 +654,7 @@ }, { "noteOrder": 1777, - "time": 0.27209008387912215, + "time": 0.2720900838791221, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.3162128001838447, + "noteOrder": 2066, + "time": 0.3162128001838446, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.32356658623463175, + "noteOrder": 2114, + "time": 0.3235665862346317, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.33092037228541876, + "noteOrder": 2162, + "time": 0.3309203722854188, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.34562794438699296, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.3529817304377801, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.36033551648856715, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.3676893025393543, + "noteOrder": 2402, + "time": 0.3676893025393542, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3750430885901413, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.38239687464092836, + "noteOrder": 2498, + "time": 0.3823968746409284, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2546, "time": 0.3897506606917155, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2593, + "noteOrder": 2594, "time": 0.39710444674250256, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.4044582327932897, + "noteOrder": 2642, + "time": 0.40445823279328963, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2689, - "time": 0.4118120188440767, + "noteOrder": 2690, + "time": 0.41181201884407675, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2714, "time": 0.4154889118694703, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.4191658048948638, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2762, "time": 0.42284269792025736, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2833, + "noteOrder": 2834, "time": 0.433873376996438, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2929, + "noteOrder": 2930, "time": 0.44858094909801216, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3218, "time": 0.4927036654027347, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3313, + "noteOrder": 3315, "time": 0.5074112375043088, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3361, + "noteOrder": 3363, "time": 0.5147650235550959, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3385, + "noteOrder": 3387, "time": 0.5184419165804894, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3409, + "noteOrder": 3411, "time": 0.522118809605883, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.5257957026312766, + "noteOrder": 3435, + "time": 0.5257957026312765, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3745, + "noteOrder": 3747, "time": 0.5735953119613926, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3793, - "time": 0.5809490980121798, + "noteOrder": 3795, + "time": 0.5809490980121796, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3841, + "noteOrder": 3843, "time": 0.5883028840629667, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.5956566701137539, + "noteOrder": 3891, + "time": 0.5956566701137538, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4130, - "time": 0.6324256003676894, + "noteOrder": 4131, + "time": 0.6324256003676892, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4178, + "noteOrder": 4179, "time": 0.6397793864184763, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4226, - "time": 0.6471331724692635, + "noteOrder": 4227, + "time": 0.6471331724692634, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4274, + "noteOrder": 4275, "time": 0.6544869585200506, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4611, "time": 0.7059634608755602, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.7133172469263471, + "noteOrder": 4660, + "time": 0.7133172469263472, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4898, + "noteOrder": 4900, "time": 0.7500861771802826, "position": { "x": 7, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4922, - "time": 0.7537630702056762, + "noteOrder": 4924, + "time": 0.7537630702056761, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7574399632310698, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7611168562564633, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.7647937492818567, + "noteOrder": 4996, + "time": 0.7647937492818568, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.7647937492818567, + "noteOrder": 4996, + "time": 0.7647937492818568, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5090, + "noteOrder": 5092, "time": 0.779501321383431, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5114, + "noteOrder": 5116, "time": 0.7831782144088245, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5138, + "noteOrder": 5140, "time": 0.786855107434218, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5162, + "noteOrder": 5164, "time": 0.7905320004596116, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5186, + "noteOrder": 5188, "time": 0.7942088934850051, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5234, + "noteOrder": 5236, "time": 0.8015626795357922, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5282, - "time": 0.8089164655865794, + "noteOrder": 5284, + "time": 0.8089164655865793, "position": { "x": 5, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5306, + "noteOrder": 5308, "time": 0.8125933586119729, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5330, + "noteOrder": 5332, "time": 0.8162702516373664, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5354, - "time": 0.8199471446627599, + "noteOrder": 5356, + "time": 0.81994714466276, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5378, - "time": 0.8236240376881534, + "noteOrder": 5380, + "time": 0.8236240376881535, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5426, + "noteOrder": 5428, "time": 0.8309778237389406, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5618, - "time": 0.860392967942089, + "noteOrder": 5620, + "time": 0.8603929679420889, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5810, + "noteOrder": 5812, "time": 0.8898081121452373, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5858, + "noteOrder": 5860, "time": 0.8971618981960243, "position": { "x": 8, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5906, + "noteOrder": 5908, "time": 0.9045156842468114, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5954, + "noteOrder": 5957, "time": 0.9118694702975985, "position": { "x": 2, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6002, + "noteOrder": 6005, "time": 0.9192232563483856, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6050, - "time": 0.9265770423991726, + "noteOrder": 6053, + "time": 0.9265770423991727, "position": { "x": 5, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6074, - "time": 0.9302539354245661, + "noteOrder": 6077, + "time": 0.9302539354245662, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6098, + "noteOrder": 6101, "time": 0.9339308284499598, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6122, + "noteOrder": 6125, "time": 0.9376077214753533, "position": { "x": 7, @@ -1916,7 +1916,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.01470757210157417, @@ -1939,7 +1939,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.01838446512696771, @@ -1962,7 +1962,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 180, "time": 0.027576697690451568, @@ -1985,10 +1985,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 216, - "time": 0.033092037228541885, + "time": 0.03309203722854188, "position": { "x": 3, "y": 0 @@ -2008,7 +2008,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04412271630472251, @@ -2031,10 +2031,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, - "time": 0.047799609330116045, + "time": 0.04779960933011605, "position": { "x": 6, "y": 0 @@ -2054,7 +2054,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 372, "time": 0.056991841893599904, @@ -2077,7 +2077,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 408, "time": 0.06250718143169022, @@ -2100,10 +2100,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1248, - "time": 0.19119843732046418, + "noteOrder": 1249, + "time": 0.1911984373204642, "position": { "x": 3, "y": 0 @@ -2123,7 +2123,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1297, "time": 0.19855222337125128, @@ -2146,10 +2146,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, - "time": 0.20590600942203835, + "time": 0.20590600942203838, "position": { "x": 7, "y": 0 @@ -2169,7 +2169,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1393, "time": 0.21325979547282545, @@ -2192,7 +2192,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1633, "time": 0.2500287257267609, @@ -2215,7 +2215,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1681, "time": 0.25738251177754795, @@ -2238,10 +2238,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1729, - "time": 0.2647362978283351, + "time": 0.264736297828335, "position": { "x": 7, "y": 0 @@ -2261,10 +2261,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1777, - "time": 0.27209008387912215, + "time": 0.2720900838791221, "position": { "x": 5, "y": 0 @@ -2284,7 +2284,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1825, "time": 0.2794438699299092, @@ -2307,7 +2307,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1873, "time": 0.2867976559806963, @@ -2330,7 +2330,7 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1873, "time": 0.2867976559806963, @@ -2353,7 +2353,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1921, "time": 0.29415144203148336, @@ -2376,7 +2376,7 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1921, "time": 0.29415144203148336, @@ -2399,7 +2399,7 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1969, "time": 0.3015052280822705, @@ -2422,7 +2422,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1969, "time": 0.3015052280822705, @@ -2445,9 +2445,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.30885901413305755, "position": { "x": 7, @@ -2468,9 +2468,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, + "noteOrder": 2018, "time": 0.30885901413305755, "position": { "x": 4, @@ -2491,9 +2491,9 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3382741583362059, "position": { "x": 4, @@ -2514,9 +2514,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3382741583362059, "position": { "x": 6, @@ -2537,10 +2537,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.3676893025393543, + "noteOrder": 2402, + "time": 0.3676893025393542, "position": { "x": 6, "y": 0 @@ -2560,9 +2560,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, + "noteOrder": 2786, "time": 0.4265195909456509, "position": { "x": 3, @@ -2583,9 +2583,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2833, + "noteOrder": 2834, "time": 0.433873376996438, "position": { "x": 5, @@ -2606,9 +2606,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2881, + "noteOrder": 2882, "time": 0.4412271630472251, "position": { "x": 7, @@ -2629,9 +2629,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2929, + "noteOrder": 2930, "time": 0.44858094909801216, "position": { "x": 5, @@ -2652,9 +2652,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2977, + "noteOrder": 2978, "time": 0.45593473514879923, "position": { "x": 3, @@ -2674,13 +2674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3025, - "time": 0.4632885211995863, + "noteOrder": 3002, + "time": 0.4596116281741928, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2692,18 +2692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3073, - "time": 0.4706423072503734, + "noteOrder": 3002, + "time": 0.4596116281741928, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2720,11 +2720,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3121, - "time": 0.4779960933011605, + "noteOrder": 3026, + "time": 0.46328852119958636, "position": { "x": 7, "y": 0 @@ -2743,13 +2743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3169, - "time": 0.4853498793519476, + "noteOrder": 3050, + "time": 0.4669654142249799, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2761,18 +2761,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3217, - "time": 0.4927036654027347, + "noteOrder": 3050, + "time": 0.4669654142249799, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2784,18 +2784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3265, - "time": 0.5000574514535218, + "noteOrder": 3074, + "time": 0.4706423072503734, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2807,18 +2807,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3313, - "time": 0.5074112375043088, + "noteOrder": 3098, + "time": 0.47431920027576696, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2830,18 +2830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3553, - "time": 0.5441801677582443, + "noteOrder": 3098, + "time": 0.47431920027576696, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2853,16 +2853,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3601, - "time": 0.5515339538090314, + "noteOrder": 3122, + "time": 0.4779960933011605, "position": { "x": 7, "y": 0 @@ -2876,16 +2876,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3649, - "time": 0.5588877398598184, + "noteOrder": 3146, + "time": 0.48167298632655403, "position": { "x": 7, "y": 0 @@ -2904,13 +2904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3697, - "time": 0.5662415259106055, + "noteOrder": 3146, + "time": 0.48167298632655403, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2922,16 +2922,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.603010456164541, + "noteOrder": 3170, + "time": 0.4853498793519476, "position": { "x": 3, "y": 0 @@ -2950,13 +2950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3986, - "time": 0.6103642422153279, + "noteOrder": 3218, + "time": 0.4927036654027347, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2968,18 +2968,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.6177180282661151, + "noteOrder": 3266, + "time": 0.5000574514535218, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2991,18 +2991,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4082, - "time": 0.6250718143169022, + "noteOrder": 3315, + "time": 0.5074112375043088, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3019,13 +3019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4322, - "time": 0.6618407445708375, + "noteOrder": 3555, + "time": 0.5441801677582442, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3037,18 +3037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4346, - "time": 0.6655176375962312, + "noteOrder": 3579, + "time": 0.5478570607836377, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3060,18 +3060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4370, - "time": 0.6691945306216247, + "noteOrder": 3579, + "time": 0.5478570607836377, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3088,13 +3088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 4394, - "time": 0.6728714236470182, + "noteOrder": 3603, + "time": 0.5515339538090314, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3106,18 +3106,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.6765483166724118, + "noteOrder": 3627, + "time": 0.5552108468344249, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3134,13 +3134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4442, - "time": 0.6802252096978053, + "noteOrder": 3627, + "time": 0.5552108468344249, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3157,13 +3157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.683902102723199, + "noteOrder": 3651, + "time": 0.5588877398598184, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3180,13 +3180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4490, - "time": 0.6875789957485924, + "noteOrder": 3675, + "time": 0.562564632885212, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3203,11 +3203,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4514, - "time": 0.6912558887739859, + "noteOrder": 3675, + "time": 0.562564632885212, "position": { "x": 6, "y": 0 @@ -3221,18 +3221,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 4538, - "time": 0.6949327817993795, + "noteOrder": 3699, + "time": 0.5662415259106055, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3249,13 +3249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4562, - "time": 0.698609674824773, + "noteOrder": 3723, + "time": 0.569918418935999, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3267,18 +3267,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4586, - "time": 0.7022865678501666, + "noteOrder": 3723, + "time": 0.569918418935999, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3290,18 +3290,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, - "time": 0.7206710329771343, + "noteOrder": 3939, + "time": 0.603010456164541, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3318,13 +3318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4730, - "time": 0.7243479260025278, + "noteOrder": 3963, + "time": 0.6066873491899345, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3341,13 +3341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4754, - "time": 0.7280248190279214, + "noteOrder": 3963, + "time": 0.6066873491899345, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3359,18 +3359,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 4778, - "time": 0.7317017120533149, + "noteOrder": 3987, + "time": 0.610364242215328, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3387,11 +3387,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4802, - "time": 0.7353786050787086, + "noteOrder": 4011, + "time": 0.6140411352407216, "position": { "x": 3, "y": 0 @@ -3405,16 +3405,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4826, - "time": 0.739055498104102, + "noteOrder": 4011, + "time": 0.6140411352407216, "position": { "x": 4, "y": 0 @@ -3428,18 +3428,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4850, - "time": 0.7427323911294955, + "noteOrder": 4035, + "time": 0.6177180282661151, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3451,18 +3451,570 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4874, - "time": 0.746409284154889, + "noteOrder": 4059, + "time": 0.6213949212915086, "position": { - "x": 6, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4059, + "time": 0.6213949212915086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4083, + "time": 0.6250718143169022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4107, + "time": 0.6287487073422957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4107, + "time": 0.6287487073422957, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4323, + "time": 0.6618407445708376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4347, + "time": 0.6655176375962312, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4371, + "time": 0.6691945306216247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4395, + "time": 0.6728714236470182, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4419, + "time": 0.6765483166724118, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4443, + "time": 0.6802252096978053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4467, + "time": 0.6839021027231988, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4491, + "time": 0.6875789957485924, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4515, + "time": 0.6912558887739859, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4539, + "time": 0.6949327817993795, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4563, + "time": 0.698609674824773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4587, + "time": 0.7022865678501665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4708, + "time": 0.7206710329771343, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4732, + "time": 0.7243479260025278, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4756, + "time": 0.7280248190279214, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4780, + "time": 0.7317017120533149, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4804, + "time": 0.7353786050787084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4828, + "time": 0.739055498104102, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4852, + "time": 0.7427323911294955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4876, + "time": 0.746409284154889, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3480,9 +4032,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5474, + "noteOrder": 5476, "time": 0.8383316097897276, "position": { "x": 7, @@ -3501,11 +4053,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5500, + "time": 0.8420085028151212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5500, + "time": 0.8420085028151212, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5522, + "noteOrder": 5524, "time": 0.8456853958405147, "position": { "x": 7, @@ -3524,11 +4122,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5548, + "time": 0.8493622888659083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5548, + "time": 0.8493622888659083, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5570, + "noteOrder": 5572, "time": 0.8530391818913018, "position": { "x": 7, @@ -3549,10 +4193,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5618, - "time": 0.860392967942089, + "noteOrder": 5620, + "time": 0.8603929679420889, "position": { "x": 5, "y": 0 @@ -3572,9 +4216,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5666, + "noteOrder": 5668, "time": 0.867746753992876, "position": { "x": 3, @@ -3593,12 +4237,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5692, + "time": 0.8714236470182696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5692, + "time": 0.8714236470182696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5716, + "time": 0.8751005400436631, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5714, - "time": 0.875100540043663, + "noteOrder": 5740, + "time": 0.8787774330690566, "position": { "x": 3, "y": 0 @@ -3616,11 +4329,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5740, + "time": 0.8787774330690566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5762, + "noteOrder": 5764, "time": 0.8824543260944502, "position": { "x": 3, @@ -3641,9 +4377,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5810, + "noteOrder": 5812, "time": 0.8898081121452373, "position": { "x": 5, @@ -3664,9 +4400,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6146, + "noteOrder": 6149, "time": 0.9412846145007469, "position": { "x": 4, @@ -3687,9 +4423,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6194, + "noteOrder": 6197, "time": 0.9486384005515339, "position": { "x": 3, @@ -3710,9 +4446,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.955992186602321, "position": { "x": 3, @@ -3733,9 +4469,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6341, "time": 0.9706997587038952, "position": { "x": 3, @@ -3756,9 +4492,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6245, "time": 0.955992186602321, "position": { "x": 7, @@ -3779,9 +4515,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6341, "time": 0.9706997587038952, "position": { "x": 7, diff --git a/tracks/Sunrise (feat. LEO & Viola)/info.json b/tracks/Sunrise (feat. LEO & Viola)/info.json index f5118842..5cb70746 100644 --- a/tracks/Sunrise (feat. LEO & Viola)/info.json +++ b/tracks/Sunrise (feat. LEO & Viola)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Sunrise (feat. LEO & Viola)", - "SongLength": "137.534694", + "SongLength": "127.582041", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Sunshine let me find a way/344_difficulty_1a.json b/tracks/Sunshine let me find a way/344_difficulty_1a.json index 4014f548..fb374c30 100644 --- a/tracks/Sunshine let me find a way/344_difficulty_1a.json +++ b/tracks/Sunshine let me find a way/344_difficulty_1a.json @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 169, "time": 0.025928926959138787, "position": { "x": 3, @@ -154,7 +154,7 @@ }, { "noteOrder": 265, - "time": 0.040745456650075236, + "time": 0.04074545665007524, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 361, - "time": 0.055561986341011685, + "time": 0.05556198634101169, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 397, - "time": 0.06111818497511285, + "time": 0.06111818497511286, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 445, - "time": 0.06852644982058108, + "time": 0.06852644982058109, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 445, - "time": 0.06852644982058108, + "time": 0.06852644982058109, "position": { "x": 3, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 505, + "noteOrder": 506, "time": 0.07778678087741636, "position": { "x": 4, @@ -454,7 +454,7 @@ }, { "noteOrder": 650, - "time": 0.10001157541382104, + "time": 0.10001157541382105, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 650, - "time": 0.10001157541382104, + "time": 0.10001157541382105, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 746, - "time": 0.11482810510475748, + "time": 0.1148281051047575, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.1259405023729598, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.1259405023729598, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 842, + "noteOrder": 843, "time": 0.12964463479569394, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 842, + "noteOrder": 843, "time": 0.12964463479569394, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 867, "time": 0.13334876721842806, "position": { "x": 7, @@ -634,7 +634,7 @@ }, { "noteOrder": 891, - "time": 0.13705289964116216, + "time": 0.13705289964116218, "position": { "x": 5, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 915, - "time": 0.14075703206389628, + "time": 0.14075703206389625, "position": { "x": 3, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 987, - "time": 0.15186942933209863, + "time": 0.1518694293320986, "position": { "x": 5, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1023, - "time": 0.15742562796619977, + "time": 0.1574256279661998, "position": { "x": 5, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1059, - "time": 0.16298182660030094, + "time": 0.16298182660030097, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1083, + "noteOrder": 1084, "time": 0.16668595902303507, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1107, + "noteOrder": 1108, "time": 0.17039009144576917, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1131, + "noteOrder": 1132, "time": 0.1740942238685033, "position": { "x": 3, @@ -894,7 +894,7 @@ }, { "noteOrder": 1276, - "time": 0.19631901840490795, + "time": 0.19631901840490798, "position": { "x": 5, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 1372, - "time": 0.2111355480958444, + "time": 0.21113554809584442, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1420, - "time": 0.21854381294131262, + "noteOrder": 1421, + "time": 0.21854381294131264, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1444, - "time": 0.22224794536404674, + "noteOrder": 1445, + "time": 0.22224794536404677, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1468, - "time": 0.22595207778678084, + "noteOrder": 1469, + "time": 0.22595207778678086, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1492, - "time": 0.22965621020951496, + "noteOrder": 1493, + "time": 0.229656210209515, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1516, + "noteOrder": 1517, "time": 0.23336034263224908, "position": { "x": 4, @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1589, - "time": 0.2444727399004514, + "time": 0.24447273990045143, "position": { "x": 4, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1589, - "time": 0.2444727399004514, + "time": 0.24447273990045143, "position": { "x": 6, "y": 0 @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1613, - "time": 0.24817687232318553, + "time": 0.24817687232318555, "position": { "x": 3, "y": 0 @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1613, - "time": 0.24817687232318553, + "time": 0.24817687232318555, "position": { "x": 7, "y": 0 @@ -1154,7 +1154,7 @@ }, { "noteOrder": 1661, - "time": 0.2555851371686537, + "time": 0.2555851371686538, "position": { "x": 5, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1686, "time": 0.25928926959138787, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1709, - "time": 0.26299340201412197, + "noteOrder": 1710, + "time": 0.262993402014122, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1709, - "time": 0.26299340201412197, + "noteOrder": 1710, + "time": 0.262993402014122, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1733, + "noteOrder": 1734, "time": 0.2666975344368561, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1758, "time": 0.2704016668595902, "position": { "x": 5, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1781, - "time": 0.2741057992823243, + "noteOrder": 1782, + "time": 0.27410579928232437, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1805, - "time": 0.27780993170505847, + "noteOrder": 1806, + "time": 0.2778099317050584, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1805, - "time": 0.27780993170505847, + "noteOrder": 1806, + "time": 0.2778099317050584, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1829, - "time": 0.28151406412779256, + "noteOrder": 1830, + "time": 0.2815140641277925, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1853, + "noteOrder": 1854, "time": 0.28521819655052666, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.28892232897326076, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.2926264613959949, + "noteOrder": 1902, + "time": 0.29262646139599485, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.31114712350966545, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.31114712350966545, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2046, - "time": 0.31485125593239954, + "noteOrder": 2047, + "time": 0.3148512559323996, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2046, - "time": 0.31485125593239954, + "noteOrder": 2047, + "time": 0.3148512559323996, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.3185553883551337, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.3185553883551337, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2095, "time": 0.3222595207778678, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2095, "time": 0.3222595207778678, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2118, - "time": 0.3259636532006019, + "noteOrder": 2119, + "time": 0.32596365320060194, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2142, - "time": 0.329667785623336, + "noteOrder": 2143, + "time": 0.32966778562333604, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2167, "time": 0.33337191804607014, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2190, - "time": 0.33707605046880423, + "noteOrder": 2191, + "time": 0.3370760504688043, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2238, - "time": 0.3444843153142725, + "noteOrder": 2239, + "time": 0.3444843153142724, "position": { "x": 8, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2407, - "time": 0.3704132422734112, + "noteOrder": 2408, + "time": 0.37041324227341127, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2431, + "noteOrder": 2432, "time": 0.37411737469614537, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2456, "time": 0.37782150711887946, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2479, - "time": 0.38152563954161356, + "noteOrder": 2480, + "time": 0.3815256395416136, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2624, + "noteOrder": 2625, "time": 0.40375043407801825, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2648, + "noteOrder": 2649, "time": 0.40745456650075235, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2672, - "time": 0.41115869892348644, + "noteOrder": 2673, + "time": 0.4111586989234865, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2720, + "noteOrder": 2721, "time": 0.4185669637689547, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2744, - "time": 0.4222710961916888, + "noteOrder": 2745, + "time": 0.42227109619168884, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.42597522861442294, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.42967936103715704, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2816, - "time": 0.43338349345989113, + "noteOrder": 2817, + "time": 0.4333834934598912, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2840, - "time": 0.43708762588262523, + "noteOrder": 2841, + "time": 0.4370876258826253, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2840, - "time": 0.43708762588262523, + "noteOrder": 2841, + "time": 0.4370876258826253, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.4407917583053594, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.4407917583053594, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2888, - "time": 0.4444958907280935, + "noteOrder": 2889, + "time": 0.44449589072809353, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2912, - "time": 0.4482000231508276, + "noteOrder": 2914, + "time": 0.44820002315082763, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2936, - "time": 0.45190415557356167, + "noteOrder": 2938, + "time": 0.4519041555735617, "position": { "x": 4, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2961, - "time": 0.4556082879962958, + "noteOrder": 2962, + "time": 0.4556082879962959, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3009, + "noteOrder": 3010, "time": 0.463016552841764, "position": { "x": 2, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3057, + "noteOrder": 3058, "time": 0.47042481768723227, "position": { "x": 8, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.4889454798009028, + "noteOrder": 3178, + "time": 0.48894547980090286, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3201, - "time": 0.4926496122236369, + "noteOrder": 3202, + "time": 0.49264961222363696, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3225, - "time": 0.49635374464637105, + "noteOrder": 3227, + "time": 0.4963537446463711, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3249, + "noteOrder": 3251, "time": 0.5000578770691052, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3394, - "time": 0.5222826716055099, + "noteOrder": 3395, + "time": 0.5222826716055098, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3418, - "time": 0.5259868040282439, + "noteOrder": 3419, + "time": 0.525986804028244, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3442, + "noteOrder": 3443, "time": 0.5296909364509781, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3490, + "noteOrder": 3491, "time": 0.5370992012964463, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3515, "time": 0.5408033337191804, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3538, + "noteOrder": 3540, "time": 0.5445074661419146, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3562, - "time": 0.5482115985646486, + "noteOrder": 3564, + "time": 0.5482115985646487, "position": { "x": 7, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3586, + "noteOrder": 3588, "time": 0.5519157309873828, "position": { "x": 3, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3610, - "time": 0.5556198634101169, + "noteOrder": 3612, + "time": 0.5556198634101168, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3610, - "time": 0.5556198634101169, + "noteOrder": 3612, + "time": 0.5556198634101168, "position": { "x": 4, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 3636, "time": 0.559323995832851, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 3636, "time": 0.559323995832851, "position": { "x": 3, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3780, "time": 0.5815487903692557, "position": { "x": 6, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3827, - "time": 0.5889570552147239, + "noteOrder": 3829, + "time": 0.588957055214724, "position": { "x": 4, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3877, "time": 0.5963653200601922, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3901, "time": 0.6000694524829262, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3923, + "noteOrder": 3925, "time": 0.6037735849056604, "position": { "x": 3, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3971, - "time": 0.6111818497511285, + "noteOrder": 3973, + "time": 0.6111818497511287, "position": { "x": 4, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4020, + "noteOrder": 4021, "time": 0.6185901145965967, "position": { "x": 6, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4068, - "time": 0.625998379442065, + "noteOrder": 4069, + "time": 0.6259983794420649, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4092, - "time": 0.6297025118647991, + "noteOrder": 4093, + "time": 0.6297025118647992, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4116, + "noteOrder": 4117, "time": 0.6334066442875332, "position": { "x": 6, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4116, + "noteOrder": 4117, "time": 0.6334066442875332, "position": { "x": 4, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4429, + "noteOrder": 4430, "time": 0.6815603657830767, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4429, + "noteOrder": 4430, "time": 0.6815603657830767, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4453, + "noteOrder": 4455, "time": 0.6852644982058108, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4453, + "noteOrder": 4455, "time": 0.6852644982058108, "position": { "x": 6, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4477, - "time": 0.688968630628545, + "noteOrder": 4479, + "time": 0.6889686306285449, "position": { "x": 3, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4477, - "time": 0.688968630628545, + "noteOrder": 4479, + "time": 0.6889686306285449, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4501, + "noteOrder": 4503, "time": 0.692672763051279, "position": { "x": 4, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4501, + "noteOrder": 4503, "time": 0.692672763051279, "position": { "x": 6, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4575, "time": 0.7037851603194814, "position": { "x": 4, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4623, "time": 0.7111934251649495, "position": { "x": 7, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4645, - "time": 0.7148975575876837, + "noteOrder": 4647, + "time": 0.7148975575876838, "position": { "x": 3, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.7334182197013542, "position": { "x": 6, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4814, - "time": 0.7408264845468224, + "noteOrder": 4816, + "time": 0.7408264845468225, "position": { "x": 3, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4838, + "noteOrder": 4840, "time": 0.7445306169695566, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4912, "time": 0.7556430142377589, "position": { "x": 3, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4936, "time": 0.7593471466604931, "position": { "x": 4, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4958, - "time": 0.7630512790832271, + "noteOrder": 4960, + "time": 0.7630512790832272, "position": { "x": 7, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4984, "time": 0.7667554115059613, "position": { "x": 6, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.7704595439286954, "position": { "x": 3, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5032, "time": 0.7741636763514295, "position": { "x": 5, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5055, + "noteOrder": 5057, "time": 0.7778678087741636, "position": { "x": 7, @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5079, - "time": 0.7815719411968977, + "noteOrder": 5081, + "time": 0.7815719411968978, "position": { "x": 6, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5079, - "time": 0.7815719411968977, + "noteOrder": 5081, + "time": 0.7815719411968978, "position": { "x": 4, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5103, - "time": 0.7852760736196318, + "noteOrder": 5105, + "time": 0.7852760736196319, "position": { "x": 7, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5127, + "noteOrder": 5129, "time": 0.788980206042366, "position": { "x": 5, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5151, - "time": 0.7926843384651, + "noteOrder": 5153, + "time": 0.7926843384651001, "position": { "x": 3, "y": 0 @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5175, + "noteOrder": 5177, "time": 0.7963884708878342, "position": { "x": 4, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5175, + "noteOrder": 5177, "time": 0.7963884708878342, "position": { "x": 6, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5199, - "time": 0.8000926033105683, + "noteOrder": 5201, + "time": 0.8000926033105684, "position": { "x": 7, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5223, - "time": 0.8037967357333023, + "noteOrder": 5225, + "time": 0.8037967357333025, "position": { "x": 3, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5249, "time": 0.8075008681560365, "position": { "x": 4, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5249, "time": 0.8075008681560365, "position": { "x": 6, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.8112050005787707, "position": { "x": 3, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.8112050005787707, "position": { "x": 7, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.8149091330015047, "position": { "x": 6, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5319, + "noteOrder": 5321, "time": 0.8186132654242388, "position": { "x": 4, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5343, - "time": 0.8223173978469729, + "noteOrder": 5345, + "time": 0.822317397846973, "position": { "x": 6, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5367, - "time": 0.826021530269707, + "noteOrder": 5370, + "time": 0.8260215302697071, "position": { "x": 4, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5416, - "time": 0.8334297951151752, + "noteOrder": 5418, + "time": 0.8334297951151753, "position": { "x": 8, "y": 0 @@ -3453,7 +3453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.8408380599606435, "position": { "x": 2, @@ -3473,7 +3473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5584, + "noteOrder": 5586, "time": 0.8593587220743141, "position": { "x": 7, @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5608, + "noteOrder": 5610, "time": 0.8630628544970481, "position": { "x": 6, @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5632, - "time": 0.8667669869197823, + "noteOrder": 5634, + "time": 0.8667669869197824, "position": { "x": 4, "y": 0 @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5656, + "noteOrder": 5658, "time": 0.8704711193425164, "position": { "x": 3, @@ -3553,8 +3553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5777, - "time": 0.888991781456187, + "noteOrder": 5779, + "time": 0.8889917814561871, "position": { "x": 3, "y": 0 @@ -3573,7 +3573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5801, + "noteOrder": 5803, "time": 0.8926959138789211, "position": { "x": 4, @@ -3593,8 +3593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5825, - "time": 0.8964000463016552, + "noteOrder": 5827, + "time": 0.8964000463016553, "position": { "x": 7, "y": 0 @@ -3613,7 +3613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5849, + "noteOrder": 5851, "time": 0.9001041787243893, "position": { "x": 6, @@ -3633,8 +3633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5873, - "time": 0.9038083111471233, + "noteOrder": 5875, + "time": 0.9038083111471235, "position": { "x": 4, "y": 0 @@ -3653,8 +3653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5897, - "time": 0.9075124435698575, + "noteOrder": 5899, + "time": 0.9075124435698576, "position": { "x": 6, "y": 0 @@ -3673,8 +3673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5921, - "time": 0.9112165759925916, + "noteOrder": 5923, + "time": 0.9112165759925918, "position": { "x": 4, "y": 0 @@ -3693,8 +3693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5945, - "time": 0.9149207084153257, + "noteOrder": 5947, + "time": 0.9149207084153258, "position": { "x": 6, "y": 0 @@ -3713,7 +3713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5993, + "noteOrder": 5996, "time": 0.922328973260794, "position": { "x": 4, @@ -3733,8 +3733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6041, - "time": 0.9297372381062622, + "noteOrder": 6044, + "time": 0.9297372381062623, "position": { "x": 6, "y": 0 @@ -3753,7 +3753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6114, + "noteOrder": 6116, "time": 0.9408496353744645, "position": { "x": 6, @@ -3773,7 +3773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6114, + "noteOrder": 6116, "time": 0.9408496353744645, "position": { "x": 4, @@ -3793,8 +3793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6138, - "time": 0.9445537677971986, + "noteOrder": 6140, + "time": 0.9445537677971987, "position": { "x": 3, "y": 0 @@ -3813,8 +3813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6138, - "time": 0.9445537677971986, + "noteOrder": 6140, + "time": 0.9445537677971987, "position": { "x": 7, "y": 0 @@ -3833,7 +3833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6162, + "noteOrder": 6164, "time": 0.9482579002199327, "position": { "x": 7, @@ -3853,8 +3853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6186, - "time": 0.9519620326426669, + "noteOrder": 6188, + "time": 0.951962032642667, "position": { "x": 3, "y": 0 @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6210, - "time": 0.9556661650654009, + "noteOrder": 6212, + "time": 0.955666165065401, "position": { "x": 6, "y": 0 @@ -3893,7 +3893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6222, + "noteOrder": 6224, "time": 0.957518231276768, "position": { "x": 4, @@ -3913,7 +3913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6270, + "noteOrder": 6272, "time": 0.9649264961222362, "position": { "x": 3, @@ -3933,7 +3933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6270, + "noteOrder": 6272, "time": 0.9649264961222362, "position": { "x": 7, @@ -3956,9 +3956,9 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, + "noteOrder": 482, "time": 0.07408264845468225, "position": { "x": 3, @@ -3979,9 +3979,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 505, + "noteOrder": 506, "time": 0.07778678087741636, "position": { "x": 3, @@ -4002,10 +4002,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 530, - "time": 0.08149091330015047, + "time": 0.08149091330015049, "position": { "x": 7, "y": 0 @@ -4025,7 +4025,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 554, "time": 0.08519504572288458, @@ -4048,7 +4048,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.08889917814561869, @@ -4071,10 +4071,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 602, - "time": 0.0926033105683528, + "time": 0.09260331056835282, "position": { "x": 7, "y": 0 @@ -4094,7 +4094,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.08889917814561869, @@ -4117,10 +4117,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 602, - "time": 0.0926033105683528, + "time": 0.09260331056835282, "position": { "x": 3, "y": 0 @@ -4140,7 +4140,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 674, "time": 0.10371570783655515, @@ -4163,7 +4163,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 698, "time": 0.10741984025928926, @@ -4186,10 +4186,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 722, - "time": 0.11112397268202337, + "time": 0.11112397268202338, "position": { "x": 3, "y": 0 @@ -4209,10 +4209,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 746, - "time": 0.11482810510475748, + "time": 0.1148281051047575, "position": { "x": 3, "y": 0 @@ -4232,9 +4232,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 770, + "noteOrder": 771, "time": 0.11853223752749159, "position": { "x": 3, @@ -4255,10 +4255,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 794, - "time": 0.1222363699502257, + "noteOrder": 795, + "time": 0.12223636995022572, "position": { "x": 3, "y": 0 @@ -4278,9 +4278,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 770, + "noteOrder": 771, "time": 0.11853223752749159, "position": { "x": 7, @@ -4301,10 +4301,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 794, - "time": 0.1222363699502257, + "noteOrder": 795, + "time": 0.12223636995022572, "position": { "x": 7, "y": 0 @@ -4324,9 +4324,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1155, + "noteOrder": 1156, "time": 0.17779835629123739, "position": { "x": 3, @@ -4347,9 +4347,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1179, + "noteOrder": 1180, "time": 0.1815024887139715, "position": { "x": 3, @@ -4370,9 +4370,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1155, + "noteOrder": 1156, "time": 0.17779835629123739, "position": { "x": 7, @@ -4393,9 +4393,9 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1179, + "noteOrder": 1180, "time": 0.1815024887139715, "position": { "x": 7, @@ -4416,10 +4416,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1203, - "time": 0.1852066211367056, + "noteOrder": 1204, + "time": 0.18520662113670563, "position": { "x": 6, "y": 0 @@ -4439,7 +4439,7 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1228, "time": 0.18891075355943973, @@ -4462,10 +4462,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1203, - "time": 0.1852066211367056, + "noteOrder": 1204, + "time": 0.18520662113670563, "position": { "x": 4, "y": 0 @@ -4485,7 +4485,7 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1228, "time": 0.18891075355943973, @@ -4508,7 +4508,7 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1252, "time": 0.19261488598217386, @@ -4531,10 +4531,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1276, - "time": 0.19631901840490795, + "time": 0.19631901840490798, "position": { "x": 6, "y": 0 @@ -4554,10 +4554,10 @@ }, { "lineGroupId": 57, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1300, - "time": 0.20002315082764208, + "time": 0.2000231508276421, "position": { "x": 8, "y": 0 @@ -4577,7 +4577,7 @@ }, { "lineGroupId": 57, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1324, "time": 0.20372728325037617, @@ -4600,7 +4600,7 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1348, "time": 0.2074314156731103, @@ -4623,10 +4623,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1372, - "time": 0.2111355480958444, + "time": 0.21113554809584442, "position": { "x": 4, "y": 0 @@ -4646,9 +4646,9 @@ }, { "lineGroupId": 60, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1396, + "noteOrder": 1397, "time": 0.21483968051857852, "position": { "x": 2, @@ -4669,10 +4669,10 @@ }, { "lineGroupId": 60, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1420, - "time": 0.21854381294131262, + "noteOrder": 1421, + "time": 0.21854381294131264, "position": { "x": 2, "y": 0 @@ -4692,9 +4692,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.23706447505498318, "position": { "x": 7, @@ -4715,7 +4715,7 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1565, "time": 0.2407686074777173, @@ -4738,9 +4738,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.23706447505498318, "position": { "x": 3, @@ -4761,7 +4761,7 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1565, "time": 0.2407686074777173, @@ -4784,7 +4784,7 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1926, "time": 0.296330593818729, @@ -4807,7 +4807,7 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1950, "time": 0.3000347262414631, @@ -4830,7 +4830,7 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1926, "time": 0.296330593818729, @@ -4853,7 +4853,7 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1950, "time": 0.3000347262414631, @@ -4876,10 +4876,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, - "time": 0.30373885866419725, + "time": 0.3037388586641972, "position": { "x": 6, "y": 0 @@ -4899,9 +4899,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30744299108693135, "position": { "x": 6, @@ -4922,10 +4922,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, - "time": 0.30373885866419725, + "time": 0.3037388586641972, "position": { "x": 4, "y": 0 @@ -4945,9 +4945,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30744299108693135, "position": { "x": 4, @@ -4968,9 +4968,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2214, + "noteOrder": 2215, "time": 0.34078018289153833, "position": { "x": 6, @@ -4991,10 +4991,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2238, - "time": 0.3444843153142725, + "noteOrder": 2239, + "time": 0.3444843153142724, "position": { "x": 6, "y": 0 @@ -5014,7 +5014,7 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2263, "time": 0.3481884477370066, @@ -5037,7 +5037,7 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2287, "time": 0.3518925801597407, @@ -5060,9 +5060,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2311, + "noteOrder": 2312, "time": 0.35559671258247477, "position": { "x": 7, @@ -5082,11 +5082,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2359, - "time": 0.363004977427943, + "noteOrder": 2336, + "time": 0.3593008450052089, "position": { "x": 7, "y": 0 @@ -5100,18 +5100,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2503, - "time": 0.3852297719643477, + "noteOrder": 2336, + "time": 0.3593008450052089, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5123,18 +5123,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2527, - "time": 0.3889339043870818, + "noteOrder": 2360, + "time": 0.363004977427943, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5146,18 +5146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2551, - "time": 0.3926380368098159, + "noteOrder": 2360, + "time": 0.363004977427943, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5174,13 +5174,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 2575, - "time": 0.39634216923255, + "noteOrder": 2360, + "time": 0.363004977427943, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5192,18 +5192,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2599, - "time": 0.40004630165528415, + "noteOrder": 2384, + "time": 0.3667091098506771, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5220,13 +5220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2696, - "time": 0.4148628313462206, + "noteOrder": 2384, + "time": 0.3667091098506771, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5243,13 +5243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2696, - "time": 0.4148628313462206, + "noteOrder": 2408, + "time": 0.37041324227341127, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5261,18 +5261,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 108, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2792, - "time": 0.42967936103715704, + "noteOrder": 2408, + "time": 0.37041324227341127, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5284,18 +5284,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2985, - "time": 0.4593124204190299, + "noteOrder": 2504, + "time": 0.3852297719643477, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5312,11 +5312,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3009, - "time": 0.463016552841764, + "noteOrder": 2528, + "time": 0.3889339043870818, "position": { "x": 4, "y": 0 @@ -5335,13 +5335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3033, - "time": 0.46672068526449817, + "noteOrder": 2552, + "time": 0.39263803680981596, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5358,11 +5358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3057, - "time": 0.47042481768723227, + "noteOrder": 2576, + "time": 0.39634216923255006, "position": { "x": 6, "y": 0 @@ -5381,11 +5381,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3081, - "time": 0.47412895010996636, + "noteOrder": 2600, + "time": 0.4000463016552842, "position": { "x": 3, "y": 0 @@ -5404,11 +5404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3129, - "time": 0.4815372149554346, + "noteOrder": 2697, + "time": 0.4148628313462206, "position": { "x": 3, "y": 0 @@ -5422,16 +5422,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3273, - "time": 0.5037620094918392, + "noteOrder": 2697, + "time": 0.4148628313462206, "position": { "x": 7, "y": 0 @@ -5450,13 +5450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3298, - "time": 0.5074661419145734, + "noteOrder": 2793, + "time": 0.42967936103715704, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5473,13 +5473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3322, - "time": 0.5111702743373074, + "noteOrder": 2986, + "time": 0.45931242041903, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5496,11 +5496,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3346, - "time": 0.5148744067600416, + "noteOrder": 3010, + "time": 0.463016552841764, "position": { "x": 4, "y": 0 @@ -5519,13 +5519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3370, - "time": 0.5185785391827757, + "noteOrder": 3034, + "time": 0.46672068526449817, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5542,13 +5542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3466, - "time": 0.5333950688737122, + "noteOrder": 3058, + "time": 0.47042481768723227, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5565,11 +5565,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3466, - "time": 0.5333950688737122, + "noteOrder": 3082, + "time": 0.47412895010996636, "position": { "x": 3, "y": 0 @@ -5588,11 +5588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3562, - "time": 0.5482115985646486, + "noteOrder": 3106, + "time": 0.4778330825327005, "position": { "x": 3, "y": 0 @@ -5611,13 +5611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3659, - "time": 0.5630281282555851, + "noteOrder": 3106, + "time": 0.4778330825327005, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5629,18 +5629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3683, - "time": 0.5667322606783193, + "noteOrder": 3130, + "time": 0.4815372149554346, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5652,18 +5652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3659, - "time": 0.5630281282555851, + "noteOrder": 3130, + "time": 0.4815372149554346, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5680,13 +5680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 3683, - "time": 0.5667322606783193, + "noteOrder": 3130, + "time": 0.4815372149554346, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5698,16 +5698,223 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 3707, - "time": 0.5704363931010533, + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3154, + "time": 0.48524134737816876, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3154, + "time": 0.48524134737816876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3178, + "time": 0.48894547980090286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3178, + "time": 0.48894547980090286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3275, + "time": 0.5037620094918392, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3299, + "time": 0.5074661419145734, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3323, + "time": 0.5111702743373076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3347, + "time": 0.5148744067600416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3371, + "time": 0.5185785391827757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3467, + "time": 0.5333950688737122, "position": { "x": 7, "y": 0 @@ -5725,11 +5932,172 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3467, + "time": 0.5333950688737122, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3564, + "time": 0.5482115985646487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3660, + "time": 0.563028128255585, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3684, + "time": 0.5667322606783193, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3660, + "time": 0.563028128255585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3684, + "time": 0.5667322606783193, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3731, + "noteOrder": 3708, + "time": 0.5704363931010533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3732, "time": 0.5741405255237875, "position": { "x": 7, @@ -5750,9 +6118,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3707, + "noteOrder": 3708, "time": 0.5704363931010533, "position": { "x": 3, @@ -5773,9 +6141,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3731, + "noteOrder": 3732, "time": 0.5741405255237875, "position": { "x": 3, @@ -5796,9 +6164,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3755, + "noteOrder": 3756, "time": 0.5778446579465215, "position": { "x": 7, @@ -5819,9 +6187,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3779, + "noteOrder": 3780, "time": 0.5815487903692557, "position": { "x": 7, @@ -5842,10 +6210,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3803, - "time": 0.5852529227919898, + "noteOrder": 3804, + "time": 0.5852529227919897, "position": { "x": 3, "y": 0 @@ -5865,10 +6233,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3827, - "time": 0.5889570552147239, + "noteOrder": 3829, + "time": 0.588957055214724, "position": { "x": 3, "y": 0 @@ -5888,9 +6256,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3851, + "noteOrder": 3853, "time": 0.592661187637458, "position": { "x": 7, @@ -5911,10 +6279,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3947, - "time": 0.6074777173283945, + "noteOrder": 3949, + "time": 0.6074777173283944, "position": { "x": 4, "y": 0 @@ -5934,10 +6302,10 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3947, - "time": 0.6074777173283945, + "noteOrder": 3949, + "time": 0.6074777173283944, "position": { "x": 3, "y": 0 @@ -5957,10 +6325,10 @@ }, { "lineGroupId": 171, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3971, - "time": 0.6111818497511285, + "noteOrder": 3973, + "time": 0.6111818497511287, "position": { "x": 3, "y": 0 @@ -5980,9 +6348,9 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3996, + "noteOrder": 3997, "time": 0.6148859821738627, "position": { "x": 7, @@ -6003,9 +6371,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4020, + "noteOrder": 4021, "time": 0.6185901145965967, "position": { "x": 7, @@ -6026,9 +6394,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4044, + "noteOrder": 4045, "time": 0.6222942470193309, "position": { "x": 3, @@ -6049,10 +6417,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4092, - "time": 0.6297025118647991, + "noteOrder": 4093, + "time": 0.6297025118647992, "position": { "x": 4, "y": 0 @@ -6072,9 +6440,9 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.6371107767102674, "position": { "x": 6, @@ -6095,9 +6463,9 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4152, + "noteOrder": 4154, "time": 0.6389628429216344, "position": { "x": 6, @@ -6118,9 +6486,9 @@ }, { "lineGroupId": 180, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4164, + "noteOrder": 4166, "time": 0.6408149091330014, "position": { "x": 7, @@ -6141,9 +6509,9 @@ }, { "lineGroupId": 180, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4176, + "noteOrder": 4178, "time": 0.6426669753443686, "position": { "x": 7, @@ -6164,9 +6532,9 @@ }, { "lineGroupId": 180, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4188, + "noteOrder": 4190, "time": 0.6445190415557356, "position": { "x": 6, @@ -6187,9 +6555,9 @@ }, { "lineGroupId": 180, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4200, + "noteOrder": 4202, "time": 0.6463711077671026, "position": { "x": 6, @@ -6210,10 +6578,10 @@ }, { "lineGroupId": 180, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4212, - "time": 0.6482231739784697, + "noteOrder": 4214, + "time": 0.6482231739784696, "position": { "x": 7, "y": 0 @@ -6233,9 +6601,9 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.6371107767102674, "position": { "x": 4, @@ -6256,9 +6624,9 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4152, + "noteOrder": 4154, "time": 0.6389628429216344, "position": { "x": 4, @@ -6279,9 +6647,9 @@ }, { "lineGroupId": 181, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4164, + "noteOrder": 4166, "time": 0.6408149091330014, "position": { "x": 4, @@ -6302,9 +6670,9 @@ }, { "lineGroupId": 181, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4176, + "noteOrder": 4178, "time": 0.6426669753443686, "position": { "x": 4, @@ -6325,9 +6693,9 @@ }, { "lineGroupId": 181, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4188, + "noteOrder": 4190, "time": 0.6445190415557356, "position": { "x": 4, @@ -6348,9 +6716,9 @@ }, { "lineGroupId": 181, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4200, + "noteOrder": 4202, "time": 0.6463711077671026, "position": { "x": 4, @@ -6371,10 +6739,10 @@ }, { "lineGroupId": 181, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4212, - "time": 0.6482231739784697, + "noteOrder": 4214, + "time": 0.6482231739784696, "position": { "x": 4, "y": 0 @@ -6394,10 +6762,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4236, - "time": 0.6519273064012038, + "noteOrder": 4238, + "time": 0.6519273064012039, "position": { "x": 5, "y": 0 @@ -6417,9 +6785,9 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4308, + "noteOrder": 4310, "time": 0.6630397036694061, "position": { "x": 7, @@ -6440,10 +6808,10 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4236, - "time": 0.6519273064012038, + "noteOrder": 4238, + "time": 0.6519273064012039, "position": { "x": 3, "y": 0 @@ -6463,9 +6831,9 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4308, + "noteOrder": 4310, "time": 0.6630397036694061, "position": { "x": 5, @@ -6486,9 +6854,9 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4332, + "noteOrder": 4334, "time": 0.6667438360921403, "position": { "x": 5, @@ -6509,9 +6877,9 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4405, + "noteOrder": 4406, "time": 0.6778562333603426, "position": { "x": 3, @@ -6532,9 +6900,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4332, + "noteOrder": 4334, "time": 0.6667438360921403, "position": { "x": 7, @@ -6555,9 +6923,9 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4405, + "noteOrder": 4406, "time": 0.6778562333603426, "position": { "x": 5, @@ -6578,9 +6946,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4525, + "noteOrder": 4527, "time": 0.6963768954740132, "position": { "x": 3, @@ -6601,9 +6969,9 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4573, + "noteOrder": 4575, "time": 0.7037851603194814, "position": { "x": 3, @@ -6624,9 +6992,9 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.7186016900104178, "position": { "x": 6, @@ -6647,10 +7015,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4694, - "time": 0.7223058224331519, + "noteOrder": 4695, + "time": 0.722305822433152, "position": { "x": 6, "y": 0 @@ -6670,9 +7038,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4669, + "noteOrder": 4671, "time": 0.7186016900104178, "position": { "x": 4, @@ -6693,10 +7061,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4694, - "time": 0.7223058224331519, + "noteOrder": 4695, + "time": 0.722305822433152, "position": { "x": 4, "y": 0 @@ -6716,9 +7084,9 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4718, + "noteOrder": 4719, "time": 0.726009954855886, "position": { "x": 7, @@ -6739,9 +7107,9 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.7334182197013542, "position": { "x": 7, @@ -6762,9 +7130,9 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4862, + "noteOrder": 4864, "time": 0.7482347493922907, "position": { "x": 4, @@ -6785,9 +7153,9 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, + "noteOrder": 4888, "time": 0.7519388818150248, "position": { "x": 4, @@ -6808,9 +7176,9 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4862, + "noteOrder": 4864, "time": 0.7482347493922907, "position": { "x": 6, @@ -6831,9 +7199,9 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, + "noteOrder": 4888, "time": 0.7519388818150248, "position": { "x": 6, @@ -6854,9 +7222,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5392, + "noteOrder": 5394, "time": 0.8297256626924412, "position": { "x": 6, @@ -6877,10 +7245,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5416, - "time": 0.8334297951151752, + "noteOrder": 5418, + "time": 0.8334297951151753, "position": { "x": 6, "y": 0 @@ -6900,9 +7268,9 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5440, + "noteOrder": 5442, "time": 0.8371339275379094, "position": { "x": 4, @@ -6923,9 +7291,9 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.8408380599606435, "position": { "x": 4, @@ -6946,10 +7314,33 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5490, + "time": 0.8445421923833777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5488, - "time": 0.8445421923833776, + "noteOrder": 5514, + "time": 0.8482463248061118, "position": { "x": 7, "y": 0 @@ -6967,11 +7358,80 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 238, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5514, + "time": 0.8482463248061118, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5538, + "time": 0.8519504572288459, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 238, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5538, + "time": 0.8519504572288459, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5536, + "noteOrder": 5538, "time": 0.8519504572288459, "position": { "x": 7, @@ -6990,12 +7450,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 239, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5562, + "time": 0.85565458965158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5562, + "time": 0.85565458965158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5586, + "time": 0.8593587220743141, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 239, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5586, + "time": 0.8593587220743141, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5680, - "time": 0.8741752517652505, + "noteOrder": 5683, + "time": 0.8741752517652506, "position": { "x": 3, "y": 0 @@ -7015,9 +7567,9 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5704, + "noteOrder": 5707, "time": 0.8778793841879846, "position": { "x": 4, @@ -7038,9 +7590,9 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5729, + "noteOrder": 5731, "time": 0.8815835166107188, "position": { "x": 7, @@ -7061,10 +7613,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5753, - "time": 0.8852876490334528, + "noteOrder": 5755, + "time": 0.8852876490334529, "position": { "x": 6, "y": 0 @@ -7084,10 +7636,10 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5969, - "time": 0.9186248408380598, + "noteOrder": 5972, + "time": 0.91862484083806, "position": { "x": 3, "y": 0 @@ -7107,9 +7659,9 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5993, + "noteOrder": 5996, "time": 0.922328973260794, "position": { "x": 3, @@ -7130,9 +7682,9 @@ }, { "lineGroupId": 256, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6017, + "noteOrder": 6020, "time": 0.926033105683528, "position": { "x": 7, @@ -7153,10 +7705,10 @@ }, { "lineGroupId": 256, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6041, - "time": 0.9297372381062622, + "noteOrder": 6044, + "time": 0.9297372381062623, "position": { "x": 7, "y": 0 @@ -7176,9 +7728,9 @@ }, { "lineGroupId": 258, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6065, + "noteOrder": 6068, "time": 0.9334413705289963, "position": { "x": 3, @@ -7199,10 +7751,10 @@ }, { "lineGroupId": 258, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6090, - "time": 0.9371455029517304, + "noteOrder": 6092, + "time": 0.9371455029517305, "position": { "x": 3, "y": 0 @@ -7222,9 +7774,9 @@ }, { "lineGroupId": 259, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6065, + "noteOrder": 6068, "time": 0.9334413705289963, "position": { "x": 7, @@ -7245,10 +7797,10 @@ }, { "lineGroupId": 259, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6090, - "time": 0.9371455029517304, + "noteOrder": 6092, + "time": 0.9371455029517305, "position": { "x": 7, "y": 0 @@ -7268,9 +7820,9 @@ }, { "lineGroupId": 271, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6294, + "noteOrder": 6297, "time": 0.9686306285449704, "position": { "x": 6, @@ -7291,10 +7843,10 @@ }, { "lineGroupId": 271, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6378, - "time": 0.9815950920245398, + "noteOrder": 6381, + "time": 0.9815950920245399, "position": { "x": 6, "y": 0 @@ -7314,9 +7866,9 @@ }, { "lineGroupId": 272, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6294, + "noteOrder": 6297, "time": 0.9686306285449704, "position": { "x": 4, @@ -7337,10 +7889,10 @@ }, { "lineGroupId": 272, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6378, - "time": 0.9815950920245398, + "noteOrder": 6381, + "time": 0.9815950920245399, "position": { "x": 4, "y": 0 diff --git a/tracks/Sunshine let me find a way/344_difficulty_1b.json b/tracks/Sunshine let me find a way/344_difficulty_1b.json index ee5c9a14..9518c160 100644 --- a/tracks/Sunshine let me find a way/344_difficulty_1b.json +++ b/tracks/Sunshine let me find a way/344_difficulty_1b.json @@ -114,7 +114,7 @@ }, { "noteOrder": 457, - "time": 0.07037851603194814, + "time": 0.07037851603194813, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 530, - "time": 0.08149091330015047, + "time": 0.08149091330015049, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 819, "time": 0.1259405023729598, "position": { "x": 6, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 867, "time": 0.13334876721842806, "position": { "x": 3, @@ -214,7 +214,7 @@ }, { "noteOrder": 891, - "time": 0.13705289964116216, + "time": 0.13705289964116218, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 987, - "time": 0.15186942933209863, + "time": 0.1518694293320986, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1059, - "time": 0.16298182660030094, + "time": 0.16298182660030097, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1107, + "noteOrder": 1108, "time": 0.17039009144576917, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1156, "time": 0.17779835629123739, "position": { "x": 4, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1156, "time": 0.17779835629123739, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1203, - "time": 0.1852066211367056, + "noteOrder": 1204, + "time": 0.18520662113670563, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1203, - "time": 0.1852066211367056, + "noteOrder": 1204, + "time": 0.18520662113670563, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1300, - "time": 0.20002315082764208, + "time": 0.2000231508276421, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1397, "time": 0.21483968051857852, "position": { "x": 3, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1686, "time": 0.25928926959138787, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1709, - "time": 0.26299340201412197, + "noteOrder": 1710, + "time": 0.262993402014122, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1781, - "time": 0.2741057992823243, + "noteOrder": 1782, + "time": 0.27410579928232437, "position": { "x": 6, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1805, - "time": 0.27780993170505847, + "noteOrder": 1806, + "time": 0.2778099317050584, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2023, "time": 0.31114712350966545, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2071, "time": 0.3185553883551337, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2118, - "time": 0.3259636532006019, + "noteOrder": 2119, + "time": 0.32596365320060194, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2167, "time": 0.33337191804607014, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2214, + "noteOrder": 2215, "time": 0.34078018289153833, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2504, "time": 0.3852297719643477, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2527, + "noteOrder": 2528, "time": 0.3889339043870818, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2599, - "time": 0.40004630165528415, + "noteOrder": 2600, + "time": 0.4000463016552842, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2624, + "noteOrder": 2625, "time": 0.40375043407801825, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2744, - "time": 0.4222710961916888, + "noteOrder": 2745, + "time": 0.42227109619168884, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.42597522861442294, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2840, - "time": 0.43708762588262523, + "noteOrder": 2841, + "time": 0.4370876258826253, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.4407917583053594, "position": { "x": 7, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2888, - "time": 0.4444958907280935, + "noteOrder": 2889, + "time": 0.44449589072809353, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2936, - "time": 0.45190415557356167, + "noteOrder": 2938, + "time": 0.4519041555735617, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2985, - "time": 0.4593124204190299, + "noteOrder": 2986, + "time": 0.45931242041903, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3034, "time": 0.46672068526449817, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3273, + "noteOrder": 3275, "time": 0.5037620094918392, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3298, + "noteOrder": 3299, "time": 0.5074661419145734, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3370, + "noteOrder": 3371, "time": 0.5185785391827757, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3394, - "time": 0.5222826716055099, + "noteOrder": 3395, + "time": 0.5222826716055098, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3515, "time": 0.5408033337191804, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3538, + "noteOrder": 3540, "time": 0.5445074661419146, "position": { "x": 7, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3610, - "time": 0.5556198634101169, + "noteOrder": 3612, + "time": 0.5556198634101168, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 3636, "time": 0.559323995832851, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3659, - "time": 0.5630281282555851, + "noteOrder": 3660, + "time": 0.563028128255585, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3659, - "time": 0.5630281282555851, + "noteOrder": 3660, + "time": 0.563028128255585, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3708, "time": 0.5704363931010533, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3708, "time": 0.5704363931010533, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3901, "time": 0.6000694524829262, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3947, - "time": 0.6074777173283945, + "noteOrder": 3949, + "time": 0.6074777173283944, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3996, + "noteOrder": 3997, "time": 0.6148859821738627, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4045, "time": 0.6222942470193309, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4092, - "time": 0.6297025118647991, + "noteOrder": 4093, + "time": 0.6297025118647992, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4092, - "time": 0.6297025118647991, + "noteOrder": 4093, + "time": 0.6297025118647992, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4190, "time": 0.6445190415557356, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4212, - "time": 0.6482231739784697, + "noteOrder": 4214, + "time": 0.6482231739784696, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4284, - "time": 0.659335571246672, + "noteOrder": 4286, + "time": 0.6593355712466721, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4308, + "noteOrder": 4310, "time": 0.6630397036694061, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4332, + "noteOrder": 4334, "time": 0.6667438360921403, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4357, + "noteOrder": 4358, "time": 0.6704479685148743, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4381, - "time": 0.6741521009376085, + "noteOrder": 4382, + "time": 0.6741521009376086, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4405, + "noteOrder": 4406, "time": 0.6778562333603426, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4718, + "noteOrder": 4719, "time": 0.726009954855886, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4814, - "time": 0.7408264845468224, + "noteOrder": 4816, + "time": 0.7408264845468225, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4912, "time": 0.7556430142377589, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4936, "time": 0.7593471466604931, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 5008, "time": 0.7704595439286954, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5032, "time": 0.7741636763514295, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5151, - "time": 0.7926843384651, + "noteOrder": 5153, + "time": 0.7926843384651001, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5175, + "noteOrder": 5177, "time": 0.7963884708878342, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5249, "time": 0.8075008681560365, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.8112050005787707, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.8149091330015047, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5343, - "time": 0.8223173978469729, + "noteOrder": 5345, + "time": 0.822317397846973, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5392, + "noteOrder": 5394, "time": 0.8297256626924412, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5440, + "noteOrder": 5442, "time": 0.8371339275379094, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5680, - "time": 0.8741752517652505, + "noteOrder": 5683, + "time": 0.8741752517652506, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5704, + "noteOrder": 5707, "time": 0.8778793841879846, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5777, - "time": 0.888991781456187, + "noteOrder": 5779, + "time": 0.8889917814561871, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5801, + "noteOrder": 5803, "time": 0.8926959138789211, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5921, - "time": 0.9112165759925916, + "noteOrder": 5923, + "time": 0.9112165759925918, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5945, - "time": 0.9149207084153257, + "noteOrder": 5947, + "time": 0.9149207084153258, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6017, + "noteOrder": 6020, "time": 0.926033105683528, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6041, - "time": 0.9297372381062622, + "noteOrder": 6044, + "time": 0.9297372381062623, "position": { "x": 7, "y": 0 @@ -1876,7 +1876,7 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.029633059381872898, @@ -1899,7 +1899,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 217, "time": 0.033337191804607015, @@ -1922,7 +1922,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 241, "time": 0.037041324227341126, @@ -1945,10 +1945,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 265, - "time": 0.040745456650075236, + "time": 0.04074545665007524, "position": { "x": 3, "y": 0 @@ -1968,7 +1968,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.044449589072809347, @@ -1991,7 +1991,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 313, "time": 0.048153721495543464, @@ -2014,7 +2014,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 337, "time": 0.051857853918277574, @@ -2037,10 +2037,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, - "time": 0.055561986341011685, + "time": 0.05556198634101169, "position": { "x": 4, "y": 0 @@ -2060,9 +2060,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 481, + "noteOrder": 482, "time": 0.07408264845468225, "position": { "x": 7, @@ -2083,10 +2083,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 530, - "time": 0.08149091330015047, + "time": 0.08149091330015049, "position": { "x": 7, "y": 0 @@ -2106,7 +2106,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.08889917814561869, @@ -2129,7 +2129,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 626, "time": 0.09630744299108693, @@ -2152,7 +2152,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 674, "time": 0.10371570783655515, @@ -2175,7 +2175,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 698, "time": 0.10741984025928926, @@ -2198,7 +2198,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 674, "time": 0.10371570783655515, @@ -2221,7 +2221,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 698, "time": 0.10741984025928926, @@ -2244,10 +2244,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 722, - "time": 0.11112397268202337, + "time": 0.11112397268202338, "position": { "x": 4, "y": 0 @@ -2267,10 +2267,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 746, - "time": 0.11482810510475748, + "time": 0.1148281051047575, "position": { "x": 4, "y": 0 @@ -2290,10 +2290,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 722, - "time": 0.11112397268202337, + "time": 0.11112397268202338, "position": { "x": 6, "y": 0 @@ -2313,10 +2313,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 746, - "time": 0.11482810510475748, + "time": 0.1148281051047575, "position": { "x": 6, "y": 0 @@ -2336,9 +2336,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 770, + "noteOrder": 771, "time": 0.11853223752749159, "position": { "x": 7, @@ -2359,9 +2359,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 818, + "noteOrder": 819, "time": 0.1259405023729598, "position": { "x": 7, @@ -2382,10 +2382,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 915, - "time": 0.14075703206389628, + "time": 0.14075703206389625, "position": { "x": 4, "y": 0 @@ -2405,7 +2405,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 939, "time": 0.14446116448663038, @@ -2428,7 +2428,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1011, "time": 0.15557356175483272, @@ -2451,7 +2451,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1035, "time": 0.15927769417756685, @@ -2474,10 +2474,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1444, - "time": 0.22224794536404674, + "noteOrder": 1445, + "time": 0.22224794536404677, "position": { "x": 6, "y": 0 @@ -2497,10 +2497,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1468, - "time": 0.22595207778678084, + "noteOrder": 1469, + "time": 0.22595207778678086, "position": { "x": 6, "y": 0 @@ -2520,10 +2520,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1492, - "time": 0.22965621020951496, + "noteOrder": 1493, + "time": 0.229656210209515, "position": { "x": 4, "y": 0 @@ -2543,9 +2543,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1516, + "noteOrder": 1517, "time": 0.23336034263224908, "position": { "x": 4, @@ -2566,9 +2566,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.23706447505498318, "position": { "x": 7, @@ -2589,10 +2589,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1589, - "time": 0.2444727399004514, + "time": 0.24447273990045143, "position": { "x": 7, "y": 0 @@ -2612,9 +2612,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1540, + "noteOrder": 1541, "time": 0.23706447505498318, "position": { "x": 3, @@ -2635,10 +2635,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1589, - "time": 0.2444727399004514, + "time": 0.24447273990045143, "position": { "x": 3, "y": 0 @@ -2658,7 +2658,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1637, "time": 0.2518810047459196, @@ -2681,9 +2681,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1685, + "noteOrder": 1686, "time": 0.25928926959138787, "position": { "x": 3, @@ -2704,9 +2704,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1733, + "noteOrder": 1734, "time": 0.2666975344368561, "position": { "x": 7, @@ -2727,10 +2727,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1781, - "time": 0.2741057992823243, + "noteOrder": 1782, + "time": 0.27410579928232437, "position": { "x": 7, "y": 0 @@ -2750,10 +2750,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1829, - "time": 0.28151406412779256, + "noteOrder": 1830, + "time": 0.2815140641277925, "position": { "x": 3, "y": 0 @@ -2773,9 +2773,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1853, + "noteOrder": 1854, "time": 0.28521819655052666, "position": { "x": 3, @@ -2796,9 +2796,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1877, + "noteOrder": 1878, "time": 0.28892232897326076, "position": { "x": 8, @@ -2819,10 +2819,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1901, - "time": 0.2926264613959949, + "noteOrder": 1902, + "time": 0.29262646139599485, "position": { "x": 8, "y": 0 @@ -2842,7 +2842,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1926, "time": 0.296330593818729, @@ -2865,7 +2865,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1950, "time": 0.3000347262414631, @@ -2888,7 +2888,7 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1926, "time": 0.296330593818729, @@ -2911,7 +2911,7 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1950, "time": 0.3000347262414631, @@ -2934,10 +2934,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, - "time": 0.30373885866419725, + "time": 0.3037388586641972, "position": { "x": 7, "y": 0 @@ -2957,9 +2957,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30744299108693135, "position": { "x": 7, @@ -2980,10 +2980,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1974, - "time": 0.30373885866419725, + "time": 0.3037388586641972, "position": { "x": 3, "y": 0 @@ -3003,9 +3003,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1998, + "noteOrder": 1999, "time": 0.30744299108693135, "position": { "x": 3, @@ -3026,9 +3026,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2311, + "noteOrder": 2312, "time": 0.35559671258247477, "position": { "x": 3, @@ -3049,9 +3049,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2359, + "noteOrder": 2360, "time": 0.363004977427943, "position": { "x": 4, @@ -3072,10 +3072,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2407, - "time": 0.3704132422734112, + "noteOrder": 2408, + "time": 0.37041324227341127, "position": { "x": 7, "y": 0 @@ -3095,9 +3095,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2455, + "noteOrder": 2456, "time": 0.37782150711887946, "position": { "x": 6, @@ -3118,10 +3118,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2551, - "time": 0.3926380368098159, + "noteOrder": 2552, + "time": 0.39263803680981596, "position": { "x": 4, "y": 0 @@ -3141,10 +3141,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2575, - "time": 0.39634216923255, + "noteOrder": 2576, + "time": 0.39634216923255006, "position": { "x": 4, "y": 0 @@ -3164,9 +3164,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2648, + "noteOrder": 2649, "time": 0.40745456650075235, "position": { "x": 6, @@ -3187,10 +3187,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2672, - "time": 0.41115869892348644, + "noteOrder": 2673, + "time": 0.4111586989234865, "position": { "x": 6, "y": 0 @@ -3210,9 +3210,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2696, + "noteOrder": 2697, "time": 0.4148628313462206, "position": { "x": 7, @@ -3233,9 +3233,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.42597522861442294, "position": { "x": 7, @@ -3256,9 +3256,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.42967936103715704, "position": { "x": 3, @@ -3279,9 +3279,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.4407917583053594, "position": { "x": 3, @@ -3302,9 +3302,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3081, + "noteOrder": 3082, "time": 0.47412895010996636, "position": { "x": 7, @@ -3325,9 +3325,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3129, + "noteOrder": 3130, "time": 0.4815372149554346, "position": { "x": 6, @@ -3348,10 +3348,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, - "time": 0.4889454798009028, + "noteOrder": 3178, + "time": 0.48894547980090286, "position": { "x": 3, "y": 0 @@ -3371,10 +3371,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3225, - "time": 0.49635374464637105, + "noteOrder": 3227, + "time": 0.4963537446463711, "position": { "x": 4, "y": 0 @@ -3394,10 +3394,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3322, - "time": 0.5111702743373074, + "noteOrder": 3323, + "time": 0.5111702743373076, "position": { "x": 6, "y": 0 @@ -3417,9 +3417,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3346, + "noteOrder": 3347, "time": 0.5148744067600416, "position": { "x": 6, @@ -3440,10 +3440,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3418, - "time": 0.5259868040282439, + "noteOrder": 3419, + "time": 0.525986804028244, "position": { "x": 4, "y": 0 @@ -3463,9 +3463,9 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3442, + "noteOrder": 3443, "time": 0.5296909364509781, "position": { "x": 4, @@ -3486,9 +3486,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3466, + "noteOrder": 3467, "time": 0.5333950688737122, "position": { "x": 3, @@ -3509,9 +3509,9 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3538, + "noteOrder": 3540, "time": 0.5445074661419146, "position": { "x": 3, @@ -3532,10 +3532,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3562, - "time": 0.5482115985646486, + "noteOrder": 3564, + "time": 0.5482115985646487, "position": { "x": 7, "y": 0 @@ -3555,9 +3555,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3634, + "noteOrder": 3636, "time": 0.559323995832851, "position": { "x": 7, @@ -3578,9 +3578,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3755, + "noteOrder": 3756, "time": 0.5778446579465215, "position": { "x": 6, @@ -3601,9 +3601,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3851, + "noteOrder": 3853, "time": 0.592661187637458, "position": { "x": 6, @@ -3624,9 +3624,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3755, + "noteOrder": 3756, "time": 0.5778446579465215, "position": { "x": 4, @@ -3647,9 +3647,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3851, + "noteOrder": 3853, "time": 0.592661187637458, "position": { "x": 4, @@ -3670,9 +3670,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.6371107767102674, "position": { "x": 7, @@ -3693,10 +3693,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4212, - "time": 0.6482231739784697, + "noteOrder": 4214, + "time": 0.6482231739784696, "position": { "x": 7, "y": 0 @@ -3716,10 +3716,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4236, - "time": 0.6519273064012038, + "noteOrder": 4238, + "time": 0.6519273064012039, "position": { "x": 3, "y": 0 @@ -3739,9 +3739,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4308, + "noteOrder": 4310, "time": 0.6630397036694061, "position": { "x": 3, @@ -3762,9 +3762,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4429, + "noteOrder": 4430, "time": 0.6815603657830767, "position": { "x": 7, @@ -3785,9 +3785,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4453, + "noteOrder": 4455, "time": 0.6852644982058108, "position": { "x": 7, @@ -3808,10 +3808,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4477, - "time": 0.688968630628545, + "noteOrder": 4479, + "time": 0.6889686306285449, "position": { "x": 6, "y": 0 @@ -3831,9 +3831,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4501, + "noteOrder": 4503, "time": 0.692672763051279, "position": { "x": 6, @@ -3854,10 +3854,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4477, - "time": 0.688968630628545, + "noteOrder": 4479, + "time": 0.6889686306285449, "position": { "x": 4, "y": 0 @@ -3877,9 +3877,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4501, + "noteOrder": 4503, "time": 0.692672763051279, "position": { "x": 4, @@ -3900,10 +3900,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4958, - "time": 0.7630512790832271, + "noteOrder": 4960, + "time": 0.7630512790832272, "position": { "x": 6, "y": 0 @@ -3923,9 +3923,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4982, + "noteOrder": 4984, "time": 0.7667554115059613, "position": { "x": 6, @@ -3946,9 +3946,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5055, + "noteOrder": 5057, "time": 0.7778678087741636, "position": { "x": 4, @@ -3969,10 +3969,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5079, - "time": 0.7815719411968977, + "noteOrder": 5081, + "time": 0.7815719411968978, "position": { "x": 4, "y": 0 @@ -3992,10 +3992,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5103, - "time": 0.7852760736196318, + "noteOrder": 5105, + "time": 0.7852760736196319, "position": { "x": 3, "y": 0 @@ -4015,9 +4015,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5175, + "noteOrder": 5177, "time": 0.7963884708878342, "position": { "x": 3, @@ -4038,10 +4038,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5199, - "time": 0.8000926033105683, + "noteOrder": 5201, + "time": 0.8000926033105684, "position": { "x": 7, "y": 0 @@ -4061,9 +4061,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5271, + "noteOrder": 5273, "time": 0.8112050005787707, "position": { "x": 7, @@ -4084,10 +4084,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5488, - "time": 0.8445421923833776, + "noteOrder": 5490, + "time": 0.8445421923833777, "position": { "x": 3, "y": 0 @@ -4107,9 +4107,9 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5536, + "noteOrder": 5538, "time": 0.8519504572288459, "position": { "x": 4, @@ -4130,9 +4130,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5584, + "noteOrder": 5586, "time": 0.8593587220743141, "position": { "x": 7, @@ -4153,10 +4153,10 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5632, - "time": 0.8667669869197823, + "noteOrder": 5634, + "time": 0.8667669869197824, "position": { "x": 6, "y": 0 @@ -4176,9 +4176,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5729, + "noteOrder": 5731, "time": 0.8815835166107188, "position": { "x": 4, @@ -4199,10 +4199,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5753, - "time": 0.8852876490334528, + "noteOrder": 5755, + "time": 0.8852876490334529, "position": { "x": 4, "y": 0 @@ -4222,10 +4222,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5825, - "time": 0.8964000463016552, + "noteOrder": 5827, + "time": 0.8964000463016553, "position": { "x": 6, "y": 0 @@ -4245,9 +4245,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5849, + "noteOrder": 5851, "time": 0.9001041787243893, "position": { "x": 6, @@ -4268,10 +4268,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5873, - "time": 0.9038083111471233, + "noteOrder": 5875, + "time": 0.9038083111471235, "position": { "x": 7, "y": 0 @@ -4291,10 +4291,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5945, - "time": 0.9149207084153257, + "noteOrder": 5947, + "time": 0.9149207084153258, "position": { "x": 7, "y": 0 @@ -4314,10 +4314,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5969, - "time": 0.9186248408380598, + "noteOrder": 5972, + "time": 0.91862484083806, "position": { "x": 3, "y": 0 @@ -4337,10 +4337,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6041, - "time": 0.9297372381062622, + "noteOrder": 6044, + "time": 0.9297372381062623, "position": { "x": 3, "y": 0 @@ -4360,9 +4360,9 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6065, + "noteOrder": 6068, "time": 0.9334413705289963, "position": { "x": 7, @@ -4383,10 +4383,10 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6090, - "time": 0.9371455029517304, + "noteOrder": 6092, + "time": 0.9371455029517305, "position": { "x": 7, "y": 0 @@ -4406,9 +4406,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6114, + "noteOrder": 6116, "time": 0.9408496353744645, "position": { "x": 3, @@ -4429,10 +4429,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6138, - "time": 0.9445537677971986, + "noteOrder": 6140, + "time": 0.9445537677971987, "position": { "x": 3, "y": 0 @@ -4452,9 +4452,9 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6162, + "noteOrder": 6164, "time": 0.9482579002199327, "position": { "x": 6, @@ -4475,10 +4475,10 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6186, - "time": 0.9519620326426669, + "noteOrder": 6188, + "time": 0.951962032642667, "position": { "x": 6, "y": 0 @@ -4498,9 +4498,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6162, + "noteOrder": 6164, "time": 0.9482579002199327, "position": { "x": 4, @@ -4521,10 +4521,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6186, - "time": 0.9519620326426669, + "noteOrder": 6188, + "time": 0.951962032642667, "position": { "x": 4, "y": 0 @@ -4544,10 +4544,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6210, - "time": 0.9556661650654009, + "noteOrder": 6212, + "time": 0.955666165065401, "position": { "x": 3, "y": 0 @@ -4567,10 +4567,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6246, - "time": 0.9612223636995021, + "noteOrder": 6248, + "time": 0.9612223636995022, "position": { "x": 3, "y": 0 @@ -4590,10 +4590,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6210, - "time": 0.9556661650654009, + "noteOrder": 6212, + "time": 0.955666165065401, "position": { "x": 7, "y": 0 @@ -4613,10 +4613,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6246, - "time": 0.9612223636995021, + "noteOrder": 6248, + "time": 0.9612223636995022, "position": { "x": 7, "y": 0 @@ -4636,9 +4636,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6294, + "noteOrder": 6297, "time": 0.9686306285449704, "position": { "x": 6, @@ -4659,10 +4659,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6378, - "time": 0.9815950920245398, + "noteOrder": 6381, + "time": 0.9815950920245399, "position": { "x": 6, "y": 0 @@ -4682,9 +4682,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6294, + "noteOrder": 6297, "time": 0.9686306285449704, "position": { "x": 4, @@ -4705,10 +4705,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6378, - "time": 0.9815950920245398, + "noteOrder": 6381, + "time": 0.9815950920245399, "position": { "x": 4, "y": 0 diff --git a/tracks/Sunshine let me find a way/info.json b/tracks/Sunshine let me find a way/info.json index 3901b284..83a54e14 100644 --- a/tracks/Sunshine let me find a way/info.json +++ b/tracks/Sunshine let me find a way/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Sunshine let me find a way", - "SongLength": "133.067755", + "SongLength": "123.115102", "SongAuthorName": "\u30b3\u30d0\u30e4\u30b7\u30e6\u30a6\u30e4 (IOSYS) ft. You-Re:", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Sweet Bordeaux Nightmare/347_difficulty_1a.json b/tracks/Sweet Bordeaux Nightmare/347_difficulty_1a.json index 95564648..89909c78 100644 --- a/tracks/Sweet Bordeaux Nightmare/347_difficulty_1a.json +++ b/tracks/Sweet Bordeaux Nightmare/347_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.014979870798614361, + "time": 0.014979870798614363, "position": { "x": 3, "y": 0 @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 121, "time": 0.018724838498267952, "position": { "x": 4, @@ -74,7 +74,7 @@ }, { "noteOrder": 169, - "time": 0.026214773897575133, + "time": 0.026214773897575136, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 193, - "time": 0.029959741597228723, + "time": 0.029959741597228726, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 217, - "time": 0.03370470929688231, + "time": 0.03370470929688232, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 313, - "time": 0.04868458009549667, + "time": 0.048684580095496685, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 337, - "time": 0.052429547795150265, + "time": 0.05242954779515027, "position": { "x": 7, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 362, "time": 0.05617451549480386, "position": { "x": 6, @@ -254,7 +254,7 @@ }, { "noteOrder": 386, - "time": 0.059919483194457446, + "time": 0.05991948319445745, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 434, - "time": 0.06740941859376462, + "time": 0.06740941859376463, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 651, - "time": 0.10111412789064694, + "time": 0.10111412789064696, "position": { "x": 5, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 988, - "time": 0.15354367568579722, + "time": 0.15354367568579724, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1036, - "time": 0.1610336110851044, + "time": 0.16103361108510442, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1036, - "time": 0.1610336110851044, + "time": 0.16103361108510442, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1132, + "noteOrder": 1133, "time": 0.17601348188371876, "position": { "x": 5, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1373, - "time": 0.21346315888025463, + "noteOrder": 1374, + "time": 0.21346315888025466, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1397, + "noteOrder": 1398, "time": 0.21720812657990826, "position": { "x": 3, @@ -594,7 +594,7 @@ }, { "noteOrder": 1422, - "time": 0.22095309427956183, + "time": 0.22095309427956186, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.23967793277782978, + "noteOrder": 1543, + "time": 0.2396779327778298, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1662, - "time": 0.25840277127609773, + "noteOrder": 1663, + "time": 0.2584027712760978, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1711, - "time": 0.26589270667540493, + "time": 0.265892706675405, "position": { "x": 5, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1759, - "time": 0.2733826420747121, + "noteOrder": 1760, + "time": 0.27338264207471213, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1783, + "noteOrder": 1784, "time": 0.2771276097743657, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1807, - "time": 0.2808725774740193, + "noteOrder": 1808, + "time": 0.28087257747401934, "position": { "x": 5, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1855, - "time": 0.2883625128733264, + "noteOrder": 1856, + "time": 0.2883625128733265, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1903, - "time": 0.29585244827263363, + "noteOrder": 1904, + "time": 0.2958524482726337, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1952, - "time": 0.3033423836719408, + "time": 0.30334238367194083, "position": { "x": 3, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1976, - "time": 0.30708735137159443, + "time": 0.3070873513715945, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.31083231907124803, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2024, + "noteOrder": 2025, "time": 0.31457728677090163, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2048, - "time": 0.31832225447055523, + "noteOrder": 2049, + "time": 0.3183222544705552, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2072, - "time": 0.3220672221702088, + "noteOrder": 2073, + "time": 0.32206722217020883, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.3258121898698624, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2120, + "noteOrder": 2121, "time": 0.329557157569516, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2120, + "noteOrder": 2121, "time": 0.329557157569516, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.3333021252691696, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.3333021252691696, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2313, + "noteOrder": 2314, "time": 0.3595168991667447, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2337, - "time": 0.3632618668663983, + "noteOrder": 2338, + "time": 0.36326186686639833, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2361, + "noteOrder": 2362, "time": 0.3670068345660519, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2361, + "noteOrder": 2362, "time": 0.3670068345660519, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2385, + "noteOrder": 2386, "time": 0.3707518022657055, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2385, + "noteOrder": 2386, "time": 0.3707518022657055, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2433, - "time": 0.3782417376650126, + "noteOrder": 2434, + "time": 0.3782417376650127, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2458, + "noteOrder": 2459, "time": 0.3819867053646662, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2482, + "noteOrder": 2483, "time": 0.3857316730643198, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2530, - "time": 0.39322160846362697, + "noteOrder": 2531, + "time": 0.393221608463627, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2578, - "time": 0.40071154386293417, + "noteOrder": 2579, + "time": 0.4007115438629342, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2626, - "time": 0.4082014792622413, + "noteOrder": 2627, + "time": 0.4082014792622414, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2650, - "time": 0.4119464469618949, + "noteOrder": 2651, + "time": 0.411946446961895, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2674, - "time": 0.4156914146615485, + "noteOrder": 2675, + "time": 0.4156914146615486, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2724, "time": 0.4231813500608557, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2771, + "noteOrder": 2772, "time": 0.4306712854601629, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2795, + "noteOrder": 2796, "time": 0.4344162531598165, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2819, + "noteOrder": 2820, "time": 0.4381612208594701, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2843, - "time": 0.44190618855912367, + "noteOrder": 2844, + "time": 0.4419061885591237, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2867, - "time": 0.44565115625877727, + "noteOrder": 2868, + "time": 0.4456511562587773, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3084, - "time": 0.47935586555565957, + "noteOrder": 3085, + "time": 0.4793558655556596, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3102, + "noteOrder": 3103, "time": 0.4821645913303998, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.48497331710513997, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3399, "time": 0.5280404456511563, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3421, - "time": 0.5317854133508099, + "noteOrder": 3423, + "time": 0.53178541335081, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3686, - "time": 0.5729800580469993, + "noteOrder": 3688, + "time": 0.5729800580469995, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3710, - "time": 0.5767250257466529, + "noteOrder": 3712, + "time": 0.576725025746653, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3735, - "time": 0.5804699934463065, + "noteOrder": 3736, + "time": 0.5804699934463066, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3783, - "time": 0.5879599288456137, + "noteOrder": 3784, + "time": 0.5879599288456138, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3831, + "noteOrder": 3832, "time": 0.5954498642449209, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3855, + "noteOrder": 3857, "time": 0.5991948319445745, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3879, - "time": 0.6029397996442281, + "noteOrder": 3881, + "time": 0.6029397996442282, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.6066847673438815, + "noteOrder": 3905, + "time": 0.6066847673438817, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.6066847673438815, + "noteOrder": 3905, + "time": 0.6066847673438817, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6104297350435351, + "noteOrder": 3929, + "time": 0.6104297350435353, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6104297350435351, + "noteOrder": 3929, + "time": 0.6104297350435353, "position": { "x": 3, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.6141747027431889, + "noteOrder": 3953, + "time": 0.614174702743189, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.6141747027431889, + "noteOrder": 3953, + "time": 0.614174702743189, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4000, + "noteOrder": 4001, "time": 0.6216646381424961, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4024, + "noteOrder": 4025, "time": 0.6254096058421497, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4072, + "noteOrder": 4073, "time": 0.6328995412414569, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4096, - "time": 0.6366445089411105, + "noteOrder": 4098, + "time": 0.6366445089411104, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4120, + "noteOrder": 4122, "time": 0.640389476640764, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4144, - "time": 0.6441344443404176, + "noteOrder": 4146, + "time": 0.6441344443404177, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.6478794120400712, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4192, + "noteOrder": 4194, "time": 0.6516243797397248, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4216, - "time": 0.6553693474393784, + "noteOrder": 4218, + "time": 0.6553693474393785, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4265, + "noteOrder": 4266, "time": 0.6628592828386856, "position": { "x": 2, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4313, + "noteOrder": 4314, "time": 0.6703492182379928, "position": { "x": 8, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4457, + "noteOrder": 4459, "time": 0.6928190244359143, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4481, - "time": 0.6965639921355679, + "noteOrder": 4483, + "time": 0.696563992135568, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4506, + "noteOrder": 4507, "time": 0.7003089598352215, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4530, + "noteOrder": 4531, "time": 0.7040539275348751, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 4556, "time": 0.7077988952345287, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4578, - "time": 0.7115438629341821, + "noteOrder": 4580, + "time": 0.7115438629341823, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4602, - "time": 0.7152888306338357, + "noteOrder": 4604, + "time": 0.7152888306338359, "position": { "x": 4, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4722, + "noteOrder": 4724, "time": 0.7340136691321038, "position": { "x": 7, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4747, - "time": 0.7377586368317574, + "noteOrder": 4748, + "time": 0.7377586368317575, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4771, + "noteOrder": 4772, "time": 0.741503604531411, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4795, - "time": 0.7452485722310644, + "noteOrder": 4797, + "time": 0.7452485722310646, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4843, - "time": 0.7527385076303716, + "noteOrder": 4845, + "time": 0.7527385076303718, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4867, - "time": 0.7564834753300252, + "noteOrder": 4869, + "time": 0.7564834753300254, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.7602284430296788, "position": { "x": 6, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.7602284430296788, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.7714633461286396, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4987, + "noteOrder": 4989, "time": 0.7752083138282932, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.7789532815279467, + "noteOrder": 5013, + "time": 0.778953281527947, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5036, - "time": 0.7826982492276003, + "noteOrder": 5038, + "time": 0.7826982492276005, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5060, - "time": 0.7864432169272539, + "noteOrder": 5062, + "time": 0.786443216927254, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5084, - "time": 0.7901881846269075, + "noteOrder": 5086, + "time": 0.7901881846269077, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5108, - "time": 0.7939331523265611, + "noteOrder": 5110, + "time": 0.7939331523265613, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5132, - "time": 0.7976781200262147, + "noteOrder": 5134, + "time": 0.7976781200262149, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5156, - "time": 0.8014230877258683, + "noteOrder": 5158, + "time": 0.8014230877258685, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5180, + "noteOrder": 5182, "time": 0.805168055425522, "position": { "x": 4, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5204, - "time": 0.8089130231251755, + "noteOrder": 5206, + "time": 0.8089130231251757, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5216, - "time": 0.8107855069750023, + "noteOrder": 5218, + "time": 0.8107855069750024, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5228, - "time": 0.812657990824829, + "noteOrder": 5230, + "time": 0.8126579908248291, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5240, - "time": 0.8145304746746559, + "noteOrder": 5242, + "time": 0.814530474674656, "position": { "x": 7, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5252, - "time": 0.8164029585244826, + "noteOrder": 5255, + "time": 0.8164029585244827, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5265, - "time": 0.8182754423743095, + "noteOrder": 5267, + "time": 0.8182754423743096, "position": { "x": 4, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5277, - "time": 0.8201479262241362, + "noteOrder": 5279, + "time": 0.8201479262241363, "position": { "x": 3, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5289, - "time": 0.8220204100739631, + "noteOrder": 5291, + "time": 0.8220204100739632, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5301, - "time": 0.8238928939237898, + "noteOrder": 5303, + "time": 0.82389289392379, "position": { "x": 7, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5349, - "time": 0.831382829323097, + "noteOrder": 5351, + "time": 0.8313828293230972, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5373, - "time": 0.8351277970227506, + "noteOrder": 5375, + "time": 0.8351277970227508, "position": { "x": 6, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5397, - "time": 0.8388727647224042, + "noteOrder": 5399, + "time": 0.8388727647224044, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5421, - "time": 0.8426177324220578, + "noteOrder": 5423, + "time": 0.842617732422058, "position": { "x": 7, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5542, + "noteOrder": 5544, "time": 0.8613425709203258, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5554, + "noteOrder": 5556, "time": 0.8632150547701527, "position": { "x": 5, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.8800674094185938, "position": { "x": 7, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5686, - "time": 0.8838123771182473, + "noteOrder": 5688, + "time": 0.8838123771182474, "position": { "x": 3, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5698, + "noteOrder": 5700, "time": 0.8856848609680742, "position": { "x": 5, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5710, + "noteOrder": 5712, "time": 0.8875573448179009, "position": { "x": 7, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5722, + "noteOrder": 5725, "time": 0.8894298286677278, "position": { "x": 5, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5734, - "time": 0.8913023125175545, + "noteOrder": 5737, + "time": 0.8913023125175547, "position": { "x": 3, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5746, + "noteOrder": 5749, "time": 0.8931747963673814, "position": { "x": 5, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5807, + "noteOrder": 5809, "time": 0.9025372156165153, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5855, + "noteOrder": 5857, "time": 0.9100271510158225, "position": { "x": 3, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5903, - "time": 0.9175170864151296, + "noteOrder": 5905, + "time": 0.9175170864151297, "position": { "x": 5, "y": 0 @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5927, - "time": 0.9212620541147832, + "noteOrder": 5929, + "time": 0.9212620541147833, "position": { "x": 3, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5951, - "time": 0.9250070218144368, + "noteOrder": 5954, + "time": 0.925007021814437, "position": { "x": 7, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 6098, "time": 0.9474768280123584, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6144, - "time": 0.9549667634116655, + "noteOrder": 6146, + "time": 0.9549667634116656, "position": { "x": 7, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6168, - "time": 0.9587117311113191, + "noteOrder": 6170, + "time": 0.9587117311113192, "position": { "x": 3, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6180, + "noteOrder": 6182, "time": 0.960584214961146, "position": { "x": 4, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6192, - "time": 0.9624566988109727, + "noteOrder": 6195, + "time": 0.9624566988109728, "position": { "x": 6, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6204, + "noteOrder": 6207, "time": 0.9643291826607996, "position": { "x": 7, @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6216, - "time": 0.9662016665106263, + "noteOrder": 6219, + "time": 0.9662016665106264, "position": { "x": 6, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6228, - "time": 0.9680741503604531, + "noteOrder": 6231, + "time": 0.9680741503604532, "position": { "x": 4, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6240, + "noteOrder": 6243, "time": 0.9699466342102799, "position": { "x": 3, @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6252, - "time": 0.9718191180601067, + "noteOrder": 6255, + "time": 0.9718191180601068, "position": { "x": 4, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6264, - "time": 0.9736916019099335, + "noteOrder": 6267, + "time": 0.9736916019099336, "position": { "x": 6, "y": 0 @@ -3276,7 +3276,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.07489935399307181, @@ -3299,7 +3299,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 506, "time": 0.07864432169272541, @@ -3322,7 +3322,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 578, "time": 0.08987922479168617, @@ -3345,10 +3345,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 602, - "time": 0.09362419249133976, + "noteOrder": 603, + "time": 0.09362419249133977, "position": { "x": 5, "y": 0 @@ -3368,10 +3368,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 602, - "time": 0.09362419249133976, + "noteOrder": 603, + "time": 0.09362419249133977, "position": { "x": 5, "y": 0 @@ -3391,10 +3391,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 626, - "time": 0.09736916019099334, + "noteOrder": 627, + "time": 0.09736916019099337, "position": { "x": 5, "y": 0 @@ -3414,10 +3414,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 626, - "time": 0.09736916019099334, + "noteOrder": 627, + "time": 0.09736916019099337, "position": { "x": 5, "y": 0 @@ -3437,10 +3437,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 651, - "time": 0.10111412789064694, + "time": 0.10111412789064696, "position": { "x": 5, "y": 0 @@ -3460,10 +3460,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.10485909559030053, + "time": 0.10485909559030054, "position": { "x": 7, "y": 0 @@ -3482,13 +3482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 699, - "time": 0.10860406328995413, + "noteOrder": 687, + "time": 0.10673157944012733, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3500,18 +3500,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 723, - "time": 0.11234903098960772, + "noteOrder": 687, + "time": 0.10673157944012733, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3528,11 +3528,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 747, - "time": 0.1160939986892613, + "noteOrder": 699, + "time": 0.10860406328995413, "position": { "x": 3, "y": 0 @@ -3551,11 +3551,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 3, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 843, - "time": 0.13107386948787567, + "noteOrder": 711, + "time": 0.11047654713978093, "position": { "x": 3, "y": 0 @@ -3574,13 +3574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 771, - "time": 0.11983896638891489, + "noteOrder": 711, + "time": 0.11047654713978093, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3592,16 +3592,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 843, - "time": 0.13107386948787567, + "noteOrder": 723, + "time": 0.11234903098960772, "position": { "x": 7, "y": 0 @@ -3620,11 +3620,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 867, - "time": 0.13481883718752924, + "noteOrder": 735, + "time": 0.11422151483943452, "position": { "x": 7, "y": 0 @@ -3643,13 +3643,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 891, - "time": 0.13856380488718284, + "noteOrder": 735, + "time": 0.11422151483943452, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3661,18 +3661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 916, - "time": 0.14230877258683644, + "noteOrder": 747, + "time": 0.1160939986892613, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3684,18 +3684,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 940, - "time": 0.14605374028649, + "noteOrder": 759, + "time": 0.1179664825390881, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3712,13 +3712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1060, - "time": 0.164778578784758, + "noteOrder": 759, + "time": 0.1179664825390881, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3730,18 +3730,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1084, - "time": 0.16852354648441156, + "noteOrder": 771, + "time": 0.1198389663889149, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3753,18 +3753,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1084, - "time": 0.16852354648441156, + "noteOrder": 771, + "time": 0.1198389663889149, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3781,13 +3781,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1108, - "time": 0.17226851418406516, + "noteOrder": 844, + "time": 0.13107386948787567, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3804,13 +3804,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1108, - "time": 0.17226851418406516, + "noteOrder": 771, + "time": 0.1198389663889149, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3827,13 +3827,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1132, - "time": 0.17601348188371876, + "noteOrder": 844, + "time": 0.13107386948787567, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3850,13 +3850,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1157, - "time": 0.17975844958337234, + "noteOrder": 868, + "time": 0.13481883718752927, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3868,18 +3868,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1169, - "time": 0.18163093343319914, + "noteOrder": 880, + "time": 0.13669132103735607, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3891,18 +3891,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 2, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1181, - "time": 0.18350341728302594, + "noteOrder": 880, + "time": 0.13669132103735607, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3914,18 +3914,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 3, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1193, - "time": 0.18537590113285274, + "noteOrder": 892, + "time": 0.13856380488718284, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3937,16 +3937,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 4, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1205, - "time": 0.1872483849826795, + "noteOrder": 892, + "time": 0.13856380488718284, "position": { "x": 4, "y": 0 @@ -3960,18 +3960,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 5, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1217, - "time": 0.1891208688325063, + "noteOrder": 892, + "time": 0.13856380488718284, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3988,13 +3988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 6, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1229, - "time": 0.1909933526823331, + "noteOrder": 904, + "time": 0.14043628873700967, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4011,11 +4011,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1157, - "time": 0.17975844958337234, + "noteOrder": 904, + "time": 0.14043628873700967, "position": { "x": 6, "y": 0 @@ -4029,16 +4029,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1169, - "time": 0.18163093343319914, + "noteOrder": 916, + "time": 0.14230877258683644, "position": { "x": 6, "y": 0 @@ -4052,18 +4052,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 2, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1181, - "time": 0.18350341728302594, + "noteOrder": 916, + "time": 0.14230877258683644, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4075,16 +4075,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 3, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1193, - "time": 0.18537590113285274, + "noteOrder": 916, + "time": 0.14230877258683644, "position": { "x": 7, "y": 0 @@ -4103,13 +4103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 4, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1205, - "time": 0.1872483849826795, + "noteOrder": 928, + "time": 0.14418125643666324, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4126,11 +4126,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 5, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1217, - "time": 0.1891208688325063, + "noteOrder": 928, + "time": 0.14418125643666324, "position": { "x": 6, "y": 0 @@ -4149,13 +4149,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 6, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1229, - "time": 0.1909933526823331, + "noteOrder": 940, + "time": 0.14605374028649004, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4172,13 +4172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1253, - "time": 0.19473832038198668, + "noteOrder": 940, + "time": 0.14605374028649004, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4190,18 +4190,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1277, - "time": 0.19848328808164029, + "noteOrder": 940, + "time": 0.14605374028649004, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4213,18 +4213,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1301, - "time": 0.2022282557812939, + "noteOrder": 952, + "time": 0.14792622413631684, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4241,13 +4241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1325, - "time": 0.20597322348094746, + "noteOrder": 952, + "time": 0.14792622413631684, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4259,18 +4259,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1349, - "time": 0.20971819118060106, + "noteOrder": 964, + "time": 0.14979870798614361, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4287,13 +4287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1446, - "time": 0.22469806197921544, + "noteOrder": 964, + "time": 0.14979870798614361, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4310,13 +4310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, - "time": 0.22469806197921544, + "noteOrder": 1061, + "time": 0.164778578784758, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4333,13 +4333,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.22844302967886904, + "noteOrder": 1085, + "time": 0.1685235464844116, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4351,18 +4351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, - "time": 0.2321879973785226, + "noteOrder": 1085, + "time": 0.1685235464844116, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4374,18 +4374,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1518, - "time": 0.2359329650781762, + "noteOrder": 1109, + "time": 0.17226851418406516, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4402,13 +4402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1638, - "time": 0.2546578035764442, + "noteOrder": 1109, + "time": 0.17226851418406516, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4425,13 +4425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.2696376743750585, + "noteOrder": 1133, + "time": 0.17601348188371876, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4448,13 +4448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1735, - "time": 0.2696376743750585, + "noteOrder": 1157, + "time": 0.17975844958337234, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4471,13 +4471,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1831, - "time": 0.2846175451736729, + "noteOrder": 1169, + "time": 0.18163093343319917, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4494,13 +4494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1831, - "time": 0.2846175451736729, + "noteOrder": 1181, + "time": 0.18350341728302594, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4512,18 +4512,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1855, - "time": 0.2883625128733264, + "noteOrder": 1193, + "time": 0.18537590113285274, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4535,18 +4535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1879, - "time": 0.29210748057298, + "noteOrder": 1205, + "time": 0.18724838498267954, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4563,13 +4563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 6, "isSliding": false, - "noteOrder": 1903, - "time": 0.29585244827263363, + "noteOrder": 1217, + "time": 0.18912086883250634, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4586,13 +4586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2168, - "time": 0.3370470929688231, + "noteOrder": 1229, + "time": 0.1909933526823331, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4609,13 +4609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 2193, - "time": 0.3407920606684767, + "noteOrder": 1157, + "time": 0.17975844958337234, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4627,16 +4627,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1169, + "time": 0.18163093343319917, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2168, - "time": 0.3370470929688231, + "noteOrder": 1181, + "time": 0.18350341728302594, "position": { "x": 7, "y": 0 @@ -4655,11 +4678,2978 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1193, + "time": 0.18537590113285274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1205, + "time": 0.18724838498267954, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1217, + "time": 0.18912086883250634, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1229, + "time": 0.1909933526823331, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1253, + "time": 0.19473832038198674, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1265, + "time": 0.1966108042318135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1265, + "time": 0.1966108042318135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1277, + "time": 0.1984832880816403, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1277, + "time": 0.1984832880816403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1277, + "time": 0.1984832880816403, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1290, + "time": 0.2003557719314671, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1290, + "time": 0.2003557719314671, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1302, + "time": 0.20222825578129391, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1302, + "time": 0.20222825578129391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1302, + "time": 0.20222825578129391, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1314, + "time": 0.2041007396311207, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1314, + "time": 0.2041007396311207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1326, + "time": 0.2059732234809475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1326, + "time": 0.2059732234809475, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1326, + "time": 0.2059732234809475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1338, + "time": 0.2078457073307743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1338, + "time": 0.2078457073307743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1350, + "time": 0.2097181911806011, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1350, + "time": 0.2097181911806011, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1350, + "time": 0.2097181911806011, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1446, + "time": 0.22469806197921544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1446, + "time": 0.22469806197921544, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1458, + "time": 0.22657054582904224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1458, + "time": 0.22657054582904224, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1470, + "time": 0.22844302967886904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1482, + "time": 0.23031551352869584, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1482, + "time": 0.23031551352869584, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1494, + "time": 0.2321879973785226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1506, + "time": 0.2340604812283494, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1506, + "time": 0.2340604812283494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1519, + "time": 0.2359329650781762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1531, + "time": 0.237805448928003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1531, + "time": 0.237805448928003, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1543, + "time": 0.2396779327778298, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1543, + "time": 0.2396779327778298, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1639, + "time": 0.2546578035764442, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1735, + "time": 0.26963767437505853, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1735, + "time": 0.26963767437505853, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1832, + "time": 0.2846175451736729, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1832, + "time": 0.2846175451736729, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1856, + "time": 0.2883625128733265, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1880, + "time": 0.2921074805729801, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1904, + "time": 0.2958524482726337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2169, + "time": 0.3370470929688232, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2193, + "time": 0.3407920606684767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2169, + "time": 0.3370470929688232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2193, + "time": 0.3407920606684767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2218, + "time": 0.3445370283681303, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2242, + "time": 0.348281996067784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2266, + "time": 0.35202696376743753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2290, + "time": 0.35577193146709113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2410, + "time": 0.3744967699653591, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2507, + "time": 0.3894766407639735, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2507, + "time": 0.3894766407639735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2531, + "time": 0.393221608463627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2555, + "time": 0.3969665761632806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2579, + "time": 0.4007115438629342, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2603, + "time": 0.40445651156258783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2700, + "time": 0.4194363823612022, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2700, + "time": 0.4194363823612022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4231813500608557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2748, + "time": 0.4269263177605093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2772, + "time": 0.4306712854601629, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2892, + "time": 0.44939612395843087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2916, + "time": 0.45314109165808447, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2941, + "time": 0.4568860593577381, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2965, + "time": 0.4606310270573917, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2989, + "time": 0.4643759947570452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3061, + "time": 0.475610897856006, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3139, + "time": 0.4877820428798802, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3194, + "time": 0.49620822020410077, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3206, + "time": 0.49808070405392757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3218, + "time": 0.49995318790375437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3230, + "time": 0.5018256717535812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3242, + "time": 0.5036981556034079, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3254, + "time": 0.5055706394532348, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3158, + "time": 0.49059076865462037, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3194, + "time": 0.49620822020410077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3206, + "time": 0.49808070405392757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3218, + "time": 0.49995318790375437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3230, + "time": 0.5018256717535812, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3242, + "time": 0.5036981556034079, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3254, + "time": 0.5055706394532348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3278, + "time": 0.5093156071528884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3290, + "time": 0.5111880910027151, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3290, + "time": 0.5111880910027151, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3302, + "time": 0.5130605748525419, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3302, + "time": 0.5130605748525419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3302, + "time": 0.5130605748525419, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3314, + "time": 0.5149330587023687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3314, + "time": 0.5149330587023687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3326, + "time": 0.5168055425521956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3326, + "time": 0.5168055425521956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3326, + "time": 0.5168055425521956, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3338, + "time": 0.5186780264020223, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3338, + "time": 0.5186780264020223, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3350, + "time": 0.5205505102518492, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3350, + "time": 0.5205505102518492, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3350, + "time": 0.5205505102518492, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3362, + "time": 0.5224229941016758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3362, + "time": 0.5224229941016758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3374, + "time": 0.5242954779515027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3374, + "time": 0.5242954779515027, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3374, + "time": 0.5242954779515027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3423, + "time": 0.53178541335081, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5355303810504635, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5374028649002902, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5392753487501171, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3483, + "time": 0.5411478325999439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5430203164497706, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5448928002995974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3519, + "time": 0.5467652841494243, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3531, + "time": 0.548637767999251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3543, + "time": 0.5505102518490779, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5355303810504635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5374028649002902, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3471, + "time": 0.5392753487501171, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3483, + "time": 0.5411478325999439, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5430203164497706, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5448928002995974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3519, + "time": 0.5467652841494243, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3531, + "time": 0.548637767999251, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3543, + "time": 0.5505102518490779, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3567, + "time": 0.5542552195487314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2193, - "time": 0.3407920606684767, + "noteOrder": 3579, + "time": 0.5561277033985582, "position": { "x": 7, "y": 0 @@ -4678,13 +7668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2217, - "time": 0.3445370283681303, + "noteOrder": 3579, + "time": 0.5561277033985582, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4701,13 +7691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 2241, - "time": 0.3482819960677839, + "noteOrder": 3591, + "time": 0.558000187248385, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4719,16 +7709,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2265, - "time": 0.35202696376743753, + "noteOrder": 3603, + "time": 0.5598726710982118, "position": { "x": 3, "y": 0 @@ -4747,11 +7737,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2289, - "time": 0.3557719314670911, + "noteOrder": 3603, + "time": 0.5598726710982118, "position": { "x": 4, "y": 0 @@ -4770,13 +7760,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2409, - "time": 0.374496769965359, + "noteOrder": 3615, + "time": 0.5617451549480387, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4788,18 +7778,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2506, - "time": 0.38947664076397337, + "noteOrder": 3628, + "time": 0.5636176387978653, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4811,18 +7801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2506, - "time": 0.38947664076397337, + "noteOrder": 3628, + "time": 0.5636176387978653, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4839,13 +7829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 2530, - "time": 0.39322160846362697, + "noteOrder": 3640, + "time": 0.5654901226476922, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4857,16 +7847,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2554, - "time": 0.39696657616328057, + "noteOrder": 3652, + "time": 0.567362606497519, "position": { "x": 3, "y": 0 @@ -4885,13 +7875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2578, - "time": 0.40071154386293417, + "noteOrder": 3652, + "time": 0.567362606497519, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4908,11 +7898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2602, - "time": 0.4044565115625878, + "noteOrder": 3664, + "time": 0.5692350903473458, "position": { "x": 7, "y": 0 @@ -4931,13 +7921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2699, - "time": 0.4194363823612021, + "noteOrder": 3760, + "time": 0.5842149611459602, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4954,11 +7944,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2699, - "time": 0.4194363823612021, + "noteOrder": 3760, + "time": 0.5842149611459602, "position": { "x": 3, "y": 0 @@ -4977,11 +7967,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2723, - "time": 0.4231813500608557, + "noteOrder": 3784, + "time": 0.5879599288456138, "position": { "x": 3, "y": 0 @@ -5000,11 +7990,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2747, - "time": 0.42692631776050927, + "noteOrder": 3808, + "time": 0.5917048965452674, "position": { "x": 7, "y": 0 @@ -5023,11 +8013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2771, - "time": 0.4306712854601629, + "noteOrder": 3832, + "time": 0.5954498642449209, "position": { "x": 7, "y": 0 @@ -5046,13 +8036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2891, - "time": 0.44939612395843087, + "noteOrder": 4049, + "time": 0.6291545735418033, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5064,18 +8054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2915, - "time": 0.45314109165808447, + "noteOrder": 4073, + "time": 0.6328995412414569, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5087,18 +8077,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2939, - "time": 0.4568860593577381, + "noteOrder": 4146, + "time": 0.6441344443404177, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5115,13 +8105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 2964, - "time": 0.4606310270573916, + "noteOrder": 4242, + "time": 0.659114315139032, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5133,18 +8123,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2988, - "time": 0.4643759947570452, + "noteOrder": 4266, + "time": 0.6628592828386856, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5161,13 +8151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 3060, - "time": 0.47561089785600597, + "noteOrder": 4290, + "time": 0.6666042505383392, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5179,18 +8169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3138, - "time": 0.48778204287988014, + "noteOrder": 4314, + "time": 0.6703492182379928, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5202,18 +8192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 3192, - "time": 0.4962082202041007, + "noteOrder": 4339, + "time": 0.6740941859376464, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5230,13 +8220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 167, "indexInLine": 2, "isSliding": false, - "noteOrder": 3204, - "time": 0.4980807040539275, + "noteOrder": 4363, + "time": 0.6778391536372999, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5253,13 +8243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 3, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3217, - "time": 0.4999531879037543, + "noteOrder": 4363, + "time": 0.6778391536372999, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5271,18 +8261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 4, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3229, - "time": 0.5018256717535812, + "noteOrder": 4387, + "time": 0.6815841213369535, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5294,18 +8284,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 5, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3241, - "time": 0.5036981556034079, + "noteOrder": 4387, + "time": 0.6815841213369535, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5322,13 +8312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 6, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3253, - "time": 0.5055706394532348, + "noteOrder": 4411, + "time": 0.6853290890366072, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5345,13 +8335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3156, - "time": 0.49059076865462037, + "noteOrder": 4411, + "time": 0.6853290890366072, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5368,11 +8358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3192, - "time": 0.4962082202041007, + "noteOrder": 4435, + "time": 0.6890740567362607, "position": { "x": 6, "y": 0 @@ -5391,13 +8381,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 2, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3204, - "time": 0.4980807040539275, + "noteOrder": 4435, + "time": 0.6890740567362607, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5409,18 +8399,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 3, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3217, - "time": 0.4999531879037543, + "noteOrder": 4459, + "time": 0.6928190244359143, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5432,16 +8422,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 4, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3229, - "time": 0.5018256717535812, + "noteOrder": 4531, + "time": 0.7040539275348751, "position": { "x": 6, "y": 0 @@ -5455,18 +8445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 5, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3241, - "time": 0.5036981556034079, + "noteOrder": 4628, + "time": 0.7190337983334893, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5483,13 +8473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 6, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3253, - "time": 0.5055706394532348, + "noteOrder": 4640, + "time": 0.7209062821833162, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5506,13 +8496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3277, - "time": 0.5093156071528884, + "noteOrder": 4640, + "time": 0.7209062821833162, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5529,13 +8519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3301, - "time": 0.5130605748525419, + "noteOrder": 4652, + "time": 0.722778766033143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5552,13 +8542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3325, - "time": 0.5168055425521955, + "noteOrder": 4664, + "time": 0.7246512498829698, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5570,18 +8560,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3349, - "time": 0.5205505102518491, + "noteOrder": 4664, + "time": 0.7246512498829698, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5598,11 +8588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3373, - "time": 0.5242954779515027, + "noteOrder": 4676, + "time": 0.7265237337327967, "position": { "x": 7, "y": 0 @@ -5621,13 +8611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3421, - "time": 0.5317854133508099, + "noteOrder": 4688, + "time": 0.7283962175826234, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5644,13 +8634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3445, - "time": 0.5355303810504635, + "noteOrder": 4688, + "time": 0.7283962175826234, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5662,18 +8652,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 3457, - "time": 0.5374028649002902, + "noteOrder": 4700, + "time": 0.7302687014324502, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5690,13 +8680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 182, "indexInLine": 2, "isSliding": false, - "noteOrder": 3470, - "time": 0.539275348750117, + "noteOrder": 4712, + "time": 0.732141185282277, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5713,11 +8703,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 182, "indexInLine": 3, "isSliding": false, - "noteOrder": 3482, - "time": 0.5411478325999438, + "noteOrder": 4712, + "time": 0.732141185282277, "position": { "x": 4, "y": 0 @@ -5736,13 +8726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 4, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.5430203164497706, + "noteOrder": 4821, + "time": 0.7489935399307182, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5754,18 +8744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 5, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3506, - "time": 0.5448928002995974, + "noteOrder": 4869, + "time": 0.7564834753300254, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5777,18 +8767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 6, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3518, - "time": 0.5467652841494242, + "noteOrder": 4917, + "time": 0.7639734107293324, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5800,18 +8790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 7, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, - "time": 0.548637767999251, + "noteOrder": 4941, + "time": 0.7677183784289862, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5823,18 +8813,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 8, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3542, - "time": 0.5505102518490778, + "noteOrder": 4917, + "time": 0.7639734107293324, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5851,13 +8841,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3445, - "time": 0.5355303810504635, + "noteOrder": 4965, + "time": 0.7714633461286396, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5869,18 +8859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 218, "indexInLine": 1, "isSliding": false, - "noteOrder": 3457, - "time": 0.5374028649002902, + "noteOrder": 5447, + "time": 0.8463627001217114, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5892,18 +8882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 218, "indexInLine": 2, "isSliding": false, - "noteOrder": 3470, - "time": 0.539275348750117, + "noteOrder": 5471, + "time": 0.8501076678213652, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5915,18 +8905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 3, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3482, - "time": 0.5411478325999438, + "noteOrder": 5447, + "time": 0.8463627001217114, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5943,11 +8933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 4, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3494, - "time": 0.5430203164497706, + "noteOrder": 5471, + "time": 0.8501076678213652, "position": { "x": 6, "y": 0 @@ -5966,13 +8956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 5, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.5448928002995974, + "noteOrder": 5496, + "time": 0.8538526355210186, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5989,11 +8979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 6, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3518, - "time": 0.5467652841494242, + "noteOrder": 5508, + "time": 0.8557251193708455, "position": { "x": 7, "y": 0 @@ -6012,13 +9002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 7, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3530, - "time": 0.548637767999251, + "noteOrder": 5508, + "time": 0.8557251193708455, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6035,11 +9025,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 8, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3542, - "time": 0.5505102518490778, + "noteOrder": 5520, + "time": 0.8575976032206722, "position": { "x": 6, "y": 0 @@ -6058,13 +9048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3566, - "time": 0.5542552195487314, + "noteOrder": 5520, + "time": 0.8575976032206722, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6081,13 +9071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3590, - "time": 0.558000187248385, + "noteOrder": 5520, + "time": 0.8575976032206722, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6104,11 +9094,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3614, - "time": 0.5617451549480386, + "noteOrder": 5532, + "time": 0.8594700870704991, "position": { "x": 7, "y": 0 @@ -6122,18 +9112,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3638, - "time": 0.5654901226476922, + "noteOrder": 5532, + "time": 0.8594700870704991, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6150,13 +9140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3662, - "time": 0.5692350903473458, + "noteOrder": 5544, + "time": 0.8613425709203258, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6168,16 +9158,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3759, - "time": 0.58421496114596, + "noteOrder": 5544, + "time": 0.8613425709203258, "position": { "x": 4, "y": 0 @@ -6191,16 +9181,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3759, - "time": 0.58421496114596, + "noteOrder": 5568, + "time": 0.8650875386199794, "position": { "x": 3, "y": 0 @@ -6214,16 +9204,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3783, - "time": 0.5879599288456137, + "noteOrder": 5580, + "time": 0.8669600224698062, "position": { "x": 3, "y": 0 @@ -6237,18 +9227,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3807, - "time": 0.5917048965452673, + "noteOrder": 5580, + "time": 0.8669600224698062, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6265,13 +9255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3831, - "time": 0.5954498642449209, + "noteOrder": 5592, + "time": 0.868832506319633, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6288,13 +9278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4048, - "time": 0.6291545735418033, + "noteOrder": 5592, + "time": 0.868832506319633, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6311,13 +9301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 226, "indexInLine": 1, "isSliding": false, - "noteOrder": 4072, - "time": 0.6328995412414569, + "noteOrder": 5592, + "time": 0.868832506319633, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6329,18 +9319,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 226, "indexInLine": 2, "isSliding": false, - "noteOrder": 4144, - "time": 0.6441344443404176, + "noteOrder": 5604, + "time": 0.8707049901694599, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6352,16 +9342,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4241, - "time": 0.659114315139032, + "noteOrder": 5604, + "time": 0.8707049901694599, "position": { "x": 4, "y": 0 @@ -6380,11 +9370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4265, - "time": 0.6628592828386856, + "noteOrder": 5616, + "time": 0.8725774740192866, "position": { "x": 4, "y": 0 @@ -6403,11 +9393,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4289, - "time": 0.6666042505383392, + "noteOrder": 5616, + "time": 0.8725774740192866, "position": { "x": 6, "y": 0 @@ -6421,18 +9411,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 4313, - "time": 0.6703492182379928, + "noteOrder": 5616, + "time": 0.8725774740192866, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6449,11 +9439,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4337, - "time": 0.6740941859376463, + "noteOrder": 5628, + "time": 0.8744499578691134, "position": { "x": 3, "y": 0 @@ -6467,16 +9457,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4361, - "time": 0.6778391536372999, + "noteOrder": 5628, + "time": 0.8744499578691134, "position": { "x": 4, "y": 0 @@ -6490,18 +9480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4361, - "time": 0.6778391536372999, + "noteOrder": 5640, + "time": 0.8763224417189402, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6518,11 +9508,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4385, - "time": 0.6815841213369535, + "noteOrder": 5640, + "time": 0.8763224417189402, "position": { "x": 6, "y": 0 @@ -6541,11 +9531,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4385, - "time": 0.6815841213369535, + "noteOrder": 5640, + "time": 0.8763224417189402, "position": { "x": 3, "y": 0 @@ -6564,13 +9554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4409, - "time": 0.685329089036607, + "noteOrder": 5652, + "time": 0.878194925568767, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6587,13 +9577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4409, - "time": 0.685329089036607, + "noteOrder": 5652, + "time": 0.878194925568767, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6605,18 +9595,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4433, - "time": 0.6890740567362607, + "noteOrder": 5664, + "time": 0.8800674094185938, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6628,16 +9618,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4433, - "time": 0.6890740567362607, + "noteOrder": 5664, + "time": 0.8800674094185938, "position": { "x": 3, "y": 0 @@ -6656,13 +9646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 4457, - "time": 0.6928190244359143, + "noteOrder": 5761, + "time": 0.8950472802172081, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6674,18 +9664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 236, "indexInLine": 2, "isSliding": false, - "noteOrder": 4530, - "time": 0.7040539275348751, + "noteOrder": 5773, + "time": 0.896919764067035, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6697,18 +9687,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4626, - "time": 0.7190337983334893, + "noteOrder": 5773, + "time": 0.896919764067035, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6725,11 +9715,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4650, - "time": 0.722778766033143, + "noteOrder": 5785, + "time": 0.8987922479168617, "position": { "x": 3, "y": 0 @@ -6748,13 +9738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4674, - "time": 0.7265237337327966, + "noteOrder": 5797, + "time": 0.9006647317666886, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6766,18 +9756,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4698, - "time": 0.7302687014324502, + "noteOrder": 5797, + "time": 0.9006647317666886, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6794,11 +9784,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4819, - "time": 0.748993539930718, + "noteOrder": 5833, + "time": 0.9062821833161689, "position": { "x": 7, "y": 0 @@ -6817,11 +9807,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4867, - "time": 0.7564834753300252, + "noteOrder": 5845, + "time": 0.9081546671659957, "position": { "x": 7, "y": 0 @@ -6840,13 +9830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4915, - "time": 0.7639734107293324, + "noteOrder": 5845, + "time": 0.9081546671659957, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6863,13 +9853,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, - "time": 0.767718378428986, + "noteOrder": 5881, + "time": 0.9137721187154761, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6881,18 +9871,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4915, - "time": 0.7639734107293324, + "noteOrder": 5978, + "time": 0.9287519895140904, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6909,13 +9899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 4963, - "time": 0.7714633461286396, + "noteOrder": 5978, + "time": 0.9287519895140904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6927,18 +9917,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5445, - "time": 0.8463627001217114, + "noteOrder": 5990, + "time": 0.9306244733639173, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6950,18 +9940,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5469, - "time": 0.8501076678213649, + "noteOrder": 5990, + "time": 0.9306244733639173, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6973,16 +9963,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5445, - "time": 0.8463627001217114, + "noteOrder": 6002, + "time": 0.9324969572137441, "position": { "x": 6, "y": 0 @@ -7001,13 +9991,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 1, + "lineGroupId": 245, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5469, - "time": 0.8501076678213649, + "noteOrder": 6002, + "time": 0.9324969572137441, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7024,11 +10014,11 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5493, - "time": 0.8538526355210185, + "noteOrder": 6002, + "time": 0.9324969572137441, "position": { "x": 7, "y": 0 @@ -7042,16 +10032,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5518, - "time": 0.8575976032206722, + "noteOrder": 6014, + "time": 0.9343694410635709, "position": { "x": 7, "y": 0 @@ -7070,13 +10060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5566, - "time": 0.8650875386199794, + "noteOrder": 6014, + "time": 0.9343694410635709, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7088,18 +10078,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5590, - "time": 0.868832506319633, + "noteOrder": 6026, + "time": 0.9362419249133976, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7116,13 +10106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5614, - "time": 0.8725774740192866, + "noteOrder": 6026, + "time": 0.9362419249133976, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7134,18 +10124,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5638, - "time": 0.8763224417189402, + "noteOrder": 6026, + "time": 0.9362419249133976, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7157,16 +10147,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5758, - "time": 0.8950472802172081, + "noteOrder": 6038, + "time": 0.9381144087632245, "position": { "x": 7, "y": 0 @@ -7185,13 +10175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5783, - "time": 0.8987922479168617, + "noteOrder": 6038, + "time": 0.9381144087632245, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7203,18 +10193,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5831, - "time": 0.9062821833161689, + "noteOrder": 6050, + "time": 0.9399868926130512, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7226,16 +10216,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.9137721187154761, + "noteOrder": 6062, + "time": 0.9418593764628781, "position": { "x": 3, "y": 0 @@ -7254,13 +10244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 1, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5975, - "time": 0.9287519895140904, + "noteOrder": 6062, + "time": 0.9418593764628781, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7277,11 +10267,11 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5975, - "time": 0.9287519895140904, + "noteOrder": 6074, + "time": 0.9437318603127048, "position": { "x": 7, "y": 0 @@ -7300,11 +10290,11 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5999, - "time": 0.932496957213744, + "noteOrder": 6086, + "time": 0.9456043441625317, "position": { "x": 7, "y": 0 @@ -7318,18 +10308,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6023, - "time": 0.9362419249133976, + "noteOrder": 6086, + "time": 0.9456043441625317, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7346,11 +10336,11 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6048, - "time": 0.9399868926130512, + "noteOrder": 6122, + "time": 0.951221795712012, "position": { "x": 3, "y": 0 @@ -7369,13 +10359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6072, - "time": 0.9437318603127048, + "noteOrder": 6134, + "time": 0.9530942795618389, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7387,18 +10377,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6120, - "time": 0.9512217957120119, + "noteOrder": 6134, + "time": 0.9530942795618389, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { diff --git a/tracks/Sweet Bordeaux Nightmare/347_difficulty_1b.json b/tracks/Sweet Bordeaux Nightmare/347_difficulty_1b.json index 89a654f8..78e5c063 100644 --- a/tracks/Sweet Bordeaux Nightmare/347_difficulty_1b.json +++ b/tracks/Sweet Bordeaux Nightmare/347_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.014979870798614361, + "time": 0.014979870798614363, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 337, - "time": 0.052429547795150265, + "time": 0.05242954779515027, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 434, - "time": 0.06740941859376462, + "time": 0.06740941859376463, "position": { "x": 4, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 602, - "time": 0.09362419249133976, + "noteOrder": 603, + "time": 0.09362419249133977, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 626, - "time": 0.09736916019099334, + "noteOrder": 627, + "time": 0.09736916019099337, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 651, - "time": 0.10111412789064694, + "time": 0.10111412789064696, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 675, - "time": 0.10485909559030053, + "time": 0.10485909559030054, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 819, + "noteOrder": 820, "time": 0.1273289017882221, "position": { "x": 6, @@ -434,7 +434,7 @@ }, { "noteOrder": 1205, - "time": 0.1872483849826795, + "time": 0.18724838498267954, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1205, - "time": 0.1872483849826795, + "time": 0.18724838498267954, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.2022282557812939, + "noteOrder": 1302, + "time": 0.20222825578129391, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1397, + "noteOrder": 1398, "time": 0.21720812657990826, "position": { "x": 7, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1542, - "time": 0.23967793277782978, + "noteOrder": 1543, + "time": 0.2396779327778298, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1566, - "time": 0.24342290047748338, + "noteOrder": 1567, + "time": 0.2434229004774834, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1711, - "time": 0.26589270667540493, + "time": 0.265892706675405, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1879, - "time": 0.29210748057298, + "noteOrder": 1880, + "time": 0.2921074805729801, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1903, - "time": 0.29585244827263363, + "noteOrder": 1904, + "time": 0.2958524482726337, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2024, + "noteOrder": 2025, "time": 0.31457728677090163, "position": { "x": 7, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2048, - "time": 0.31832225447055523, + "noteOrder": 2049, + "time": 0.3183222544705552, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2072, - "time": 0.3220672221702088, + "noteOrder": 2073, + "time": 0.32206722217020883, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.3258121898698624, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2120, + "noteOrder": 2121, "time": 0.329557157569516, "position": { "x": 7, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2144, + "noteOrder": 2145, "time": 0.3333021252691696, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2168, - "time": 0.3370470929688231, + "noteOrder": 2169, + "time": 0.3370470929688232, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2313, + "noteOrder": 2314, "time": 0.3595168991667447, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2313, + "noteOrder": 2314, "time": 0.3595168991667447, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2361, + "noteOrder": 2362, "time": 0.3670068345660519, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2361, + "noteOrder": 2362, "time": 0.3670068345660519, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2795, + "noteOrder": 2796, "time": 0.4344162531598165, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2843, - "time": 0.44190618855912367, + "noteOrder": 2844, + "time": 0.4419061885591237, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2891, + "noteOrder": 2892, "time": 0.44939612395843087, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2939, + "noteOrder": 2941, "time": 0.4568860593577381, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3084, - "time": 0.47935586555565957, + "noteOrder": 3085, + "time": 0.4793558655556596, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3108, - "time": 0.48310083325531317, + "noteOrder": 3109, + "time": 0.4831008332553132, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3132, - "time": 0.48684580095496677, + "noteOrder": 3133, + "time": 0.4868458009549668, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3156, + "noteOrder": 3158, "time": 0.49059076865462037, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.4943357363542739, + "noteOrder": 3182, + "time": 0.49433573635427397, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3204, - "time": 0.4980807040539275, + "noteOrder": 3206, + "time": 0.49808070405392757, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3229, + "noteOrder": 3230, "time": 0.5018256717535812, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3229, + "noteOrder": 3230, "time": 0.5018256717535812, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.5055706394532348, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.5055706394532348, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3301, + "noteOrder": 3302, "time": 0.5130605748525419, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3349, - "time": 0.5205505102518491, + "noteOrder": 3350, + "time": 0.5205505102518492, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3373, + "noteOrder": 3374, "time": 0.5242954779515027, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3399, "time": 0.5280404456511563, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3421, - "time": 0.5317854133508099, + "noteOrder": 3423, + "time": 0.53178541335081, "position": { "x": 7, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3445, + "noteOrder": 3447, "time": 0.5355303810504635, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3445, + "noteOrder": 3447, "time": 0.5355303810504635, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3495, "time": 0.5430203164497706, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3542, - "time": 0.5505102518490778, + "noteOrder": 3543, + "time": 0.5505102518490779, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3566, + "noteOrder": 3567, "time": 0.5542552195487314, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3590, + "noteOrder": 3591, "time": 0.558000187248385, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3638, + "noteOrder": 3640, "time": 0.5654901226476922, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3686, - "time": 0.5729800580469993, + "noteOrder": 3688, + "time": 0.5729800580469995, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3735, - "time": 0.5804699934463065, + "noteOrder": 3736, + "time": 0.5804699934463066, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3759, - "time": 0.58421496114596, + "noteOrder": 3760, + "time": 0.5842149611459602, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3783, - "time": 0.5879599288456137, + "noteOrder": 3784, + "time": 0.5879599288456138, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3807, - "time": 0.5917048965452673, + "noteOrder": 3808, + "time": 0.5917048965452674, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3831, + "noteOrder": 3832, "time": 0.5954498642449209, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3831, + "noteOrder": 3832, "time": 0.5954498642449209, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3879, - "time": 0.6029397996442281, + "noteOrder": 3881, + "time": 0.6029397996442282, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6104297350435351, + "noteOrder": 3929, + "time": 0.6104297350435353, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.6141747027431889, + "noteOrder": 3953, + "time": 0.614174702743189, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3951, - "time": 0.6141747027431889, + "noteOrder": 3953, + "time": 0.614174702743189, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4048, + "noteOrder": 4049, "time": 0.6291545735418033, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4072, + "noteOrder": 4073, "time": 0.6328995412414569, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4096, - "time": 0.6366445089411105, + "noteOrder": 4098, + "time": 0.6366445089411104, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4120, + "noteOrder": 4122, "time": 0.640389476640764, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4144, - "time": 0.6441344443404176, + "noteOrder": 4146, + "time": 0.6441344443404177, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4168, + "noteOrder": 4170, "time": 0.6478794120400712, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4241, + "noteOrder": 4242, "time": 0.659114315139032, "position": { "x": 6, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4265, + "noteOrder": 4266, "time": 0.6628592828386856, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4289, + "noteOrder": 4290, "time": 0.6666042505383392, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4313, + "noteOrder": 4314, "time": 0.6703492182379928, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4409, - "time": 0.685329089036607, + "noteOrder": 4411, + "time": 0.6853290890366072, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4433, + "noteOrder": 4435, "time": 0.6890740567362607, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4457, + "noteOrder": 4459, "time": 0.6928190244359143, "position": { "x": 6, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4481, - "time": 0.6965639921355679, + "noteOrder": 4483, + "time": 0.696563992135568, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4506, + "noteOrder": 4507, "time": 0.7003089598352215, "position": { "x": 3, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4530, + "noteOrder": 4531, "time": 0.7040539275348751, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 4556, "time": 0.7077988952345287, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4626, + "noteOrder": 4628, "time": 0.7190337983334893, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4650, + "noteOrder": 4652, "time": 0.722778766033143, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4674, - "time": 0.7265237337327966, + "noteOrder": 4676, + "time": 0.7265237337327967, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4698, + "noteOrder": 4700, "time": 0.7302687014324502, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4771, + "noteOrder": 4772, "time": 0.741503604531411, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4771, + "noteOrder": 4772, "time": 0.741503604531411, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4819, - "time": 0.748993539930718, + "noteOrder": 4821, + "time": 0.7489935399307182, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4843, - "time": 0.7527385076303716, + "noteOrder": 4845, + "time": 0.7527385076303718, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4867, - "time": 0.7564834753300252, + "noteOrder": 4869, + "time": 0.7564834753300254, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4891, + "noteOrder": 4893, "time": 0.7602284430296788, "position": { "x": 4, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.7789532815279467, + "noteOrder": 5013, + "time": 0.778953281527947, "position": { "x": 6, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5060, - "time": 0.7864432169272539, + "noteOrder": 5062, + "time": 0.786443216927254, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5108, - "time": 0.7939331523265611, + "noteOrder": 5110, + "time": 0.7939331523265613, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5132, - "time": 0.7976781200262147, + "noteOrder": 5134, + "time": 0.7976781200262149, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5156, - "time": 0.8014230877258683, + "noteOrder": 5158, + "time": 0.8014230877258685, "position": { "x": 3, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5180, + "noteOrder": 5182, "time": 0.805168055425522, "position": { "x": 3, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5204, - "time": 0.8089130231251755, + "noteOrder": 5206, + "time": 0.8089130231251757, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5228, - "time": 0.812657990824829, + "noteOrder": 5230, + "time": 0.8126579908248291, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5252, - "time": 0.8164029585244826, + "noteOrder": 5255, + "time": 0.8164029585244827, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5277, - "time": 0.8201479262241362, + "noteOrder": 5279, + "time": 0.8201479262241363, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5397, - "time": 0.8388727647224042, + "noteOrder": 5399, + "time": 0.8388727647224044, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5421, - "time": 0.8426177324220578, + "noteOrder": 5423, + "time": 0.842617732422058, "position": { "x": 7, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5590, + "noteOrder": 5592, "time": 0.868832506319633, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5614, + "noteOrder": 5616, "time": 0.8725774740192866, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5638, + "noteOrder": 5640, "time": 0.8763224417189402, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5662, + "noteOrder": 5664, "time": 0.8800674094185938, "position": { "x": 3, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5686, - "time": 0.8838123771182473, + "noteOrder": 5688, + "time": 0.8838123771182474, "position": { "x": 3, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5710, + "noteOrder": 5712, "time": 0.8875573448179009, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5734, - "time": 0.8913023125175545, + "noteOrder": 5737, + "time": 0.8913023125175547, "position": { "x": 7, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5758, + "noteOrder": 5761, "time": 0.8950472802172081, "position": { "x": 6, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5758, + "noteOrder": 5761, "time": 0.8950472802172081, "position": { "x": 4, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5785, "time": 0.8987922479168617, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5807, + "noteOrder": 5809, "time": 0.9025372156165153, "position": { "x": 5, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5831, + "noteOrder": 5833, "time": 0.9062821833161689, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5855, + "noteOrder": 5857, "time": 0.9100271510158225, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5855, + "noteOrder": 5857, "time": 0.9100271510158225, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5975, + "noteOrder": 5978, "time": 0.9287519895140904, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5999, - "time": 0.932496957213744, + "noteOrder": 6002, + "time": 0.9324969572137441, "position": { "x": 4, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6023, + "noteOrder": 6026, "time": 0.9362419249133976, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 6050, "time": 0.9399868926130512, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6072, + "noteOrder": 6074, "time": 0.9437318603127048, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 6098, "time": 0.9474768280123584, "position": { "x": 5, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6120, - "time": 0.9512217957120119, + "noteOrder": 6122, + "time": 0.951221795712012, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6144, - "time": 0.9549667634116655, + "noteOrder": 6146, + "time": 0.9549667634116656, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6144, - "time": 0.9549667634116655, + "noteOrder": 6146, + "time": 0.9549667634116656, "position": { "x": 4, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6168, - "time": 0.9587117311113191, + "noteOrder": 6170, + "time": 0.9587117311113192, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6192, - "time": 0.9624566988109727, + "noteOrder": 6195, + "time": 0.9624566988109728, "position": { "x": 5, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6289, - "time": 0.9774365696095871, + "noteOrder": 6291, + "time": 0.9774365696095872, "position": { "x": 6, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6289, - "time": 0.9774365696095871, + "noteOrder": 6291, + "time": 0.9774365696095872, "position": { "x": 4, "y": 0 @@ -2976,10 +2976,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.029959741597228723, + "time": 0.029959741597228726, "position": { "x": 7, "y": 0 @@ -2999,7 +2999,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, "time": 0.037449676996535904, @@ -3022,10 +3022,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.059919483194457446, + "time": 0.05991948319445745, "position": { "x": 3, "y": 0 @@ -3045,10 +3045,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 434, - "time": 0.06740941859376462, + "time": 0.06740941859376463, "position": { "x": 3, "y": 0 @@ -3068,10 +3068,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, - "time": 0.11983896638891489, + "time": 0.1198389663889149, "position": { "x": 7, "y": 0 @@ -3091,9 +3091,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 819, + "noteOrder": 820, "time": 0.1273289017882221, "position": { "x": 7, @@ -3114,10 +3114,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 867, - "time": 0.13481883718752924, + "noteOrder": 868, + "time": 0.13481883718752927, "position": { "x": 3, "y": 0 @@ -3136,11 +3136,11 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 964, - "time": 0.14979870798614361, + "noteOrder": 892, + "time": 0.13856380488718284, "position": { "x": 3, "y": 0 @@ -3154,18 +3154,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1060, - "time": 0.164778578784758, + "noteOrder": 892, + "time": 0.13856380488718284, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3182,11 +3182,34 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 1, + "lineGroupId": 22, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 916, + "time": 0.14230877258683644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1084, - "time": 0.16852354648441156, + "noteOrder": 916, + "time": 0.14230877258683644, "position": { "x": 5, "y": 0 @@ -3205,13 +3228,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1108, - "time": 0.17226851418406516, + "noteOrder": 964, + "time": 0.14979870798614361, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3228,13 +3251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1132, - "time": 0.17601348188371876, + "noteOrder": 988, + "time": 0.15354367568579724, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3251,13 +3274,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1253, - "time": 0.19473832038198668, + "noteOrder": 988, + "time": 0.15354367568579724, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3274,13 +3297,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1349, - "time": 0.20971819118060106, + "noteOrder": 1012, + "time": 0.15728864338545082, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3292,18 +3315,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1446, - "time": 0.22469806197921544, + "noteOrder": 1012, + "time": 0.15728864338545082, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3320,11 +3343,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, - "time": 0.2321879973785226, + "noteOrder": 1061, + "time": 0.164778578784758, "position": { "x": 3, "y": 0 @@ -3343,13 +3366,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1638, - "time": 0.2546578035764442, + "noteOrder": 1085, + "time": 0.1685235464844116, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3361,16 +3384,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, + "lineGroupId": 27, "indexInLine": 1, "isSliding": false, - "noteOrder": 1711, - "time": 0.26589270667540493, + "noteOrder": 1109, + "time": 0.17226851418406516, "position": { "x": 7, "y": 0 @@ -3389,13 +3412,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.2696376743750585, + "noteOrder": 1133, + "time": 0.17601348188371876, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3407,18 +3430,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1759, - "time": 0.2733826420747121, + "noteOrder": 1253, + "time": 0.19473832038198674, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3430,16 +3453,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1783, - "time": 0.2771276097743657, + "noteOrder": 1277, + "time": 0.1984832880816403, "position": { "x": 7, "y": 0 @@ -3458,13 +3481,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1807, - "time": 0.2808725774740193, + "noteOrder": 1277, + "time": 0.1984832880816403, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3481,13 +3504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1831, - "time": 0.2846175451736729, + "noteOrder": 1302, + "time": 0.20222825578129391, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3499,18 +3522,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1903, - "time": 0.29585244827263363, + "noteOrder": 1302, + "time": 0.20222825578129391, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3522,16 +3545,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1928, - "time": 0.29959741597228723, + "noteOrder": 1350, + "time": 0.2097181911806011, "position": { "x": 7, "y": 0 @@ -3545,16 +3568,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1952, - "time": 0.3033423836719408, + "noteOrder": 1374, + "time": 0.21346315888025466, "position": { "x": 7, "y": 0 @@ -3568,18 +3591,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1976, - "time": 0.30708735137159443, + "noteOrder": 1374, + "time": 0.21346315888025466, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3596,13 +3619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2000, - "time": 0.31083231907124803, + "noteOrder": 1398, + "time": 0.21720812657990826, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3619,13 +3642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2217, - "time": 0.3445370283681303, + "noteOrder": 1398, + "time": 0.21720812657990826, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3637,16 +3660,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 2241, - "time": 0.3482819960677839, + "noteOrder": 1446, + "time": 0.22469806197921544, "position": { "x": 7, "y": 0 @@ -3665,13 +3688,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2265, - "time": 0.35202696376743753, + "noteOrder": 1470, + "time": 0.22844302967886904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3683,18 +3706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2289, - "time": 0.3557719314670911, + "noteOrder": 1470, + "time": 0.22844302967886904, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3706,16 +3729,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2409, - "time": 0.374496769965359, + "noteOrder": 1494, + "time": 0.2321879973785226, "position": { "x": 3, "y": 0 @@ -3734,11 +3757,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2506, - "time": 0.38947664076397337, + "noteOrder": 1519, + "time": 0.2359329650781762, "position": { "x": 3, "y": 0 @@ -3757,13 +3780,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2506, - "time": 0.38947664076397337, + "noteOrder": 1519, + "time": 0.2359329650781762, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3775,16 +3798,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2602, - "time": 0.4044565115625878, + "noteOrder": 1639, + "time": 0.2546578035764442, "position": { "x": 7, "y": 0 @@ -3803,13 +3826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2602, - "time": 0.4044565115625878, + "noteOrder": 1711, + "time": 0.265892706675405, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3821,18 +3844,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 2699, - "time": 0.4194363823612021, + "noteOrder": 1735, + "time": 0.26963767437505853, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3849,13 +3872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2699, - "time": 0.4194363823612021, + "noteOrder": 1760, + "time": 0.27338264207471213, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3867,18 +3890,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 2795, - "time": 0.4344162531598165, + "noteOrder": 1784, + "time": 0.2771276097743657, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3895,13 +3918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2988, - "time": 0.4643759947570452, + "noteOrder": 1808, + "time": 0.28087257747401934, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3913,16 +3936,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 3012, - "time": 0.4681209624566988, + "noteOrder": 1832, + "time": 0.2846175451736729, "position": { "x": 3, "y": 0 @@ -3941,13 +3964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3036, - "time": 0.4718659301563524, + "noteOrder": 1904, + "time": 0.2958524482726337, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3959,16 +3982,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 3060, - "time": 0.47561089785600597, + "noteOrder": 1928, + "time": 0.29959741597228723, "position": { "x": 7, "y": 0 @@ -3987,13 +4010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3277, - "time": 0.5093156071528884, + "noteOrder": 1952, + "time": 0.30334238367194083, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4005,16 +4028,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 3301, - "time": 0.5130605748525419, + "noteOrder": 1976, + "time": 0.3070873513715945, "position": { "x": 3, "y": 0 @@ -4033,13 +4056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3325, - "time": 0.5168055425521955, + "noteOrder": 2001, + "time": 0.31083231907124803, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4051,16 +4074,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 3349, - "time": 0.5205505102518491, + "noteOrder": 2218, + "time": 0.3445370283681303, "position": { "x": 7, "y": 0 @@ -4079,13 +4102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3470, - "time": 0.539275348750117, + "noteOrder": 2242, + "time": 0.348281996067784, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4097,16 +4120,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.5430203164497706, + "noteOrder": 2266, + "time": 0.35202696376743753, "position": { "x": 3, "y": 0 @@ -4125,13 +4148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3518, - "time": 0.5467652841494242, + "noteOrder": 2290, + "time": 0.35577193146709113, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4143,18 +4166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 3542, - "time": 0.5505102518490778, + "noteOrder": 2410, + "time": 0.3744967699653591, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4166,16 +4189,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3614, - "time": 0.5617451549480386, + "noteOrder": 2507, + "time": 0.3894766407639735, "position": { "x": 3, "y": 0 @@ -4194,13 +4217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 3638, - "time": 0.5654901226476922, + "noteOrder": 2507, + "time": 0.3894766407639735, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4212,16 +4235,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3662, - "time": 0.5692350903473458, + "noteOrder": 2603, + "time": 0.40445651156258783, "position": { "x": 7, "y": 0 @@ -4240,13 +4263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3686, - "time": 0.5729800580469993, + "noteOrder": 2603, + "time": 0.40445651156258783, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4258,18 +4281,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3710, - "time": 0.5767250257466529, + "noteOrder": 2700, + "time": 0.4194363823612022, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4286,13 +4309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 3735, - "time": 0.5804699934463065, + "noteOrder": 2700, + "time": 0.4194363823612022, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4304,18 +4327,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3855, - "time": 0.5991948319445745, + "noteOrder": 2796, + "time": 0.4344162531598165, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4332,13 +4355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 3879, - "time": 0.6029397996442281, + "noteOrder": 2989, + "time": 0.4643759947570452, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4350,16 +4373,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3903, - "time": 0.6066847673438815, + "noteOrder": 3013, + "time": 0.4681209624566988, "position": { "x": 3, "y": 0 @@ -4378,13 +4401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 3927, - "time": 0.6104297350435351, + "noteOrder": 3037, + "time": 0.4718659301563524, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4396,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4000, - "time": 0.6216646381424961, + "noteOrder": 3061, + "time": 0.475610897856006, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4424,13 +4447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 4024, - "time": 0.6254096058421497, + "noteOrder": 3278, + "time": 0.5093156071528884, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4442,18 +4465,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4000, - "time": 0.6216646381424961, + "noteOrder": 3302, + "time": 0.5130605748525419, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4470,13 +4493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 4024, - "time": 0.6254096058421497, + "noteOrder": 3326, + "time": 0.5168055425521956, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4488,18 +4511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4192, - "time": 0.6516243797397248, + "noteOrder": 3350, + "time": 0.5205505102518492, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4516,13 +4539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 4216, - "time": 0.6553693474393784, + "noteOrder": 3471, + "time": 0.5392753487501171, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4534,18 +4557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4192, - "time": 0.6516243797397248, + "noteOrder": 3495, + "time": 0.5430203164497706, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4562,13 +4585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 4216, - "time": 0.6553693474393784, + "noteOrder": 3519, + "time": 0.5467652841494243, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4580,16 +4603,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4337, - "time": 0.6740941859376463, + "noteOrder": 3543, + "time": 0.5505102518490779, "position": { "x": 7, "y": 0 @@ -4608,13 +4631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 4361, - "time": 0.6778391536372999, + "noteOrder": 3615, + "time": 0.5617451549480387, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4626,16 +4649,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4385, - "time": 0.6815841213369535, + "noteOrder": 3640, + "time": 0.5654901226476922, "position": { "x": 3, "y": 0 @@ -4654,13 +4677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 4409, - "time": 0.685329089036607, + "noteOrder": 3664, + "time": 0.5692350903473458, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4672,18 +4695,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4578, - "time": 0.7115438629341821, + "noteOrder": 3688, + "time": 0.5729800580469995, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4695,18 +4718,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 4602, - "time": 0.7152888306338357, + "noteOrder": 3712, + "time": 0.576725025746653, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4723,13 +4746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4578, - "time": 0.7115438629341821, + "noteOrder": 3736, + "time": 0.5804699934463066, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4741,18 +4764,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 113, "indexInLine": 1, "isSliding": false, - "noteOrder": 4602, - "time": 0.7152888306338357, + "noteOrder": 3857, + "time": 0.5991948319445745, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4769,13 +4792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 113, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4722, - "time": 0.7340136691321038, + "noteOrder": 3881, + "time": 0.6029397996442282, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4787,16 +4810,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 115, "indexInLine": 1, "isSliding": false, - "noteOrder": 4747, - "time": 0.7377586368317574, + "noteOrder": 3905, + "time": 0.6066847673438817, "position": { "x": 3, "y": 0 @@ -4815,13 +4838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4722, - "time": 0.7340136691321038, + "noteOrder": 3929, + "time": 0.6104297350435353, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4833,18 +4856,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 4747, - "time": 0.7377586368317574, + "noteOrder": 4001, + "time": 0.6216646381424961, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4861,13 +4884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4915, - "time": 0.7639734107293324, + "noteOrder": 4025, + "time": 0.6254096058421497, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4884,13 +4907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 120, "indexInLine": 1, "isSliding": false, - "noteOrder": 4963, - "time": 0.7714633461286396, + "noteOrder": 4001, + "time": 0.6216646381424961, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4902,18 +4925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4915, - "time": 0.7639734107293324, + "noteOrder": 4025, + "time": 0.6254096058421497, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4930,13 +4953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 127, "indexInLine": 1, "isSliding": false, - "noteOrder": 4963, - "time": 0.7714633461286396, + "noteOrder": 4194, + "time": 0.6516243797397248, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4948,18 +4971,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5445, - "time": 0.8463627001217114, + "noteOrder": 4218, + "time": 0.6553693474393785, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4971,18 +4994,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 5469, - "time": 0.8501076678213649, + "noteOrder": 4194, + "time": 0.6516243797397248, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4999,13 +5022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5493, - "time": 0.8538526355210185, + "noteOrder": 4218, + "time": 0.6553693474393785, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5017,16 +5040,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5542, - "time": 0.8613425709203258, + "noteOrder": 4339, + "time": 0.6740941859376464, "position": { "x": 7, "y": 0 @@ -5040,18 +5063,731 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.9137721187154761, + "noteOrder": 4363, + "time": 0.6778391536372999, "position": { - "x": 3, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4387, + "time": 0.6815841213369535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4411, + "time": 0.6853290890366072, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7115438629341823, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7152888306338359, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4580, + "time": 0.7115438629341823, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7152888306338359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4724, + "time": 0.7340136691321038, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4748, + "time": 0.7377586368317575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4724, + "time": 0.7340136691321038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4748, + "time": 0.7377586368317575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7639734107293324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4965, + "time": 0.7714633461286396, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.7639734107293324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4965, + "time": 0.7714633461286396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5447, + "time": 0.8463627001217114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5471, + "time": 0.8501076678213652, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5496, + "time": 0.8538526355210186, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5520, + "time": 0.8575976032206722, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5520, + "time": 0.8575976032206722, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5544, + "time": 0.8613425709203258, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5544, + "time": 0.8613425709203258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5544, + "time": 0.8613425709203258, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5568, + "time": 0.8650875386199794, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5568, + "time": 0.8650875386199794, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5592, + "time": 0.868832506319633, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5592, + "time": 0.868832506319633, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5881, + "time": 0.9137721187154761, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5905, + "time": 0.9175170864151297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5905, + "time": 0.9175170864151297, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5929, + "time": 0.9212620541147833, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5929, + "time": 0.9212620541147833, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -5069,10 +5805,33 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5929, + "time": 0.9212620541147833, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5927, - "time": 0.9212620541147832, + "noteOrder": 5954, + "time": 0.925007021814437, "position": { "x": 3, "y": 0 @@ -5090,12 +5849,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5954, + "time": 0.925007021814437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5978, + "time": 0.9287519895140904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5978, + "time": 0.9287519895140904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6216, - "time": 0.9662016665106263, + "noteOrder": 6219, + "time": 0.9662016665106264, "position": { "x": 7, "y": 0 @@ -5115,10 +5943,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6264, - "time": 0.9736916019099335, + "noteOrder": 6267, + "time": 0.9736916019099336, "position": { "x": 7, "y": 0 @@ -5138,9 +5966,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6240, + "noteOrder": 6243, "time": 0.9699466342102799, "position": { "x": 3, @@ -5161,10 +5989,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6264, - "time": 0.9736916019099335, + "noteOrder": 6267, + "time": 0.9736916019099336, "position": { "x": 3, "y": 0 diff --git a/tracks/Sweet Bordeaux Nightmare/info.json b/tracks/Sweet Bordeaux Nightmare/info.json index d9e71670..19673466 100644 --- a/tracks/Sweet Bordeaux Nightmare/info.json +++ b/tracks/Sweet Bordeaux Nightmare/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Sweet Bordeaux Nightmare", - "SongLength": "132.780408", + "SongLength": "122.827755", "SongAuthorName": "\u304b\u3081\u308a\u3042", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Switch SPONGEBOB EDITION/331_difficulty_1a.json b/tracks/Switch SPONGEBOB EDITION/331_difficulty_1a.json index 97057683..b2664460 100644 --- a/tracks/Switch SPONGEBOB EDITION/331_difficulty_1a.json +++ b/tracks/Switch SPONGEBOB EDITION/331_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 649, - "time": 0.10079328044797013, + "time": 0.10079328044797012, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 697, - "time": 0.10825944937004198, + "time": 0.10825944937004199, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 745, - "time": 0.11572561829211385, + "time": 0.11572561829211386, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 913, - "time": 0.14185720951936534, + "time": 0.14185720951936537, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 985, - "time": 0.15305646290247313, + "time": 0.15305646290247316, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.16798880074661687, + "noteOrder": 1082, + "time": 0.1679888007466169, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.17545496966868876, + "noteOrder": 1130, + "time": 0.17545496966868873, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.1829211385907606, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1225, - "time": 0.19038730751283245, + "noteOrder": 1226, + "time": 0.19038730751283248, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.19412039197386838, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1261, + "noteOrder": 1262, "time": 0.19598693420438637, "position": { "x": 5, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.19785347643490434, "position": { "x": 6, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.20158656089594026, + "noteOrder": 1298, + "time": 0.20158656089594024, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1309, + "noteOrder": 1310, "time": 0.20345310312645823, "position": { "x": 5, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1321, - "time": 0.20531964535697617, + "noteOrder": 1322, + "time": 0.2053196453569762, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.20905272981801212, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1357, - "time": 0.21091927204853006, + "noteOrder": 1358, + "time": 0.2109192720485301, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.21278581427904805, + "noteOrder": 1370, + "time": 0.21278581427904802, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1381, + "noteOrder": 1382, "time": 0.21465235650956602, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.21651889874008395, + "noteOrder": 1394, + "time": 0.21651889874008398, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1405, + "noteOrder": 1406, "time": 0.21838544097060195, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.2202519832011199, "position": { "x": 3, @@ -634,7 +634,7 @@ }, { "noteOrder": 1658, - "time": 0.2575828278114792, + "time": 0.25758282781147923, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.2799813345776948, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.28744750349976667, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1898, - "time": 0.29491367242183847, + "noteOrder": 1899, + "time": 0.2949136724218385, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1994, - "time": 0.30984601026598224, + "noteOrder": 1995, + "time": 0.3098460102659823, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.32477834811012596, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2186, - "time": 0.33971068595426973, + "noteOrder": 2187, + "time": 0.3397106859542697, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2258, - "time": 0.3509099393373775, + "noteOrder": 2259, + "time": 0.35090993933737746, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2270, + "noteOrder": 2271, "time": 0.35277648156789543, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.3546430237984134, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2500, "time": 0.38824078394773676, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39570695286980867, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.39944003733084454, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.41810545963602425, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2739, - "time": 0.4255716285580961, + "noteOrder": 2740, + "time": 0.42557162855809605, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2763, + "noteOrder": 2764, "time": 0.42930471301913203, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2787, - "time": 0.4330377974801679, + "noteOrder": 2788, + "time": 0.43303779748016796, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.4349043397106859, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.4367708819412039, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.4405039664022398, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2848, "time": 0.4423705086327578, "position": { "x": 5, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4442370508632757, + "noteOrder": 2860, + "time": 0.44423705086327575, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.4479701353243117, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2896, "time": 0.4498366775548296, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.4517032197853476, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2920, "time": 0.4535697620158656, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2931, - "time": 0.4554363042463835, + "noteOrder": 2932, + "time": 0.45543630424638354, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2943, + "noteOrder": 2944, "time": 0.4573028464769015, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2955, + "noteOrder": 2956, "time": 0.45916938870741947, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3293, "time": 0.5114325711619225, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.5151656556229584, + "noteOrder": 3317, + "time": 0.5151656556229585, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.5151656556229584, + "noteOrder": 3317, + "time": 0.5151656556229585, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3339, + "noteOrder": 3341, "time": 0.5188987400839944, "position": { "x": 5, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3339, + "noteOrder": 3341, "time": 0.5188987400839944, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 3485, "time": 0.54129724685021, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3509, "time": 0.5450303313112459, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3509, "time": 0.5450303313112459, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3533, "time": 0.5487634157722818, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3533, "time": 0.5487634157722818, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3652, - "time": 0.5674288380774614, + "noteOrder": 3653, + "time": 0.5674288380774615, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.5711619225384974, + "noteOrder": 3677, + "time": 0.5711619225384973, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3676, - "time": 0.5711619225384974, + "noteOrder": 3677, + "time": 0.5711619225384973, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3749, "time": 0.5823611759216052, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.5860942603826411, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.5860942603826411, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.6756882874475034, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.6794213719085395, + "noteOrder": 4374, + "time": 0.6794213719085394, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.6831544563695753, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4444, + "noteOrder": 4446, "time": 0.6906206252916472, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.6943537097526831, + "noteOrder": 4470, + "time": 0.6943537097526832, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4494, "time": 0.698086794213719, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4542, "time": 0.7055529631357909, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4589, - "time": 0.7130191320578628, + "noteOrder": 4590, + "time": 0.7130191320578627, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4613, - "time": 0.7167522165188986, + "noteOrder": 4614, + "time": 0.7167522165188988, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4829, + "noteOrder": 4831, "time": 0.750349976668222, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.7540830611292579, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.7540830611292579, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4877, - "time": 0.757816145590294, + "noteOrder": 4879, + "time": 0.7578161455902939, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4877, - "time": 0.757816145590294, + "noteOrder": 4879, + "time": 0.7578161455902939, "position": { "x": 5, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5021, - "time": 0.7802146523565096, + "noteOrder": 5023, + "time": 0.7802146523565094, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.7839477368175455, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.7839477368175455, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.7876808212785813, + "noteOrder": 5071, + "time": 0.7876808212785814, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.7876808212785813, + "noteOrder": 5071, + "time": 0.7876808212785814, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.8063462435837611, + "noteOrder": 5191, + "time": 0.806346243583761, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5213, - "time": 0.8100793280447969, + "noteOrder": 5215, + "time": 0.810079328044797, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5213, - "time": 0.8100793280447969, + "noteOrder": 5215, + "time": 0.810079328044797, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5285, - "time": 0.8212785814279047, + "noteOrder": 5287, + "time": 0.8212785814279048, "position": { "x": 3, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5309, - "time": 0.8250116658889407, + "noteOrder": 5311, + "time": 0.8250116658889406, "position": { "x": 4, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5309, - "time": 0.8250116658889407, + "noteOrder": 5311, + "time": 0.8250116658889406, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5598, + "noteOrder": 5600, "time": 0.8698086794213719, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.8735417638824078, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.8735417638824078, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5646, - "time": 0.8772748483434436, + "noteOrder": 5648, + "time": 0.8772748483434437, "position": { "x": 5, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5646, - "time": 0.8772748483434436, + "noteOrder": 5648, + "time": 0.8772748483434437, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5790, + "noteOrder": 5792, "time": 0.8996733551096592, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.9034064395706952, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.9034064395706952, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5840, "time": 0.9071395240317311, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5840, "time": 0.9071395240317311, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5958, - "time": 0.9258049463369108, + "noteOrder": 5960, + "time": 0.9258049463369109, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5982, + "noteOrder": 5984, "time": 0.9295380307979467, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5982, + "noteOrder": 5984, "time": 0.9295380307979467, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.9407372841810545, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6078, - "time": 0.9444703686420906, + "noteOrder": 6081, + "time": 0.9444703686420904, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6078, - "time": 0.9444703686420906, + "noteOrder": 6081, + "time": 0.9444703686420904, "position": { "x": 6, "y": 0 @@ -2376,9 +2376,9 @@ "lineNodes": [ { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, + "noteOrder": 481, "time": 0.07466168922071861, "position": { "x": 7, @@ -2399,10 +2399,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.08959402706486233, + "time": 0.08959402706486234, "position": { "x": 7, "y": 0 @@ -2422,10 +2422,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.08959402706486233, + "time": 0.08959402706486234, "position": { "x": 3, "y": 0 @@ -2445,7 +2445,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.10452636490900606, @@ -2468,7 +2468,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.10452636490900606, @@ -2491,10 +2491,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.11945870275314979, + "time": 0.11945870275314978, "position": { "x": 7, "y": 0 @@ -2514,10 +2514,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, - "time": 0.11945870275314979, + "time": 0.11945870275314978, "position": { "x": 3, "y": 0 @@ -2537,7 +2537,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, "time": 0.13065795613625758, @@ -2560,7 +2560,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.1343910405972935, @@ -2583,7 +2583,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 961, "time": 0.14932337844143723, @@ -2606,7 +2606,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, "time": 0.14932337844143723, @@ -2629,7 +2629,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1057, "time": 0.16425571628558094, @@ -2652,7 +2652,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1057, "time": 0.16425571628558094, @@ -2675,9 +2675,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.1717218852076528, "position": { "x": 6, @@ -2698,9 +2698,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.1717218852076528, "position": { "x": 3, @@ -2721,10 +2721,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.17918805412972466, + "noteOrder": 1154, + "time": 0.1791880541297247, "position": { "x": 5, "y": 0 @@ -2744,10 +2744,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.17918805412972466, + "noteOrder": 1154, + "time": 0.1791880541297247, "position": { "x": 7, "y": 0 @@ -2767,9 +2767,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.1829211385907606, "position": { "x": 8, @@ -2790,9 +2790,9 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.18665422305179655, "position": { "x": 7, @@ -2813,9 +2813,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.18665422305179655, "position": { "x": 3, @@ -2836,10 +2836,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1225, - "time": 0.19038730751283245, + "noteOrder": 1226, + "time": 0.19038730751283248, "position": { "x": 2, "y": 0 @@ -2859,9 +2859,9 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.19412039197386838, "position": { "x": 3, @@ -2882,9 +2882,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.22398506766215584, "position": { "x": 7, @@ -2904,13 +2904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.22771815212319174, + "noteOrder": 1454, + "time": 0.2258516098926738, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2922,18 +2922,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.2314512365842277, + "noteOrder": 1454, + "time": 0.2258516098926738, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2950,11 +2950,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1514, - "time": 0.23518432104526363, + "noteOrder": 1466, + "time": 0.22771815212319177, "position": { "x": 3, "y": 0 @@ -2973,11 +2973,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.2538497433504433, + "noteOrder": 1478, + "time": 0.22958469435370973, "position": { "x": 3, "y": 0 @@ -2996,13 +2996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.26131591227251516, + "noteOrder": 1478, + "time": 0.22958469435370973, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3019,13 +3019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.26131591227251516, + "noteOrder": 1490, + "time": 0.23145123658422773, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3042,13 +3042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.268782081194587, + "noteOrder": 1502, + "time": 0.23331777881474566, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3065,13 +3065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1730, - "time": 0.268782081194587, + "noteOrder": 1502, + "time": 0.23331777881474566, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3083,16 +3083,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 1754, - "time": 0.27251516565562295, + "noteOrder": 1514, + "time": 0.23518432104526363, "position": { "x": 3, "y": 0 @@ -3111,13 +3111,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1754, - "time": 0.27251516565562295, + "noteOrder": 1526, + "time": 0.23705086327578162, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3129,18 +3129,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1778, - "time": 0.2762482501166589, + "noteOrder": 1526, + "time": 0.23705086327578162, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3152,16 +3152,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, - "time": 0.2762482501166589, + "noteOrder": 1634, + "time": 0.25384974335044325, "position": { "x": 3, "y": 0 @@ -3180,11 +3180,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1802, - "time": 0.2799813345776948, + "noteOrder": 1682, + "time": 0.26131591227251516, "position": { "x": 3, "y": 0 @@ -3203,13 +3203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2837144190387307, + "noteOrder": 1682, + "time": 0.26131591227251516, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3226,13 +3226,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, - "time": 0.2911805879608026, + "noteOrder": 1730, + "time": 0.268782081194587, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3249,13 +3249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, - "time": 0.2911805879608026, + "noteOrder": 1730, + "time": 0.268782081194587, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3272,13 +3272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.29864675688287445, + "noteOrder": 1754, + "time": 0.27251516565562295, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3295,13 +3295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.29864675688287445, + "noteOrder": 1754, + "time": 0.27251516565562295, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3318,13 +3318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1946, - "time": 0.3023798413439104, + "noteOrder": 1778, + "time": 0.2762482501166589, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3341,13 +3341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1946, - "time": 0.3023798413439104, + "noteOrder": 1778, + "time": 0.2762482501166589, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3364,13 +3364,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.30611292580494626, + "noteOrder": 1803, + "time": 0.2799813345776948, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3387,11 +3387,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1970, - "time": 0.30611292580494626, + "noteOrder": 1827, + "time": 0.28371441903873074, "position": { "x": 7, "y": 0 @@ -3410,11 +3410,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1994, - "time": 0.30984601026598224, + "noteOrder": 1875, + "time": 0.2911805879608026, "position": { "x": 7, "y": 0 @@ -3433,13 +3433,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, - "time": 0.31357909472701817, + "noteOrder": 1875, + "time": 0.2911805879608026, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3456,13 +3456,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2042, - "time": 0.3173121791880541, + "noteOrder": 1923, + "time": 0.29864675688287445, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3474,18 +3474,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2066, - "time": 0.32104526364909003, + "noteOrder": 1923, + "time": 0.29864675688287445, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3497,16 +3497,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, - "time": 0.3285114325711619, + "noteOrder": 1947, + "time": 0.3023798413439104, "position": { "x": 7, "y": 0 @@ -3525,13 +3525,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, - "time": 0.3322445170321978, + "noteOrder": 1947, + "time": 0.3023798413439104, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3548,13 +3548,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2162, - "time": 0.33597760149323375, + "noteOrder": 1971, + "time": 0.3061129258049463, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3566,18 +3566,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2210, - "time": 0.3434437704153056, + "noteOrder": 1971, + "time": 0.3061129258049463, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3589,16 +3589,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2234, - "time": 0.34717685487634153, + "noteOrder": 1995, + "time": 0.3098460102659823, "position": { "x": 7, "y": 0 @@ -3617,13 +3617,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, - "time": 0.3733084461035931, + "noteOrder": 2019, + "time": 0.31357909472701817, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3635,16 +3635,3029 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2031, + "time": 0.31544563695753614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2031, + "time": 0.31544563695753614, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2043, + "time": 0.3173121791880541, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31917872141857206, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2055, + "time": 0.31917872141857206, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.32104526364909003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2079, + "time": 0.32291180587960805, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2079, + "time": 0.32291180587960805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2115, + "time": 0.3285114325711619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2127, + "time": 0.33037797480167985, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2127, + "time": 0.33037797480167985, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2139, + "time": 0.3322445170321978, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2151, + "time": 0.33411105926271584, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2151, + "time": 0.33411105926271584, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.3359776014932338, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2175, + "time": 0.3378441437237517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2175, + "time": 0.3378441437237517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3434437704153056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2223, + "time": 0.3453103126458236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2223, + "time": 0.3453103126458236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3471768548763416, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3490433971068595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2247, + "time": 0.3490433971068595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.3733084461035931, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2415, + "time": 0.375174988334111, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2415, + "time": 0.375174988334111, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2427, + "time": 0.37704153056462897, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2427, + "time": 0.37704153056462897, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2427, + "time": 0.37704153056462897, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2439, + "time": 0.37890807279514693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2439, + "time": 0.37890807279514693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2451, + "time": 0.38077461502566495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2451, + "time": 0.38077461502566495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.38077461502566495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2463, + "time": 0.3826411572561829, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2463, + "time": 0.3826411572561829, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3845076994867009, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3845076994867009, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2475, + "time": 0.3845076994867009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2487, + "time": 0.38637424171721885, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2487, + "time": 0.38637424171721885, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2500, + "time": 0.38824078394773676, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2500, + "time": 0.38824078394773676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2524, + "time": 0.39197386840877274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2572, + "time": 0.39944003733084454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.4031731217918805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4050396640223985, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2608, + "time": 0.4050396640223985, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40690620625291646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40690620625291646, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40690620625291646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4087727484834344, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2632, + "time": 0.4087727484834344, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2644, + "time": 0.4106392907139524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2644, + "time": 0.4106392907139524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.4106392907139524, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2656, + "time": 0.4125058329444703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2656, + "time": 0.4125058329444703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2668, + "time": 0.41437237517498826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2668, + "time": 0.41437237517498826, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2668, + "time": 0.41437237517498826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2680, + "time": 0.4162389174055063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2680, + "time": 0.4162389174055063, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2692, + "time": 0.41810545963602425, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2692, + "time": 0.41810545963602425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2716, + "time": 0.4218385440970602, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2764, + "time": 0.42930471301913203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2980, + "time": 0.46290247316845545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2992, + "time": 0.46476901539897336, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2992, + "time": 0.46476901539897336, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3004, + "time": 0.4666355576294913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3016, + "time": 0.4685020998600093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3016, + "time": 0.4685020998600093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3028, + "time": 0.47036864209052726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3040, + "time": 0.4722351843210452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3040, + "time": 0.4722351843210452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3052, + "time": 0.47410172655156324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3064, + "time": 0.47596826878208115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3064, + "time": 0.47596826878208115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.4778348110125991, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3124, + "time": 0.48530097993467103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3221, + "time": 0.5002333177788147, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3233, + "time": 0.5020998600093327, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3233, + "time": 0.5020998600093327, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5039664022398507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3257, + "time": 0.5058329444703686, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3257, + "time": 0.5058329444703686, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3269, + "time": 0.5076994867008865, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3281, + "time": 0.5095660289314046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3281, + "time": 0.5095660289314046, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3413, + "time": 0.5300979934671022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3425, + "time": 0.5319645356976201, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3425, + "time": 0.5319645356976201, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3437, + "time": 0.5338310779281381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3449, + "time": 0.5356976201586561, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3449, + "time": 0.5356976201586561, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3461, + "time": 0.537564162389174, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3473, + "time": 0.539430704619692, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3473, + "time": 0.539430704619692, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3605, + "time": 0.5599626691553896, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3617, + "time": 0.5618292113859076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3617, + "time": 0.5618292113859076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3629, + "time": 0.5636957536164255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3641, + "time": 0.5655622958469435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3641, + "time": 0.5655622958469435, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3701, + "time": 0.5748950069995333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3713, + "time": 0.5767615492300513, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3713, + "time": 0.5767615492300513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3725, + "time": 0.5786280914605693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3737, + "time": 0.5804946336910872, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3737, + "time": 0.5804946336910872, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3797, + "time": 0.589827344843677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3809, + "time": 0.591693887074195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3809, + "time": 0.591693887074195, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3821, + "time": 0.593560429304713, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3833, + "time": 0.5954269715352309, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3833, + "time": 0.5954269715352309, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3845, + "time": 0.5972935137657489, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.6122258516098926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3845, + "time": 0.5972935137657489, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.6122258516098926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4326, + "time": 0.6719552029864676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4422, + "time": 0.6868875408306112, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4422, + "time": 0.6868875408306112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4518, + "time": 0.7018198786747549, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4518, + "time": 0.7018198786747549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4566, + "time": 0.7092860475968268, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4566, + "time": 0.7092860475968268, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4614, + "time": 0.7167522165188988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.7391507232851143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4771, + "time": 0.7410172655156322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2426, - "time": 0.37704153056462897, + "noteOrder": 4771, + "time": 0.7410172655156322, "position": { "x": 6, "y": 0 @@ -3658,18 +6671,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2450, - "time": 0.3807746150256649, + "noteOrder": 4783, + "time": 0.7428838077461503, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3681,18 +6694,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2474, - "time": 0.3845076994867009, + "noteOrder": 4795, + "time": 0.7447503499766681, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3709,11 +6722,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2523, - "time": 0.39197386840877274, + "noteOrder": 4795, + "time": 0.7447503499766681, "position": { "x": 5, "y": 0 @@ -3732,13 +6745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 176, "indexInLine": 1, "isSliding": false, - "noteOrder": 2571, - "time": 0.39944003733084454, + "noteOrder": 4807, + "time": 0.7466168922071862, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3750,18 +6763,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.40317312179188053, + "noteOrder": 4819, + "time": 0.7484834344377042, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3773,18 +6786,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2619, - "time": 0.40690620625291646, + "noteOrder": 4819, + "time": 0.7484834344377042, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3801,13 +6814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.41063929071395233, + "noteOrder": 4951, + "time": 0.7690153989734018, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3824,11 +6837,34 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4963, + "time": 0.7708819412039196, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2667, - "time": 0.4143723751749883, + "noteOrder": 4963, + "time": 0.7708819412039196, "position": { "x": 4, "y": 0 @@ -3842,18 +6878,41 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4975, + "time": 0.7727484834344377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2715, - "time": 0.4218385440970601, + "noteOrder": 4987, + "time": 0.7746150256649557, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3870,11 +6929,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2763, - "time": 0.42930471301913203, + "noteOrder": 4987, + "time": 0.7746150256649557, "position": { "x": 5, "y": 0 @@ -3893,11 +6952,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, - "time": 0.4629024731684554, + "noteOrder": 4999, + "time": 0.7764815678954735, "position": { "x": 3, "y": 0 @@ -3916,13 +6975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3003, - "time": 0.46663555762949127, + "noteOrder": 5011, + "time": 0.7783481101259916, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3934,18 +6993,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3027, - "time": 0.47036864209052726, + "noteOrder": 5011, + "time": 0.7783481101259916, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3962,11 +7021,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3051, - "time": 0.4741017265515632, + "noteOrder": 5143, + "time": 0.7988800746616891, "position": { "x": 7, "y": 0 @@ -3985,13 +7044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, - "time": 0.47783481101259917, + "noteOrder": 5155, + "time": 0.8007466168922072, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4003,18 +7062,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5155, + "time": 0.8007466168922072, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 3123, - "time": 0.485300979934671, + "noteOrder": 5167, + "time": 0.802613159122725, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4031,13 +7113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, - "time": 0.5002333177788147, + "noteOrder": 5179, + "time": 0.8044797013532431, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4049,18 +7131,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3243, - "time": 0.5039664022398506, + "noteOrder": 5179, + "time": 0.8044797013532431, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4077,13 +7159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.5076994867008866, + "noteOrder": 5239, + "time": 0.8138124125058329, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4095,16 +7177,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, - "time": 0.5300979934671022, + "noteOrder": 5251, + "time": 0.8156789547363508, "position": { "x": 3, "y": 0 @@ -4123,11 +7205,34 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3435, - "time": 0.5338310779281381, + "noteOrder": 5251, + "time": 0.8156789547363508, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5263, + "time": 0.8175454969668688, "position": { "x": 6, "y": 0 @@ -4146,13 +7251,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3459, - "time": 0.537564162389174, + "noteOrder": 5275, + "time": 0.8194120391973868, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4164,16 +7269,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3604, - "time": 0.5599626691553896, + "noteOrder": 5275, + "time": 0.8194120391973868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5335, + "time": 0.8287447503499765, "position": { "x": 7, "y": 0 @@ -4192,13 +7320,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3628, - "time": 0.5636957536164255, + "noteOrder": 5348, + "time": 0.8306112925804946, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4210,18 +7338,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3700, - "time": 0.5748950069995333, + "noteOrder": 5348, + "time": 0.8306112925804946, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4233,18 +7361,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3724, - "time": 0.5786280914605691, + "noteOrder": 5360, + "time": 0.8324778348110126, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4256,18 +7384,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, - "time": 0.5898273448436769, + "noteOrder": 5372, + "time": 0.8343443770415305, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4279,18 +7407,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3820, - "time": 0.593560429304713, + "noteOrder": 5372, + "time": 0.8343443770415305, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4307,13 +7435,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3844, - "time": 0.5972935137657489, + "noteOrder": 5528, + "time": 0.8586094260382641, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4325,18 +7453,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3940, - "time": 0.6122258516098925, + "noteOrder": 5540, + "time": 0.860475968268782, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4348,18 +7476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3844, - "time": 0.5972935137657489, + "noteOrder": 5540, + "time": 0.860475968268782, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4376,13 +7504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 3940, - "time": 0.6122258516098925, + "noteOrder": 5552, + "time": 0.8623425104993, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4394,18 +7522,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4324, - "time": 0.6719552029864675, + "noteOrder": 5564, + "time": 0.8642090527298179, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4422,11 +7550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4420, - "time": 0.6868875408306112, + "noteOrder": 5564, + "time": 0.8642090527298179, "position": { "x": 5, "y": 0 @@ -4445,11 +7573,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4420, - "time": 0.6868875408306112, + "noteOrder": 5576, + "time": 0.8660755949603359, "position": { "x": 7, "y": 0 @@ -4468,13 +7596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4516, - "time": 0.701819878674755, + "noteOrder": 5588, + "time": 0.8679421371908539, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4491,13 +7619,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4516, - "time": 0.701819878674755, + "noteOrder": 5588, + "time": 0.8679421371908539, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4509,16 +7637,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4565, - "time": 0.7092860475968268, + "noteOrder": 5720, + "time": 0.8884741017265515, "position": { "x": 3, "y": 0 @@ -4537,13 +7665,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, - "time": 0.7092860475968268, + "noteOrder": 5732, + "time": 0.8903406439570695, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4555,18 +7683,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4613, - "time": 0.7167522165188986, + "noteOrder": 5732, + "time": 0.8903406439570695, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4578,18 +7706,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4757, - "time": 0.7391507232851142, + "noteOrder": 5744, + "time": 0.8922071861875874, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4606,13 +7734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4781, - "time": 0.7428838077461501, + "noteOrder": 5756, + "time": 0.8940737284181054, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4624,18 +7752,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4805, - "time": 0.7466168922071862, + "noteOrder": 5756, + "time": 0.8940737284181054, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4652,11 +7780,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4949, - "time": 0.7690153989734018, + "noteOrder": 5768, + "time": 0.8959402706486234, "position": { "x": 3, "y": 0 @@ -4675,13 +7803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4973, - "time": 0.7727484834344377, + "noteOrder": 5780, + "time": 0.8978068128791413, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4693,18 +7821,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4997, - "time": 0.7764815678954735, + "noteOrder": 5780, + "time": 0.8978068128791413, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4721,11 +7849,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5141, - "time": 0.7988800746616891, + "noteOrder": 5912, + "time": 0.9183387774148389, "position": { "x": 7, "y": 0 @@ -4744,13 +7872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5165, - "time": 0.8026131591227251, + "noteOrder": 5924, + "time": 0.9202053196453569, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4762,18 +7890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5237, - "time": 0.8138124125058329, + "noteOrder": 5924, + "time": 0.9202053196453569, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4785,18 +7913,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5261, - "time": 0.8175454969668688, + "noteOrder": 5936, + "time": 0.9220718618758749, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4808,18 +7936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5333, - "time": 0.8287447503499766, + "noteOrder": 5948, + "time": 0.9239384041063928, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4831,18 +7959,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5357, - "time": 0.8324778348110125, + "noteOrder": 5948, + "time": 0.9239384041063928, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4859,13 +7987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5525, - "time": 0.8586094260382641, + "noteOrder": 6008, + "time": 0.9332711152589827, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4877,18 +8005,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5550, - "time": 0.8623425104993, + "noteOrder": 6020, + "time": 0.9351376574895006, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4905,13 +8033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5574, - "time": 0.8660755949603358, + "noteOrder": 6020, + "time": 0.9351376574895006, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4923,18 +8051,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5718, - "time": 0.8884741017265514, + "noteOrder": 6032, + "time": 0.9370041997200186, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4946,16 +8074,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5742, - "time": 0.8922071861875874, + "noteOrder": 6044, + "time": 0.9388707419505367, "position": { "x": 6, "y": 0 @@ -4974,13 +8102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5766, - "time": 0.8959402706486234, + "noteOrder": 6044, + "time": 0.9388707419505367, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4992,16 +8120,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5910, - "time": 0.9183387774148389, + "noteOrder": 6105, + "time": 0.9482034531031265, "position": { "x": 7, "y": 0 @@ -5020,13 +8148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5934, - "time": 0.9220718618758748, + "noteOrder": 6117, + "time": 0.9500699953336443, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5038,18 +8166,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6006, - "time": 0.9332711152589825, + "noteOrder": 6117, + "time": 0.9500699953336443, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5061,18 +8189,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6030, - "time": 0.9370041997200186, + "noteOrder": 6129, + "time": 0.9519365375641623, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5084,18 +8212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6102, - "time": 0.9482034531031264, + "noteOrder": 6141, + "time": 0.9538030797946803, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5107,18 +8235,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6126, - "time": 0.9519365375641623, + "noteOrder": 6141, + "time": 0.9538030797946803, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5136,10 +8264,10 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6150, - "time": 0.9556696220251983, + "noteOrder": 6153, + "time": 0.9556696220251982, "position": { "x": 7, "y": 0 @@ -5159,10 +8287,10 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6246, - "time": 0.970601959869342, + "noteOrder": 6249, + "time": 0.9706019598693421, "position": { "x": 7, "y": 0 @@ -5182,10 +8310,10 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6150, - "time": 0.9556696220251983, + "noteOrder": 6153, + "time": 0.9556696220251982, "position": { "x": 3, "y": 0 @@ -5205,10 +8333,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6246, - "time": 0.970601959869342, + "noteOrder": 6249, + "time": 0.9706019598693421, "position": { "x": 3, "y": 0 diff --git a/tracks/Switch SPONGEBOB EDITION/331_difficulty_1b.json b/tracks/Switch SPONGEBOB EDITION/331_difficulty_1b.json index a51256d8..894032a5 100644 --- a/tracks/Switch SPONGEBOB EDITION/331_difficulty_1b.json +++ b/tracks/Switch SPONGEBOB EDITION/331_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 480, + "noteOrder": 481, "time": 0.07466168922071861, "position": { "x": 7, @@ -54,7 +54,7 @@ }, { "noteOrder": 577, - "time": 0.08959402706486233, + "time": 0.08959402706486234, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 913, - "time": 0.14185720951936534, + "time": 0.14185720951936537, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 985, - "time": 0.15305646290247313, + "time": 0.15305646290247316, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.16798880074661687, + "noteOrder": 1082, + "time": 0.1679888007466169, "position": { "x": 3, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1106, "time": 0.1717218852076528, "position": { "x": 7, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.17545496966868876, + "noteOrder": 1130, + "time": 0.17545496966868873, "position": { "x": 3, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1153, - "time": 0.17918805412972466, + "noteOrder": 1154, + "time": 0.1791880541297247, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.1829211385907606, "position": { "x": 5, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.18665422305179655, "position": { "x": 3, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1225, - "time": 0.19038730751283245, + "noteOrder": 1226, + "time": 0.19038730751283248, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.19785347643490434, "position": { "x": 5, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1321, - "time": 0.20531964535697617, + "noteOrder": 1322, + "time": 0.2053196453569762, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.21278581427904805, + "noteOrder": 1370, + "time": 0.21278581427904802, "position": { "x": 5, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.2202519832011199, "position": { "x": 6, @@ -554,7 +554,7 @@ }, { "noteOrder": 1634, - "time": 0.2538497433504433, + "time": 0.25384974335044325, "position": { "x": 6, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1658, - "time": 0.2575828278114792, + "time": 0.25758282781147923, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1826, - "time": 0.2837144190387307, + "noteOrder": 1827, + "time": 0.28371441903873074, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1826, - "time": 0.2837144190387307, + "noteOrder": 1827, + "time": 0.28371441903873074, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.28744750349976667, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.28744750349976667, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2500, "time": 0.38824078394773676, "position": { "x": 3, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.39197386840877274, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39570695286980867, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.41810545963602425, "position": { "x": 7, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2715, - "time": 0.4218385440970601, + "noteOrder": 2716, + "time": 0.4218385440970602, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2739, - "time": 0.4255716285580961, + "noteOrder": 2740, + "time": 0.42557162855809605, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.4367708819412039, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4442370508632757, + "noteOrder": 2860, + "time": 0.44423705086327575, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2907, + "noteOrder": 2908, "time": 0.4517032197853476, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2955, + "noteOrder": 2956, "time": 0.45916938870741947, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.4741017265515632, + "noteOrder": 3052, + "time": 0.47410172655156324, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.5151656556229584, + "noteOrder": 3317, + "time": 0.5151656556229585, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3339, + "noteOrder": 3341, "time": 0.5188987400839944, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3507, + "noteOrder": 3509, "time": 0.5450303313112459, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3533, "time": 0.5487634157722818, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.5898273448436769, + "noteOrder": 3797, + "time": 0.589827344843677, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.593560429304713, "position": { "x": 6, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4324, - "time": 0.6719552029864675, + "noteOrder": 4326, + "time": 0.6719552029864676, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.6756882874475034, "position": { "x": 6, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.6794213719085395, + "noteOrder": 4374, + "time": 0.6794213719085394, "position": { "x": 6, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.6831544563695753, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.6868875408306112, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4444, + "noteOrder": 4446, "time": 0.6906206252916472, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.6943537097526831, + "noteOrder": 4470, + "time": 0.6943537097526832, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4494, "time": 0.698086794213719, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4542, "time": 0.7055529631357909, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4589, - "time": 0.7130191320578628, + "noteOrder": 4590, + "time": 0.7130191320578627, "position": { "x": 5, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4853, + "noteOrder": 4855, "time": 0.7540830611292579, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4877, - "time": 0.757816145590294, + "noteOrder": 4879, + "time": 0.7578161455902939, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5045, + "noteOrder": 5047, "time": 0.7839477368175455, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.7876808212785813, + "noteOrder": 5071, + "time": 0.7876808212785814, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5333, - "time": 0.8287447503499766, + "noteOrder": 5335, + "time": 0.8287447503499765, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5357, - "time": 0.8324778348110125, + "noteOrder": 5360, + "time": 0.8324778348110126, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.8735417638824078, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5646, - "time": 0.8772748483434436, + "noteOrder": 5648, + "time": 0.8772748483434437, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.9034064395706952, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5840, "time": 0.9071395240317311, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6102, - "time": 0.9482034531031264, + "noteOrder": 6105, + "time": 0.9482034531031265, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6126, + "noteOrder": 6129, "time": 0.9519365375641623, "position": { "x": 4, @@ -1496,10 +1496,10 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, - "time": 0.11945870275314979, + "time": 0.11945870275314978, "position": { "x": 6, "y": 0 @@ -1519,7 +1519,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, "time": 0.13065795613625758, @@ -1542,10 +1542,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, - "time": 0.11945870275314979, + "time": 0.11945870275314978, "position": { "x": 4, "y": 0 @@ -1565,7 +1565,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, "time": 0.13065795613625758, @@ -1588,9 +1588,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.19412039197386838, "position": { "x": 7, @@ -1611,9 +1611,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.19785347643490434, "position": { "x": 7, @@ -1634,10 +1634,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1297, - "time": 0.20158656089594026, + "noteOrder": 1298, + "time": 0.20158656089594024, "position": { "x": 6, "y": 0 @@ -1657,10 +1657,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1321, - "time": 0.20531964535697617, + "noteOrder": 1322, + "time": 0.2053196453569762, "position": { "x": 6, "y": 0 @@ -1680,9 +1680,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.20905272981801212, "position": { "x": 3, @@ -1703,10 +1703,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, - "time": 0.21278581427904805, + "noteOrder": 1370, + "time": 0.21278581427904802, "position": { "x": 3, "y": 0 @@ -1726,10 +1726,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1393, - "time": 0.21651889874008395, + "noteOrder": 1394, + "time": 0.21651889874008398, "position": { "x": 4, "y": 0 @@ -1749,9 +1749,9 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.2202519832011199, "position": { "x": 4, @@ -1772,9 +1772,9 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.22398506766215584, "position": { "x": 6, @@ -1795,10 +1795,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.22771815212319174, + "noteOrder": 1466, + "time": 0.22771815212319177, "position": { "x": 6, "y": 0 @@ -1818,10 +1818,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.22771815212319174, + "noteOrder": 1466, + "time": 0.22771815212319177, "position": { "x": 4, "y": 0 @@ -1841,10 +1841,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1489, - "time": 0.2314512365842277, + "noteOrder": 1490, + "time": 0.23145123658422773, "position": { "x": 4, "y": 0 @@ -1864,10 +1864,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, - "time": 0.2314512365842277, + "noteOrder": 1490, + "time": 0.23145123658422773, "position": { "x": 6, "y": 0 @@ -1887,7 +1887,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1514, "time": 0.23518432104526363, @@ -1910,7 +1910,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1682, "time": 0.26131591227251516, @@ -1933,7 +1933,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1706, "time": 0.2650489967335511, @@ -1956,7 +1956,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1778, "time": 0.2762482501166589, @@ -1979,9 +1979,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.2799813345776948, "position": { "x": 4, @@ -2002,9 +2002,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.2911805879608026, "position": { "x": 3, @@ -2025,10 +2025,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1898, - "time": 0.29491367242183847, + "noteOrder": 1899, + "time": 0.2949136724218385, "position": { "x": 3, "y": 0 @@ -2048,9 +2048,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.2911805879608026, "position": { "x": 7, @@ -2071,10 +2071,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1898, - "time": 0.29491367242183847, + "noteOrder": 1899, + "time": 0.2949136724218385, "position": { "x": 7, "y": 0 @@ -2094,9 +2094,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, + "noteOrder": 2019, "time": 0.31357909472701817, "position": { "x": 4, @@ -2116,13 +2116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, - "time": 0.32104526364909003, + "noteOrder": 2043, + "time": 0.3173121791880541, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2134,16 +2134,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2114, - "time": 0.3285114325711619, + "noteOrder": 2043, + "time": 0.3173121791880541, "position": { "x": 4, "y": 0 @@ -2162,11 +2162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2162, - "time": 0.33597760149323375, + "noteOrder": 2067, + "time": 0.32104526364909003, "position": { "x": 6, "y": 0 @@ -2185,13 +2185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.3434437704153056, + "noteOrder": 2091, + "time": 0.32477834811012596, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2203,16 +2203,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2258, - "time": 0.3509099393373775, + "noteOrder": 2091, + "time": 0.32477834811012596, "position": { "x": 6, "y": 0 @@ -2231,13 +2231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, - "time": 0.3733084461035931, + "noteOrder": 2115, + "time": 0.3285114325711619, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2254,36 +2254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2450, - "time": 0.3807746150256649, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.40317312179188053, + "noteOrder": 2139, + "time": 0.3322445170321978, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2295,18 +2272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2643, - "time": 0.41063929071395233, + "noteOrder": 2139, + "time": 0.3322445170321978, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2323,13 +2300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.4330377974801679, + "noteOrder": 2163, + "time": 0.3359776014932338, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2346,13 +2323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2811, - "time": 0.4367708819412039, + "noteOrder": 2187, + "time": 0.3397106859542697, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2369,11 +2346,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2835, - "time": 0.4405039664022398, + "noteOrder": 2187, + "time": 0.3397106859542697, "position": { "x": 6, "y": 0 @@ -2392,13 +2369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2859, - "time": 0.4442370508632757, + "noteOrder": 2211, + "time": 0.3434437704153056, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2410,18 +2387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2883, - "time": 0.4479701353243117, + "noteOrder": 2235, + "time": 0.3471768548763416, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2438,13 +2415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2907, - "time": 0.4517032197853476, + "noteOrder": 2235, + "time": 0.3471768548763416, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2461,13 +2438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2931, - "time": 0.4554363042463835, + "noteOrder": 2259, + "time": 0.35090993933737746, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2479,18 +2456,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2955, - "time": 0.45916938870741947, + "noteOrder": 2283, + "time": 0.3546430237984134, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2502,16 +2479,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2979, - "time": 0.4629024731684554, + "noteOrder": 2283, + "time": 0.3546430237984134, "position": { "x": 6, "y": 0 @@ -2530,13 +2507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 3003, - "time": 0.46663555762949127, + "noteOrder": 2403, + "time": 0.3733084461035931, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2548,18 +2525,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3003, - "time": 0.46663555762949127, + "noteOrder": 2427, + "time": 0.37704153056462897, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2576,11 +2553,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3027, - "time": 0.47036864209052726, + "noteOrder": 2427, + "time": 0.37704153056462897, "position": { "x": 4, "y": 0 @@ -2599,13 +2576,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, - "time": 0.47036864209052726, + "noteOrder": 2451, + "time": 0.38077461502566495, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2622,13 +2599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3051, - "time": 0.4741017265515632, + "noteOrder": 2475, + "time": 0.3845076994867009, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2645,13 +2622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3219, - "time": 0.5002333177788147, + "noteOrder": 2475, + "time": 0.3845076994867009, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2668,13 +2645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.5076994867008866, + "noteOrder": 2596, + "time": 0.4031731217918805, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2686,18 +2663,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, - "time": 0.5300979934671022, + "noteOrder": 2620, + "time": 0.40690620625291646, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2709,16 +2686,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3459, - "time": 0.537564162389174, + "noteOrder": 2620, + "time": 0.40690620625291646, "position": { "x": 6, "y": 0 @@ -2737,13 +2714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3604, - "time": 0.5599626691553896, + "noteOrder": 2644, + "time": 0.4106392907139524, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2760,13 +2737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3652, - "time": 0.5674288380774614, + "noteOrder": 2668, + "time": 0.41437237517498826, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2778,18 +2755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3700, - "time": 0.5748950069995333, + "noteOrder": 2668, + "time": 0.41437237517498826, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2806,13 +2783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.5823611759216052, + "noteOrder": 2788, + "time": 0.43303779748016796, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2829,13 +2806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4516, - "time": 0.701819878674755, + "noteOrder": 2812, + "time": 0.4367708819412039, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2847,18 +2824,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 4541, - "time": 0.7055529631357909, + "noteOrder": 2836, + "time": 0.4405039664022398, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2870,18 +2847,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, - "time": 0.7092860475968268, + "noteOrder": 2860, + "time": 0.44423705086327575, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2898,13 +2875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 4589, - "time": 0.7130191320578628, + "noteOrder": 2884, + "time": 0.4479701353243117, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2916,16 +2893,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4757, - "time": 0.7391507232851142, + "noteOrder": 2908, + "time": 0.4517032197853476, "position": { "x": 3, "y": 0 @@ -2944,13 +2921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4805, - "time": 0.7466168922071862, + "noteOrder": 2932, + "time": 0.45543630424638354, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2962,18 +2939,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4949, - "time": 0.7690153989734018, + "noteOrder": 2956, + "time": 0.45916938870741947, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2985,15 +2962,1004 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4997, + "noteOrder": 2980, + "time": 0.46290247316845545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3004, + "time": 0.4666355576294913, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3004, + "time": 0.4666355576294913, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3028, + "time": 0.47036864209052726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3028, + "time": 0.47036864209052726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3052, + "time": 0.47410172655156324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3221, + "time": 0.5002333177788147, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5039664022398507, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5039664022398507, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3269, + "time": 0.5076994867008865, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3293, + "time": 0.5114325711619225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3293, + "time": 0.5114325711619225, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3413, + "time": 0.5300979934671022, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3437, + "time": 0.5338310779281381, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3437, + "time": 0.5338310779281381, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3461, + "time": 0.537564162389174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3485, + "time": 0.54129724685021, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3485, + "time": 0.54129724685021, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3605, + "time": 0.5599626691553896, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3629, + "time": 0.5636957536164255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3629, + "time": 0.5636957536164255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3653, + "time": 0.5674288380774615, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3677, + "time": 0.5711619225384973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3677, + "time": 0.5711619225384973, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3701, + "time": 0.5748950069995333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3725, + "time": 0.5786280914605693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3725, + "time": 0.5786280914605693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3749, + "time": 0.5823611759216052, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3773, + "time": 0.5860942603826411, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3773, + "time": 0.5860942603826411, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4518, + "time": 0.7018198786747549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4542, + "time": 0.7055529631357909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4566, + "time": 0.7092860475968268, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4590, + "time": 0.7130191320578627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.7391507232851143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4783, + "time": 0.7428838077461503, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4783, + "time": 0.7428838077461503, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4807, + "time": 0.7466168922071862, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4831, + "time": 0.750349976668222, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4831, + "time": 0.750349976668222, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4951, + "time": 0.7690153989734018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4975, + "time": 0.7727484834344377, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4975, + "time": 0.7727484834344377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4999, "time": 0.7764815678954735, "position": { "x": 4, @@ -3013,13 +3979,358 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5023, + "time": 0.7802146523565094, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5023, + "time": 0.7802146523565094, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5143, + "time": 0.7988800746616891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5167, + "time": 0.802613159122725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5167, + "time": 0.802613159122725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5191, + "time": 0.806346243583761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5215, + "time": 0.810079328044797, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5215, + "time": 0.810079328044797, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5239, + "time": 0.8138124125058329, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5263, + "time": 0.8175454969668688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5263, + "time": 0.8175454969668688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5287, + "time": 0.8212785814279048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5311, + "time": 0.8250116658889406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5311, + "time": 0.8250116658889406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5528, + "time": 0.8586094260382641, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5141, - "time": 0.7988800746616891, + "noteOrder": 5552, + "time": 0.8623425104993, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3031,16 +4342,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5189, - "time": 0.8063462435837611, + "noteOrder": 5552, + "time": 0.8623425104993, "position": { "x": 4, "y": 0 @@ -3059,11 +4370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5237, - "time": 0.8138124125058329, + "noteOrder": 5576, + "time": 0.8660755949603359, "position": { "x": 6, "y": 0 @@ -3082,13 +4393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5285, - "time": 0.8212785814279047, + "noteOrder": 5600, + "time": 0.8698086794213719, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3100,18 +4411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5525, - "time": 0.8586094260382641, + "noteOrder": 5600, + "time": 0.8698086794213719, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3123,18 +4434,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5574, - "time": 0.8660755949603358, + "noteOrder": 5720, + "time": 0.8884741017265515, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3152,10 +4463,10 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5718, - "time": 0.8884741017265514, + "noteOrder": 5744, + "time": 0.8922071861875874, "position": { "x": 7, "y": 0 @@ -3173,11 +4484,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5744, + "time": 0.8922071861875874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5766, + "noteOrder": 5768, "time": 0.8959402706486234, "position": { "x": 4, @@ -3196,11 +4530,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5792, + "time": 0.8996733551096592, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5792, + "time": 0.8996733551096592, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5910, + "noteOrder": 5912, "time": 0.9183387774148389, "position": { "x": 6, @@ -3219,12 +4599,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5936, + "time": 0.9220718618758749, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5936, + "time": 0.9220718618758749, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5960, + "time": 0.9258049463369109, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5984, + "time": 0.9295380307979467, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5958, - "time": 0.9258049463369108, + "noteOrder": 5984, + "time": 0.9295380307979467, "position": { "x": 4, "y": 0 @@ -3244,10 +4716,56 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6008, + "time": 0.9332711152589827, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6032, + "time": 0.9370041997200186, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6006, - "time": 0.9332711152589825, + "noteOrder": 6032, + "time": 0.9370041997200186, "position": { "x": 6, "y": 0 @@ -3267,9 +4785,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.9407372841810545, "position": { "x": 4, @@ -3287,6 +4805,52 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6081, + "time": 0.9444703686420904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6081, + "time": 0.9444703686420904, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/Switch SPONGEBOB EDITION/info.json b/tracks/Switch SPONGEBOB EDITION/info.json index 784f077d..99a84007 100644 --- a/tracks/Switch SPONGEBOB EDITION/info.json +++ b/tracks/Switch SPONGEBOB EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Switch SPONGEBOB EDITION", - "SongLength": "124.917551", + "SongLength": "114.964898", "SongAuthorName": "Dubscribe", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Synaptic/259_difficulty_1a.json b/tracks/Synaptic/259_difficulty_1a.json index bd4abc8f..b73d509a 100644 --- a/tracks/Synaptic/259_difficulty_1a.json +++ b/tracks/Synaptic/259_difficulty_1a.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 864, - "time": 0.12163018230449779, + "noteOrder": 865, + "time": 0.12163018230449778, "position": { "x": 5, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 912, - "time": 0.12838741465474765, + "noteOrder": 913, + "time": 0.12838741465474768, "position": { "x": 4, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 936, - "time": 0.1317660308298726, + "noteOrder": 937, + "time": 0.13176603082987262, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 1009, - "time": 0.1419018793552474, + "time": 0.14190187935524742, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1105, - "time": 0.15541634405574714, + "time": 0.15541634405574717, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1177, - "time": 0.16555219258112197, + "time": 0.165552192581122, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 1201, - "time": 0.16893080875624691, + "time": 0.16893080875624694, "position": { "x": 2, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1249, - "time": 0.17568804110649677, + "time": 0.1756880411064968, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1297, - "time": 0.18244527345674666, + "time": 0.1824452734567467, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1321, - "time": 0.1858238896318716, + "time": 0.18582388963187163, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1369, - "time": 0.1925811219821215, + "time": 0.19258112198212152, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1393, - "time": 0.1959597381572464, + "time": 0.19595973815724643, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1489, - "time": 0.20947420285774615, + "time": 0.2094742028577462, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1561, - "time": 0.21961005138312098, + "time": 0.219610051383121, "position": { "x": 5, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.22298866755824592, + "noteOrder": 1586, + "time": 0.22298866755824595, "position": { "x": 8, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1609, - "time": 0.22636728373337087, + "noteOrder": 1610, + "time": 0.2263672837333709, "position": { "x": 8, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1657, - "time": 0.23312451608362075, + "noteOrder": 1658, + "time": 0.23312451608362078, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1681, - "time": 0.23650313225874567, + "noteOrder": 1682, + "time": 0.2365031322587457, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.2466389807841205, + "noteOrder": 1754, + "time": 0.24663898078412053, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.2500175969592454, + "noteOrder": 1778, + "time": 0.25001759695924547, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.26015344548462027, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.2635320616597452, + "noteOrder": 1874, + "time": 0.26353206165974524, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.27366791018512, + "noteOrder": 1946, + "time": 0.27366791018512004, "position": { "x": 7, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.27704652636024496, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.2804251425353699, + "noteOrder": 1994, + "time": 0.28042514253536993, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.29056099106074473, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.30407545576124445, + "noteOrder": 2162, + "time": 0.3040754557612445, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.3175899204617442, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2353, - "time": 0.33110438516224394, + "noteOrder": 2354, + "time": 0.331104385162244, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.33786161751249383, + "noteOrder": 2402, + "time": 0.3378616175124939, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.34124023368761874, + "noteOrder": 2426, + "time": 0.3412402336876188, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3446188498627437, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.3479974660378687, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.35137608221299355, + "noteOrder": 2498, + "time": 0.3513760822129936, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.3547546983881185, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2546, "time": 0.3581333145632435, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2569, - "time": 0.3615119307383684, + "noteOrder": 2570, + "time": 0.36151193073836846, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2593, - "time": 0.3648905469134933, + "noteOrder": 2594, + "time": 0.3648905469134934, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2619, "time": 0.3682691630886183, "position": { "x": 4, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.3716477792637432, + "noteOrder": 2643, + "time": 0.37164777926374326, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2667, "time": 0.3750263954388682, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2689, + "noteOrder": 2691, "time": 0.3784050116139931, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2715, "time": 0.381783627789118, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2737, - "time": 0.385162243964243, + "noteOrder": 2739, + "time": 0.38516224396424303, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2763, "time": 0.38854086013936795, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2785, - "time": 0.3919194763144928, + "noteOrder": 2787, + "time": 0.39191947631449287, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2809, - "time": 0.3952980924896178, + "noteOrder": 2811, + "time": 0.39529809248961784, "position": { "x": 8, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.39867670866474275, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2859, "time": 0.40205532483986767, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.4054339410149926, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2906, - "time": 0.40881255719011755, + "noteOrder": 2907, + "time": 0.4088125571901176, "position": { "x": 8, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.41219117336524247, + "noteOrder": 2931, + "time": 0.4121911733652425, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2954, + "noteOrder": 2955, "time": 0.41556978954036744, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.4189484057154923, + "noteOrder": 2979, + "time": 0.4189484057154924, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.42232702189061727, + "noteOrder": 3003, + "time": 0.4223270218906173, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.42570563806574224, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3050, - "time": 0.42908425424086716, + "noteOrder": 3051, + "time": 0.4290842542408672, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.4831421130428662, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3482, - "time": 0.489899345393116, + "noteOrder": 3483, + "time": 0.48989934539311614, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.493277961568241, + "noteOrder": 3507, + "time": 0.49327796156824105, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3531, "time": 0.49665657774336597, "position": { "x": 2, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3627, "time": 0.5101710424438657, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.5169282747941156, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.5203068909692405, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3722, - "time": 0.5236855071443655, + "noteOrder": 3724, + "time": 0.5236855071443656, "position": { "x": 8, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3842, + "noteOrder": 3844, "time": 0.5405785880199901, "position": { "x": 8, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3854, - "time": 0.5422678961075525, + "noteOrder": 3856, + "time": 0.5422678961075527, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3868, "time": 0.5439572041951151, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3878, + "noteOrder": 3880, "time": 0.5456465122826776, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.54733582037024, + "noteOrder": 3892, + "time": 0.5473358203702401, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3902, + "noteOrder": 3904, "time": 0.5490251284578025, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.5507144365453649, + "noteOrder": 3916, + "time": 0.550714436545365, "position": { "x": 7, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3926, - "time": 0.5524037446329274, + "noteOrder": 3928, + "time": 0.5524037446329275, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4010, - "time": 0.5642289012458647, + "noteOrder": 4012, + "time": 0.5642289012458648, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4106, - "time": 0.5777433659463644, + "noteOrder": 4108, + "time": 0.5777433659463646, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.5811219821214895, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.5845005982966143, + "noteOrder": 4156, + "time": 0.5845005982966144, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4178, + "noteOrder": 4180, "time": 0.5878792144717393, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.5912578306468642, "position": { "x": 2, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4346, - "time": 0.6115295276976138, + "noteOrder": 4348, + "time": 0.6115295276976139, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4372, "time": 0.6149081438727388, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4396, "time": 0.6182867600478638, "position": { "x": 8, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.6351798409234884, "position": { "x": 8, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4526, - "time": 0.6368691490110509, + "noteOrder": 4528, + "time": 0.636869149011051, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.6385584570986134, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4562, + "noteOrder": 4564, "time": 0.6419370732737383, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4574, + "noteOrder": 4576, "time": 0.6436263813613008, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4586, + "noteOrder": 4588, "time": 0.6453156894488632, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4646, + "noteOrder": 4648, "time": 0.6537622298866755, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4731, - "time": 0.6655873864996128, + "noteOrder": 4733, + "time": 0.6655873864996129, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.6689660026747378, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4827, + "noteOrder": 4829, "time": 0.6791018512001127, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.6824804673752375, + "noteOrder": 4853, + "time": 0.6824804673752376, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4923, + "noteOrder": 4925, "time": 0.6926163159006123, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4947, + "noteOrder": 4949, "time": 0.6959949320757374, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5019, + "noteOrder": 5021, "time": 0.7061307806011121, "position": { "x": 8, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.709509396776237, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5115, - "time": 0.7196452453016118, + "noteOrder": 5117, + "time": 0.719645245301612, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.7230238614767368, + "noteOrder": 5141, + "time": 0.7230238614767369, "position": { "x": 5, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.7331597100021117, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.7365383261772366, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5307, - "time": 0.7466741747026113, + "noteOrder": 5309, + "time": 0.7466741747026114, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.7500527908777364, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5403, + "noteOrder": 5405, "time": 0.7601886394031111, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.763567255578236, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.766945871753361, + "noteOrder": 5453, + "time": 0.7669458717533612, "position": { "x": 4, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.7770817202787359, "position": { "x": 8, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.7905961849792356, + "noteOrder": 5621, + "time": 0.7905961849792357, "position": { "x": 3, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5645, "time": 0.7939748011543606, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5691, - "time": 0.8007320335046103, + "noteOrder": 5693, + "time": 0.8007320335046104, "position": { "x": 6, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5715, + "noteOrder": 5717, "time": 0.8041106496797353, "position": { "x": 4, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5763, + "noteOrder": 5766, "time": 0.8108678820299852, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5787, - "time": 0.8142464982051102, + "noteOrder": 5790, + "time": 0.8142464982051103, "position": { "x": 7, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5835, - "time": 0.8210037305553599, + "noteOrder": 5838, + "time": 0.8210037305553601, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5883, - "time": 0.8277609629056099, + "noteOrder": 5886, + "time": 0.82776096290561, "position": { "x": 4, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5931, + "noteOrder": 5934, "time": 0.8345181952558598, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5955, - "time": 0.8378968114309846, + "noteOrder": 5958, + "time": 0.8378968114309848, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6003, - "time": 0.8446540437812345, + "noteOrder": 6006, + "time": 0.8446540437812347, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6027, + "noteOrder": 6030, "time": 0.8480326599563596, "position": { "x": 2, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6051, + "noteOrder": 6054, "time": 0.8514112761314845, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6099, - "time": 0.8581685084817343, + "noteOrder": 6102, + "time": 0.8581685084817344, "position": { "x": 4, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.8649257408319841, + "noteOrder": 6150, + "time": 0.8649257408319843, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.8716829731822341, + "noteOrder": 6198, + "time": 0.8716829731822342, "position": { "x": 6, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6988, - "time": 0.9831773069613571, + "noteOrder": 6991, + "time": 0.9831773069613572, "position": { "x": 7, "y": 0 @@ -2656,10 +2656,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.013514464700499752, + "time": 0.013514464700499754, "position": { "x": 4, "y": 0 @@ -2679,10 +2679,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.02027169705074963, + "time": 0.020271697050749632, "position": { "x": 5, "y": 0 @@ -2702,10 +2702,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.02027169705074963, + "time": 0.020271697050749632, "position": { "x": 6, "y": 0 @@ -2725,10 +2725,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, - "time": 0.027028929400999505, + "time": 0.027028929400999508, "position": { "x": 5, "y": 0 @@ -2748,10 +2748,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.027028929400999505, + "time": 0.027028929400999508, "position": { "x": 4, "y": 0 @@ -2771,7 +2771,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.033786161751249384, @@ -2794,7 +2794,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, "time": 0.033786161751249384, @@ -2817,10 +2817,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.04054339410149926, + "time": 0.040543394101499264, "position": { "x": 5, "y": 0 @@ -2840,10 +2840,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.04054339410149926, + "time": 0.040543394101499264, "position": { "x": 4, "y": 0 @@ -2863,7 +2863,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, "time": 0.047300626451749136, @@ -2886,7 +2886,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, "time": 0.047300626451749136, @@ -2909,10 +2909,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, - "time": 0.05405785880199901, + "time": 0.054057858801999016, "position": { "x": 6, "y": 0 @@ -2932,10 +2932,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.05405785880199901, + "time": 0.054057858801999016, "position": { "x": 5, "y": 0 @@ -2955,10 +2955,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 432, - "time": 0.060815091152248896, + "time": 0.06081509115224889, "position": { "x": 6, "y": 0 @@ -2978,10 +2978,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 432, - "time": 0.060815091152248896, + "time": 0.06081509115224889, "position": { "x": 6, "y": 0 @@ -3001,7 +3001,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 480, "time": 0.06757232350249877, @@ -3024,7 +3024,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.06757232350249877, @@ -3047,9 +3047,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.07432955585274864, "position": { "x": 5, @@ -3070,9 +3070,9 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.07432955585274864, "position": { "x": 7, @@ -3093,10 +3093,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.08108678820299851, + "noteOrder": 577, + "time": 0.08108678820299853, "position": { "x": 6, "y": 0 @@ -3116,10 +3116,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.08108678820299851, + "noteOrder": 577, + "time": 0.08108678820299853, "position": { "x": 4, "y": 0 @@ -3139,10 +3139,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 624, - "time": 0.08784402055324839, + "noteOrder": 625, + "time": 0.0878440205532484, "position": { "x": 5, "y": 0 @@ -3162,10 +3162,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 624, - "time": 0.08784402055324839, + "noteOrder": 625, + "time": 0.0878440205532484, "position": { "x": 6, "y": 0 @@ -3185,9 +3185,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.09460125290349827, "position": { "x": 5, @@ -3208,9 +3208,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.09460125290349827, "position": { "x": 3, @@ -3231,9 +3231,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.10135848525374815, "position": { "x": 4, @@ -3254,9 +3254,9 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.10135848525374815, "position": { "x": 6, @@ -3277,10 +3277,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 768, - "time": 0.10811571760399802, + "noteOrder": 769, + "time": 0.10811571760399803, "position": { "x": 5, "y": 0 @@ -3300,10 +3300,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, - "time": 0.10811571760399802, + "noteOrder": 769, + "time": 0.10811571760399803, "position": { "x": 4, "y": 0 @@ -3323,10 +3323,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 816, - "time": 0.11487294995424789, + "noteOrder": 817, + "time": 0.1148729499542479, "position": { "x": 5, "y": 0 @@ -3346,10 +3346,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 816, - "time": 0.11487294995424789, + "noteOrder": 817, + "time": 0.1148729499542479, "position": { "x": 8, "y": 0 @@ -3369,10 +3369,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 864, - "time": 0.12163018230449779, + "noteOrder": 865, + "time": 0.12163018230449778, "position": { "x": 7, "y": 0 @@ -3392,10 +3392,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 888, - "time": 0.1250087984796227, + "noteOrder": 889, + "time": 0.12500879847962273, "position": { "x": 7, "y": 0 @@ -3415,10 +3415,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 912, - "time": 0.12838741465474765, + "noteOrder": 913, + "time": 0.12838741465474768, "position": { "x": 6, "y": 0 @@ -3438,7 +3438,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, "time": 0.13514464700499754, @@ -3461,7 +3461,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 985, "time": 0.13852326318012248, @@ -3484,10 +3484,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1081, - "time": 0.15203772788062223, + "time": 0.15203772788062225, "position": { "x": 6, "y": 0 @@ -3507,10 +3507,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1105, - "time": 0.15541634405574714, + "time": 0.15541634405574717, "position": { "x": 5, "y": 0 @@ -3530,10 +3530,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1153, - "time": 0.16217357640599703, + "time": 0.16217357640599706, "position": { "x": 3, "y": 0 @@ -3553,10 +3553,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1177, - "time": 0.16555219258112197, + "time": 0.165552192581122, "position": { "x": 4, "y": 0 @@ -3576,7 +3576,7 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1273, "time": 0.17906665728162174, @@ -3599,10 +3599,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1297, - "time": 0.18244527345674666, + "time": 0.1824452734567467, "position": { "x": 7, "y": 0 @@ -3622,7 +3622,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1345, "time": 0.18920250580699655, @@ -3645,10 +3645,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1369, - "time": 0.1925811219821215, + "time": 0.19258112198212152, "position": { "x": 4, "y": 0 @@ -3668,10 +3668,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1465, - "time": 0.20609558668262123, + "time": 0.20609558668262126, "position": { "x": 6, "y": 0 @@ -3691,10 +3691,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1489, - "time": 0.20947420285774615, + "time": 0.2094742028577462, "position": { "x": 5, "y": 0 @@ -3714,10 +3714,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.2838037587104948, + "noteOrder": 2018, + "time": 0.28380375871049485, "position": { "x": 7, "y": 0 @@ -3737,9 +3737,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.29731822341099456, "position": { "x": 4, @@ -3760,9 +3760,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.29731822341099456, "position": { "x": 3, @@ -3783,10 +3783,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2209, - "time": 0.3108326881114943, + "noteOrder": 2210, + "time": 0.31083268811149434, "position": { "x": 6, "y": 0 @@ -3806,10 +3806,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.3108326881114943, + "noteOrder": 2210, + "time": 0.31083268811149434, "position": { "x": 7, "y": 0 @@ -3829,10 +3829,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, - "time": 0.32434715281199406, + "noteOrder": 2306, + "time": 0.3243471528119941, "position": { "x": 4, "y": 0 @@ -3852,10 +3852,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.32434715281199406, + "noteOrder": 2306, + "time": 0.3243471528119941, "position": { "x": 3, "y": 0 @@ -3875,10 +3875,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.33786161751249383, + "noteOrder": 2402, + "time": 0.3378616175124939, "position": { "x": 6, "y": 0 @@ -3898,10 +3898,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.44597733511649185, + "noteOrder": 3171, + "time": 0.4459773351164919, "position": { "x": 4, "y": 0 @@ -3921,10 +3921,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, - "time": 0.45949179981699156, + "noteOrder": 3267, + "time": 0.4594917998169916, "position": { "x": 4, "y": 0 @@ -3944,10 +3944,10 @@ }, { "lineGroupId": 104, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3338, - "time": 0.4696276483423664, + "noteOrder": 3339, + "time": 0.4696276483423665, "position": { "x": 4, "y": 0 @@ -3967,9 +3967,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3182, + "noteOrder": 3183, "time": 0.44766664320405436, "position": { "x": 4, @@ -3990,10 +3990,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.45273456746674173, + "noteOrder": 3219, + "time": 0.4527345674667418, "position": { "x": 7, "y": 0 @@ -4013,10 +4013,10 @@ }, { "lineGroupId": 105, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.45949179981699156, + "noteOrder": 3267, + "time": 0.4594917998169916, "position": { "x": 7, "y": 0 @@ -4036,10 +4036,10 @@ }, { "lineGroupId": 105, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3290, - "time": 0.46287041599211654, + "noteOrder": 3291, + "time": 0.4628704159921166, "position": { "x": 4, "y": 0 @@ -4059,10 +4059,10 @@ }, { "lineGroupId": 105, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3314, - "time": 0.4662490321672415, + "noteOrder": 3315, + "time": 0.46624903216724156, "position": { "x": 7, "y": 0 @@ -4082,10 +4082,10 @@ }, { "lineGroupId": 105, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3338, - "time": 0.4696276483423664, + "noteOrder": 3339, + "time": 0.4696276483423665, "position": { "x": 7, "y": 0 @@ -4105,10 +4105,33 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.4730062645174914, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.47300626451749134, + "noteOrder": 3375, + "time": 0.47469557260505385, "position": { "x": 8, "y": 0 @@ -4126,12 +4149,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3375, + "time": 0.47469557260505385, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.47638488069261636, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.4763848806926163, + "noteOrder": 3399, + "time": 0.4780741887801788, "position": { "x": 8, "y": 0 @@ -4149,12 +4218,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3399, + "time": 0.4780741887801788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, - "time": 0.4797634968677412, + "noteOrder": 3411, + "time": 0.4797634968677413, "position": { "x": 8, "y": 0 @@ -4173,11 +4265,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.48652072921799117, + "noteOrder": 3423, + "time": 0.48145280495530374, "position": { "x": 8, "y": 0 @@ -4196,13 +4288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3530, - "time": 0.49665657774336597, + "noteOrder": 3423, + "time": 0.48145280495530374, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4219,13 +4311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3554, - "time": 0.5000351939184908, + "noteOrder": 3435, + "time": 0.4831421130428662, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4237,18 +4329,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3578, - "time": 0.5034138100936159, + "noteOrder": 3435, + "time": 0.4831421130428662, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4265,13 +4357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3602, - "time": 0.5067924262687408, + "noteOrder": 3459, + "time": 0.4865207292179911, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4283,16 +4375,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3531, + "time": 0.49665657774336597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.5135496586189906, + "noteOrder": 3555, + "time": 0.5000351939184909, "position": { "x": 2, "y": 0 @@ -4311,11 +4426,1069 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3567, + "time": 0.5017245020060535, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3567, + "time": 0.5017245020060535, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3579, + "time": 0.5034138100936159, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3591, + "time": 0.5051031181811784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3591, + "time": 0.5051031181811784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3603, + "time": 0.5067924262687408, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3615, + "time": 0.5084817343563033, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3615, + "time": 0.5084817343563033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3627, + "time": 0.5101710424438657, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.5135496586189907, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3724, + "time": 0.5236855071443656, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3748, + "time": 0.5270641233194905, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3760, + "time": 0.5287534314070529, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3760, + "time": 0.5287534314070529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5304427394946154, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.5321320475821778, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3784, + "time": 0.5321320475821778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3796, + "time": 0.5338213556697403, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3808, + "time": 0.5355106637573028, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3808, + "time": 0.5355106637573028, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3820, + "time": 0.5371999718448652, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3832, + "time": 0.5388892799324277, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3832, + "time": 0.5388892799324277, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3940, + "time": 0.5540930527204899, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3952, + "time": 0.5557823608080524, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3952, + "time": 0.5557823608080524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3964, + "time": 0.5574716688956148, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3976, + "time": 0.5591609769831773, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3976, + "time": 0.5591609769831773, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3988, + "time": 0.5608502850707399, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4000, + "time": 0.5625395931583023, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4000, + "time": 0.5625395931583023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4012, + "time": 0.5642289012458648, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4012, + "time": 0.5642289012458648, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4036, + "time": 0.5676075174209897, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5692968255085521, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4048, + "time": 0.5692968255085521, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4060, + "time": 0.5709861335961146, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4072, + "time": 0.5726754416836771, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4072, + "time": 0.5726754416836771, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4084, + "time": 0.5743647497712395, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4096, + "time": 0.576054057858802, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4096, + "time": 0.576054057858802, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4108, + "time": 0.5777433659463646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4108, + "time": 0.5777433659463646, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4120, + "time": 0.579432674033927, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3722, - "time": 0.5236855071443655, + "noteOrder": 4120, + "time": 0.579432674033927, "position": { "x": 6, "y": 0 @@ -4329,18 +5502,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3746, - "time": 0.5270641233194904, + "noteOrder": 4132, + "time": 0.5811219821214895, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4357,11 +5530,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3770, - "time": 0.5304427394946153, + "noteOrder": 4132, + "time": 0.5811219821214895, "position": { "x": 8, "y": 0 @@ -4375,18 +5548,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 10, "isSliding": false, - "noteOrder": 3794, - "time": 0.5338213556697403, + "noteOrder": 4204, + "time": 0.5912578306468642, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4403,13 +5576,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3818, - "time": 0.5371999718448652, + "noteOrder": 4324, + "time": 0.608150911522489, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -4426,13 +5599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3938, - "time": 0.5540930527204899, + "noteOrder": 4396, + "time": 0.6182867600478638, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4444,16 +5617,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3962, - "time": 0.5574716688956148, + "noteOrder": 4420, + "time": 0.6216653762229887, "position": { "x": 8, "y": 0 @@ -4467,16 +5640,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3986, - "time": 0.5608502850707398, + "noteOrder": 4432, + "time": 0.6233546843105512, "position": { "x": 8, "y": 0 @@ -4495,13 +5668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4034, - "time": 0.5676075174209896, + "noteOrder": 4432, + "time": 0.6233546843105512, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4518,11 +5691,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4058, - "time": 0.5709861335961146, + "noteOrder": 4444, + "time": 0.6250439923981137, "position": { "x": 8, "y": 0 @@ -4541,11 +5714,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4082, - "time": 0.5743647497712395, + "noteOrder": 4456, + "time": 0.6267333004856761, "position": { "x": 8, "y": 0 @@ -4559,18 +5732,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 5, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4202, - "time": 0.5912578306468642, + "noteOrder": 4456, + "time": 0.6267333004856761, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4582,18 +5755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4322, - "time": 0.6081509115224889, + "noteOrder": 4468, + "time": 0.6284226085732386, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4605,18 +5778,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4394, - "time": 0.6182867600478638, + "noteOrder": 4480, + "time": 0.630111916660801, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4628,18 +5801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4418, - "time": 0.6216653762229886, + "noteOrder": 4480, + "time": 0.630111916660801, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4656,11 +5829,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4442, - "time": 0.6250439923981136, + "noteOrder": 4492, + "time": 0.6318012247483635, "position": { "x": 8, "y": 0 @@ -4679,11 +5852,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4466, - "time": 0.6284226085732385, + "noteOrder": 4504, + "time": 0.6334905328359259, "position": { "x": 8, "y": 0 @@ -4697,18 +5870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4490, - "time": 0.6318012247483634, + "noteOrder": 4504, + "time": 0.6334905328359259, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4726,9 +5899,9 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4634, + "noteOrder": 4636, "time": 0.6520729217991131, "position": { "x": 7, @@ -4749,9 +5922,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4646, + "noteOrder": 4648, "time": 0.6537622298866755, "position": { "x": 7, @@ -4772,10 +5945,10 @@ }, { "lineGroupId": 166, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4707, - "time": 0.6622087703244879, + "noteOrder": 4709, + "time": 0.662208770324488, "position": { "x": 4, "y": 0 @@ -4795,10 +5968,10 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4779, - "time": 0.6723446188498627, + "noteOrder": 4781, + "time": 0.6723446188498629, "position": { "x": 4, "y": 0 @@ -4818,10 +5991,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.6757232350249877, + "noteOrder": 4805, + "time": 0.6757232350249878, "position": { "x": 2, "y": 0 @@ -4841,10 +6014,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4875, - "time": 0.6858590835503624, + "noteOrder": 4877, + "time": 0.6858590835503625, "position": { "x": 5, "y": 0 @@ -4864,9 +6037,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.6892376997254874, "position": { "x": 7, @@ -4887,9 +6060,9 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.6993735482508623, "position": { "x": 4, @@ -4910,10 +6083,10 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4995, - "time": 0.7027521644259871, + "noteOrder": 4997, + "time": 0.7027521644259872, "position": { "x": 6, "y": 0 @@ -4933,9 +6106,9 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7128880129513621, "position": { "x": 7, @@ -4956,9 +6129,9 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5091, + "noteOrder": 5093, "time": 0.716266629126487, "position": { "x": 5, @@ -4979,10 +6152,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5163, - "time": 0.7264024776518617, + "noteOrder": 5165, + "time": 0.7264024776518618, "position": { "x": 6, "y": 0 @@ -5002,10 +6175,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5187, - "time": 0.7297810938269866, + "noteOrder": 5189, + "time": 0.7297810938269867, "position": { "x": 8, "y": 0 @@ -5025,10 +6198,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5259, - "time": 0.7399169423523614, + "noteOrder": 5261, + "time": 0.7399169423523615, "position": { "x": 5, "y": 0 @@ -5048,10 +6221,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5283, - "time": 0.7432955585274864, + "noteOrder": 5285, + "time": 0.7432955585274865, "position": { "x": 3, "y": 0 @@ -5071,9 +6244,9 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5355, + "noteOrder": 5357, "time": 0.7534314070528613, "position": { "x": 6, @@ -5094,9 +6267,9 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.7568100232279862, "position": { "x": 8, @@ -5117,10 +6290,10 @@ }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5475, - "time": 0.770324487928486, + "noteOrder": 5477, + "time": 0.7703244879284861, "position": { "x": 6, "y": 0 @@ -5140,10 +6313,10 @@ }, { "lineGroupId": 193, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5499, - "time": 0.7737031041036109, + "noteOrder": 5501, + "time": 0.773703104103611, "position": { "x": 8, "y": 0 @@ -5163,10 +6336,10 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5547, - "time": 0.7804603364538607, + "noteOrder": 5549, + "time": 0.7804603364538608, "position": { "x": 5, "y": 0 @@ -5186,10 +6359,10 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5571, - "time": 0.7838389526289856, + "noteOrder": 5573, + "time": 0.7838389526289857, "position": { "x": 3, "y": 0 @@ -5209,9 +6382,9 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5595, + "noteOrder": 5597, "time": 0.7872175688041106, "position": { "x": 6, @@ -5232,10 +6405,10 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5619, - "time": 0.7905961849792356, + "noteOrder": 5621, + "time": 0.7905961849792357, "position": { "x": 5, "y": 0 @@ -5255,9 +6428,9 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5667, + "noteOrder": 5669, "time": 0.7973534173294855, "position": { "x": 3, @@ -5278,10 +6451,10 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5691, - "time": 0.8007320335046103, + "noteOrder": 5693, + "time": 0.8007320335046104, "position": { "x": 4, "y": 0 @@ -5301,9 +6474,9 @@ }, { "lineGroupId": 203, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5739, + "noteOrder": 5742, "time": 0.8074892658548602, "position": { "x": 7, @@ -5324,9 +6497,9 @@ }, { "lineGroupId": 203, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5763, + "noteOrder": 5766, "time": 0.8108678820299852, "position": { "x": 6, @@ -5347,10 +6520,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5811, - "time": 0.8176251143802351, + "noteOrder": 5814, + "time": 0.8176251143802352, "position": { "x": 3, "y": 0 @@ -5370,10 +6543,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5835, - "time": 0.8210037305553599, + "noteOrder": 5838, + "time": 0.8210037305553601, "position": { "x": 4, "y": 0 @@ -5393,9 +6566,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5907, + "noteOrder": 5910, "time": 0.8311395790807349, "position": { "x": 7, @@ -5416,9 +6589,9 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5931, + "noteOrder": 5934, "time": 0.8345181952558598, "position": { "x": 6, @@ -5439,10 +6612,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5979, - "time": 0.8412754276061096, + "noteOrder": 5982, + "time": 0.8412754276061097, "position": { "x": 3, "y": 0 @@ -5462,10 +6635,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6003, - "time": 0.8446540437812345, + "noteOrder": 6006, + "time": 0.8446540437812347, "position": { "x": 4, "y": 0 @@ -5485,9 +6658,9 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6075, + "noteOrder": 6078, "time": 0.8547898923066094, "position": { "x": 2, @@ -5508,10 +6681,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6099, - "time": 0.8581685084817343, + "noteOrder": 6102, + "time": 0.8581685084817344, "position": { "x": 3, "y": 0 @@ -5531,10 +6704,10 @@ }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6123, - "time": 0.8615471246568592, + "noteOrder": 6126, + "time": 0.8615471246568593, "position": { "x": 6, "y": 0 @@ -5554,10 +6727,10 @@ }, { "lineGroupId": 222, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6147, - "time": 0.8649257408319841, + "noteOrder": 6150, + "time": 0.8649257408319843, "position": { "x": 5, "y": 0 @@ -5577,10 +6750,10 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6171, - "time": 0.8683043570071092, + "noteOrder": 6174, + "time": 0.8683043570071093, "position": { "x": 3, "y": 0 @@ -5600,10 +6773,10 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6195, - "time": 0.8716829731822341, + "noteOrder": 6198, + "time": 0.8716829731822342, "position": { "x": 4, "y": 0 @@ -5623,9 +6796,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6219, + "noteOrder": 6222, "time": 0.8750615893573591, "position": { "x": 7, @@ -5646,10 +6819,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6243, - "time": 0.8784402055324839, + "noteOrder": 6246, + "time": 0.878440205532484, "position": { "x": 6, "y": 0 @@ -5669,10 +6842,10 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6243, - "time": 0.8784402055324839, + "noteOrder": 6246, + "time": 0.878440205532484, "position": { "x": 5, "y": 0 @@ -5692,10 +6865,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6267, - "time": 0.8818188217076088, + "noteOrder": 6270, + "time": 0.8818188217076091, "position": { "x": 4, "y": 0 @@ -5715,10 +6888,10 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6267, - "time": 0.8818188217076088, + "noteOrder": 6270, + "time": 0.8818188217076091, "position": { "x": 3, "y": 0 @@ -5738,10 +6911,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6291, - "time": 0.8851974378827339, + "noteOrder": 6294, + "time": 0.885197437882734, "position": { "x": 4, "y": 0 @@ -5761,10 +6934,10 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6291, - "time": 0.8851974378827339, + "noteOrder": 6294, + "time": 0.885197437882734, "position": { "x": 5, "y": 0 @@ -5784,10 +6957,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6315, - "time": 0.8885760540578588, + "noteOrder": 6318, + "time": 0.8885760540578589, "position": { "x": 6, "y": 0 @@ -5807,10 +6980,10 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6315, - "time": 0.8885760540578588, + "noteOrder": 6318, + "time": 0.8885760540578589, "position": { "x": 7, "y": 0 @@ -5830,10 +7003,10 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6339, - "time": 0.8919546702329837, + "noteOrder": 6342, + "time": 0.8919546702329838, "position": { "x": 8, "y": 0 @@ -5853,10 +7026,10 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6339, - "time": 0.8919546702329837, + "noteOrder": 6342, + "time": 0.8919546702329838, "position": { "x": 8, "y": 0 @@ -5876,9 +7049,9 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6363, + "noteOrder": 6366, "time": 0.8953332864081087, "position": { "x": 7, @@ -5899,9 +7072,9 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6363, + "noteOrder": 6366, "time": 0.8953332864081087, "position": { "x": 5, @@ -5922,10 +7095,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6387, - "time": 0.8987119025832335, + "noteOrder": 6390, + "time": 0.8987119025832336, "position": { "x": 4, "y": 0 @@ -5945,10 +7118,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6387, - "time": 0.8987119025832335, + "noteOrder": 6390, + "time": 0.8987119025832336, "position": { "x": 4, "y": 0 @@ -5968,9 +7141,9 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6411, + "noteOrder": 6414, "time": 0.9020905187583586, "position": { "x": 3, @@ -5991,9 +7164,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6411, + "noteOrder": 6414, "time": 0.9020905187583586, "position": { "x": 2, @@ -6014,10 +7187,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6435, - "time": 0.9054691349334835, + "noteOrder": 6438, + "time": 0.9054691349334836, "position": { "x": 3, "y": 0 @@ -6037,10 +7210,10 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6435, - "time": 0.9054691349334835, + "noteOrder": 6438, + "time": 0.9054691349334836, "position": { "x": 4, "y": 0 @@ -6060,10 +7233,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6459, - "time": 0.9088477511086084, + "noteOrder": 6462, + "time": 0.9088477511086085, "position": { "x": 5, "y": 0 @@ -6083,10 +7256,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6459, - "time": 0.9088477511086084, + "noteOrder": 6462, + "time": 0.9088477511086085, "position": { "x": 6, "y": 0 @@ -6106,9 +7279,9 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6483, + "noteOrder": 6486, "time": 0.9122263672837334, "position": { "x": 7, @@ -6129,9 +7302,9 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6483, + "noteOrder": 6486, "time": 0.9122263672837334, "position": { "x": 8, @@ -6152,9 +7325,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6507, + "noteOrder": 6510, "time": 0.9156049834588583, "position": { "x": 7, @@ -6175,9 +7348,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6507, + "noteOrder": 6510, "time": 0.9156049834588583, "position": { "x": 6, @@ -6198,10 +7371,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6531, - "time": 0.9189835996339831, + "noteOrder": 6534, + "time": 0.9189835996339832, "position": { "x": 5, "y": 0 @@ -6221,10 +7394,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6531, - "time": 0.9189835996339831, + "noteOrder": 6534, + "time": 0.9189835996339832, "position": { "x": 4, "y": 0 @@ -6244,10 +7417,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6555, - "time": 0.9223622158091082, + "noteOrder": 6558, + "time": 0.9223622158091083, "position": { "x": 3, "y": 0 @@ -6267,10 +7440,10 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6555, - "time": 0.9223622158091082, + "noteOrder": 6558, + "time": 0.9223622158091083, "position": { "x": 2, "y": 0 @@ -6290,10 +7463,10 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6580, - "time": 0.9257408319842331, + "noteOrder": 6582, + "time": 0.9257408319842332, "position": { "x": 3, "y": 0 @@ -6313,10 +7486,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6580, - "time": 0.9257408319842331, + "noteOrder": 6582, + "time": 0.9257408319842332, "position": { "x": 4, "y": 0 @@ -6336,10 +7509,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6604, - "time": 0.9291194481593581, + "noteOrder": 6606, + "time": 0.9291194481593582, "position": { "x": 5, "y": 0 @@ -6359,10 +7532,10 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6604, - "time": 0.9291194481593581, + "noteOrder": 6606, + "time": 0.9291194481593582, "position": { "x": 6, "y": 0 @@ -6382,10 +7555,10 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6628, - "time": 0.932498064334483, + "noteOrder": 6630, + "time": 0.9324980643344831, "position": { "x": 7, "y": 0 @@ -6405,10 +7578,10 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6628, - "time": 0.932498064334483, + "noteOrder": 6630, + "time": 0.9324980643344831, "position": { "x": 8, "y": 0 @@ -6428,10 +7601,10 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6652, - "time": 0.9358766805096079, + "noteOrder": 6654, + "time": 0.935876680509608, "position": { "x": 7, "y": 0 @@ -6451,10 +7624,10 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6652, - "time": 0.9358766805096079, + "noteOrder": 6654, + "time": 0.935876680509608, "position": { "x": 6, "y": 0 @@ -6474,10 +7647,10 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6676, - "time": 0.9392552966847328, + "noteOrder": 6678, + "time": 0.939255296684733, "position": { "x": 5, "y": 0 @@ -6497,10 +7670,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6676, - "time": 0.9392552966847328, + "noteOrder": 6678, + "time": 0.939255296684733, "position": { "x": 4, "y": 0 @@ -6520,10 +7693,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6700, - "time": 0.9426339128598578, + "noteOrder": 6702, + "time": 0.9426339128598579, "position": { "x": 3, "y": 0 @@ -6543,10 +7716,10 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6700, - "time": 0.9426339128598578, + "noteOrder": 6702, + "time": 0.9426339128598579, "position": { "x": 3, "y": 0 @@ -6566,10 +7739,10 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6724, - "time": 0.9460125290349827, + "noteOrder": 6726, + "time": 0.9460125290349828, "position": { "x": 4, "y": 0 @@ -6589,10 +7762,10 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6724, - "time": 0.9460125290349827, + "noteOrder": 6726, + "time": 0.9460125290349828, "position": { "x": 4, "y": 0 @@ -6612,9 +7785,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6748, + "noteOrder": 6750, "time": 0.9493911452101077, "position": { "x": 5, @@ -6635,9 +7808,9 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6748, + "noteOrder": 6750, "time": 0.9493911452101077, "position": { "x": 6, @@ -6658,10 +7831,10 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6772, - "time": 0.9527697613852326, + "noteOrder": 6774, + "time": 0.9527697613852327, "position": { "x": 7, "y": 0 @@ -6681,10 +7854,10 @@ }, { "lineGroupId": 249, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6772, - "time": 0.9527697613852326, + "noteOrder": 6774, + "time": 0.9527697613852327, "position": { "x": 7, "y": 0 @@ -6704,9 +7877,9 @@ }, { "lineGroupId": 249, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6796, + "noteOrder": 6799, "time": 0.9561483775603576, "position": { "x": 6, @@ -6727,9 +7900,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6796, + "noteOrder": 6799, "time": 0.9561483775603576, "position": { "x": 6, @@ -6750,10 +7923,10 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6820, - "time": 0.9595269937354824, + "noteOrder": 6823, + "time": 0.9595269937354826, "position": { "x": 5, "y": 0 @@ -6773,10 +7946,10 @@ }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6820, - "time": 0.9595269937354824, + "noteOrder": 6823, + "time": 0.9595269937354826, "position": { "x": 3, "y": 0 @@ -6796,10 +7969,10 @@ }, { "lineGroupId": 251, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6844, - "time": 0.9629056099106074, + "noteOrder": 6847, + "time": 0.9629056099106075, "position": { "x": 2, "y": 0 @@ -6819,10 +7992,10 @@ }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6844, - "time": 0.9629056099106074, + "noteOrder": 6847, + "time": 0.9629056099106075, "position": { "x": 2, "y": 0 @@ -6842,9 +8015,9 @@ }, { "lineGroupId": 252, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6868, + "noteOrder": 6871, "time": 0.9662842260857324, "position": { "x": 3, @@ -6865,9 +8038,9 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6868, + "noteOrder": 6871, "time": 0.9662842260857324, "position": { "x": 4, @@ -6888,9 +8061,9 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6892, + "noteOrder": 6895, "time": 0.9696628422608573, "position": { "x": 5, @@ -6911,9 +8084,9 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6892, + "noteOrder": 6895, "time": 0.9696628422608573, "position": { "x": 7, @@ -6934,10 +8107,10 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6916, - "time": 0.9730414584359823, + "noteOrder": 6919, + "time": 0.9730414584359822, "position": { "x": 6, "y": 0 @@ -6957,10 +8130,10 @@ }, { "lineGroupId": 255, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6916, - "time": 0.9730414584359823, + "noteOrder": 6919, + "time": 0.9730414584359822, "position": { "x": 5, "y": 0 @@ -6980,10 +8153,10 @@ }, { "lineGroupId": 255, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6940, - "time": 0.9764200746111071, + "noteOrder": 6943, + "time": 0.9764200746111074, "position": { "x": 6, "y": 0 @@ -7003,10 +8176,10 @@ }, { "lineGroupId": 256, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6940, - "time": 0.9764200746111071, + "noteOrder": 6943, + "time": 0.9764200746111074, "position": { "x": 7, "y": 0 @@ -7026,10 +8199,10 @@ }, { "lineGroupId": 256, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6964, - "time": 0.979798690786232, + "noteOrder": 6967, + "time": 0.9797986907862323, "position": { "x": 6, "y": 0 @@ -7049,10 +8222,10 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6964, - "time": 0.979798690786232, + "noteOrder": 6967, + "time": 0.9797986907862323, "position": { "x": 3, "y": 0 @@ -7072,10 +8245,10 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6988, - "time": 0.9831773069613571, + "noteOrder": 6991, + "time": 0.9831773069613572, "position": { "x": 4, "y": 0 diff --git a/tracks/Synaptic/259_difficulty_1b.json b/tracks/Synaptic/259_difficulty_1b.json index a33030eb..b4e7c580 100644 --- a/tracks/Synaptic/259_difficulty_1b.json +++ b/tracks/Synaptic/259_difficulty_1b.json @@ -13,8 +13,8 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 864, - "time": 0.12163018230449779, + "noteOrder": 865, + "time": 0.12163018230449778, "position": { "x": 4, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 912, - "time": 0.12838741465474765, + "noteOrder": 913, + "time": 0.12838741465474768, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 1009, - "time": 0.1419018793552474, + "time": 0.14190187935524742, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 1105, - "time": 0.15541634405574714, + "time": 0.15541634405574717, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1153, - "time": 0.16217357640599703, + "time": 0.16217357640599706, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1201, - "time": 0.16893080875624691, + "time": 0.16893080875624694, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 1249, - "time": 0.17568804110649677, + "time": 0.1756880411064968, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1297, - "time": 0.18244527345674666, + "time": 0.1824452734567467, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 1393, - "time": 0.1959597381572464, + "time": 0.19595973815724643, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1489, - "time": 0.20947420285774615, + "time": 0.2094742028577462, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1633, - "time": 0.22974589990849578, + "noteOrder": 1634, + "time": 0.2297458999084958, "position": { "x": 7, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1657, - "time": 0.23312451608362075, + "noteOrder": 1658, + "time": 0.23312451608362078, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1681, - "time": 0.23650313225874567, + "noteOrder": 1682, + "time": 0.2365031322587457, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1705, - "time": 0.2398817484338706, + "noteOrder": 1706, + "time": 0.23988174843387064, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.24326036460899558, + "noteOrder": 1730, + "time": 0.24326036460899556, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.2466389807841205, + "noteOrder": 1754, + "time": 0.24663898078412053, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.2500175969592454, + "noteOrder": 1778, + "time": 0.25001759695924547, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2533962131343704, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1825, - "time": 0.2567748293094953, + "noteOrder": 1826, + "time": 0.25677482930949536, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.26015344548462027, "position": { "x": 6, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.2635320616597452, + "noteOrder": 1874, + "time": 0.26353206165974524, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.26691067783487016, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1921, + "noteOrder": 1922, "time": 0.2702892940099951, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.27366791018512, + "noteOrder": 1946, + "time": 0.27366791018512004, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1969, + "noteOrder": 1970, "time": 0.27704652636024496, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.2804251425353699, + "noteOrder": 1994, + "time": 0.28042514253536993, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2401, - "time": 0.33786161751249383, + "noteOrder": 2402, + "time": 0.3378616175124939, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2425, - "time": 0.34124023368761874, + "noteOrder": 2426, + "time": 0.3412402336876188, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.3446188498627437, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.3479974660378687, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2497, - "time": 0.35137608221299355, + "noteOrder": 2498, + "time": 0.3513760822129936, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2521, + "noteOrder": 2522, "time": 0.3547546983881185, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2546, "time": 0.3581333145632435, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2569, - "time": 0.3615119307383684, + "noteOrder": 2570, + "time": 0.36151193073836846, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2593, - "time": 0.3648905469134933, + "noteOrder": 2594, + "time": 0.3648905469134934, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2617, + "noteOrder": 2619, "time": 0.3682691630886183, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2641, - "time": 0.3716477792637432, + "noteOrder": 2643, + "time": 0.37164777926374326, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2665, + "noteOrder": 2667, "time": 0.3750263954388682, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2689, + "noteOrder": 2691, "time": 0.3784050116139931, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2713, + "noteOrder": 2715, "time": 0.381783627789118, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2737, - "time": 0.385162243964243, + "noteOrder": 2739, + "time": 0.38516224396424303, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2761, + "noteOrder": 2763, "time": 0.38854086013936795, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2785, - "time": 0.3919194763144928, + "noteOrder": 2787, + "time": 0.39191947631449287, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2809, - "time": 0.3952980924896178, + "noteOrder": 2811, + "time": 0.39529809248961784, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.39867670866474275, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2858, + "noteOrder": 2859, "time": 0.40205532483986767, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2882, + "noteOrder": 2883, "time": 0.4054339410149926, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2906, - "time": 0.40881255719011755, + "noteOrder": 2907, + "time": 0.4088125571901176, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.41219117336524247, + "noteOrder": 2931, + "time": 0.4121911733652425, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2954, + "noteOrder": 2955, "time": 0.41556978954036744, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.4189484057154923, + "noteOrder": 2979, + "time": 0.4189484057154924, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.42232702189061727, + "noteOrder": 3003, + "time": 0.4223270218906173, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.42570563806574224, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3050, - "time": 0.42908425424086716, + "noteOrder": 3051, + "time": 0.4290842542408672, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.4324628704159921, + "noteOrder": 3075, + "time": 0.43246287041599213, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3098, - "time": 0.43584148659111704, + "noteOrder": 3099, + "time": 0.4358414865911171, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.493277961568241, + "noteOrder": 3507, + "time": 0.49327796156824105, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.5203068909692405, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.5338213556697403, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3842, + "noteOrder": 3844, "time": 0.5405785880199901, "position": { "x": 2, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3868, "time": 0.5439572041951151, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.54733582037024, + "noteOrder": 3892, + "time": 0.5473358203702401, "position": { "x": 2, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.5507144365453649, + "noteOrder": 3916, + "time": 0.550714436545365, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3986, - "time": 0.5608502850707398, + "noteOrder": 3988, + "time": 0.5608502850707399, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.5743647497712395, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4226, + "noteOrder": 4228, "time": 0.5946364468219891, "position": { "x": 2, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4250, - "time": 0.5980150629971142, + "noteOrder": 4252, + "time": 0.598015062997114, "position": { "x": 2, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4274, - "time": 0.601393679172239, + "noteOrder": 4276, + "time": 0.6013936791722392, "position": { "x": 2, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4298, - "time": 0.6047722953473639, + "noteOrder": 4300, + "time": 0.6047722953473641, "position": { "x": 2, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4372, "time": 0.6149081438727388, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4466, - "time": 0.6284226085732385, + "noteOrder": 4468, + "time": 0.6284226085732386, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4562, + "noteOrder": 4564, "time": 0.6419370732737383, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5475, - "time": 0.770324487928486, + "noteOrder": 5477, + "time": 0.7703244879284861, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5523, + "noteOrder": 5525, "time": 0.7770817202787359, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5571, - "time": 0.7838389526289856, + "noteOrder": 5573, + "time": 0.7838389526289857, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5619, - "time": 0.7905961849792356, + "noteOrder": 5621, + "time": 0.7905961849792357, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5667, + "noteOrder": 5669, "time": 0.7973534173294855, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5715, + "noteOrder": 5717, "time": 0.8041106496797353, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5763, + "noteOrder": 5766, "time": 0.8108678820299852, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5811, - "time": 0.8176251143802351, + "noteOrder": 5814, + "time": 0.8176251143802352, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5859, - "time": 0.8243823467304849, + "noteOrder": 5862, + "time": 0.824382346730485, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5907, + "noteOrder": 5910, "time": 0.8311395790807349, "position": { "x": 3, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5955, - "time": 0.8378968114309846, + "noteOrder": 5958, + "time": 0.8378968114309848, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6003, - "time": 0.8446540437812345, + "noteOrder": 6006, + "time": 0.8446540437812347, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6051, + "noteOrder": 6054, "time": 0.8514112761314845, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6099, - "time": 0.8581685084817343, + "noteOrder": 6102, + "time": 0.8581685084817344, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.8649257408319841, + "noteOrder": 6150, + "time": 0.8649257408319843, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6195, - "time": 0.8716829731822341, + "noteOrder": 6198, + "time": 0.8716829731822342, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6243, - "time": 0.8784402055324839, + "noteOrder": 6246, + "time": 0.878440205532484, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6267, - "time": 0.8818188217076088, + "noteOrder": 6270, + "time": 0.8818188217076091, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6291, - "time": 0.8851974378827339, + "noteOrder": 6294, + "time": 0.885197437882734, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6315, - "time": 0.8885760540578588, + "noteOrder": 6318, + "time": 0.8885760540578589, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6339, - "time": 0.8919546702329837, + "noteOrder": 6342, + "time": 0.8919546702329838, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6363, + "noteOrder": 6366, "time": 0.8953332864081087, "position": { "x": 4, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6387, - "time": 0.8987119025832335, + "noteOrder": 6390, + "time": 0.8987119025832336, "position": { "x": 5, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6411, + "noteOrder": 6414, "time": 0.9020905187583586, "position": { "x": 2, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6435, - "time": 0.9054691349334835, + "noteOrder": 6438, + "time": 0.9054691349334836, "position": { "x": 6, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6459, - "time": 0.9088477511086084, + "noteOrder": 6462, + "time": 0.9088477511086085, "position": { "x": 4, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6483, + "noteOrder": 6486, "time": 0.9122263672837334, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6507, + "noteOrder": 6510, "time": 0.9156049834588583, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6531, - "time": 0.9189835996339831, + "noteOrder": 6534, + "time": 0.9189835996339832, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6555, - "time": 0.9223622158091082, + "noteOrder": 6558, + "time": 0.9223622158091083, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6580, - "time": 0.9257408319842331, + "noteOrder": 6582, + "time": 0.9257408319842332, "position": { "x": 8, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6604, - "time": 0.9291194481593581, + "noteOrder": 6606, + "time": 0.9291194481593582, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6628, - "time": 0.932498064334483, + "noteOrder": 6630, + "time": 0.9324980643344831, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6652, - "time": 0.9358766805096079, + "noteOrder": 6654, + "time": 0.935876680509608, "position": { "x": 2, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6676, - "time": 0.9392552966847328, + "noteOrder": 6678, + "time": 0.939255296684733, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6700, - "time": 0.9426339128598578, + "noteOrder": 6702, + "time": 0.9426339128598579, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6724, - "time": 0.9460125290349827, + "noteOrder": 6726, + "time": 0.9460125290349828, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6748, + "noteOrder": 6750, "time": 0.9493911452101077, "position": { "x": 4, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6772, - "time": 0.9527697613852326, + "noteOrder": 6774, + "time": 0.9527697613852327, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6796, + "noteOrder": 6799, "time": 0.9561483775603576, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6820, - "time": 0.9595269937354824, + "noteOrder": 6823, + "time": 0.9595269937354826, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6844, - "time": 0.9629056099106074, + "noteOrder": 6847, + "time": 0.9629056099106075, "position": { "x": 2, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6868, + "noteOrder": 6871, "time": 0.9662842260857324, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6892, + "noteOrder": 6895, "time": 0.9696628422608573, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6916, - "time": 0.9730414584359823, + "noteOrder": 6919, + "time": 0.9730414584359822, "position": { "x": 8, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6940, - "time": 0.9764200746111071, + "noteOrder": 6943, + "time": 0.9764200746111074, "position": { "x": 4, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6964, - "time": 0.979798690786232, + "noteOrder": 6967, + "time": 0.9797986907862323, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6988, - "time": 0.9831773069613571, + "noteOrder": 6991, + "time": 0.9831773069613572, "position": { "x": 4, "y": 0 @@ -2496,10 +2496,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.013514464700499752, + "time": 0.013514464700499754, "position": { "x": 4, "y": 0 @@ -2519,10 +2519,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.02027169705074963, + "time": 0.020271697050749632, "position": { "x": 4, "y": 0 @@ -2542,10 +2542,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.027028929400999505, + "time": 0.027028929400999508, "position": { "x": 8, "y": 0 @@ -2565,7 +2565,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.033786161751249384, @@ -2588,10 +2588,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.04054339410149926, + "time": 0.040543394101499264, "position": { "x": 6, "y": 0 @@ -2611,7 +2611,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, "time": 0.047300626451749136, @@ -2634,10 +2634,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.05405785880199901, + "time": 0.054057858801999016, "position": { "x": 6, "y": 0 @@ -2657,10 +2657,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 432, - "time": 0.060815091152248896, + "time": 0.06081509115224889, "position": { "x": 6, "y": 0 @@ -2680,7 +2680,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, "time": 0.06757232350249877, @@ -2703,9 +2703,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 528, + "noteOrder": 529, "time": 0.07432955585274864, "position": { "x": 3, @@ -2726,10 +2726,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.08108678820299851, + "noteOrder": 577, + "time": 0.08108678820299853, "position": { "x": 4, "y": 0 @@ -2749,10 +2749,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 624, - "time": 0.08784402055324839, + "noteOrder": 625, + "time": 0.0878440205532484, "position": { "x": 4, "y": 0 @@ -2772,9 +2772,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.09460125290349827, "position": { "x": 5, @@ -2795,9 +2795,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 720, + "noteOrder": 721, "time": 0.10135848525374815, "position": { "x": 5, @@ -2818,10 +2818,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, - "time": 0.10811571760399802, + "noteOrder": 769, + "time": 0.10811571760399803, "position": { "x": 8, "y": 0 @@ -2841,10 +2841,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 816, - "time": 0.11487294995424789, + "noteOrder": 817, + "time": 0.1148729499542479, "position": { "x": 8, "y": 0 @@ -2864,10 +2864,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.2838037587104948, + "noteOrder": 2018, + "time": 0.28380375871049485, "position": { "x": 4, "y": 0 @@ -2887,9 +2887,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2041, + "noteOrder": 2042, "time": 0.28718237488561976, "position": { "x": 4, @@ -2910,9 +2910,9 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.29056099106074473, "position": { "x": 6, @@ -2933,9 +2933,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2089, + "noteOrder": 2090, "time": 0.29393960723586965, "position": { "x": 6, @@ -2956,9 +2956,9 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.29731822341099456, "position": { "x": 4, @@ -2979,10 +2979,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.3006968395861195, + "noteOrder": 2138, + "time": 0.3006968395861196, "position": { "x": 4, "y": 0 @@ -3002,10 +3002,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2161, - "time": 0.30407545576124445, + "noteOrder": 2162, + "time": 0.3040754557612445, "position": { "x": 7, "y": 0 @@ -3025,9 +3025,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2185, + "noteOrder": 2186, "time": 0.3074540719363694, "position": { "x": 7, @@ -3048,10 +3048,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.3108326881114943, + "noteOrder": 2210, + "time": 0.31083268811149434, "position": { "x": 4, "y": 0 @@ -3071,10 +3071,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.31421130428661925, + "noteOrder": 2234, + "time": 0.3142113042866193, "position": { "x": 4, "y": 0 @@ -3094,9 +3094,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.3175899204617442, "position": { "x": 6, @@ -3117,9 +3117,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.32096853663686914, "position": { "x": 6, @@ -3140,10 +3140,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.32434715281199406, + "noteOrder": 2306, + "time": 0.3243471528119941, "position": { "x": 4, "y": 0 @@ -3163,9 +3163,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2329, + "noteOrder": 2330, "time": 0.327725768987119, "position": { "x": 4, @@ -3186,10 +3186,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.33110438516224394, + "noteOrder": 2354, + "time": 0.331104385162244, "position": { "x": 6, "y": 0 @@ -3209,9 +3209,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2377, + "noteOrder": 2378, "time": 0.3344830013373689, "position": { "x": 6, @@ -3232,10 +3232,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.44597733511649185, + "noteOrder": 3171, + "time": 0.4459773351164919, "position": { "x": 7, "y": 0 @@ -3253,12 +3253,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4527345674667418, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4527345674667418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, - "time": 0.45949179981699156, + "noteOrder": 3267, + "time": 0.4594917998169916, "position": { "x": 7, "y": 0 @@ -3276,12 +3322,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3315, + "time": 0.46624903216724156, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3315, + "time": 0.46624903216724156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.4730062645174914, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.47300626451749134, + "noteOrder": 3387, + "time": 0.47638488069261636, "position": { "x": 8, "y": 0 @@ -3299,12 +3414,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3387, + "time": 0.47638488069261636, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3411, + "time": 0.4797634968677413, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, - "time": 0.4797634968677412, + "noteOrder": 3435, + "time": 0.4831421130428662, "position": { "x": 8, "y": 0 @@ -3322,12 +3483,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3435, + "time": 0.4831421130428662, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3458, - "time": 0.48652072921799117, + "noteOrder": 3459, + "time": 0.4865207292179911, "position": { "x": 8, "y": 0 @@ -3347,10 +3531,10 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3554, - "time": 0.5000351939184908, + "noteOrder": 3555, + "time": 0.5000351939184909, "position": { "x": 4, "y": 0 @@ -3370,10 +3554,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, - "time": 0.5000351939184908, + "noteOrder": 3555, + "time": 0.5000351939184909, "position": { "x": 2, "y": 0 @@ -3391,11 +3575,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3579, + "time": 0.5034138100936159, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3579, + "time": 0.5034138100936159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3602, + "noteOrder": 3603, "time": 0.5067924262687408, "position": { "x": 2, @@ -3414,12 +3644,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3627, + "time": 0.5101710424438657, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3627, + "time": 0.5101710424438657, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.5135496586189906, + "noteOrder": 3652, + "time": 0.5135496586189907, "position": { "x": 2, "y": 0 @@ -3439,10 +3715,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.5270641233194904, + "noteOrder": 3748, + "time": 0.5270641233194905, "position": { "x": 6, "y": 0 @@ -3462,10 +3738,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3746, - "time": 0.5270641233194904, + "noteOrder": 3748, + "time": 0.5270641233194905, "position": { "x": 8, "y": 0 @@ -3485,9 +3761,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, + "noteOrder": 3844, "time": 0.5405785880199901, "position": { "x": 4, @@ -3508,9 +3784,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, + "noteOrder": 3940, "time": 0.5540930527204899, "position": { "x": 2, @@ -3531,10 +3807,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.5676075174209896, + "noteOrder": 4036, + "time": 0.5676075174209897, "position": { "x": 6, "y": 0 @@ -3554,10 +3830,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.5676075174209896, + "noteOrder": 4036, + "time": 0.5676075174209897, "position": { "x": 8, "y": 0 @@ -3577,9 +3853,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.5811219821214895, "position": { "x": 4, @@ -3600,9 +3876,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.5811219821214895, "position": { "x": 2, @@ -3621,11 +3897,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4156, + "time": 0.5845005982966144, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4156, + "time": 0.5845005982966144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4178, + "noteOrder": 4180, "time": 0.5878792144717393, "position": { "x": 2, @@ -3644,12 +3966,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4204, + "time": 0.5912578306468642, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4204, + "time": 0.5912578306468642, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4322, - "time": 0.6081509115224889, + "noteOrder": 4324, + "time": 0.608150911522489, "position": { "x": 2, "y": 0 @@ -3669,10 +4037,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.6216653762229886, + "noteOrder": 4420, + "time": 0.6216653762229887, "position": { "x": 6, "y": 0 @@ -3692,10 +4060,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4418, - "time": 0.6216653762229886, + "noteOrder": 4420, + "time": 0.6216653762229887, "position": { "x": 8, "y": 0 @@ -3715,9 +4083,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.6351798409234884, "position": { "x": 4, @@ -3738,9 +4106,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.6351798409234884, "position": { "x": 2, @@ -3761,9 +4129,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4562, + "noteOrder": 4564, "time": 0.6419370732737383, "position": { "x": 2, @@ -3784,10 +4152,10 @@ }, { "lineGroupId": 109, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4610, - "time": 0.6486943056239881, + "noteOrder": 4612, + "time": 0.6486943056239882, "position": { "x": 5, "y": 0 @@ -3807,10 +4175,10 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, - "time": 0.6622087703244879, + "noteOrder": 4709, + "time": 0.662208770324488, "position": { "x": 6, "y": 0 @@ -3830,9 +4198,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.6689660026747378, "position": { "x": 6, @@ -3853,10 +4221,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.6757232350249877, + "noteOrder": 4805, + "time": 0.6757232350249878, "position": { "x": 4, "y": 0 @@ -3876,10 +4244,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4851, - "time": 0.6824804673752375, + "noteOrder": 4853, + "time": 0.6824804673752376, "position": { "x": 4, "y": 0 @@ -3899,9 +4267,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.6892376997254874, "position": { "x": 6, @@ -3922,9 +4290,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4947, + "noteOrder": 4949, "time": 0.6959949320757374, "position": { "x": 6, @@ -3945,10 +4313,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4995, - "time": 0.7027521644259871, + "noteOrder": 4997, + "time": 0.7027521644259872, "position": { "x": 6, "y": 0 @@ -3968,9 +4336,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.709509396776237, "position": { "x": 6, @@ -3991,9 +4359,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5091, + "noteOrder": 5093, "time": 0.716266629126487, "position": { "x": 6, @@ -4014,10 +4382,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5139, - "time": 0.7230238614767368, + "noteOrder": 5141, + "time": 0.7230238614767369, "position": { "x": 6, "y": 0 @@ -4037,10 +4405,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5187, - "time": 0.7297810938269866, + "noteOrder": 5189, + "time": 0.7297810938269867, "position": { "x": 3, "y": 0 @@ -4060,9 +4428,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.7365383261772366, "position": { "x": 3, @@ -4083,10 +4451,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5283, - "time": 0.7432955585274864, + "noteOrder": 5285, + "time": 0.7432955585274865, "position": { "x": 6, "y": 0 @@ -4106,9 +4474,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5333, "time": 0.7500527908777364, "position": { "x": 6, @@ -4129,9 +4497,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.7568100232279862, "position": { "x": 3, @@ -4152,9 +4520,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.763567255578236, "position": { "x": 3, diff --git a/tracks/Synaptic/info.json b/tracks/Synaptic/info.json index ba8247d1..a287c34e 100644 --- a/tracks/Synaptic/info.json +++ b/tracks/Synaptic/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Synaptic", - "SongLength": "121.051429", + "SongLength": "111.098776", "SongAuthorName": "2ToneDisco", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1a.json b/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1a.json index 5682c4e9..f8839be3 100644 --- a/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1a.json +++ b/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.020161290322580645, + "time": 0.020161290322580648, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 244, - "time": 0.04032258064516129, + "time": 0.040322580645161296, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 268, - "time": 0.044354838709677415, + "time": 0.04435483870967742, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 366, - "time": 0.06048387096774193, + "time": 0.06048387096774194, "position": { "x": 5, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 463, + "noteOrder": 464, "time": 0.07661290322580645, "position": { "x": 7, @@ -274,7 +274,7 @@ }, { "noteOrder": 488, - "time": 0.08064516129032258, + "time": 0.08064516129032259, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 537, - "time": 0.08870967741935483, + "time": 0.08870967741935484, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 561, - "time": 0.09274193548387097, + "time": 0.09274193548387098, "position": { "x": 4, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 585, + "noteOrder": 586, "time": 0.0967741935483871, "position": { "x": 3, @@ -374,7 +374,7 @@ }, { "noteOrder": 610, - "time": 0.10080645161290322, + "time": 0.10080645161290323, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 659, - "time": 0.10887096774193547, + "time": 0.10887096774193548, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 707, - "time": 0.11693548387096774, + "noteOrder": 708, + "time": 0.11693548387096775, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 732, - "time": 0.12096774193548386, + "time": 0.12096774193548387, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 756, + "noteOrder": 757, "time": 0.125, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 951, - "time": 0.157258064516129, + "noteOrder": 952, + "time": 0.15725806451612903, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 976, - "time": 0.16129032258064516, + "time": 0.16129032258064518, "position": { "x": 8, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1000, + "noteOrder": 1001, "time": 0.16532258064516128, "position": { "x": 3, @@ -674,7 +674,7 @@ }, { "noteOrder": 1049, - "time": 0.17338709677419353, + "time": 0.17338709677419356, "position": { "x": 5, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.17540322580645162, "position": { "x": 4, @@ -714,7 +714,7 @@ }, { "noteOrder": 1098, - "time": 0.18145161290322578, + "time": 0.1814516129032258, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1122, - "time": 0.18548387096774194, + "noteOrder": 1123, + "time": 0.18548387096774197, "position": { "x": 2, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1195, + "noteOrder": 1196, "time": 0.1975806451612903, "position": { "x": 7, @@ -814,7 +814,7 @@ }, { "noteOrder": 1220, - "time": 0.20161290322580644, + "time": 0.20161290322580647, "position": { "x": 2, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1244, + "noteOrder": 1245, "time": 0.2056451612903226, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1256, - "time": 0.20766129032258063, + "noteOrder": 1257, + "time": 0.20766129032258066, "position": { "x": 7, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1293, - "time": 0.21370967741935484, + "time": 0.21370967741935487, "position": { "x": 5, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1342, - "time": 0.22177419354838707, + "time": 0.2217741935483871, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1390, - "time": 0.22983870967741934, + "noteOrder": 1391, + "time": 0.22983870967741937, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1439, + "noteOrder": 1440, "time": 0.2379032258064516, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1573, + "noteOrder": 1574, "time": 0.2600806451612903, "position": { "x": 3, @@ -974,7 +974,7 @@ }, { "noteOrder": 1659, - "time": 0.27419354838709675, + "time": 0.2741935483870968, "position": { "x": 7, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1708, - "time": 0.28225806451612906, + "time": 0.282258064516129, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1927, - "time": 0.3185483870967742, + "noteOrder": 1928, + "time": 0.31854838709677424, "position": { "x": 8, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.33064516129032256, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2012, - "time": 0.3326612903225807, + "noteOrder": 2013, + "time": 0.3326612903225806, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2122, + "noteOrder": 2123, "time": 0.35080645161290325, "position": { "x": 2, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2195, - "time": 0.36290322580645157, + "noteOrder": 2196, + "time": 0.3629032258064516, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2208, - "time": 0.36491935483870963, + "noteOrder": 2209, + "time": 0.3649193548387097, "position": { "x": 5, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.3911290322580645, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.3951612903225806, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2464, - "time": 0.407258064516129, + "noteOrder": 2465, + "time": 0.40725806451612906, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2488, + "noteOrder": 2489, "time": 0.4112903225806452, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2538, "time": 0.41935483870967744, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.4233870967741935, + "noteOrder": 2562, + "time": 0.42338709677419356, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2586, - "time": 0.4274193548387097, + "noteOrder": 2587, + "time": 0.42741935483870974, "position": { "x": 8, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2610, + "noteOrder": 2611, "time": 0.4314516129032258, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2659, + "noteOrder": 2660, "time": 0.43951612903225806, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2683, - "time": 0.44354838709677413, + "noteOrder": 2684, + "time": 0.4435483870967742, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2732, + "noteOrder": 2733, "time": 0.45161290322580644, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.45564516129032256, + "noteOrder": 2758, + "time": 0.4556451612903226, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.4596774193548387, + "noteOrder": 2782, + "time": 0.45967741935483875, "position": { "x": 2, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2805, - "time": 0.4637096774193548, + "noteOrder": 2806, + "time": 0.46370967741935487, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2817, - "time": 0.4657258064516129, + "noteOrder": 2819, + "time": 0.46572580645161293, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2927, - "time": 0.48387096774193544, + "noteOrder": 2928, + "time": 0.4838709677419355, "position": { "x": 8, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3000, - "time": 0.4959677419354838, + "noteOrder": 3002, + "time": 0.4959677419354839, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3014, "time": 0.49798387096774194, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3147, + "noteOrder": 3148, "time": 0.5201612903225806, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3171, + "noteOrder": 3172, "time": 0.5241935483870968, "position": { "x": 8, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3196, + "noteOrder": 3197, "time": 0.5282258064516129, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.532258064516129, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.532258064516129, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.5362903225806451, + "noteOrder": 3246, + "time": 0.5362903225806452, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.5362903225806451, + "noteOrder": 3246, + "time": 0.5362903225806452, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.5403225806451613, + "noteOrder": 3270, + "time": 0.5403225806451614, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.5403225806451613, + "noteOrder": 3270, + "time": 0.5403225806451614, "position": { "x": 3, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5443548387096775, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5443548387096775, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3342, + "noteOrder": 3343, "time": 0.5524193548387096, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3368, "time": 0.5564516129032258, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.560483870967742, + "noteOrder": 3392, + "time": 0.5604838709677419, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3440, + "noteOrder": 3441, "time": 0.5685483870967741, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3464, + "noteOrder": 3465, "time": 0.5725806451612903, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3488, - "time": 0.5766129032258064, + "noteOrder": 3490, + "time": 0.5766129032258065, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3513, + "noteOrder": 3514, "time": 0.5806451612903226, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3537, + "noteOrder": 3538, "time": 0.5846774193548387, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3561, - "time": 0.5887096774193548, + "noteOrder": 3563, + "time": 0.5887096774193549, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3561, - "time": 0.5887096774193548, + "noteOrder": 3563, + "time": 0.5887096774193549, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3586, - "time": 0.5927419354838709, + "noteOrder": 3587, + "time": 0.592741935483871, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3586, - "time": 0.5927419354838709, + "noteOrder": 3587, + "time": 0.592741935483871, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3635, + "noteOrder": 3636, "time": 0.6008064516129032, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3659, + "noteOrder": 3661, "time": 0.6048387096774194, "position": { "x": 8, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3683, - "time": 0.6088709677419354, + "noteOrder": 3685, + "time": 0.6088709677419355, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3708, + "noteOrder": 3709, "time": 0.6129032258064516, "position": { "x": 8, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3732, + "noteOrder": 3734, "time": 0.6169354838709677, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 3758, "time": 0.6209677419354839, "position": { "x": 8, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3781, + "noteOrder": 3783, "time": 0.625, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3793, + "noteOrder": 3795, "time": 0.627016129032258, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3830, - "time": 0.6330645161290323, + "noteOrder": 3831, + "time": 0.6330645161290324, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3854, - "time": 0.6370967741935484, + "noteOrder": 3856, + "time": 0.6370967741935485, "position": { "x": 2, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3879, - "time": 0.6411290322580645, + "noteOrder": 3880, + "time": 0.6411290322580646, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.6451612903225806, + "noteOrder": 3905, + "time": 0.6451612903225807, "position": { "x": 2, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6491935483870968, + "noteOrder": 3929, + "time": 0.6491935483870969, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3952, + "noteOrder": 3953, "time": 0.6532258064516129, "position": { "x": 2, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.657258064516129, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3988, + "noteOrder": 3990, "time": 0.6592741935483871, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.6653225806451614, + "noteOrder": 4027, + "time": 0.6653225806451613, "position": { "x": 5, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4074, + "noteOrder": 4075, "time": 0.6733870967741935, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4123, - "time": 0.6814516129032259, + "noteOrder": 4124, + "time": 0.6814516129032258, "position": { "x": 5, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4171, - "time": 0.689516129032258, + "noteOrder": 4173, + "time": 0.6895161290322581, "position": { "x": 5, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4305, + "noteOrder": 4307, "time": 0.7116935483870968, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 4466, "time": 0.7379032258064516, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 4478, "time": 0.7399193548387096, "position": { "x": 5, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4562, + "noteOrder": 4563, "time": 0.7540322580645161, "position": { "x": 3, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4708, + "noteOrder": 4710, "time": 0.7782258064516129, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4732, + "noteOrder": 4734, "time": 0.782258064516129, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4757, + "noteOrder": 4759, "time": 0.7862903225806451, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.8024193548387097, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4867, + "noteOrder": 4868, "time": 0.8044354838709677, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4928, - "time": 0.814516129032258, + "noteOrder": 4929, + "time": 0.8145161290322581, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4940, + "noteOrder": 4942, "time": 0.8165322580645161, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4976, + "noteOrder": 4978, "time": 0.8225806451612904, "position": { "x": 3, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4989, + "noteOrder": 4991, "time": 0.8245967741935484, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.842741935483871, "position": { "x": 5, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5123, - "time": 0.846774193548387, + "noteOrder": 5125, + "time": 0.8467741935483871, "position": { "x": 8, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5147, - "time": 0.8508064516129031, + "noteOrder": 5149, + "time": 0.8508064516129034, "position": { "x": 5, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5196, + "noteOrder": 5198, "time": 0.8588709677419355, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.8629032258064516, "position": { "x": 4, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5269, - "time": 0.8709677419354838, + "noteOrder": 5271, + "time": 0.8709677419354839, "position": { "x": 6, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5293, + "noteOrder": 5296, "time": 0.875, "position": { "x": 5, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5318, + "noteOrder": 5320, "time": 0.8790322580645161, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5342, + "noteOrder": 5344, "time": 0.8830645161290323, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5367, - "time": 0.8870967741935483, + "noteOrder": 5369, + "time": 0.8870967741935484, "position": { "x": 4, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.8911290322580645, "position": { "x": 7, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5415, + "noteOrder": 5418, "time": 0.8951612903225806, "position": { "x": 2, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.9032258064516129, "position": { "x": 4, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5489, - "time": 0.907258064516129, + "noteOrder": 5491, + "time": 0.9072580645161291, "position": { "x": 5, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5513, - "time": 0.9112903225806451, + "noteOrder": 5515, + "time": 0.9112903225806452, "position": { "x": 8, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5537, - "time": 0.9153225806451613, + "noteOrder": 5540, + "time": 0.9153225806451614, "position": { "x": 4, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5550, + "noteOrder": 5552, "time": 0.9173387096774194, "position": { "x": 6, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5586, + "noteOrder": 5588, "time": 0.9233870967741936, "position": { "x": 7, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5635, - "time": 0.9314516129032258, + "noteOrder": 5637, + "time": 0.9314516129032259, "position": { "x": 3, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.9516129032258064, "position": { "x": 3, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 5771, "time": 0.9536290322580645, "position": { "x": 5, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5903, + "noteOrder": 5906, "time": 0.9758064516129032, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5915, - "time": 0.9778225806451613, + "noteOrder": 5918, + "time": 0.9778225806451614, "position": { "x": 5, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5928, + "noteOrder": 5930, "time": 0.9798387096774194, "position": { "x": 7, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5940, - "time": 0.9818548387096774, + "noteOrder": 5942, + "time": 0.9818548387096775, "position": { "x": 3, "y": 0 @@ -3136,7 +3136,7 @@ "lineNodes": [ { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, "time": 0.03225806451612903, @@ -3157,12 +3157,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 8, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 207, + "time": 0.0342741935483871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 8, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 207, + "time": 0.0342741935483871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 8, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 220, + "time": 0.036290322580645164, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 8, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 220, + "time": 0.036290322580645164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, - "time": 0.04032258064516129, + "time": 0.040322580645161296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 256, + "time": 0.04233870967741935, "position": { "x": 7, "y": 0 @@ -3180,9 +3295,78 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 256, + "time": 0.04233870967741935, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 268, + "time": 0.04435483870967742, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 268, + "time": 0.04435483870967742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, "time": 0.04838709677419355, @@ -3205,7 +3389,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 317, "time": 0.05241935483870968, @@ -3228,7 +3412,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 342, "time": 0.056451612903225805, @@ -3251,10 +3435,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 366, - "time": 0.06048387096774193, + "time": 0.06048387096774194, "position": { "x": 7, "y": 0 @@ -3274,7 +3458,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 390, "time": 0.06451612903225806, @@ -3295,12 +3479,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 403, + "time": 0.06653225806451613, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 403, + "time": 0.06653225806451613, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 415, - "time": 0.06854838709677419, + "time": 0.0685483870967742, "position": { "x": 7, "y": 0 @@ -3319,13 +3549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 439, - "time": 0.07258064516129033, + "noteOrder": 427, + "time": 0.07056451612903225, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3337,18 +3567,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 585, - "time": 0.0967741935483871, + "noteOrder": 427, + "time": 0.07056451612903225, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3365,11 +3595,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 634, - "time": 0.10483870967741936, + "noteOrder": 439, + "time": 0.07258064516129033, "position": { "x": 3, "y": 0 @@ -3388,13 +3618,5602 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 805, - "time": 0.13306451612903225, + "noteOrder": 451, + "time": 0.07459677419354839, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 451, + "time": 0.07459677419354839, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 464, + "time": 0.07661290322580645, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 464, + "time": 0.07661290322580645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 586, + "time": 0.0967741935483871, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 598, + "time": 0.09879032258064516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 598, + "time": 0.09879032258064516, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 610, + "time": 0.10080645161290323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 610, + "time": 0.10080645161290323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 634, + "time": 0.10483870967741936, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 647, + "time": 0.10685483870967744, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 647, + "time": 0.10685483870967744, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 659, + "time": 0.10887096774193548, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 659, + "time": 0.10887096774193548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 805, + "time": 0.13306451612903225, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 818, + "time": 0.13508064516129034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 818, + "time": 0.13508064516129034, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 830, + "time": 0.1370967741935484, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 842, + "time": 0.13911290322580644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 842, + "time": 0.13911290322580644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 879, + "time": 0.14516129032258066, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 903, + "time": 0.14919354838709678, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 952, + "time": 0.15725806451612903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 976, + "time": 0.16129032258064518, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1001, + "time": 0.16532258064516128, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1025, + "time": 0.1693548387096774, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1049, + "time": 0.17338709677419356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1074, + "time": 0.1774193548387097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1098, + "time": 0.1814516129032258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1147, + "time": 0.18951612903225806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1171, + "time": 0.1935483870967742, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1196, + "time": 0.1975806451612903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1220, + "time": 0.20161290322580647, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1245, + "time": 0.2056451612903226, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1269, + "time": 0.20967741935483872, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1318, + "time": 0.21774193548387097, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1318, + "time": 0.21774193548387097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1367, + "time": 0.22580645161290322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1367, + "time": 0.22580645161290322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1415, + "time": 0.2338709677419355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1415, + "time": 0.2338709677419355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1440, + "time": 0.2379032258064516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1464, + "time": 0.24193548387096775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1476, + "time": 0.2439516129032258, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1476, + "time": 0.2439516129032258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1489, + "time": 0.24596774193548387, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1501, + "time": 0.24798387096774194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1501, + "time": 0.24798387096774194, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1513, + "time": 0.25, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1525, + "time": 0.25201612903225806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1525, + "time": 0.25201612903225806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1537, + "time": 0.2540322580645161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1550, + "time": 0.2560483870967742, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1550, + "time": 0.2560483870967742, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1562, + "time": 0.25806451612903225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1598, + "time": 0.26411290322580644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1586, + "time": 0.2620967741935484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1635, + "time": 0.2701612903225807, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2661290322580645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1635, + "time": 0.2701612903225807, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1855, + "time": 0.3064516129032258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1867, + "time": 0.3084677419354839, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1867, + "time": 0.3084677419354839, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1879, + "time": 0.31048387096774194, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1879, + "time": 0.31048387096774194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1879, + "time": 0.31048387096774194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1891, + "time": 0.3125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1891, + "time": 0.3125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1903, + "time": 0.31451612903225806, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1903, + "time": 0.31451612903225806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1903, + "time": 0.31451612903225806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1916, + "time": 0.3165322580645162, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1916, + "time": 0.3165322580645162, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1928, + "time": 0.31854838709677424, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1928, + "time": 0.31854838709677424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1940, + "time": 0.3205645161290323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1940, + "time": 0.3205645161290323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1952, + "time": 0.32258064516129037, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1952, + "time": 0.32258064516129037, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1952, + "time": 0.32258064516129037, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1964, + "time": 0.32459677419354843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1964, + "time": 0.32459677419354843, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1977, + "time": 0.32661290322580644, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1977, + "time": 0.32661290322580644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1977, + "time": 0.32661290322580644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1989, + "time": 0.3286290322580645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1989, + "time": 0.3286290322580645, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2050, + "time": 0.3387096774193548, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2062, + "time": 0.3407258064516129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2062, + "time": 0.3407258064516129, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2074, + "time": 0.34274193548387094, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2074, + "time": 0.34274193548387094, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2074, + "time": 0.34274193548387094, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2086, + "time": 0.34475806451612906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2086, + "time": 0.34475806451612906, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3467741935483871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3467741935483871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2099, + "time": 0.3467741935483871, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2111, + "time": 0.3487903225806452, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2111, + "time": 0.3487903225806452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2123, + "time": 0.35080645161290325, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2123, + "time": 0.35080645161290325, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2135, + "time": 0.3528225806451613, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2135, + "time": 0.3528225806451613, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2148, + "time": 0.3548387096774194, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2148, + "time": 0.3548387096774194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2148, + "time": 0.3548387096774194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2160, + "time": 0.35685483870967744, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2160, + "time": 0.35685483870967744, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2172, + "time": 0.3588709677419355, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2172, + "time": 0.3588709677419355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2172, + "time": 0.3588709677419355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2184, + "time": 0.36088709677419356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2184, + "time": 0.36088709677419356, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2221, + "time": 0.36693548387096775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2233, + "time": 0.3689516129032258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2233, + "time": 0.3689516129032258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2245, + "time": 0.37096774193548393, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2245, + "time": 0.37096774193548393, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2245, + "time": 0.37096774193548393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2257, + "time": 0.372983870967742, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2257, + "time": 0.372983870967742, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2270, + "time": 0.37500000000000006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2270, + "time": 0.37500000000000006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37701612903225806, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2282, + "time": 0.37701612903225806, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2294, + "time": 0.3790322580645161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2294, + "time": 0.3790322580645161, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3810483870967742, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3810483870967742, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2318, + "time": 0.38306451612903225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2318, + "time": 0.38306451612903225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2331, + "time": 0.3850806451612903, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2331, + "time": 0.3850806451612903, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2343, + "time": 0.3870967741935484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2343, + "time": 0.3870967741935484, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3991935483870968, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2440, + "time": 0.40322580645161293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2465, + "time": 0.40725806451612906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2514, + "time": 0.4153225806451613, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2514, + "time": 0.4153225806451613, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2526, + "time": 0.4173387096774194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2526, + "time": 0.4173387096774194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2538, + "time": 0.41935483870967744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2538, + "time": 0.41935483870967744, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2611, + "time": 0.4314516129032258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2636, + "time": 0.43548387096774194, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2660, + "time": 0.43951612903225806, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2709, + "time": 0.4475806451612903, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2709, + "time": 0.4475806451612903, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2721, + "time": 0.4495967741935484, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2721, + "time": 0.4495967741935484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2733, + "time": 0.45161290322580644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2806, + "time": 0.46370967741935487, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2855, + "time": 0.4717741935483871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2867, + "time": 0.4737903225806452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2867, + "time": 0.4737903225806452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2880, + "time": 0.4758064516129032, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2880, + "time": 0.4758064516129032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2880, + "time": 0.4758064516129032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2892, + "time": 0.47782258064516125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2892, + "time": 0.47782258064516125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2904, + "time": 0.4798387096774193, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2904, + "time": 0.4798387096774193, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2904, + "time": 0.4798387096774193, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2916, + "time": 0.48185483870967744, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2916, + "time": 0.48185483870967744, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2928, + "time": 0.4838709677419355, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2928, + "time": 0.4838709677419355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2941, + "time": 0.48588709677419356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2941, + "time": 0.48588709677419356, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 2953, + "time": 0.4879032258064516, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 2953, + "time": 0.4879032258064516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2953, + "time": 0.4879032258064516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2965, + "time": 0.4899193548387097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2965, + "time": 0.4899193548387097, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2977, + "time": 0.49193548387096775, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2977, + "time": 0.49193548387096775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2977, + "time": 0.49193548387096775, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2989, + "time": 0.4939516129032258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2989, + "time": 0.4939516129032258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3026, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3038, + "time": 0.502016129032258, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3038, + "time": 0.502016129032258, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3050, + "time": 0.5040322580645161, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3050, + "time": 0.5040322580645161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3050, + "time": 0.5040322580645161, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3063, + "time": 0.5060483870967741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3063, + "time": 0.5060483870967741, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5080645161290323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5080645161290323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5080645161290323, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3087, + "time": 0.5100806451612904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3087, + "time": 0.5100806451612904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3099, + "time": 0.5120967741935484, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3099, + "time": 0.5120967741935484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3099, + "time": 0.5120967741935484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3111, + "time": 0.5141129032258065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3111, + "time": 0.5141129032258065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5161290322580645, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5161290322580645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3124, + "time": 0.5161290322580645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5282258064516129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3319, + "time": 0.5483870967741936, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3343, + "time": 0.5524193548387096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3368, + "time": 0.5564516129032258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3392, + "time": 0.5604838709677419, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3416, + "time": 0.564516129032258, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3416, + "time": 0.564516129032258, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3441, + "time": 0.5685483870967741, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3465, + "time": 0.5725806451612903, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3490, + "time": 0.5766129032258065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3514, + "time": 0.5806451612903226, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3612, + "time": 0.5967741935483871, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3636, + "time": 0.6008064516129032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3685, + "time": 0.6088709677419355, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3709, + "time": 0.6129032258064516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3734, + "time": 0.6169354838709677, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3758, + "time": 0.6209677419354839, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3783, + "time": 0.625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3807, + "time": 0.6290322580645161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3831, + "time": 0.6330645161290324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3880, + "time": 0.6411290322580646, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3905, + "time": 0.6451612903225807, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3929, + "time": 0.6491935483870969, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3953, + "time": 0.6532258064516129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3978, + "time": 0.657258064516129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4002, + "time": 0.6612903225806451, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4051, + "time": 0.6693548387096774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4051, + "time": 0.6693548387096774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4100, + "time": 0.6774193548387096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4100, + "time": 0.6774193548387096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4149, + "time": 0.6854838709677419, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4149, + "time": 0.6854838709677419, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4173, + "time": 0.6895161290322581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4197, + "time": 0.6935483870967742, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4210, + "time": 0.6955645161290324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4210, + "time": 0.6955645161290324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4222, + "time": 0.6975806451612904, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4234, + "time": 0.6995967741935485, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4234, + "time": 0.6995967741935485, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4246, + "time": 0.7016129032258065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7036290322580645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4258, + "time": 0.7036290322580645, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3411,13 +9230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 829, - "time": 0.13709677419354838, + "noteOrder": 4271, + "time": 0.7056451612903226, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3434,13 +9253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 878, - "time": 0.14516129032258066, + "noteOrder": 4283, + "time": 0.7076612903225806, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3452,18 +9271,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 903, - "time": 0.14919354838709678, + "noteOrder": 4283, + "time": 0.7076612903225806, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3475,18 +9294,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 2, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 951, - "time": 0.157258064516129, + "noteOrder": 4295, + "time": 0.7096774193548387, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3503,13 +9322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 3, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 976, - "time": 0.16129032258064516, + "noteOrder": 4332, + "time": 0.7157258064516129, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3526,13 +9345,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 4, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1000, - "time": 0.16532258064516128, + "noteOrder": 4319, + "time": 0.7137096774193549, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3544,18 +9363,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 5, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1025, - "time": 0.1693548387096774, + "noteOrder": 4368, + "time": 0.7217741935483871, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3567,18 +9386,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 6, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1049, - "time": 0.17338709677419353, + "noteOrder": 4344, + "time": 0.717741935483871, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3595,13 +9414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1073, - "time": 0.17741935483870966, + "noteOrder": 4368, + "time": 0.7217741935483871, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3613,16 +9432,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 1098, - "time": 0.18145161290322578, + "noteOrder": 4393, + "time": 0.7258064516129032, "position": { "x": 3, "y": 0 @@ -3641,13 +9460,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 224, "indexInLine": 2, "isSliding": false, - "noteOrder": 1147, - "time": 0.18951612903225806, + "noteOrder": 4405, + "time": 0.7278225806451613, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3664,13 +9483,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 224, "indexInLine": 3, "isSliding": false, - "noteOrder": 1171, - "time": 0.1935483870967742, + "noteOrder": 4405, + "time": 0.7278225806451613, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3687,11 +9506,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 224, "indexInLine": 4, "isSliding": false, - "noteOrder": 1195, - "time": 0.1975806451612903, + "noteOrder": 4417, + "time": 0.7298387096774194, "position": { "x": 5, "y": 0 @@ -3710,13 +9529,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 224, "indexInLine": 5, "isSliding": false, - "noteOrder": 1220, - "time": 0.20161290322580644, + "noteOrder": 4417, + "time": 0.7298387096774194, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3733,13 +9552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 6, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1244, - "time": 0.2056451612903226, + "noteOrder": 4417, + "time": 0.7298387096774194, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3751,18 +9570,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1268, - "time": 0.20967741935483872, + "noteOrder": 4429, + "time": 0.7318548387096774, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3779,13 +9598,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1317, - "time": 0.21774193548387094, + "noteOrder": 4429, + "time": 0.7318548387096774, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3802,13 +9621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1317, - "time": 0.21774193548387094, + "noteOrder": 4441, + "time": 0.7338709677419355, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3820,18 +9639,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1366, - "time": 0.22580645161290322, + "noteOrder": 4441, + "time": 0.7338709677419355, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3843,18 +9662,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1366, - "time": 0.22580645161290322, + "noteOrder": 4441, + "time": 0.7338709677419355, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3866,18 +9685,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1415, - "time": 0.23387096774193547, + "noteOrder": 4454, + "time": 0.7358870967741935, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3889,18 +9708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1415, - "time": 0.23387096774193547, + "noteOrder": 4454, + "time": 0.7358870967741935, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3917,13 +9736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1439, - "time": 0.2379032258064516, + "noteOrder": 4466, + "time": 0.7379032258064516, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3940,11 +9759,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1464, - "time": 0.24193548387096772, + "noteOrder": 4466, + "time": 0.7379032258064516, "position": { "x": 7, "y": 0 @@ -3958,18 +9777,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1488, - "time": 0.24596774193548387, + "noteOrder": 4490, + "time": 0.7419354838709679, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3981,16 +9800,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1512, - "time": 0.25, + "noteOrder": 4502, + "time": 0.7439516129032259, "position": { "x": 7, "y": 0 @@ -4009,13 +9828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1537, - "time": 0.2540322580645161, + "noteOrder": 4502, + "time": 0.7439516129032259, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4027,18 +9846,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1561, - "time": 0.25806451612903225, + "noteOrder": 4515, + "time": 0.745967741935484, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4055,13 +9874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 229, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1598, - "time": 0.26411290322580644, + "noteOrder": 4515, + "time": 0.745967741935484, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4078,13 +9897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.2620967741935484, + "noteOrder": 4515, + "time": 0.745967741935484, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4101,13 +9920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.2701612903225806, + "noteOrder": 4527, + "time": 0.747983870967742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4124,13 +9943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1610, - "time": 0.2661290322580645, + "noteOrder": 4527, + "time": 0.747983870967742, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4142,18 +9961,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1634, - "time": 0.2701612903225806, + "noteOrder": 4539, + "time": 0.7500000000000001, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4165,16 +9984,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1854, - "time": 0.3064516129032258, + "noteOrder": 4539, + "time": 0.7500000000000001, "position": { "x": 3, "y": 0 @@ -4193,13 +10012,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1878, - "time": 0.31048387096774194, + "noteOrder": 4539, + "time": 0.7500000000000001, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4216,13 +10035,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1903, - "time": 0.314516129032258, + "noteOrder": 4551, + "time": 0.7520161290322581, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4234,18 +10053,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1951, - "time": 0.3225806451612903, + "noteOrder": 4551, + "time": 0.7520161290322581, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4262,13 +10081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1976, - "time": 0.32661290322580644, + "noteOrder": 4563, + "time": 0.7540322580645161, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4280,16 +10099,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2049, - "time": 0.3387096774193548, + "noteOrder": 4563, + "time": 0.7540322580645161, "position": { "x": 7, "y": 0 @@ -4308,13 +10127,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2073, - "time": 0.342741935483871, + "noteOrder": 4588, + "time": 0.7580645161290323, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4331,13 +10150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2098, - "time": 0.34677419354838707, + "noteOrder": 4612, + "time": 0.7620967741935484, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4349,18 +10168,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2147, - "time": 0.3548387096774193, + "noteOrder": 4612, + "time": 0.7620967741935484, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4372,18 +10191,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2171, - "time": 0.3588709677419355, + "noteOrder": 4637, + "time": 0.7661290322580645, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4400,13 +10219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2220, - "time": 0.36693548387096775, + "noteOrder": 4637, + "time": 0.7661290322580645, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4423,13 +10242,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2244, - "time": 0.3709677419354839, + "noteOrder": 4661, + "time": 0.7701612903225806, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4441,16 +10260,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2269, - "time": 0.37499999999999994, + "noteOrder": 4661, + "time": 0.7701612903225806, "position": { "x": 6, "y": 0 @@ -4464,16 +10283,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2293, - "time": 0.3790322580645161, + "noteOrder": 4685, + "time": 0.7741935483870968, "position": { "x": 6, "y": 0 @@ -4492,13 +10311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2317, - "time": 0.3830645161290322, + "noteOrder": 4685, + "time": 0.7741935483870968, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4515,13 +10334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2342, - "time": 0.3870967741935484, + "noteOrder": 4710, + "time": 0.7782258064516129, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4533,16 +10352,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2415, - "time": 0.39919354838709675, + "noteOrder": 4783, + "time": 0.7903225806451613, "position": { "x": 6, "y": 0 @@ -4556,18 +10375,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2439, - "time": 0.4032258064516129, + "noteOrder": 4783, + "time": 0.7903225806451613, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4584,13 +10403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 2464, - "time": 0.407258064516129, + "noteOrder": 4783, + "time": 0.7903225806451613, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4602,18 +10421,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 241, "indexInLine": 2, "isSliding": false, - "noteOrder": 2513, - "time": 0.41532258064516125, + "noteOrder": 4795, + "time": 0.7923387096774194, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4625,18 +10444,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2513, - "time": 0.41532258064516125, + "noteOrder": 4795, + "time": 0.7923387096774194, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4653,11 +10472,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 3, + "lineGroupId": 241, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2610, - "time": 0.4314516129032258, + "noteOrder": 4807, + "time": 0.7943548387096774, "position": { "x": 5, "y": 0 @@ -4676,13 +10495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2635, - "time": 0.4354838709677419, + "noteOrder": 4807, + "time": 0.7943548387096774, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4699,11 +10518,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 242, "indexInLine": 1, "isSliding": false, - "noteOrder": 2659, - "time": 0.43951612903225806, + "noteOrder": 4807, + "time": 0.7943548387096774, "position": { "x": 7, "y": 0 @@ -4717,18 +10536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 242, "indexInLine": 2, "isSliding": false, - "noteOrder": 2708, - "time": 0.4475806451612903, + "noteOrder": 4820, + "time": 0.7963709677419356, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4740,18 +10559,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2708, - "time": 0.4475806451612903, + "noteOrder": 4820, + "time": 0.7963709677419356, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4768,11 +10587,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 3, + "lineGroupId": 242, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2805, - "time": 0.4637096774193548, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { "x": 5, "y": 0 @@ -4791,11 +10610,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2854, - "time": 0.4717741935483871, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { "x": 3, "y": 0 @@ -4814,13 +10633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2878, - "time": 0.4758064516129032, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4837,13 +10656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2903, - "time": 0.4798387096774194, + "noteOrder": 4844, + "time": 0.8004032258064517, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4855,18 +10674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2952, - "time": 0.4879032258064516, + "noteOrder": 4844, + "time": 0.8004032258064517, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4883,13 +10702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2976, - "time": 0.49193548387096775, + "noteOrder": 4856, + "time": 0.8024193548387097, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4901,18 +10720,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3025, - "time": 0.5, + "noteOrder": 4856, + "time": 0.8024193548387097, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4929,13 +10748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3049, - "time": 0.5040322580645161, + "noteOrder": 4881, + "time": 0.8064516129032259, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4952,13 +10771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3074, - "time": 0.5080645161290323, + "noteOrder": 4893, + "time": 0.8084677419354839, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4970,18 +10789,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3098, - "time": 0.5120967741935484, + "noteOrder": 4893, + "time": 0.8084677419354839, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4998,11 +10817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, - "time": 0.5161290322580645, + "noteOrder": 4905, + "time": 0.810483870967742, "position": { "x": 7, "y": 0 @@ -5021,11 +10840,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3196, - "time": 0.5282258064516129, + "noteOrder": 4917, + "time": 0.8125, "position": { "x": 7, "y": 0 @@ -5044,13 +10863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3318, - "time": 0.5483870967741935, + "noteOrder": 4917, + "time": 0.8125, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5062,18 +10881,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 253, "indexInLine": 1, "isSliding": false, - "noteOrder": 3342, - "time": 0.5524193548387096, + "noteOrder": 5003, + "time": 0.8266129032258065, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5085,18 +10904,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 253, "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.5564516129032258, + "noteOrder": 5015, + "time": 0.8286290322580645, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5108,18 +10927,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 253, "indexInLine": 3, "isSliding": false, - "noteOrder": 3391, - "time": 0.560483870967742, + "noteOrder": 5015, + "time": 0.8286290322580645, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5131,18 +10950,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 253, "indexInLine": 4, "isSliding": false, - "noteOrder": 3415, - "time": 0.5645161290322581, + "noteOrder": 5027, + "time": 0.8306451612903226, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5154,18 +10973,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3415, - "time": 0.5645161290322581, + "noteOrder": 5027, + "time": 0.8306451612903226, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5182,13 +11001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 254, "indexInLine": 1, "isSliding": false, - "noteOrder": 3440, - "time": 0.5685483870967741, + "noteOrder": 5027, + "time": 0.8306451612903226, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5200,16 +11019,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 254, "indexInLine": 2, "isSliding": false, - "noteOrder": 3464, - "time": 0.5725806451612903, + "noteOrder": 5039, + "time": 0.8326612903225806, "position": { "x": 7, "y": 0 @@ -5223,18 +11042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 254, "indexInLine": 3, "isSliding": false, - "noteOrder": 3488, - "time": 0.5766129032258064, + "noteOrder": 5039, + "time": 0.8326612903225806, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5246,18 +11065,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 254, "indexInLine": 4, "isSliding": false, - "noteOrder": 3513, - "time": 0.5806451612903226, + "noteOrder": 5052, + "time": 0.8346774193548387, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5269,18 +11088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3610, - "time": 0.5967741935483871, + "noteOrder": 5052, + "time": 0.8346774193548387, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5292,16 +11111,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 255, "indexInLine": 1, "isSliding": false, - "noteOrder": 3635, - "time": 0.6008064516129032, + "noteOrder": 5052, + "time": 0.8346774193548387, "position": { "x": 7, "y": 0 @@ -5320,13 +11139,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 255, "indexInLine": 2, "isSliding": false, - "noteOrder": 3683, - "time": 0.6088709677419354, + "noteOrder": 5064, + "time": 0.8366935483870968, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5343,13 +11162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 255, "indexInLine": 3, "isSliding": false, - "noteOrder": 3708, - "time": 0.6129032258064516, + "noteOrder": 5064, + "time": 0.8366935483870968, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5366,11 +11185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 255, "indexInLine": 4, "isSliding": false, - "noteOrder": 3732, - "time": 0.6169354838709677, + "noteOrder": 5076, + "time": 0.8387096774193549, "position": { "x": 5, "y": 0 @@ -5389,13 +11208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, + "lineGroupId": 255, "indexInLine": 5, "isSliding": false, - "noteOrder": 3757, - "time": 0.6209677419354839, + "noteOrder": 5076, + "time": 0.8387096774193549, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5412,13 +11231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 6, + "lineGroupId": 256, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3781, - "time": 0.625, + "noteOrder": 5076, + "time": 0.8387096774193549, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5430,18 +11249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3805, - "time": 0.629032258064516, + "noteOrder": 5149, + "time": 0.8508064516129034, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5458,13 +11277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 261, "indexInLine": 1, "isSliding": false, - "noteOrder": 3830, - "time": 0.6330645161290323, + "noteOrder": 5174, + "time": 0.8548387096774195, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5476,18 +11295,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 261, "indexInLine": 2, "isSliding": false, - "noteOrder": 3879, - "time": 0.6411290322580645, + "noteOrder": 5198, + "time": 0.8588709677419355, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5499,18 +11318,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 261, "indexInLine": 3, "isSliding": false, - "noteOrder": 3903, - "time": 0.6451612903225806, + "noteOrder": 5247, + "time": 0.8669354838709677, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5522,18 +11341,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 4, + "lineGroupId": 264, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3927, - "time": 0.6491935483870968, + "noteOrder": 5247, + "time": 0.8669354838709677, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5550,13 +11369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 5, + "lineGroupId": 264, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3952, - "time": 0.6532258064516129, + "noteOrder": 5259, + "time": 0.8689516129032259, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5573,11 +11392,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 6, + "lineGroupId": 264, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3976, - "time": 0.657258064516129, + "noteOrder": 5259, + "time": 0.8689516129032259, "position": { "x": 4, "y": 0 @@ -5596,13 +11415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4001, - "time": 0.6612903225806451, + "noteOrder": 5271, + "time": 0.8709677419354839, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5614,18 +11433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 264, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4049, - "time": 0.6693548387096774, + "noteOrder": 5344, + "time": 0.8830645161290323, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5637,18 +11456,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 264, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4049, - "time": 0.6693548387096774, + "noteOrder": 5369, + "time": 0.8870967741935484, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5665,11 +11484,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 264, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4098, - "time": 0.6774193548387096, + "noteOrder": 5442, + "time": 0.8991935483870968, "position": { "x": 3, "y": 0 @@ -5688,13 +11507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4098, - "time": 0.6774193548387096, + "noteOrder": 5442, + "time": 0.8991935483870968, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5711,13 +11530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 273, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4147, - "time": 0.685483870967742, + "noteOrder": 5454, + "time": 0.9012096774193548, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5734,13 +11553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4147, - "time": 0.685483870967742, + "noteOrder": 5454, + "time": 0.9012096774193548, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5752,18 +11571,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 273, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4171, - "time": 0.689516129032258, + "noteOrder": 5466, + "time": 0.9032258064516129, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5775,18 +11594,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4196, - "time": 0.6935483870967741, + "noteOrder": 5466, + "time": 0.9032258064516129, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5803,13 +11622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4220, - "time": 0.6975806451612903, + "noteOrder": 5540, + "time": 0.9153225806451614, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5821,18 +11640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4244, - "time": 0.7016129032258065, + "noteOrder": 5564, + "time": 0.9193548387096775, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5844,16 +11663,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4269, - "time": 0.7056451612903226, + "noteOrder": 5576, + "time": 0.9213709677419355, "position": { "x": 3, "y": 0 @@ -5872,13 +11691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4293, - "time": 0.7096774193548386, + "noteOrder": 5576, + "time": 0.9213709677419355, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5890,18 +11709,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 1, + "lineGroupId": 279, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4330, - "time": 0.7157258064516129, + "noteOrder": 5588, + "time": 0.9233870967741936, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5913,16 +11732,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4318, - "time": 0.7137096774193548, + "noteOrder": 5588, + "time": 0.9233870967741936, "position": { "x": 3, "y": 0 @@ -5941,13 +11760,13 @@ "isPlayAudio": false }, { - "lineGroupId": 220, + "lineGroupId": 281, "indexInLine": 1, "isSliding": false, - "noteOrder": 4366, - "time": 0.7217741935483871, + "noteOrder": 5613, + "time": 0.9274193548387097, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5959,16 +11778,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4342, - "time": 0.717741935483871, + "noteOrder": 5625, + "time": 0.9294354838709677, "position": { "x": 7, "y": 0 @@ -5987,13 +11806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 281, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4366, - "time": 0.7217741935483871, + "noteOrder": 5625, + "time": 0.9294354838709677, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6010,13 +11829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4391, - "time": 0.7258064516129031, + "noteOrder": 5637, + "time": 0.9314516129032259, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6028,18 +11847,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4415, - "time": 0.7298387096774193, + "noteOrder": 5637, + "time": 0.9314516129032259, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6056,11 +11875,11 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4440, - "time": 0.7338709677419355, + "noteOrder": 5662, + "time": 0.935483870967742, "position": { "x": 3, "y": 0 @@ -6079,13 +11898,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4488, - "time": 0.7419354838709677, + "noteOrder": 5674, + "time": 0.9375, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6097,18 +11916,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4513, - "time": 0.7459677419354838, + "noteOrder": 5674, + "time": 0.9375, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6125,13 +11944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4537, - "time": 0.7499999999999999, + "noteOrder": 5686, + "time": 0.9395161290322581, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6143,18 +11962,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4586, - "time": 0.7580645161290323, + "noteOrder": 5686, + "time": 0.9395161290322581, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6171,13 +11990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 284, "indexInLine": 1, "isSliding": false, - "noteOrder": 4610, - "time": 0.7620967741935484, + "noteOrder": 5686, + "time": 0.9395161290322581, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6189,18 +12008,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4610, - "time": 0.7620967741935484, + "noteOrder": 5698, + "time": 0.9415322580645161, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6217,13 +12036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4635, - "time": 0.7661290322580644, + "noteOrder": 5698, + "time": 0.9415322580645161, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6240,11 +12059,11 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4635, - "time": 0.7661290322580644, + "noteOrder": 5710, + "time": 0.9435483870967742, "position": { "x": 5, "y": 0 @@ -6258,18 +12077,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4659, - "time": 0.7701612903225806, + "noteOrder": 5710, + "time": 0.9435483870967742, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6281,18 +12100,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4659, - "time": 0.7701612903225806, + "noteOrder": 5723, + "time": 0.9455645161290323, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6309,13 +12128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4684, - "time": 0.7741935483870968, + "noteOrder": 5723, + "time": 0.9455645161290323, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6332,13 +12151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4684, - "time": 0.7741935483870968, + "noteOrder": 5735, + "time": 0.9475806451612904, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6350,18 +12169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 1, + "lineGroupId": 284, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4708, - "time": 0.7782258064516129, + "noteOrder": 5735, + "time": 0.9475806451612904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6373,18 +12192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4781, - "time": 0.7903225806451613, + "noteOrder": 5710, + "time": 0.9435483870967742, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6396,18 +12215,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.7943548387096774, + "noteOrder": 5723, + "time": 0.9455645161290323, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6424,13 +12243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4830, - "time": 0.7983870967741935, + "noteOrder": 5723, + "time": 0.9455645161290323, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6442,18 +12261,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4879, - "time": 0.8064516129032258, + "noteOrder": 5735, + "time": 0.9475806451612904, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6470,11 +12289,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4903, - "time": 0.8104838709677419, + "noteOrder": 5784, + "time": 0.9556451612903225, "position": { "x": 7, "y": 0 @@ -6488,16 +12307,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5001, - "time": 0.8266129032258064, + "noteOrder": 5796, + "time": 0.9576612903225806, "position": { "x": 7, "y": 0 @@ -6511,18 +12330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5025, - "time": 0.8306451612903225, + "noteOrder": 5796, + "time": 0.9576612903225806, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6539,13 +12358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5049, - "time": 0.8346774193548386, + "noteOrder": 5808, + "time": 0.9596774193548386, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6557,18 +12376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5074, - "time": 0.8387096774193549, + "noteOrder": 5808, + "time": 0.9596774193548386, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6585,11 +12404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 256, + "lineGroupId": 290, "indexInLine": 1, "isSliding": false, - "noteOrder": 5147, - "time": 0.8508064516129031, + "noteOrder": 5808, + "time": 0.9596774193548386, "position": { "x": 7, "y": 0 @@ -6603,16 +12422,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5171, - "time": 0.8548387096774194, + "noteOrder": 5820, + "time": 0.9616935483870969, "position": { "x": 7, "y": 0 @@ -6631,13 +12450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 1, + "lineGroupId": 290, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5196, - "time": 0.8588709677419355, + "noteOrder": 5820, + "time": 0.9616935483870969, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6654,11 +12473,11 @@ "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 2, + "lineGroupId": 290, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5245, - "time": 0.8669354838709676, + "noteOrder": 5832, + "time": 0.9637096774193549, "position": { "x": 5, "y": 0 @@ -6677,13 +12496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5245, - "time": 0.8669354838709676, + "noteOrder": 5832, + "time": 0.9637096774193549, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6695,18 +12514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 3, + "lineGroupId": 291, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5342, - "time": 0.8830645161290323, + "noteOrder": 5832, + "time": 0.9637096774193549, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6723,13 +12542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 4, + "lineGroupId": 291, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5367, - "time": 0.8870967741935483, + "noteOrder": 5845, + "time": 0.965725806451613, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6746,13 +12565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 5, + "lineGroupId": 291, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5440, - "time": 0.8991935483870968, + "noteOrder": 5845, + "time": 0.965725806451613, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6769,13 +12588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5440, - "time": 0.8991935483870968, + "noteOrder": 5857, + "time": 0.967741935483871, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6787,18 +12606,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 3, + "lineGroupId": 291, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5537, - "time": 0.9153225806451613, + "noteOrder": 5857, + "time": 0.967741935483871, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6810,16 +12629,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 292, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5562, - "time": 0.9193548387096774, + "noteOrder": 5857, + "time": 0.967741935483871, "position": { "x": 3, "y": 0 @@ -6833,18 +12652,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 0, + "lineGroupId": 292, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5611, - "time": 0.9274193548387096, + "noteOrder": 5869, + "time": 0.9697580645161291, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6861,13 +12680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 283, - "indexInLine": 0, + "lineGroupId": 292, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5659, - "time": 0.9354838709677419, + "noteOrder": 5869, + "time": 0.9697580645161291, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6879,18 +12698,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 284, - "indexInLine": 0, + "lineGroupId": 292, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5684, - "time": 0.939516129032258, + "noteOrder": 5881, + "time": 0.9717741935483871, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6907,11 +12726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 0, + "lineGroupId": 292, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5708, - "time": 0.9435483870967742, + "noteOrder": 5881, + "time": 0.9717741935483871, "position": { "x": 3, "y": 0 @@ -6925,16 +12744,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5781, - "time": 0.9556451612903225, + "noteOrder": 5881, + "time": 0.9717741935483871, "position": { "x": 7, "y": 0 @@ -6953,11 +12772,11 @@ "isPlayAudio": false }, { - "lineGroupId": 290, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5806, - "time": 0.9596774193548387, + "noteOrder": 5893, + "time": 0.9737903225806452, "position": { "x": 7, "y": 0 @@ -6971,18 +12790,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5830, - "time": 0.9637096774193549, + "noteOrder": 5893, + "time": 0.9737903225806452, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6999,13 +12818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 292, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5854, - "time": 0.9677419354838709, + "noteOrder": 5906, + "time": 0.9758064516129032, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7017,16 +12836,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 293, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5879, - "time": 0.971774193548387, + "noteOrder": 5906, + "time": 0.9758064516129032, "position": { "x": 7, "y": 0 diff --git a/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1b.json b/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1b.json index 8e73de7a..3f2bfa02 100644 --- a/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1b.json +++ b/tracks/The GameHacker (Sampled Crazy Shuffle)/204_difficulty_1b.json @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 707, - "time": 0.11693548387096774, + "noteOrder": 708, + "time": 0.11693548387096775, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 732, - "time": 0.12096774193548386, + "time": 0.12096774193548387, "position": { "x": 3, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 756, + "noteOrder": 757, "time": 0.125, "position": { "x": 5, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 829, - "time": 0.13709677419354838, + "noteOrder": 830, + "time": 0.1370967741935484, "position": { "x": 6, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 829, - "time": 0.13709677419354838, + "noteOrder": 830, + "time": 0.1370967741935484, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 854, - "time": 0.14112903225806453, + "time": 0.1411290322580645, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 854, - "time": 0.14112903225806453, + "time": 0.1411290322580645, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 878, + "noteOrder": 879, "time": 0.14516129032258066, "position": { "x": 3, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 951, - "time": 0.157258064516129, + "noteOrder": 952, + "time": 0.15725806451612903, "position": { "x": 7, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1000, + "noteOrder": 1001, "time": 0.16532258064516128, "position": { "x": 6, @@ -314,7 +314,7 @@ }, { "noteOrder": 1049, - "time": 0.17338709677419353, + "time": 0.17338709677419356, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1073, - "time": 0.17741935483870966, + "noteOrder": 1074, + "time": 0.1774193548387097, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1098, - "time": 0.18145161290322578, + "time": 0.1814516129032258, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1122, - "time": 0.18548387096774194, + "noteOrder": 1123, + "time": 0.18548387096774197, "position": { "x": 4, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1195, + "noteOrder": 1196, "time": 0.1975806451612903, "position": { "x": 4, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1244, + "noteOrder": 1245, "time": 0.2056451612903226, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1366, + "noteOrder": 1367, "time": 0.22580645161290322, "position": { "x": 7, @@ -474,7 +474,7 @@ }, { "noteOrder": 1415, - "time": 0.23387096774193547, + "time": 0.2338709677419355, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1561, + "noteOrder": 1562, "time": 0.25806451612903225, "position": { "x": 7, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2661290322580645, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2661290322580645, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2701612903225806, + "noteOrder": 1635, + "time": 0.2701612903225807, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2701612903225806, + "noteOrder": 1635, + "time": 0.2701612903225807, "position": { "x": 7, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1756, + "noteOrder": 1757, "time": 0.2903225806451613, "position": { "x": 7, @@ -634,7 +634,7 @@ }, { "noteOrder": 1781, - "time": 0.2943548387096774, + "time": 0.29435483870967744, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1805, + "noteOrder": 1806, "time": 0.29838709677419356, "position": { "x": 3, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1951, - "time": 0.3225806451612903, + "noteOrder": 1952, + "time": 0.32258064516129037, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1976, + "noteOrder": 1977, "time": 0.32661290322580644, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2000, + "noteOrder": 2001, "time": 0.33064516129032256, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.3548387096774193, + "noteOrder": 2148, + "time": 0.3548387096774194, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.3588709677419355, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2195, - "time": 0.36290322580645157, + "noteOrder": 2196, + "time": 0.3629032258064516, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2221, "time": 0.36693548387096775, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2269, - "time": 0.37499999999999994, + "noteOrder": 2270, + "time": 0.37500000000000006, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2317, - "time": 0.3830645161290322, + "noteOrder": 2318, + "time": 0.38306451612903225, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2342, + "noteOrder": 2343, "time": 0.3870967741935484, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2367, "time": 0.3911290322580645, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.3951612903225806, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.3951612903225806, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2415, - "time": 0.39919354838709675, + "noteOrder": 2416, + "time": 0.3991935483870968, "position": { "x": 3, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2415, - "time": 0.39919354838709675, + "noteOrder": 2416, + "time": 0.3991935483870968, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2464, - "time": 0.407258064516129, + "noteOrder": 2465, + "time": 0.40725806451612906, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2488, + "noteOrder": 2489, "time": 0.4112903225806452, "position": { "x": 6, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2513, - "time": 0.41532258064516125, + "noteOrder": 2514, + "time": 0.4153225806451613, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2538, "time": 0.41935483870967744, "position": { "x": 7, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.4233870967741935, + "noteOrder": 2562, + "time": 0.42338709677419356, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2586, - "time": 0.4274193548387097, + "noteOrder": 2587, + "time": 0.42741935483870974, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2610, + "noteOrder": 2611, "time": 0.4314516129032258, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2659, + "noteOrder": 2660, "time": 0.43951612903225806, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2683, - "time": 0.44354838709677413, + "noteOrder": 2684, + "time": 0.4435483870967742, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2708, + "noteOrder": 2709, "time": 0.4475806451612903, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2732, + "noteOrder": 2733, "time": 0.45161290322580644, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.45564516129032256, + "noteOrder": 2758, + "time": 0.4556451612903226, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2781, - "time": 0.4596774193548387, + "noteOrder": 2782, + "time": 0.45967741935483875, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2805, - "time": 0.4637096774193548, + "noteOrder": 2806, + "time": 0.46370967741935487, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3025, + "noteOrder": 3026, "time": 0.5, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3049, + "noteOrder": 3050, "time": 0.5040322580645161, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3074, + "noteOrder": 3075, "time": 0.5080645161290323, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.5120967741935484, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3124, "time": 0.5161290322580645, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3147, + "noteOrder": 3148, "time": 0.5201612903225806, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3171, + "noteOrder": 3172, "time": 0.5241935483870968, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3171, + "noteOrder": 3172, "time": 0.5241935483870968, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3196, + "noteOrder": 3197, "time": 0.5282258064516129, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3196, + "noteOrder": 3197, "time": 0.5282258064516129, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3610, + "noteOrder": 3612, "time": 0.5967741935483871, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3635, + "noteOrder": 3636, "time": 0.6008064516129032, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3708, + "noteOrder": 3709, "time": 0.6129032258064516, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3732, + "noteOrder": 3734, "time": 0.6169354838709677, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 3758, "time": 0.6209677419354839, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3781, + "noteOrder": 3783, "time": 0.625, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3805, - "time": 0.629032258064516, + "noteOrder": 3807, + "time": 0.6290322580645161, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3830, - "time": 0.6330645161290323, + "noteOrder": 3831, + "time": 0.6330645161290324, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.6451612903225806, + "noteOrder": 3905, + "time": 0.6451612903225807, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3927, - "time": 0.6491935483870968, + "noteOrder": 3929, + "time": 0.6491935483870969, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3952, + "noteOrder": 3953, "time": 0.6532258064516129, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.657258064516129, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.6774193548387096, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4147, - "time": 0.685483870967742, + "noteOrder": 4149, + "time": 0.6854838709677419, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4293, - "time": 0.7096774193548386, + "noteOrder": 4295, + "time": 0.7096774193548387, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4318, - "time": 0.7137096774193548, + "noteOrder": 4319, + "time": 0.7137096774193549, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4344, "time": 0.717741935483871, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4344, "time": 0.717741935483871, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.7217741935483871, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.7217741935483871, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.7661290322580644, + "noteOrder": 4637, + "time": 0.7661290322580645, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.7701612903225806, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4976, + "noteOrder": 4978, "time": 0.8225806451612904, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5001, - "time": 0.8266129032258064, + "noteOrder": 5003, + "time": 0.8266129032258065, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.8306451612903225, + "noteOrder": 5027, + "time": 0.8306451612903226, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.8306451612903225, + "noteOrder": 5027, + "time": 0.8306451612903226, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5049, - "time": 0.8346774193548386, + "noteOrder": 5052, + "time": 0.8346774193548387, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5049, - "time": 0.8346774193548386, + "noteOrder": 5052, + "time": 0.8346774193548387, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5171, - "time": 0.8548387096774194, + "noteOrder": 5174, + "time": 0.8548387096774195, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5196, + "noteOrder": 5198, "time": 0.8588709677419355, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5220, + "noteOrder": 5222, "time": 0.8629032258064516, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5245, - "time": 0.8669354838709676, + "noteOrder": 5247, + "time": 0.8669354838709677, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5293, + "noteOrder": 5296, "time": 0.875, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5342, + "noteOrder": 5344, "time": 0.8830645161290323, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5367, - "time": 0.8870967741935483, + "noteOrder": 5369, + "time": 0.8870967741935484, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.8911290322580645, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5415, + "noteOrder": 5418, "time": 0.8951612903225806, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5440, + "noteOrder": 5442, "time": 0.8991935483870968, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5489, - "time": 0.907258064516129, + "noteOrder": 5491, + "time": 0.9072580645161291, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5537, - "time": 0.9153225806451613, + "noteOrder": 5540, + "time": 0.9153225806451614, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5659, - "time": 0.9354838709677419, + "noteOrder": 5662, + "time": 0.935483870967742, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5684, - "time": 0.939516129032258, + "noteOrder": 5686, + "time": 0.9395161290322581, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5708, + "noteOrder": 5710, "time": 0.9435483870967742, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5733, - "time": 0.9475806451612903, + "noteOrder": 5735, + "time": 0.9475806451612904, "position": { "x": 7, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5781, + "noteOrder": 5784, "time": 0.9556451612903225, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5830, + "noteOrder": 5832, "time": 0.9637096774193549, "position": { "x": 4, @@ -2416,7 +2416,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.016129032258064516, @@ -2439,10 +2439,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 122, - "time": 0.020161290322580645, + "time": 0.020161290322580648, "position": { "x": 7, "y": 0 @@ -2462,7 +2462,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, "time": 0.024193548387096774, @@ -2485,7 +2485,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 171, "time": 0.028225806451612902, @@ -2508,7 +2508,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, "time": 0.03225806451612903, @@ -2531,7 +2531,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 220, "time": 0.036290322580645164, @@ -2554,10 +2554,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, - "time": 0.04032258064516129, + "time": 0.040322580645161296, "position": { "x": 6, "y": 0 @@ -2577,10 +2577,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.044354838709677415, + "time": 0.04435483870967742, "position": { "x": 6, "y": 0 @@ -2600,10 +2600,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, - "time": 0.04032258064516129, + "time": 0.040322580645161296, "position": { "x": 4, "y": 0 @@ -2623,10 +2623,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, - "time": 0.044354838709677415, + "time": 0.04435483870967742, "position": { "x": 4, "y": 0 @@ -2646,7 +2646,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, "time": 0.04838709677419355, @@ -2669,7 +2669,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 317, "time": 0.05241935483870968, @@ -2692,7 +2692,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 342, "time": 0.056451612903225805, @@ -2715,10 +2715,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 366, - "time": 0.06048387096774193, + "time": 0.06048387096774194, "position": { "x": 7, "y": 0 @@ -2738,7 +2738,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 390, "time": 0.06451612903225806, @@ -2761,10 +2761,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 415, - "time": 0.06854838709677419, + "time": 0.0685483870967742, "position": { "x": 3, "y": 0 @@ -2784,7 +2784,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 439, "time": 0.07258064516129033, @@ -2807,9 +2807,9 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 463, + "noteOrder": 464, "time": 0.07661290322580645, "position": { "x": 4, @@ -2830,7 +2830,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 439, "time": 0.07258064516129033, @@ -2853,9 +2853,9 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 463, + "noteOrder": 464, "time": 0.07661290322580645, "position": { "x": 6, @@ -2876,10 +2876,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.08064516129032258, + "time": 0.08064516129032259, "position": { "x": 3, "y": 0 @@ -2899,7 +2899,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 512, "time": 0.0846774193548387, @@ -2922,10 +2922,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.08064516129032258, + "time": 0.08064516129032259, "position": { "x": 7, "y": 0 @@ -2945,7 +2945,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 512, "time": 0.0846774193548387, @@ -2968,10 +2968,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 537, - "time": 0.08870967741935483, + "time": 0.08870967741935484, "position": { "x": 6, "y": 0 @@ -2991,10 +2991,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 561, - "time": 0.09274193548387097, + "time": 0.09274193548387098, "position": { "x": 6, "y": 0 @@ -3014,10 +3014,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 537, - "time": 0.08870967741935483, + "time": 0.08870967741935484, "position": { "x": 4, "y": 0 @@ -3037,10 +3037,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 561, - "time": 0.09274193548387097, + "time": 0.09274193548387098, "position": { "x": 4, "y": 0 @@ -3060,9 +3060,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 585, + "noteOrder": 586, "time": 0.0967741935483871, "position": { "x": 7, @@ -3083,10 +3083,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 610, - "time": 0.10080645161290322, + "time": 0.10080645161290323, "position": { "x": 7, "y": 0 @@ -3106,7 +3106,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 634, "time": 0.10483870967741936, @@ -3129,10 +3129,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 659, - "time": 0.10887096774193547, + "time": 0.10887096774193548, "position": { "x": 3, "y": 0 @@ -3152,10 +3152,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 976, - "time": 0.16129032258064516, + "time": 0.16129032258064518, "position": { "x": 7, "y": 0 @@ -3175,9 +3175,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1000, + "noteOrder": 1001, "time": 0.16532258064516128, "position": { "x": 7, @@ -3198,7 +3198,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1025, "time": 0.1693548387096774, @@ -3221,10 +3221,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1049, - "time": 0.17338709677419353, + "time": 0.17338709677419356, "position": { "x": 3, "y": 0 @@ -3244,7 +3244,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1171, "time": 0.1935483870967742, @@ -3267,9 +3267,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1195, + "noteOrder": 1196, "time": 0.1975806451612903, "position": { "x": 3, @@ -3290,10 +3290,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1220, - "time": 0.20161290322580644, + "time": 0.20161290322580647, "position": { "x": 7, "y": 0 @@ -3313,9 +3313,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1244, + "noteOrder": 1245, "time": 0.2056451612903226, "position": { "x": 7, @@ -3336,10 +3336,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1659, - "time": 0.27419354838709675, + "time": 0.2741935483870968, "position": { "x": 7, "y": 0 @@ -3359,9 +3359,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.2782258064516129, "position": { "x": 7, @@ -3382,10 +3382,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1708, - "time": 0.28225806451612906, + "time": 0.282258064516129, "position": { "x": 3, "y": 0 @@ -3405,9 +3405,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1732, + "noteOrder": 1733, "time": 0.28629032258064513, "position": { "x": 3, @@ -3428,9 +3428,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1854, + "noteOrder": 1855, "time": 0.3064516129032258, "position": { "x": 7, @@ -3450,11 +3450,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1903, - "time": 0.314516129032258, + "noteOrder": 1879, + "time": 0.31048387096774194, "position": { "x": 7, "y": 0 @@ -3468,18 +3468,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2049, - "time": 0.3387096774193548, + "noteOrder": 1879, + "time": 0.31048387096774194, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3491,18 +3491,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2098, - "time": 0.34677419354838707, + "noteOrder": 1903, + "time": 0.31451612903225806, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3519,13 +3519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2244, - "time": 0.3709677419354839, + "noteOrder": 1903, + "time": 0.31451612903225806, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3542,11 +3542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 2269, - "time": 0.37499999999999994, + "noteOrder": 1903, + "time": 0.31451612903225806, "position": { "x": 7, "y": 0 @@ -3560,18 +3560,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2293, - "time": 0.3790322580645161, + "noteOrder": 1928, + "time": 0.31854838709677424, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3588,13 +3588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2317, - "time": 0.3830645161290322, + "noteOrder": 1928, + "time": 0.31854838709677424, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3611,13 +3611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2439, - "time": 0.4032258064516129, + "noteOrder": 1952, + "time": 0.32258064516129037, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3634,11 +3634,34 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1952, + "time": 0.32258064516129037, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 2537, - "time": 0.41935483870967744, + "noteOrder": 2050, + "time": 0.3387096774193548, "position": { "x": 3, "y": 0 @@ -3657,13 +3680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2635, - "time": 0.4354838709677419, + "noteOrder": 2074, + "time": 0.34274193548387094, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3675,18 +3698,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2732, - "time": 0.45161290322580644, + "noteOrder": 2074, + "time": 0.34274193548387094, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3698,18 +3721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2830, - "time": 0.46774193548387094, + "noteOrder": 2099, + "time": 0.3467741935483871, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3726,13 +3749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2854, - "time": 0.4717741935483871, + "noteOrder": 2099, + "time": 0.3467741935483871, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3749,13 +3772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2830, - "time": 0.46774193548387094, + "noteOrder": 2099, + "time": 0.3467741935483871, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3772,13 +3795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2854, - "time": 0.4717741935483871, + "noteOrder": 2123, + "time": 0.35080645161290325, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3795,11 +3818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2878, - "time": 0.4758064516129032, + "noteOrder": 2123, + "time": 0.35080645161290325, "position": { "x": 4, "y": 0 @@ -3813,16 +3836,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2903, - "time": 0.4798387096774194, + "noteOrder": 2148, + "time": 0.3548387096774194, "position": { "x": 4, "y": 0 @@ -3836,18 +3859,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2878, - "time": 0.4758064516129032, + "noteOrder": 2148, + "time": 0.3548387096774194, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3864,13 +3887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 2903, - "time": 0.4798387096774194, + "noteOrder": 2245, + "time": 0.37096774193548393, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3887,13 +3910,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2927, - "time": 0.48387096774193544, + "noteOrder": 2270, + "time": 0.37500000000000006, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3905,18 +3928,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2976, - "time": 0.49193548387096775, + "noteOrder": 2294, + "time": 0.3790322580645161, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3928,16 +3951,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3220, - "time": 0.532258064516129, + "noteOrder": 2318, + "time": 0.38306451612903225, "position": { "x": 3, "y": 0 @@ -3956,11 +3979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 3244, - "time": 0.5362903225806451, + "noteOrder": 2440, + "time": 0.40322580645161293, "position": { "x": 3, "y": 0 @@ -3979,13 +4002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3269, - "time": 0.5403225806451613, + "noteOrder": 2538, + "time": 0.41935483870967744, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3997,16 +4020,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 95, "indexInLine": 1, "isSliding": false, - "noteOrder": 3293, - "time": 0.5443548387096775, + "noteOrder": 2636, + "time": 0.43548387096774194, "position": { "x": 7, "y": 0 @@ -4025,13 +4048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3318, - "time": 0.5483870967741935, + "noteOrder": 2733, + "time": 0.45161290322580644, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4043,16 +4066,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 3342, - "time": 0.5524193548387096, + "noteOrder": 2831, + "time": 0.467741935483871, "position": { "x": 3, "y": 0 @@ -4071,13 +4094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.5564516129032258, + "noteOrder": 2855, + "time": 0.4717741935483871, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4094,13 +4117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 3391, - "time": 0.560483870967742, + "noteOrder": 2831, + "time": 0.467741935483871, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4112,18 +4135,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.5564516129032258, + "noteOrder": 2855, + "time": 0.4717741935483871, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4140,13 +4163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 3391, - "time": 0.560483870967742, + "noteOrder": 2880, + "time": 0.4758064516129032, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4158,18 +4181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3415, - "time": 0.5645161290322581, + "noteOrder": 2904, + "time": 0.4798387096774193, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4181,18 +4204,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 3440, - "time": 0.5685483870967741, + "noteOrder": 2880, + "time": 0.4758064516129032, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4209,13 +4232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3464, - "time": 0.5725806451612903, + "noteOrder": 2904, + "time": 0.4798387096774193, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4227,16 +4250,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 107, "indexInLine": 1, "isSliding": false, - "noteOrder": 3488, - "time": 0.5766129032258064, + "noteOrder": 2928, + "time": 0.4838709677419355, "position": { "x": 3, "y": 0 @@ -4255,13 +4278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3513, - "time": 0.5806451612903226, + "noteOrder": 2953, + "time": 0.4879032258064516, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4273,16 +4296,1281 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2953, + "time": 0.4879032258064516, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2977, + "time": 0.49193548387096775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3002, + "time": 0.4959677419354839, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3002, + "time": 0.4959677419354839, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3221, + "time": 0.532258064516129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5362903225806452, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5403225806451614, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5443548387096775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3319, + "time": 0.5483870967741936, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3343, + "time": 0.5524193548387096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3368, + "time": 0.5564516129032258, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3392, + "time": 0.5604838709677419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3368, + "time": 0.5564516129032258, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3392, + "time": 0.5604838709677419, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3416, + "time": 0.564516129032258, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3441, + "time": 0.5685483870967741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3465, + "time": 0.5725806451612903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3490, + "time": 0.5766129032258065, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3514, + "time": 0.5806451612903226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3538, + "time": 0.5846774193548387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3563, + "time": 0.5887096774193549, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3587, + "time": 0.592741935483871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3563, + "time": 0.5887096774193549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3587, + "time": 0.592741935483871, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3661, + "time": 0.6048387096774194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3685, + "time": 0.6088709677419355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3661, + "time": 0.6048387096774194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3685, + "time": 0.6088709677419355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3856, + "time": 0.6370967741935485, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3880, + "time": 0.6411290322580646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3856, + "time": 0.6370967741935485, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3880, + "time": 0.6411290322580646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4393, + "time": 0.7258064516129032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4417, + "time": 0.7298387096774194, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4417, + "time": 0.7298387096774194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4441, + "time": 0.7338709677419355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4441, + "time": 0.7338709677419355, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4441, + "time": 0.7338709677419355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4466, + "time": 0.7379032258064516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4466, + "time": 0.7379032258064516, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4490, + "time": 0.7419354838709679, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4490, + "time": 0.7419354838709679, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4490, + "time": 0.7419354838709679, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4515, + "time": 0.745967741935484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4515, + "time": 0.745967741935484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4539, + "time": 0.7500000000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4539, + "time": 0.7500000000000001, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4539, + "time": 0.7500000000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4563, + "time": 0.7540322580645161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4563, + "time": 0.7540322580645161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4588, + "time": 0.7580645161290323, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4588, + "time": 0.7580645161290323, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4588, + "time": 0.7580645161290323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4685, + "time": 0.7741935483870968, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4685, + "time": 0.7741935483870968, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3537, - "time": 0.5846774193548387, + "noteOrder": 4710, + "time": 0.7782258064516129, "position": { "x": 7, "y": 0 @@ -4301,13 +5589,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3561, - "time": 0.5887096774193548, + "noteOrder": 4710, + "time": 0.7782258064516129, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4319,16 +5607,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 3586, - "time": 0.5927419354838709, + "noteOrder": 4734, + "time": 0.782258064516129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4759, + "time": 0.7862903225806451, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4759, + "time": 0.7862903225806451, "position": { "x": 4, "y": 0 @@ -4347,13 +5681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3561, - "time": 0.5887096774193548, + "noteOrder": 4783, + "time": 0.7903225806451613, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4370,13 +5704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3586, - "time": 0.5927419354838709, + "noteOrder": 4807, + "time": 0.7943548387096774, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4393,11 +5727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3659, - "time": 0.6048387096774194, + "noteOrder": 4807, + "time": 0.7943548387096774, "position": { "x": 6, "y": 0 @@ -4416,11 +5750,11 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3683, - "time": 0.6088709677419354, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { "x": 6, "y": 0 @@ -4439,13 +5773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3659, - "time": 0.6048387096774194, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4457,18 +5791,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3683, - "time": 0.6088709677419354, + "noteOrder": 4832, + "time": 0.7983870967741936, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4485,13 +5819,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3854, - "time": 0.6370967741935484, + "noteOrder": 4856, + "time": 0.8024193548387097, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4503,16 +5837,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3879, - "time": 0.6411290322580645, + "noteOrder": 4856, + "time": 0.8024193548387097, "position": { "x": 6, "y": 0 @@ -4526,18 +5860,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3854, - "time": 0.6370967741935484, + "noteOrder": 4881, + "time": 0.8064516129032259, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4554,13 +5888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3879, - "time": 0.6411290322580645, + "noteOrder": 4881, + "time": 0.8064516129032259, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4577,13 +5911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4391, - "time": 0.7258064516129031, + "noteOrder": 4881, + "time": 0.8064516129032259, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4595,18 +5929,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4440, - "time": 0.7338709677419355, + "noteOrder": 4905, + "time": 0.810483870967742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4623,13 +5957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4488, - "time": 0.7419354838709677, + "noteOrder": 4905, + "time": 0.810483870967742, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4641,18 +5975,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4537, - "time": 0.7499999999999999, + "noteOrder": 4929, + "time": 0.8145161290322581, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4669,13 +6003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4586, - "time": 0.7580645161290323, + "noteOrder": 4929, + "time": 0.8145161290322581, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4687,18 +6021,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 4684, - "time": 0.7741935483870968, + "noteOrder": 4929, + "time": 0.8145161290322581, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4715,11 +6049,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4684, - "time": 0.7741935483870968, + "noteOrder": 4954, + "time": 0.8185483870967742, "position": { "x": 7, "y": 0 @@ -4733,18 +6067,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4732, - "time": 0.782258064516129, + "noteOrder": 4954, + "time": 0.8185483870967742, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4761,13 +6095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4781, - "time": 0.7903225806451613, + "noteOrder": 4978, + "time": 0.8225806451612904, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4779,18 +6113,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4830, - "time": 0.7983870967741935, + "noteOrder": 4978, + "time": 0.8225806451612904, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4807,13 +6141,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4879, - "time": 0.8064516129032258, + "noteOrder": 5076, + "time": 0.8387096774193549, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4825,18 +6159,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4928, - "time": 0.814516129032258, + "noteOrder": 5100, + "time": 0.842741935483871, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4854,12 +6188,12 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5074, - "time": 0.8387096774193549, + "noteOrder": 5100, + "time": 0.842741935483871, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4877,10 +6211,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5123, - "time": 0.846774193548387, + "noteOrder": 5125, + "time": 0.8467741935483871, "position": { "x": 7, "y": 0 @@ -4899,11 +6233,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5269, - "time": 0.8709677419354838, + "noteOrder": 5149, + "time": 0.8508064516129034, "position": { "x": 7, "y": 0 @@ -4921,11 +6255,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5149, + "time": 0.8508064516129034, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 5293, + "noteOrder": 5271, + "time": 0.8709677419354839, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5296, "time": 0.875, "position": { "x": 7, @@ -4946,9 +6326,9 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5318, + "noteOrder": 5320, "time": 0.8790322580645161, "position": { "x": 3, @@ -4969,9 +6349,9 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5342, + "noteOrder": 5344, "time": 0.8830645161290323, "position": { "x": 3, @@ -4992,9 +6372,9 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5464, + "noteOrder": 5466, "time": 0.9032258064516129, "position": { "x": 3, @@ -5015,10 +6395,10 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5489, - "time": 0.907258064516129, + "noteOrder": 5491, + "time": 0.9072580645161291, "position": { "x": 3, "y": 0 @@ -5038,10 +6418,10 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5513, - "time": 0.9112903225806451, + "noteOrder": 5515, + "time": 0.9112903225806452, "position": { "x": 7, "y": 0 @@ -5061,10 +6441,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5537, - "time": 0.9153225806451613, + "noteOrder": 5540, + "time": 0.9153225806451614, "position": { "x": 7, "y": 0 @@ -5084,10 +6464,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5562, - "time": 0.9193548387096774, + "noteOrder": 5564, + "time": 0.9193548387096775, "position": { "x": 3, "y": 0 @@ -5107,9 +6487,9 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5586, + "noteOrder": 5588, "time": 0.9233870967741936, "position": { "x": 3, @@ -5130,9 +6510,9 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5586, + "noteOrder": 5588, "time": 0.9233870967741936, "position": { "x": 7, @@ -5153,10 +6533,10 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5611, - "time": 0.9274193548387096, + "noteOrder": 5613, + "time": 0.9274193548387097, "position": { "x": 7, "y": 0 @@ -5176,10 +6556,10 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5611, - "time": 0.9274193548387096, + "noteOrder": 5613, + "time": 0.9274193548387097, "position": { "x": 4, "y": 0 @@ -5199,10 +6579,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5635, - "time": 0.9314516129032258, + "noteOrder": 5637, + "time": 0.9314516129032259, "position": { "x": 4, "y": 0 @@ -5222,10 +6602,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5635, - "time": 0.9314516129032258, + "noteOrder": 5637, + "time": 0.9314516129032259, "position": { "x": 6, "y": 0 @@ -5245,10 +6625,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5659, - "time": 0.9354838709677419, + "noteOrder": 5662, + "time": 0.935483870967742, "position": { "x": 6, "y": 0 @@ -5268,9 +6648,9 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.9516129032258064, "position": { "x": 7, @@ -5291,9 +6671,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5781, + "noteOrder": 5784, "time": 0.9556451612903225, "position": { "x": 7, @@ -5314,10 +6694,10 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5806, - "time": 0.9596774193548387, + "noteOrder": 5808, + "time": 0.9596774193548386, "position": { "x": 3, "y": 0 @@ -5337,9 +6717,9 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5830, + "noteOrder": 5832, "time": 0.9637096774193549, "position": { "x": 3, @@ -5360,10 +6740,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5854, - "time": 0.9677419354838709, + "noteOrder": 5857, + "time": 0.967741935483871, "position": { "x": 7, "y": 0 @@ -5383,10 +6763,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.971774193548387, + "noteOrder": 5881, + "time": 0.9717741935483871, "position": { "x": 7, "y": 0 @@ -5406,10 +6786,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5854, - "time": 0.9677419354838709, + "noteOrder": 5857, + "time": 0.967741935483871, "position": { "x": 3, "y": 0 @@ -5429,10 +6809,10 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.971774193548387, + "noteOrder": 5881, + "time": 0.9717741935483871, "position": { "x": 3, "y": 0 @@ -5452,9 +6832,9 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5903, + "noteOrder": 5906, "time": 0.9758064516129032, "position": { "x": 6, @@ -5475,9 +6855,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5952, + "noteOrder": 5954, "time": 0.9838709677419355, "position": { "x": 6, @@ -5498,9 +6878,9 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5903, + "noteOrder": 5906, "time": 0.9758064516129032, "position": { "x": 4, @@ -5521,9 +6901,9 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5952, + "noteOrder": 5954, "time": 0.9838709677419355, "position": { "x": 4, diff --git a/tracks/The GameHacker (Sampled Crazy Shuffle)/info.json b/tracks/The GameHacker (Sampled Crazy Shuffle)/info.json index 92f37ec8..6619cbb2 100644 --- a/tracks/The GameHacker (Sampled Crazy Shuffle)/info.json +++ b/tracks/The GameHacker (Sampled Crazy Shuffle)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "The GameHacker (Sampled Crazy Shuffle)", - "SongLength": "128.156735", + "SongLength": "118.204082", "SongAuthorName": "BEMANI Sound Team \"Hu\u03a3eR\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/The Second Summer/269_difficulty_1a.json b/tracks/The Second Summer/269_difficulty_1a.json index dd6667ab..e4a25a64 100644 --- a/tracks/The Second Summer/269_difficulty_1a.json +++ b/tracks/The Second Summer/269_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 312, - "time": 0.04855275443510738, + "time": 0.04855275443510737, "position": { "x": 5, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.05228758169934641, "position": { "x": 4, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.05602240896358543, "position": { "x": 5, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 409, "time": 0.06349206349206349, "position": { "x": 5, @@ -174,7 +174,7 @@ }, { "noteOrder": 481, - "time": 0.07469654528478059, + "time": 0.07469654528478058, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 553, - "time": 0.08590102707749767, + "time": 0.08590102707749765, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 649, - "time": 0.10084033613445378, + "time": 0.10084033613445377, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 745, - "time": 0.11577964519140989, + "time": 0.1157796451914099, "position": { "x": 5, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 793, - "time": 0.12324929971988796, + "time": 0.12324929971988795, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 841, - "time": 0.130718954248366, + "time": 0.13071895424836602, "position": { "x": 5, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.19794584500466852, "position": { "x": 3, @@ -514,7 +514,7 @@ }, { "noteOrder": 1298, - "time": 0.20168067226890757, + "time": 0.20168067226890754, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.257703081232493, + "noteOrder": 1659, + "time": 0.25770308123249297, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1682, - "time": 0.261437908496732, + "noteOrder": 1683, + "time": 0.26143790849673204, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.26517273576097106, + "noteOrder": 1707, + "time": 0.265172735760971, "position": { "x": 6, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.2689075630252101, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1754, - "time": 0.2726423902894491, + "noteOrder": 1755, + "time": 0.27264239028944914, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2763772175536881, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1802, + "noteOrder": 1803, "time": 0.2801120448179272, "position": { "x": 7, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.31746031746031744, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2066, - "time": 0.3211951447245565, + "noteOrder": 2067, + "time": 0.32119514472455646, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2090, + "noteOrder": 2091, "time": 0.32492997198879553, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.32866479925303455, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.33239962651727356, "position": { "x": 8, @@ -794,7 +794,7 @@ }, { "noteOrder": 2163, - "time": 0.33613445378151263, + "time": 0.3361344537815126, "position": { "x": 4, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 2187, - "time": 0.3398692810457516, + "time": 0.33986928104575165, "position": { "x": 8, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.3660130718954248, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2379, + "noteOrder": 2380, "time": 0.36974789915966383, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39589169000933705, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.3996265172735761, + "noteOrder": 2572, + "time": 0.39962651727357607, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.41083099906629317, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2667, - "time": 0.41456582633053224, + "noteOrder": 2668, + "time": 0.4145658263305322, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2715, - "time": 0.42203548085901027, + "noteOrder": 2716, + "time": 0.4220354808590102, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.4257703081232493, "position": { "x": 5, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2763, - "time": 0.42950513538748836, + "noteOrder": 2764, + "time": 0.4295051353874883, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2787, + "noteOrder": 2788, "time": 0.4332399626517273, "position": { "x": 8, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2812, "time": 0.4369747899159664, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2836, "time": 0.4407096171802054, "position": { "x": 8, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4444444444444445, + "noteOrder": 2860, + "time": 0.4444444444444444, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.44817927170868344, "position": { "x": 5, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2931, - "time": 0.4556489262371615, + "noteOrder": 2933, + "time": 0.45564892623716147, "position": { "x": 8, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2955, + "noteOrder": 2957, "time": 0.45938375350140054, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2979, - "time": 0.46311858076563955, + "noteOrder": 2981, + "time": 0.4631185807656396, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3003, - "time": 0.4668534080298786, + "noteOrder": 3005, + "time": 0.46685340802987857, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.47058823529411764, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.47805788982259567, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.4855275443510737, + "noteOrder": 3125, + "time": 0.48552754435107376, "position": { "x": 2, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4892623716153128, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3172, - "time": 0.49299719887955185, + "noteOrder": 3173, + "time": 0.4929971988795518, "position": { "x": 5, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3196, + "noteOrder": 3197, "time": 0.49673202614379086, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.5004668534080299, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3268, + "noteOrder": 3269, "time": 0.5079365079365079, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.515406162464986, + "noteOrder": 3317, + "time": 0.5154061624649859, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.519140989729225, + "noteOrder": 3341, + "time": 0.5191409897292251, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3364, - "time": 0.522875816993464, + "noteOrder": 3365, + "time": 0.5228758169934641, "position": { "x": 5, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3388, + "noteOrder": 3389, "time": 0.5266106442577031, "position": { "x": 5, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.5303454715219421, + "noteOrder": 3413, + "time": 0.530345471521942, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3436, + "noteOrder": 3437, "time": 0.5340802987861811, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.5378151260504201, "position": { "x": 7, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3484, - "time": 0.5415499533146593, + "noteOrder": 3485, + "time": 0.5415499533146592, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3508, - "time": 0.5452847805788982, + "noteOrder": 3509, + "time": 0.5452847805788983, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.5490196078431372, + "noteOrder": 3533, + "time": 0.5490196078431373, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3556, + "noteOrder": 3557, "time": 0.5527544351073762, "position": { "x": 8, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.5564892623716153, + "noteOrder": 3582, + "time": 0.5564892623716152, "position": { "x": 6, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3604, + "noteOrder": 3606, "time": 0.5602240896358543, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3630, "time": 0.5639589169000934, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3654, "time": 0.5676937441643324, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5714285714285715, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5751633986928104, "position": { "x": 3, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3724, + "noteOrder": 3726, "time": 0.5788982259570494, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.5826330532212884, "position": { "x": 2, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3774, "time": 0.5863678804855276, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3796, + "noteOrder": 3798, "time": 0.5901027077497666, "position": { "x": 2, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3822, "time": 0.5938375350140056, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.5975723622782447, + "noteOrder": 3846, + "time": 0.5975723622782446, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.6013071895424836, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3894, "time": 0.6050420168067226, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3918, "time": 0.6087768440709617, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3942, "time": 0.6125116713352008, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3965, + "noteOrder": 3966, "time": 0.6162464985994398, "position": { "x": 8, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6199813258636788, + "noteOrder": 3990, + "time": 0.6199813258636787, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4014, "time": 0.6237161531279178, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4037, + "noteOrder": 4038, "time": 0.6274509803921569, "position": { "x": 2, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4734, + "noteOrder": 4735, "time": 0.7357609710550886, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4758, + "noteOrder": 4759, "time": 0.7394957983193277, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4783, "time": 0.7432306255835668, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4807, "time": 0.7469654528478058, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4830, + "noteOrder": 4831, "time": 0.7507002801120448, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.7544351073762838, + "noteOrder": 4855, + "time": 0.7544351073762837, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.7581699346405228, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4902, + "noteOrder": 4904, "time": 0.7619047619047619, "position": { "x": 8, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4926, + "noteOrder": 4928, "time": 0.7656395891690009, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4950, - "time": 0.7693744164332399, + "noteOrder": 4952, + "time": 0.76937441643324, "position": { "x": 8, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.773109243697479, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4998, - "time": 0.776844070961718, + "noteOrder": 5000, + "time": 0.7768440709617179, "position": { "x": 8, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5502, + "noteOrder": 5504, "time": 0.8552754435107376, "position": { "x": 6, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5526, - "time": 0.8590102707749767, + "noteOrder": 5529, + "time": 0.8590102707749766, "position": { "x": 5, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5550, + "noteOrder": 5553, "time": 0.8627450980392157, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5574, + "noteOrder": 5577, "time": 0.8664799253034546, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5599, + "noteOrder": 5601, "time": 0.8702147525676937, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5625, "time": 0.8739495798319328, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5647, + "noteOrder": 5649, "time": 0.8776844070961718, "position": { "x": 2, @@ -2356,7 +2356,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.02987861811391223, @@ -2379,10 +2379,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 5, "y": 0 @@ -2402,10 +2402,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 3, "y": 0 @@ -2425,7 +2425,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.04481792717086835, @@ -2448,9 +2448,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05975723622782446, "position": { "x": 3, @@ -2471,7 +2471,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.06722689075630252, @@ -2494,7 +2494,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, "time": 0.06722689075630252, @@ -2517,10 +2517,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, - "time": 0.07469654528478059, + "time": 0.07469654528478058, "position": { "x": 7, "y": 0 @@ -2540,7 +2540,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.0896358543417367, @@ -2563,10 +2563,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.09710550887021475, + "time": 0.09710550887021474, "position": { "x": 5, "y": 0 @@ -2586,10 +2586,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 625, - "time": 0.09710550887021475, + "time": 0.09710550887021474, "position": { "x": 3, "y": 0 @@ -2609,7 +2609,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.10457516339869281, @@ -2632,7 +2632,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.11951447245564892, @@ -2655,7 +2655,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, "time": 0.12698412698412698, @@ -2678,7 +2678,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 817, "time": 0.12698412698412698, @@ -2701,7 +2701,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 865, "time": 0.13445378151260504, @@ -2724,10 +2724,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 8, "y": 0 @@ -2747,9 +2747,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.1568627450980392, "position": { "x": 8, @@ -2770,9 +2770,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.16433239962651727, "position": { "x": 5, @@ -2793,10 +2793,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1105, - "time": 0.17180205415499533, + "noteOrder": 1106, + "time": 0.1718020541549953, "position": { "x": 5, "y": 0 @@ -2816,9 +2816,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.1792717086834734, "position": { "x": 6, @@ -2839,9 +2839,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.18674136321195145, "position": { "x": 6, @@ -2862,10 +2862,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.1942110177404295, + "noteOrder": 1250, + "time": 0.19421101774042948, "position": { "x": 4, "y": 0 @@ -2885,7 +2885,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1346, "time": 0.20915032679738563, @@ -2908,7 +2908,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, "time": 0.20915032679738563, @@ -2931,7 +2931,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1394, "time": 0.21661998132586366, @@ -2954,7 +2954,7 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1442, "time": 0.22408963585434172, @@ -2977,7 +2977,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, "time": 0.22408963585434172, @@ -2999,11 +2999,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.22782446311858076, + "noteOrder": 1454, + "time": 0.22595704948646125, "position": { "x": 2, "y": 0 @@ -3017,18 +3017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1490, - "time": 0.23155929038281978, + "noteOrder": 1454, + "time": 0.22595704948646125, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3045,11 +3045,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1514, - "time": 0.23529411764705882, + "noteOrder": 1466, + "time": 0.22782446311858073, "position": { "x": 2, "y": 0 @@ -3068,11 +3068,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.23902894491129784, + "noteOrder": 1478, + "time": 0.22969187675070027, "position": { "x": 2, "y": 0 @@ -3086,18 +3086,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1562, - "time": 0.24276377217553685, + "noteOrder": 1478, + "time": 0.22969187675070027, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3114,11 +3114,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.24649859943977592, + "noteOrder": 1490, + "time": 0.2315592903828198, "position": { "x": 2, "y": 0 @@ -3137,11 +3137,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1610, - "time": 0.25023342670401494, + "noteOrder": 1502, + "time": 0.23342670401493928, "position": { "x": 2, "y": 0 @@ -3155,18 +3155,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.25396825396825395, + "noteOrder": 1502, + "time": 0.23342670401493928, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3183,13 +3183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.261437908496732, + "noteOrder": 1514, + "time": 0.23529411764705882, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3201,16 +3201,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 47, "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.2689075630252101, + "noteOrder": 1526, + "time": 0.23716153127917833, "position": { "x": 2, "y": 0 @@ -3224,18 +3224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 47, "indexInLine": 3, "isSliding": false, - "noteOrder": 1826, - "time": 0.2838468720821662, + "noteOrder": 1526, + "time": 0.23716153127917833, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3247,18 +3247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2838468720821662, + "noteOrder": 1538, + "time": 0.23902894491129784, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3270,18 +3270,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1850, - "time": 0.2875816993464052, + "noteOrder": 1550, + "time": 0.24089635854341734, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3298,13 +3298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.2913165266106442, + "noteOrder": 1550, + "time": 0.24089635854341734, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3316,18 +3316,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1898, - "time": 0.2950513538748833, + "noteOrder": 1562, + "time": 0.24276377217553688, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3344,13 +3344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1922, - "time": 0.29878618113912236, + "noteOrder": 1562, + "time": 0.24276377217553688, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3362,18 +3362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1946, - "time": 0.3025210084033613, + "noteOrder": 1562, + "time": 0.24276377217553688, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3385,18 +3385,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.3062558356676004, + "noteOrder": 1574, + "time": 0.2446311858076564, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3413,13 +3413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1994, - "time": 0.3099906629318394, + "noteOrder": 1574, + "time": 0.2446311858076564, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3431,18 +3431,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2018, - "time": 0.3137254901960784, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3459,13 +3459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2066, - "time": 0.3211951447245565, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3482,13 +3482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 2, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2114, - "time": 0.32866479925303455, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3500,18 +3500,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.34360410830999066, + "noteOrder": 1598, + "time": 0.24836601307189543, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3523,18 +3523,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.35107376283846875, + "noteOrder": 1598, + "time": 0.24836601307189543, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3551,13 +3551,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2307, - "time": 0.3585434173669468, + "noteOrder": 1610, + "time": 0.25023342670401494, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3569,18 +3569,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2331, - "time": 0.3622782446311858, + "noteOrder": 1610, + "time": 0.25023342670401494, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3597,13 +3597,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.3734827264239029, + "noteOrder": 1610, + "time": 0.25023342670401494, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3615,18 +3615,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2451, - "time": 0.38095238095238093, + "noteOrder": 1622, + "time": 0.25210084033613445, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3643,11 +3643,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2499, - "time": 0.388422035480859, + "noteOrder": 1622, + "time": 0.25210084033613445, "position": { "x": 4, "y": 0 @@ -3661,16 +3661,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2523, - "time": 0.392156862745098, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { "x": 4, "y": 0 @@ -3689,13 +3689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2619, - "time": 0.40709617180205415, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3712,13 +3712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.41083099906629317, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3730,16 +3730,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 52, "indexInLine": 2, "isSliding": false, - "noteOrder": 2667, - "time": 0.41456582633053224, + "noteOrder": 1683, + "time": 0.26143790849673204, "position": { "x": 6, "y": 0 @@ -3753,16 +3753,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2691, - "time": 0.41830065359477125, + "noteOrder": 1731, + "time": 0.2689075630252101, "position": { "x": 2, "y": 0 @@ -3781,11 +3781,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2787, - "time": 0.4332399626517273, + "noteOrder": 1827, + "time": 0.2838468720821662, "position": { "x": 6, "y": 0 @@ -3804,13 +3804,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2907, - "time": 0.4519140989729225, + "noteOrder": 1827, + "time": 0.2838468720821662, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3827,13 +3827,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2955, - "time": 0.45938375350140054, + "noteOrder": 1839, + "time": 0.28571428571428575, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3850,11 +3850,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3052, - "time": 0.47432306255835666, + "noteOrder": 1839, + "time": 0.28571428571428575, "position": { "x": 7, "y": 0 @@ -3873,13 +3873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 3100, - "time": 0.48179271708683474, + "noteOrder": 1851, + "time": 0.2875816993464052, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3891,18 +3891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3100, - "time": 0.48179271708683474, + "noteOrder": 1863, + "time": 0.2894491129785247, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3919,13 +3919,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3148, - "time": 0.4892623716153128, + "noteOrder": 1863, + "time": 0.2894491129785247, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3942,13 +3942,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3244, - "time": 0.5042016806722689, + "noteOrder": 1875, + "time": 0.2913165266106442, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -3960,18 +3960,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3292, - "time": 0.511671335200747, + "noteOrder": 1887, + "time": 0.2931839402427638, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3983,16 +3983,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3292, - "time": 0.511671335200747, + "noteOrder": 1887, + "time": 0.2931839402427638, "position": { "x": 7, "y": 0 @@ -4011,13 +4011,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 3340, - "time": 0.519140989729225, + "noteOrder": 1899, + "time": 0.2950513538748833, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4029,18 +4029,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4133, - "time": 0.642390289449113, + "noteOrder": 1911, + "time": 0.2969187675070028, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4052,18 +4052,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1911, + "time": 0.2969187675070028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 4169, - "time": 0.6479925303454716, + "noteOrder": 1923, + "time": 0.2987861811391223, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4080,13 +4103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 64, "indexInLine": 2, "isSliding": false, - "noteOrder": 4193, - "time": 0.6517273576097105, + "noteOrder": 1935, + "time": 0.3006535947712418, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4103,13 +4126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 64, "indexInLine": 3, "isSliding": false, - "noteOrder": 4217, - "time": 0.6554621848739496, + "noteOrder": 1935, + "time": 0.3006535947712418, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4126,11 +4149,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 64, "indexInLine": 4, "isSliding": false, - "noteOrder": 4241, - "time": 0.6591970121381886, + "noteOrder": 1947, + "time": 0.3025210084033613, "position": { "x": 6, "y": 0 @@ -4149,11 +4172,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 64, "indexInLine": 5, "isSliding": false, - "noteOrder": 4265, - "time": 0.6629318394024276, + "noteOrder": 1947, + "time": 0.3025210084033613, "position": { "x": 5, "y": 0 @@ -4172,13 +4195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 6, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4289, - "time": 0.6666666666666666, + "noteOrder": 1947, + "time": 0.3025210084033613, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4190,18 +4213,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4133, - "time": 0.642390289449113, + "noteOrder": 1959, + "time": 0.30438842203548083, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4218,13 +4241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4169, - "time": 0.6479925303454716, + "noteOrder": 1959, + "time": 0.30438842203548083, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4241,13 +4264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 2, + "lineGroupId": 65, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4193, - "time": 0.6517273576097105, + "noteOrder": 1971, + "time": 0.3062558356676004, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4264,13 +4287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4217, - "time": 0.6554621848739496, + "noteOrder": 1971, + "time": 0.3062558356676004, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4287,13 +4310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 4, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.6591970121381886, + "noteOrder": 1971, + "time": 0.3062558356676004, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4305,18 +4328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 5, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4265, - "time": 0.6629318394024276, + "noteOrder": 1983, + "time": 0.3081232492997199, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4328,18 +4351,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 6, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4289, - "time": 0.6666666666666666, + "noteOrder": 1983, + "time": 0.3081232492997199, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4351,18 +4374,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4325, - "time": 0.6722689075630253, + "noteOrder": 1995, + "time": 0.30999066293183936, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4374,18 +4397,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4349, - "time": 0.6760037348272643, + "noteOrder": 1995, + "time": 0.30999066293183936, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4402,13 +4425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4373, - "time": 0.6797385620915032, + "noteOrder": 1995, + "time": 0.30999066293183936, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4425,13 +4448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4397, - "time": 0.6834733893557422, + "noteOrder": 2007, + "time": 0.3118580765639589, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4443,18 +4466,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4421, - "time": 0.6872082166199813, + "noteOrder": 2007, + "time": 0.3118580765639589, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4471,13 +4494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4445, - "time": 0.6909430438842203, + "noteOrder": 2019, + "time": 0.3137254901960784, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4489,18 +4512,3859 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4469, - "time": 0.6946778711484594, + "noteOrder": 2019, + "time": 0.3137254901960784, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3137254901960784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2067, + "time": 0.32119514472455646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2115, + "time": 0.32866479925303455, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3436041083099906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3473389355742297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2235, + "time": 0.3473389355742297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.3510737628384687, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3548085901027077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2284, + "time": 0.3548085901027077, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.3585434173669468, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2320, + "time": 0.3604108309990663, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2320, + "time": 0.3604108309990663, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2332, + "time": 0.3622782446311858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.3641456582633053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2344, + "time": 0.3641456582633053, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.3734827264239029, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2428, + "time": 0.37721755368814186, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2428, + "time": 0.37721755368814186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2452, + "time": 0.38095238095238093, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2476, + "time": 0.38468720821662, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2476, + "time": 0.38468720821662, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2500, + "time": 0.38842203548085896, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2512, + "time": 0.39028944911297847, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2512, + "time": 0.39028944911297847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2524, + "time": 0.39215686274509803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2536, + "time": 0.39402427637721754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2536, + "time": 0.39402427637721754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40709617180205415, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2644, + "time": 0.41083099906629317, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4145658263305322, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.41830065359477125, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2788, + "time": 0.4332399626517273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2908, + "time": 0.4519140989729225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2957, + "time": 0.45938375350140054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3053, + "time": 0.47432306255835666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3101, + "time": 0.4817927170868347, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.4817927170868347, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4892623716153128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5042016806722689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3293, + "time": 0.5116713352007469, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3293, + "time": 0.5116713352007469, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3341, + "time": 0.5191409897292251, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.6423902894491129, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4170, + "time": 0.6479925303454714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4194, + "time": 0.6517273576097106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4218, + "time": 0.6554621848739496, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4243, + "time": 0.6591970121381886, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4267, + "time": 0.6629318394024277, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4291, + "time": 0.6666666666666666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4134, + "time": 0.6423902894491129, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4170, + "time": 0.6479925303454714, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4194, + "time": 0.6517273576097106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4218, + "time": 0.6554621848739496, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4243, + "time": 0.6591970121381886, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4267, + "time": 0.6629318394024277, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4291, + "time": 0.6666666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6722689075630252, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4339, + "time": 0.6741363211951447, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4339, + "time": 0.6741363211951447, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4351, + "time": 0.6760037348272642, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4363, + "time": 0.6778711484593838, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4363, + "time": 0.6778711484593838, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4375, + "time": 0.6797385620915033, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4387, + "time": 0.6816059757236228, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4387, + "time": 0.6816059757236228, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4399, + "time": 0.6834733893557423, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4411, + "time": 0.6853408029878617, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4411, + "time": 0.6853408029878617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4423, + "time": 0.6872082166199812, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4435, + "time": 0.6890756302521007, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4435, + "time": 0.6890756302521007, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4447, + "time": 0.6909430438842203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4447, + "time": 0.6909430438842203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4447, + "time": 0.6909430438842203, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4459, + "time": 0.6928104575163399, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4459, + "time": 0.6928104575163399, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4471, + "time": 0.6946778711484594, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4471, + "time": 0.6946778711484594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4471, + "time": 0.6946778711484594, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4483, + "time": 0.6965452847805789, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4483, + "time": 0.6965452847805789, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4495, + "time": 0.6984126984126984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4495, + "time": 0.6984126984126984, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4495, + "time": 0.6984126984126984, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7002801120448179, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4507, + "time": 0.7002801120448179, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7021475256769374, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7021475256769374, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4519, + "time": 0.7021475256769374, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4531, + "time": 0.704014939309057, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4531, + "time": 0.704014939309057, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4543, + "time": 0.7058823529411765, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4555, + "time": 0.707749766573296, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4555, + "time": 0.707749766573296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4567, + "time": 0.7096171802054154, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4579, + "time": 0.7114845938375349, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4579, + "time": 0.7114845938375349, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4591, + "time": 0.7133520074696544, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4603, + "time": 0.7152194211017739, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4603, + "time": 0.7152194211017739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4615, + "time": 0.7170868347338936, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4627, + "time": 0.7189542483660131, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4627, + "time": 0.7189542483660131, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4639, + "time": 0.7208216619981326, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4639, + "time": 0.7208216619981326, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4639, + "time": 0.7208216619981326, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4651, + "time": 0.7226890756302521, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4651, + "time": 0.7226890756302521, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4663, + "time": 0.7245564892623716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4663, + "time": 0.7245564892623716, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4663, + "time": 0.7245564892623716, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7264239028944911, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7264239028944911, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4687, + "time": 0.7282913165266106, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4687, + "time": 0.7282913165266106, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4687, + "time": 0.7282913165266106, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4699, + "time": 0.7301587301587302, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4699, + "time": 0.7301587301587302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4711, + "time": 0.7320261437908496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4711, + "time": 0.7320261437908496, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4711, + "time": 0.7320261437908496, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4735, + "time": 0.7357609710550886, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4904, + "time": 0.7619047619047619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4928, + "time": 0.7656395891690009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4952, + "time": 0.76937441643324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4976, + "time": 0.773109243697479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5000, + "time": 0.7768440709617179, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5096, + "time": 0.7917833800186741, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5108, + "time": 0.7936507936507936, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5108, + "time": 0.7936507936507936, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7955182072829132, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5132, + "time": 0.7973856209150327, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5132, + "time": 0.7973856209150327, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7992530345471521, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5156, + "time": 0.8011204481792716, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5156, + "time": 0.8011204481792716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5168, + "time": 0.8029878618113911, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5180, + "time": 0.8048552754435107, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5180, + "time": 0.8048552754435107, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5192, + "time": 0.8067226890756302, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5204, + "time": 0.8085901027077498, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5204, + "time": 0.8085901027077498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5216, + "time": 0.8104575163398693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5216, + "time": 0.8104575163398693, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5216, + "time": 0.8104575163398693, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5228, + "time": 0.8123249299719888, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5228, + "time": 0.8123249299719888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5252, + "time": 0.8160597572362278, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5252, + "time": 0.8160597572362278, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5264, + "time": 0.8179271708683473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5264, + "time": 0.8179271708683473, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5264, + "time": 0.8179271708683473, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5276, + "time": 0.8197945845004668, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5276, + "time": 0.8197945845004668, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5300, + "time": 0.8235294117647058, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5300, + "time": 0.8235294117647058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5312, + "time": 0.8253968253968254, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5324, + "time": 0.8272642390289449, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5324, + "time": 0.8272642390289449, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5336, + "time": 0.8291316526610644, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5348, + "time": 0.8309990662931839, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4512,18 +8376,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4493, - "time": 0.6984126984126985, + "noteOrder": 5348, + "time": 0.8309990662931839, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4540,13 +8404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.7021475256769375, + "noteOrder": 5360, + "time": 0.8328664799253034, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4563,13 +8427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4541, - "time": 0.7058823529411764, + "noteOrder": 5372, + "time": 0.834733893557423, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4581,18 +8445,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4565, - "time": 0.7096171802054154, + "noteOrder": 5372, + "time": 0.834733893557423, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4609,13 +8473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4589, - "time": 0.7133520074696545, + "noteOrder": 5384, + "time": 0.8366013071895425, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4632,13 +8496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4613, - "time": 0.7170868347338936, + "noteOrder": 5396, + "time": 0.838468720821662, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4650,18 +8514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4637, - "time": 0.7208216619981326, + "noteOrder": 5396, + "time": 0.838468720821662, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4678,13 +8542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4661, - "time": 0.7245564892623716, + "noteOrder": 5408, + "time": 0.8403361344537815, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4696,18 +8560,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4685, - "time": 0.7282913165266107, + "noteOrder": 5408, + "time": 0.8403361344537815, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4724,13 +8588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, - "time": 0.7320261437908496, + "noteOrder": 5408, + "time": 0.8403361344537815, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4747,13 +8611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4734, - "time": 0.7357609710550886, + "noteOrder": 5420, + "time": 0.842203548085901, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4770,13 +8634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4902, - "time": 0.7619047619047619, + "noteOrder": 5420, + "time": 0.842203548085901, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4793,11 +8657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 3, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4926, - "time": 0.7656395891690009, + "noteOrder": 5432, + "time": 0.8440709617180204, "position": { "x": 6, "y": 0 @@ -4816,13 +8680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 4, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4950, - "time": 0.7693744164332399, + "noteOrder": 5432, + "time": 0.8440709617180204, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4839,13 +8703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 5, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4974, - "time": 0.773109243697479, + "noteOrder": 5432, + "time": 0.8440709617180204, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4857,18 +8721,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 6, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.776844070961718, + "noteOrder": 5444, + "time": 0.8459383753501399, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4880,18 +8744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5094, - "time": 0.7917833800186741, + "noteOrder": 5444, + "time": 0.8459383753501399, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4908,13 +8772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5118, - "time": 0.7955182072829131, + "noteOrder": 5456, + "time": 0.8478057889822596, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4926,18 +8790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5142, - "time": 0.7992530345471522, + "noteOrder": 5456, + "time": 0.8478057889822596, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4954,11 +8818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5166, - "time": 0.8029878618113913, + "noteOrder": 5456, + "time": 0.8478057889822596, "position": { "x": 8, "y": 0 @@ -4977,11 +8841,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5190, - "time": 0.8067226890756303, + "noteOrder": 5468, + "time": 0.8496732026143791, "position": { "x": 8, "y": 0 @@ -4995,18 +8859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5214, - "time": 0.8104575163398693, + "noteOrder": 5468, + "time": 0.8496732026143791, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5023,13 +8887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5238, - "time": 0.8141923436041083, + "noteOrder": 5480, + "time": 0.8515406162464986, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5041,18 +8905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5262, - "time": 0.8179271708683473, + "noteOrder": 5480, + "time": 0.8515406162464986, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5069,11 +8933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, - "time": 0.8216619981325863, + "noteOrder": 5480, + "time": 0.8515406162464986, "position": { "x": 8, "y": 0 @@ -5092,11 +8956,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5310, - "time": 0.8253968253968254, + "noteOrder": 5504, + "time": 0.8552754435107376, "position": { "x": 8, "y": 0 @@ -5110,18 +8974,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5334, - "time": 0.8291316526610645, + "noteOrder": 5649, + "time": 0.8776844070961718, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5138,13 +9002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5358, - "time": 0.8328664799253035, + "noteOrder": 5673, + "time": 0.8814192343604108, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5161,13 +9025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5382, - "time": 0.8366013071895425, + "noteOrder": 5685, + "time": 0.8832866479925303, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5179,18 +9043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5406, - "time": 0.8403361344537814, + "noteOrder": 5685, + "time": 0.8832866479925303, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5207,13 +9071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5430, - "time": 0.8440709617180205, + "noteOrder": 5697, + "time": 0.8851540616246498, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5230,13 +9094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5454, - "time": 0.8478057889822596, + "noteOrder": 5709, + "time": 0.8870214752567694, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5248,18 +9112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5478, - "time": 0.8515406162464986, + "noteOrder": 5709, + "time": 0.8870214752567694, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5276,13 +9140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 208, "indexInLine": 1, "isSliding": false, - "noteOrder": 5502, - "time": 0.8552754435107376, + "noteOrder": 5721, + "time": 0.8888888888888888, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5294,18 +9158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 208, "indexInLine": 2, "isSliding": false, - "noteOrder": 5647, - "time": 0.8776844070961718, + "noteOrder": 5733, + "time": 0.8907563025210083, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -5317,18 +9181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5671, - "time": 0.8814192343604108, + "noteOrder": 5733, + "time": 0.8907563025210083, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5345,11 +9209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5695, - "time": 0.8851540616246499, + "noteOrder": 5745, + "time": 0.8926237161531279, "position": { "x": 7, "y": 0 @@ -5368,13 +9232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5719, - "time": 0.888888888888889, + "noteOrder": 5757, + "time": 0.8944911297852474, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5386,18 +9250,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5743, - "time": 0.8926237161531279, + "noteOrder": 5757, + "time": 0.8944911297852474, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5415,10 +9279,10 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.911297852474323, + "noteOrder": 5865, + "time": 0.9112978524743229, "position": { "x": 3, "y": 0 @@ -5438,9 +9302,9 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, + "noteOrder": 6105, "time": 0.9486461251167133, "position": { "x": 3, @@ -5461,10 +9325,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.911297852474323, + "noteOrder": 5865, + "time": 0.9112978524743229, "position": { "x": 7, "y": 0 @@ -5484,9 +9348,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, + "noteOrder": 6105, "time": 0.9486461251167133, "position": { "x": 7, diff --git a/tracks/The Second Summer/269_difficulty_1b.json b/tracks/The Second Summer/269_difficulty_1b.json index a522642c..412e8234 100644 --- a/tracks/The Second Summer/269_difficulty_1b.json +++ b/tracks/The Second Summer/269_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 240, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 4, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 337, "time": 0.05228758169934641, "position": { "x": 6, @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 361, "time": 0.05602240896358543, "position": { "x": 6, @@ -154,7 +154,7 @@ }, { "noteOrder": 553, - "time": 0.08590102707749767, + "time": 0.08590102707749765, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 625, - "time": 0.09710550887021475, + "time": 0.09710550887021474, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 649, - "time": 0.10084033613445378, + "time": 0.10084033613445377, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 745, - "time": 0.11577964519140989, + "time": 0.1157796451914099, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 841, - "time": 0.130718954248366, + "time": 0.13071895424836602, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 961, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 4, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.1531279178338002, "position": { "x": 7, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.1568627450980392, "position": { "x": 6, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1033, - "time": 0.16059757236227826, + "noteOrder": 1034, + "time": 0.16059757236227823, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.16433239962651727, "position": { "x": 5, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1081, - "time": 0.16806722689075632, + "noteOrder": 1082, + "time": 0.1680672268907563, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.17180205415499533, + "noteOrder": 1106, + "time": 0.1718020541549953, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1129, - "time": 0.17553688141923438, + "noteOrder": 1130, + "time": 0.17553688141923435, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.1792717086834734, "position": { "x": 6, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.1830065359477124, "position": { "x": 7, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.18674136321195145, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1225, + "noteOrder": 1226, "time": 0.19047619047619047, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1249, - "time": 0.1942110177404295, + "noteOrder": 1250, + "time": 0.19421101774042948, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.19794584500466852, "position": { "x": 8, @@ -614,7 +614,7 @@ }, { "noteOrder": 1298, - "time": 0.20168067226890757, + "time": 0.20168067226890754, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1682, - "time": 0.261437908496732, + "noteOrder": 1683, + "time": 0.26143790849673204, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.2689075630252101, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2763772175536881, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.32866479925303455, "position": { "x": 8, @@ -734,7 +734,7 @@ }, { "noteOrder": 2259, - "time": 0.35107376283846875, + "time": 0.3510737628384687, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2308, "time": 0.3585434173669468, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.3660130718954248, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.38095238095238093, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2499, - "time": 0.388422035480859, + "noteOrder": 2500, + "time": 0.38842203548085896, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.39589169000933705, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2979, - "time": 0.46311858076563955, + "noteOrder": 2981, + "time": 0.4631185807656396, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3053, "time": 0.47432306255835666, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.47805788982259567, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4892623716153128, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3172, - "time": 0.49299719887955185, + "noteOrder": 3173, + "time": 0.4929971988795518, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3245, "time": 0.5042016806722689, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3268, + "noteOrder": 3269, "time": 0.5079365079365079, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.519140989729225, + "noteOrder": 3341, + "time": 0.5191409897292251, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3364, - "time": 0.522875816993464, + "noteOrder": 3365, + "time": 0.5228758169934641, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3461, "time": 0.5378151260504201, "position": { "x": 5, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3532, - "time": 0.5490196078431372, + "noteOrder": 3533, + "time": 0.5490196078431373, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3556, + "noteOrder": 3557, "time": 0.5527544351073762, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3630, "time": 0.5639589169000934, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3654, "time": 0.5676937441643324, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3724, + "noteOrder": 3726, "time": 0.5788982259570494, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3748, + "noteOrder": 3750, "time": 0.5826330532212884, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3774, "time": 0.5863678804855276, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3796, + "noteOrder": 3798, "time": 0.5901027077497666, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3822, "time": 0.5938375350140056, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.5975723622782447, + "noteOrder": 3846, + "time": 0.5975723622782446, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 3870, "time": 0.6013071895424836, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3894, "time": 0.6050420168067226, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3918, "time": 0.6087768440709617, "position": { "x": 8, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3941, + "noteOrder": 3942, "time": 0.6125116713352008, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3965, + "noteOrder": 3966, "time": 0.6162464985994398, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.6199813258636788, + "noteOrder": 3990, + "time": 0.6199813258636787, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4014, "time": 0.6237161531279178, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4373, - "time": 0.6797385620915032, + "noteOrder": 4375, + "time": 0.6797385620915033, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4421, - "time": 0.6872082166199813, + "noteOrder": 4423, + "time": 0.6872082166199812, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.6946778711484594, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4517, - "time": 0.7021475256769375, + "noteOrder": 4519, + "time": 0.7021475256769374, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4565, + "noteOrder": 4567, "time": 0.7096171802054154, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4613, + "noteOrder": 4615, "time": 0.7170868347338936, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.7245564892623716, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4758, + "noteOrder": 4759, "time": 0.7394957983193277, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4807, "time": 0.7469654528478058, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.7544351073762838, + "noteOrder": 4855, + "time": 0.7544351073762837, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4902, + "noteOrder": 4904, "time": 0.7619047619047619, "position": { "x": 4, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4950, - "time": 0.7693744164332399, + "noteOrder": 4952, + "time": 0.76937441643324, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4998, - "time": 0.776844070961718, + "noteOrder": 5000, + "time": 0.7768440709617179, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5022, - "time": 0.780578898225957, + "noteOrder": 5024, + "time": 0.7805788982259569, "position": { "x": 8, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5046, - "time": 0.784313725490196, + "noteOrder": 5048, + "time": 0.7843137254901961, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5070, + "noteOrder": 5072, "time": 0.7880485527544351, "position": { "x": 8, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5334, - "time": 0.8291316526610645, + "noteOrder": 5336, + "time": 0.8291316526610644, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5382, + "noteOrder": 5384, "time": 0.8366013071895425, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5430, - "time": 0.8440709617180205, + "noteOrder": 5432, + "time": 0.8440709617180204, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5767, + "noteOrder": 5769, "time": 0.8963585434173669, "position": { "x": 2, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5791, + "noteOrder": 5793, "time": 0.900093370681606, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5815, + "noteOrder": 5817, "time": 0.903828197945845, "position": { "x": 2, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5841, "time": 0.907563025210084, "position": { "x": 5, @@ -1856,7 +1856,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.02987861811391223, @@ -1879,10 +1879,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 6, "y": 0 @@ -1902,7 +1902,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04481792717086835, @@ -1925,9 +1925,9 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.05228758169934641, "position": { "x": 3, @@ -1948,9 +1948,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05975723622782446, "position": { "x": 6, @@ -1971,7 +1971,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.06722689075630252, @@ -1994,10 +1994,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.07469654528478059, + "time": 0.07469654528478058, "position": { "x": 3, "y": 0 @@ -2017,7 +2017,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.08216619981325864, @@ -2040,7 +2040,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.0896358543417367, @@ -2063,10 +2063,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 625, - "time": 0.09710550887021475, + "time": 0.09710550887021474, "position": { "x": 6, "y": 0 @@ -2086,7 +2086,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.10457516339869281, @@ -2109,7 +2109,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, "time": 0.11204481792717086, @@ -2132,7 +2132,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.11951447245564892, @@ -2155,7 +2155,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, "time": 0.12698412698412698, @@ -2178,7 +2178,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.13445378151260504, @@ -2201,7 +2201,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 913, "time": 0.1419234360410831, @@ -2224,7 +2224,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1346, "time": 0.20915032679738563, @@ -2247,7 +2247,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1442, "time": 0.22408963585434172, @@ -2270,7 +2270,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, "time": 0.22408963585434172, @@ -2292,11 +2292,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.23155929038281978, + "noteOrder": 1466, + "time": 0.22782446311858073, "position": { "x": 2, "y": 0 @@ -2310,18 +2310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1538, - "time": 0.23902894491129784, + "noteOrder": 1466, + "time": 0.22782446311858073, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2338,13 +2338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1586, - "time": 0.24649859943977592, + "noteOrder": 1490, + "time": 0.2315592903828198, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2356,18 +2356,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1634, - "time": 0.25396825396825395, + "noteOrder": 1490, + "time": 0.2315592903828198, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2384,13 +2384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2838468720821662, + "noteOrder": 1490, + "time": 0.2315592903828198, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2402,18 +2402,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1826, - "time": 0.2838468720821662, + "noteOrder": 1514, + "time": 0.23529411764705882, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2430,13 +2430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1874, - "time": 0.2913165266106442, + "noteOrder": 1514, + "time": 0.23529411764705882, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2448,18 +2448,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1922, - "time": 0.29878618113912236, + "noteOrder": 1538, + "time": 0.23902894491129784, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2476,13 +2476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1970, - "time": 0.3062558356676004, + "noteOrder": 1538, + "time": 0.23902894491129784, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2494,18 +2494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2018, - "time": 0.3137254901960784, + "noteOrder": 1538, + "time": 0.23902894491129784, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2517,18 +2517,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2066, - "time": 0.3211951447245565, + "noteOrder": 1562, + "time": 0.24276377217553688, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2545,13 +2545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2211, - "time": 0.34360410830999066, + "noteOrder": 1562, + "time": 0.24276377217553688, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2563,18 +2563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2403, - "time": 0.3734827264239029, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2586,18 +2586,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2403, - "time": 0.3734827264239029, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2614,13 +2614,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, - "time": 0.40336134453781514, + "noteOrder": 1586, + "time": 0.2464985994397759, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -2632,18 +2632,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.40336134453781514, + "noteOrder": 1610, + "time": 0.25023342670401494, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2660,13 +2660,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2643, - "time": 0.41083099906629317, + "noteOrder": 1610, + "time": 0.25023342670401494, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2678,18 +2678,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2691, - "time": 0.41830065359477125, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2706,13 +2706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2739, - "time": 0.4257703081232493, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2724,18 +2724,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.4332399626517273, + "noteOrder": 1635, + "time": 0.25396825396825395, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2747,18 +2747,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2835, - "time": 0.4407096171802054, + "noteOrder": 1827, + "time": 0.2838468720821662, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2775,13 +2775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3003, - "time": 0.4668534080298786, + "noteOrder": 1827, + "time": 0.2838468720821662, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2793,18 +2793,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3052, - "time": 0.47432306255835666, + "noteOrder": 1851, + "time": 0.2875816993464052, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2816,16 +2816,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3100, - "time": 0.48179271708683474, + "noteOrder": 1851, + "time": 0.2875816993464052, "position": { "x": 6, "y": 0 @@ -2844,11 +2844,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3148, - "time": 0.4892623716153128, + "noteOrder": 1875, + "time": 0.2913165266106442, "position": { "x": 6, "y": 0 @@ -2867,13 +2867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3196, - "time": 0.49673202614379086, + "noteOrder": 1875, + "time": 0.2913165266106442, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2885,18 +2885,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 3244, - "time": 0.5042016806722689, + "noteOrder": 1875, + "time": 0.2913165266106442, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -2913,13 +2913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3292, - "time": 0.511671335200747, + "noteOrder": 1899, + "time": 0.2950513538748833, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2936,13 +2936,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3340, - "time": 0.519140989729225, + "noteOrder": 1899, + "time": 0.2950513538748833, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2959,13 +2959,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3388, - "time": 0.5266106442577031, + "noteOrder": 1923, + "time": 0.2987861811391223, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2977,18 +2977,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3436, - "time": 0.5340802987861811, + "noteOrder": 1923, + "time": 0.2987861811391223, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3000,18 +3000,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3484, - "time": 0.5415499533146593, + "noteOrder": 1923, + "time": 0.2987861811391223, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3028,13 +3028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3532, - "time": 0.5490196078431372, + "noteOrder": 1947, + "time": 0.3025210084033613, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3051,13 +3051,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3580, - "time": 0.5564892623716153, + "noteOrder": 1947, + "time": 0.3025210084033613, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3069,18 +3069,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3628, - "time": 0.5639589169000934, + "noteOrder": 1971, + "time": 0.3062558356676004, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3092,18 +3092,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3676, - "time": 0.5714285714285715, + "noteOrder": 1971, + "time": 0.3062558356676004, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3120,13 +3120,1991 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 3724, + "noteOrder": 1971, + "time": 0.3062558356676004, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1995, + "time": 0.30999066293183936, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1995, + "time": 0.30999066293183936, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3137254901960784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3137254901960784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3137254901960784, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2043, + "time": 0.31746031746031744, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2043, + "time": 0.31746031746031744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2067, + "time": 0.32119514472455646, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2067, + "time": 0.32119514472455646, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.32119514472455646, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2091, + "time": 0.32492997198879553, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2091, + "time": 0.32492997198879553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2115, + "time": 0.32866479925303455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2115, + "time": 0.32866479925303455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.3436041083099906, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2404, + "time": 0.3734827264239029, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.3734827264239029, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2596, + "time": 0.4033613445378151, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.4033613445378151, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40709617180205415, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2620, + "time": 0.40709617180205415, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2644, + "time": 0.41083099906629317, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4145658263305322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2668, + "time": 0.4145658263305322, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2692, + "time": 0.41830065359477125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2716, + "time": 0.4220354808590102, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2716, + "time": 0.4220354808590102, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2740, + "time": 0.4257703081232493, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2764, + "time": 0.4295051353874883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2764, + "time": 0.4295051353874883, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.4332399626517273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2812, + "time": 0.4369747899159664, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2812, + "time": 0.4369747899159664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2836, + "time": 0.4407096171802054, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2860, + "time": 0.4444444444444444, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2860, + "time": 0.4444444444444444, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3005, + "time": 0.46685340802987857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3053, + "time": 0.47432306255835666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3101, + "time": 0.4817927170868347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3149, + "time": 0.4892623716153128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3197, + "time": 0.49673202614379086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3245, + "time": 0.5042016806722689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3293, + "time": 0.5116713352007469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3341, + "time": 0.5191409897292251, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3389, + "time": 0.5266106442577031, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3437, + "time": 0.5340802987861811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3485, + "time": 0.5415499533146592, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3533, + "time": 0.5490196078431373, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5564892623716152, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3630, + "time": 0.5639589169000934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3678, + "time": 0.5714285714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3726, "time": 0.5788982259570494, "position": { - "x": 7, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4038, + "time": 0.6274509803921569, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4086, + "time": 0.6349206349206349, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4086, + "time": 0.6349206349206349, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4231, + "time": 0.6573295985060691, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6722689075630252, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4711, + "time": 0.7320261437908496, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4711, + "time": 0.7320261437908496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5000, + "time": 0.7768440709617179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5096, + "time": 0.7917833800186741, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7955182072829132, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7955182072829132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7992530345471521, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7992530345471521, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5144, + "time": 0.7992530345471521, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5168, + "time": 0.8029878618113911, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5168, + "time": 0.8029878618113911, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5192, + "time": 0.8067226890756302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5192, + "time": 0.8067226890756302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5192, + "time": 0.8067226890756302, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5216, + "time": 0.8104575163398693, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5216, + "time": 0.8104575163398693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5240, + "time": 0.8141923436041083, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5264, + "time": 0.8179271708683473, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5264, + "time": 0.8179271708683473, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5288, + "time": 0.8216619981325863, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5480, + "time": 0.8515406162464986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5480, + "time": 0.8515406162464986, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5504, + "time": 0.8552754435107376, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5504, + "time": 0.8552754435107376, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5529, + "time": 0.8590102707749766, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3138,18 +5116,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4037, - "time": 0.6274509803921569, + "noteOrder": 5529, + "time": 0.8590102707749766, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3166,13 +5144,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 4085, - "time": 0.6349206349206349, + "noteOrder": 5529, + "time": 0.8590102707749766, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3184,18 +5162,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4085, - "time": 0.6349206349206349, + "noteOrder": 5553, + "time": 0.8627450980392157, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3212,13 +5190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4229, - "time": 0.6573295985060691, + "noteOrder": 5553, + "time": 0.8627450980392157, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3235,11 +5213,34 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5577, + "time": 0.8664799253034546, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4325, - "time": 0.6722689075630253, + "noteOrder": 5577, + "time": 0.8664799253034546, "position": { "x": 6, "y": 0 @@ -3253,16 +5254,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 4709, - "time": 0.7320261437908496, + "noteOrder": 5577, + "time": 0.8664799253034546, "position": { "x": 2, "y": 0 @@ -3281,11 +5282,34 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4709, - "time": 0.7320261437908496, + "noteOrder": 5601, + "time": 0.8702147525676937, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5601, + "time": 0.8702147525676937, "position": { "x": 4, "y": 0 @@ -3299,16 +5323,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5625, + "time": 0.8739495798319328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4998, - "time": 0.776844070961718, + "noteOrder": 5625, + "time": 0.8739495798319328, "position": { "x": 6, "y": 0 @@ -3322,18 +5369,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5094, - "time": 0.7917833800186741, + "noteOrder": 5625, + "time": 0.8739495798319328, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3350,13 +5397,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5142, - "time": 0.7992530345471522, + "noteOrder": 5649, + "time": 0.8776844070961718, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3368,18 +5415,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5190, - "time": 0.8067226890756303, + "noteOrder": 5649, + "time": 0.8776844070961718, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3396,13 +5443,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5238, - "time": 0.8141923436041083, + "noteOrder": 5673, + "time": 0.8814192343604108, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3414,18 +5461,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5286, - "time": 0.8216619981325863, + "noteOrder": 5673, + "time": 0.8814192343604108, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3442,13 +5489,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 5478, - "time": 0.8515406162464986, + "noteOrder": 5673, + "time": 0.8814192343604108, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3460,16 +5507,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5478, - "time": 0.8515406162464986, + "noteOrder": 5697, + "time": 0.8851540616246498, "position": { "x": 2, "y": 0 @@ -3488,13 +5535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5526, - "time": 0.8590102707749767, + "noteOrder": 5697, + "time": 0.8851540616246498, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3506,18 +5553,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5574, - "time": 0.8664799253034546, + "noteOrder": 5721, + "time": 0.8888888888888888, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3534,11 +5581,34 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5623, - "time": 0.8739495798319328, + "noteOrder": 5721, + "time": 0.8888888888888888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5721, + "time": 0.8888888888888888, "position": { "x": 2, "y": 0 @@ -3557,11 +5627,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5671, - "time": 0.8814192343604108, + "noteOrder": 5745, + "time": 0.8926237161531279, "position": { "x": 2, "y": 0 @@ -3575,18 +5645,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5719, - "time": 0.888888888888889, + "noteOrder": 5745, + "time": 0.8926237161531279, "position": { - "x": 2, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5769, + "time": 0.8963585434173669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5769, + "time": 0.8963585434173669, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3604,10 +5720,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.911297852474323, + "noteOrder": 5865, + "time": 0.9112978524743229, "position": { "x": 4, "y": 0 @@ -3627,9 +5743,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, + "noteOrder": 6105, "time": 0.9486461251167133, "position": { "x": 4, @@ -3650,10 +5766,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.911297852474323, + "noteOrder": 5865, + "time": 0.9112978524743229, "position": { "x": 6, "y": 0 @@ -3673,9 +5789,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, + "noteOrder": 6105, "time": 0.9486461251167133, "position": { "x": 6, diff --git a/tracks/The Second Summer/info.json b/tracks/The Second Summer/info.json index 8b14b326..c9fdfb86 100644 --- a/tracks/The Second Summer/info.json +++ b/tracks/The Second Summer/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "The Second Summer", - "SongLength": "135.653878", + "SongLength": "125.701224", "SongAuthorName": "rira", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/The Stealer/286_difficulty_1a.json b/tracks/The Stealer/286_difficulty_1a.json index 73d848d5..90bc3337 100644 --- a/tracks/The Stealer/286_difficulty_1a.json +++ b/tracks/The Stealer/286_difficulty_1a.json @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 752, - "time": 0.15519399249061328, + "noteOrder": 753, + "time": 0.15519399249061325, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 801, - "time": 0.16520650813516893, + "time": 0.16520650813516896, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 849, + "noteOrder": 850, "time": 0.17521902377972465, "position": { "x": 6, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 849, + "noteOrder": 850, "time": 0.17521902377972465, "position": { "x": 4, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1019, - "time": 0.21026282853566958, + "noteOrder": 1020, + "time": 0.2102628285356696, "position": { "x": 3, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1043, - "time": 0.21526908635794742, + "noteOrder": 1044, + "time": 0.21526908635794745, "position": { "x": 7, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1213, - "time": 0.2503128911138923, + "noteOrder": 1214, + "time": 0.2503128911138924, "position": { "x": 7, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1383, - "time": 0.28535669586983725, + "noteOrder": 1384, + "time": 0.2853566958698373, "position": { "x": 2, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.2903629536921151, "position": { "x": 5, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1480, + "noteOrder": 1481, "time": 0.3053817271589487, "position": { "x": 8, @@ -334,7 +334,7 @@ }, { "noteOrder": 1505, - "time": 0.31038798498122655, + "time": 0.3103879849812265, "position": { "x": 5, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1529, - "time": 0.31539424280350437, + "noteOrder": 1530, + "time": 0.3153942428035044, "position": { "x": 8, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1626, + "noteOrder": 1627, "time": 0.3354192740926158, "position": { "x": 7, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1674, - "time": 0.3454317897371714, + "noteOrder": 1675, + "time": 0.3454317897371715, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1723, - "time": 0.3554443053817271, + "noteOrder": 1724, + "time": 0.35544430538172717, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1771, + "noteOrder": 1772, "time": 0.36545682102628285, "position": { "x": 7, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1820, + "noteOrder": 1821, "time": 0.37546933667083854, "position": { "x": 7, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1966, - "time": 0.40550688360450565, + "noteOrder": 1967, + "time": 0.4055068836045056, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1990, - "time": 0.41051314142678347, + "noteOrder": 1991, + "time": 0.4105131414267835, "position": { "x": 5, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2014, - "time": 0.4155193992490613, + "noteOrder": 2015, + "time": 0.41551939924906134, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2064, "time": 0.425531914893617, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2111, + "noteOrder": 2112, "time": 0.4355444305381727, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2160, - "time": 0.44555694618272845, + "noteOrder": 2161, + "time": 0.4455569461827284, "position": { "x": 2, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 2209, "time": 0.4555694618272841, "position": { "x": 8, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.4755944931163955, "position": { "x": 5, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.5056320400500626, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.5106382978723404, "position": { "x": 2, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.5156445556946183, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.5256570713391739, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.5306633291614519, + "noteOrder": 2573, + "time": 0.5306633291614518, "position": { "x": 8, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5356695869837297, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 2695, "time": 0.5556946182728411, "position": { "x": 7, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.5607008760951189, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2730, - "time": 0.5632040050062578, + "noteOrder": 2731, + "time": 0.5632040050062579, "position": { "x": 5, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.5657071339173967, + "noteOrder": 2743, + "time": 0.5657071339173968, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2754, + "noteOrder": 2756, "time": 0.5682102628285357, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2766, - "time": 0.5707133917396745, + "noteOrder": 2768, + "time": 0.5707133917396746, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2779, + "noteOrder": 2780, "time": 0.5732165206508135, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2791, + "noteOrder": 2792, "time": 0.5757196495619524, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 2986, "time": 0.6157697121401752, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3228, - "time": 0.6658322903629537, + "noteOrder": 3229, + "time": 0.6658322903629538, "position": { "x": 8, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3276, - "time": 0.6758448060075093, + "noteOrder": 3278, + "time": 0.6758448060075094, "position": { "x": 2, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3325, + "noteOrder": 3326, "time": 0.6858573216520651, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3349, - "time": 0.6908635794743428, + "noteOrder": 3350, + "time": 0.690863579474343, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3373, + "noteOrder": 3375, "time": 0.6958698372966208, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3422, - "time": 0.7058823529411764, + "noteOrder": 3423, + "time": 0.7058823529411765, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3446, - "time": 0.7108886107634542, + "noteOrder": 3447, + "time": 0.7108886107634543, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3470, + "noteOrder": 3472, "time": 0.7158948685857321, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3519, - "time": 0.7259073842302878, + "noteOrder": 3520, + "time": 0.7259073842302879, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3567, - "time": 0.7359198998748436, + "noteOrder": 3569, + "time": 0.7359198998748435, "position": { "x": 4, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3737, + "noteOrder": 3739, "time": 0.7709637046307884, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3761, + "noteOrder": 3763, "time": 0.7759699624530663, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3931, - "time": 0.8110137672090113, + "noteOrder": 3933, + "time": 0.8110137672090112, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 3957, "time": 0.816020025031289, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4101, - "time": 0.8460575719649561, + "noteOrder": 4103, + "time": 0.8460575719649562, "position": { "x": 8, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4125, + "noteOrder": 4127, "time": 0.851063829787234, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4150, - "time": 0.8560700876095119, + "noteOrder": 4152, + "time": 0.856070087609512, "position": { "x": 8, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4198, - "time": 0.8660826032540675, + "noteOrder": 4200, + "time": 0.8660826032540676, "position": { "x": 2, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.8710888610763454, "position": { "x": 5, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4249, "time": 0.8760951188986233, "position": { "x": 2, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4344, - "time": 0.8961201501877346, + "noteOrder": 4346, + "time": 0.8961201501877347, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 4394, "time": 0.9061326658322904, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4441, + "noteOrder": 4443, "time": 0.9161451814768461, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4540, "time": 0.9361702127659575, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4586, + "noteOrder": 4589, "time": 0.9461827284105131, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.9561952440550687, + "noteOrder": 4637, + "time": 0.9561952440550688, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.9612015018773467, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4684, - "time": 0.9662077596996246, + "noteOrder": 4686, + "time": 0.9662077596996245, "position": { "x": 3, "y": 0 @@ -1496,10 +1496,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.02002503128911139, + "time": 0.020025031289111386, "position": { "x": 3, "y": 0 @@ -1519,7 +1519,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, "time": 0.03504380475594493, @@ -1542,10 +1542,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.04005006257822278, + "time": 0.04005006257822277, "position": { "x": 4, "y": 0 @@ -1565,10 +1565,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, - "time": 0.055068836045056316, + "time": 0.05506883604505632, "position": { "x": 4, "y": 0 @@ -1588,10 +1588,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 243, - "time": 0.050062578222778466, + "time": 0.05006257822277847, "position": { "x": 6, "y": 0 @@ -1611,10 +1611,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 267, - "time": 0.055068836045056316, + "time": 0.05506883604505632, "position": { "x": 6, "y": 0 @@ -1634,7 +1634,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, "time": 0.060075093867334166, @@ -1657,7 +1657,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 364, "time": 0.07509386733416772, @@ -1680,10 +1680,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 388, - "time": 0.08010012515644556, + "time": 0.08010012515644555, "position": { "x": 6, "y": 0 @@ -1703,7 +1703,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 461, "time": 0.0951188986232791, @@ -1726,7 +1726,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 437, "time": 0.09011264080100126, @@ -1749,7 +1749,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 461, "time": 0.0951188986232791, @@ -1772,10 +1772,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 485, - "time": 0.10012515644555693, + "noteOrder": 486, + "time": 0.10012515644555695, "position": { "x": 3, "y": 0 @@ -1795,7 +1795,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 558, "time": 0.11514392991239049, @@ -1818,9 +1818,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 582, + "noteOrder": 583, "time": 0.12015018773466833, "position": { "x": 4, @@ -1841,9 +1841,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 655, + "noteOrder": 656, "time": 0.13516896120150187, "position": { "x": 4, @@ -1864,7 +1864,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 631, "time": 0.13016270337922403, @@ -1887,9 +1887,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 655, + "noteOrder": 656, "time": 0.13516896120150187, "position": { "x": 6, @@ -1910,9 +1910,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 679, + "noteOrder": 680, "time": 0.14017521902377972, "position": { "x": 7, @@ -1933,10 +1933,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 752, - "time": 0.15519399249061328, + "noteOrder": 753, + "time": 0.15519399249061325, "position": { "x": 7, "y": 0 @@ -1956,10 +1956,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 6, "y": 0 @@ -1979,10 +1979,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 801, - "time": 0.16520650813516893, + "time": 0.16520650813516896, "position": { "x": 6, "y": 0 @@ -2002,7 +2002,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, "time": 0.18022528160200252, @@ -2025,9 +2025,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 922, + "noteOrder": 923, "time": 0.1902377972465582, "position": { "x": 7, @@ -2048,7 +2048,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 874, "time": 0.18022528160200252, @@ -2071,9 +2071,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 922, + "noteOrder": 923, "time": 0.1902377972465582, "position": { "x": 3, @@ -2094,10 +2094,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 971, - "time": 0.20025031289111386, + "time": 0.2002503128911139, "position": { "x": 3, "y": 0 @@ -2116,13 +2116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 995, - "time": 0.20525657071339173, + "noteOrder": 983, + "time": 0.2027534418022528, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2134,18 +2134,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1068, - "time": 0.22027534418022526, + "noteOrder": 983, + "time": 0.2027534418022528, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2157,18 +2157,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 1116, - "time": 0.23028785982478098, + "noteOrder": 995, + "time": 0.20525657071339176, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2185,13 +2185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1068, - "time": 0.22027534418022526, + "noteOrder": 1008, + "time": 0.20775969962453067, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2203,18 +2203,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1116, - "time": 0.23028785982478098, + "noteOrder": 1008, + "time": 0.20775969962453067, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2226,18 +2226,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1165, - "time": 0.24030037546933666, + "noteOrder": 1068, + "time": 0.2202753441802253, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2254,13 +2254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1189, - "time": 0.2453066332916145, + "noteOrder": 1117, + "time": 0.23028785982478098, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2272,16 +2272,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.26032540675844806, + "noteOrder": 1068, + "time": 0.2202753441802253, "position": { "x": 4, "y": 0 @@ -2300,11 +2300,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1310, - "time": 0.27033792240300375, + "noteOrder": 1117, + "time": 0.23028785982478098, "position": { "x": 4, "y": 0 @@ -2323,13 +2323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.26032540675844806, + "noteOrder": 1165, + "time": 0.24030037546933666, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2346,13 +2346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1310, - "time": 0.27033792240300375, + "noteOrder": 1177, + "time": 0.2428035043804756, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2369,13 +2369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1359, - "time": 0.28035043804755944, + "noteOrder": 1177, + "time": 0.2428035043804756, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2387,18 +2387,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, - "time": 0.30037546933667086, + "noteOrder": 1190, + "time": 0.2453066332916145, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2415,13 +2415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1456, - "time": 0.30037546933667086, + "noteOrder": 1202, + "time": 0.24780976220275347, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2433,18 +2433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1553, - "time": 0.32040050062578224, + "noteOrder": 1202, + "time": 0.24780976220275347, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2456,18 +2456,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1553, - "time": 0.32040050062578224, + "noteOrder": 1262, + "time": 0.26032540675844806, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2484,13 +2484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1577, - "time": 0.32540675844806005, + "noteOrder": 1311, + "time": 0.27033792240300375, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2502,18 +2502,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1602, - "time": 0.33041301627033787, + "noteOrder": 1262, + "time": 0.26032540675844806, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2525,18 +2525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1650, - "time": 0.3404255319148936, + "noteOrder": 1311, + "time": 0.27033792240300375, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2553,13 +2553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1674, - "time": 0.3454317897371714, + "noteOrder": 1360, + "time": 0.28035043804755944, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2571,18 +2571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.3504380475594493, + "noteOrder": 1457, + "time": 0.30037546933667086, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2599,11 +2599,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1723, - "time": 0.3554443053817271, + "noteOrder": 1457, + "time": 0.30037546933667086, "position": { "x": 6, "y": 0 @@ -2617,18 +2617,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1747, - "time": 0.36045056320400504, + "noteOrder": 1554, + "time": 0.3204005006257822, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2645,13 +2645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1771, - "time": 0.36545682102628285, + "noteOrder": 1554, + "time": 0.3204005006257822, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2663,18 +2663,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1796, - "time": 0.37046307884856067, + "noteOrder": 1566, + "time": 0.3229036295369212, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2691,13 +2691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1820, - "time": 0.37546933667083854, + "noteOrder": 1566, + "time": 0.3229036295369212, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2714,11 +2714,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1844, - "time": 0.3804755944931164, + "noteOrder": 1578, + "time": 0.3254067584480601, "position": { "x": 7, "y": 0 @@ -2737,11 +2737,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1869, - "time": 0.3854818523153942, + "noteOrder": 1590, + "time": 0.327909887359199, "position": { "x": 7, "y": 0 @@ -2755,18 +2755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1893, - "time": 0.3904881101376721, + "noteOrder": 1590, + "time": 0.327909887359199, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2783,13 +2783,2152 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1917, + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1602, + "time": 0.3304130162703379, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1614, + "time": 0.3329161451814769, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1614, + "time": 0.3329161451814769, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1627, + "time": 0.3354192740926158, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1627, + "time": 0.3354192740926158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1651, + "time": 0.3404255319148936, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1663, + "time": 0.34292866082603257, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1663, + "time": 0.34292866082603257, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1675, + "time": 0.3454317897371715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1699, + "time": 0.3504380475594493, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1712, + "time": 0.35294117647058826, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1712, + "time": 0.35294117647058826, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1724, + "time": 0.35544430538172717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1748, + "time": 0.36045056320400504, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1760, + "time": 0.36295369211514394, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1760, + "time": 0.36295369211514394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1772, + "time": 0.36545682102628285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1797, + "time": 0.3704630788485607, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1809, + "time": 0.37296620775969963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1809, + "time": 0.37296620775969963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1821, + "time": 0.37546933667083854, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1845, + "time": 0.3804755944931164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1857, + "time": 0.3829787234042553, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1857, + "time": 0.3829787234042553, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1869, + "time": 0.3854818523153942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1869, + "time": 0.3854818523153942, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1869, + "time": 0.3854818523153942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1882, + "time": 0.38798498122653313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1882, + "time": 0.38798498122653313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1894, + "time": 0.3904881101376721, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1894, + "time": 0.3904881101376721, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1894, + "time": 0.3904881101376721, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1906, + "time": 0.392991239048811, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1906, + "time": 0.392991239048811, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1918, + "time": 0.3954943679599499, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1918, + "time": 0.3954943679599499, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1918, "time": 0.3954943679599499, "position": { - "x": 7, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1930, + "time": 0.3979974968710888, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1930, + "time": 0.3979974968710888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1942, + "time": 0.4005006257822278, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1942, + "time": 0.4005006257822278, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1942, + "time": 0.4005006257822278, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1967, + "time": 0.4055068836045056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2039, + "time": 0.4205256570713392, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2039, + "time": 0.4205256570713392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2064, + "time": 0.425531914893617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2088, + "time": 0.4305381727158949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2112, + "time": 0.4355444305381727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2136, + "time": 0.4405506883604506, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2161, + "time": 0.4455569461827284, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2185, + "time": 0.45056320400500627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2209, + "time": 0.4555694618272841, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.46057571964956195, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.46558197747183977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.46558197747183977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2282, + "time": 0.47058823529411764, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2282, + "time": 0.47058823529411764, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.4755944931163955, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2331, + "time": 0.4806007509386733, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2343, + "time": 0.48310387984981223, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2343, + "time": 0.48310387984981223, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2355, + "time": 0.4856070087609512, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2367, + "time": 0.4881101376720901, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2367, + "time": 0.4881101376720901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2379, + "time": 0.490613266583229, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2391, + "time": 0.4931163954943679, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2391, + "time": 0.4931163954943679, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.49561952440550694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2416, + "time": 0.49812265331664585, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2416, + "time": 0.49812265331664585, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.5006257822277848, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2452, + "time": 0.5056320400500626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2525, + "time": 0.5206508135168961, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2525, + "time": 0.5206508135168961, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2549, + "time": 0.5256570713391739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2622, + "time": 0.5406758448060075, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2622, + "time": 0.5406758448060075, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2634, + "time": 0.5431789737171465, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2634, + "time": 0.5431789737171465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2646, + "time": 0.5456821026282854, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2646, + "time": 0.5456821026282854, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.5456821026282854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.5481852315394243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2658, + "time": 0.5481852315394243, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2671, + "time": 0.5506883604505631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2671, + "time": 0.5506883604505631, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2671, + "time": 0.5506883604505631, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2683, + "time": 0.5531914893617021, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2683, + "time": 0.5531914893617021, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2695, + "time": 0.5556946182728411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2695, + "time": 0.5556946182728411, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2816, + "time": 0.5807259073842302, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2828, + "time": 0.5832290362953693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2841, + "time": 0.5857321652065082, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -2806,11 +4945,149 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2853, + "time": 0.5882352941176471, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2865, + "time": 0.590738423028786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2877, + "time": 0.5932415519399249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2889, + "time": 0.5957446808510638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2816, + "time": 0.5807259073842302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2828, + "time": 0.5832290362953693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1941, - "time": 0.4005006257822277, + "noteOrder": 2841, + "time": 0.5857321652065082, "position": { "x": 7, "y": 0 @@ -2829,13 +5106,128 @@ "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2853, + "time": 0.5882352941176471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2865, + "time": 0.590738423028786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2877, + "time": 0.5932415519399249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2889, + "time": 0.5957446808510638, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 1966, - "time": 0.40550688360450565, + "noteOrder": 2913, + "time": 0.6007509386733417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2926, + "time": 0.6032540675844806, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2847,16 +5239,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 2, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2038, - "time": 0.42052565707133915, + "noteOrder": 2926, + "time": 0.6032540675844806, "position": { "x": 4, "y": 0 @@ -2870,18 +5262,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2038, - "time": 0.42052565707133915, + "noteOrder": 2938, + "time": 0.6057571964956195, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2893,18 +5285,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2063, - "time": 0.425531914893617, + "noteOrder": 2950, + "time": 0.6082603254067585, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2916,18 +5308,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2087, - "time": 0.43053817271589484, + "noteOrder": 2950, + "time": 0.6082603254067585, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2944,13 +5336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 2111, - "time": 0.4355444305381727, + "noteOrder": 2962, + "time": 0.6107634543178974, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2962,18 +5354,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2135, - "time": 0.4405506883604505, + "noteOrder": 2974, + "time": 0.6132665832290363, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2990,11 +5382,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2160, - "time": 0.44555694618272845, + "noteOrder": 2974, + "time": 0.6132665832290363, "position": { "x": 4, "y": 0 @@ -3013,13 +5405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2184, - "time": 0.45056320400500627, + "noteOrder": 2986, + "time": 0.6157697121401752, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3031,18 +5423,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2208, - "time": 0.4555694618272841, + "noteOrder": 2986, + "time": 0.6157697121401752, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3054,18 +5446,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2233, - "time": 0.46057571964956195, + "noteOrder": 3010, + "time": 0.620775969962453, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3077,18 +5469,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2257, - "time": 0.46558197747183977, + "noteOrder": 3023, + "time": 0.6232790988735919, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3100,18 +5492,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2257, - "time": 0.46558197747183977, + "noteOrder": 3035, + "time": 0.625782227784731, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3128,13 +5520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2281, - "time": 0.4705882352941176, + "noteOrder": 3047, + "time": 0.6282853566958699, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3151,13 +5543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2281, - "time": 0.4705882352941176, + "noteOrder": 3059, + "time": 0.6307884856070088, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3169,18 +5561,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2305, - "time": 0.4755944931163955, + "noteOrder": 3071, + "time": 0.6332916145181476, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3192,18 +5584,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2330, - "time": 0.4806007509386733, + "noteOrder": 3083, + "time": 0.6357947434292865, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3215,18 +5607,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2354, - "time": 0.48560700876095114, + "noteOrder": 3010, + "time": 0.620775969962453, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3238,18 +5630,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2378, - "time": 0.490613266583229, + "noteOrder": 3023, + "time": 0.6232790988735919, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3266,13 +5658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2402, - "time": 0.4956195244055069, + "noteOrder": 3035, + "time": 0.625782227784731, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3284,16 +5676,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2427, - "time": 0.5006257822277846, + "noteOrder": 3047, + "time": 0.6282853566958699, "position": { "x": 3, "y": 0 @@ -3312,13 +5704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2451, - "time": 0.5056320400500626, + "noteOrder": 3059, + "time": 0.6307884856070088, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3335,13 +5727,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 107, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2524, - "time": 0.5206508135168961, + "noteOrder": 3071, + "time": 0.6332916145181476, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3358,13 +5750,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2524, - "time": 0.5206508135168961, + "noteOrder": 3083, + "time": 0.6357947434292865, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3376,18 +5768,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.5256570713391739, + "noteOrder": 3108, + "time": 0.6408010012515644, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3404,11 +5796,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 108, "indexInLine": 2, "isSliding": false, - "noteOrder": 2621, - "time": 0.5406758448060075, + "noteOrder": 3132, + "time": 0.6458072590738424, "position": { "x": 5, "y": 0 @@ -3427,13 +5819,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2621, - "time": 0.5406758448060075, + "noteOrder": 3132, + "time": 0.6458072590738424, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3450,13 +5842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2645, - "time": 0.5456821026282853, + "noteOrder": 3156, + "time": 0.6508135168961202, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3468,18 +5860,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2669, - "time": 0.5506883604505632, + "noteOrder": 3156, + "time": 0.6508135168961202, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3491,18 +5883,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2815, - "time": 0.5807259073842302, + "noteOrder": 3180, + "time": 0.655819774718398, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3514,18 +5906,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 111, "indexInLine": 1, "isSliding": false, - "noteOrder": 2827, - "time": 0.5832290362953693, + "noteOrder": 3180, + "time": 0.655819774718398, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3542,13 +5934,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 111, "indexInLine": 2, "isSliding": false, - "noteOrder": 2839, - "time": 0.5857321652065081, + "noteOrder": 3205, + "time": 0.6608260325406758, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3565,13 +5957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 3, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2851, - "time": 0.5882352941176471, + "noteOrder": 3205, + "time": 0.6608260325406758, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3583,18 +5975,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 4, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2864, - "time": 0.590738423028786, + "noteOrder": 3229, + "time": 0.6658322903629538, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3606,16 +5998,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 5, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2876, - "time": 0.5932415519399249, + "noteOrder": 3253, + "time": 0.6708385481852316, "position": { "x": 4, "y": 0 @@ -3634,11 +6026,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 6, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2888, - "time": 0.5957446808510638, + "noteOrder": 3278, + "time": 0.6758448060075094, "position": { "x": 4, "y": 0 @@ -3657,13 +6049,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2815, - "time": 0.5807259073842302, + "noteOrder": 3302, + "time": 0.6808510638297872, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3680,13 +6072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2827, - "time": 0.5832290362953693, + "noteOrder": 3399, + "time": 0.7008760951188986, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3703,13 +6095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 2, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2839, - "time": 0.5857321652065081, + "noteOrder": 3399, + "time": 0.7008760951188986, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3721,18 +6113,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 3, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2851, - "time": 0.5882352941176471, + "noteOrder": 3496, + "time": 0.7209011264080101, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3744,18 +6136,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 4, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2864, - "time": 0.590738423028786, + "noteOrder": 3496, + "time": 0.7209011264080101, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3772,13 +6164,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 5, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2876, - "time": 0.5932415519399249, + "noteOrder": 3520, + "time": 0.7259073842302879, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3795,13 +6187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 6, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2888, - "time": 0.5957446808510638, + "noteOrder": 3545, + "time": 0.7309136420525657, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3813,16 +6205,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2912, - "time": 0.6007509386733417, + "noteOrder": 3569, + "time": 0.7359198998748435, "position": { "x": 3, "y": 0 @@ -3841,13 +6233,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2936, - "time": 0.6057571964956195, + "noteOrder": 3593, + "time": 0.7409261576971214, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3859,16 +6251,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2961, - "time": 0.6107634543178974, + "noteOrder": 3642, + "time": 0.7509386733416771, "position": { "x": 3, "y": 0 @@ -3887,13 +6279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3009, - "time": 0.6207759699624531, + "noteOrder": 3593, + "time": 0.7409261576971214, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3910,13 +6302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3021, - "time": 0.6232790988735919, + "noteOrder": 3642, + "time": 0.7509386733416771, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3933,13 +6325,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3033, - "time": 0.6257822277847309, + "noteOrder": 3690, + "time": 0.7609511889862328, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3956,13 +6348,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 3, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3046, - "time": 0.6282853566958698, + "noteOrder": 3702, + "time": 0.7634543178973717, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3979,11 +6371,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 4, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3058, - "time": 0.6307884856070087, + "noteOrder": 3702, + "time": 0.7634543178973717, "position": { "x": 6, "y": 0 @@ -4002,13 +6394,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 5, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3070, - "time": 0.6332916145181477, + "noteOrder": 3715, + "time": 0.7659574468085106, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4020,18 +6412,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 6, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3082, - "time": 0.6357947434292865, + "noteOrder": 3727, + "time": 0.7684605757196495, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4043,16 +6435,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3009, - "time": 0.6207759699624531, + "noteOrder": 3727, + "time": 0.7684605757196495, "position": { "x": 4, "y": 0 @@ -4071,13 +6463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 3021, - "time": 0.6232790988735919, + "noteOrder": 3787, + "time": 0.7809762202753442, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4089,18 +6481,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 137, "indexInLine": 2, "isSliding": false, - "noteOrder": 3033, - "time": 0.6257822277847309, + "noteOrder": 3836, + "time": 0.7909887359198998, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4112,18 +6504,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 3, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3046, - "time": 0.6282853566958698, + "noteOrder": 3787, + "time": 0.7809762202753442, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4140,11 +6532,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 4, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3058, - "time": 0.6307884856070087, + "noteOrder": 3836, + "time": 0.7909887359198998, "position": { "x": 4, "y": 0 @@ -4163,13 +6555,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 5, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3070, - "time": 0.6332916145181477, + "noteOrder": 3884, + "time": 0.8010012515644556, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4186,11 +6578,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 6, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3082, - "time": 0.6357947434292865, + "noteOrder": 3897, + "time": 0.8035043804755945, "position": { "x": 3, "y": 0 @@ -4209,13 +6601,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3106, - "time": 0.6408010012515645, + "noteOrder": 3897, + "time": 0.8035043804755945, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4227,18 +6619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 3130, - "time": 0.6458072590738423, + "noteOrder": 3909, + "time": 0.8060075093867334, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4255,13 +6647,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3130, - "time": 0.6458072590738423, + "noteOrder": 3921, + "time": 0.8085106382978723, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4273,18 +6665,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3155, - "time": 0.6508135168961201, + "noteOrder": 3921, + "time": 0.8085106382978723, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4296,18 +6688,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3155, - "time": 0.6508135168961201, + "noteOrder": 3982, + "time": 0.821026282853567, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4319,18 +6711,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3179, - "time": 0.655819774718398, + "noteOrder": 4030, + "time": 0.8310387984981227, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4342,18 +6734,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3179, - "time": 0.655819774718398, + "noteOrder": 3982, + "time": 0.821026282853567, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4365,18 +6757,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3203, - "time": 0.6608260325406757, + "noteOrder": 4030, + "time": 0.8310387984981227, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4388,16 +6780,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3203, - "time": 0.6608260325406757, + "noteOrder": 4079, + "time": 0.8410513141426784, "position": { "x": 6, "y": 0 @@ -4416,11 +6808,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3228, - "time": 0.6658322903629537, + "noteOrder": 4176, + "time": 0.8610763454317898, "position": { "x": 6, "y": 0 @@ -4439,11 +6831,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3252, - "time": 0.6708385481852316, + "noteOrder": 4176, + "time": 0.8610763454317898, "position": { "x": 4, "y": 0 @@ -4462,11 +6854,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3276, - "time": 0.6758448060075093, + "noteOrder": 4273, + "time": 0.8811013767209012, "position": { "x": 4, "y": 0 @@ -4485,11 +6877,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3300, - "time": 0.6808510638297872, + "noteOrder": 4273, + "time": 0.8811013767209012, "position": { "x": 7, "y": 0 @@ -4508,11 +6900,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3397, - "time": 0.7008760951188986, + "noteOrder": 4285, + "time": 0.8836045056320401, "position": { "x": 7, "y": 0 @@ -4531,13 +6923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3397, - "time": 0.7008760951188986, + "noteOrder": 4285, + "time": 0.8836045056320401, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4549,16 +6941,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.7209011264080101, + "noteOrder": 4297, + "time": 0.886107634543179, "position": { "x": 3, "y": 0 @@ -4577,13 +6969,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3494, - "time": 0.7209011264080101, + "noteOrder": 4309, + "time": 0.8886107634543179, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4595,18 +6987,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3519, - "time": 0.7259073842302878, + "noteOrder": 4309, + "time": 0.8886107634543179, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4618,18 +7010,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3543, - "time": 0.7309136420525657, + "noteOrder": 4321, + "time": 0.8911138923654568, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4641,18 +7033,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3567, - "time": 0.7359198998748436, + "noteOrder": 4334, + "time": 0.8936170212765958, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4664,18 +7056,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3592, - "time": 0.7409261576971213, + "noteOrder": 4334, + "time": 0.8936170212765958, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4687,18 +7079,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 157, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3640, - "time": 0.7509386733416771, + "noteOrder": 4346, + "time": 0.8961201501877347, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4710,16 +7102,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3592, - "time": 0.7409261576971213, + "noteOrder": 4346, + "time": 0.8961201501877347, "position": { "x": 7, "y": 0 @@ -4738,13 +7130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 159, "indexInLine": 1, "isSliding": false, - "noteOrder": 3640, - "time": 0.7509386733416771, + "noteOrder": 4370, + "time": 0.9011264080100125, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4756,18 +7148,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3689, - "time": 0.7609511889862328, + "noteOrder": 4382, + "time": 0.9036295369211514, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4779,18 +7171,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3713, - "time": 0.7659574468085106, + "noteOrder": 4382, + "time": 0.9036295369211514, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4807,13 +7199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3786, - "time": 0.7809762202753442, + "noteOrder": 4394, + "time": 0.9061326658322904, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4825,18 +7217,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 3834, - "time": 0.7909887359198998, + "noteOrder": 4419, + "time": 0.9111389236545682, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4853,13 +7245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3786, - "time": 0.7809762202753442, + "noteOrder": 4431, + "time": 0.9136420525657072, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4871,16 +7263,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3834, - "time": 0.7909887359198998, + "noteOrder": 4431, + "time": 0.9136420525657072, "position": { "x": 4, "y": 0 @@ -4894,18 +7286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3883, - "time": 0.8010012515644555, + "noteOrder": 4443, + "time": 0.9161451814768461, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4917,18 +7309,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3907, - "time": 0.8060075093867334, + "noteOrder": 4467, + "time": 0.9211514392991239, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4940,18 +7332,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3980, - "time": 0.8210262828535669, + "noteOrder": 4479, + "time": 0.9236545682102628, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4968,11 +7360,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4028, - "time": 0.8310387984981226, + "noteOrder": 4479, + "time": 0.9236545682102628, "position": { "x": 4, "y": 0 @@ -4991,13 +7383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3980, - "time": 0.8210262828535669, + "noteOrder": 4491, + "time": 0.9261576971214017, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5009,18 +7401,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4028, - "time": 0.8310387984981226, + "noteOrder": 4491, + "time": 0.9261576971214017, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5032,18 +7424,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4077, - "time": 0.8410513141426783, + "noteOrder": 4491, + "time": 0.9261576971214017, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5060,13 +7452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4174, - "time": 0.8610763454317897, + "noteOrder": 4504, + "time": 0.9286608260325406, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5083,11 +7475,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4174, - "time": 0.8610763454317897, + "noteOrder": 4504, + "time": 0.9286608260325406, "position": { "x": 4, "y": 0 @@ -5101,16 +7493,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4271, - "time": 0.881101376720901, + "noteOrder": 4516, + "time": 0.9311639549436795, "position": { "x": 4, "y": 0 @@ -5124,18 +7516,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4271, - "time": 0.881101376720901, + "noteOrder": 4516, + "time": 0.9311639549436795, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5152,11 +7544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4295, - "time": 0.886107634543179, + "noteOrder": 4516, + "time": 0.9311639549436795, "position": { "x": 3, "y": 0 @@ -5175,13 +7567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4320, - "time": 0.8911138923654569, + "noteOrder": 4528, + "time": 0.9336670838548186, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5193,18 +7585,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4368, - "time": 0.9011264080100125, + "noteOrder": 4528, + "time": 0.9336670838548186, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5221,11 +7613,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4392, - "time": 0.9061326658322904, + "noteOrder": 4540, + "time": 0.9361702127659575, "position": { "x": 4, "y": 0 @@ -5244,11 +7636,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4417, - "time": 0.9111389236545682, + "noteOrder": 4540, + "time": 0.9361702127659575, "position": { "x": 3, "y": 0 @@ -5262,18 +7654,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 2, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4441, - "time": 0.9161451814768461, + "noteOrder": 4564, + "time": 0.9411764705882353, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5290,13 +7682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4465, - "time": 0.9211514392991239, + "noteOrder": 4576, + "time": 0.9436795994993742, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5308,18 +7700,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4489, - "time": 0.9261576971214017, + "noteOrder": 4576, + "time": 0.9436795994993742, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5336,13 +7728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4514, - "time": 0.9311639549436795, + "noteOrder": 4589, + "time": 0.9461827284105131, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5354,16 +7746,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4562, - "time": 0.9411764705882352, + "noteOrder": 4613, + "time": 0.951188986232791, "position": { "x": 7, "y": 0 @@ -5377,18 +7769,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 4586, - "time": 0.9461827284105131, + "noteOrder": 4625, + "time": 0.9536921151439299, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5400,18 +7792,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4611, - "time": 0.951188986232791, + "noteOrder": 4625, + "time": 0.9536921151439299, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5429,10 +7821,10 @@ }, { "lineGroupId": 169, - "indexInLine": 2, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4635, - "time": 0.9561952440550687, + "noteOrder": 4637, + "time": 0.9561952440550688, "position": { "x": 6, "y": 0 @@ -5452,10 +7844,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.9712140175219023, + "noteOrder": 4710, + "time": 0.9712140175219024, "position": { "x": 6, "y": 0 @@ -5475,9 +7867,9 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, + "noteOrder": 4734, "time": 0.9762202753441802, "position": { "x": 6, @@ -5498,10 +7890,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.9712140175219023, + "noteOrder": 4710, + "time": 0.9712140175219024, "position": { "x": 4, "y": 0 @@ -5521,9 +7913,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, + "noteOrder": 4734, "time": 0.9762202753441802, "position": { "x": 4, diff --git a/tracks/The Stealer/286_difficulty_1b.json b/tracks/The Stealer/286_difficulty_1b.json index ad588df4..4bca896b 100644 --- a/tracks/The Stealer/286_difficulty_1b.json +++ b/tracks/The Stealer/286_difficulty_1b.json @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 752, - "time": 0.15519399249061328, + "noteOrder": 753, + "time": 0.15519399249061325, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 777, - "time": 0.16020025031289112, + "time": 0.1602002503128911, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 801, - "time": 0.16520650813516893, + "time": 0.16520650813516896, "position": { "x": 6, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 849, + "noteOrder": 850, "time": 0.17521902377972465, "position": { "x": 7, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1019, - "time": 0.21026282853566958, + "noteOrder": 1020, + "time": 0.2102628285356696, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 1068, - "time": 0.22027534418022526, + "time": 0.2202753441802253, "position": { "x": 4, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1068, - "time": 0.22027534418022526, + "time": 0.2202753441802253, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1213, - "time": 0.2503128911138923, + "noteOrder": 1214, + "time": 0.2503128911138924, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.2903629536921151, "position": { "x": 3, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1553, - "time": 0.32040050062578224, + "noteOrder": 1554, + "time": 0.3204005006257822, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1577, - "time": 0.32540675844806005, + "noteOrder": 1578, + "time": 0.3254067584480601, "position": { "x": 3, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1941, - "time": 0.4005006257822277, + "noteOrder": 1942, + "time": 0.4005006257822278, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1966, - "time": 0.40550688360450565, + "noteOrder": 1967, + "time": 0.4055068836045056, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1990, - "time": 0.41051314142678347, + "noteOrder": 1991, + "time": 0.4105131414267835, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2014, - "time": 0.4155193992490613, + "noteOrder": 2015, + "time": 0.41551939924906134, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2064, "time": 0.425531914893617, "position": { "x": 6, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2111, + "noteOrder": 2112, "time": 0.4355444305381727, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2135, - "time": 0.4405506883604505, + "noteOrder": 2136, + "time": 0.4405506883604506, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2160, - "time": 0.44555694618272845, + "noteOrder": 2161, + "time": 0.4455569461827284, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2185, "time": 0.45056320400500627, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 2209, "time": 0.4555694618272841, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.46558197747183977, "position": { "x": 8, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.4755944931163955, "position": { "x": 2, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2330, + "noteOrder": 2331, "time": 0.4806007509386733, "position": { "x": 7, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.48560700876095114, + "noteOrder": 2355, + "time": 0.4856070087609512, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2378, + "noteOrder": 2379, "time": 0.490613266583229, "position": { "x": 3, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2402, - "time": 0.4956195244055069, + "noteOrder": 2404, + "time": 0.49561952440550694, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.5006257822277846, + "noteOrder": 2428, + "time": 0.5006257822277848, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.5056320400500626, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.5106382978723404, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.5156445556946183, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.5206508135168961, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.5256570713391739, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2572, - "time": 0.5306633291614519, + "noteOrder": 2573, + "time": 0.5306633291614518, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.5356695869837297, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2645, - "time": 0.5456821026282853, + "noteOrder": 2646, + "time": 0.5456821026282854, "position": { "x": 2, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 2695, "time": 0.5556946182728411, "position": { "x": 8, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2718, + "noteOrder": 2719, "time": 0.5607008760951189, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2742, - "time": 0.5657071339173967, + "noteOrder": 2743, + "time": 0.5657071339173968, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2766, - "time": 0.5707133917396745, + "noteOrder": 2768, + "time": 0.5707133917396746, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2791, + "noteOrder": 2792, "time": 0.5757196495619524, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2839, - "time": 0.5857321652065081, + "noteOrder": 2841, + "time": 0.5857321652065082, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2889, "time": 0.5957446808510638, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2913, "time": 0.6007509386733417, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2938, "time": 0.6057571964956195, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2961, + "noteOrder": 2962, "time": 0.6107634543178974, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2961, + "noteOrder": 2962, "time": 0.6107634543178974, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 2986, "time": 0.6157697121401752, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 2986, "time": 0.6157697121401752, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3033, - "time": 0.6257822277847309, + "noteOrder": 3035, + "time": 0.625782227784731, "position": { "x": 5, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3082, + "noteOrder": 3083, "time": 0.6357947434292865, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3106, - "time": 0.6408010012515645, + "noteOrder": 3108, + "time": 0.6408010012515644, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3130, - "time": 0.6458072590738423, + "noteOrder": 3132, + "time": 0.6458072590738424, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3155, - "time": 0.6508135168961201, + "noteOrder": 3156, + "time": 0.6508135168961202, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3155, - "time": 0.6508135168961201, + "noteOrder": 3156, + "time": 0.6508135168961202, "position": { "x": 4, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3179, + "noteOrder": 3180, "time": 0.655819774718398, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3179, + "noteOrder": 3180, "time": 0.655819774718398, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3228, - "time": 0.6658322903629537, + "noteOrder": 3229, + "time": 0.6658322903629538, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3276, - "time": 0.6758448060075093, + "noteOrder": 3278, + "time": 0.6758448060075094, "position": { "x": 5, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3325, + "noteOrder": 3326, "time": 0.6858573216520651, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3373, + "noteOrder": 3375, "time": 0.6958698372966208, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3399, "time": 0.7008760951188986, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3422, - "time": 0.7058823529411764, + "noteOrder": 3423, + "time": 0.7058823529411765, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3446, - "time": 0.7108886107634542, + "noteOrder": 3447, + "time": 0.7108886107634543, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3446, - "time": 0.7108886107634542, + "noteOrder": 3447, + "time": 0.7108886107634543, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.7409261576971213, + "noteOrder": 3593, + "time": 0.7409261576971214, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.7409261576971213, + "noteOrder": 3593, + "time": 0.7409261576971214, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3737, + "noteOrder": 3739, "time": 0.7709637046307884, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3786, + "noteOrder": 3787, "time": 0.7809762202753442, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3786, + "noteOrder": 3787, "time": 0.7809762202753442, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.8010012515644555, + "noteOrder": 3884, + "time": 0.8010012515644556, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.8010012515644555, + "noteOrder": 3884, + "time": 0.8010012515644556, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4028, - "time": 0.8310387984981226, + "noteOrder": 4030, + "time": 0.8310387984981227, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4077, - "time": 0.8410513141426783, + "noteOrder": 4079, + "time": 0.8410513141426784, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4077, - "time": 0.8410513141426783, + "noteOrder": 4079, + "time": 0.8410513141426784, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4271, - "time": 0.881101376720901, + "noteOrder": 4273, + "time": 0.8811013767209012, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4297, "time": 0.886107634543179, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.9612015018773467, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4684, - "time": 0.9662077596996246, + "noteOrder": 4686, + "time": 0.9662077596996245, "position": { "x": 3, "y": 0 @@ -1756,10 +1756,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.02002503128911139, + "time": 0.020025031289111386, "position": { "x": 7, "y": 0 @@ -1779,7 +1779,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 170, "time": 0.03504380475594493, @@ -1802,10 +1802,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.04005006257822278, + "time": 0.04005006257822277, "position": { "x": 6, "y": 0 @@ -1825,10 +1825,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, - "time": 0.050062578222778466, + "time": 0.05006257822277847, "position": { "x": 6, "y": 0 @@ -1848,7 +1848,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, "time": 0.060075093867334166, @@ -1871,7 +1871,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 364, "time": 0.07509386733416772, @@ -1894,10 +1894,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 388, - "time": 0.08010012515644556, + "time": 0.08010012515644555, "position": { "x": 4, "y": 0 @@ -1917,7 +1917,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 437, "time": 0.09011264080100126, @@ -1940,10 +1940,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 485, - "time": 0.10012515644555693, + "noteOrder": 486, + "time": 0.10012515644555695, "position": { "x": 7, "y": 0 @@ -1963,7 +1963,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 558, "time": 0.11514392991239049, @@ -1986,9 +1986,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 582, + "noteOrder": 583, "time": 0.12015018773466833, "position": { "x": 6, @@ -2009,7 +2009,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 631, "time": 0.13016270337922403, @@ -2032,9 +2032,9 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 679, + "noteOrder": 680, "time": 0.14017521902377972, "position": { "x": 3, @@ -2055,10 +2055,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 752, - "time": 0.15519399249061328, + "noteOrder": 753, + "time": 0.15519399249061325, "position": { "x": 3, "y": 0 @@ -2078,10 +2078,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 971, - "time": 0.20025031289111386, + "time": 0.2002503128911139, "position": { "x": 7, "y": 0 @@ -2101,10 +2101,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1019, - "time": 0.21026282853566958, + "noteOrder": 1020, + "time": 0.2102628285356696, "position": { "x": 7, "y": 0 @@ -2124,7 +2124,7 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1165, "time": 0.24030037546933666, @@ -2147,10 +2147,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1213, - "time": 0.2503128911138923, + "noteOrder": 1214, + "time": 0.2503128911138924, "position": { "x": 3, "y": 0 @@ -2170,9 +2170,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1359, + "noteOrder": 1360, "time": 0.28035043804755944, "position": { "x": 7, @@ -2193,9 +2193,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.2903629536921151, "position": { "x": 7, @@ -2216,9 +2216,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, + "noteOrder": 1457, "time": 0.30037546933667086, "position": { "x": 6, @@ -2239,10 +2239,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1505, - "time": 0.31038798498122655, + "time": 0.3103879849812265, "position": { "x": 6, "y": 0 @@ -2262,9 +2262,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, + "noteOrder": 1457, "time": 0.30037546933667086, "position": { "x": 4, @@ -2285,10 +2285,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1505, - "time": 0.31038798498122655, + "time": 0.3103879849812265, "position": { "x": 4, "y": 0 @@ -2308,10 +2308,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1602, - "time": 0.33041301627033787, + "time": 0.3304130162703379, "position": { "x": 4, "y": 0 @@ -2331,9 +2331,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1626, + "noteOrder": 1627, "time": 0.3354192740926158, "position": { "x": 4, @@ -2354,10 +2354,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1602, - "time": 0.33041301627033787, + "time": 0.3304130162703379, "position": { "x": 6, "y": 0 @@ -2377,9 +2377,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1626, + "noteOrder": 1627, "time": 0.3354192740926158, "position": { "x": 6, @@ -2400,9 +2400,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1650, + "noteOrder": 1651, "time": 0.3404255319148936, "position": { "x": 3, @@ -2422,11 +2422,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.3504380475594493, + "noteOrder": 1675, + "time": 0.3454317897371715, "position": { "x": 3, "y": 0 @@ -2440,18 +2440,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1747, - "time": 0.36045056320400504, + "noteOrder": 1675, + "time": 0.3454317897371715, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2468,13 +2468,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1796, - "time": 0.37046307884856067, + "noteOrder": 1699, + "time": 0.3504380475594493, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2486,18 +2486,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1844, - "time": 0.3804755944931164, + "noteOrder": 1699, + "time": 0.3504380475594493, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2514,13 +2514,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1893, - "time": 0.3904881101376721, + "noteOrder": 1699, + "time": 0.3504380475594493, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2537,13 +2537,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2038, - "time": 0.42052565707133915, + "noteOrder": 1724, + "time": 0.35544430538172717, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2560,13 +2560,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2063, - "time": 0.425531914893617, + "noteOrder": 1724, + "time": 0.35544430538172717, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2583,36 +2583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2087, - "time": 0.43053817271589484, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2111, - "time": 0.4355444305381727, + "noteOrder": 1748, + "time": 0.36045056320400504, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2624,18 +2601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2233, - "time": 0.46057571964956195, + "noteOrder": 1748, + "time": 0.36045056320400504, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2652,13 +2629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 2257, - "time": 0.46558197747183977, + "noteOrder": 1748, + "time": 0.36045056320400504, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2670,18 +2647,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2281, - "time": 0.4705882352941176, + "noteOrder": 1772, + "time": 0.36545682102628285, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2698,11 +2675,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2305, - "time": 0.4755944931163955, + "noteOrder": 1772, + "time": 0.36545682102628285, "position": { "x": 4, "y": 0 @@ -2721,11 +2698,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2621, - "time": 0.5406758448060075, + "noteOrder": 1797, + "time": 0.3704630788485607, "position": { "x": 4, "y": 0 @@ -2744,13 +2721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2645, - "time": 0.5456821026282853, + "noteOrder": 1797, + "time": 0.3704630788485607, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2767,13 +2744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2669, - "time": 0.5506883604505632, + "noteOrder": 1797, + "time": 0.3704630788485607, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2790,13 +2767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2694, - "time": 0.5556946182728411, + "noteOrder": 1821, + "time": 0.37546933667083854, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2813,13 +2790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2815, - "time": 0.5807259073842302, + "noteOrder": 1821, + "time": 0.37546933667083854, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2831,18 +2808,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2912, - "time": 0.6007509386733417, + "noteOrder": 1845, + "time": 0.3804755944931164, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2854,18 +2831,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3009, - "time": 0.6207759699624531, + "noteOrder": 1845, + "time": 0.3804755944931164, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2882,13 +2859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 3106, - "time": 0.6408010012515645, + "noteOrder": 1845, + "time": 0.3804755944931164, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2900,16 +2877,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3203, - "time": 0.6608260325406757, + "noteOrder": 1869, + "time": 0.3854818523153942, "position": { "x": 3, "y": 0 @@ -2928,13 +2905,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3300, - "time": 0.6808510638297872, + "noteOrder": 1869, + "time": 0.3854818523153942, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2951,11 +2928,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3300, - "time": 0.6808510638297872, + "noteOrder": 1894, + "time": 0.3904881101376721, "position": { "x": 7, "y": 0 @@ -2974,11 +2951,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3397, - "time": 0.7008760951188986, + "noteOrder": 1918, + "time": 0.3954943679599499, "position": { "x": 7, "y": 0 @@ -2997,13 +2974,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3470, - "time": 0.7158948685857321, + "noteOrder": 1918, + "time": 0.3954943679599499, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3015,18 +2992,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.7209011264080101, + "noteOrder": 2039, + "time": 0.4205256570713392, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3038,16 +3015,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3470, - "time": 0.7158948685857321, + "noteOrder": 2064, + "time": 0.425531914893617, "position": { "x": 7, "y": 0 @@ -3066,13 +3043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.7209011264080101, + "noteOrder": 2088, + "time": 0.4305381727158949, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3084,18 +3061,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3689, - "time": 0.7609511889862328, + "noteOrder": 2112, + "time": 0.4355444305381727, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3107,18 +3084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3737, - "time": 0.7709637046307884, + "noteOrder": 2234, + "time": 0.46057571964956195, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3135,13 +3112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3980, - "time": 0.8210262828535669, + "noteOrder": 2258, + "time": 0.46558197747183977, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3153,18 +3130,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 4028, - "time": 0.8310387984981226, + "noteOrder": 2282, + "time": 0.47058823529411764, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3181,13 +3158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4174, - "time": 0.8610763454317897, + "noteOrder": 2306, + "time": 0.4755944931163955, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3199,18 +3176,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 73, "indexInLine": 1, "isSliding": false, - "noteOrder": 4222, - "time": 0.8710888610763454, + "noteOrder": 2622, + "time": 0.5406758448060075, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3222,18 +3199,731 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4174, - "time": 0.8610763454317897, + "noteOrder": 2646, + "time": 0.5456821026282854, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2671, + "time": 0.5506883604505631, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2695, + "time": 0.5556946182728411, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2816, + "time": 0.5807259073842302, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2913, + "time": 0.6007509386733417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3010, + "time": 0.620775969962453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3108, + "time": 0.6408010012515644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3205, + "time": 0.6608260325406758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3302, + "time": 0.6808510638297872, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3302, + "time": 0.6808510638297872, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3399, + "time": 0.7008760951188986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3472, + "time": 0.7158948685857321, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3496, + "time": 0.7209011264080101, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3472, + "time": 0.7158948685857321, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3496, + "time": 0.7209011264080101, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3690, + "time": 0.7609511889862328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3739, + "time": 0.7709637046307884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3982, + "time": 0.821026282853567, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4030, + "time": 0.8310387984981227, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4176, + "time": 0.8610763454317898, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4224, + "time": 0.8710888610763454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4176, + "time": 0.8610763454317898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4224, + "time": 0.8710888610763454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4321, + "time": 0.8911138923654568, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4346, + "time": 0.8961201501877347, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4321, + "time": 0.8911138923654568, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4346, + "time": 0.8961201501877347, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4370, + "time": 0.9011264080100125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4394, + "time": 0.9061326658322904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4394, + "time": 0.9061326658322904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4419, + "time": 0.9111389236545682, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4419, + "time": 0.9111389236545682, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3245,18 +3935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 4222, - "time": 0.8710888610763454, + "noteOrder": 4419, + "time": 0.9111389236545682, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3273,13 +3963,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4320, - "time": 0.8911138923654569, + "noteOrder": 4443, + "time": 0.9161451814768461, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3291,16 +3981,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4344, - "time": 0.8961201501877346, + "noteOrder": 4443, + "time": 0.9161451814768461, "position": { "x": 6, "y": 0 @@ -3314,18 +4004,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4320, - "time": 0.8911138923654569, + "noteOrder": 4467, + "time": 0.9211514392991239, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3342,13 +4032,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4344, - "time": 0.8961201501877346, + "noteOrder": 4467, + "time": 0.9211514392991239, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3365,11 +4055,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4368, - "time": 0.9011264080100125, + "noteOrder": 4467, + "time": 0.9211514392991239, "position": { "x": 7, "y": 0 @@ -3388,11 +4078,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4417, - "time": 0.9111389236545682, + "noteOrder": 4491, + "time": 0.9261576971214017, "position": { "x": 7, "y": 0 @@ -3406,18 +4096,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4465, - "time": 0.9211514392991239, + "noteOrder": 4491, + "time": 0.9261576971214017, "position": { - "x": 7, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4516, + "time": 0.9311639549436795, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4516, + "time": 0.9311639549436795, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3435,9 +4171,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4514, + "noteOrder": 4516, "time": 0.9311639549436795, "position": { "x": 7, @@ -3456,12 +4192,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4540, + "time": 0.9361702127659575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4540, + "time": 0.9361702127659575, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4564, + "time": 0.9411764705882353, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4564, + "time": 0.9411764705882353, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4564, + "time": 0.9411764705882353, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4562, - "time": 0.9411764705882352, + "noteOrder": 4589, + "time": 0.9461827284105131, "position": { "x": 7, "y": 0 @@ -3479,11 +4330,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4589, + "time": 0.9461827284105131, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4611, + "noteOrder": 4613, "time": 0.951188986232791, "position": { "x": 3, @@ -3502,12 +4376,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4637, + "time": 0.9561952440550688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4637, + "time": 0.9561952440550688, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.9712140175219023, + "noteOrder": 4710, + "time": 0.9712140175219024, "position": { "x": 6, "y": 0 @@ -3527,9 +4447,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, + "noteOrder": 4734, "time": 0.9762202753441802, "position": { "x": 6, @@ -3550,10 +4470,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.9712140175219023, + "noteOrder": 4710, + "time": 0.9712140175219024, "position": { "x": 4, "y": 0 @@ -3573,9 +4493,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, + "noteOrder": 4734, "time": 0.9762202753441802, "position": { "x": 4, diff --git a/tracks/The Stealer/info.json b/tracks/The Stealer/info.json index 825a1958..017f9f88 100644 --- a/tracks/The Stealer/info.json +++ b/tracks/The Stealer/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "The Stealer", - "SongLength": "114.468571", + "SongLength": "104.515918", "SongAuthorName": "THE BOYZ", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Touch My Body/363_difficulty_1a.json b/tracks/Touch My Body/363_difficulty_1a.json index 5d6d05da..ce84b0ff 100644 --- a/tracks/Touch My Body/363_difficulty_1a.json +++ b/tracks/Touch My Body/363_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 218, - "time": 0.02980440856876746, + "time": 0.029804408568767465, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 266, - "time": 0.03642761047293801, + "time": 0.036427610472938014, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 314, - "time": 0.043050812377108554, + "time": 0.04305081237710856, "position": { "x": 6, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 338, - "time": 0.04636241332919383, + "noteOrder": 339, + "time": 0.04636241332919384, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 363, - "time": 0.0496740142812791, + "time": 0.04967401428127911, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 387, - "time": 0.052985615233364376, + "time": 0.05298561523336438, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 411, - "time": 0.056297216185449646, + "time": 0.05629721618544966, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 435, - "time": 0.05960881713753492, + "time": 0.05960881713753493, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 459, - "time": 0.06292041808962019, + "time": 0.0629204180896202, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 483, + "noteOrder": 484, "time": 0.06623201904170548, "position": { "x": 7, @@ -234,7 +234,7 @@ }, { "noteOrder": 508, - "time": 0.06954361999379075, + "time": 0.06954361999379076, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 532, - "time": 0.07285522094587601, + "time": 0.07285522094587603, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 556, - "time": 0.0761668218979613, + "time": 0.07616682189796131, "position": { "x": 4, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 604, - "time": 0.08279002380213182, + "noteOrder": 605, + "time": 0.08279002380213184, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 653, - "time": 0.08941322570630238, + "time": 0.08941322570630239, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 677, - "time": 0.09272482665838766, + "time": 0.09272482665838767, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 689, - "time": 0.09438062713443028, + "time": 0.09438062713443031, "position": { "x": 5, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 701, - "time": 0.09603642761047293, + "time": 0.09603642761047294, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 713, - "time": 0.09769222808651556, + "time": 0.09769222808651558, "position": { "x": 5, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 725, - "time": 0.0993480285625582, + "time": 0.09934802856255821, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 737, - "time": 0.10100382903860083, + "noteOrder": 738, + "time": 0.10100382903860086, "position": { "x": 5, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 749, - "time": 0.10265962951464348, + "noteOrder": 750, + "time": 0.1026596295146435, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 761, - "time": 0.1043154299906861, + "noteOrder": 762, + "time": 0.10431542999068613, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1039, - "time": 0.14239884093966676, + "noteOrder": 1040, + "time": 0.1423988409396668, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1136, - "time": 0.15564524474800784, + "noteOrder": 1137, + "time": 0.1556452447480079, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1426, - "time": 0.19538445617303113, + "noteOrder": 1427, + "time": 0.19538445617303116, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1523, - "time": 0.2086308599813722, + "time": 0.20863085998137226, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1547, - "time": 0.2119424609334575, + "noteOrder": 1548, + "time": 0.21194246093345753, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.21525406188554277, + "noteOrder": 1572, + "time": 0.2152540618855428, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1595, - "time": 0.21856566283762804, + "noteOrder": 1596, + "time": 0.2185656628376281, "position": { "x": 5, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1620, - "time": 0.2218772637897133, + "time": 0.22187726378971337, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1861, - "time": 0.25499327331056604, + "noteOrder": 1862, + "time": 0.2549932733105661, "position": { "x": 4, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1910, - "time": 0.2616164752147366, + "time": 0.26161647521473663, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1958, + "noteOrder": 1959, "time": 0.26823967711890717, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1982, - "time": 0.2715512780709924, + "noteOrder": 1983, + "time": 0.27155127807099244, "position": { "x": 5, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2006, - "time": 0.2748628790230777, + "noteOrder": 2007, + "time": 0.27486287902307777, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 2031, - "time": 0.278174479975163, + "time": 0.27817447997516304, "position": { "x": 3, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 2055, - "time": 0.2814860809272482, + "time": 0.2814860809272483, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2079, - "time": 0.2847976818793335, + "noteOrder": 2080, + "time": 0.2847976818793336, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2103, - "time": 0.2881092828314188, + "noteOrder": 2104, + "time": 0.28810928283141884, "position": { "x": 5, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2248, - "time": 0.3079788885439304, + "noteOrder": 2249, + "time": 0.3079788885439305, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2272, - "time": 0.3112904894960157, + "noteOrder": 2273, + "time": 0.3112904894960158, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2345, - "time": 0.3212252923522715, + "noteOrder": 2346, + "time": 0.3212252923522716, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2369, - "time": 0.3245368933043568, + "noteOrder": 2370, + "time": 0.32453689330435687, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2393, - "time": 0.3278484942564421, + "noteOrder": 2394, + "time": 0.32784849425644214, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2417, - "time": 0.3311600952085273, + "noteOrder": 2418, + "time": 0.33116009520852735, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.3344716961606126, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2466, - "time": 0.3377832971126979, + "noteOrder": 2467, + "time": 0.33778329711269794, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2490, - "time": 0.34109489806478316, + "noteOrder": 2491, + "time": 0.3410948980647832, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2732, - "time": 0.3742109075856359, + "noteOrder": 2733, + "time": 0.37421090758563597, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.3775225085377211, + "noteOrder": 2757, + "time": 0.37752250853772124, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2780, - "time": 0.38083410948980645, + "noteOrder": 2781, + "time": 0.3808341094898065, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2804, - "time": 0.3841457104418917, + "noteOrder": 2805, + "time": 0.3841457104418918, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2828, - "time": 0.387457311393977, + "noteOrder": 2829, + "time": 0.38745731139397704, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2852, - "time": 0.39076891234606226, + "noteOrder": 2853, + "time": 0.3907689123460623, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2877, - "time": 0.39408051329814753, + "noteOrder": 2878, + "time": 0.3940805132981476, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2925, - "time": 0.4007037152023181, + "noteOrder": 2926, + "time": 0.4007037152023182, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2949, - "time": 0.40401531615440334, + "noteOrder": 2950, + "time": 0.40401531615440345, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2973, - "time": 0.4073269171064886, + "noteOrder": 2974, + "time": 0.4073269171064887, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2997, - "time": 0.41063851805857393, + "noteOrder": 2999, + "time": 0.410638518058574, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.41395011901065915, + "noteOrder": 3023, + "time": 0.41395011901065926, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3046, - "time": 0.4172617199627444, + "noteOrder": 3047, + "time": 0.4172617199627445, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3070, - "time": 0.42057332091482974, + "noteOrder": 3071, + "time": 0.4205733209148298, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3118, - "time": 0.4271965228190003, + "noteOrder": 3120, + "time": 0.42719652281900033, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3167, - "time": 0.4338197247231708, + "noteOrder": 3168, + "time": 0.43381972472317093, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3191, - "time": 0.4371313256752561, + "noteOrder": 3192, + "time": 0.4371313256752562, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3215, - "time": 0.44044292662734136, + "noteOrder": 3216, + "time": 0.44044292662734147, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3239, - "time": 0.4437545275794266, + "noteOrder": 3240, + "time": 0.44375452757942674, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3263, - "time": 0.44706612853151195, + "noteOrder": 3265, + "time": 0.447066128531512, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3312, - "time": 0.45368933043568244, + "noteOrder": 3313, + "time": 0.45368933043568255, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3361, "time": 0.46031253233985303, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3505, - "time": 0.48018213805236465, + "noteOrder": 3506, + "time": 0.4801821380523647, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3529, - "time": 0.4834937390044499, + "noteOrder": 3531, + "time": 0.48349373900445, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3553, - "time": 0.4868053399565352, + "noteOrder": 3555, + "time": 0.48680533995653524, "position": { "x": 3, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.4934285418607057, + "noteOrder": 3603, + "time": 0.4934285418607058, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.496740142812791, + "noteOrder": 3627, + "time": 0.49674014281279105, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.5000517437648763, + "noteOrder": 3652, + "time": 0.5000517437648764, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3674, - "time": 0.5033633447169615, + "noteOrder": 3676, + "time": 0.5033633447169616, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3698, - "time": 0.5066749456690468, + "noteOrder": 3700, + "time": 0.5066749456690469, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.5099865466211321, + "noteOrder": 3724, + "time": 0.5099865466211322, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.5132981475732173, + "noteOrder": 3748, + "time": 0.5132981475732175, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3797, "time": 0.519921349477388, "position": { "x": 6, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3819, - "time": 0.5232329504294732, + "noteOrder": 3821, + "time": 0.5232329504294733, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.5265445513815584, + "noteOrder": 3845, + "time": 0.5265445513815585, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3892, + "noteOrder": 3893, "time": 0.5331677532857291, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 3918, "time": 0.5364793542378143, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3940, - "time": 0.5397909551898995, + "noteOrder": 3942, + "time": 0.5397909551898996, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3989, - "time": 0.54641415709407, + "noteOrder": 3990, + "time": 0.5464141570940702, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4013, - "time": 0.5497257580461554, + "noteOrder": 4014, + "time": 0.5497257580461555, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4037, + "noteOrder": 4038, "time": 0.5530373589982407, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4061, - "time": 0.556348959950326, + "noteOrder": 4063, + "time": 0.5563489599503261, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.5596605609024112, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4109, - "time": 0.5629721618544964, + "noteOrder": 4111, + "time": 0.5629721618544966, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4134, - "time": 0.5662837628065817, + "noteOrder": 4135, + "time": 0.5662837628065818, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.5894649694711787, + "noteOrder": 4304, + "time": 0.5894649694711788, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4327, - "time": 0.5927765704232639, + "noteOrder": 4329, + "time": 0.592776570423264, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.6027113732795197, + "noteOrder": 4401, + "time": 0.6027113732795198, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4424, + "noteOrder": 4425, "time": 0.6060229742316051, "position": { "x": 4, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4714, - "time": 0.6457621856566284, + "noteOrder": 4716, + "time": 0.6457621856566285, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4810, - "time": 0.6590085894649693, + "noteOrder": 4812, + "time": 0.6590085894649695, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.66563179136914, + "noteOrder": 4861, + "time": 0.6656317913691401, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.6689433923212252, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4907, - "time": 0.6722549932733105, + "noteOrder": 4909, + "time": 0.6722549932733106, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5342, - "time": 0.7318638104108454, + "noteOrder": 5344, + "time": 0.7318638104108456, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5391, - "time": 0.7384870123150159, + "noteOrder": 5393, + "time": 0.7384870123150161, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5511, - "time": 0.7550450170754422, + "noteOrder": 5514, + "time": 0.7550450170754425, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5523, - "time": 0.756700817551485, + "noteOrder": 5526, + "time": 0.7567008175514851, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5656, - "time": 0.774914622787954, + "noteOrder": 5659, + "time": 0.7749146227879541, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6019, + "noteOrder": 6021, "time": 0.8245886370692331, "position": { "x": 6, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6067, - "time": 0.8312118389734036, + "noteOrder": 6070, + "time": 0.8312118389734037, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6212, - "time": 0.8510814446859152, + "noteOrder": 6215, + "time": 0.8510814446859154, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6237, - "time": 0.8543930456380006, + "noteOrder": 6239, + "time": 0.8543930456380007, "position": { "x": 3, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6261, - "time": 0.8577046465900858, + "noteOrder": 6263, + "time": 0.8577046465900859, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6309, - "time": 0.8643278484942564, + "noteOrder": 6312, + "time": 0.8643278484942565, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6333, - "time": 0.8676394494463416, + "noteOrder": 6336, + "time": 0.8676394494463419, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6357, - "time": 0.8709510503984269, + "noteOrder": 6360, + "time": 0.870951050398427, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6575, - "time": 0.9007554589671943, + "noteOrder": 6578, + "time": 0.9007554589671946, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6599, - "time": 0.9040670599192796, + "noteOrder": 6602, + "time": 0.9040670599192798, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6623, - "time": 0.9073786608713649, + "noteOrder": 6626, + "time": 0.9073786608713651, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6648, - "time": 0.9106902618234501, + "noteOrder": 6650, + "time": 0.9106902618234504, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6696, - "time": 0.9173134637276208, + "noteOrder": 6698, + "time": 0.9173134637276209, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 6723, "time": 0.9206250646797061, "position": { "x": 2, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6744, - "time": 0.9239366656317912, + "noteOrder": 6747, + "time": 0.9239366656317914, "position": { "x": 7, "y": 0 @@ -2496,10 +2496,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.026492807616682188, + "time": 0.02649280761668219, "position": { "x": 7, "y": 0 @@ -2519,10 +2519,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.03973921142502328, + "time": 0.03973921142502329, "position": { "x": 4, "y": 0 @@ -2542,10 +2542,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.03973921142502328, + "time": 0.03973921142502329, "position": { "x": 3, "y": 0 @@ -2565,10 +2565,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 387, - "time": 0.052985615233364376, + "time": 0.05298561523336438, "position": { "x": 6, "y": 0 @@ -2588,10 +2588,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, - "time": 0.07947842285004655, + "time": 0.07947842285004658, "position": { "x": 3, "y": 0 @@ -2611,10 +2611,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 604, - "time": 0.08279002380213182, + "noteOrder": 605, + "time": 0.08279002380213184, "position": { "x": 3, "y": 0 @@ -2634,10 +2634,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 628, - "time": 0.08610162475421711, + "noteOrder": 629, + "time": 0.08610162475421712, "position": { "x": 7, "y": 0 @@ -2657,10 +2657,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 653, - "time": 0.08941322570630238, + "time": 0.08941322570630239, "position": { "x": 7, "y": 0 @@ -2680,10 +2680,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.10597123046672875, + "time": 0.10597123046672877, "position": { "x": 7, "y": 0 @@ -2703,10 +2703,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 870, - "time": 0.11921763427506984, + "noteOrder": 871, + "time": 0.11921763427506986, "position": { "x": 7, "y": 0 @@ -2726,7 +2726,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 967, "time": 0.13246403808341095, @@ -2748,11 +2748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 991, - "time": 0.1357756390354962, + "noteOrder": 979, + "time": 0.13411983855945359, "position": { "x": 3, "y": 0 @@ -2766,18 +2766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1015, - "time": 0.1390872399875815, + "noteOrder": 979, + "time": 0.13411983855945359, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2794,13 +2794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1064, - "time": 0.14571044189175203, + "noteOrder": 991, + "time": 0.13577563903549622, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2817,13 +2817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1064, - "time": 0.14571044189175203, + "noteOrder": 991, + "time": 0.13577563903549622, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2835,18 +2835,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1088, - "time": 0.1490220428438373, + "noteOrder": 991, + "time": 0.13577563903549622, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2858,18 +2858,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1112, - "time": 0.1523336437959226, + "noteOrder": 1004, + "time": 0.13743143951153888, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2886,13 +2886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1160, - "time": 0.1589568457000931, + "noteOrder": 1004, + "time": 0.13743143951153888, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2909,13 +2909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1160, - "time": 0.1589568457000931, + "noteOrder": 1016, + "time": 0.13908723998758152, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2927,18 +2927,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1184, - "time": 0.1622684466521784, + "noteOrder": 1016, + "time": 0.13908723998758152, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2955,13 +2955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1209, - "time": 0.16558004760426365, + "noteOrder": 1016, + "time": 0.13908723998758152, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2978,13 +2978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1233, - "time": 0.16889164855634894, + "noteOrder": 1064, + "time": 0.14571044189175206, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2996,16 +2996,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 5, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1305, - "time": 0.17882645141260475, + "noteOrder": 1064, + "time": 0.14571044189175206, "position": { "x": 7, "y": 0 @@ -3024,13 +3024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1257, - "time": 0.17220324950843421, + "noteOrder": 1076, + "time": 0.1473662423677947, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3042,18 +3042,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, + "lineGroupId": 40, "indexInLine": 3, "isSliding": false, - "noteOrder": 1305, - "time": 0.17882645141260475, + "noteOrder": 1076, + "time": 0.1473662423677947, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3065,18 +3065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1354, - "time": 0.18544965331677532, + "noteOrder": 1088, + "time": 0.14902204284383733, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3088,18 +3088,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1378, - "time": 0.18876125426886056, + "noteOrder": 1088, + "time": 0.14902204284383733, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3111,18 +3111,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1378, - "time": 0.18876125426886056, + "noteOrder": 1088, + "time": 0.14902204284383733, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3134,18 +3134,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1402, - "time": 0.19207285522094586, + "noteOrder": 1100, + "time": 0.15067784331987996, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3157,18 +3157,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1402, - "time": 0.19207285522094586, + "noteOrder": 1100, + "time": 0.15067784331987996, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3185,13 +3185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1450, - "time": 0.1986960571251164, + "noteOrder": 1112, + "time": 0.15233364379592262, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3208,13 +3208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1450, - "time": 0.1986960571251164, + "noteOrder": 1112, + "time": 0.15233364379592262, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3226,16 +3226,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 1475, - "time": 0.20200765807720167, + "noteOrder": 1112, + "time": 0.15233364379592262, "position": { "x": 7, "y": 0 @@ -3254,13 +3254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1475, - "time": 0.20200765807720167, + "noteOrder": 1161, + "time": 0.15895684570009316, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3272,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 1499, - "time": 0.20531925902928697, + "noteOrder": 1161, + "time": 0.15895684570009316, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3300,13 +3300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1499, - "time": 0.20531925902928697, + "noteOrder": 1173, + "time": 0.1606126461761358, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3318,18 +3318,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1547, - "time": 0.2119424609334575, + "noteOrder": 1173, + "time": 0.1606126461761358, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3341,18 +3341,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1740, - "time": 0.2384352685501397, + "noteOrder": 1185, + "time": 0.16226844665217843, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3364,18 +3364,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1765, - "time": 0.24174686950222496, + "noteOrder": 1185, + "time": 0.16226844665217843, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3387,18 +3387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1765, - "time": 0.24174686950222496, + "noteOrder": 1185, + "time": 0.16226844665217843, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3410,18 +3410,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1789, - "time": 0.24505847045431023, + "noteOrder": 1197, + "time": 0.16392424712822107, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3433,16 +3433,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1789, - "time": 0.24505847045431023, + "noteOrder": 1197, + "time": 0.16392424712822107, "position": { "x": 5, "y": 0 @@ -3461,11 +3461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1813, - "time": 0.2483700714063955, + "noteOrder": 1209, + "time": 0.16558004760426367, "position": { "x": 5, "y": 0 @@ -3484,13 +3484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1813, - "time": 0.2483700714063955, + "noteOrder": 1209, + "time": 0.16558004760426367, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3502,18 +3502,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 1837, - "time": 0.25168167235848077, + "noteOrder": 1209, + "time": 0.16558004760426367, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3530,36 +3530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1837, - "time": 0.25168167235848077, - "position": { - "x": 5, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1861, - "time": 0.25499327331056604, + "noteOrder": 1221, + "time": 0.1672358480803063, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3571,18 +3548,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1885, - "time": 0.2583048742626513, + "noteOrder": 1221, + "time": 0.1672358480803063, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3599,13 +3576,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1910, - "time": 0.2616164752147366, + "noteOrder": 1233, + "time": 0.16889164855634897, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3622,13 +3599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1934, - "time": 0.2649280761668219, + "noteOrder": 1233, + "time": 0.16889164855634897, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3640,18 +3617,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1958, - "time": 0.26823967711890717, + "noteOrder": 1233, + "time": 0.16889164855634897, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3668,13 +3645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 47, "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.26989547759494975, + "noteOrder": 1245, + "time": 0.1705474490323916, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3691,13 +3668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 47, "indexInLine": 3, "isSliding": false, - "noteOrder": 1982, - "time": 0.2715512780709924, + "noteOrder": 1245, + "time": 0.1705474490323916, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3714,13 +3691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 47, "indexInLine": 4, "isSliding": false, - "noteOrder": 2006, - "time": 0.2748628790230777, + "noteOrder": 1257, + "time": 0.17220324950843424, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3737,13 +3714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 47, "indexInLine": 5, "isSliding": false, - "noteOrder": 2031, - "time": 0.278174479975163, + "noteOrder": 1257, + "time": 0.17220324950843424, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3760,11 +3737,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2127, - "time": 0.29142088378350406, + "noteOrder": 1270, + "time": 0.17385904998447688, "position": { "x": 7, "y": 0 @@ -3778,18 +3755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2151, - "time": 0.29473248473558933, + "noteOrder": 1270, + "time": 0.17385904998447688, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3806,13 +3783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2176, - "time": 0.2980440856876746, + "noteOrder": 1282, + "time": 0.1755148504605195, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3824,16 +3801,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2200, - "time": 0.30135568663975987, + "noteOrder": 1282, + "time": 0.1755148504605195, "position": { "x": 7, "y": 0 @@ -3852,11 +3829,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 10, "isSliding": false, - "noteOrder": 2224, - "time": 0.3046672875918452, + "noteOrder": 1306, + "time": 0.17882645141260478, "position": { "x": 7, "y": 0 @@ -3870,18 +3847,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2296, - "time": 0.314602090448101, + "noteOrder": 1257, + "time": 0.17220324950843424, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3893,18 +3870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2321, - "time": 0.3179136914001862, + "noteOrder": 1270, + "time": 0.17385904998447688, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3921,11 +3898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2345, - "time": 0.3212252923522715, + "noteOrder": 1270, + "time": 0.17385904998447688, "position": { "x": 4, "y": 0 @@ -3944,13 +3921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 2, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2357, - "time": 0.3228810928283142, + "noteOrder": 1282, + "time": 0.1755148504605195, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3967,11 +3944,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 3, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2369, - "time": 0.3245368933043568, + "noteOrder": 1282, + "time": 0.1755148504605195, "position": { "x": 3, "y": 0 @@ -3990,11 +3967,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 4, + "lineGroupId": 48, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2393, - "time": 0.3278484942564421, + "noteOrder": 1306, + "time": 0.17882645141260478, "position": { "x": 3, "y": 0 @@ -4013,13 +3990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 5, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2417, - "time": 0.3311600952085273, + "noteOrder": 1354, + "time": 0.18544965331677535, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4036,13 +4013,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2707, - "time": 0.37089930663355064, + "noteOrder": 1378, + "time": 0.18876125426886062, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4059,13 +4036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 2804, - "time": 0.3841457104418917, + "noteOrder": 1378, + "time": 0.18876125426886062, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4077,18 +4054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2901, - "time": 0.3973921142502328, + "noteOrder": 1403, + "time": 0.1920728552209459, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4105,13 +4082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 2997, - "time": 0.41063851805857393, + "noteOrder": 1403, + "time": 0.1920728552209459, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4123,18 +4100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3094, - "time": 0.423884921866915, + "noteOrder": 1451, + "time": 0.19869605712511643, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4151,13 +4128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 3118, - "time": 0.4271965228190003, + "noteOrder": 1451, + "time": 0.19869605712511643, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4169,16 +4146,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3142, - "time": 0.43050812377108555, + "noteOrder": 1475, + "time": 0.20200765807720172, "position": { "x": 7, "y": 0 @@ -4197,13 +4174,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 3167, - "time": 0.4338197247231708, + "noteOrder": 1475, + "time": 0.20200765807720172, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4215,16 +4192,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3288, - "time": 0.45037772948359717, + "noteOrder": 1499, + "time": 0.205319259029287, "position": { "x": 7, "y": 0 @@ -4238,16 +4215,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 3312, - "time": 0.45368933043568244, + "noteOrder": 1499, + "time": 0.205319259029287, "position": { "x": 6, "y": 0 @@ -4266,11 +4243,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3336, - "time": 0.45700093138776776, + "noteOrder": 1548, + "time": 0.21194246093345753, "position": { "x": 3, "y": 0 @@ -4284,18 +4261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 3360, - "time": 0.46031253233985303, + "noteOrder": 1741, + "time": 0.23843526855013972, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4307,18 +4284,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.4768705371002794, + "noteOrder": 1765, + "time": 0.241746869502225, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4335,13 +4312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 67, "indexInLine": 1, "isSliding": false, - "noteOrder": 3578, - "time": 0.49011694090862046, + "noteOrder": 1765, + "time": 0.241746869502225, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4353,18 +4330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3578, - "time": 0.49011694090862046, + "noteOrder": 1789, + "time": 0.24505847045431026, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4381,13 +4358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 3674, - "time": 0.5033633447169615, + "noteOrder": 1789, + "time": 0.24505847045431026, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4399,18 +4376,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3771, - "time": 0.5166097485253026, + "noteOrder": 1814, + "time": 0.24837007140639553, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4427,11 +4404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5298561523336438, + "noteOrder": 1814, + "time": 0.24837007140639553, "position": { "x": 5, "y": 0 @@ -4445,18 +4422,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3868, - "time": 0.5298561523336438, + "noteOrder": 1838, + "time": 0.2516816723584808, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4473,13 +4450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 3892, - "time": 0.5331677532857291, + "noteOrder": 1838, + "time": 0.2516816723584808, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4491,18 +4468,3422 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 70, "indexInLine": 2, "isSliding": false, - "noteOrder": 3916, - "time": 0.5364793542378143, + "noteOrder": 1862, + "time": 0.2549932733105661, "position": { - "x": 5, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1886, + "time": 0.25830487426265136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1910, + "time": 0.26161647521473663, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1935, + "time": 0.2649280761668219, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1959, + "time": 0.26823967711890717, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1971, + "time": 0.2698954775949498, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1983, + "time": 0.27155127807099244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2007, + "time": 0.27486287902307777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2031, + "time": 0.27817447997516304, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2128, + "time": 0.2914208837835041, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2140, + "time": 0.29307668425954675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2140, + "time": 0.29307668425954675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2152, + "time": 0.2947324847355894, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2152, + "time": 0.2947324847355894, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2152, + "time": 0.2947324847355894, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2164, + "time": 0.296388285211632, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2164, + "time": 0.296388285211632, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2176, + "time": 0.29804408568767465, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2176, + "time": 0.29804408568767465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2176, + "time": 0.29804408568767465, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2188, + "time": 0.2996998861637173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2188, + "time": 0.2996998861637173, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2201, + "time": 0.3013556866397599, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2201, + "time": 0.3013556866397599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2201, + "time": 0.3013556866397599, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2213, + "time": 0.30301148711580256, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2213, + "time": 0.30301148711580256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2225, + "time": 0.30466728759184525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2225, + "time": 0.30466728759184525, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2225, + "time": 0.30466728759184525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3063230880678878, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3063230880678878, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3079788885439305, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2249, + "time": 0.3079788885439305, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2297, + "time": 0.31460209044810106, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2309, + "time": 0.31625789092414364, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2309, + "time": 0.31625789092414364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2321, + "time": 0.3179136914001863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2321, + "time": 0.3179136914001863, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2321, + "time": 0.3179136914001863, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2346, + "time": 0.3212252923522716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2358, + "time": 0.32288109282831423, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2370, + "time": 0.32453689330435687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2394, + "time": 0.32784849425644214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2418, + "time": 0.33116009520852735, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2708, + "time": 0.3708993066335507, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2805, + "time": 0.3841457104418918, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2902, + "time": 0.39739211425023285, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2999, + "time": 0.410638518058574, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3095, + "time": 0.42388492186691507, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3120, + "time": 0.42719652281900033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3144, + "time": 0.4305081237710856, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3168, + "time": 0.43381972472317093, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3289, + "time": 0.4503777294835973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3313, + "time": 0.45368933043568255, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3337, + "time": 0.4570009313877678, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3361, + "time": 0.46031253233985303, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3482, + "time": 0.47687053710027943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3579, + "time": 0.4901169409086205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3579, + "time": 0.4901169409086205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3676, + "time": 0.5033633447169616, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3772, + "time": 0.5166097485253027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3869, + "time": 0.5298561523336438, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3869, + "time": 0.5298561523336438, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3893, + "time": 0.5331677532857291, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3918, + "time": 0.5364793542378143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3942, + "time": 0.5397909551898996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3966, + "time": 0.5431025561419849, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3966, + "time": 0.5431025561419849, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3990, + "time": 0.5464141570940702, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5497257580461555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4038, + "time": 0.5530373589982407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4063, + "time": 0.5563489599503261, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4159, + "time": 0.5695953637586672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4256, + "time": 0.5828417675670082, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4256, + "time": 0.5828417675670082, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4353, + "time": 0.5960881713753493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4353, + "time": 0.5960881713753493, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4450, + "time": 0.6093345751836905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4643, + "time": 0.6358273828003727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4667, + "time": 0.6391389837524578, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4667, + "time": 0.6391389837524578, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4691, + "time": 0.6424505847045432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4691, + "time": 0.6424505847045432, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4740, + "time": 0.6490737866087137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.6490737866087137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4764, + "time": 0.652385387560799, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4764, + "time": 0.652385387560799, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4788, + "time": 0.6556969885128843, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4788, + "time": 0.6556969885128843, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6623201904170547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6623201904170547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4849, + "time": 0.6639759908930974, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4861, + "time": 0.6656317913691401, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4873, + "time": 0.6672875918451827, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4885, + "time": 0.6689433923212252, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4897, + "time": 0.670599192797268, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4909, + "time": 0.6722549932733106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4933, + "time": 0.6755665942253959, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4933, + "time": 0.6755665942253959, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4945, + "time": 0.6772223947014385, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4945, + "time": 0.6772223947014385, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4957, + "time": 0.6788781951774812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4957, + "time": 0.6788781951774812, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4957, + "time": 0.6788781951774812, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4969, + "time": 0.6805339956535238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4969, + "time": 0.6805339956535238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4982, + "time": 0.6821897961295664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4982, + "time": 0.6821897961295664, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4982, + "time": 0.6821897961295664, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4994, + "time": 0.6838455966056091, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4994, + "time": 0.6838455966056091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5006, + "time": 0.6855013970816517, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5006, + "time": 0.6855013970816517, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5006, + "time": 0.6855013970816517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5018, + "time": 0.6871571975576943, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5018, + "time": 0.6871571975576943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5030, + "time": 0.688812998033737, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5030, + "time": 0.688812998033737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5127, + "time": 0.702059401842078, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5139, + "time": 0.7037152023181207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5151, + "time": 0.7053710027941634, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5151, + "time": 0.7053710027941634, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5163, + "time": 0.7070268032702061, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5175, + "time": 0.7086826037462486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5175, + "time": 0.7086826037462486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5187, + "time": 0.7103384042222912, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5199, + "time": 0.711994204698334, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5199, + "time": 0.711994204698334, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5211, + "time": 0.7136500051743766, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5223, + "time": 0.7153058056504191, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5223, + "time": 0.7153058056504191, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5235, + "time": 0.7169616061264618, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5235, + "time": 0.7169616061264618, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5248, + "time": 0.7186174066025045, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5260, + "time": 0.7202732070785471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5260, + "time": 0.7202732070785471, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5272, + "time": 0.7219290075545897, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5284, + "time": 0.7235848080306324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5284, + "time": 0.7235848080306324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5296, + "time": 0.725240608506675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5308, + "time": 0.7268964089827176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5308, + "time": 0.7268964089827176, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5320, + "time": 0.7285522094587602, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5368, + "time": 0.7351754113629307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5368, + "time": 0.7351754113629307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5417, + "time": 0.7417986132671014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5538, + "time": 0.7583566180275277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5550, + "time": 0.7600124185035704, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4519,11 +7900,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 211, "indexInLine": 3, "isSliding": false, - "noteOrder": 3940, - "time": 0.5397909551898995, + "noteOrder": 5550, + "time": 0.7600124185035704, "position": { "x": 4, "y": 0 @@ -4542,13 +7923,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 211, "indexInLine": 4, "isSliding": false, - "noteOrder": 3964, - "time": 0.5431025561419848, + "noteOrder": 5562, + "time": 0.761668218979613, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4565,13 +7946,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3964, - "time": 0.5431025561419848, + "noteOrder": 5562, + "time": 0.761668218979613, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4583,18 +7964,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.54641415709407, + "noteOrder": 5562, + "time": 0.761668218979613, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4611,13 +7992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 212, "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5497257580461554, + "noteOrder": 5574, + "time": 0.7633240194556556, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4634,13 +8015,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 212, "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.5530373589982407, + "noteOrder": 5574, + "time": 0.7633240194556556, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4657,13 +8038,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 212, "indexInLine": 4, "isSliding": false, - "noteOrder": 4061, - "time": 0.556348959950326, + "noteOrder": 5586, + "time": 0.7649798199316983, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4680,11 +8061,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4158, - "time": 0.569595363758667, + "noteOrder": 5586, + "time": 0.7649798199316983, "position": { "x": 6, "y": 0 @@ -4703,13 +8084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 4254, - "time": 0.5828417675670081, + "noteOrder": 5586, + "time": 0.7649798199316983, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4721,16 +8102,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5598, + "time": 0.7666356204077409, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4254, - "time": 0.5828417675670081, + "noteOrder": 5598, + "time": 0.7666356204077409, "position": { "x": 4, "y": 0 @@ -4749,11 +8153,126 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 213, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5610, + "time": 0.7682914208837835, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5610, + "time": 0.7682914208837835, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 4351, - "time": 0.5960881713753492, + "noteOrder": 5610, + "time": 0.7682914208837835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5622, + "time": 0.7699472213598262, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5622, + "time": 0.7699472213598262, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5634, + "time": 0.7716030218358689, "position": { "x": 4, "y": 0 @@ -4767,18 +8286,87 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5634, + "time": 0.7716030218358689, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5634, + "time": 0.7716030218358689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5683, + "time": 0.7782262237400395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4351, - "time": 0.5960881713753492, + "noteOrder": 5683, + "time": 0.7782262237400395, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4795,13 +8383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4448, - "time": 0.6093345751836904, + "noteOrder": 5695, + "time": 0.779882024216082, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4818,13 +8406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4641, - "time": 0.6358273828003724, + "noteOrder": 5695, + "time": 0.779882024216082, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4836,18 +8424,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4665, - "time": 0.6391389837524577, + "noteOrder": 5707, + "time": 0.7815378246921246, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4859,18 +8447,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4665, - "time": 0.6391389837524577, + "noteOrder": 5707, + "time": 0.7815378246921246, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4887,13 +8475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 218, "indexInLine": 1, "isSliding": false, - "noteOrder": 4690, - "time": 0.642450584704543, + "noteOrder": 5707, + "time": 0.7815378246921246, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4905,18 +8493,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4690, - "time": 0.642450584704543, + "noteOrder": 5719, + "time": 0.7831936251681673, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4933,13 +8521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4738, - "time": 0.6490737866087136, + "noteOrder": 5719, + "time": 0.7831936251681673, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4956,13 +8544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4738, - "time": 0.6490737866087136, + "noteOrder": 5731, + "time": 0.78484942564421, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4974,18 +8562,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4762, - "time": 0.6523853875607989, + "noteOrder": 5731, + "time": 0.78484942564421, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4997,16 +8585,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4762, - "time": 0.6523853875607989, + "noteOrder": 5731, + "time": 0.78484942564421, "position": { "x": 7, "y": 0 @@ -5020,16 +8608,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4786, - "time": 0.6556969885128842, + "noteOrder": 5743, + "time": 0.7865052261202525, "position": { "x": 7, "y": 0 @@ -5043,16 +8631,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4786, - "time": 0.6556969885128842, + "noteOrder": 5743, + "time": 0.7865052261202525, "position": { "x": 6, "y": 0 @@ -5071,13 +8659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4835, - "time": 0.6623201904170546, + "noteOrder": 5755, + "time": 0.7881610265962952, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5094,13 +8682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4835, - "time": 0.6623201904170546, + "noteOrder": 5755, + "time": 0.7881610265962952, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5112,18 +8700,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4847, - "time": 0.6639759908930973, + "noteOrder": 5755, + "time": 0.7881610265962952, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5140,13 +8728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 220, "indexInLine": 2, "isSliding": false, - "noteOrder": 4859, - "time": 0.66563179136914, + "noteOrder": 5767, + "time": 0.7898168270723379, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5163,13 +8751,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 220, "indexInLine": 3, "isSliding": false, - "noteOrder": 4871, - "time": 0.6672875918451826, + "noteOrder": 5767, + "time": 0.7898168270723379, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5186,13 +8774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 220, "indexInLine": 4, "isSliding": false, - "noteOrder": 4883, - "time": 0.6689433923212252, + "noteOrder": 5780, + "time": 0.7914726275483804, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5209,11 +8797,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 220, "indexInLine": 5, "isSliding": false, - "noteOrder": 4895, - "time": 0.6705991927972678, + "noteOrder": 5780, + "time": 0.7914726275483804, "position": { "x": 4, "y": 0 @@ -5232,13 +8820,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 6, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4907, - "time": 0.6722549932733105, + "noteOrder": 5780, + "time": 0.7914726275483804, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5250,18 +8838,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 7, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4931, - "time": 0.6755665942253958, + "noteOrder": 5792, + "time": 0.7931284280244231, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5273,18 +8861,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4931, - "time": 0.6755665942253958, + "noteOrder": 5792, + "time": 0.7931284280244231, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5301,13 +8889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4955, - "time": 0.678878195177481, + "noteOrder": 5804, + "time": 0.7947842285004657, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5319,18 +8907,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4980, - "time": 0.6821897961295663, + "noteOrder": 5804, + "time": 0.7947842285004657, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5347,13 +8935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5004, - "time": 0.6855013970816516, + "noteOrder": 5804, + "time": 0.7947842285004657, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5370,13 +8958,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5125, - "time": 0.702059401842078, + "noteOrder": 5816, + "time": 0.7964400289765085, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5393,13 +8981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5137, - "time": 0.7037152023181206, + "noteOrder": 5816, + "time": 0.7964400289765085, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5416,13 +9004,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 2, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5149, - "time": 0.7053710027941633, + "noteOrder": 5828, + "time": 0.798095829452551, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5439,13 +9027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5149, - "time": 0.7053710027941633, + "noteOrder": 5828, + "time": 0.798095829452551, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5457,18 +9045,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 5161, - "time": 0.7070268032702058, + "noteOrder": 5828, + "time": 0.798095829452551, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5485,13 +9073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 223, "indexInLine": 2, "isSliding": false, - "noteOrder": 5173, - "time": 0.7086826037462485, + "noteOrder": 5852, + "time": 0.8014074304046364, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5508,11 +9096,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5173, - "time": 0.7086826037462485, + "noteOrder": 5852, + "time": 0.8014074304046364, "position": { "x": 5, "y": 0 @@ -5531,13 +9119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5185, - "time": 0.7103384042222912, + "noteOrder": 5876, + "time": 0.8047190313567215, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5554,13 +9142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 2, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5197, - "time": 0.7119942046983337, + "noteOrder": 5876, + "time": 0.8047190313567215, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5572,18 +9160,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5197, - "time": 0.7119942046983337, + "noteOrder": 5888, + "time": 0.8063748318327641, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5600,13 +9188,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5209, - "time": 0.7136500051743765, + "noteOrder": 5888, + "time": 0.8063748318327641, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5623,13 +9211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5221, - "time": 0.715305805650419, + "noteOrder": 5900, + "time": 0.8080306323088069, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5646,13 +9234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5221, - "time": 0.715305805650419, + "noteOrder": 5900, + "time": 0.8080306323088069, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5664,18 +9252,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5245, - "time": 0.7186174066025043, + "noteOrder": 5900, + "time": 0.8080306323088069, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5687,16 +9275,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5270, - "time": 0.7219290075545897, + "noteOrder": 5913, + "time": 0.8096864327848495, "position": { "x": 3, "y": 0 @@ -5715,13 +9303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5294, - "time": 0.7252406085066749, + "noteOrder": 5913, + "time": 0.8096864327848495, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5733,18 +9321,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5318, - "time": 0.7285522094587602, + "noteOrder": 5925, + "time": 0.811342233260892, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5761,13 +9349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5366, - "time": 0.7351754113629306, + "noteOrder": 5925, + "time": 0.811342233260892, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5784,13 +9372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5366, - "time": 0.7351754113629306, + "noteOrder": 5925, + "time": 0.811342233260892, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5807,13 +9395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5415, - "time": 0.7417986132671013, + "noteOrder": 5949, + "time": 0.8146538342129774, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5830,13 +9418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5536, - "time": 0.7583566180275276, + "noteOrder": 5949, + "time": 0.8146538342129774, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5853,13 +9441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5560, - "time": 0.7616682189796129, + "noteOrder": 5973, + "time": 0.8179654351650626, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5871,18 +9459,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5584, - "time": 0.7649798199316982, + "noteOrder": 5973, + "time": 0.8179654351650626, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5894,18 +9482,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5608, - "time": 0.7682914208837834, + "noteOrder": 5997, + "time": 0.821277036117148, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5922,13 +9510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5632, - "time": 0.7716030218358687, + "noteOrder": 5997, + "time": 0.821277036117148, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5945,13 +9533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5681, - "time": 0.7782262237400392, + "noteOrder": 6021, + "time": 0.8245886370692331, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5968,13 +9556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5681, - "time": 0.7782262237400392, + "noteOrder": 6046, + "time": 0.8279002380213185, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5991,13 +9579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5705, - "time": 0.7815378246921245, + "noteOrder": 6070, + "time": 0.8312118389734037, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6009,18 +9597,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5729, - "time": 0.7848494256442098, + "noteOrder": 6094, + "time": 0.834523439925489, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6032,18 +9620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5753, - "time": 0.7881610265962951, + "noteOrder": 6191, + "time": 0.8477698437338301, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6060,11 +9648,11 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5777, - "time": 0.7914726275483803, + "noteOrder": 6191, + "time": 0.8477698437338301, "position": { "x": 7, "y": 0 @@ -6083,13 +9671,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5801, - "time": 0.7947842285004656, + "noteOrder": 6287, + "time": 0.8610162475421712, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6101,18 +9689,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5826, - "time": 0.798095829452551, + "noteOrder": 6287, + "time": 0.8610162475421712, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6124,18 +9712,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 242, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5850, - "time": 0.8014074304046362, + "noteOrder": 6384, + "time": 0.8742626513505124, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6147,18 +9735,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5850, - "time": 0.8014074304046362, + "noteOrder": 6384, + "time": 0.8742626513505124, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6170,18 +9758,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 246, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5874, - "time": 0.8047190313567214, + "noteOrder": 6396, + "time": 0.8759184518265549, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6193,18 +9781,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5874, - "time": 0.8047190313567214, + "noteOrder": 6396, + "time": 0.8759184518265549, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6221,13 +9809,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5898, - "time": 0.8080306323088067, + "noteOrder": 6408, + "time": 0.8775742523025976, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6239,18 +9827,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5922, - "time": 0.8113422332608919, + "noteOrder": 6408, + "time": 0.8775742523025976, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6267,13 +9855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, + "lineGroupId": 247, "indexInLine": 1, "isSliding": false, - "noteOrder": 5947, - "time": 0.8146538342129772, + "noteOrder": 6408, + "time": 0.8775742523025976, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6285,18 +9873,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5947, - "time": 0.8146538342129772, + "noteOrder": 6420, + "time": 0.8792300527786402, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6313,11 +9901,11 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5971, - "time": 0.8179654351650626, + "noteOrder": 6420, + "time": 0.8792300527786402, "position": { "x": 6, "y": 0 @@ -6336,11 +9924,11 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5971, - "time": 0.8179654351650626, + "noteOrder": 6432, + "time": 0.8808858532546829, "position": { "x": 6, "y": 0 @@ -6354,18 +9942,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 1, + "lineGroupId": 247, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5995, - "time": 0.8212770361171479, + "noteOrder": 6432, + "time": 0.8808858532546829, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6377,18 +9965,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5995, - "time": 0.8212770361171479, + "noteOrder": 6432, + "time": 0.8808858532546829, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6400,18 +9988,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 1, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6019, - "time": 0.8245886370692331, + "noteOrder": 6445, + "time": 0.8825416537307255, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6423,16 +10011,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6043, - "time": 0.8279002380213183, + "noteOrder": 6445, + "time": 0.8825416537307255, "position": { "x": 6, "y": 0 @@ -6451,11 +10039,11 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 1, + "lineGroupId": 248, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6067, - "time": 0.8312118389734036, + "noteOrder": 6457, + "time": 0.8841974542067681, "position": { "x": 6, "y": 0 @@ -6474,11 +10062,11 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6092, - "time": 0.8345234399254888, + "noteOrder": 6457, + "time": 0.8841974542067681, "position": { "x": 4, "y": 0 @@ -6492,18 +10080,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, + "lineGroupId": 249, "indexInLine": 1, "isSliding": false, - "noteOrder": 6188, - "time": 0.84776984373383, + "noteOrder": 6457, + "time": 0.8841974542067681, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6520,11 +10108,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6188, - "time": 0.84776984373383, + "noteOrder": 6469, + "time": 0.8858532546828108, "position": { "x": 7, "y": 0 @@ -6538,18 +10126,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 1, + "lineGroupId": 249, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6285, - "time": 0.8610162475421711, + "noteOrder": 6469, + "time": 0.8858532546828108, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6561,18 +10149,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6285, - "time": 0.8610162475421711, + "noteOrder": 6481, + "time": 0.8875090551588535, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6589,13 +10177,13 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 1, + "lineGroupId": 249, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6382, - "time": 0.8742626513505122, + "noteOrder": 6481, + "time": 0.8875090551588535, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6612,11 +10200,11 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6382, - "time": 0.8742626513505122, + "noteOrder": 6481, + "time": 0.8875090551588535, "position": { "x": 7, "y": 0 @@ -6635,11 +10223,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6406, - "time": 0.8775742523025974, + "noteOrder": 6493, + "time": 0.889164855634896, "position": { "x": 7, "y": 0 @@ -6653,18 +10241,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6430, - "time": 0.8808858532546827, + "noteOrder": 6493, + "time": 0.889164855634896, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6681,13 +10269,13 @@ "isPlayAudio": false }, { - "lineGroupId": 249, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6454, - "time": 0.884197454206768, + "noteOrder": 6505, + "time": 0.8908206561109386, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6704,13 +10292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6478, - "time": 0.8875090551588533, + "noteOrder": 6517, + "time": 0.8924764565869814, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6722,18 +10310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6502, - "time": 0.8908206561109385, + "noteOrder": 6517, + "time": 0.8924764565869814, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6751,10 +10339,10 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6672, - "time": 0.9140018627755355, + "noteOrder": 6674, + "time": 0.9140018627755356, "position": { "x": 3, "y": 0 @@ -6774,10 +10362,10 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6696, - "time": 0.9173134637276208, + "noteOrder": 6698, + "time": 0.9173134637276209, "position": { "x": 4, "y": 0 @@ -6797,9 +10385,9 @@ }, { "lineGroupId": 257, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6720, + "noteOrder": 6723, "time": 0.9206250646797061, "position": { "x": 4, @@ -6820,10 +10408,10 @@ }, { "lineGroupId": 257, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6744, - "time": 0.9239366656317912, + "noteOrder": 6747, + "time": 0.9239366656317914, "position": { "x": 5, "y": 0 @@ -6843,10 +10431,10 @@ }, { "lineGroupId": 257, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6768, - "time": 0.9272482665838765, + "noteOrder": 6771, + "time": 0.9272482665838766, "position": { "x": 5, "y": 0 @@ -6866,10 +10454,10 @@ }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6865, - "time": 0.9404946703922177, + "noteOrder": 6868, + "time": 0.9404946703922178, "position": { "x": 4, "y": 0 @@ -6889,10 +10477,10 @@ }, { "lineGroupId": 265, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6962, - "time": 0.9537410742005588, + "noteOrder": 6964, + "time": 0.9537410742005589, "position": { "x": 4, "y": 0 @@ -6912,10 +10500,10 @@ }, { "lineGroupId": 266, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6865, - "time": 0.9404946703922177, + "noteOrder": 6868, + "time": 0.9404946703922178, "position": { "x": 6, "y": 0 @@ -6935,10 +10523,10 @@ }, { "lineGroupId": 266, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6962, - "time": 0.9537410742005588, + "noteOrder": 6964, + "time": 0.9537410742005589, "position": { "x": 6, "y": 0 diff --git a/tracks/Touch My Body/363_difficulty_1b.json b/tracks/Touch My Body/363_difficulty_1b.json index acfd02cf..3866faec 100644 --- a/tracks/Touch My Body/363_difficulty_1b.json +++ b/tracks/Touch My Body/363_difficulty_1b.json @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 338, - "time": 0.04636241332919383, + "noteOrder": 339, + "time": 0.04636241332919384, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 387, - "time": 0.052985615233364376, + "time": 0.05298561523336438, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 435, - "time": 0.05960881713753492, + "time": 0.05960881713753493, "position": { "x": 6, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 483, + "noteOrder": 484, "time": 0.06623201904170548, "position": { "x": 4, @@ -114,7 +114,7 @@ }, { "noteOrder": 532, - "time": 0.07285522094587601, + "time": 0.07285522094587603, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1209, - "time": 0.16558004760426365, + "time": 0.16558004760426367, "position": { "x": 6, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1595, - "time": 0.21856566283762804, + "noteOrder": 1596, + "time": 0.2185656628376281, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1740, - "time": 0.2384352685501397, + "noteOrder": 1741, + "time": 0.23843526855013972, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1789, - "time": 0.24505847045431023, + "time": 0.24505847045431026, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1934, + "noteOrder": 1935, "time": 0.2649280761668219, "position": { "x": 6, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1982, - "time": 0.2715512780709924, + "noteOrder": 1983, + "time": 0.27155127807099244, "position": { "x": 4, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2828, - "time": 0.387457311393977, + "noteOrder": 2829, + "time": 0.38745731139397704, "position": { "x": 3, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2877, - "time": 0.39408051329814753, + "noteOrder": 2878, + "time": 0.3940805132981476, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.41395011901065915, + "noteOrder": 3023, + "time": 0.41395011901065926, "position": { "x": 7, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3070, - "time": 0.42057332091482974, + "noteOrder": 3071, + "time": 0.4205733209148298, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3481, - "time": 0.4768705371002794, + "noteOrder": 3482, + "time": 0.47687053710027943, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3529, - "time": 0.4834937390044499, + "noteOrder": 3531, + "time": 0.48349373900445, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3578, - "time": 0.49011694090862046, + "noteOrder": 3579, + "time": 0.4901169409086205, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.496740142812791, + "noteOrder": 3627, + "time": 0.49674014281279105, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3674, - "time": 0.5033633447169615, + "noteOrder": 3676, + "time": 0.5033633447169616, "position": { "x": 4, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3723, - "time": 0.5099865466211321, + "noteOrder": 3724, + "time": 0.5099865466211322, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.5166097485253026, + "noteOrder": 3772, + "time": 0.5166097485253027, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3819, - "time": 0.5232329504294732, + "noteOrder": 3821, + "time": 0.5232329504294733, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4786, - "time": 0.6556969885128842, + "noteOrder": 4788, + "time": 0.6556969885128843, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4980, - "time": 0.6821897961295663, + "noteOrder": 4982, + "time": 0.6821897961295664, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5125, + "noteOrder": 5127, "time": 0.702059401842078, "position": { "x": 6, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5173, - "time": 0.7086826037462485, + "noteOrder": 5175, + "time": 0.7086826037462486, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5318, + "noteOrder": 5320, "time": 0.7285522094587602, "position": { "x": 4, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5366, - "time": 0.7351754113629306, + "noteOrder": 5368, + "time": 0.7351754113629307, "position": { "x": 6, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5560, - "time": 0.7616682189796129, + "noteOrder": 5562, + "time": 0.761668218979613, "position": { "x": 4, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5656, - "time": 0.774914622787954, + "noteOrder": 5659, + "time": 0.7749146227879541, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5995, - "time": 0.8212770361171479, + "noteOrder": 5997, + "time": 0.821277036117148, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6043, - "time": 0.8279002380213183, + "noteOrder": 6046, + "time": 0.8279002380213185, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6285, - "time": 0.8610162475421711, + "noteOrder": 6287, + "time": 0.8610162475421712, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6333, - "time": 0.8676394494463416, + "noteOrder": 6336, + "time": 0.8676394494463419, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6478, - "time": 0.8875090551588533, + "noteOrder": 6481, + "time": 0.8875090551588535, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 6723, "time": 0.9206250646797061, "position": { "x": 3, @@ -776,10 +776,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.026492807616682188, + "time": 0.02649280761668219, "position": { "x": 6, "y": 0 @@ -799,10 +799,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 290, - "time": 0.03973921142502328, + "time": 0.03973921142502329, "position": { "x": 6, "y": 0 @@ -822,10 +822,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.03973921142502328, + "time": 0.03973921142502329, "position": { "x": 4, "y": 0 @@ -845,10 +845,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 387, - "time": 0.052985615233364376, + "time": 0.05298561523336438, "position": { "x": 4, "y": 0 @@ -868,10 +868,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, - "time": 0.07947842285004655, + "time": 0.07947842285004658, "position": { "x": 6, "y": 0 @@ -891,10 +891,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 628, - "time": 0.08610162475421711, + "noteOrder": 629, + "time": 0.08610162475421712, "position": { "x": 4, "y": 0 @@ -914,10 +914,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 628, - "time": 0.08610162475421711, + "noteOrder": 629, + "time": 0.08610162475421712, "position": { "x": 4, "y": 0 @@ -937,10 +937,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 677, - "time": 0.09272482665838766, + "time": 0.09272482665838767, "position": { "x": 6, "y": 0 @@ -960,10 +960,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 677, - "time": 0.09272482665838766, + "time": 0.09272482665838767, "position": { "x": 6, "y": 0 @@ -983,10 +983,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 725, - "time": 0.0993480285625582, + "time": 0.09934802856255821, "position": { "x": 4, "y": 0 @@ -1006,10 +1006,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 725, - "time": 0.0993480285625582, + "time": 0.09934802856255821, "position": { "x": 4, "y": 0 @@ -1029,10 +1029,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 774, - "time": 0.10597123046672875, + "time": 0.10597123046672877, "position": { "x": 6, "y": 0 @@ -1052,7 +1052,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 967, "time": 0.13246403808341095, @@ -1074,11 +1074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1015, - "time": 0.1390872399875815, + "noteOrder": 991, + "time": 0.13577563903549622, "position": { "x": 4, "y": 0 @@ -1092,16 +1092,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1064, - "time": 0.14571044189175203, + "noteOrder": 991, + "time": 0.13577563903549622, "position": { "x": 4, "y": 0 @@ -1120,11 +1120,11 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1112, - "time": 0.1523336437959226, + "noteOrder": 1016, + "time": 0.13908723998758152, "position": { "x": 4, "y": 0 @@ -1143,11 +1143,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1160, - "time": 0.1589568457000931, + "noteOrder": 1040, + "time": 0.1423988409396668, "position": { "x": 4, "y": 0 @@ -1161,18 +1161,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 1, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1257, - "time": 0.17220324950843421, + "noteOrder": 1040, + "time": 0.1423988409396668, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1184,18 +1184,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, - "time": 0.18544965331677532, + "noteOrder": 1064, + "time": 0.14571044189175206, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1207,18 +1207,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1402, - "time": 0.19207285522094586, + "noteOrder": 1088, + "time": 0.14902204284383733, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1235,13 +1235,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1450, - "time": 0.1986960571251164, + "noteOrder": 1088, + "time": 0.14902204284383733, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1253,18 +1253,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1499, - "time": 0.20531925902928697, + "noteOrder": 1112, + "time": 0.15233364379592262, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1276,18 +1276,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1547, - "time": 0.2119424609334575, + "noteOrder": 1137, + "time": 0.1556452447480079, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1304,11 +1304,11 @@ "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1644, - "time": 0.22518886474179858, + "noteOrder": 1137, + "time": 0.1556452447480079, "position": { "x": 4, "y": 0 @@ -1327,11 +1327,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2127, - "time": 0.29142088378350406, + "noteOrder": 1161, + "time": 0.15895684570009316, "position": { "x": 4, "y": 0 @@ -1350,13 +1350,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2176, - "time": 0.2980440856876746, + "noteOrder": 1257, + "time": 0.17220324950843424, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1368,16 +1368,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2321, - "time": 0.3179136914001862, + "noteOrder": 1354, + "time": 0.18544965331677535, "position": { "x": 6, "y": 0 @@ -1396,11 +1396,11 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2369, - "time": 0.3245368933043568, + "noteOrder": 1378, + "time": 0.18876125426886062, "position": { "x": 6, "y": 0 @@ -1414,18 +1414,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2804, - "time": 0.3841457104418917, + "noteOrder": 1378, + "time": 0.18876125426886062, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1442,13 +1442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 2901, - "time": 0.3973921142502328, + "noteOrder": 1403, + "time": 0.1920728552209459, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1460,18 +1460,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2997, - "time": 0.41063851805857393, + "noteOrder": 1427, + "time": 0.19538445617303116, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1488,13 +1488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3094, - "time": 0.423884921866915, + "noteOrder": 1427, + "time": 0.19538445617303116, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -1511,11 +1511,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3191, - "time": 0.4371313256752561, + "noteOrder": 1451, + "time": 0.19869605712511643, "position": { "x": 6, "y": 0 @@ -1534,13 +1534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3239, - "time": 0.4437545275794266, + "noteOrder": 1475, + "time": 0.20200765807720172, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1552,18 +1552,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3384, - "time": 0.46362413329193825, + "noteOrder": 1475, + "time": 0.20200765807720172, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1575,18 +1575,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 26, "indexInLine": 1, "isSliding": false, - "noteOrder": 3457, - "time": 0.47355893614819405, + "noteOrder": 1499, + "time": 0.205319259029287, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1603,11 +1603,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3384, - "time": 0.46362413329193825, + "noteOrder": 1523, + "time": 0.20863085998137226, "position": { "x": 6, "y": 0 @@ -1621,16 +1621,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3457, - "time": 0.47355893614819405, + "noteOrder": 1523, + "time": 0.20863085998137226, "position": { "x": 6, "y": 0 @@ -1644,16 +1644,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5298561523336438, + "noteOrder": 1548, + "time": 0.21194246093345753, "position": { "x": 6, "y": 0 @@ -1672,11 +1672,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3916, - "time": 0.5364793542378143, + "noteOrder": 1644, + "time": 0.22518886474179864, "position": { "x": 4, "y": 0 @@ -1690,18 +1690,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3964, - "time": 0.5431025561419848, + "noteOrder": 2128, + "time": 0.2914208837835041, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1713,18 +1713,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.5497257580461554, + "noteOrder": 2152, + "time": 0.2947324847355894, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1736,16 +1736,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4013, - "time": 0.5497257580461554, + "noteOrder": 2152, + "time": 0.2947324847355894, "position": { "x": 4, "y": 0 @@ -1764,11 +1764,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 4061, - "time": 0.556348959950326, + "noteOrder": 2176, + "time": 0.29804408568767465, "position": { "x": 4, "y": 0 @@ -1782,18 +1782,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4061, - "time": 0.556348959950326, + "noteOrder": 2201, + "time": 0.3013556866397599, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -1810,11 +1810,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4109, - "time": 0.5629721618544964, + "noteOrder": 2201, + "time": 0.3013556866397599, "position": { "x": 4, "y": 0 @@ -1828,16 +1828,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, - "time": 0.569595363758667, + "noteOrder": 2321, + "time": 0.3179136914001863, "position": { "x": 6, "y": 0 @@ -1856,11 +1856,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4254, - "time": 0.5828417675670081, + "noteOrder": 2346, + "time": 0.3212252923522716, "position": { "x": 6, "y": 0 @@ -1879,13 +1879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4641, - "time": 0.6358273828003724, + "noteOrder": 2346, + "time": 0.3212252923522716, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1897,18 +1897,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4690, - "time": 0.642450584704543, + "noteOrder": 2370, + "time": 0.32453689330435687, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1920,18 +1920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4738, - "time": 0.6490737866087136, + "noteOrder": 2394, + "time": 0.32784849425644214, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -1948,13 +1948,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4835, - "time": 0.6623201904170546, + "noteOrder": 2394, + "time": 0.32784849425644214, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -1971,13 +1971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4835, - "time": 0.6623201904170546, + "noteOrder": 2805, + "time": 0.3841457104418918, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -1994,13 +1994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4883, - "time": 0.6689433923212252, + "noteOrder": 2902, + "time": 0.39739211425023285, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2012,16 +2012,1028 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4931, - "time": 0.6755665942253958, + "noteOrder": 2999, + "time": 0.410638518058574, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3095, + "time": 0.42388492186691507, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3192, + "time": 0.4371313256752562, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3216, + "time": 0.44044292662734147, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3216, + "time": 0.44044292662734147, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3240, + "time": 0.44375452757942674, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3265, + "time": 0.447066128531512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3265, + "time": 0.447066128531512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3386, + "time": 0.4636241332919383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3458, + "time": 0.47355893614819417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3386, + "time": 0.4636241332919383, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3458, + "time": 0.47355893614819417, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3869, + "time": 0.5298561523336438, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3893, + "time": 0.5331677532857291, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3893, + "time": 0.5331677532857291, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3918, + "time": 0.5364793542378143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.5397909551898996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3942, + "time": 0.5397909551898996, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3966, + "time": 0.5431025561419849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5497257580461555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4014, + "time": 0.5497257580461555, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4063, + "time": 0.5563489599503261, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4063, + "time": 0.5563489599503261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4087, + "time": 0.5596605609024112, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4087, + "time": 0.5596605609024112, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4111, + "time": 0.5629721618544966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4135, + "time": 0.5662837628065818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4135, + "time": 0.5662837628065818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4159, + "time": 0.5695953637586672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4256, + "time": 0.5828417675670082, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4643, + "time": 0.6358273828003727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4667, + "time": 0.6391389837524578, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4667, + "time": 0.6391389837524578, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4691, + "time": 0.6424505847045432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4716, + "time": 0.6457621856566285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4716, + "time": 0.6457621856566285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.6490737866087137, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6623201904170547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4836, + "time": 0.6623201904170547, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4861, + "time": 0.6656317913691401, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4861, + "time": 0.6656317913691401, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4885, + "time": 0.6689433923212252, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4909, + "time": 0.6722549932733106, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4909, + "time": 0.6722549932733106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4933, + "time": 0.6755665942253959, "position": { "x": 7, "y": 0 @@ -2035,16 +3047,131 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5030, + "time": 0.688812998033737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5417, + "time": 0.7417986132671014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5465, + "time": 0.7484218151712719, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5417, + "time": 0.7417986132671014, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5465, + "time": 0.7484218151712719, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 5028, - "time": 0.6888129980337369, + "noteOrder": 5514, + "time": 0.7550450170754425, "position": { "x": 6, "y": 0 @@ -2063,11 +3190,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5415, - "time": 0.7417986132671013, + "noteOrder": 5538, + "time": 0.7583566180275277, "position": { "x": 6, "y": 0 @@ -2086,13 +3213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5463, - "time": 0.7484218151712718, + "noteOrder": 5586, + "time": 0.7649798199316983, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2109,11 +3236,34 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5610, + "time": 0.7682914208837835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5415, - "time": 0.7417986132671013, + "noteOrder": 5610, + "time": 0.7682914208837835, "position": { "x": 4, "y": 0 @@ -2132,11 +3282,80 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5634, + "time": 0.7716030218358689, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5683, + "time": 0.7782262237400395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5707, + "time": 0.7815378246921246, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, "indexInLine": 1, "isSliding": false, - "noteOrder": 5463, - "time": 0.7484218151712718, + "noteOrder": 6094, + "time": 0.834523439925489, "position": { "x": 4, "y": 0 @@ -2155,13 +3374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5511, - "time": 0.7550450170754422, + "noteOrder": 6191, + "time": 0.8477698437338301, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2173,16 +3392,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 5536, - "time": 0.7583566180275276, + "noteOrder": 6191, + "time": 0.8477698437338301, "position": { "x": 6, "y": 0 @@ -2201,13 +3420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 118, "indexInLine": 2, "isSliding": false, - "noteOrder": 5584, - "time": 0.7649798199316982, + "noteOrder": 6215, + "time": 0.8510814446859154, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2224,13 +3443,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 118, "indexInLine": 3, "isSliding": false, - "noteOrder": 5608, - "time": 0.7682914208837834, + "noteOrder": 6215, + "time": 0.8510814446859154, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2247,11 +3466,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5608, - "time": 0.7682914208837834, + "noteOrder": 6239, + "time": 0.8543930456380007, "position": { "x": 4, "y": 0 @@ -2270,11 +3489,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5632, - "time": 0.7716030218358687, + "noteOrder": 6263, + "time": 0.8577046465900859, "position": { "x": 4, "y": 0 @@ -2293,11 +3512,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 2, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5681, - "time": 0.7782262237400392, + "noteOrder": 6263, + "time": 0.8577046465900859, "position": { "x": 4, "y": 0 @@ -2316,11 +3535,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 3, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5705, - "time": 0.7815378246921245, + "noteOrder": 6384, + "time": 0.8742626513505124, "position": { "x": 4, "y": 0 @@ -2339,11 +3558,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6092, - "time": 0.8345234399254888, + "noteOrder": 6408, + "time": 0.8775742523025976, "position": { "x": 4, "y": 0 @@ -2362,11 +3581,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6188, - "time": 0.84776984373383, + "noteOrder": 6408, + "time": 0.8775742523025976, "position": { "x": 4, "y": 0 @@ -2385,11 +3604,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6188, - "time": 0.84776984373383, + "noteOrder": 6432, + "time": 0.8808858532546829, "position": { "x": 6, "y": 0 @@ -2408,13 +3627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6237, - "time": 0.8543930456380006, + "noteOrder": 6457, + "time": 0.8841974542067681, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2426,18 +3645,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6382, - "time": 0.8742626513505122, + "noteOrder": 6457, + "time": 0.8841974542067681, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2449,18 +3668,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6430, - "time": 0.8808858532546827, + "noteOrder": 6578, + "time": 0.9007554589671946, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2478,10 +3697,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6575, - "time": 0.9007554589671943, + "noteOrder": 6602, + "time": 0.9040670599192798, "position": { "x": 7, "y": 0 @@ -2499,12 +3718,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6602, + "time": 0.9040670599192798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6626, + "time": 0.9073786608713651, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6623, - "time": 0.9073786608713649, + "noteOrder": 6650, + "time": 0.9106902618234504, "position": { "x": 7, "y": 0 @@ -2522,12 +3787,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6650, + "time": 0.9106902618234504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6672, - "time": 0.9140018627755355, + "noteOrder": 6674, + "time": 0.9140018627755356, "position": { "x": 7, "y": 0 @@ -2547,9 +3835,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6720, + "noteOrder": 6723, "time": 0.9206250646797061, "position": { "x": 4, @@ -2570,10 +3858,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6865, - "time": 0.9404946703922177, + "noteOrder": 6868, + "time": 0.9404946703922178, "position": { "x": 6, "y": 0 @@ -2593,10 +3881,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6962, - "time": 0.9537410742005588, + "noteOrder": 6964, + "time": 0.9537410742005589, "position": { "x": 6, "y": 0 @@ -2616,10 +3904,10 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6865, - "time": 0.9404946703922177, + "noteOrder": 6868, + "time": 0.9404946703922178, "position": { "x": 4, "y": 0 @@ -2639,10 +3927,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6962, - "time": 0.9537410742005588, + "noteOrder": 6964, + "time": 0.9537410742005589, "position": { "x": 4, "y": 0 diff --git a/tracks/Touch My Body/info.json b/tracks/Touch My Body/info.json index c5266111..08775448 100644 --- a/tracks/Touch My Body/info.json +++ b/tracks/Touch My Body/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Touch My Body", - "SongLength": "131.657143", + "SongLength": "121.704490", "SongAuthorName": "anubasu-anubasu", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Trash/325_difficulty_1a.json b/tracks/Trash/325_difficulty_1a.json index 0d812c12..46e23ed4 100644 --- a/tracks/Trash/325_difficulty_1a.json +++ b/tracks/Trash/325_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 121, - "time": 0.01884422110552764, + "time": 0.018844221105527637, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 169, - "time": 0.026381909547738697, + "time": 0.026381909547738693, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 193, - "time": 0.030150753768844223, + "time": 0.03015075376884422, "position": { "x": 2, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 241, - "time": 0.03768844221105528, + "time": 0.03768844221105527, "position": { "x": 4, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 265, - "time": 0.04145728643216081, + "noteOrder": 266, + "time": 0.0414572864321608, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 314, - "time": 0.04899497487437186, + "time": 0.048994974874371856, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 338, - "time": 0.05276381909547739, + "time": 0.052763819095477386, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 386, - "time": 0.06030150753768845, + "time": 0.06030150753768844, "position": { "x": 2, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 458, + "noteOrder": 459, "time": 0.07160804020100503, "position": { "x": 6, @@ -334,7 +334,7 @@ }, { "noteOrder": 531, - "time": 0.08291457286432162, + "time": 0.0829145728643216, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 555, - "time": 0.08668341708542715, + "time": 0.08668341708542714, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 627, - "time": 0.09798994974874373, + "noteOrder": 628, + "time": 0.09798994974874371, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 651, + "noteOrder": 652, "time": 0.10175879396984926, "position": { "x": 5, @@ -454,7 +454,7 @@ }, { "noteOrder": 676, - "time": 0.10552763819095479, + "time": 0.10552763819095477, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 772, - "time": 0.1206030150753769, + "time": 0.12060301507537688, "position": { "x": 8, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 797, "time": 0.12437185929648242, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 820, + "noteOrder": 821, "time": 0.12814070351758794, "position": { "x": 8, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 844, - "time": 0.13190954773869348, + "noteOrder": 845, + "time": 0.13190954773869346, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 941, - "time": 0.1469849246231156, + "time": 0.14698492462311558, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 941, - "time": 0.1469849246231156, + "time": 0.14698492462311558, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 965, - "time": 0.15075376884422112, + "time": 0.1507537688442211, "position": { "x": 3, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 965, - "time": 0.15075376884422112, + "time": 0.1507537688442211, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 989, - "time": 0.15452261306532664, + "noteOrder": 990, + "time": 0.15452261306532666, "position": { "x": 4, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 989, - "time": 0.15452261306532664, + "noteOrder": 990, + "time": 0.15452261306532666, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.15829145728643218, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.15829145728643218, "position": { "x": 6, @@ -894,7 +894,7 @@ }, { "noteOrder": 1062, - "time": 0.16582914572864324, + "time": 0.1658291457286432, "position": { "x": 5, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1062, - "time": 0.16582914572864324, + "time": 0.1658291457286432, "position": { "x": 2, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1110, - "time": 0.1733668341708543, + "time": 0.17336683417085427, "position": { "x": 2, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1110, - "time": 0.1733668341708543, + "time": 0.17336683417085427, "position": { "x": 5, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.18090452261306533, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.18090452261306533, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1183, "time": 0.18467336683417088, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1183, "time": 0.18467336683417088, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.1884422110552764, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.1884422110552764, "position": { "x": 7, @@ -1174,7 +1174,7 @@ }, { "noteOrder": 1255, - "time": 0.19597989949748745, + "time": 0.19597989949748743, "position": { "x": 7, "y": 0 @@ -1194,7 +1194,7 @@ }, { "noteOrder": 1255, - "time": 0.19597989949748745, + "time": 0.19597989949748743, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1328, "time": 0.20728643216080403, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1328, "time": 0.20728643216080403, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1351, - "time": 0.21105527638190957, + "noteOrder": 1352, + "time": 0.21105527638190955, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1351, - "time": 0.21105527638190957, + "noteOrder": 1352, + "time": 0.21105527638190955, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.2148241206030151, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.2148241206030151, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2185929648241206, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2185929648241206, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.23366834170854273, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.23366834170854273, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.23743718592964824, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.23743718592964824, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1544, - "time": 0.2412060301507538, + "noteOrder": 1545, + "time": 0.24120603015075376, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1568, + "noteOrder": 1569, "time": 0.2449748743718593, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1593, "time": 0.24874371859296485, "position": { "x": 7, @@ -1674,7 +1674,7 @@ }, { "noteOrder": 1665, - "time": 0.26005025125628145, + "time": 0.2600502512562814, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.26381909547738697, + "noteOrder": 1690, + "time": 0.2638190954773869, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.2675879396984925, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.271356783919598, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.271356783919598, "position": { "x": 2, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.2751256281407035, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.2751256281407035, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.2788944723618091, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.2788944723618091, "position": { "x": 2, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.29020100502512564, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.2939698492462312, + "noteOrder": 1883, + "time": 0.29396984924623115, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.2977386934673367, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.30150753768844224, + "noteOrder": 1931, + "time": 0.3015075376884422, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.30150753768844224, + "noteOrder": 1931, + "time": 0.3015075376884422, "position": { "x": 8, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.30527638190954776, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.30527638190954776, "position": { "x": 4, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.30904522613065327, + "noteOrder": 1979, + "time": 0.3090452261306533, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.30904522613065327, + "noteOrder": 1979, + "time": 0.3090452261306533, "position": { "x": 8, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2123, - "time": 0.3316582914572865, + "noteOrder": 2124, + "time": 0.3316582914572864, "position": { "x": 8, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.335427135678392, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.335427135678392, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.3391959798994975, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.3391959798994975, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2317, "time": 0.36180904522613067, "position": { "x": 2, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.36557788944723624, + "noteOrder": 2341, + "time": 0.3655778894472362, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.36557788944723624, + "noteOrder": 2341, + "time": 0.3655778894472362, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36934673366834175, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36934673366834175, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2437, - "time": 0.3806532663316583, + "noteOrder": 2438, + "time": 0.38065326633165836, "position": { "x": 7, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2485, + "noteOrder": 2486, "time": 0.3881909547738694, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.3957286432160804, "position": { "x": 6, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2582, - "time": 0.4032663316582915, + "noteOrder": 2583, + "time": 0.40326633165829145, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2630, - "time": 0.41080402010050254, + "noteOrder": 2631, + "time": 0.4108040201005025, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2679, "time": 0.4183417085427136, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2726, + "noteOrder": 2727, "time": 0.42587939698492466, "position": { "x": 8, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2775, + "noteOrder": 2776, "time": 0.4334170854271357, "position": { "x": 2, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2823, + "noteOrder": 2824, "time": 0.4409547738693468, "position": { "x": 3, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2847, - "time": 0.4447236180904523, + "noteOrder": 2848, + "time": 0.44472361809045224, "position": { "x": 4, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.4484924623115578, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2921, "time": 0.45603015075376885, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2945, "time": 0.4597989949748744, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2968, - "time": 0.46356783919597994, + "noteOrder": 2969, + "time": 0.4635678391959799, "position": { "x": 5, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3016, - "time": 0.47110552763819097, + "noteOrder": 3017, + "time": 0.4711055276381909, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.4748743718592965, "position": { "x": 6, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.47864321608040206, "position": { "x": 7, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3112, + "noteOrder": 3114, "time": 0.4861809045226131, "position": { "x": 5, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.4899497487437186, "position": { "x": 4, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 3186, "time": 0.4974874371859297, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.4993718592964824, "position": { "x": 6, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3209, - "time": 0.5012562814070353, + "noteOrder": 3210, + "time": 0.5012562814070352, "position": { "x": 4, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.5050251256281407, "position": { "x": 6, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3257, - "time": 0.5087939698492463, + "noteOrder": 3259, + "time": 0.5087939698492462, "position": { "x": 3, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3283, "time": 0.5125628140703518, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3295, "time": 0.5144472361809046, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3307, "time": 0.5163316582914573, "position": { "x": 6, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3330, - "time": 0.5201005025125629, + "noteOrder": 3331, + "time": 0.5201005025125628, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3354, + "noteOrder": 3355, "time": 0.5238693467336684, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3378, - "time": 0.5276381909547739, + "noteOrder": 3379, + "time": 0.5276381909547738, "position": { "x": 4, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3391, "time": 0.5295226130653267, "position": { "x": 6, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3402, + "noteOrder": 3403, "time": 0.5314070351758794, "position": { "x": 3, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3427, "time": 0.535175879396985, "position": { "x": 5, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.5389447236180905, + "noteOrder": 3452, + "time": 0.5389447236180904, "position": { "x": 3, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3476, "time": 0.542713567839196, "position": { "x": 6, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3486, - "time": 0.5445979899497488, + "noteOrder": 3488, + "time": 0.5445979899497487, "position": { "x": 4, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3498, + "noteOrder": 3500, "time": 0.5464824120603016, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3524, "time": 0.550251256281407, "position": { "x": 5, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3547, + "noteOrder": 3548, "time": 0.5540201005025126, "position": { "x": 7, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5653266331658292, + "noteOrder": 3621, + "time": 0.5653266331658291, "position": { "x": 3, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3643, - "time": 0.5690954773869348, + "noteOrder": 3645, + "time": 0.5690954773869347, "position": { "x": 6, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3717, "time": 0.5804020100502513, "position": { "x": 7, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3740, - "time": 0.5841708542713568, + "noteOrder": 3741, + "time": 0.5841708542713567, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3788, + "noteOrder": 3790, "time": 0.5917085427135679, "position": { "x": 6, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3814, "time": 0.5954773869346734, "position": { "x": 3, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3836, - "time": 0.5992462311557789, + "noteOrder": 3838, + "time": 0.599246231155779, "position": { "x": 7, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6180904522613065, + "noteOrder": 3958, + "time": 0.6180904522613067, "position": { "x": 5, "y": 0 @@ -3173,8 +3173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6180904522613065, + "noteOrder": 3958, + "time": 0.6180904522613067, "position": { "x": 8, "y": 0 @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6218592964824121, + "noteOrder": 3983, + "time": 0.621859296482412, "position": { "x": 4, "y": 0 @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6218592964824121, + "noteOrder": 3983, + "time": 0.621859296482412, "position": { "x": 7, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4005, - "time": 0.6256281407035177, + "noteOrder": 4007, + "time": 0.6256281407035176, "position": { "x": 4, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4005, - "time": 0.6256281407035177, + "noteOrder": 4007, + "time": 0.6256281407035176, "position": { "x": 7, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.6293969849246231, "position": { "x": 3, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.6293969849246231, "position": { "x": 6, @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.6331658291457287, "position": { "x": 3, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.6331658291457287, "position": { "x": 6, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.6369346733668343, "position": { "x": 6, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.6369346733668343, "position": { "x": 3, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.6407035175879398, + "noteOrder": 4103, + "time": 0.6407035175879396, "position": { "x": 7, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.6407035175879398, + "noteOrder": 4103, + "time": 0.6407035175879396, "position": { "x": 4, "y": 0 @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.6482412060301508, "position": { "x": 5, @@ -3453,7 +3453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.6482412060301508, "position": { "x": 2, @@ -3473,7 +3473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.6520100502512564, "position": { "x": 3, @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.6520100502512564, "position": { "x": 6, @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4198, - "time": 0.6557788944723619, + "noteOrder": 4200, + "time": 0.6557788944723618, "position": { "x": 6, "y": 0 @@ -3533,8 +3533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4198, - "time": 0.6557788944723619, + "noteOrder": 4200, + "time": 0.6557788944723618, "position": { "x": 3, "y": 0 @@ -3553,8 +3553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4222, - "time": 0.6595477386934674, + "noteOrder": 4224, + "time": 0.6595477386934673, "position": { "x": 7, "y": 0 @@ -3573,8 +3573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4222, - "time": 0.6595477386934674, + "noteOrder": 4224, + "time": 0.6595477386934673, "position": { "x": 4, "y": 0 @@ -3593,8 +3593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4246, - "time": 0.663316582914573, + "noteOrder": 4248, + "time": 0.6633165829145728, "position": { "x": 4, "y": 0 @@ -3613,8 +3613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4246, - "time": 0.663316582914573, + "noteOrder": 4248, + "time": 0.6633165829145728, "position": { "x": 7, "y": 0 @@ -3633,7 +3633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4271, + "noteOrder": 4272, "time": 0.6670854271356784, "position": { "x": 4, @@ -3653,7 +3653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4271, + "noteOrder": 4272, "time": 0.6670854271356784, "position": { "x": 7, @@ -3673,7 +3673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4296, "time": 0.670854271356784, "position": { "x": 6, @@ -3693,7 +3693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4296, "time": 0.670854271356784, "position": { "x": 3, @@ -3713,7 +3713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.678391959798995, "position": { "x": 7, @@ -3733,7 +3733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.678391959798995, "position": { "x": 4, @@ -3753,8 +3753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.6821608040201006, + "noteOrder": 4369, + "time": 0.6821608040201005, "position": { "x": 6, "y": 0 @@ -3773,8 +3773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.6821608040201006, + "noteOrder": 4369, + "time": 0.6821608040201005, "position": { "x": 3, "y": 0 @@ -3793,7 +3793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4391, + "noteOrder": 4393, "time": 0.6859296482412061, "position": { "x": 7, @@ -3813,7 +3813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4391, + "noteOrder": 4393, "time": 0.6859296482412061, "position": { "x": 4, @@ -3833,7 +3833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4415, + "noteOrder": 4417, "time": 0.6896984924623116, "position": { "x": 3, @@ -3853,7 +3853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4415, + "noteOrder": 4417, "time": 0.6896984924623116, "position": { "x": 6, @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6934673366834172, + "noteOrder": 4441, + "time": 0.6934673366834171, "position": { "x": 4, "y": 0 @@ -3893,8 +3893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6934673366834172, + "noteOrder": 4441, + "time": 0.6934673366834171, "position": { "x": 7, "y": 0 @@ -3913,7 +3913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 4465, "time": 0.6972361809045227, "position": { "x": 3, @@ -3933,7 +3933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 4465, "time": 0.6972361809045227, "position": { "x": 6, @@ -3953,8 +3953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4488, - "time": 0.7010050251256282, + "noteOrder": 4490, + "time": 0.7010050251256281, "position": { "x": 7, "y": 0 @@ -3973,8 +3973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4488, - "time": 0.7010050251256282, + "noteOrder": 4490, + "time": 0.7010050251256281, "position": { "x": 4, "y": 0 @@ -3993,7 +3993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.7085427135678393, "position": { "x": 3, @@ -4013,7 +4013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.7085427135678393, "position": { "x": 6, @@ -4033,8 +4033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4560, - "time": 0.7123115577889448, + "noteOrder": 4562, + "time": 0.7123115577889447, "position": { "x": 4, "y": 0 @@ -4053,8 +4053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4560, - "time": 0.7123115577889448, + "noteOrder": 4562, + "time": 0.7123115577889447, "position": { "x": 7, "y": 0 @@ -4073,7 +4073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.7160804020100503, "position": { "x": 3, @@ -4093,7 +4093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.7160804020100503, "position": { "x": 6, @@ -4113,7 +4113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4610, "time": 0.7198492462311559, "position": { "x": 4, @@ -4133,7 +4133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4610, "time": 0.7198492462311559, "position": { "x": 7, @@ -4153,7 +4153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4634, "time": 0.7236180904522613, "position": { "x": 6, @@ -4173,7 +4173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4634, "time": 0.7236180904522613, "position": { "x": 3, @@ -4193,8 +4193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4657, - "time": 0.7273869346733669, + "noteOrder": 4658, + "time": 0.7273869346733668, "position": { "x": 4, "y": 0 @@ -4213,8 +4213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4657, - "time": 0.7273869346733669, + "noteOrder": 4658, + "time": 0.7273869346733668, "position": { "x": 7, "y": 0 @@ -4233,8 +4233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4681, - "time": 0.7311557788944725, + "noteOrder": 4683, + "time": 0.7311557788944724, "position": { "x": 6, "y": 0 @@ -4253,8 +4253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4681, - "time": 0.7311557788944725, + "noteOrder": 4683, + "time": 0.7311557788944724, "position": { "x": 3, "y": 0 @@ -4273,7 +4273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4753, + "noteOrder": 4755, "time": 0.742462311557789, "position": { "x": 5, @@ -4293,8 +4293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4777, - "time": 0.7462311557788945, + "noteOrder": 4779, + "time": 0.7462311557788944, "position": { "x": 4, "y": 0 @@ -4313,8 +4313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4801, - "time": 0.7500000000000001, + "noteOrder": 4803, + "time": 0.75, "position": { "x": 3, "y": 0 @@ -4333,7 +4333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4827, "time": 0.7537688442211056, "position": { "x": 2, @@ -4353,7 +4353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4827, "time": 0.7537688442211056, "position": { "x": 6, @@ -4373,7 +4373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7575376884422111, "position": { "x": 6, @@ -4393,7 +4393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7575376884422111, "position": { "x": 3, @@ -4413,8 +4413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7613065326633166, + "noteOrder": 4876, + "time": 0.7613065326633167, "position": { "x": 6, "y": 0 @@ -4433,8 +4433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7613065326633166, + "noteOrder": 4876, + "time": 0.7613065326633167, "position": { "x": 2, "y": 0 @@ -4453,7 +4453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7726130653266332, "position": { "x": 5, @@ -4473,7 +4473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7763819095477388, "position": { "x": 6, @@ -4493,8 +4493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4994, - "time": 0.7801507537688442, + "noteOrder": 4996, + "time": 0.7801507537688444, "position": { "x": 7, "y": 0 @@ -4513,8 +4513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7839195979899498, + "noteOrder": 5021, + "time": 0.7839195979899497, "position": { "x": 8, "y": 0 @@ -4533,8 +4533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7839195979899498, + "noteOrder": 5021, + "time": 0.7839195979899497, "position": { "x": 4, "y": 0 @@ -4553,8 +4553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5043, - "time": 0.7876884422110554, + "noteOrder": 5045, + "time": 0.7876884422110553, "position": { "x": 7, "y": 0 @@ -4573,8 +4573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5043, - "time": 0.7876884422110554, + "noteOrder": 5045, + "time": 0.7876884422110553, "position": { "x": 4, "y": 0 @@ -4593,7 +4593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7914572864321608, "position": { "x": 8, @@ -4613,7 +4613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7914572864321608, "position": { "x": 4, @@ -4633,7 +4633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5214, "time": 0.814070351758794, "position": { "x": 8, @@ -4653,7 +4653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.8178391959798995, "position": { "x": 7, @@ -4673,7 +4673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.8178391959798995, "position": { "x": 4, @@ -4693,8 +4693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.8216080402010051, + "noteOrder": 5262, + "time": 0.821608040201005, "position": { "x": 3, "y": 0 @@ -4713,8 +4713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.8216080402010051, + "noteOrder": 5262, + "time": 0.821608040201005, "position": { "x": 6, "y": 0 @@ -4733,8 +4733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5404, - "time": 0.8442211055276383, + "noteOrder": 5407, + "time": 0.8442211055276382, "position": { "x": 2, "y": 0 @@ -4753,7 +4753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5429, + "noteOrder": 5431, "time": 0.8479899497487438, "position": { "x": 3, @@ -4773,7 +4773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5429, + "noteOrder": 5431, "time": 0.8479899497487438, "position": { "x": 6, @@ -4793,7 +4793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5453, + "noteOrder": 5455, "time": 0.8517587939698493, "position": { "x": 4, @@ -4813,7 +4813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5453, + "noteOrder": 5455, "time": 0.8517587939698493, "position": { "x": 7, @@ -4833,8 +4833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5525, - "time": 0.8630653266331659, + "noteOrder": 5527, + "time": 0.8630653266331658, "position": { "x": 7, "y": 0 @@ -4853,8 +4853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5573, - "time": 0.870603015075377, + "noteOrder": 5576, + "time": 0.8706030150753769, "position": { "x": 3, "y": 0 @@ -4873,7 +4873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5597, + "noteOrder": 5600, "time": 0.8743718592964824, "position": { "x": 7, @@ -4893,7 +4893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5612, "time": 0.8762562814070353, "position": { "x": 4, @@ -4913,7 +4913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5622, + "noteOrder": 5624, "time": 0.878140703517588, "position": { "x": 3, @@ -4933,8 +4933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5634, - "time": 0.8800251256281408, + "noteOrder": 5636, + "time": 0.8800251256281407, "position": { "x": 4, "y": 0 @@ -4953,7 +4953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5646, + "noteOrder": 5648, "time": 0.8819095477386936, "position": { "x": 7, @@ -4973,8 +4973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5815, - "time": 0.9082914572864322, + "noteOrder": 5817, + "time": 0.9082914572864321, "position": { "x": 5, "y": 0 @@ -4993,7 +4993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5841, "time": 0.9120603015075377, "position": { "x": 4, @@ -5013,7 +5013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6008, + "noteOrder": 6010, "time": 0.9384422110552765, "position": { "x": 5, @@ -5033,8 +5033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9422110552763819, + "noteOrder": 6034, + "time": 0.9422110552763818, "position": { "x": 6, "y": 0 @@ -5053,7 +5053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6107, "time": 0.9535175879396985, "position": { "x": 7, @@ -5073,7 +5073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6152, + "noteOrder": 6155, "time": 0.9610552763819096, "position": { "x": 3, @@ -5093,8 +5093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6177, - "time": 0.9648241206030151, + "noteOrder": 6179, + "time": 0.964824120603015, "position": { "x": 7, "y": 0 @@ -5113,8 +5113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6189, - "time": 0.966708542713568, + "noteOrder": 6191, + "time": 0.9667085427135679, "position": { "x": 4, "y": 0 @@ -5133,7 +5133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6201, + "noteOrder": 6203, "time": 0.9685929648241206, "position": { "x": 3, @@ -5153,8 +5153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6213, - "time": 0.9704773869346734, + "noteOrder": 6215, + "time": 0.9704773869346733, "position": { "x": 4, "y": 0 @@ -5173,7 +5173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6227, "time": 0.9723618090452262, "position": { "x": 7, @@ -5196,10 +5196,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.015075376884422112, + "time": 0.01507537688442211, "position": { "x": 7, "y": 0 @@ -5219,10 +5219,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 193, - "time": 0.030150753768844223, + "time": 0.03015075376884422, "position": { "x": 4, "y": 0 @@ -5242,7 +5242,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 290, "time": 0.04522613065326633, @@ -5265,10 +5265,10 @@ }, { "lineGroupId": 1, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 386, - "time": 0.06030150753768845, + "time": 0.06030150753768844, "position": { "x": 4, "y": 0 @@ -5288,10 +5288,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.07537688442211056, + "time": 0.07537688442211055, "position": { "x": 3, "y": 0 @@ -5311,7 +5311,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 579, "time": 0.09045226130653267, @@ -5334,10 +5334,10 @@ }, { "lineGroupId": 17, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 676, - "time": 0.10552763819095479, + "time": 0.10552763819095477, "position": { "x": 3, "y": 0 @@ -5357,10 +5357,10 @@ }, { "lineGroupId": 17, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 772, - "time": 0.1206030150753769, + "time": 0.12060301507537688, "position": { "x": 6, "y": 0 @@ -5380,7 +5380,7 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1641, "time": 0.2562814070351759, @@ -5403,9 +5403,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.2675879396984925, "position": { "x": 4, @@ -5426,7 +5426,7 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1834, "time": 0.2864321608040201, @@ -5449,9 +5449,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.2977386934673367, "position": { "x": 6, @@ -5472,9 +5472,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.31658291457286436, "position": { "x": 7, @@ -5494,11 +5494,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2051, - "time": 0.3203517587939699, + "noteOrder": 2040, + "time": 0.31846733668341715, "position": { "x": 7, "y": 0 @@ -5512,18 +5512,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2075, - "time": 0.3241206030150754, + "noteOrder": 2040, + "time": 0.31846733668341715, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5540,11 +5540,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2099, - "time": 0.32788944723618096, + "noteOrder": 2052, + "time": 0.3203517587939698, "position": { "x": 7, "y": 0 @@ -5563,13 +5563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2220, - "time": 0.3467336683417086, + "noteOrder": 2064, + "time": 0.3222361809045226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5586,13 +5586,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2244, - "time": 0.3505025125628141, + "noteOrder": 2064, + "time": 0.3222361809045226, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5604,18 +5604,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2268, - "time": 0.35427135678391963, + "noteOrder": 2076, + "time": 0.3241206030150754, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5627,18 +5627,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2292, - "time": 0.35804020100502515, + "noteOrder": 2088, + "time": 0.3260050251256282, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5655,11 +5655,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2413, - "time": 0.3768844221105528, + "noteOrder": 2088, + "time": 0.3260050251256282, "position": { "x": 6, "y": 0 @@ -5678,13 +5678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 112, "indexInLine": 1, "isSliding": false, - "noteOrder": 2461, - "time": 0.3844221105527639, + "noteOrder": 2100, + "time": 0.3278894472361809, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5696,18 +5696,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2461, - "time": 0.3844221105527639, + "noteOrder": 2112, + "time": 0.32977386934673364, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5724,13 +5724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2509, - "time": 0.3919597989949749, + "noteOrder": 2112, + "time": 0.32977386934673364, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5747,13 +5747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2509, - "time": 0.3919597989949749, + "noteOrder": 2221, + "time": 0.34673366834170855, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5765,18 +5765,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2557, - "time": 0.39949748743718594, + "noteOrder": 2233, + "time": 0.34861809045226133, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5788,18 +5788,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2557, - "time": 0.39949748743718594, + "noteOrder": 2233, + "time": 0.34861809045226133, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5816,13 +5816,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 2606, - "time": 0.407035175879397, + "noteOrder": 2245, + "time": 0.35050251256281406, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5834,18 +5834,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2606, - "time": 0.407035175879397, + "noteOrder": 2257, + "time": 0.35238693467336685, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5862,13 +5862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2654, - "time": 0.41457286432160806, + "noteOrder": 2257, + "time": 0.35238693467336685, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5885,13 +5885,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2654, - "time": 0.41457286432160806, + "noteOrder": 2269, + "time": 0.35427135678391963, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5908,13 +5908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2702, - "time": 0.42211055276381915, + "noteOrder": 2281, + "time": 0.35615577889447236, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5931,13 +5931,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2702, - "time": 0.42211055276381915, + "noteOrder": 2281, + "time": 0.35615577889447236, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5949,18 +5949,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 121, "indexInLine": 1, "isSliding": false, - "noteOrder": 2750, - "time": 0.4296482412060302, + "noteOrder": 2293, + "time": 0.35804020100502515, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5977,11 +5977,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2750, - "time": 0.4296482412060302, + "noteOrder": 2305, + "time": 0.35992462311557794, "position": { "x": 3, "y": 0 @@ -5995,18 +5995,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2799, - "time": 0.4371859296482412, + "noteOrder": 2305, + "time": 0.35992462311557794, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6018,18 +6018,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2799, - "time": 0.4371859296482412, + "noteOrder": 2414, + "time": 0.3768844221105528, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6046,11 +6046,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2871, - "time": 0.4484924623115578, + "noteOrder": 2462, + "time": 0.3844221105527638, "position": { "x": 6, "y": 0 @@ -6069,13 +6069,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2895, - "time": 0.45226130653266333, + "noteOrder": 2462, + "time": 0.3844221105527638, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6092,11 +6092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2968, - "time": 0.46356783919597994, + "noteOrder": 2510, + "time": 0.39195979899497485, "position": { "x": 4, "y": 0 @@ -6115,13 +6115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2992, - "time": 0.46733668341708545, + "noteOrder": 2510, + "time": 0.39195979899497485, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6133,18 +6133,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3064, - "time": 0.47864321608040206, + "noteOrder": 2559, + "time": 0.39949748743718594, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6156,18 +6156,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3088, - "time": 0.4824120603015076, + "noteOrder": 2559, + "time": 0.39949748743718594, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6179,16 +6179,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3137, - "time": 0.4899497487437186, + "noteOrder": 2607, + "time": 0.407035175879397, "position": { "x": 5, "y": 0 @@ -6202,16 +6202,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3571, - "time": 0.5577889447236182, + "noteOrder": 2607, + "time": 0.407035175879397, "position": { "x": 6, "y": 0 @@ -6230,11 +6230,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3619, - "time": 0.5653266331658292, + "noteOrder": 2655, + "time": 0.41457286432160806, "position": { "x": 6, "y": 0 @@ -6253,11 +6253,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3667, - "time": 0.5728643216080402, + "noteOrder": 2655, + "time": 0.41457286432160806, "position": { "x": 4, "y": 0 @@ -6276,11 +6276,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3716, - "time": 0.5804020100502513, + "noteOrder": 2703, + "time": 0.4221105527638191, "position": { "x": 4, "y": 0 @@ -6299,11 +6299,11 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4729, - "time": 0.7386934673366835, + "noteOrder": 2703, + "time": 0.4221105527638191, "position": { "x": 7, "y": 0 @@ -6322,13 +6322,13 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4801, - "time": 0.7500000000000001, + "noteOrder": 2752, + "time": 0.4296482412060302, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6345,11 +6345,11 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4922, - "time": 0.7688442211055277, + "noteOrder": 2752, + "time": 0.4296482412060302, "position": { "x": 3, "y": 0 @@ -6368,11 +6368,1000 @@ "isPlayAudio": false }, { - "lineGroupId": 260, + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2800, + "time": 0.4371859296482412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2800, + "time": 0.4371859296482412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2872, + "time": 0.4484924623115578, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2896, + "time": 0.45226130653266333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2969, + "time": 0.4635678391959799, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2993, + "time": 0.46733668341708545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3065, + "time": 0.47864321608040206, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3090, + "time": 0.4824120603015075, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3138, + "time": 0.4899497487437186, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3572, + "time": 0.5577889447236182, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3621, + "time": 0.5653266331658291, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3669, + "time": 0.5728643216080402, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3717, + "time": 0.5804020100502513, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4731, + "time": 0.7386934673366835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 250, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4803, + "time": 0.75, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7688442211055276, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 260, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4996, + "time": 0.7801507537688444, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5117, + "time": 0.7989949748743719, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5129, + "time": 0.8008793969849247, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5129, + "time": 0.8008793969849247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5141, + "time": 0.8027638190954773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5153, + "time": 0.8046482412060302, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 271, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5153, + "time": 0.8046482412060302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5165, + "time": 0.8065326633165829, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5177, + "time": 0.8084170854271356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 272, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5177, + "time": 0.8084170854271356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5189, + "time": 0.8103015075376885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5202, + "time": 0.8121859296482412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 273, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5202, + "time": 0.8121859296482412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5310, + "time": 0.8291457286432161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5322, + "time": 0.8310301507537688, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 279, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5322, + "time": 0.8310301507537688, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5334, + "time": 0.8329145728643217, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5346, + "time": 0.8347989949748744, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 280, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5346, + "time": 0.8347989949748744, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5358, + "time": 0.8366834170854272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5371, + "time": 0.83856783919598, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 281, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5371, + "time": 0.83856783919598, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5383, + "time": 0.8404522613065327, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5395, + "time": 0.8423366834170856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 282, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5395, + "time": 0.8423366834170856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 288, "indexInLine": 1, "isSliding": false, - "noteOrder": 4994, - "time": 0.7801507537688442, + "noteOrder": 5503, + "time": 0.8592964824120604, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 288, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5515, + "time": 0.8611809045226132, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 288, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5552, + "time": 0.8668341708542714, "position": { "x": 6, "y": 0 @@ -6386,16 +7375,62 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 290, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5552, + "time": 0.8668341708542714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5115, - "time": 0.7989949748743719, + "noteOrder": 5600, + "time": 0.8743718592964824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 298, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5696, + "time": 0.8894472361809045, "position": { "x": 7, "y": 0 @@ -6414,11 +7449,11 @@ "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 298, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5139, - "time": 0.8027638190954774, + "noteOrder": 5708, + "time": 0.8913316582914573, "position": { "x": 7, "y": 0 @@ -6432,18 +7467,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 272, - "indexInLine": 0, + "lineGroupId": 298, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5163, - "time": 0.806532663316583, + "noteOrder": 5708, + "time": 0.8913316582914573, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6460,11 +7495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5187, - "time": 0.8103015075376885, + "noteOrder": 5721, + "time": 0.8932160804020101, "position": { "x": 7, "y": 0 @@ -6483,13 +7518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5308, - "time": 0.8291457286432161, + "noteOrder": 5733, + "time": 0.8951005025125629, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6506,13 +7541,13 @@ "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5332, - "time": 0.8329145728643217, + "noteOrder": 5733, + "time": 0.8951005025125629, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6524,18 +7559,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5356, - "time": 0.8366834170854272, + "noteOrder": 5745, + "time": 0.8969849246231156, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6547,18 +7582,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5380, - "time": 0.8404522613065327, + "noteOrder": 5757, + "time": 0.8988693467336684, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6575,11 +7610,11 @@ "isPlayAudio": false }, { - "lineGroupId": 288, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5501, - "time": 0.8592964824120604, + "noteOrder": 5757, + "time": 0.8988693467336684, "position": { "x": 6, "y": 0 @@ -6598,13 +7633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 288, + "lineGroupId": 301, "indexInLine": 1, "isSliding": false, - "noteOrder": 5513, - "time": 0.8611809045226132, + "noteOrder": 5769, + "time": 0.9007537688442212, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6616,18 +7651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 288, + "lineGroupId": 301, "indexInLine": 2, "isSliding": false, - "noteOrder": 5549, - "time": 0.8668341708542714, + "noteOrder": 5781, + "time": 0.9026381909547738, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6639,18 +7674,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 290, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5549, - "time": 0.8668341708542714, + "noteOrder": 5781, + "time": 0.9026381909547738, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6667,13 +7702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 290, + "lineGroupId": 302, "indexInLine": 1, "isSliding": false, - "noteOrder": 5597, - "time": 0.8743718592964824, + "noteOrder": 5793, + "time": 0.9045226130653267, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6685,18 +7720,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 298, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5694, - "time": 0.8894472361809046, + "noteOrder": 5841, + "time": 0.9120603015075377, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6713,13 +7748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5718, - "time": 0.8932160804020101, + "noteOrder": 5889, + "time": 0.9195979899497488, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6736,13 +7771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5742, - "time": 0.8969849246231156, + "noteOrder": 5902, + "time": 0.9214824120603016, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6754,18 +7789,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 305, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5766, - "time": 0.9007537688442212, + "noteOrder": 5902, + "time": 0.9214824120603016, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6782,13 +7817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 302, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5791, - "time": 0.9045226130653267, + "noteOrder": 5914, + "time": 0.9233668341708544, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6805,13 +7840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 302, - "indexInLine": 1, + "lineGroupId": 306, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5839, - "time": 0.9120603015075377, + "noteOrder": 5926, + "time": 0.925251256281407, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6828,11 +7863,34 @@ "isPlayAudio": false }, { - "lineGroupId": 305, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5887, - "time": 0.9195979899497488, + "noteOrder": 5926, + "time": 0.925251256281407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 307, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5938, + "time": 0.9271356783919598, "position": { "x": 3, "y": 0 @@ -6851,11 +7909,11 @@ "isPlayAudio": false }, { - "lineGroupId": 306, - "indexInLine": 0, + "lineGroupId": 307, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5911, - "time": 0.9233668341708543, + "noteOrder": 5950, + "time": 0.9290201005025126, "position": { "x": 3, "y": 0 @@ -6869,18 +7927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 307, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5935, - "time": 0.9271356783919599, + "noteOrder": 5950, + "time": 0.9290201005025126, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6898,9 +7956,9 @@ }, { "lineGroupId": 308, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5959, + "noteOrder": 5962, "time": 0.9309045226130653, "position": { "x": 3, @@ -6919,11 +7977,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 308, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5974, + "time": 0.9327889447236182, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 308, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5974, + "time": 0.9327889447236182, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 309, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.9346733668341709, "position": { "x": 3, @@ -6944,10 +8048,10 @@ }, { "lineGroupId": 309, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6032, - "time": 0.9422110552763819, + "noteOrder": 6034, + "time": 0.9422110552763818, "position": { "x": 5, "y": 0 @@ -6967,9 +8071,9 @@ }, { "lineGroupId": 312, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6080, + "noteOrder": 6083, "time": 0.949748743718593, "position": { "x": 6, @@ -6990,10 +8094,10 @@ }, { "lineGroupId": 312, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6092, - "time": 0.9516331658291458, + "noteOrder": 6095, + "time": 0.9516331658291457, "position": { "x": 6, "y": 0 @@ -7013,9 +8117,9 @@ }, { "lineGroupId": 312, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6128, + "noteOrder": 6131, "time": 0.9572864321608041, "position": { "x": 6, @@ -7036,9 +8140,9 @@ }, { "lineGroupId": 314, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6128, + "noteOrder": 6131, "time": 0.9572864321608041, "position": { "x": 4, @@ -7059,10 +8163,10 @@ }, { "lineGroupId": 314, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6177, - "time": 0.9648241206030151, + "noteOrder": 6179, + "time": 0.964824120603015, "position": { "x": 4, "y": 0 diff --git a/tracks/Trash/325_difficulty_1b.json b/tracks/Trash/325_difficulty_1b.json index c8303250..15c03894 100644 --- a/tracks/Trash/325_difficulty_1b.json +++ b/tracks/Trash/325_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.015075376884422112, + "time": 0.01507537688442211, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 169, - "time": 0.026381909547738697, + "time": 0.026381909547738693, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 193, - "time": 0.030150753768844223, + "time": 0.03015075376884422, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 241, - "time": 0.03768844221105528, + "time": 0.03768844221105527, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 265, - "time": 0.04145728643216081, + "noteOrder": 266, + "time": 0.0414572864321608, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 338, - "time": 0.05276381909547739, + "time": 0.052763819095477386, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 386, - "time": 0.06030150753768845, + "time": 0.06030150753768844, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 458, + "noteOrder": 459, "time": 0.07160804020100503, "position": { "x": 4, @@ -254,7 +254,7 @@ }, { "noteOrder": 483, - "time": 0.07537688442211056, + "time": 0.07537688442211055, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 531, - "time": 0.08291457286432162, + "time": 0.0829145728643216, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 627, - "time": 0.09798994974874373, + "noteOrder": 628, + "time": 0.09798994974874371, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 676, - "time": 0.10552763819095479, + "time": 0.10552763819095477, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 965, - "time": 0.15075376884422112, + "time": 0.1507537688442211, "position": { "x": 4, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 965, - "time": 0.15075376884422112, + "time": 0.1507537688442211, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.15829145728643218, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.15829145728643218, "position": { "x": 4, @@ -614,7 +614,7 @@ }, { "noteOrder": 1062, - "time": 0.16582914572864324, + "time": 0.1658291457286432, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1062, - "time": 0.16582914572864324, + "time": 0.1658291457286432, "position": { "x": 2, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1110, - "time": 0.1733668341708543, + "time": 0.17336683417085427, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1110, - "time": 0.1733668341708543, + "time": 0.17336683417085427, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.18090452261306533, "position": { "x": 8, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1159, "time": 0.18090452261306533, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.1884422110552764, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.1884422110552764, "position": { "x": 3, @@ -774,7 +774,7 @@ }, { "noteOrder": 1255, - "time": 0.19597989949748745, + "time": 0.19597989949748743, "position": { "x": 4, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1255, - "time": 0.19597989949748745, + "time": 0.19597989949748743, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1351, - "time": 0.21105527638190957, + "noteOrder": 1352, + "time": 0.21105527638190955, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1351, - "time": 0.21105527638190957, + "noteOrder": 1352, + "time": 0.21105527638190955, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2185929648241206, "position": { "x": 2, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2185929648241206, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.23366834170854273, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1497, "time": 0.23366834170854273, "position": { "x": 8, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1544, - "time": 0.2412060301507538, + "noteOrder": 1545, + "time": 0.24120603015075376, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1544, - "time": 0.2412060301507538, + "noteOrder": 1545, + "time": 0.24120603015075376, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1593, "time": 0.24874371859296485, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1593, "time": 0.24874371859296485, "position": { "x": 7, @@ -1134,7 +1134,7 @@ }, { "noteOrder": 1665, - "time": 0.26005025125628145, + "time": 0.2600502512562814, "position": { "x": 4, "y": 0 @@ -1154,7 +1154,7 @@ }, { "noteOrder": 1665, - "time": 0.26005025125628145, + "time": 0.2600502512562814, "position": { "x": 8, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.26381909547738697, + "noteOrder": 1690, + "time": 0.2638190954773869, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1689, - "time": 0.26381909547738697, + "noteOrder": 1690, + "time": 0.2638190954773869, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.271356783919598, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.271356783919598, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.2751256281407035, "position": { "x": 2, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.2751256281407035, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.2788944723618091, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.2788944723618091, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.29020100502512564, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1859, "time": 0.29020100502512564, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.2939698492462312, + "noteOrder": 1883, + "time": 0.29396984924623115, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1882, - "time": 0.2939698492462312, + "noteOrder": 1883, + "time": 0.29396984924623115, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.30150753768844224, + "noteOrder": 1931, + "time": 0.3015075376884422, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.30150753768844224, + "noteOrder": 1931, + "time": 0.3015075376884422, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.30527638190954776, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.30527638190954776, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.30904522613065327, + "noteOrder": 1979, + "time": 0.3090452261306533, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1978, - "time": 0.30904522613065327, + "noteOrder": 1979, + "time": 0.3090452261306533, "position": { "x": 6, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.31658291457286436, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2027, + "noteOrder": 2028, "time": 0.31658291457286436, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2075, + "noteOrder": 2076, "time": 0.3241206030150754, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2075, + "noteOrder": 2076, "time": 0.3241206030150754, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2123, - "time": 0.3316582914572865, + "noteOrder": 2124, + "time": 0.3316582914572864, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2123, - "time": 0.3316582914572865, + "noteOrder": 2124, + "time": 0.3316582914572864, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.3391959798994975, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.3391959798994975, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2220, - "time": 0.3467336683417086, + "noteOrder": 2221, + "time": 0.34673366834170855, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2220, - "time": 0.3467336683417086, + "noteOrder": 2221, + "time": 0.34673366834170855, "position": { "x": 8, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.3505025125628141, + "noteOrder": 2245, + "time": 0.35050251256281406, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.3505025125628141, + "noteOrder": 2245, + "time": 0.35050251256281406, "position": { "x": 2, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2268, + "noteOrder": 2269, "time": 0.35427135678391963, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2268, + "noteOrder": 2269, "time": 0.35427135678391963, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2413, + "noteOrder": 2414, "time": 0.3768844221105528, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2461, - "time": 0.3844221105527639, + "noteOrder": 2462, + "time": 0.3844221105527638, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2509, - "time": 0.3919597989949749, + "noteOrder": 2510, + "time": 0.39195979899497485, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2559, "time": 0.39949748743718594, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2606, + "noteOrder": 2607, "time": 0.407035175879397, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2654, + "noteOrder": 2655, "time": 0.41457286432160806, "position": { "x": 6, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2702, - "time": 0.42211055276381915, + "noteOrder": 2703, + "time": 0.4221105527638191, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2750, + "noteOrder": 2752, "time": 0.4296482412060302, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2799, + "noteOrder": 2800, "time": 0.4371859296482412, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2847, - "time": 0.4447236180904523, + "noteOrder": 2848, + "time": 0.44472361809045224, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2896, "time": 0.45226130653266333, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2945, "time": 0.4597989949748744, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2992, + "noteOrder": 2993, "time": 0.46733668341708545, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.4748743718592965, "position": { "x": 3, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.4824120603015076, + "noteOrder": 3090, + "time": 0.4824120603015075, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3138, "time": 0.4899497487437186, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 3186, "time": 0.4974874371859297, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3209, - "time": 0.5012562814070353, + "noteOrder": 3210, + "time": 0.5012562814070352, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.5050251256281407, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3283, "time": 0.5125628140703518, "position": { "x": 4, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3307, "time": 0.5163316582914573, "position": { "x": 3, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3330, - "time": 0.5201005025125629, + "noteOrder": 3331, + "time": 0.5201005025125628, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3378, - "time": 0.5276381909547739, + "noteOrder": 3379, + "time": 0.5276381909547738, "position": { "x": 6, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3402, + "noteOrder": 3403, "time": 0.5314070351758794, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3427, "time": 0.535175879396985, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3476, "time": 0.542713567839196, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3498, + "noteOrder": 3500, "time": 0.5464824120603016, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3524, "time": 0.550251256281407, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3571, + "noteOrder": 3572, "time": 0.5577889447236182, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3595, + "noteOrder": 3596, "time": 0.5615577889447236, "position": { "x": 4, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5653266331658292, + "noteOrder": 3621, + "time": 0.5653266331658291, "position": { "x": 6, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3669, "time": 0.5728643216080402, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3693, "time": 0.5766331658291458, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3717, "time": 0.5804020100502513, "position": { "x": 4, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3764, - "time": 0.5879396984924624, + "noteOrder": 3765, + "time": 0.5879396984924623, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3788, + "noteOrder": 3790, "time": 0.5917085427135679, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3814, "time": 0.5954773869346734, "position": { "x": 6, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3836, - "time": 0.5992462311557789, + "noteOrder": 3838, + "time": 0.599246231155779, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6180904522613065, + "noteOrder": 3958, + "time": 0.6180904522613067, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3957, - "time": 0.6180904522613065, + "noteOrder": 3958, + "time": 0.6180904522613067, "position": { "x": 4, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6218592964824121, + "noteOrder": 3983, + "time": 0.621859296482412, "position": { "x": 8, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.6218592964824121, + "noteOrder": 3983, + "time": 0.621859296482412, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4005, - "time": 0.6256281407035177, + "noteOrder": 4007, + "time": 0.6256281407035176, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4005, - "time": 0.6256281407035177, + "noteOrder": 4007, + "time": 0.6256281407035176, "position": { "x": 7, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.6331658291457287, "position": { "x": 3, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.6331658291457287, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.6369346733668343, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.6369346733668343, "position": { "x": 2, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.6407035175879398, + "noteOrder": 4103, + "time": 0.6407035175879396, "position": { "x": 3, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.6407035175879398, + "noteOrder": 4103, + "time": 0.6407035175879396, "position": { "x": 6, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.6482412060301508, "position": { "x": 4, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4152, "time": 0.6482412060301508, "position": { "x": 7, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.6520100502512564, "position": { "x": 3, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4174, + "noteOrder": 4176, "time": 0.6520100502512564, "position": { "x": 6, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4198, - "time": 0.6557788944723619, + "noteOrder": 4200, + "time": 0.6557788944723618, "position": { "x": 4, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4198, - "time": 0.6557788944723619, + "noteOrder": 4200, + "time": 0.6557788944723618, "position": { "x": 7, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4246, - "time": 0.663316582914573, + "noteOrder": 4248, + "time": 0.6633165829145728, "position": { "x": 6, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4246, - "time": 0.663316582914573, + "noteOrder": 4248, + "time": 0.6633165829145728, "position": { "x": 3, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4271, + "noteOrder": 4272, "time": 0.6670854271356784, "position": { "x": 4, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4271, + "noteOrder": 4272, "time": 0.6670854271356784, "position": { "x": 7, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4296, "time": 0.670854271356784, "position": { "x": 6, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4296, "time": 0.670854271356784, "position": { "x": 3, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.678391959798995, "position": { "x": 4, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4343, + "noteOrder": 4345, "time": 0.678391959798995, "position": { "x": 7, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.6821608040201006, + "noteOrder": 4369, + "time": 0.6821608040201005, "position": { "x": 7, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4367, - "time": 0.6821608040201006, + "noteOrder": 4369, + "time": 0.6821608040201005, "position": { "x": 4, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4391, + "noteOrder": 4393, "time": 0.6859296482412061, "position": { "x": 7, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4391, + "noteOrder": 4393, "time": 0.6859296482412061, "position": { "x": 4, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6934673366834172, + "noteOrder": 4441, + "time": 0.6934673366834171, "position": { "x": 6, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4439, - "time": 0.6934673366834172, + "noteOrder": 4441, + "time": 0.6934673366834171, "position": { "x": 3, "y": 0 @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 4465, "time": 0.6972361809045227, "position": { "x": 6, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 4465, "time": 0.6972361809045227, "position": { "x": 3, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4488, - "time": 0.7010050251256282, + "noteOrder": 4490, + "time": 0.7010050251256281, "position": { "x": 6, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4488, - "time": 0.7010050251256282, + "noteOrder": 4490, + "time": 0.7010050251256281, "position": { "x": 3, "y": 0 @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.7085427135678393, "position": { "x": 4, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4538, "time": 0.7085427135678393, "position": { "x": 6, @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4560, - "time": 0.7123115577889448, + "noteOrder": 4562, + "time": 0.7123115577889447, "position": { "x": 6, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4560, - "time": 0.7123115577889448, + "noteOrder": 4562, + "time": 0.7123115577889447, "position": { "x": 4, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.7160804020100503, "position": { "x": 4, @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4586, "time": 0.7160804020100503, "position": { "x": 6, @@ -3453,7 +3453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4729, + "noteOrder": 4731, "time": 0.7386934673366835, "position": { "x": 5, @@ -3473,7 +3473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4753, + "noteOrder": 4755, "time": 0.742462311557789, "position": { "x": 7, @@ -3493,8 +3493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4777, - "time": 0.7462311557788945, + "noteOrder": 4779, + "time": 0.7462311557788944, "position": { "x": 6, "y": 0 @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4777, - "time": 0.7462311557788945, + "noteOrder": 4779, + "time": 0.7462311557788944, "position": { "x": 4, "y": 0 @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4825, + "noteOrder": 4827, "time": 0.7537688442211056, "position": { "x": 5, @@ -3553,7 +3553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4850, + "noteOrder": 4852, "time": 0.7575376884422111, "position": { "x": 3, @@ -3573,8 +3573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7613065326633166, + "noteOrder": 4876, + "time": 0.7613065326633167, "position": { "x": 4, "y": 0 @@ -3593,8 +3593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4874, - "time": 0.7613065326633166, + "noteOrder": 4876, + "time": 0.7613065326633167, "position": { "x": 6, "y": 0 @@ -3613,8 +3613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4922, - "time": 0.7688442211055277, + "noteOrder": 4924, + "time": 0.7688442211055276, "position": { "x": 4, "y": 0 @@ -3633,7 +3633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4946, + "noteOrder": 4948, "time": 0.7726130653266332, "position": { "x": 5, @@ -3653,7 +3653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7763819095477388, "position": { "x": 8, @@ -3673,7 +3673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.7763819095477388, "position": { "x": 4, @@ -3693,8 +3693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5018, - "time": 0.7839195979899498, + "noteOrder": 5021, + "time": 0.7839195979899497, "position": { "x": 6, "y": 0 @@ -3713,8 +3713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5043, - "time": 0.7876884422110554, + "noteOrder": 5045, + "time": 0.7876884422110553, "position": { "x": 5, "y": 0 @@ -3733,7 +3733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7914572864321608, "position": { "x": 6, @@ -3753,7 +3753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.7914572864321608, "position": { "x": 2, @@ -3773,7 +3773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5115, + "noteOrder": 5117, "time": 0.7989949748743719, "position": { "x": 6, @@ -3793,7 +3793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5115, + "noteOrder": 5117, "time": 0.7989949748743719, "position": { "x": 3, @@ -3813,8 +3813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.8027638190954774, + "noteOrder": 5141, + "time": 0.8027638190954773, "position": { "x": 4, "y": 0 @@ -3833,8 +3833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.8027638190954774, + "noteOrder": 5141, + "time": 0.8027638190954773, "position": { "x": 7, "y": 0 @@ -3853,8 +3853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5163, - "time": 0.806532663316583, + "noteOrder": 5165, + "time": 0.8065326633165829, "position": { "x": 6, "y": 0 @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5163, - "time": 0.806532663316583, + "noteOrder": 5165, + "time": 0.8065326633165829, "position": { "x": 3, "y": 0 @@ -3893,7 +3893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5214, "time": 0.814070351758794, "position": { "x": 7, @@ -3913,7 +3913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5214, "time": 0.814070351758794, "position": { "x": 4, @@ -3933,7 +3933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.8178391959798995, "position": { "x": 6, @@ -3953,7 +3953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5238, "time": 0.8178391959798995, "position": { "x": 3, @@ -3973,8 +3973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.8216080402010051, + "noteOrder": 5262, + "time": 0.821608040201005, "position": { "x": 4, "y": 0 @@ -3993,8 +3993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5260, - "time": 0.8216080402010051, + "noteOrder": 5262, + "time": 0.821608040201005, "position": { "x": 7, "y": 0 @@ -4013,7 +4013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5310, "time": 0.8291457286432161, "position": { "x": 6, @@ -4033,7 +4033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5310, "time": 0.8291457286432161, "position": { "x": 3, @@ -4053,7 +4053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 5334, "time": 0.8329145728643217, "position": { "x": 7, @@ -4073,7 +4073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 5334, "time": 0.8329145728643217, "position": { "x": 4, @@ -4093,7 +4093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5358, "time": 0.8366834170854272, "position": { "x": 3, @@ -4113,7 +4113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5358, "time": 0.8366834170854272, "position": { "x": 6, @@ -4133,7 +4133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 5383, "time": 0.8404522613065327, "position": { "x": 7, @@ -4153,7 +4153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 5383, "time": 0.8404522613065327, "position": { "x": 4, @@ -4173,8 +4173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5404, - "time": 0.8442211055276383, + "noteOrder": 5407, + "time": 0.8442211055276382, "position": { "x": 3, "y": 0 @@ -4193,8 +4193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5404, - "time": 0.8442211055276383, + "noteOrder": 5407, + "time": 0.8442211055276382, "position": { "x": 6, "y": 0 @@ -4213,7 +4213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5501, + "noteOrder": 5503, "time": 0.8592964824120604, "position": { "x": 4, @@ -4233,7 +4233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5549, + "noteOrder": 5552, "time": 0.8668341708542714, "position": { "x": 6, @@ -4253,7 +4253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5597, + "noteOrder": 5600, "time": 0.8743718592964824, "position": { "x": 4, @@ -4273,7 +4273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5646, + "noteOrder": 5648, "time": 0.8819095477386936, "position": { "x": 6, @@ -4293,8 +4293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5694, - "time": 0.8894472361809046, + "noteOrder": 5696, + "time": 0.8894472361809045, "position": { "x": 4, "y": 0 @@ -4313,8 +4313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5694, - "time": 0.8894472361809046, + "noteOrder": 5696, + "time": 0.8894472361809045, "position": { "x": 6, "y": 0 @@ -4333,7 +4333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5718, + "noteOrder": 5721, "time": 0.8932160804020101, "position": { "x": 3, @@ -4353,7 +4353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5718, + "noteOrder": 5721, "time": 0.8932160804020101, "position": { "x": 7, @@ -4373,7 +4373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5742, + "noteOrder": 5745, "time": 0.8969849246231156, "position": { "x": 6, @@ -4393,7 +4393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5742, + "noteOrder": 5745, "time": 0.8969849246231156, "position": { "x": 4, @@ -4413,7 +4413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5791, + "noteOrder": 5793, "time": 0.9045226130653267, "position": { "x": 4, @@ -4433,7 +4433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5791, + "noteOrder": 5793, "time": 0.9045226130653267, "position": { "x": 7, @@ -4453,8 +4453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5815, - "time": 0.9082914572864322, + "noteOrder": 5817, + "time": 0.9082914572864321, "position": { "x": 6, "y": 0 @@ -4473,8 +4473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5815, - "time": 0.9082914572864322, + "noteOrder": 5817, + "time": 0.9082914572864321, "position": { "x": 3, "y": 0 @@ -4493,7 +4493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5841, "time": 0.9120603015075377, "position": { "x": 7, @@ -4513,7 +4513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5841, "time": 0.9120603015075377, "position": { "x": 4, @@ -4533,7 +4533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5889, "time": 0.9195979899497488, "position": { "x": 4, @@ -4553,7 +4553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5889, "time": 0.9195979899497488, "position": { "x": 6, @@ -4573,8 +4573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.9233668341708543, + "noteOrder": 5914, + "time": 0.9233668341708544, "position": { "x": 7, "y": 0 @@ -4593,8 +4593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.9233668341708543, + "noteOrder": 5914, + "time": 0.9233668341708544, "position": { "x": 3, "y": 0 @@ -4613,8 +4613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5935, - "time": 0.9271356783919599, + "noteOrder": 5938, + "time": 0.9271356783919598, "position": { "x": 4, "y": 0 @@ -4633,8 +4633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5935, - "time": 0.9271356783919599, + "noteOrder": 5938, + "time": 0.9271356783919598, "position": { "x": 6, "y": 0 @@ -4653,7 +4653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.9346733668341709, "position": { "x": 3, @@ -4673,7 +4673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.9346733668341709, "position": { "x": 6, @@ -4693,7 +4693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6008, + "noteOrder": 6010, "time": 0.9384422110552765, "position": { "x": 7, @@ -4713,7 +4713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6008, + "noteOrder": 6010, "time": 0.9384422110552765, "position": { "x": 4, @@ -4733,8 +4733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9422110552763819, + "noteOrder": 6034, + "time": 0.9422110552763818, "position": { "x": 6, "y": 0 @@ -4753,8 +4753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.9422110552763819, + "noteOrder": 6034, + "time": 0.9422110552763818, "position": { "x": 3, "y": 0 @@ -4773,7 +4773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6080, + "noteOrder": 6083, "time": 0.949748743718593, "position": { "x": 4, @@ -4793,7 +4793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6080, + "noteOrder": 6083, "time": 0.949748743718593, "position": { "x": 7, @@ -4813,7 +4813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6107, "time": 0.9535175879396985, "position": { "x": 6, @@ -4833,7 +4833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6107, "time": 0.9535175879396985, "position": { "x": 3, @@ -4853,7 +4853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6128, + "noteOrder": 6131, "time": 0.9572864321608041, "position": { "x": 4, @@ -4873,7 +4873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6128, + "noteOrder": 6131, "time": 0.9572864321608041, "position": { "x": 7, @@ -4893,7 +4893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6152, + "noteOrder": 6155, "time": 0.9610552763819096, "position": { "x": 6, @@ -4913,7 +4913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6152, + "noteOrder": 6155, "time": 0.9610552763819096, "position": { "x": 3, @@ -4933,8 +4933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6177, - "time": 0.9648241206030151, + "noteOrder": 6179, + "time": 0.964824120603015, "position": { "x": 7, "y": 0 @@ -4953,8 +4953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6177, - "time": 0.9648241206030151, + "noteOrder": 6179, + "time": 0.964824120603015, "position": { "x": 4, "y": 0 diff --git a/tracks/Trash/info.json b/tracks/Trash/info.json index 7f5c69a8..a38a2135 100644 --- a/tracks/Trash/info.json +++ b/tracks/Trash/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Trash", - "SongLength": "124.316735", + "SongLength": "114.364082", "SongAuthorName": "Candy House", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Triple Cross/310_difficulty_1a.json b/tracks/Triple Cross/310_difficulty_1a.json index 10398b90..32493d49 100644 --- a/tracks/Triple Cross/310_difficulty_1a.json +++ b/tracks/Triple Cross/310_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 194, - "time": 0.020214782059380924, + "time": 0.02021478205938092, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 243, - "time": 0.025268477574226154, + "time": 0.02526847757422615, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 388, - "time": 0.04042956411876185, + "time": 0.04042956411876184, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 437, - "time": 0.04548325963360708, + "time": 0.045483259633607075, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 583, - "time": 0.06064434617814277, + "time": 0.060644346178142766, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 631, - "time": 0.065698041692988, + "time": 0.06569804169298799, "position": { "x": 5, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 874, - "time": 0.09096651926721416, + "time": 0.09096651926721415, "position": { "x": 7, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 922, + "noteOrder": 923, "time": 0.09602021478205938, "position": { "x": 5, @@ -194,7 +194,7 @@ }, { "noteOrder": 947, - "time": 0.098547062539482, + "time": 0.09854706253948198, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 1068, - "time": 0.11118130132659508, + "time": 0.11118130132659507, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1092, - "time": 0.11370814908401769, + "noteOrder": 1093, + "time": 0.11370814908401768, "position": { "x": 3, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1116, - "time": 0.11623499684144031, + "noteOrder": 1117, + "time": 0.1162349968414403, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1141, - "time": 0.11876184459886294, + "time": 0.11876184459886291, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1675, - "time": 0.17435249526216046, + "time": 0.17435249526216043, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1699, - "time": 0.1768793430195831, + "noteOrder": 1700, + "time": 0.17687934301958308, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1796, + "noteOrder": 1797, "time": 0.18698673404927355, "position": { "x": 4, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1820, - "time": 0.18951358180669617, + "noteOrder": 1821, + "time": 0.18951358180669614, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1869, - "time": 0.1945672773215414, + "noteOrder": 1870, + "time": 0.19456727732154136, "position": { "x": 5, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1893, - "time": 0.197094125078964, + "noteOrder": 1894, + "time": 0.19709412507896396, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1990, - "time": 0.20720151610865448, + "noteOrder": 1991, + "time": 0.20720151610865442, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2064, "time": 0.2147820593809223, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2087, - "time": 0.21730890713834494, + "noteOrder": 2088, + "time": 0.2173089071383449, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2184, - "time": 0.22741629816803538, + "noteOrder": 2185, + "time": 0.22741629816803535, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.229943145925458, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.23499684144030322, "position": { "x": 4, @@ -554,7 +554,7 @@ }, { "noteOrder": 2282, - "time": 0.23752368919772587, + "time": 0.23752368919772582, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.2476310802274163, + "noteOrder": 2380, + "time": 0.24763108022741628, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.25015792798483893, + "noteOrder": 2404, + "time": 0.2501579279848389, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.262792166771952, + "noteOrder": 2525, + "time": 0.26279216677195194, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2549, - "time": 0.2653190145293746, + "noteOrder": 2550, + "time": 0.26531901452937456, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2573, - "time": 0.2678458622867972, + "noteOrder": 2574, + "time": 0.26784586228679724, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.27037271004421987, "position": { "x": 5, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2718, - "time": 0.2830069488313329, + "noteOrder": 2719, + "time": 0.28300694883133287, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2743, - "time": 0.28553379658875555, + "noteOrder": 2744, + "time": 0.2855337965887555, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.2880606443461782, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2791, - "time": 0.2905874921036008, + "noteOrder": 2792, + "time": 0.29058749210360074, "position": { "x": 5, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2913, - "time": 0.30322173089071386, + "noteOrder": 2914, + "time": 0.3032217308907138, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2937, + "noteOrder": 2938, "time": 0.3057485786481364, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2961, + "noteOrder": 2962, "time": 0.30827542640555905, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2985, - "time": 0.31080227416298173, + "noteOrder": 2987, + "time": 0.3108022741629817, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3205, "time": 0.33354390397978523, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3228, + "noteOrder": 3229, "time": 0.33607075173720785, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3252, - "time": 0.3385975994946305, + "noteOrder": 3254, + "time": 0.3385975994946304, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3277, - "time": 0.3411244472520531, + "noteOrder": 3278, + "time": 0.34112444725205304, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3398, - "time": 0.3537586860391662, + "noteOrder": 3399, + "time": 0.35375868603916616, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3422, + "noteOrder": 3424, "time": 0.3562855337965888, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3447, - "time": 0.3588123815540114, + "noteOrder": 3448, + "time": 0.35881238155401135, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.36133922931143403, + "noteOrder": 3472, + "time": 0.361339229311434, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3495, - "time": 0.36386607706885665, + "noteOrder": 3496, + "time": 0.3638660770688566, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3495, - "time": 0.36386607706885665, + "noteOrder": 3496, + "time": 0.3638660770688566, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3519, - "time": 0.3663929248262793, + "noteOrder": 3521, + "time": 0.36639292482627916, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3544, - "time": 0.36891977258370184, + "noteOrder": 3545, + "time": 0.3689197725837018, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3544, - "time": 0.36891977258370184, + "noteOrder": 3545, + "time": 0.3689197725837018, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3568, - "time": 0.37144662034112447, + "noteOrder": 3569, + "time": 0.3714466203411244, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.40429564118761846, + "noteOrder": 3885, + "time": 0.4042956411876184, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3908, - "time": 0.4068224889450411, + "noteOrder": 3909, + "time": 0.406822488945041, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3932, - "time": 0.4093493367024637, + "noteOrder": 3934, + "time": 0.40934933670246365, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.41440303221730895, + "noteOrder": 3982, + "time": 0.41440303221730884, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4006, "time": 0.4169298799747315, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.41945672773215414, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.42198357548957677, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.4346178142766899, + "noteOrder": 4176, + "time": 0.4346178142766898, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4199, - "time": 0.4371446620341125, + "noteOrder": 4201, + "time": 0.4371446620341124, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4223, - "time": 0.43967150979153513, + "noteOrder": 4225, + "time": 0.4396715097915351, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4248, - "time": 0.4421983575489577, + "noteOrder": 4249, + "time": 0.44219835754895764, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4272, - "time": 0.4447252053063803, + "noteOrder": 4273, + "time": 0.44472520530638027, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4272, - "time": 0.4447252053063803, + "noteOrder": 4273, + "time": 0.44472520530638027, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4296, - "time": 0.44725205306380295, + "noteOrder": 4298, + "time": 0.4472520530638029, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4320, - "time": 0.44977890082122557, + "noteOrder": 4322, + "time": 0.4497789008212255, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4320, - "time": 0.44977890082122557, + "noteOrder": 4322, + "time": 0.4497789008212255, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4345, - "time": 0.4523057485786482, + "noteOrder": 4346, + "time": 0.4523057485786481, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.4851547694251422, + "noteOrder": 4662, + "time": 0.48515476942514213, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4684, - "time": 0.4876816171825648, + "noteOrder": 4686, + "time": 0.48768161718256475, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.49020846493998743, + "noteOrder": 4711, + "time": 0.4902084649399873, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4733, - "time": 0.49273531269741, + "noteOrder": 4735, + "time": 0.49273531269740994, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5170, - "time": 0.5382185723310171, + "noteOrder": 5172, + "time": 0.538218572331017, "position": { "x": 5, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5218, - "time": 0.5432722678458624, + "noteOrder": 5220, + "time": 0.5432722678458622, "position": { "x": 5, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5364, - "time": 0.5584333543903981, + "noteOrder": 5366, + "time": 0.558433354390398, "position": { "x": 5, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.5634870499052432, "position": { "x": 5, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5437, - "time": 0.5660138976626659, + "noteOrder": 5439, + "time": 0.5660138976626657, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5461, + "noteOrder": 5463, "time": 0.5685407454200885, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5485, - "time": 0.5710675931775111, + "noteOrder": 5488, + "time": 0.571067593177511, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5558, - "time": 0.578648136449779, + "noteOrder": 5560, + "time": 0.5786481364497789, "position": { "x": 5, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5655, - "time": 0.5887555274794694, + "noteOrder": 5657, + "time": 0.5887555274794692, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5825, - "time": 0.6064434617814277, + "noteOrder": 5827, + "time": 0.6064434617814276, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5849, + "noteOrder": 5852, "time": 0.6089703095388502, "position": { "x": 5, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5874, + "noteOrder": 5876, "time": 0.6114971572962729, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5947, - "time": 0.6190777005685408, + "noteOrder": 5949, + "time": 0.6190777005685407, "position": { "x": 5, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5995, - "time": 0.6241313960833861, + "noteOrder": 5997, + "time": 0.624131396083386, "position": { "x": 5, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6141, - "time": 0.6392924826279217, + "noteOrder": 6143, + "time": 0.6392924826279216, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6189, + "noteOrder": 6192, "time": 0.644346178142767, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6214, - "time": 0.6468730259001896, + "noteOrder": 6216, + "time": 0.6468730259001895, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6238, - "time": 0.6493998736576122, + "noteOrder": 6240, + "time": 0.6493998736576121, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6262, - "time": 0.6519267214150348, + "noteOrder": 6265, + "time": 0.6519267214150347, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6335, + "noteOrder": 6337, "time": 0.6595072646873026, "position": { "x": 5, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6432, - "time": 0.6696146557169931, + "noteOrder": 6434, + "time": 0.669614655716993, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6553, - "time": 0.6822488945041062, + "noteOrder": 6556, + "time": 0.6822488945041061, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6578, + "noteOrder": 6580, "time": 0.6847757422615287, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6650, + "noteOrder": 6653, "time": 0.6923562855337966, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6675, + "noteOrder": 6677, "time": 0.6948831332912192, "position": { "x": 5, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6699, - "time": 0.6974099810486418, + "noteOrder": 6702, + "time": 0.6974099810486417, "position": { "x": 7, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6723, + "noteOrder": 6726, "time": 0.6999368288060644, "position": { "x": 3, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6748, - "time": 0.7024636765634872, + "noteOrder": 6750, + "time": 0.702463676563487, "position": { "x": 4, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6748, - "time": 0.7024636765634872, + "noteOrder": 6750, + "time": 0.702463676563487, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6772, - "time": 0.7049905243209098, + "noteOrder": 6774, + "time": 0.7049905243209096, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6772, - "time": 0.7049905243209098, + "noteOrder": 6774, + "time": 0.7049905243209096, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6942, - "time": 0.7226784586228681, + "noteOrder": 6944, + "time": 0.722678458622868, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 7136, - "time": 0.7428932406822489, + "noteOrder": 7139, + "time": 0.7428932406822488, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 7330, + "noteOrder": 7333, "time": 0.7631080227416298, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 7427, - "time": 0.7732154137713203, + "noteOrder": 7430, + "time": 0.7732154137713202, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 7451, + "noteOrder": 7454, "time": 0.7757422615287429, "position": { "x": 4, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 7524, - "time": 0.7833228048010109, + "noteOrder": 7527, + "time": 0.7833228048010107, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 7621, - "time": 0.7934301958307013, + "noteOrder": 7624, + "time": 0.7934301958307012, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 7767, - "time": 0.8085912823752369, + "noteOrder": 7770, + "time": 0.8085912823752368, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 7791, + "noteOrder": 7794, "time": 0.8111181301326595, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 7815, - "time": 0.8136449778900822, + "noteOrder": 7818, + "time": 0.813644977890082, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 7840, + "noteOrder": 7843, "time": 0.8161718256475048, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 7961, - "time": 0.8288060644346179, + "noteOrder": 7964, + "time": 0.8288060644346177, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 7985, - "time": 0.8313329121920405, + "noteOrder": 7988, + "time": 0.8313329121920404, "position": { "x": 4, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 8010, + "noteOrder": 8013, "time": 0.833859759949463, "position": { "x": 6, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 8034, - "time": 0.8363866077068857, + "noteOrder": 8037, + "time": 0.8363866077068856, "position": { "x": 7, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 8495, - "time": 0.8843967150979154, + "noteOrder": 8498, + "time": 0.8843967150979153, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 8592, - "time": 0.8945041061276059, + "noteOrder": 8595, + "time": 0.8945041061276058, "position": { "x": 5, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 8689, - "time": 0.9046114971572964, + "noteOrder": 8693, + "time": 0.9046114971572962, "position": { "x": 6, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 8786, - "time": 0.9147188881869868, + "noteOrder": 8790, + "time": 0.9147188881869867, "position": { "x": 4, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 8883, - "time": 0.9248262792166773, + "noteOrder": 8887, + "time": 0.9248262792166771, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 8981, + "noteOrder": 8984, "time": 0.9349336702463676, "position": { "x": 4, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 9078, - "time": 0.9450410612760581, + "noteOrder": 9081, + "time": 0.945041061276058, "position": { "x": 7, "y": 0 @@ -2616,10 +2616,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.010107391029690462, + "time": 0.01010739102969046, "position": { "x": 7, "y": 0 @@ -2639,10 +2639,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.015161086544535693, + "time": 0.015161086544535692, "position": { "x": 7, "y": 0 @@ -2662,10 +2662,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.010107391029690462, + "time": 0.01010739102969046, "position": { "x": 3, "y": 0 @@ -2685,10 +2685,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.015161086544535693, + "time": 0.015161086544535692, "position": { "x": 3, "y": 0 @@ -2708,10 +2708,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.030322173089071387, + "time": 0.030322173089071383, "position": { "x": 3, "y": 0 @@ -2731,10 +2731,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.035375868603916616, + "time": 0.03537586860391661, "position": { "x": 3, "y": 0 @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.030322173089071387, + "time": 0.030322173089071383, "position": { "x": 5, "y": 0 @@ -2777,10 +2777,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.035375868603916616, + "time": 0.03537586860391661, "position": { "x": 5, "y": 0 @@ -2800,10 +2800,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 485, - "time": 0.05053695514845231, + "noteOrder": 486, + "time": 0.0505369551484523, "position": { "x": 5, "y": 0 @@ -2823,10 +2823,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, - "time": 0.05559065066329754, + "time": 0.05559065066329753, "position": { "x": 5, "y": 0 @@ -2846,10 +2846,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 485, - "time": 0.05053695514845231, + "noteOrder": 486, + "time": 0.0505369551484523, "position": { "x": 7, "y": 0 @@ -2869,10 +2869,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, - "time": 0.05559065066329754, + "time": 0.05559065066329753, "position": { "x": 7, "y": 0 @@ -2892,10 +2892,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.07075173720783323, + "time": 0.07075173720783322, "position": { "x": 7, "y": 0 @@ -2915,10 +2915,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 728, - "time": 0.07580543272267846, + "time": 0.07580543272267845, "position": { "x": 7, "y": 0 @@ -2938,10 +2938,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.07075173720783323, + "time": 0.07075173720783322, "position": { "x": 3, "y": 0 @@ -2961,10 +2961,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 728, - "time": 0.07580543272267846, + "time": 0.07580543272267845, "position": { "x": 3, "y": 0 @@ -2984,10 +2984,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 971, - "time": 0.10107391029690461, + "time": 0.1010739102969046, "position": { "x": 4, "y": 0 @@ -3007,10 +3007,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 995, - "time": 0.10360075805432724, + "noteOrder": 996, + "time": 0.10360075805432721, "position": { "x": 4, "y": 0 @@ -3030,10 +3030,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1019, - "time": 0.10612760581174985, + "noteOrder": 1020, + "time": 0.10612760581174983, "position": { "x": 6, "y": 0 @@ -3053,10 +3053,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, - "time": 0.10865445356917247, + "time": 0.10865445356917244, "position": { "x": 6, "y": 0 @@ -3076,10 +3076,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1165, - "time": 0.12128869235628555, + "time": 0.12128869235628553, "position": { "x": 6, "y": 0 @@ -3099,10 +3099,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1189, - "time": 0.12381554011370816, + "noteOrder": 1190, + "time": 0.12381554011370814, "position": { "x": 6, "y": 0 @@ -3122,10 +3122,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1214, - "time": 0.12634238787113078, + "time": 0.12634238787113075, "position": { "x": 4, "y": 0 @@ -3145,10 +3145,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1238, - "time": 0.1288692356285534, + "time": 0.12886923562855337, "position": { "x": 4, "y": 0 @@ -3168,10 +3168,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.131396083385976, + "noteOrder": 1263, + "time": 0.13139608338597597, "position": { "x": 7, "y": 0 @@ -3191,10 +3191,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1311, - "time": 0.13644977890082124, + "time": 0.13644977890082122, "position": { "x": 7, "y": 0 @@ -3214,10 +3214,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.131396083385976, + "noteOrder": 1263, + "time": 0.13139608338597597, "position": { "x": 3, "y": 0 @@ -3237,10 +3237,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1311, - "time": 0.13644977890082124, + "time": 0.13644977890082122, "position": { "x": 3, "y": 0 @@ -3260,10 +3260,33 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1335, - "time": 0.13897662665824387, + "time": 0.13897662665824384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1360, + "time": 0.14150347441566644, "position": { "x": 6, "y": 0 @@ -3281,11 +3304,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1360, + "time": 0.14150347441566644, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1383, + "noteOrder": 1384, "time": 0.1440303221730891, "position": { "x": 4, @@ -3304,11 +3350,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1408, + "time": 0.14655716993051168, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1408, + "time": 0.14655716993051168, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1432, + "noteOrder": 1433, "time": 0.1490840176879343, "position": { "x": 7, @@ -3329,10 +3421,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1505, - "time": 0.15666456096020218, + "time": 0.15666456096020215, "position": { "x": 7, "y": 0 @@ -3352,10 +3444,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, - "time": 0.15161086544535693, + "noteOrder": 1457, + "time": 0.1516108654453569, "position": { "x": 5, "y": 0 @@ -3375,10 +3467,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1505, - "time": 0.15666456096020218, + "time": 0.15666456096020215, "position": { "x": 5, "y": 0 @@ -3398,10 +3490,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1529, - "time": 0.15919140871762477, + "noteOrder": 1530, + "time": 0.15919140871762474, "position": { "x": 3, "y": 0 @@ -3421,9 +3513,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.16677195198989261, "position": { "x": 3, @@ -3444,10 +3536,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1553, - "time": 0.1617182564750474, + "noteOrder": 1554, + "time": 0.16171825647504737, "position": { "x": 5, "y": 0 @@ -3467,9 +3559,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.16677195198989261, "position": { "x": 5, @@ -3490,9 +3582,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1650, + "noteOrder": 1651, "time": 0.17182564750473783, "position": { "x": 7, @@ -3513,10 +3605,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.1768793430195831, + "noteOrder": 1700, + "time": 0.17687934301958308, "position": { "x": 7, "y": 0 @@ -3536,7 +3628,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1845, "time": 0.19204042956411876, @@ -3559,10 +3651,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1869, - "time": 0.1945672773215414, + "noteOrder": 1870, + "time": 0.19456727732154136, "position": { "x": 3, "y": 0 @@ -3582,10 +3674,10 @@ }, { "lineGroupId": 44, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1893, - "time": 0.197094125078964, + "noteOrder": 1894, + "time": 0.19709412507896396, "position": { "x": 3, "y": 0 @@ -3605,10 +3697,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2039, - "time": 0.2122552116234997, + "noteOrder": 2040, + "time": 0.21225521162349967, "position": { "x": 5, "y": 0 @@ -3628,10 +3720,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2087, - "time": 0.21730890713834494, + "noteOrder": 2088, + "time": 0.2173089071383449, "position": { "x": 5, "y": 0 @@ -3651,10 +3743,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2233, - "time": 0.23246999368288063, + "noteOrder": 2234, + "time": 0.2324699936828806, "position": { "x": 5, "y": 0 @@ -3674,10 +3766,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2282, - "time": 0.23752368919772587, + "time": 0.23752368919772582, "position": { "x": 5, "y": 0 @@ -3697,10 +3789,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2427, - "time": 0.25268477574226156, + "noteOrder": 2428, + "time": 0.2526847757422615, "position": { "x": 6, "y": 0 @@ -3719,11 +3811,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.2577384712571068, + "noteOrder": 2452, + "time": 0.2552116234996841, "position": { "x": 6, "y": 0 @@ -3737,18 +3829,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2621, - "time": 0.2728995578016425, + "noteOrder": 2452, + "time": 0.2552116234996841, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3760,18 +3852,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2670, - "time": 0.27795325331648774, + "noteOrder": 2477, + "time": 0.25773847125710675, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3783,16 +3875,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2816, - "time": 0.29311433986102337, + "noteOrder": 2501, + "time": 0.2602653190145294, "position": { "x": 6, "y": 0 @@ -3806,18 +3898,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2864, - "time": 0.2981680353758686, + "noteOrder": 2501, + "time": 0.2602653190145294, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3834,13 +3926,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3010, - "time": 0.31332912192040435, + "noteOrder": 2622, + "time": 0.27289955780164243, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3857,13 +3949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3095, - "time": 0.3221730890713835, + "noteOrder": 2647, + "time": 0.27542640555906506, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3880,13 +3972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3058, - "time": 0.31838281743524954, + "noteOrder": 2647, + "time": 0.27542640555906506, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3898,18 +3990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3095, - "time": 0.3221730890713835, + "noteOrder": 2671, + "time": 0.2779532533164877, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3926,13 +4018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3301, - "time": 0.34365129500947567, + "noteOrder": 2695, + "time": 0.28048010107391025, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3949,13 +4041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3349, - "time": 0.3487049905243209, + "noteOrder": 2695, + "time": 0.28048010107391025, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3967,18 +4059,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3592, - "time": 0.3739734680985471, + "noteOrder": 2817, + "time": 0.29311433986102337, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3995,13 +4087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3665, - "time": 0.3815540113708149, + "noteOrder": 2841, + "time": 0.295641187618446, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4018,13 +4110,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3689, - "time": 0.38408085912823753, + "noteOrder": 2841, + "time": 0.295641187618446, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4036,18 +4128,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 3762, - "time": 0.39166140240050545, + "noteOrder": 2865, + "time": 0.2981680353758686, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4064,11 +4156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3786, - "time": 0.394188250157928, + "noteOrder": 2889, + "time": 0.3006948831332912, "position": { "x": 4, "y": 0 @@ -4087,13 +4179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, - "isSliding": false, - "noteOrder": 3811, - "time": 0.39671509791535065, + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2889, + "time": 0.3006948831332912, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4110,13 +4202,59 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.39671509791535065, + "noteOrder": 3011, + "time": 0.3133291219204043, "position": { - "x": 5, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3096, + "time": 0.3221730890713835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3059, + "time": 0.3183828174352495, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4133,11 +4271,80 @@ "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3096, + "time": 0.3221730890713835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 3835, - "time": 0.39924194567277327, + "noteOrder": 3302, + "time": 0.34365129500947567, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3327, + "time": 0.3461781427668983, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3327, + "time": 0.3461781427668983, "position": { "x": 5, "y": 0 @@ -4156,13 +4363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3835, - "time": 0.39924194567277327, + "noteOrder": 3351, + "time": 0.34870499052432086, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4179,11 +4386,80 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3375, + "time": 0.3512318382817435, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3375, + "time": 0.3512318382817435, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 3859, - "time": 0.4017687934301959, + "noteOrder": 3594, + "time": 0.3739734680985471, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3666, + "time": 0.3815540113708149, "position": { "x": 7, "y": 0 @@ -4197,18 +4473,1053 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3691, + "time": 0.38408085912823753, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3764, + "time": 0.39166140240050534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4078, - "time": 0.4245104232469994, + "noteOrder": 3788, + "time": 0.3941882501579279, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3812, + "time": 0.3967150979153506, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3812, + "time": 0.3967150979153506, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3836, + "time": 0.3992419456727732, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3836, + "time": 0.3992419456727732, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3861, + "time": 0.40176879343019584, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4079, + "time": 0.42451042324699934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4103, + "time": 0.42703727100442196, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4103, + "time": 0.42703727100442196, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4128, + "time": 0.4295641187618446, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4152, + "time": 0.43209096651926715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4152, + "time": 0.43209096651926715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4371, + "time": 0.4548325963360707, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4443, + "time": 0.4624131396083386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4468, + "time": 0.4649399873657612, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4541, + "time": 0.472520530638029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4565, + "time": 0.47504737839545164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4589, + "time": 0.47757422615287426, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4589, + "time": 0.47757422615287426, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4613, + "time": 0.4801010739102969, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4613, + "time": 0.4801010739102969, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4638, + "time": 0.4826279216677195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.49526216045483257, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4953, + "time": 0.5154769425142135, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4978, + "time": 0.5180037902716361, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5050, + "time": 0.5255843335439039, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4759, + "time": 0.49526216045483257, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5002, + "time": 0.5205306380290587, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5026, + "time": 0.5230574857864814, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5050, + "time": 0.5255843335439039, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5148, + "time": 0.5356917245735945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5172, + "time": 0.538218572331017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5196, + "time": 0.5407454200884397, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5220, + "time": 0.5432722678458622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5245, + "time": 0.5457991156032849, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5269, + "time": 0.5483259633607075, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5269, + "time": 0.5483259633607075, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5293, + "time": 0.5508528111181301, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5318, + "time": 0.5533796588755526, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5318, + "time": 0.5533796588755526, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5342, + "time": 0.5559065066329754, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5366, + "time": 0.558433354390398, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5390, + "time": 0.5609602021478205, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5415, + "time": 0.5634870499052432, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4220,18 +5531,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4126, - "time": 0.4295641187618446, + "noteOrder": 5536, + "time": 0.5761212886923563, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4248,11 +5559,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4369, - "time": 0.45483259633607076, + "noteOrder": 5560, + "time": 0.5786481364497789, "position": { "x": 3, "y": 0 @@ -4266,18 +5577,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4442, - "time": 0.46241313960833863, + "noteOrder": 5585, + "time": 0.5811749842072015, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4289,16 +5600,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.46493998736576125, + "noteOrder": 5633, + "time": 0.5862286797220467, "position": { "x": 7, "y": 0 @@ -4312,16 +5623,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4539, - "time": 0.47252053063802907, + "noteOrder": 5657, + "time": 0.5887555274794692, "position": { "x": 7, "y": 0 @@ -4335,18 +5646,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4563, - "time": 0.47504737839545175, + "noteOrder": 5682, + "time": 0.591282375236892, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4358,18 +5669,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 162, "indexInLine": 1, "isSliding": false, - "noteOrder": 4587, - "time": 0.47757422615287437, + "noteOrder": 5730, + "time": 0.5963360707517372, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4386,13 +5697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4587, - "time": 0.47757422615287437, + "noteOrder": 5755, + "time": 0.5988629185091598, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4404,18 +5715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4612, - "time": 0.48010107391029694, + "noteOrder": 5755, + "time": 0.5988629185091598, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4427,16 +5738,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4612, - "time": 0.48010107391029694, + "noteOrder": 5779, + "time": 0.6013897662665824, "position": { "x": 3, "y": 0 @@ -4450,16 +5761,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4636, - "time": 0.48262792166771956, + "noteOrder": 5803, + "time": 0.6039166140240051, "position": { "x": 3, "y": 0 @@ -4473,18 +5784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4757, - "time": 0.4952621604548326, + "noteOrder": 5803, + "time": 0.6039166140240051, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4501,11 +5812,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.5154769425142136, + "noteOrder": 5925, + "time": 0.6165508528111181, "position": { "x": 3, "y": 0 @@ -4524,13 +5835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 167, "indexInLine": 2, "isSliding": false, - "noteOrder": 4976, - "time": 0.5180037902716362, + "noteOrder": 5949, + "time": 0.6190777005685407, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4547,13 +5858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 3, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5049, - "time": 0.525584333543904, + "noteOrder": 5973, + "time": 0.6216045483259633, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4565,16 +5876,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4757, - "time": 0.4952621604548326, + "noteOrder": 5997, + "time": 0.624131396083386, "position": { "x": 7, "y": 0 @@ -4593,13 +5904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 5000, - "time": 0.5205306380290589, + "noteOrder": 6022, + "time": 0.6266582438408086, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4611,18 +5922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 171, "indexInLine": 2, "isSliding": false, - "noteOrder": 5024, - "time": 0.5230574857864814, + "noteOrder": 6046, + "time": 0.6291850915982311, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4634,18 +5945,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 171, "indexInLine": 3, "isSliding": false, - "noteOrder": 5049, - "time": 0.525584333543904, + "noteOrder": 6046, + "time": 0.6291850915982311, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4657,18 +5968,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5146, - "time": 0.5356917245735944, + "noteOrder": 6070, + "time": 0.6317119393556538, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4685,13 +5996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5170, - "time": 0.5382185723310171, + "noteOrder": 6095, + "time": 0.6342387871130764, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4708,13 +6019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5194, - "time": 0.5407454200884397, + "noteOrder": 6095, + "time": 0.6342387871130764, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4726,16 +6037,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 5218, - "time": 0.5432722678458624, + "noteOrder": 6119, + "time": 0.636765634870499, "position": { "x": 3, "y": 0 @@ -4754,13 +6065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5243, - "time": 0.545799115603285, + "noteOrder": 6143, + "time": 0.6392924826279216, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4772,18 +6083,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5291, - "time": 0.5508528111181302, + "noteOrder": 6167, + "time": 0.6418193303853442, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4800,13 +6111,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5340, - "time": 0.5559065066329755, + "noteOrder": 6192, + "time": 0.644346178142767, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4818,16 +6129,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 5364, - "time": 0.5584333543903981, + "noteOrder": 6313, + "time": 0.6569804169298799, "position": { "x": 7, "y": 0 @@ -4841,18 +6152,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5388, - "time": 0.5609602021478206, + "noteOrder": 6337, + "time": 0.6595072646873026, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4864,18 +6175,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5413, - "time": 0.5634870499052432, + "noteOrder": 6362, + "time": 0.6620341124447252, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4887,16 +6198,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5534, - "time": 0.5761212886923563, + "noteOrder": 6410, + "time": 0.6670878079595705, "position": { "x": 3, "y": 0 @@ -4915,11 +6226,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5558, - "time": 0.578648136449779, + "noteOrder": 6434, + "time": 0.669614655716993, "position": { "x": 3, "y": 0 @@ -4938,11 +6249,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 2, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5582, - "time": 0.5811749842072016, + "noteOrder": 6459, + "time": 0.6721415034744157, "position": { "x": 7, "y": 0 @@ -4961,11 +6272,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5631, - "time": 0.5862286797220467, + "noteOrder": 6507, + "time": 0.6771951989892608, "position": { "x": 7, "y": 0 @@ -4979,16 +6290,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5655, - "time": 0.5887555274794694, + "noteOrder": 6532, + "time": 0.6797220467466835, "position": { "x": 7, "y": 0 @@ -5002,18 +6313,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5680, - "time": 0.591282375236892, + "noteOrder": 6532, + "time": 0.6797220467466835, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5025,18 +6336,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5728, - "time": 0.5963360707517372, + "noteOrder": 6604, + "time": 0.6873025900189513, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5048,16 +6359,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5777, - "time": 0.6013897662665825, + "noteOrder": 6629, + "time": 0.689829437776374, "position": { "x": 3, "y": 0 @@ -5076,13 +6387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5922, - "time": 0.6165508528111181, + "noteOrder": 6629, + "time": 0.689829437776374, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5099,13 +6410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 5947, - "time": 0.6190777005685408, + "noteOrder": 6896, + "time": 0.7176247631080227, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5117,18 +6428,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5971, - "time": 0.6216045483259635, + "noteOrder": 6993, + "time": 0.7277321541377132, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5145,13 +6456,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 5995, - "time": 0.6241313960833861, + "noteOrder": 6993, + "time": 0.7277321541377132, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5163,16 +6474,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6019, - "time": 0.6266582438408087, + "noteOrder": 7017, + "time": 0.7302590018951358, "position": { "x": 3, "y": 0 @@ -5191,13 +6502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6068, - "time": 0.631711939355654, + "noteOrder": 7017, + "time": 0.7302590018951358, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5209,16 +6520,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6116, - "time": 0.6367656348704991, + "noteOrder": 7041, + "time": 0.7327858496525583, "position": { "x": 3, "y": 0 @@ -5232,16 +6543,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6141, - "time": 0.6392924826279217, + "noteOrder": 7066, + "time": 0.7353126974099811, "position": { "x": 3, "y": 0 @@ -5255,16 +6566,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6165, - "time": 0.6418193303853443, + "noteOrder": 7066, + "time": 0.7353126974099811, "position": { "x": 4, "y": 0 @@ -5278,18 +6589,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 6189, - "time": 0.644346178142767, + "noteOrder": 7090, + "time": 0.7378395451674036, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5306,13 +6617,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6311, - "time": 0.6569804169298801, + "noteOrder": 7187, + "time": 0.7479469361970942, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5329,11 +6640,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 206, "indexInLine": 1, "isSliding": false, - "noteOrder": 6335, - "time": 0.6595072646873026, + "noteOrder": 7187, + "time": 0.7479469361970942, "position": { "x": 7, "y": 0 @@ -5347,18 +6658,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 206, "indexInLine": 2, "isSliding": false, - "noteOrder": 6359, - "time": 0.6620341124447252, + "noteOrder": 7211, + "time": 0.7504737839545167, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5370,18 +6681,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6408, - "time": 0.6670878079595705, + "noteOrder": 7211, + "time": 0.7504737839545167, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5398,13 +6709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 6432, - "time": 0.6696146557169931, + "noteOrder": 7236, + "time": 0.7530006317119393, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5416,16 +6727,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 207, "indexInLine": 2, "isSliding": false, - "noteOrder": 6456, - "time": 0.6721415034744157, + "noteOrder": 7260, + "time": 0.7555274794693619, "position": { "x": 7, "y": 0 @@ -5439,18 +6750,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6505, - "time": 0.677195198989261, + "noteOrder": 7260, + "time": 0.7555274794693619, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5462,18 +6773,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6602, - "time": 0.6873025900189513, + "noteOrder": 7284, + "time": 0.7580543272267846, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5485,18 +6796,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6893, - "time": 0.7176247631080228, + "noteOrder": 7381, + "time": 0.7681617182564751, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5513,13 +6824,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, + "lineGroupId": 210, "indexInLine": 1, "isSliding": false, - "noteOrder": 6990, - "time": 0.7277321541377133, + "noteOrder": 7381, + "time": 0.7681617182564751, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5531,16 +6842,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6990, - "time": 0.7277321541377133, + "noteOrder": 7406, + "time": 0.7706885660138977, "position": { "x": 3, "y": 0 @@ -5559,13 +6870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7039, - "time": 0.7327858496525586, + "noteOrder": 7406, + "time": 0.7706885660138977, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5577,16 +6888,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7087, - "time": 0.7378395451674037, + "noteOrder": 7479, + "time": 0.7782691092861654, "position": { "x": 3, "y": 0 @@ -5605,11 +6916,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7184, - "time": 0.7479469361970942, + "noteOrder": 7576, + "time": 0.7883765003158558, "position": { "x": 6, "y": 0 @@ -5628,11 +6939,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7184, - "time": 0.7479469361970942, + "noteOrder": 7576, + "time": 0.7883765003158558, "position": { "x": 7, "y": 0 @@ -5651,11 +6962,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7233, - "time": 0.7530006317119394, + "noteOrder": 7600, + "time": 0.7909033480732786, "position": { "x": 7, "y": 0 @@ -5669,18 +6980,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7281, - "time": 0.7580543272267847, + "noteOrder": 7600, + "time": 0.7909033480732786, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5697,13 +7008,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7379, - "time": 0.7681617182564751, + "noteOrder": 7624, + "time": 0.7934301958307012, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5720,13 +7031,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7379, - "time": 0.7681617182564751, + "noteOrder": 7624, + "time": 0.7934301958307012, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5738,18 +7049,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7476, - "time": 0.7782691092861656, + "noteOrder": 7867, + "time": 0.8186986734049273, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5761,18 +7072,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7573, - "time": 0.788376500315856, + "noteOrder": 7916, + "time": 0.8237523689197725, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5784,18 +7095,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7573, - "time": 0.788376500315856, + "noteOrder": 7916, + "time": 0.8237523689197725, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5807,18 +7118,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7864, - "time": 0.8186986734049274, + "noteOrder": 7964, + "time": 0.8288060644346177, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5830,18 +7141,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, + "lineGroupId": 229, "indexInLine": 1, "isSliding": false, - "noteOrder": 7913, - "time": 0.8237523689197727, + "noteOrder": 8061, + "time": 0.8389134554643083, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5853,16 +7164,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7913, - "time": 0.8237523689197727, + "noteOrder": 8110, + "time": 0.8439671509791535, "position": { "x": 5, "y": 0 @@ -5881,13 +7192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 7961, - "time": 0.8288060644346179, + "noteOrder": 8134, + "time": 0.846493998736576, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5899,18 +7210,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8058, - "time": 0.8389134554643083, + "noteOrder": 8158, + "time": 0.8490208464939987, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5922,18 +7233,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, + "lineGroupId": 231, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 8158, + "time": 0.8490208464939987, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 8107, - "time": 0.8439671509791535, + "noteOrder": 8183, + "time": 0.8515476942514213, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5950,13 +7284,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8131, - "time": 0.8464939987365762, + "noteOrder": 8207, + "time": 0.8540745420088439, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5968,18 +7302,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8180, - "time": 0.8515476942514214, + "noteOrder": 8207, + "time": 0.8540745420088439, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5997,10 +7331,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8228, - "time": 0.8566013897662667, + "noteOrder": 8231, + "time": 0.8566013897662665, "position": { "x": 7, "y": 0 @@ -6020,10 +7354,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8301, - "time": 0.8641819330385344, + "noteOrder": 8304, + "time": 0.8641819330385343, "position": { "x": 7, "y": 0 @@ -6043,9 +7377,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8252, + "noteOrder": 8256, "time": 0.8591282375236892, "position": { "x": 5, @@ -6066,10 +7400,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8301, - "time": 0.8641819330385344, + "noteOrder": 8304, + "time": 0.8641819330385343, "position": { "x": 5, "y": 0 @@ -6089,10 +7423,10 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8325, - "time": 0.8667087807959571, + "noteOrder": 8328, + "time": 0.866708780795957, "position": { "x": 3, "y": 0 @@ -6112,10 +7446,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8398, - "time": 0.874289324068225, + "noteOrder": 8401, + "time": 0.8742893240682248, "position": { "x": 3, "y": 0 @@ -6135,10 +7469,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8349, - "time": 0.8692356285533798, + "noteOrder": 8353, + "time": 0.8692356285533795, "position": { "x": 5, "y": 0 @@ -6158,10 +7492,10 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8398, - "time": 0.874289324068225, + "noteOrder": 8401, + "time": 0.8742893240682248, "position": { "x": 5, "y": 0 @@ -6181,10 +7515,10 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8447, - "time": 0.8793430195830703, + "noteOrder": 8450, + "time": 0.8793430195830702, "position": { "x": 7, "y": 0 @@ -6204,10 +7538,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8495, - "time": 0.8843967150979154, + "noteOrder": 8498, + "time": 0.8843967150979153, "position": { "x": 7, "y": 0 @@ -6227,10 +7561,10 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8641, - "time": 0.8995578016424511, + "noteOrder": 8644, + "time": 0.899557801642451, "position": { "x": 3, "y": 0 @@ -6250,10 +7584,10 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8665, - "time": 0.9020846493998738, + "noteOrder": 8668, + "time": 0.9020846493998737, "position": { "x": 3, "y": 0 @@ -6273,10 +7607,10 @@ }, { "lineGroupId": 242, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8689, - "time": 0.9046114971572964, + "noteOrder": 8693, + "time": 0.9046114971572962, "position": { "x": 3, "y": 0 @@ -6296,9 +7630,9 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8835, + "noteOrder": 8838, "time": 0.919772583701832, "position": { "x": 5, @@ -6319,10 +7653,10 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8883, - "time": 0.9248262792166773, + "noteOrder": 8887, + "time": 0.9248262792166771, "position": { "x": 5, "y": 0 @@ -6342,9 +7676,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9029, + "noteOrder": 9033, "time": 0.9399873657612129, "position": { "x": 5, @@ -6365,10 +7699,10 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9078, - "time": 0.9450410612760581, + "noteOrder": 9081, + "time": 0.945041061276058, "position": { "x": 5, "y": 0 @@ -6388,10 +7722,10 @@ }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9114, - "time": 0.9488313329121921, + "noteOrder": 9118, + "time": 0.9488313329121919, "position": { "x": 4, "y": 0 @@ -6411,10 +7745,10 @@ }, { "lineGroupId": 252, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9308, - "time": 0.9690461149715731, + "noteOrder": 9312, + "time": 0.9690461149715729, "position": { "x": 4, "y": 0 @@ -6434,10 +7768,10 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9114, - "time": 0.9488313329121921, + "noteOrder": 9118, + "time": 0.9488313329121919, "position": { "x": 6, "y": 0 @@ -6457,10 +7791,10 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9308, - "time": 0.9690461149715731, + "noteOrder": 9312, + "time": 0.9690461149715729, "position": { "x": 6, "y": 0 diff --git a/tracks/Triple Cross/310_difficulty_1b.json b/tracks/Triple Cross/310_difficulty_1b.json index daadc2d6..b5227c18 100644 --- a/tracks/Triple Cross/310_difficulty_1b.json +++ b/tracks/Triple Cross/310_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 194, - "time": 0.020214782059380924, + "time": 0.02021478205938092, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 243, - "time": 0.025268477574226154, + "time": 0.02526847757422615, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 388, - "time": 0.04042956411876185, + "time": 0.04042956411876184, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 437, - "time": 0.04548325963360708, + "time": 0.045483259633607075, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 583, - "time": 0.06064434617814277, + "time": 0.060644346178142766, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 631, - "time": 0.065698041692988, + "time": 0.06569804169298799, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 874, - "time": 0.09096651926721416, + "time": 0.09096651926721415, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 922, + "noteOrder": 923, "time": 0.09602021478205938, "position": { "x": 7, @@ -174,7 +174,7 @@ }, { "noteOrder": 971, - "time": 0.10107391029690461, + "time": 0.1010739102969046, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1019, - "time": 0.10612760581174985, + "noteOrder": 1020, + "time": 0.10612760581174983, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 1068, - "time": 0.11118130132659508, + "time": 0.11118130132659507, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1116, - "time": 0.11623499684144031, + "noteOrder": 1117, + "time": 0.1162349968414403, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1165, - "time": 0.12128869235628555, + "time": 0.12128869235628553, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1214, - "time": 0.12634238787113078, + "time": 0.12634238787113075, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1359, - "time": 0.14150347441566646, + "noteOrder": 1360, + "time": 0.14150347441566644, "position": { "x": 3, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1650, + "noteOrder": 1651, "time": 0.17182564750473783, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1699, - "time": 0.1768793430195831, + "noteOrder": 1700, + "time": 0.17687934301958308, "position": { "x": 5, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1893, - "time": 0.197094125078964, + "noteOrder": 1894, + "time": 0.19709412507896396, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2039, - "time": 0.2122552116234997, + "noteOrder": 2040, + "time": 0.21225521162349967, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2087, - "time": 0.21730890713834494, + "noteOrder": 2088, + "time": 0.2173089071383449, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2233, - "time": 0.23246999368288063, + "noteOrder": 2234, + "time": 0.2324699936828806, "position": { "x": 5, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 2282, - "time": 0.23752368919772587, + "time": 0.23752368919772582, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.25268477574226156, + "noteOrder": 2428, + "time": 0.2526847757422615, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.2577384712571068, + "noteOrder": 2477, + "time": 0.25773847125710675, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2573, - "time": 0.2678458622867972, + "noteOrder": 2574, + "time": 0.26784586228679724, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2621, - "time": 0.2728995578016425, + "noteOrder": 2622, + "time": 0.27289955780164243, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2670, - "time": 0.27795325331648774, + "noteOrder": 2671, + "time": 0.2779532533164877, "position": { "x": 3, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.2880606443461782, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.29311433986102337, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.2981680353758686, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2961, + "noteOrder": 2962, "time": 0.30827542640555905, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3205, "time": 0.33354390397978523, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3252, - "time": 0.3385975994946305, + "noteOrder": 3254, + "time": 0.3385975994946304, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3301, + "noteOrder": 3302, "time": 0.34365129500947567, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3325, + "noteOrder": 3327, "time": 0.3461781427668983, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3349, - "time": 0.3487049905243209, + "noteOrder": 3351, + "time": 0.34870499052432086, "position": { "x": 6, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3398, - "time": 0.3537586860391662, + "noteOrder": 3399, + "time": 0.35375868603916616, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3447, - "time": 0.3588123815540114, + "noteOrder": 3448, + "time": 0.35881238155401135, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3495, - "time": 0.36386607706885665, + "noteOrder": 3496, + "time": 0.3638660770688566, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3519, - "time": 0.3663929248262793, + "noteOrder": 3521, + "time": 0.36639292482627916, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3544, - "time": 0.36891977258370184, + "noteOrder": 3545, + "time": 0.3689197725837018, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.40429564118761846, + "noteOrder": 3885, + "time": 0.4042956411876184, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3883, - "time": 0.40429564118761846, + "noteOrder": 3885, + "time": 0.4042956411876184, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3932, - "time": 0.4093493367024637, + "noteOrder": 3934, + "time": 0.40934933670246365, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3956, - "time": 0.41187618445988633, + "noteOrder": 3958, + "time": 0.4118761844598863, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3981, - "time": 0.41440303221730895, + "noteOrder": 3982, + "time": 0.41440303221730884, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4029, + "noteOrder": 4031, "time": 0.41945672773215414, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4078, - "time": 0.4245104232469994, + "noteOrder": 4079, + "time": 0.42451042324699934, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.427037271004422, + "noteOrder": 4103, + "time": 0.42703727100442196, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4126, + "noteOrder": 4128, "time": 0.4295641187618446, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.4346178142766899, + "noteOrder": 4176, + "time": 0.4346178142766898, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4223, - "time": 0.43967150979153513, + "noteOrder": 4225, + "time": 0.4396715097915351, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4272, - "time": 0.4447252053063803, + "noteOrder": 4273, + "time": 0.44472520530638027, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4296, - "time": 0.44725205306380295, + "noteOrder": 4298, + "time": 0.4472520530638029, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4320, - "time": 0.44977890082122557, + "noteOrder": 4322, + "time": 0.4497789008212255, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.4851547694251422, + "noteOrder": 4662, + "time": 0.48515476942514213, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.4851547694251422, + "noteOrder": 4662, + "time": 0.48515476942514213, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.49020846493998743, + "noteOrder": 4711, + "time": 0.4902084649399873, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4733, - "time": 0.49273531269741, + "noteOrder": 4735, + "time": 0.49273531269740994, "position": { "x": 4, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5243, - "time": 0.545799115603285, + "noteOrder": 5245, + "time": 0.5457991156032849, "position": { "x": 6, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5267, - "time": 0.5483259633607076, + "noteOrder": 5269, + "time": 0.5483259633607075, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5291, - "time": 0.5508528111181302, + "noteOrder": 5293, + "time": 0.5508528111181301, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5437, - "time": 0.5660138976626659, + "noteOrder": 5439, + "time": 0.5660138976626657, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5461, + "noteOrder": 5463, "time": 0.5685407454200885, "position": { "x": 5, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5485, - "time": 0.5710675931775111, + "noteOrder": 5488, + "time": 0.571067593177511, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5485, - "time": 0.5710675931775111, + "noteOrder": 5488, + "time": 0.571067593177511, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5582, - "time": 0.5811749842072016, + "noteOrder": 5585, + "time": 0.5811749842072015, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5680, + "noteOrder": 5682, "time": 0.591282375236892, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5728, + "noteOrder": 5730, "time": 0.5963360707517372, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5777, - "time": 0.6013897662665825, + "noteOrder": 5779, + "time": 0.6013897662665824, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5825, - "time": 0.6064434617814277, + "noteOrder": 5827, + "time": 0.6064434617814276, "position": { "x": 6, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5849, + "noteOrder": 5852, "time": 0.6089703095388502, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5874, + "noteOrder": 5876, "time": 0.6114971572962729, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6019, - "time": 0.6266582438408087, + "noteOrder": 6022, + "time": 0.6266582438408086, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6044, - "time": 0.6291850915982313, + "noteOrder": 6046, + "time": 0.6291850915982311, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6068, - "time": 0.631711939355654, + "noteOrder": 6070, + "time": 0.6317119393556538, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6214, - "time": 0.6468730259001896, + "noteOrder": 6216, + "time": 0.6468730259001895, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6238, - "time": 0.6493998736576122, + "noteOrder": 6240, + "time": 0.6493998736576121, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6262, - "time": 0.6519267214150348, + "noteOrder": 6265, + "time": 0.6519267214150347, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6262, - "time": 0.6519267214150348, + "noteOrder": 6265, + "time": 0.6519267214150347, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6359, + "noteOrder": 6362, "time": 0.6620341124447252, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6456, + "noteOrder": 6459, "time": 0.6721415034744157, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6699, - "time": 0.6974099810486418, + "noteOrder": 6702, + "time": 0.6974099810486417, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6723, + "noteOrder": 6726, "time": 0.6999368288060644, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6942, - "time": 0.7226784586228681, + "noteOrder": 6944, + "time": 0.722678458622868, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 6990, - "time": 0.7277321541377133, + "noteOrder": 6993, + "time": 0.7277321541377132, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 7039, - "time": 0.7327858496525586, + "noteOrder": 7041, + "time": 0.7327858496525583, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 7136, - "time": 0.7428932406822489, + "noteOrder": 7139, + "time": 0.7428932406822488, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 7184, + "noteOrder": 7187, "time": 0.7479469361970942, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7233, - "time": 0.7530006317119394, + "noteOrder": 7236, + "time": 0.7530006317119393, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 7379, + "noteOrder": 7381, "time": 0.7681617182564751, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 7427, - "time": 0.7732154137713203, + "noteOrder": 7430, + "time": 0.7732154137713202, "position": { "x": 5, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7864, - "time": 0.8186986734049274, + "noteOrder": 7867, + "time": 0.8186986734049273, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 7913, - "time": 0.8237523689197727, + "noteOrder": 7916, + "time": 0.8237523689197725, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 8495, - "time": 0.8843967150979154, + "noteOrder": 8498, + "time": 0.8843967150979153, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 8641, - "time": 0.8995578016424511, + "noteOrder": 8644, + "time": 0.899557801642451, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 8689, - "time": 0.9046114971572964, + "noteOrder": 8693, + "time": 0.9046114971572962, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 8835, + "noteOrder": 8838, "time": 0.919772583701832, "position": { "x": 5, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 8883, - "time": 0.9248262792166773, + "noteOrder": 8887, + "time": 0.9248262792166771, "position": { "x": 6, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 9029, + "noteOrder": 9033, "time": 0.9399873657612129, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 9078, - "time": 0.9450410612760581, + "noteOrder": 9081, + "time": 0.945041061276058, "position": { "x": 6, "y": 0 @@ -2076,10 +2076,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.010107391029690462, + "time": 0.01010739102969046, "position": { "x": 4, "y": 0 @@ -2099,10 +2099,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.015161086544535693, + "time": 0.015161086544535692, "position": { "x": 4, "y": 0 @@ -2122,10 +2122,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.010107391029690462, + "time": 0.01010739102969046, "position": { "x": 6, "y": 0 @@ -2145,10 +2145,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.015161086544535693, + "time": 0.015161086544535692, "position": { "x": 6, "y": 0 @@ -2168,10 +2168,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.030322173089071387, + "time": 0.030322173089071383, "position": { "x": 7, "y": 0 @@ -2191,10 +2191,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.035375868603916616, + "time": 0.03537586860391661, "position": { "x": 7, "y": 0 @@ -2214,10 +2214,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 485, - "time": 0.05053695514845231, + "noteOrder": 486, + "time": 0.0505369551484523, "position": { "x": 3, "y": 0 @@ -2237,10 +2237,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 534, - "time": 0.05559065066329754, + "time": 0.05559065066329753, "position": { "x": 3, "y": 0 @@ -2260,10 +2260,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.07075173720783323, + "time": 0.07075173720783322, "position": { "x": 4, "y": 0 @@ -2283,10 +2283,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 728, - "time": 0.07580543272267846, + "time": 0.07580543272267845, "position": { "x": 4, "y": 0 @@ -2306,10 +2306,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.07075173720783323, + "time": 0.07075173720783322, "position": { "x": 6, "y": 0 @@ -2329,10 +2329,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 728, - "time": 0.07580543272267846, + "time": 0.07580543272267845, "position": { "x": 6, "y": 0 @@ -2352,10 +2352,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.131396083385976, + "noteOrder": 1263, + "time": 0.13139608338597597, "position": { "x": 6, "y": 0 @@ -2375,10 +2375,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1311, - "time": 0.13644977890082124, + "time": 0.13644977890082122, "position": { "x": 6, "y": 0 @@ -2398,10 +2398,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1262, - "time": 0.131396083385976, + "noteOrder": 1263, + "time": 0.13139608338597597, "position": { "x": 4, "y": 0 @@ -2421,10 +2421,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1311, - "time": 0.13644977890082124, + "time": 0.13644977890082122, "position": { "x": 4, "y": 0 @@ -2444,10 +2444,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1456, - "time": 0.15161086544535693, + "noteOrder": 1457, + "time": 0.1516108654453569, "position": { "x": 7, "y": 0 @@ -2467,10 +2467,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1505, - "time": 0.15666456096020218, + "time": 0.15666456096020215, "position": { "x": 7, "y": 0 @@ -2490,10 +2490,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1553, - "time": 0.1617182564750474, + "noteOrder": 1554, + "time": 0.16171825647504737, "position": { "x": 3, "y": 0 @@ -2513,9 +2513,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.16677195198989261, "position": { "x": 3, @@ -2536,10 +2536,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2524, - "time": 0.262792166771952, + "noteOrder": 2525, + "time": 0.26279216677195194, "position": { "x": 6, "y": 0 @@ -2559,10 +2559,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2621, - "time": 0.2728995578016425, + "noteOrder": 2622, + "time": 0.27289955780164243, "position": { "x": 6, "y": 0 @@ -2582,10 +2582,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2718, - "time": 0.2830069488313329, + "noteOrder": 2719, + "time": 0.28300694883133287, "position": { "x": 4, "y": 0 @@ -2605,9 +2605,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2816, + "noteOrder": 2817, "time": 0.29311433986102337, "position": { "x": 4, @@ -2628,10 +2628,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2913, - "time": 0.30322173089071386, + "noteOrder": 2914, + "time": 0.3032217308907138, "position": { "x": 4, "y": 0 @@ -2651,10 +2651,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3010, - "time": 0.31332912192040435, + "noteOrder": 3011, + "time": 0.3133291219204043, "position": { "x": 4, "y": 0 @@ -2674,10 +2674,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3010, - "time": 0.31332912192040435, + "noteOrder": 3011, + "time": 0.3133291219204043, "position": { "x": 7, "y": 0 @@ -2697,10 +2697,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3107, - "time": 0.3234365129500948, + "noteOrder": 3108, + "time": 0.32343651295009473, "position": { "x": 7, "y": 0 @@ -2720,10 +2720,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3058, - "time": 0.31838281743524954, + "noteOrder": 3059, + "time": 0.3183828174352495, "position": { "x": 5, "y": 0 @@ -2743,10 +2743,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3107, - "time": 0.3234365129500948, + "noteOrder": 3108, + "time": 0.32343651295009473, "position": { "x": 5, "y": 0 @@ -2766,9 +2766,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3592, + "noteOrder": 3594, "time": 0.3739734680985471, "position": { "x": 6, @@ -2789,10 +2789,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3641, - "time": 0.37902716361339234, + "noteOrder": 3642, + "time": 0.3790271636133923, "position": { "x": 4, "y": 0 @@ -2812,9 +2812,9 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3689, + "noteOrder": 3691, "time": 0.38408085912823753, "position": { "x": 4, @@ -2835,10 +2835,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3738, - "time": 0.3891345546430828, + "noteOrder": 3739, + "time": 0.3891345546430827, "position": { "x": 6, "y": 0 @@ -2858,10 +2858,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3786, - "time": 0.394188250157928, + "noteOrder": 3788, + "time": 0.3941882501579279, "position": { "x": 6, "y": 0 @@ -2881,10 +2881,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3811, - "time": 0.39671509791535065, + "noteOrder": 3812, + "time": 0.3967150979153506, "position": { "x": 6, "y": 0 @@ -2904,10 +2904,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3835, - "time": 0.39924194567277327, + "noteOrder": 3836, + "time": 0.3992419456727732, "position": { "x": 4, "y": 0 @@ -2927,10 +2927,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3859, - "time": 0.4017687934301959, + "noteOrder": 3861, + "time": 0.40176879343019584, "position": { "x": 4, "y": 0 @@ -2950,10 +2950,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4369, - "time": 0.45483259633607076, + "noteOrder": 4371, + "time": 0.4548325963360707, "position": { "x": 6, "y": 0 @@ -2973,9 +2973,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4417, + "noteOrder": 4419, "time": 0.459886291850916, "position": { "x": 4, @@ -2996,10 +2996,10 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4466, - "time": 0.46493998736576125, + "noteOrder": 4468, + "time": 0.4649399873657612, "position": { "x": 4, "y": 0 @@ -3019,9 +3019,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4515, + "noteOrder": 4516, "time": 0.46999368288060644, "position": { "x": 6, @@ -3042,10 +3042,10 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4563, - "time": 0.47504737839545175, + "noteOrder": 4565, + "time": 0.47504737839545164, "position": { "x": 4, "y": 0 @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4587, - "time": 0.47757422615287437, + "noteOrder": 4589, + "time": 0.47757422615287426, "position": { "x": 4, "y": 0 @@ -3088,10 +3088,10 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4612, - "time": 0.48010107391029694, + "noteOrder": 4613, + "time": 0.4801010739102969, "position": { "x": 6, "y": 0 @@ -3111,10 +3111,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4636, - "time": 0.48262792166771956, + "noteOrder": 4638, + "time": 0.4826279216677195, "position": { "x": 6, "y": 0 @@ -3134,10 +3134,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4757, - "time": 0.4952621604548326, + "noteOrder": 4759, + "time": 0.49526216045483257, "position": { "x": 7, "y": 0 @@ -3157,10 +3157,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4854, - "time": 0.5053695514845231, + "noteOrder": 4856, + "time": 0.505369551484523, "position": { "x": 7, "y": 0 @@ -3180,10 +3180,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4757, - "time": 0.4952621604548326, + "noteOrder": 4759, + "time": 0.49526216045483257, "position": { "x": 5, "y": 0 @@ -3203,10 +3203,10 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4854, - "time": 0.5053695514845231, + "noteOrder": 4856, + "time": 0.505369551484523, "position": { "x": 5, "y": 0 @@ -3226,10 +3226,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.5154769425142136, + "noteOrder": 4953, + "time": 0.5154769425142135, "position": { "x": 3, "y": 0 @@ -3249,10 +3249,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5049, - "time": 0.525584333543904, + "noteOrder": 5050, + "time": 0.5255843335439039, "position": { "x": 3, "y": 0 @@ -3272,10 +3272,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.5154769425142136, + "noteOrder": 4953, + "time": 0.5154769425142135, "position": { "x": 5, "y": 0 @@ -3295,10 +3295,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5049, - "time": 0.525584333543904, + "noteOrder": 5050, + "time": 0.5255843335439039, "position": { "x": 5, "y": 0 @@ -3318,10 +3318,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5146, - "time": 0.5356917245735944, + "noteOrder": 5148, + "time": 0.5356917245735945, "position": { "x": 4, "y": 0 @@ -3341,10 +3341,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5170, - "time": 0.5382185723310171, + "noteOrder": 5172, + "time": 0.538218572331017, "position": { "x": 4, "y": 0 @@ -3364,9 +3364,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5194, + "noteOrder": 5196, "time": 0.5407454200884397, "position": { "x": 4, @@ -3387,10 +3387,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5218, - "time": 0.5432722678458624, + "noteOrder": 5220, + "time": 0.5432722678458622, "position": { "x": 4, "y": 0 @@ -3410,10 +3410,10 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5340, - "time": 0.5559065066329755, + "noteOrder": 5342, + "time": 0.5559065066329754, "position": { "x": 7, "y": 0 @@ -3433,10 +3433,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5364, - "time": 0.5584333543903981, + "noteOrder": 5366, + "time": 0.558433354390398, "position": { "x": 7, "y": 0 @@ -3456,10 +3456,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5388, - "time": 0.5609602021478206, + "noteOrder": 5390, + "time": 0.5609602021478205, "position": { "x": 6, "y": 0 @@ -3479,9 +3479,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.5634870499052432, "position": { "x": 6, @@ -3502,9 +3502,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5534, + "noteOrder": 5536, "time": 0.5761212886923563, "position": { "x": 7, @@ -3523,11 +3523,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5560, + "time": 0.5786481364497789, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5560, + "time": 0.5786481364497789, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5631, + "noteOrder": 5633, "time": 0.5862286797220467, "position": { "x": 7, @@ -3546,11 +3592,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5657, + "time": 0.5887555274794692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5657, + "time": 0.5887555274794692, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5922, + "noteOrder": 5925, "time": 0.6165508528111181, "position": { "x": 6, @@ -3571,10 +3663,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5947, - "time": 0.6190777005685408, + "noteOrder": 5949, + "time": 0.6190777005685407, "position": { "x": 6, "y": 0 @@ -3594,10 +3686,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5971, - "time": 0.6216045483259635, + "noteOrder": 5973, + "time": 0.6216045483259633, "position": { "x": 6, "y": 0 @@ -3617,10 +3709,10 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5995, - "time": 0.6241313960833861, + "noteOrder": 5997, + "time": 0.624131396083386, "position": { "x": 6, "y": 0 @@ -3640,10 +3732,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6116, - "time": 0.6367656348704991, + "noteOrder": 6119, + "time": 0.636765634870499, "position": { "x": 3, "y": 0 @@ -3663,10 +3755,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6141, - "time": 0.6392924826279217, + "noteOrder": 6143, + "time": 0.6392924826279216, "position": { "x": 3, "y": 0 @@ -3686,10 +3778,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6165, - "time": 0.6418193303853443, + "noteOrder": 6167, + "time": 0.6418193303853442, "position": { "x": 4, "y": 0 @@ -3709,9 +3801,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6189, + "noteOrder": 6192, "time": 0.644346178142767, "position": { "x": 4, @@ -3732,10 +3824,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6311, - "time": 0.6569804169298801, + "noteOrder": 6313, + "time": 0.6569804169298799, "position": { "x": 3, "y": 0 @@ -3753,11 +3845,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6337, + "time": 0.6595072646873026, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6337, + "time": 0.6595072646873026, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6408, + "noteOrder": 6410, "time": 0.6670878079595705, "position": { "x": 3, @@ -3776,12 +3914,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6434, + "time": 0.669614655716993, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6434, + "time": 0.669614655716993, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6748, - "time": 0.7024636765634872, + "noteOrder": 6750, + "time": 0.702463676563487, "position": { "x": 6, "y": 0 @@ -3801,10 +3985,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6772, - "time": 0.7049905243209098, + "noteOrder": 6774, + "time": 0.7049905243209096, "position": { "x": 6, "y": 0 @@ -3824,10 +4008,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6748, - "time": 0.7024636765634872, + "noteOrder": 6750, + "time": 0.702463676563487, "position": { "x": 4, "y": 0 @@ -3847,10 +4031,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6772, - "time": 0.7049905243209098, + "noteOrder": 6774, + "time": 0.7049905243209096, "position": { "x": 4, "y": 0 @@ -3870,10 +4054,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6893, - "time": 0.7176247631080228, + "noteOrder": 6896, + "time": 0.7176247631080227, "position": { "x": 7, "y": 0 @@ -3893,10 +4077,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6942, - "time": 0.7226784586228681, + "noteOrder": 6944, + "time": 0.722678458622868, "position": { "x": 7, "y": 0 @@ -3916,10 +4100,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7087, - "time": 0.7378395451674037, + "noteOrder": 7090, + "time": 0.7378395451674036, "position": { "x": 3, "y": 0 @@ -3939,10 +4123,10 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7136, - "time": 0.7428932406822489, + "noteOrder": 7139, + "time": 0.7428932406822488, "position": { "x": 3, "y": 0 @@ -3962,10 +4146,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7281, - "time": 0.7580543272267847, + "noteOrder": 7284, + "time": 0.7580543272267846, "position": { "x": 7, "y": 0 @@ -3985,9 +4169,9 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7330, + "noteOrder": 7333, "time": 0.7631080227416298, "position": { "x": 4, @@ -4008,10 +4192,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7476, - "time": 0.7782691092861656, + "noteOrder": 7479, + "time": 0.7782691092861654, "position": { "x": 3, "y": 0 @@ -4031,10 +4215,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7524, - "time": 0.7833228048010109, + "noteOrder": 7527, + "time": 0.7833228048010107, "position": { "x": 6, "y": 0 @@ -4054,10 +4238,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7670, - "time": 0.7984838913455465, + "noteOrder": 7673, + "time": 0.7984838913455464, "position": { "x": 4, "y": 0 @@ -4077,10 +4261,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7718, - "time": 0.8035375868603918, + "noteOrder": 7721, + "time": 0.8035375868603917, "position": { "x": 4, "y": 0 @@ -4100,10 +4284,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7670, - "time": 0.7984838913455465, + "noteOrder": 7673, + "time": 0.7984838913455464, "position": { "x": 6, "y": 0 @@ -4123,10 +4307,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7718, - "time": 0.8035375868603918, + "noteOrder": 7721, + "time": 0.8035375868603917, "position": { "x": 6, "y": 0 @@ -4146,10 +4330,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7767, - "time": 0.8085912823752369, + "noteOrder": 7770, + "time": 0.8085912823752368, "position": { "x": 3, "y": 0 @@ -4169,10 +4353,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7815, - "time": 0.8136449778900822, + "noteOrder": 7818, + "time": 0.813644977890082, "position": { "x": 6, "y": 0 @@ -4192,10 +4376,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7961, - "time": 0.8288060644346179, + "noteOrder": 7964, + "time": 0.8288060644346177, "position": { "x": 7, "y": 0 @@ -4215,9 +4399,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8010, + "noteOrder": 8013, "time": 0.833859759949463, "position": { "x": 4, @@ -4238,9 +4422,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8058, + "noteOrder": 8061, "time": 0.8389134554643083, "position": { "x": 4, @@ -4261,9 +4445,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8107, + "noteOrder": 8110, "time": 0.8439671509791535, "position": { "x": 4, @@ -4284,9 +4468,9 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8058, + "noteOrder": 8061, "time": 0.8389134554643083, "position": { "x": 6, @@ -4307,9 +4491,9 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8107, + "noteOrder": 8110, "time": 0.8439671509791535, "position": { "x": 6, @@ -4330,10 +4514,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8155, - "time": 0.8490208464939988, + "noteOrder": 8158, + "time": 0.8490208464939987, "position": { "x": 6, "y": 0 @@ -4353,10 +4537,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8180, - "time": 0.8515476942514214, + "noteOrder": 8183, + "time": 0.8515476942514213, "position": { "x": 6, "y": 0 @@ -4376,10 +4560,10 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8204, - "time": 0.854074542008844, + "noteOrder": 8207, + "time": 0.8540745420088439, "position": { "x": 4, "y": 0 @@ -4399,10 +4583,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8228, - "time": 0.8566013897662667, + "noteOrder": 8231, + "time": 0.8566013897662665, "position": { "x": 4, "y": 0 @@ -4422,9 +4606,9 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8252, + "noteOrder": 8256, "time": 0.8591282375236892, "position": { "x": 7, @@ -4445,10 +4629,10 @@ }, { "lineGroupId": 171, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8301, - "time": 0.8641819330385344, + "noteOrder": 8304, + "time": 0.8641819330385343, "position": { "x": 7, "y": 0 @@ -4468,9 +4652,9 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8252, + "noteOrder": 8256, "time": 0.8591282375236892, "position": { "x": 5, @@ -4491,10 +4675,10 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8301, - "time": 0.8641819330385344, + "noteOrder": 8304, + "time": 0.8641819330385343, "position": { "x": 5, "y": 0 @@ -4514,10 +4698,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8349, - "time": 0.8692356285533798, + "noteOrder": 8353, + "time": 0.8692356285533795, "position": { "x": 5, "y": 0 @@ -4537,10 +4721,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8398, - "time": 0.874289324068225, + "noteOrder": 8401, + "time": 0.8742893240682248, "position": { "x": 5, "y": 0 @@ -4560,10 +4744,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8349, - "time": 0.8692356285533798, + "noteOrder": 8353, + "time": 0.8692356285533795, "position": { "x": 3, "y": 0 @@ -4583,10 +4767,10 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8398, - "time": 0.874289324068225, + "noteOrder": 8401, + "time": 0.8742893240682248, "position": { "x": 3, "y": 0 @@ -4606,10 +4790,10 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9126, - "time": 0.9500947567909035, + "noteOrder": 9130, + "time": 0.9500947567909033, "position": { "x": 3, "y": 0 @@ -4629,10 +4813,10 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9320, - "time": 0.9703095388502844, + "noteOrder": 9324, + "time": 0.9703095388502843, "position": { "x": 3, "y": 0 @@ -4652,10 +4836,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9126, - "time": 0.9500947567909035, + "noteOrder": 9130, + "time": 0.9500947567909033, "position": { "x": 7, "y": 0 @@ -4675,10 +4859,10 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9320, - "time": 0.9703095388502844, + "noteOrder": 9324, + "time": 0.9703095388502843, "position": { "x": 7, "y": 0 diff --git a/tracks/Triple Cross/info.json b/tracks/Triple Cross/info.json index 7bd1fe69..f8104234 100644 --- a/tracks/Triple Cross/info.json +++ b/tracks/Triple Cross/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Triple Cross", - "SongLength": "132.519184", + "SongLength": "122.566531", "SongAuthorName": "BEMANI Sound Team \"dj TAKA & DJ YOSHITAKA & SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Tropical Love/256_difficulty_1a.json b/tracks/Tropical Love/256_difficulty_1a.json index f4a0a433..40c13f14 100644 --- a/tracks/Tropical Love/256_difficulty_1a.json +++ b/tracks/Tropical Love/256_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.029855387964546724, + "time": 0.029855387964546728, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 240, - "time": 0.04975897994091121, + "time": 0.04975897994091122, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 264, - "time": 0.05473487793500233, + "time": 0.054734877935002334, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 312, - "time": 0.06468667392318457, + "time": 0.06468667392318458, "position": { "x": 8, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 360, - "time": 0.0746384699113668, + "time": 0.07463846991136681, "position": { "x": 2, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 408, - "time": 0.08459026589954906, + "time": 0.08459026589954907, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 456, - "time": 0.0945420618877313, + "time": 0.09454206188773132, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 504, - "time": 0.10449385787591353, + "noteOrder": 505, + "time": 0.10449385787591356, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.10946975587000465, + "noteOrder": 529, + "time": 0.10946975587000467, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 552, - "time": 0.11444565386409578, + "noteOrder": 553, + "time": 0.11444565386409579, "position": { "x": 5, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.12439744985227802, + "noteOrder": 601, + "time": 0.12439744985227803, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.12937334784636914, + "noteOrder": 625, + "time": 0.12937334784636917, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.13434924584046026, + "noteOrder": 649, + "time": 0.1343492458404603, "position": { "x": 5, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.13932514383455138, "position": { "x": 7, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.14430104182864248, + "noteOrder": 697, + "time": 0.1443010418286425, "position": { "x": 6, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.1492769398227336, + "noteOrder": 721, + "time": 0.14927693982273363, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 769, - "time": 0.15922873581091587, + "time": 0.1592287358109159, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 793, - "time": 0.164204633805007, + "time": 0.16420463380500702, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 985, - "time": 0.20401181775773597, + "time": 0.204011817757736, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1009, - "time": 0.20898771575182706, + "time": 0.20898771575182712, "position": { "x": 4, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1033, - "time": 0.21396361374591819, + "time": 0.2139636137459182, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1177, - "time": 0.24381900171046492, + "time": 0.24381900171046494, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1201, - "time": 0.24879489970455604, + "time": 0.24879489970455607, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1225, - "time": 0.25377079769864713, + "time": 0.2537707976986472, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.3085056756336495, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.31348157362774065, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.33338516560410514, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.33338516560410514, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.3532887575804696, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.37319234955683406, + "noteOrder": 1802, + "time": 0.3731923495568341, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1849, - "time": 0.3831441455450163, + "noteOrder": 1850, + "time": 0.38314414554501636, "position": { "x": 8, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.38812004353910745, + "noteOrder": 1874, + "time": 0.3881200435391075, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1897, - "time": 0.39309594153319855, + "noteOrder": 1898, + "time": 0.3930959415331986, "position": { "x": 8, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.4030477375213808, + "noteOrder": 1946, + "time": 0.40304773752138084, "position": { "x": 2, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.40802363551547194, + "noteOrder": 1970, + "time": 0.408023635515472, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.41299953350956303, + "noteOrder": 1994, + "time": 0.4129995335095631, "position": { "x": 2, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.4229513294977453, + "noteOrder": 2042, + "time": 0.42295132949774533, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.42792722749183637, + "noteOrder": 2066, + "time": 0.4279272274918364, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.4329031254859275, + "noteOrder": 2090, + "time": 0.4329031254859276, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2137, - "time": 0.44285492147410976, + "noteOrder": 2138, + "time": 0.4428549214741098, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.44783081946820086, + "noteOrder": 2162, + "time": 0.4478308194682009, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.452806717462292, + "noteOrder": 2186, + "time": 0.45280671746229206, "position": { "x": 7, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 2282, - "time": 0.47271030943865644, + "time": 0.47271030943865655, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2378, - "time": 0.4926139014150209, + "noteOrder": 2379, + "time": 0.49261390141502104, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2378, - "time": 0.4926139014150209, + "noteOrder": 2379, + "time": 0.49261390141502104, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.5224692893795677, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.5274451873736589, "position": { "x": 2, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2570, - "time": 0.5324210853677499, + "noteOrder": 2571, + "time": 0.53242108536775, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2714, - "time": 0.5622764733322966, + "noteOrder": 2715, + "time": 0.5622764733322967, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5672523713263877, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2762, - "time": 0.5722282693204789, + "noteOrder": 2763, + "time": 0.572228269320479, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.6269631472554813, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.6319390452495725, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.6369149432436635, + "noteOrder": 3075, + "time": 0.6369149432436636, "position": { "x": 3, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.6369149432436635, + "noteOrder": 3075, + "time": 0.6369149432436636, "position": { "x": 7, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.6418908412377546, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.6418908412377546, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.656818535220028, + "noteOrder": 3171, + "time": 0.6568185352200281, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3182, + "noteOrder": 3183, "time": 0.6593064842170736, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.6617944332141191, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3208, "time": 0.6642823822111646, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3220, "time": 0.6667703312082103, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3230, + "noteOrder": 3232, "time": 0.6692582802052558, "position": { "x": 5, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.6717462292023013, + "noteOrder": 3244, + "time": 0.6717462292023014, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3254, + "noteOrder": 3256, "time": 0.674234178199347, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.7165293111491214, + "noteOrder": 3460, + "time": 0.7165293111491216, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3484, "time": 0.7215052091432126, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.7264811071373036, + "noteOrder": 3508, + "time": 0.7264811071373037, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.7264811071373036, + "noteOrder": 3508, + "time": 0.7264811071373037, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7314570051313948, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7314570051313948, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3554, - "time": 0.7364329031254859, + "noteOrder": 3556, + "time": 0.736432903125486, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3566, - "time": 0.7389208521225314, + "noteOrder": 3568, + "time": 0.7389208521225316, "position": { "x": 5, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.7414088011195771, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3590, + "noteOrder": 3592, "time": 0.7438967501166226, "position": { "x": 5, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.7463846991136681, + "noteOrder": 3604, + "time": 0.7463846991136682, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3614, + "noteOrder": 3616, "time": 0.7488726481107137, "position": { "x": 5, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7513605971077593, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3638, + "noteOrder": 3640, "time": 0.7538485461048048, "position": { "x": 5, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.7812159850723059, + "noteOrder": 3772, + "time": 0.781215985072306, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3820, "time": 0.7911677810604882, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.7961436790545794, + "noteOrder": 3844, + "time": 0.7961436790545795, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3867, - "time": 0.8011195770486704, + "noteOrder": 3868, + "time": 0.8011195770486705, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.8060954750427616, + "noteOrder": 3892, + "time": 0.8060954750427617, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.8060954750427616, + "noteOrder": 3892, + "time": 0.8060954750427617, "position": { "x": 4, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 3916, "time": 0.8110713730368527, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 3916, "time": 0.8110713730368527, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3963, - "time": 0.8210231690250349, + "noteOrder": 3964, + "time": 0.821023169025035, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4011, + "noteOrder": 4012, "time": 0.8309749650132172, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4059, - "time": 0.8409267610013994, + "noteOrder": 4060, + "time": 0.8409267610013995, "position": { "x": 5, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4107, + "noteOrder": 4108, "time": 0.8508785569895817, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.8608303529777639, + "noteOrder": 4157, + "time": 0.860830352977764, "position": { "x": 5, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.8707821489659462, "position": { "x": 5, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.8807339449541284, + "noteOrder": 4253, + "time": 0.8807339449541285, "position": { "x": 5, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8906857409423106, + "noteOrder": 4301, + "time": 0.8906857409423107, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4347, - "time": 0.9006375369304929, + "noteOrder": 4349, + "time": 0.900637536930493, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4395, - "time": 0.910589332918675, + "noteOrder": 4397, + "time": 0.9105893329186752, "position": { "x": 4, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.9155652309127662, + "noteOrder": 4421, + "time": 0.9155652309127663, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4443, - "time": 0.9205411289068574, + "noteOrder": 4445, + "time": 0.9205411289068575, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4491, - "time": 0.9304929248950395, + "noteOrder": 4493, + "time": 0.9304929248950397, "position": { "x": 4, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.9404447208832218, "position": { "x": 4, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4587, - "time": 0.950396516871404, + "noteOrder": 4589, + "time": 0.9503965168714041, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.9553724148654952, + "noteOrder": 4613, + "time": 0.9553724148654953, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.9603483128595863, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.9653242108536774, + "noteOrder": 4661, + "time": 0.9653242108536776, "position": { "x": 4, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.9653242108536774, + "noteOrder": 4661, + "time": 0.9653242108536776, "position": { "x": 6, "y": 0 @@ -2176,10 +2176,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.019903591976364484, + "time": 0.019903591976364488, "position": { "x": 7, "y": 0 @@ -2199,10 +2199,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.029855387964546724, + "time": 0.029855387964546728, "position": { "x": 7, "y": 0 @@ -2222,10 +2222,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03980718395272897, + "time": 0.039807183952728975, "position": { "x": 3, "y": 0 @@ -2245,10 +2245,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.04975897994091121, + "time": 0.04975897994091122, "position": { "x": 3, "y": 0 @@ -2268,10 +2268,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.05971077592909345, + "time": 0.059710775929093456, "position": { "x": 6, "y": 0 @@ -2291,10 +2291,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 312, - "time": 0.06468667392318457, + "time": 0.06468667392318458, "position": { "x": 6, "y": 0 @@ -2314,7 +2314,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 336, "time": 0.06966257191727569, @@ -2337,10 +2337,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 360, - "time": 0.0746384699113668, + "time": 0.07463846991136681, "position": { "x": 4, "y": 0 @@ -2360,10 +2360,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.07961436790545794, + "time": 0.07961436790545795, "position": { "x": 6, "y": 0 @@ -2383,10 +2383,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 408, - "time": 0.08459026589954906, + "time": 0.08459026589954907, "position": { "x": 6, "y": 0 @@ -2406,10 +2406,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 432, - "time": 0.08956616389364018, + "time": 0.0895661638936402, "position": { "x": 4, "y": 0 @@ -2429,10 +2429,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 456, - "time": 0.0945420618877313, + "time": 0.09454206188773132, "position": { "x": 4, "y": 0 @@ -2452,10 +2452,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.09951795988182242, + "noteOrder": 481, + "time": 0.09951795988182244, "position": { "x": 7, "y": 0 @@ -2475,10 +2475,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.1194215518581869, + "noteOrder": 577, + "time": 0.11942155185818691, "position": { "x": 7, "y": 0 @@ -2498,10 +2498,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.1194215518581869, + "noteOrder": 577, + "time": 0.11942155185818691, "position": { "x": 3, "y": 0 @@ -2521,9 +2521,9 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13932514383455138, "position": { "x": 3, @@ -2544,10 +2544,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, - "time": 0.17913232778728036, + "time": 0.1791323277872804, "position": { "x": 7, "y": 0 @@ -2566,11 +2566,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.18410822578137148, + "noteOrder": 877, + "time": 0.18162027678432593, "position": { "x": 7, "y": 0 @@ -2584,18 +2584,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.1890841237754626, + "noteOrder": 877, + "time": 0.18162027678432593, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2612,13 +2612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 937, - "time": 0.19406002176955373, + "noteOrder": 889, + "time": 0.1841082257813715, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2630,18 +2630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 961, - "time": 0.19903591976364485, + "noteOrder": 889, + "time": 0.1841082257813715, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2658,11 +2658,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.20401181775773597, + "noteOrder": 889, + "time": 0.1841082257813715, "position": { "x": 7, "y": 0 @@ -2676,18 +2676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 36, "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.2189395117400093, + "noteOrder": 901, + "time": 0.18659617477841706, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2699,18 +2699,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.2189395117400093, + "noteOrder": 901, + "time": 0.18659617477841706, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2727,13 +2727,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1081, - "time": 0.22391540973410043, + "noteOrder": 913, + "time": 0.18908412377546263, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2745,18 +2745,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1105, - "time": 0.22889130772819155, + "noteOrder": 913, + "time": 0.18908412377546263, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2773,11 +2773,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1129, - "time": 0.23386720572228267, + "noteOrder": 913, + "time": 0.18908412377546263, "position": { "x": 7, "y": 0 @@ -2796,13 +2796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.2388431037163738, + "noteOrder": 925, + "time": 0.19157207277250818, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2814,18 +2814,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1177, - "time": 0.24381900171046492, + "noteOrder": 925, + "time": 0.19157207277250818, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2837,18 +2837,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 2, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.2587466956927383, + "noteOrder": 937, + "time": 0.19406002176955375, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2865,13 +2865,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.2587466956927383, + "noteOrder": 949, + "time": 0.1965479707665993, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2883,18 +2883,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1273, - "time": 0.26372259368682943, + "noteOrder": 949, + "time": 0.1965479707665993, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2911,13 +2911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1321, - "time": 0.2736743896750117, + "noteOrder": 961, + "time": 0.19903591976364488, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2929,16 +2929,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.2686984916809205, + "noteOrder": 985, + "time": 0.204011817757736, "position": { "x": 7, "y": 0 @@ -2957,13 +2957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1321, - "time": 0.2736743896750117, + "noteOrder": 1057, + "time": 0.21893951174000933, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2980,11 +2980,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1345, - "time": 0.27865028766910277, + "noteOrder": 1057, + "time": 0.21893951174000933, "position": { "x": 3, "y": 0 @@ -3003,11 +3003,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, - "time": 0.28362618566319386, + "noteOrder": 1069, + "time": 0.2214274607370549, "position": { "x": 3, "y": 0 @@ -3021,16 +3021,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 2, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1417, - "time": 0.2935779816513761, + "noteOrder": 1069, + "time": 0.2214274607370549, "position": { "x": 4, "y": 0 @@ -3044,18 +3044,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1393, - "time": 0.28860208365728496, + "noteOrder": 1081, + "time": 0.22391540973410046, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3072,13 +3072,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1417, - "time": 0.2935779816513761, + "noteOrder": 1081, + "time": 0.22391540973410046, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3095,13 +3095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, - "time": 0.2985538796454672, + "noteOrder": 1081, + "time": 0.22391540973410046, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3118,11 +3118,11 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.30352977763955835, + "noteOrder": 1093, + "time": 0.22640335873114603, "position": { "x": 3, "y": 0 @@ -3136,18 +3136,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1537, - "time": 0.31845747162183174, + "noteOrder": 1093, + "time": 0.22640335873114603, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3164,13 +3164,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1549, - "time": 0.3209454206188773, + "noteOrder": 1105, + "time": 0.22889130772819158, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3187,13 +3187,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1573, - "time": 0.32592131861296847, + "noteOrder": 1105, + "time": 0.22889130772819158, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3210,13 +3210,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 3, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1585, - "time": 0.328409267610014, + "noteOrder": 1105, + "time": 0.22889130772819158, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3228,18 +3228,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, - "time": 0.31845747162183174, + "noteOrder": 1117, + "time": 0.23137925672523715, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3256,13 +3256,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1549, - "time": 0.3209454206188773, + "noteOrder": 1117, + "time": 0.23137925672523715, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3279,13 +3279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1573, - "time": 0.32592131861296847, + "noteOrder": 1129, + "time": 0.2338672057222827, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3297,18 +3297,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 3, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.328409267610014, + "noteOrder": 1141, + "time": 0.23635515471932828, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3320,18 +3320,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1633, - "time": 0.33836106359819623, + "noteOrder": 1141, + "time": 0.23635515471932828, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3348,11 +3348,57 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 1645, - "time": 0.3408490125952418, + "noteOrder": 1153, + "time": 0.23884310371637382, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1177, + "time": 0.24381900171046494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1249, + "time": 0.25874669569273834, "position": { "x": 6, "y": 0 @@ -3366,16 +3412,62 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1249, + "time": 0.25874669569273834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 51, "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.3433369615922874, + "noteOrder": 1261, + "time": 0.26123464468978386, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1261, + "time": 0.26123464468978386, "position": { "x": 6, "y": 0 @@ -3394,13 +3486,3072 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1273, + "time": 0.26372259368682943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1273, + "time": 0.26372259368682943, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1273, + "time": 0.26372259368682943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1285, + "time": 0.266210542683875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1285, + "time": 0.266210542683875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1321, + "time": 0.2736743896750117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1297, + "time": 0.2686984916809206, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1321, + "time": 0.2736743896750117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1345, + "time": 0.27865028766910277, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1357, + "time": 0.28113823666614834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1357, + "time": 0.28113823666614834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1369, + "time": 0.28362618566319386, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1369, + "time": 0.28362618566319386, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1369, + "time": 0.28362618566319386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2861141346602395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1382, + "time": 0.2861141346602395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1418, + "time": 0.2935779816513761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1394, + "time": 0.288602083657285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1418, + "time": 0.2935779816513761, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1442, + "time": 0.29855387964546726, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1454, + "time": 0.30104182864251283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1454, + "time": 0.30104182864251283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1466, + "time": 0.30352977763955835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1478, + "time": 0.306017726636604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1478, + "time": 0.306017726636604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1538, + "time": 0.3184574716218318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1550, + "time": 0.3209454206188773, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1574, + "time": 0.32592131861296847, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1586, + "time": 0.32840926761001404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1538, + "time": 0.3184574716218318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1550, + "time": 0.3209454206188773, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1574, + "time": 0.32592131861296847, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1586, + "time": 0.32840926761001404, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1634, + "time": 0.3383610635981963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1646, + "time": 0.3408490125952418, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1658, + "time": 0.3433369615922874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1658, + "time": 0.3433369615922874, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1670, + "time": 0.3458249105893329, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1682, + "time": 0.34831285958637853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1682, + "time": 0.34831285958637853, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1694, + "time": 0.35080080858342405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1706, + "time": 0.3532887575804696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1730, + "time": 0.3582646555745608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1742, + "time": 0.3607526045716063, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1754, + "time": 0.36324055356865187, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1754, + "time": 0.36324055356865187, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1766, + "time": 0.3657285025656974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1778, + "time": 0.368216451562743, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1778, + "time": 0.368216451562743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1790, + "time": 0.37070440055978854, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1802, + "time": 0.3731923495568341, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.37816824755092526, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1922, + "time": 0.39807183952728975, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, + "time": 0.39807183952728975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2018, + "time": 0.41797543150365424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.41797543150365424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.42295132949774533, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2114, + "time": 0.43787902348001867, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.43787902348001867, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.4428549214741098, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2210, + "time": 0.45778261545638316, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.45778261545638316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2222, + "time": 0.46027056445342873, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2222, + "time": 0.46027056445342873, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.4627585134504743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2246, + "time": 0.4652464624475198, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2246, + "time": 0.4652464624475198, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.4677344114445654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2270, + "time": 0.4702223604416109, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2270, + "time": 0.4702223604416109, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2282, + "time": 0.47271030943865655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2282, + "time": 0.47271030943865655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2307, + "time": 0.47768620743274764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2319, + "time": 0.48017415642979316, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2343, + "time": 0.4851500544238843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2355, + "time": 0.4876380034209299, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2307, + "time": 0.47768620743274764, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2319, + "time": 0.48017415642979316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2343, + "time": 0.4851500544238843, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2355, + "time": 0.4876380034209299, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2403, + "time": 0.49758979940911213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2415, + "time": 0.5000777484061577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2415, + "time": 0.5000777484061577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2427, + "time": 0.5025656974032032, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2427, + "time": 0.5025656974032032, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2427, + "time": 0.5025656974032032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2439, + "time": 0.5050536464002487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2439, + "time": 0.5050536464002487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2451, + "time": 0.5075415953972944, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2451, + "time": 0.5075415953972944, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2451, + "time": 0.5075415953972944, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2463, + "time": 0.5100295443943399, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2463, + "time": 0.5100295443943399, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2475, + "time": 0.5125174933913855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2487, + "time": 0.515005442388431, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2487, + "time": 0.515005442388431, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2499, + "time": 0.5174933913854767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2523, + "time": 0.5224692893795677, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2595, + "time": 0.5373969833618412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.5373969833618412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2607, + "time": 0.5398849323588867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2607, + "time": 0.5398849323588867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2619, + "time": 0.5423728813559322, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2619, + "time": 0.5423728813559322, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2619, + "time": 0.5423728813559322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2631, + "time": 0.5448608303529777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2631, + "time": 0.5448608303529777, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2643, + "time": 0.5473487793500234, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2643, + "time": 0.5473487793500234, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2643, + "time": 0.5473487793500234, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2655, + "time": 0.5498367283470689, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2655, + "time": 0.5498367283470689, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2667, + "time": 0.5523246773441145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2679, + "time": 0.55481262634116, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2679, + "time": 0.55481262634116, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.5573005753382055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2715, + "time": 0.5622764733322967, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2787, + "time": 0.57720416731457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.57720416731457, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2799, + "time": 0.5796921163116157, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2799, + "time": 0.5796921163116157, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2811, + "time": 0.5821800653086612, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2811, + "time": 0.5821800653086612, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2811, + "time": 0.5821800653086612, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2823, + "time": 0.5846680143057067, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2823, + "time": 0.5846680143057067, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2859, + "time": 0.5921318612968435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2835, + "time": 0.5871559633027522, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2859, + "time": 0.5921318612968435, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.5971077592909345, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2895, + "time": 0.5995957082879801, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2895, + "time": 0.5995957082879801, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2907, + "time": 0.6020836572850257, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1657, - "time": 0.3433369615922874, + "noteOrder": 2907, + "time": 0.6020836572850257, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3412,18 +6563,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 1669, - "time": 0.3458249105893329, + "noteOrder": 2907, + "time": 0.6020836572850257, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3440,13 +6591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 119, "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.3483128595863785, + "noteOrder": 2919, + "time": 0.6045716062820712, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3463,13 +6614,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1681, - "time": 0.3483128595863785, + "noteOrder": 2919, + "time": 0.6045716062820712, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3481,16 +6632,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1693, - "time": 0.35080080858342405, + "noteOrder": 2955, + "time": 0.612035453273208, "position": { "x": 6, "y": 0 @@ -3504,18 +6655,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 2, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, - "time": 0.3532887575804696, + "noteOrder": 2931, + "time": 0.6070595552791167, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3532,13 +6683,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.3582646555745607, + "noteOrder": 2955, + "time": 0.612035453273208, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3550,18 +6701,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 121, "indexInLine": 1, "isSliding": false, - "noteOrder": 1741, - "time": 0.3607526045716063, + "noteOrder": 2979, + "time": 0.617011351267299, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3578,13 +6729,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 121, "indexInLine": 2, "isSliding": false, - "noteOrder": 1753, - "time": 0.3632405535686518, + "noteOrder": 2991, + "time": 0.6194993002643446, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3601,13 +6752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1753, - "time": 0.3632405535686518, + "noteOrder": 2991, + "time": 0.6194993002643446, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3619,18 +6770,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 122, "indexInLine": 1, "isSliding": false, - "noteOrder": 1765, - "time": 0.3657285025656974, + "noteOrder": 3003, + "time": 0.6219872492613902, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3647,13 +6798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 122, "indexInLine": 2, "isSliding": false, - "noteOrder": 1777, - "time": 0.36821645156274296, + "noteOrder": 3015, + "time": 0.6244751982584357, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3670,13 +6821,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1777, - "time": 0.36821645156274296, + "noteOrder": 3015, + "time": 0.6244751982584357, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3688,16 +6839,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 129, "indexInLine": 1, "isSliding": false, - "noteOrder": 1789, - "time": 0.37070440055978854, + "noteOrder": 3123, + "time": 0.6468667392318458, "position": { "x": 4, "y": 0 @@ -3716,11 +6867,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 129, "indexInLine": 2, "isSliding": false, - "noteOrder": 1801, - "time": 0.37319234955683406, + "noteOrder": 3147, + "time": 0.6518426372259369, "position": { "x": 4, "y": 0 @@ -3739,11 +6890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3781682475509252, + "noteOrder": 3123, + "time": 0.6468667392318458, "position": { "x": 6, "y": 0 @@ -3762,11 +6913,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.3980718395272897, + "noteOrder": 3147, + "time": 0.6518426372259369, "position": { "x": 6, "y": 0 @@ -3785,36 +6936,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1921, - "time": 0.3980718395272897, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 78, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.4179754315036541, + "noteOrder": 3268, + "time": 0.6767221271963926, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3826,16 +6954,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.4179754315036541, + "noteOrder": 3280, + "time": 0.6792100761934381, "position": { "x": 7, "y": 0 @@ -3854,13 +6982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2041, - "time": 0.4229513294977453, + "noteOrder": 3280, + "time": 0.6792100761934381, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3877,13 +7005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2113, - "time": 0.4378790234800186, + "noteOrder": 3292, + "time": 0.6816980251904836, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3900,13 +7028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2113, - "time": 0.4378790234800186, + "noteOrder": 3292, + "time": 0.6816980251904836, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3918,18 +7046,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 2137, - "time": 0.44285492147410976, + "noteOrder": 3292, + "time": 0.6816980251904836, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3946,13 +7074,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 141, "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.4577826154563831, + "noteOrder": 3304, + "time": 0.6841859741875291, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3969,13 +7097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2210, - "time": 0.4577826154563831, + "noteOrder": 3304, + "time": 0.6841859741875291, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3987,18 +7115,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2234, - "time": 0.46275851345047425, + "noteOrder": 3316, + "time": 0.6866739231845748, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4015,13 +7143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2258, - "time": 0.46773441144456535, + "noteOrder": 3316, + "time": 0.6866739231845748, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4033,16 +7161,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, - "time": 0.4776862074327476, + "noteOrder": 3316, + "time": 0.6866739231845748, "position": { "x": 7, "y": 0 @@ -4056,16 +7184,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2318, - "time": 0.48017415642979316, + "noteOrder": 3328, + "time": 0.6891618721816203, "position": { "x": 7, "y": 0 @@ -4079,18 +7207,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 2, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2342, - "time": 0.48515005442388426, + "noteOrder": 3328, + "time": 0.6891618721816203, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4102,18 +7230,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 3, + "lineGroupId": 142, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2354, - "time": 0.48763800342092983, + "noteOrder": 3340, + "time": 0.6916498211786658, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4125,18 +7253,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2306, - "time": 0.4776862074327476, + "noteOrder": 3340, + "time": 0.6916498211786658, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4153,13 +7281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 2318, - "time": 0.48017415642979316, + "noteOrder": 3340, + "time": 0.6916498211786658, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4171,16 +7299,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 143, "indexInLine": 2, "isSliding": false, - "noteOrder": 2342, - "time": 0.48515005442388426, + "noteOrder": 3352, + "time": 0.6941377701757114, "position": { "x": 7, "y": 0 @@ -4194,18 +7322,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 143, "indexInLine": 3, "isSliding": false, - "noteOrder": 2354, - "time": 0.48763800342092983, + "noteOrder": 3352, + "time": 0.6941377701757114, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4217,18 +7345,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2402, - "time": 0.4975897994091121, + "noteOrder": 3364, + "time": 0.6966257191727571, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4245,13 +7373,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2426, - "time": 0.5025656974032032, + "noteOrder": 3364, + "time": 0.6966257191727571, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4263,18 +7391,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2450, - "time": 0.5075415953972943, + "noteOrder": 3364, + "time": 0.6966257191727571, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4286,16 +7414,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2474, - "time": 0.5125174933913854, + "noteOrder": 3376, + "time": 0.6991136681698026, "position": { "x": 7, "y": 0 @@ -4314,13 +7442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2498, - "time": 0.5174933913854766, + "noteOrder": 3376, + "time": 0.6991136681698026, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4332,16 +7460,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 2522, - "time": 0.5224692893795677, + "noteOrder": 3388, + "time": 0.7016016171668481, "position": { "x": 3, "y": 0 @@ -4360,13 +7488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 145, "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, - "time": 0.537396983361841, + "noteOrder": 3400, + "time": 0.7040895661638936, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4383,13 +7511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.537396983361841, + "noteOrder": 3400, + "time": 0.7040895661638936, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4401,16 +7529,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2618, - "time": 0.5423728813559322, + "noteOrder": 3412, + "time": 0.7065775151609393, "position": { "x": 7, "y": 0 @@ -4424,16 +7552,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2642, - "time": 0.5473487793500234, + "noteOrder": 3424, + "time": 0.7090654641579848, "position": { "x": 7, "y": 0 @@ -4452,13 +7580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2666, - "time": 0.5523246773441144, + "noteOrder": 3424, + "time": 0.7090654641579848, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4470,18 +7598,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, - "time": 0.5573005753382055, + "noteOrder": 3436, + "time": 0.7115534131550303, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4493,18 +7621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2714, - "time": 0.5622764733322966, + "noteOrder": 3448, + "time": 0.7140413621520759, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4516,16 +7644,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 2, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2786, - "time": 0.5772041673145699, + "noteOrder": 3448, + "time": 0.7140413621520759, "position": { "x": 4, "y": 0 @@ -4539,16 +7667,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, - "time": 0.5772041673145699, + "noteOrder": 3652, + "time": 0.7563364951018505, "position": { "x": 3, "y": 0 @@ -4567,11 +7695,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2810, - "time": 0.5821800653086611, + "noteOrder": 3664, + "time": 0.758824444098896, "position": { "x": 3, "y": 0 @@ -4585,16 +7713,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 2, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2858, - "time": 0.5921318612968434, + "noteOrder": 3664, + "time": 0.758824444098896, "position": { "x": 4, "y": 0 @@ -4608,18 +7736,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2834, - "time": 0.5871559633027522, + "noteOrder": 3676, + "time": 0.7613123930959416, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4636,13 +7764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 162, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2858, - "time": 0.5921318612968434, + "noteOrder": 3676, + "time": 0.7613123930959416, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4659,13 +7787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.5971077592909344, + "noteOrder": 3676, + "time": 0.7613123930959416, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4682,13 +7810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2906, - "time": 0.6020836572850256, + "noteOrder": 3688, + "time": 0.7638003420929871, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4700,18 +7828,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 2, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2954, - "time": 0.6120354532732079, + "noteOrder": 3688, + "time": 0.7638003420929871, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4723,18 +7851,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2930, - "time": 0.6070595552791167, + "noteOrder": 3700, + "time": 0.7662882910900327, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4751,13 +7879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2954, - "time": 0.6120354532732079, + "noteOrder": 3700, + "time": 0.7662882910900327, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4774,11 +7902,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2978, - "time": 0.617011351267299, + "noteOrder": 3700, + "time": 0.7662882910900327, "position": { "x": 3, "y": 0 @@ -4797,13 +7925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3002, - "time": 0.6219872492613902, + "noteOrder": 3712, + "time": 0.7687762400870782, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4815,16 +7943,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3122, - "time": 0.6468667392318458, + "noteOrder": 3712, + "time": 0.7687762400870782, "position": { "x": 4, "y": 0 @@ -4843,11 +7971,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3146, - "time": 0.6518426372259369, + "noteOrder": 3724, + "time": 0.7712641890841238, "position": { "x": 4, "y": 0 @@ -4866,13 +7994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3122, - "time": 0.6468667392318458, + "noteOrder": 3724, + "time": 0.7712641890841238, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4884,18 +8012,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 3146, - "time": 0.6518426372259369, + "noteOrder": 3724, + "time": 0.7712641890841238, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4912,13 +8040,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3266, - "time": 0.6767221271963925, + "noteOrder": 3736, + "time": 0.7737521380811693, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4935,13 +8063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3290, - "time": 0.6816980251904836, + "noteOrder": 3736, + "time": 0.7737521380811693, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4953,18 +8081,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3314, - "time": 0.6866739231845748, + "noteOrder": 3748, + "time": 0.776240087078215, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4981,13 +8109,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3338, - "time": 0.6916498211786658, + "noteOrder": 3748, + "time": 0.776240087078215, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4999,18 +8127,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, - "time": 0.696625719172757, + "noteOrder": 3748, + "time": 0.776240087078215, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5022,16 +8150,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.7016016171668481, + "noteOrder": 3760, + "time": 0.7787280360752605, "position": { "x": 3, "y": 0 @@ -5050,13 +8178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3410, - "time": 0.7065775151609393, + "noteOrder": 3760, + "time": 0.7787280360752605, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5068,18 +8196,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3434, - "time": 0.7115534131550303, + "noteOrder": 3772, + "time": 0.781215985072306, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5096,11 +8224,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3650, - "time": 0.7563364951018504, + "noteOrder": 3772, + "time": 0.781215985072306, "position": { "x": 3, "y": 0 @@ -5119,13 +8247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3675, - "time": 0.7613123930959416, + "noteOrder": 3796, + "time": 0.7861918830663972, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5142,13 +8270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3699, - "time": 0.7662882910900326, + "noteOrder": 3808, + "time": 0.7886798320634427, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5160,18 +8288,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3723, - "time": 0.7712641890841238, + "noteOrder": 3808, + "time": 0.7886798320634427, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5188,13 +8316,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3747, - "time": 0.7762400870782149, + "noteOrder": 3820, + "time": 0.7911677810604882, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5206,16 +8334,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3795, - "time": 0.7861918830663971, + "noteOrder": 3820, + "time": 0.7911677810604882, "position": { "x": 7, "y": 0 @@ -5235,10 +8363,10 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3939, - "time": 0.8160472710309439, + "noteOrder": 3940, + "time": 0.816047271030944, "position": { "x": 7, "y": 0 @@ -5258,10 +8386,10 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4035, - "time": 0.8359508630073083, + "noteOrder": 4036, + "time": 0.8359508630073085, "position": { "x": 7, "y": 0 @@ -5281,10 +8409,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, - "time": 0.8359508630073083, + "noteOrder": 4036, + "time": 0.8359508630073085, "position": { "x": 3, "y": 0 @@ -5304,10 +8432,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.8558544549836727, + "noteOrder": 4133, + "time": 0.8558544549836729, "position": { "x": 3, "y": 0 @@ -5327,10 +8455,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4131, - "time": 0.8558544549836727, + "noteOrder": 4133, + "time": 0.8558544549836729, "position": { "x": 7, "y": 0 @@ -5350,10 +8478,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4227, - "time": 0.8757580469600372, + "noteOrder": 4229, + "time": 0.8757580469600373, "position": { "x": 7, "y": 0 @@ -5373,10 +8501,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4227, - "time": 0.8757580469600372, + "noteOrder": 4229, + "time": 0.8757580469600373, "position": { "x": 3, "y": 0 @@ -5396,10 +8524,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4323, - "time": 0.8956616389364017, + "noteOrder": 4325, + "time": 0.8956616389364018, "position": { "x": 3, "y": 0 @@ -5419,10 +8547,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.8956616389364017, + "noteOrder": 4325, + "time": 0.8956616389364018, "position": { "x": 7, "y": 0 @@ -5442,10 +8570,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4347, - "time": 0.9006375369304929, + "noteOrder": 4349, + "time": 0.900637536930493, "position": { "x": 7, "y": 0 @@ -5465,10 +8593,10 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4371, - "time": 0.905613434924584, + "noteOrder": 4373, + "time": 0.9056134349245841, "position": { "x": 3, "y": 0 @@ -5488,10 +8616,10 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4395, - "time": 0.910589332918675, + "noteOrder": 4397, + "time": 0.9105893329186752, "position": { "x": 3, "y": 0 @@ -5511,10 +8639,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.9255170269009485, + "noteOrder": 4469, + "time": 0.9255170269009486, "position": { "x": 6, "y": 0 @@ -5534,10 +8662,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4491, - "time": 0.9304929248950395, + "noteOrder": 4493, + "time": 0.9304929248950397, "position": { "x": 6, "y": 0 @@ -5557,10 +8685,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4515, - "time": 0.9354688228891307, + "noteOrder": 4517, + "time": 0.9354688228891308, "position": { "x": 3, "y": 0 @@ -5580,9 +8708,9 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4539, + "noteOrder": 4541, "time": 0.9404447208832218, "position": { "x": 3, @@ -5603,10 +8731,10 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4563, - "time": 0.9454206188773129, + "noteOrder": 4565, + "time": 0.9454206188773131, "position": { "x": 7, "y": 0 @@ -5626,10 +8754,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4587, - "time": 0.950396516871404, + "noteOrder": 4589, + "time": 0.9503965168714041, "position": { "x": 7, "y": 0 @@ -5649,10 +8777,10 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4683, - "time": 0.9703001088477685, + "noteOrder": 4685, + "time": 0.9703001088477686, "position": { "x": 3, "y": 0 @@ -5672,10 +8800,10 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.9752760068418597, + "noteOrder": 4709, + "time": 0.9752760068418598, "position": { "x": 3, "y": 0 @@ -5695,10 +8823,10 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4683, - "time": 0.9703001088477685, + "noteOrder": 4685, + "time": 0.9703001088477686, "position": { "x": 7, "y": 0 @@ -5718,10 +8846,10 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.9752760068418597, + "noteOrder": 4709, + "time": 0.9752760068418598, "position": { "x": 7, "y": 0 diff --git a/tracks/Tropical Love/256_difficulty_1b.json b/tracks/Tropical Love/256_difficulty_1b.json index ab7e7d50..e5a18205 100644 --- a/tracks/Tropical Love/256_difficulty_1b.json +++ b/tracks/Tropical Love/256_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 144, - "time": 0.029855387964546724, + "time": 0.029855387964546728, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 240, - "time": 0.04975897994091121, + "time": 0.04975897994091122, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 432, - "time": 0.08956616389364018, + "time": 0.0895661638936402, "position": { "x": 4, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 504, - "time": 0.10449385787591353, + "noteOrder": 505, + "time": 0.10449385787591356, "position": { "x": 5, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.10946975587000465, + "noteOrder": 529, + "time": 0.10946975587000467, "position": { "x": 5, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 552, - "time": 0.11444565386409578, + "noteOrder": 553, + "time": 0.11444565386409579, "position": { "x": 5, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 600, - "time": 0.12439744985227802, + "noteOrder": 601, + "time": 0.12439744985227803, "position": { "x": 5, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 624, - "time": 0.12937334784636914, + "noteOrder": 625, + "time": 0.12937334784636917, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.13434924584046026, + "noteOrder": 649, + "time": 0.1343492458404603, "position": { "x": 5, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.13932514383455138, "position": { "x": 7, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.14430104182864248, + "noteOrder": 697, + "time": 0.1443010418286425, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.1492769398227336, + "noteOrder": 721, + "time": 0.14927693982273363, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 769, - "time": 0.15922873581091587, + "time": 0.1592287358109159, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 793, - "time": 0.164204633805007, + "time": 0.16420463380500702, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 817, - "time": 0.16918053179909812, + "time": 0.16918053179909814, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 817, - "time": 0.16918053179909812, + "time": 0.16918053179909814, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 841, - "time": 0.17415642979318924, + "time": 0.17415642979318927, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 841, - "time": 0.17415642979318924, + "time": 0.17415642979318927, "position": { "x": 7, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 865, - "time": 0.17913232778728036, + "time": 0.1791323277872804, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 889, - "time": 0.18410822578137148, + "time": 0.1841082257813715, "position": { "x": 6, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 913, - "time": 0.1890841237754626, + "time": 0.18908412377546263, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 937, - "time": 0.19406002176955373, + "time": 0.19406002176955375, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 961, - "time": 0.19903591976364485, + "time": 0.19903591976364488, "position": { "x": 7, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 985, - "time": 0.20401181775773597, + "time": 0.204011817757736, "position": { "x": 6, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1033, - "time": 0.21396361374591819, + "time": 0.2139636137459182, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1057, - "time": 0.2189395117400093, + "time": 0.21893951174000933, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1081, - "time": 0.22391540973410043, + "time": 0.22391540973410046, "position": { "x": 4, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1105, - "time": 0.22889130772819155, + "time": 0.22889130772819158, "position": { "x": 7, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1129, - "time": 0.23386720572228267, + "time": 0.2338672057222827, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1153, - "time": 0.2388431037163738, + "time": 0.23884310371637382, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1177, - "time": 0.24381900171046492, + "time": 0.24381900171046494, "position": { "x": 4, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1225, - "time": 0.25377079769864713, + "time": 0.2537707976986472, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1249, - "time": 0.2587466956927383, + "time": 0.25874669569273834, "position": { "x": 7, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1297, - "time": 0.2686984916809205, + "time": 0.2686984916809206, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.28860208365728496, + "noteOrder": 1394, + "time": 0.288602083657285, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1418, "time": 0.2935779816513761, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.30352977763955835, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.31348157362774065, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.31845747162183174, + "noteOrder": 1538, + "time": 0.3184574716218318, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1561, + "noteOrder": 1562, "time": 0.3234333696159229, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1633, - "time": 0.33836106359819623, + "noteOrder": 1634, + "time": 0.3383610635981963, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1657, + "noteOrder": 1658, "time": 0.3433369615922874, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.3532887575804696, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.3582646555745607, + "noteOrder": 1730, + "time": 0.3582646555745608, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.3632405535686518, + "noteOrder": 1754, + "time": 0.36324055356865187, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1801, - "time": 0.37319234955683406, + "noteOrder": 1802, + "time": 0.3731923495568341, "position": { "x": 6, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1849, - "time": 0.3831441455450163, + "noteOrder": 1850, + "time": 0.38314414554501636, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.38812004353910745, + "noteOrder": 1874, + "time": 0.3881200435391075, "position": { "x": 5, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1897, - "time": 0.39309594153319855, + "noteOrder": 1898, + "time": 0.3930959415331986, "position": { "x": 5, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.4030477375213808, + "noteOrder": 1946, + "time": 0.40304773752138084, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.40802363551547194, + "noteOrder": 1970, + "time": 0.408023635515472, "position": { "x": 5, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.41299953350956303, + "noteOrder": 1994, + "time": 0.4129995335095631, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.42792722749183637, + "noteOrder": 2066, + "time": 0.4279272274918364, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2161, - "time": 0.44783081946820086, + "noteOrder": 2162, + "time": 0.4478308194682009, "position": { "x": 4, "y": 0 @@ -1214,7 +1214,7 @@ }, { "noteOrder": 2210, - "time": 0.4577826154563831, + "time": 0.45778261545638316, "position": { "x": 7, "y": 0 @@ -1234,7 +1234,7 @@ }, { "noteOrder": 2234, - "time": 0.46275851345047425, + "time": 0.4627585134504743, "position": { "x": 3, "y": 0 @@ -1254,7 +1254,7 @@ }, { "noteOrder": 2258, - "time": 0.46773441144456535, + "time": 0.4677344114445654, "position": { "x": 4, "y": 0 @@ -1274,7 +1274,7 @@ }, { "noteOrder": 2258, - "time": 0.46773441144456535, + "time": 0.4677344114445654, "position": { "x": 6, "y": 0 @@ -1294,7 +1294,7 @@ }, { "noteOrder": 2282, - "time": 0.47271030943865644, + "time": 0.47271030943865655, "position": { "x": 7, "y": 0 @@ -1314,7 +1314,7 @@ }, { "noteOrder": 2282, - "time": 0.47271030943865644, + "time": 0.47271030943865655, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2378, - "time": 0.4926139014150209, + "noteOrder": 2379, + "time": 0.49261390141502104, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2378, - "time": 0.4926139014150209, + "noteOrder": 2379, + "time": 0.49261390141502104, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2402, - "time": 0.4975897994091121, + "noteOrder": 2403, + "time": 0.49758979940911213, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2426, + "noteOrder": 2427, "time": 0.5025656974032032, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.5075415953972943, + "noteOrder": 2451, + "time": 0.5075415953972944, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2474, - "time": 0.5125174933913854, + "noteOrder": 2475, + "time": 0.5125174933913855, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2498, - "time": 0.5174933913854766, + "noteOrder": 2499, + "time": 0.5174933913854767, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2522, + "noteOrder": 2523, "time": 0.5224692893795677, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2570, - "time": 0.5324210853677499, + "noteOrder": 2571, + "time": 0.53242108536775, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2594, - "time": 0.537396983361841, + "noteOrder": 2595, + "time": 0.5373969833618412, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2618, + "noteOrder": 2619, "time": 0.5423728813559322, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2642, + "noteOrder": 2643, "time": 0.5473487793500234, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2666, - "time": 0.5523246773441144, + "noteOrder": 2667, + "time": 0.5523246773441145, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2690, + "noteOrder": 2691, "time": 0.5573005753382055, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2714, - "time": 0.5622764733322966, + "noteOrder": 2715, + "time": 0.5622764733322967, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2762, - "time": 0.5722282693204789, + "noteOrder": 2763, + "time": 0.572228269320479, "position": { "x": 3, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2786, - "time": 0.5772041673145699, + "noteOrder": 2787, + "time": 0.57720416731457, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2810, - "time": 0.5821800653086611, + "noteOrder": 2811, + "time": 0.5821800653086612, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.5871559633027522, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2858, - "time": 0.5921318612968434, + "noteOrder": 2859, + "time": 0.5921318612968435, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2882, - "time": 0.5971077592909344, + "noteOrder": 2883, + "time": 0.5971077592909345, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2906, - "time": 0.6020836572850256, + "noteOrder": 2907, + "time": 0.6020836572850257, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2930, + "noteOrder": 2931, "time": 0.6070595552791167, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2954, - "time": 0.6120354532732079, + "noteOrder": 2955, + "time": 0.612035453273208, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.6219872492613902, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.6319390452495725, "position": { "x": 6, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.6369149432436635, + "noteOrder": 3075, + "time": 0.6369149432436636, "position": { "x": 3, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.6418908412377546, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.656818535220028, + "noteOrder": 3171, + "time": 0.6568185352200281, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.6617944332141191, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3220, "time": 0.6667703312082103, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.6717462292023013, + "noteOrder": 3244, + "time": 0.6717462292023014, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.6767221271963925, + "noteOrder": 3268, + "time": 0.6767221271963926, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3316, "time": 0.6866739231845748, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3340, "time": 0.6916498211786658, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3388, "time": 0.7016016171668481, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3436, "time": 0.7115534131550303, "position": { "x": 4, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3458, - "time": 0.7165293111491214, + "noteOrder": 3460, + "time": 0.7165293111491216, "position": { "x": 7, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3484, "time": 0.7215052091432126, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.7264811071373036, + "noteOrder": 3508, + "time": 0.7264811071373037, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.7264811071373036, + "noteOrder": 3508, + "time": 0.7264811071373037, "position": { "x": 6, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7314570051313948, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7314570051313948, "position": { "x": 7, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3554, - "time": 0.7364329031254859, + "noteOrder": 3556, + "time": 0.736432903125486, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3580, "time": 0.7414088011195771, "position": { "x": 4, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3602, - "time": 0.7463846991136681, + "noteOrder": 3604, + "time": 0.7463846991136682, "position": { "x": 7, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7513605971077593, "position": { "x": 6, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.7563364951018504, + "noteOrder": 3652, + "time": 0.7563364951018505, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3699, - "time": 0.7662882910900326, + "noteOrder": 3700, + "time": 0.7662882910900327, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3723, + "noteOrder": 3724, "time": 0.7712641890841238, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3771, - "time": 0.7812159850723059, + "noteOrder": 3772, + "time": 0.781215985072306, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 3820, "time": 0.7911677810604882, "position": { "x": 6, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3843, - "time": 0.7961436790545794, + "noteOrder": 3844, + "time": 0.7961436790545795, "position": { "x": 3, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3867, - "time": 0.8011195770486704, + "noteOrder": 3868, + "time": 0.8011195770486705, "position": { "x": 7, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.8060954750427616, + "noteOrder": 3892, + "time": 0.8060954750427617, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3891, - "time": 0.8060954750427616, + "noteOrder": 3892, + "time": 0.8060954750427617, "position": { "x": 4, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 3916, "time": 0.8110713730368527, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 3916, "time": 0.8110713730368527, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3963, - "time": 0.8210231690250349, + "noteOrder": 3964, + "time": 0.821023169025035, "position": { "x": 5, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4011, + "noteOrder": 4012, "time": 0.8309749650132172, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4059, - "time": 0.8409267610013994, + "noteOrder": 4060, + "time": 0.8409267610013995, "position": { "x": 5, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4107, + "noteOrder": 4108, "time": 0.8508785569895817, "position": { "x": 5, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4155, - "time": 0.8608303529777639, + "noteOrder": 4157, + "time": 0.860830352977764, "position": { "x": 5, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.8707821489659462, "position": { "x": 5, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.8807339449541284, + "noteOrder": 4253, + "time": 0.8807339449541285, "position": { "x": 5, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8906857409423106, + "noteOrder": 4301, + "time": 0.8906857409423107, "position": { "x": 5, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4371, - "time": 0.905613434924584, + "noteOrder": 4373, + "time": 0.9056134349245841, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4467, - "time": 0.9255170269009485, + "noteOrder": 4469, + "time": 0.9255170269009486, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4563, - "time": 0.9454206188773129, + "noteOrder": 4565, + "time": 0.9454206188773131, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.9553724148654952, + "noteOrder": 4613, + "time": 0.9553724148654953, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4637, "time": 0.9603483128595863, "position": { "x": 7, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.9653242108536774, + "noteOrder": 4661, + "time": 0.9653242108536776, "position": { "x": 6, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.9653242108536774, + "noteOrder": 4661, + "time": 0.9653242108536776, "position": { "x": 4, "y": 0 @@ -2796,10 +2796,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.019903591976364484, + "time": 0.019903591976364488, "position": { "x": 7, "y": 0 @@ -2819,10 +2819,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.029855387964546724, + "time": 0.029855387964546728, "position": { "x": 7, "y": 0 @@ -2842,10 +2842,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.03980718395272897, + "time": 0.039807183952728975, "position": { "x": 3, "y": 0 @@ -2865,10 +2865,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.04975897994091121, + "time": 0.04975897994091122, "position": { "x": 3, "y": 0 @@ -2888,10 +2888,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, - "time": 0.05971077592909345, + "time": 0.059710775929093456, "position": { "x": 7, "y": 0 @@ -2911,7 +2911,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, "time": 0.06966257191727569, @@ -2934,10 +2934,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 384, - "time": 0.07961436790545794, + "time": 0.07961436790545795, "position": { "x": 3, "y": 0 @@ -2957,10 +2957,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 432, - "time": 0.08956616389364018, + "time": 0.0895661638936402, "position": { "x": 3, "y": 0 @@ -2980,10 +2980,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 480, - "time": 0.09951795988182242, + "noteOrder": 481, + "time": 0.09951795988182244, "position": { "x": 7, "y": 0 @@ -3003,10 +3003,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, - "time": 0.1194215518581869, + "noteOrder": 577, + "time": 0.11942155185818691, "position": { "x": 7, "y": 0 @@ -3026,10 +3026,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, - "time": 0.1194215518581869, + "noteOrder": 577, + "time": 0.11942155185818691, "position": { "x": 3, "y": 0 @@ -3049,9 +3049,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13932514383455138, "position": { "x": 3, @@ -3072,10 +3072,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1009, - "time": 0.20898771575182706, + "time": 0.20898771575182712, "position": { "x": 4, "y": 0 @@ -3095,10 +3095,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1033, - "time": 0.21396361374591819, + "time": 0.2139636137459182, "position": { "x": 4, "y": 0 @@ -3118,10 +3118,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1201, - "time": 0.24879489970455604, + "time": 0.24879489970455607, "position": { "x": 6, "y": 0 @@ -3141,10 +3141,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1225, - "time": 0.25377079769864713, + "time": 0.2537707976986472, "position": { "x": 6, "y": 0 @@ -3164,10 +3164,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1441, - "time": 0.2985538796454672, + "noteOrder": 1442, + "time": 0.29855387964546726, "position": { "x": 7, "y": 0 @@ -3187,9 +3187,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, + "noteOrder": 1466, "time": 0.30352977763955835, "position": { "x": 7, @@ -3210,9 +3210,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.3085056756336495, "position": { "x": 3, @@ -3233,9 +3233,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.31348157362774065, "position": { "x": 3, @@ -3256,10 +3256,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1585, - "time": 0.328409267610014, + "noteOrder": 1586, + "time": 0.32840926761001404, "position": { "x": 4, "y": 0 @@ -3279,9 +3279,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.33338516560410514, "position": { "x": 4, @@ -3302,10 +3302,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1585, - "time": 0.328409267610014, + "noteOrder": 1586, + "time": 0.32840926761001404, "position": { "x": 6, "y": 0 @@ -3325,9 +3325,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.33338516560410514, "position": { "x": 6, @@ -3348,10 +3348,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.3483128595863785, + "noteOrder": 1682, + "time": 0.34831285958637853, "position": { "x": 7, "y": 0 @@ -3371,9 +3371,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.3532887575804696, "position": { "x": 7, @@ -3394,10 +3394,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.36821645156274296, + "noteOrder": 1778, + "time": 0.368216451562743, "position": { "x": 3, "y": 0 @@ -3417,10 +3417,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1801, - "time": 0.37319234955683406, + "noteOrder": 1802, + "time": 0.3731923495568341, "position": { "x": 3, "y": 0 @@ -3440,10 +3440,10 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.3781682475509252, + "noteOrder": 1826, + "time": 0.37816824755092526, "position": { "x": 7, "y": 0 @@ -3463,10 +3463,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.3980718395272897, + "noteOrder": 1922, + "time": 0.39807183952728975, "position": { "x": 7, "y": 0 @@ -3486,10 +3486,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1921, - "time": 0.3980718395272897, + "noteOrder": 1922, + "time": 0.39807183952728975, "position": { "x": 3, "y": 0 @@ -3509,10 +3509,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2017, - "time": 0.4179754315036541, + "noteOrder": 2018, + "time": 0.41797543150365424, "position": { "x": 3, "y": 0 @@ -3532,10 +3532,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.4179754315036541, + "noteOrder": 2018, + "time": 0.41797543150365424, "position": { "x": 7, "y": 0 @@ -3555,10 +3555,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, - "time": 0.42792722749183637, + "noteOrder": 2066, + "time": 0.4279272274918364, "position": { "x": 7, "y": 0 @@ -3578,10 +3578,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.4378790234800186, + "noteOrder": 2114, + "time": 0.43787902348001867, "position": { "x": 3, "y": 0 @@ -3601,10 +3601,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.44783081946820086, + "noteOrder": 2162, + "time": 0.4478308194682009, "position": { "x": 3, "y": 0 @@ -3624,10 +3624,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, - "time": 0.4776862074327476, + "noteOrder": 2307, + "time": 0.47768620743274764, "position": { "x": 6, "y": 0 @@ -3647,10 +3647,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2354, - "time": 0.48763800342092983, + "noteOrder": 2355, + "time": 0.4876380034209299, "position": { "x": 6, "y": 0 @@ -3670,10 +3670,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2306, - "time": 0.4776862074327476, + "noteOrder": 2307, + "time": 0.47768620743274764, "position": { "x": 4, "y": 0 @@ -3693,10 +3693,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2354, - "time": 0.48763800342092983, + "noteOrder": 2355, + "time": 0.4876380034209299, "position": { "x": 4, "y": 0 @@ -3716,9 +3716,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.5274451873736589, "position": { "x": 6, @@ -3739,10 +3739,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2570, - "time": 0.5324210853677499, + "noteOrder": 2571, + "time": 0.53242108536775, "position": { "x": 6, "y": 0 @@ -3762,9 +3762,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2738, + "noteOrder": 2739, "time": 0.5672523713263877, "position": { "x": 4, @@ -3785,10 +3785,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2762, - "time": 0.5722282693204789, + "noteOrder": 2763, + "time": 0.572228269320479, "position": { "x": 4, "y": 0 @@ -3808,9 +3808,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2978, + "noteOrder": 2979, "time": 0.617011351267299, "position": { "x": 3, @@ -3831,9 +3831,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.6219872492613902, "position": { "x": 3, @@ -3854,9 +3854,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.6269631472554813, "position": { "x": 7, @@ -3877,9 +3877,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.6319390452495725, "position": { "x": 7, @@ -3900,9 +3900,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.6468667392318458, "position": { "x": 4, @@ -3923,9 +3923,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.6518426372259369, "position": { "x": 4, @@ -3946,9 +3946,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.6468667392318458, "position": { "x": 6, @@ -3969,9 +3969,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.6518426372259369, "position": { "x": 6, @@ -3992,9 +3992,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3290, + "noteOrder": 3292, "time": 0.6816980251904836, "position": { "x": 3, @@ -4015,9 +4015,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3338, + "noteOrder": 3340, "time": 0.6916498211786658, "position": { "x": 3, @@ -4038,10 +4038,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, - "time": 0.696625719172757, + "noteOrder": 3364, + "time": 0.6966257191727571, "position": { "x": 7, "y": 0 @@ -4061,9 +4061,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, + "noteOrder": 3388, "time": 0.7016016171668481, "position": { "x": 7, @@ -4084,9 +4084,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.7065775151609393, "position": { "x": 3, @@ -4107,9 +4107,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, + "noteOrder": 3436, "time": 0.7115534131550303, "position": { "x": 3, @@ -4130,9 +4130,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3675, + "noteOrder": 3676, "time": 0.7613123930959416, "position": { "x": 7, @@ -4153,9 +4153,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3723, + "noteOrder": 3724, "time": 0.7712641890841238, "position": { "x": 7, @@ -4176,10 +4176,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3747, - "time": 0.7762400870782149, + "noteOrder": 3748, + "time": 0.776240087078215, "position": { "x": 3, "y": 0 @@ -4199,10 +4199,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3771, - "time": 0.7812159850723059, + "noteOrder": 3772, + "time": 0.781215985072306, "position": { "x": 3, "y": 0 @@ -4222,10 +4222,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3795, - "time": 0.7861918830663971, + "noteOrder": 3796, + "time": 0.7861918830663972, "position": { "x": 7, "y": 0 @@ -4245,9 +4245,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3819, + "noteOrder": 3820, "time": 0.7911677810604882, "position": { "x": 7, @@ -4268,10 +4268,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3939, - "time": 0.8160472710309439, + "noteOrder": 3940, + "time": 0.816047271030944, "position": { "x": 7, "y": 0 @@ -4291,10 +4291,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4035, - "time": 0.8359508630073083, + "noteOrder": 4036, + "time": 0.8359508630073085, "position": { "x": 7, "y": 0 @@ -4314,10 +4314,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4035, - "time": 0.8359508630073083, + "noteOrder": 4036, + "time": 0.8359508630073085, "position": { "x": 3, "y": 0 @@ -4337,10 +4337,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.8558544549836727, + "noteOrder": 4133, + "time": 0.8558544549836729, "position": { "x": 3, "y": 0 @@ -4360,10 +4360,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4131, - "time": 0.8558544549836727, + "noteOrder": 4133, + "time": 0.8558544549836729, "position": { "x": 7, "y": 0 @@ -4383,10 +4383,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4227, - "time": 0.8757580469600372, + "noteOrder": 4229, + "time": 0.8757580469600373, "position": { "x": 7, "y": 0 @@ -4406,10 +4406,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4227, - "time": 0.8757580469600372, + "noteOrder": 4229, + "time": 0.8757580469600373, "position": { "x": 3, "y": 0 @@ -4429,10 +4429,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4323, - "time": 0.8956616389364017, + "noteOrder": 4325, + "time": 0.8956616389364018, "position": { "x": 3, "y": 0 @@ -4452,10 +4452,10 @@ }, { "lineGroupId": 171, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4323, - "time": 0.8956616389364017, + "noteOrder": 4325, + "time": 0.8956616389364018, "position": { "x": 7, "y": 0 @@ -4475,10 +4475,10 @@ }, { "lineGroupId": 171, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4371, - "time": 0.905613434924584, + "noteOrder": 4373, + "time": 0.9056134349245841, "position": { "x": 7, "y": 0 @@ -4498,10 +4498,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, - "time": 0.9155652309127662, + "noteOrder": 4421, + "time": 0.9155652309127663, "position": { "x": 3, "y": 0 @@ -4521,10 +4521,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4467, - "time": 0.9255170269009485, + "noteOrder": 4469, + "time": 0.9255170269009486, "position": { "x": 3, "y": 0 @@ -4544,10 +4544,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4515, - "time": 0.9354688228891307, + "noteOrder": 4517, + "time": 0.9354688228891308, "position": { "x": 7, "y": 0 @@ -4567,10 +4567,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4563, - "time": 0.9454206188773129, + "noteOrder": 4565, + "time": 0.9454206188773131, "position": { "x": 7, "y": 0 @@ -4590,10 +4590,10 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4683, - "time": 0.9703001088477685, + "noteOrder": 4685, + "time": 0.9703001088477686, "position": { "x": 3, "y": 0 @@ -4613,10 +4613,10 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.9752760068418597, + "noteOrder": 4709, + "time": 0.9752760068418598, "position": { "x": 3, "y": 0 @@ -4636,10 +4636,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4683, - "time": 0.9703001088477685, + "noteOrder": 4685, + "time": 0.9703001088477686, "position": { "x": 7, "y": 0 @@ -4659,10 +4659,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.9752760068418597, + "noteOrder": 4709, + "time": 0.9752760068418598, "position": { "x": 7, "y": 0 diff --git a/tracks/Tropical Love/info.json b/tracks/Tropical Love/info.json index e68eb03f..a8c9ed84 100644 --- a/tracks/Tropical Love/info.json +++ b/tracks/Tropical Love/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Tropical Love", - "SongLength": "124.917551", + "SongLength": "114.964898", "SongAuthorName": "CHEAP CREAM", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Tropical White/356_difficulty_1a.json b/tracks/Tropical White/356_difficulty_1a.json index 45dbf2d1..d0e05493 100644 --- a/tracks/Tropical White/356_difficulty_1a.json +++ b/tracks/Tropical White/356_difficulty_1a.json @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 350, - "time": 0.06224066390041494, + "noteOrder": 351, + "time": 0.06224066390041493, "position": { "x": 6, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 537, - "time": 0.09543568464730291, + "noteOrder": 538, + "time": 0.0954356846473029, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 631, - "time": 0.11203319502074689, + "time": 0.11203319502074688, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 677, - "time": 0.12033195020746888, + "noteOrder": 678, + "time": 0.12033195020746887, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 724, - "time": 0.1286307053941909, + "time": 0.12863070539419086, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 818, - "time": 0.14522821576763487, + "time": 0.14522821576763484, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 864, - "time": 0.15352697095435686, + "noteOrder": 865, + "time": 0.15352697095435683, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 911, - "time": 0.16182572614107885, + "time": 0.16182572614107882, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 934, + "noteOrder": 935, "time": 0.16597510373443983, "position": { "x": 6, @@ -234,7 +234,7 @@ }, { "noteOrder": 958, - "time": 0.17012448132780084, + "time": 0.1701244813278008, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 981, + "noteOrder": 982, "time": 0.17427385892116182, "position": { "x": 5, @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1004, - "time": 0.17842323651452285, + "noteOrder": 1005, + "time": 0.1784232365145228, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1051, - "time": 0.18672199170124484, + "noteOrder": 1052, + "time": 0.1867219917012448, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1075, - "time": 0.19087136929460582, + "time": 0.1908713692946058, "position": { "x": 5, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1098, - "time": 0.19502074688796683, + "time": 0.19502074688796678, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1121, - "time": 0.19917012448132781, + "noteOrder": 1122, + "time": 0.1991701244813278, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1145, - "time": 0.20331950207468882, + "time": 0.20331950207468877, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1168, - "time": 0.2074688796680498, + "time": 0.20746887966804978, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1191, - "time": 0.2116182572614108, + "noteOrder": 1192, + "time": 0.21161825726141076, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1215, - "time": 0.2157676348547718, + "time": 0.21576763485477177, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1238, - "time": 0.2199170124481328, + "noteOrder": 1239, + "time": 0.21991701244813275, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1261, - "time": 0.22406639004149378, + "noteOrder": 1262, + "time": 0.22406639004149376, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1308, - "time": 0.23236514522821577, + "noteOrder": 1309, + "time": 0.23236514522821575, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1331, - "time": 0.23651452282157678, + "noteOrder": 1332, + "time": 0.23651452282157673, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1355, - "time": 0.24066390041493776, + "time": 0.24066390041493774, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1378, - "time": 0.24481327800829877, + "noteOrder": 1379, + "time": 0.24481327800829872, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1402, - "time": 0.24896265560165975, + "time": 0.24896265560165973, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1425, - "time": 0.2531120331950208, + "noteOrder": 1426, + "time": 0.25311203319502074, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1448, - "time": 0.2572614107883818, + "noteOrder": 1449, + "time": 0.2572614107883817, "position": { "x": 3, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1472, - "time": 0.26141078838174275, + "time": 0.2614107883817427, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1495, + "noteOrder": 1496, "time": 0.26556016597510373, "position": { "x": 7, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1518, - "time": 0.26970954356846477, + "noteOrder": 1519, + "time": 0.2697095435684647, "position": { "x": 5, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1542, - "time": 0.27385892116182575, + "time": 0.2738589211618257, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1565, - "time": 0.27800829875518673, + "noteOrder": 1566, + "time": 0.2780082987551867, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1752, - "time": 0.3112033195020747, + "noteOrder": 1753, + "time": 0.31120331950207464, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1845, - "time": 0.3278008298755187, + "noteOrder": 1846, + "time": 0.3278008298755186, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1869, + "noteOrder": 1870, "time": 0.33195020746887965, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1893, "time": 0.33609958506224064, "position": { "x": 7, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1915, - "time": 0.34024896265560167, + "noteOrder": 1916, + "time": 0.3402489626556016, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1939, - "time": 0.34439834024896265, + "noteOrder": 1940, + "time": 0.3443983402489626, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1962, + "noteOrder": 1963, "time": 0.34854771784232363, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2009, - "time": 0.3568464730290457, + "noteOrder": 2010, + "time": 0.3568464730290456, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2032, - "time": 0.36099585062240663, + "noteOrder": 2033, + "time": 0.3609958506224066, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2126, - "time": 0.37759336099585067, + "noteOrder": 2127, + "time": 0.37759336099585056, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2219, - "time": 0.39419087136929465, + "noteOrder": 2220, + "time": 0.39419087136929454, "position": { "x": 3, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 2243, - "time": 0.39834024896265563, + "time": 0.3983402489626556, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2266, - "time": 0.4024896265560166, + "noteOrder": 2267, + "time": 0.40248962655601656, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2289, - "time": 0.40663900414937765, + "noteOrder": 2290, + "time": 0.40663900414937754, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2313, - "time": 0.41078838174273863, + "noteOrder": 2314, + "time": 0.4107883817427385, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.44813278008298757, + "noteOrder": 2524, + "time": 0.4481327800829875, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.45228215767634855, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2570, - "time": 0.4564315352697096, + "noteOrder": 2571, + "time": 0.4564315352697095, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2593, - "time": 0.46058091286307057, + "noteOrder": 2594, + "time": 0.4605809128630705, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2710, - "time": 0.48132780082987553, + "noteOrder": 2711, + "time": 0.4813278008298755, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2733, + "noteOrder": 2734, "time": 0.4854771784232365, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.48962655601659755, + "noteOrder": 2758, + "time": 0.48962655601659744, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2780, - "time": 0.49377593360995853, + "noteOrder": 2781, + "time": 0.4937759336099585, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2990, + "noteOrder": 2991, "time": 0.5311203319502075, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3015, "time": 0.5352697095435685, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3037, - "time": 0.5394190871369295, + "noteOrder": 3038, + "time": 0.5394190871369294, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3060, - "time": 0.5435684647302905, + "noteOrder": 3061, + "time": 0.5435684647302904, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3247, - "time": 0.5767634854771785, + "noteOrder": 3248, + "time": 0.5767634854771784, "position": { "x": 4, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3342, "time": 0.5933609958506224, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.6099585062240663, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3527, + "noteOrder": 3529, "time": 0.6265560165975104, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3924, + "noteOrder": 3926, "time": 0.6970954356846473, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3948, - "time": 0.7012448132780082, + "noteOrder": 3949, + "time": 0.7012448132780081, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3973, "time": 0.7053941908713692, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3994, + "noteOrder": 3996, "time": 0.7095435684647302, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.7302904564315352, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4135, + "noteOrder": 4136, "time": 0.7344398340248962, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4160, "time": 0.7385892116182572, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4181, + "noteOrder": 4183, "time": 0.7427385892116182, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4298, - "time": 0.7634854771784233, + "noteOrder": 4300, + "time": 0.7634854771784232, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4322, - "time": 0.7676348547717843, + "noteOrder": 4323, + "time": 0.7676348547717842, "position": { "x": 8, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4345, - "time": 0.7717842323651453, + "noteOrder": 4347, + "time": 0.7717842323651452, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4368, - "time": 0.7759336099585062, + "noteOrder": 4370, + "time": 0.7759336099585061, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4485, - "time": 0.7966804979253113, + "noteOrder": 4487, + "time": 0.7966804979253111, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4508, - "time": 0.8008298755186722, + "noteOrder": 4510, + "time": 0.8008298755186721, "position": { "x": 5, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4532, - "time": 0.8049792531120332, + "noteOrder": 4534, + "time": 0.8049792531120331, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4555, - "time": 0.8091286307053942, + "noteOrder": 4557, + "time": 0.8091286307053941, "position": { "x": 3, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4625, - "time": 0.8215767634854773, + "noteOrder": 4627, + "time": 0.821576763485477, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4672, - "time": 0.8298755186721992, + "noteOrder": 4674, + "time": 0.8298755186721991, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4695, - "time": 0.8340248962655602, + "noteOrder": 4697, + "time": 0.8340248962655601, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4719, + "noteOrder": 4721, "time": 0.8381742738589212, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.8423236514522822, + "noteOrder": 4744, + "time": 0.842323651452282, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.8630705394190872, + "noteOrder": 4861, + "time": 0.8630705394190871, "position": { "x": 3, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4882, - "time": 0.8672199170124482, + "noteOrder": 4884, + "time": 0.867219917012448, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 4908, "time": 0.8713692946058091, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8755186721991702, + "noteOrder": 4931, + "time": 0.87551867219917, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5046, - "time": 0.8962655601659751, + "noteOrder": 5048, + "time": 0.896265560165975, "position": { "x": 3, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5069, - "time": 0.9004149377593361, + "noteOrder": 5071, + "time": 0.900414937759336, "position": { "x": 2, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5092, + "noteOrder": 5095, "time": 0.9045643153526971, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5116, - "time": 0.9087136929460582, + "noteOrder": 5118, + "time": 0.908713692946058, "position": { "x": 5, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5233, - "time": 0.9294605809128631, + "noteOrder": 5235, + "time": 0.929460580912863, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5256, - "time": 0.9336099585062241, + "noteOrder": 5258, + "time": 0.933609958506224, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5279, + "noteOrder": 5282, "time": 0.9377593360995851, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5303, - "time": 0.9419087136929462, + "noteOrder": 5305, + "time": 0.9419087136929459, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5373, - "time": 0.9543568464730291, + "noteOrder": 5375, + "time": 0.954356846473029, "position": { "x": 4, "y": 0 @@ -2076,7 +2076,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 187, "time": 0.03319502074688797, @@ -2099,7 +2099,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 210, "time": 0.03734439834024896, @@ -2122,7 +2122,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 210, "time": 0.03734439834024896, @@ -2145,7 +2145,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 234, "time": 0.04149377593360996, @@ -2168,7 +2168,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 234, "time": 0.04149377593360996, @@ -2191,7 +2191,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 257, "time": 0.04564315352697095, @@ -2214,10 +2214,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 280, - "time": 0.049792531120331954, + "time": 0.04979253112033195, "position": { "x": 4, "y": 0 @@ -2237,10 +2237,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 304, - "time": 0.05394190871369295, + "time": 0.05394190871369294, "position": { "x": 4, "y": 0 @@ -2260,10 +2260,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 304, - "time": 0.05394190871369295, + "time": 0.05394190871369294, "position": { "x": 5, "y": 0 @@ -2283,10 +2283,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 327, - "time": 0.058091286307053944, + "time": 0.05809128630705394, "position": { "x": 5, "y": 0 @@ -2306,10 +2306,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 327, - "time": 0.058091286307053944, + "time": 0.05809128630705394, "position": { "x": 4, "y": 0 @@ -2329,10 +2329,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 350, - "time": 0.06224066390041494, + "noteOrder": 351, + "time": 0.06224066390041493, "position": { "x": 4, "y": 0 @@ -2352,7 +2352,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 374, "time": 0.06639004149377593, @@ -2375,7 +2375,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 397, "time": 0.07053941908713693, @@ -2398,7 +2398,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 397, "time": 0.07053941908713693, @@ -2421,9 +2421,9 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 420, + "noteOrder": 421, "time": 0.07468879668049792, "position": { "x": 6, @@ -2444,9 +2444,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 420, + "noteOrder": 421, "time": 0.07468879668049792, "position": { "x": 7, @@ -2467,7 +2467,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 444, "time": 0.07883817427385892, @@ -2490,7 +2490,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 467, "time": 0.08298755186721991, @@ -2513,7 +2513,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 491, "time": 0.08713692946058091, @@ -2536,7 +2536,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 491, "time": 0.08713692946058091, @@ -2559,7 +2559,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 514, "time": 0.0912863070539419, @@ -2582,7 +2582,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 514, "time": 0.0912863070539419, @@ -2605,10 +2605,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 537, - "time": 0.09543568464730291, + "noteOrder": 538, + "time": 0.0954356846473029, "position": { "x": 5, "y": 0 @@ -2628,10 +2628,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 561, - "time": 0.09958506224066391, + "time": 0.0995850622406639, "position": { "x": 6, "y": 0 @@ -2651,10 +2651,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 584, - "time": 0.1037344398340249, + "time": 0.10373443983402489, "position": { "x": 6, "y": 0 @@ -2674,10 +2674,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 584, - "time": 0.1037344398340249, + "time": 0.10373443983402489, "position": { "x": 5, "y": 0 @@ -2697,10 +2697,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 607, - "time": 0.1078838174273859, + "noteOrder": 608, + "time": 0.10788381742738588, "position": { "x": 5, "y": 0 @@ -2720,10 +2720,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 607, - "time": 0.1078838174273859, + "noteOrder": 608, + "time": 0.10788381742738588, "position": { "x": 6, "y": 0 @@ -2743,10 +2743,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 631, - "time": 0.11203319502074689, + "time": 0.11203319502074688, "position": { "x": 6, "y": 0 @@ -2766,10 +2766,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 654, - "time": 0.11618257261410789, + "time": 0.11618257261410787, "position": { "x": 4, "y": 0 @@ -2789,10 +2789,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 677, - "time": 0.12033195020746888, + "noteOrder": 678, + "time": 0.12033195020746887, "position": { "x": 4, "y": 0 @@ -2812,10 +2812,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 701, - "time": 0.12448132780082988, + "time": 0.12448132780082986, "position": { "x": 6, "y": 0 @@ -2835,10 +2835,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 724, - "time": 0.1286307053941909, + "time": 0.12863070539419086, "position": { "x": 6, "y": 0 @@ -2858,7 +2858,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 748, "time": 0.13278008298755187, @@ -2881,10 +2881,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 771, - "time": 0.13692946058091288, + "time": 0.13692946058091285, "position": { "x": 4, "y": 0 @@ -2904,10 +2904,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, - "time": 0.13692946058091288, + "time": 0.13692946058091285, "position": { "x": 5, "y": 0 @@ -2927,9 +2927,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 794, + "noteOrder": 795, "time": 0.14107883817427386, "position": { "x": 5, @@ -2950,9 +2950,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 794, + "noteOrder": 795, "time": 0.14107883817427386, "position": { "x": 4, @@ -2973,10 +2973,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 818, - "time": 0.14522821576763487, + "time": 0.14522821576763484, "position": { "x": 4, "y": 0 @@ -2996,7 +2996,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.14937759336099585, @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 864, - "time": 0.15352697095435686, + "noteOrder": 865, + "time": 0.15352697095435683, "position": { "x": 6, "y": 0 @@ -3042,7 +3042,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 888, "time": 0.15767634854771784, @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 911, - "time": 0.16182572614107885, + "time": 0.16182572614107882, "position": { "x": 4, "y": 0 @@ -3088,9 +3088,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1588, + "noteOrder": 1589, "time": 0.2821576763485477, "position": { "x": 3, @@ -3111,10 +3111,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.29045643153526973, + "noteOrder": 1636, + "time": 0.2904564315352697, "position": { "x": 3, "y": 0 @@ -3134,9 +3134,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2987551867219917, "position": { "x": 6, @@ -3157,9 +3157,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.3029045643153527, "position": { "x": 6, @@ -3180,9 +3180,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.3029045643153527, "position": { "x": 5, @@ -3203,10 +3203,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1729, - "time": 0.3070539419087137, + "time": 0.30705394190871366, "position": { "x": 5, "y": 0 @@ -3226,10 +3226,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1729, - "time": 0.3070539419087137, + "time": 0.30705394190871366, "position": { "x": 6, "y": 0 @@ -3249,10 +3249,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1752, - "time": 0.3112033195020747, + "noteOrder": 1753, + "time": 0.31120331950207464, "position": { "x": 6, "y": 0 @@ -3272,9 +3272,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1775, + "noteOrder": 1776, "time": 0.3153526970954357, "position": { "x": 4, @@ -3295,7 +3295,7 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1799, "time": 0.31950207468879666, @@ -3318,7 +3318,7 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1799, "time": 0.31950207468879666, @@ -3341,10 +3341,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1822, - "time": 0.3236514522821577, + "noteOrder": 1823, + "time": 0.32365145228215764, "position": { "x": 5, "y": 0 @@ -3364,10 +3364,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1822, - "time": 0.3236514522821577, + "noteOrder": 1823, + "time": 0.32365145228215764, "position": { "x": 4, "y": 0 @@ -3387,10 +3387,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1845, - "time": 0.3278008298755187, + "noteOrder": 1846, + "time": 0.3278008298755186, "position": { "x": 4, "y": 0 @@ -3410,9 +3410,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2056, + "noteOrder": 2057, "time": 0.3651452282157676, "position": { "x": 4, @@ -3433,9 +3433,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2079, + "noteOrder": 2080, "time": 0.3692946058091286, "position": { "x": 4, @@ -3456,9 +3456,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2079, + "noteOrder": 2080, "time": 0.3692946058091286, "position": { "x": 5, @@ -3479,10 +3479,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2102, - "time": 0.3734439834024897, + "noteOrder": 2103, + "time": 0.3734439834024896, "position": { "x": 5, "y": 0 @@ -3502,10 +3502,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2102, - "time": 0.3734439834024897, + "noteOrder": 2103, + "time": 0.3734439834024896, "position": { "x": 4, "y": 0 @@ -3525,10 +3525,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2126, - "time": 0.37759336099585067, + "noteOrder": 2127, + "time": 0.37759336099585056, "position": { "x": 4, "y": 0 @@ -3548,10 +3548,10 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2149, - "time": 0.38174273858921165, + "noteOrder": 2150, + "time": 0.3817427385892116, "position": { "x": 6, "y": 0 @@ -3571,10 +3571,10 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2172, - "time": 0.38589211618257263, + "noteOrder": 2173, + "time": 0.3858921161825726, "position": { "x": 6, "y": 0 @@ -3594,10 +3594,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2172, - "time": 0.38589211618257263, + "noteOrder": 2173, + "time": 0.3858921161825726, "position": { "x": 5, "y": 0 @@ -3617,10 +3617,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2196, - "time": 0.39004149377593367, + "noteOrder": 2197, + "time": 0.39004149377593356, "position": { "x": 5, "y": 0 @@ -3640,10 +3640,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2196, - "time": 0.39004149377593367, + "noteOrder": 2197, + "time": 0.39004149377593356, "position": { "x": 6, "y": 0 @@ -3663,10 +3663,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2219, - "time": 0.39419087136929465, + "noteOrder": 2220, + "time": 0.39419087136929454, "position": { "x": 6, "y": 0 @@ -3686,10 +3686,10 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2429, - "time": 0.4315352697095436, + "noteOrder": 2430, + "time": 0.43153526970954353, "position": { "x": 5, "y": 0 @@ -3709,9 +3709,9 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.43568464730290457, "position": { "x": 5, @@ -3732,9 +3732,9 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2453, + "noteOrder": 2454, "time": 0.43568464730290457, "position": { "x": 4, @@ -3755,10 +3755,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.4398340248962656, + "noteOrder": 2477, + "time": 0.4398340248962655, "position": { "x": 4, "y": 0 @@ -3778,10 +3778,10 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2476, - "time": 0.4398340248962656, + "noteOrder": 2477, + "time": 0.4398340248962655, "position": { "x": 5, "y": 0 @@ -3801,10 +3801,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.4439834024896266, + "noteOrder": 2501, + "time": 0.4439834024896265, "position": { "x": 5, "y": 0 @@ -3824,10 +3824,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2499, - "time": 0.4439834024896266, + "noteOrder": 2501, + "time": 0.4439834024896265, "position": { "x": 4, "y": 0 @@ -3847,10 +3847,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, - "time": 0.44813278008298757, + "noteOrder": 2524, + "time": 0.4481327800829875, "position": { "x": 4, "y": 0 @@ -3870,10 +3870,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2616, - "time": 0.46473029045643155, + "noteOrder": 2617, + "time": 0.4647302904564315, "position": { "x": 5, "y": 0 @@ -3893,9 +3893,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2640, + "noteOrder": 2641, "time": 0.46887966804979253, "position": { "x": 5, @@ -3916,9 +3916,9 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2640, + "noteOrder": 2641, "time": 0.46887966804979253, "position": { "x": 6, @@ -3939,10 +3939,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2663, - "time": 0.47302904564315357, + "noteOrder": 2664, + "time": 0.47302904564315346, "position": { "x": 6, "y": 0 @@ -3962,10 +3962,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2663, - "time": 0.47302904564315357, + "noteOrder": 2664, + "time": 0.47302904564315346, "position": { "x": 5, "y": 0 @@ -3985,10 +3985,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2686, - "time": 0.47717842323651455, + "noteOrder": 2688, + "time": 0.4771784232365145, "position": { "x": 5, "y": 0 @@ -4008,10 +4008,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2686, - "time": 0.47717842323651455, + "noteOrder": 2688, + "time": 0.4771784232365145, "position": { "x": 6, "y": 0 @@ -4031,10 +4031,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2710, - "time": 0.48132780082987553, + "noteOrder": 2711, + "time": 0.4813278008298755, "position": { "x": 6, "y": 0 @@ -4054,10 +4054,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2803, - "time": 0.4979253112033195, + "noteOrder": 2804, + "time": 0.49792531120331945, "position": { "x": 5, "y": 0 @@ -4077,9 +4077,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2827, + "noteOrder": 2828, "time": 0.5020746887966805, "position": { "x": 5, @@ -4100,9 +4100,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2827, + "noteOrder": 2828, "time": 0.5020746887966805, "position": { "x": 4, @@ -4123,10 +4123,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2850, - "time": 0.5062240663900416, + "noteOrder": 2851, + "time": 0.5062240663900415, "position": { "x": 4, "y": 0 @@ -4146,10 +4146,10 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2850, - "time": 0.5062240663900416, + "noteOrder": 2851, + "time": 0.5062240663900415, "position": { "x": 5, "y": 0 @@ -4169,10 +4169,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2873, - "time": 0.5103734439834026, + "noteOrder": 2874, + "time": 0.5103734439834025, "position": { "x": 5, "y": 0 @@ -4192,10 +4192,10 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2873, - "time": 0.5103734439834026, + "noteOrder": 2874, + "time": 0.5103734439834025, "position": { "x": 4, "y": 0 @@ -4215,10 +4215,10 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2897, - "time": 0.5145228215767635, + "noteOrder": 2898, + "time": 0.5145228215767634, "position": { "x": 4, "y": 0 @@ -4238,10 +4238,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2897, - "time": 0.5145228215767635, + "noteOrder": 2898, + "time": 0.5145228215767634, "position": { "x": 6, "y": 0 @@ -4261,10 +4261,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2920, - "time": 0.5186721991701245, + "noteOrder": 2921, + "time": 0.5186721991701244, "position": { "x": 6, "y": 0 @@ -4284,10 +4284,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2943, - "time": 0.5228215767634855, + "noteOrder": 2945, + "time": 0.5228215767634854, "position": { "x": 4, "y": 0 @@ -4307,10 +4307,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2967, - "time": 0.5269709543568465, + "noteOrder": 2968, + "time": 0.5269709543568464, "position": { "x": 4, "y": 0 @@ -4330,9 +4330,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, + "noteOrder": 3178, "time": 0.5643153526970954, "position": { "x": 6, @@ -4353,9 +4353,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3200, + "noteOrder": 3202, "time": 0.5684647302904564, "position": { "x": 6, @@ -4376,9 +4376,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3200, + "noteOrder": 3202, "time": 0.5684647302904564, "position": { "x": 5, @@ -4399,10 +4399,10 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3224, - "time": 0.5726141078838175, + "noteOrder": 3225, + "time": 0.5726141078838174, "position": { "x": 5, "y": 0 @@ -4422,10 +4422,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3224, - "time": 0.5726141078838175, + "noteOrder": 3225, + "time": 0.5726141078838174, "position": { "x": 6, "y": 0 @@ -4445,10 +4445,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3247, - "time": 0.5767634854771785, + "noteOrder": 3248, + "time": 0.5767634854771784, "position": { "x": 6, "y": 0 @@ -4468,10 +4468,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3270, - "time": 0.5809128630705395, + "noteOrder": 3272, + "time": 0.5809128630705394, "position": { "x": 4, "y": 0 @@ -4491,10 +4491,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3294, - "time": 0.5850622406639004, + "noteOrder": 3295, + "time": 0.5850622406639003, "position": { "x": 4, "y": 0 @@ -4514,10 +4514,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3294, - "time": 0.5850622406639004, + "noteOrder": 3295, + "time": 0.5850622406639003, "position": { "x": 5, "y": 0 @@ -4537,10 +4537,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.5892116182572614, + "noteOrder": 3318, + "time": 0.5892116182572613, "position": { "x": 5, "y": 0 @@ -4560,10 +4560,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.5892116182572614, + "noteOrder": 3318, + "time": 0.5892116182572613, "position": { "x": 4, "y": 0 @@ -4583,9 +4583,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3340, + "noteOrder": 3342, "time": 0.5933609958506224, "position": { "x": 4, @@ -4606,9 +4606,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.5975103734439834, "position": { "x": 7, @@ -4629,10 +4629,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3387, - "time": 0.6016597510373444, + "noteOrder": 3389, + "time": 0.6016597510373443, "position": { "x": 7, "y": 0 @@ -4652,10 +4652,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3387, - "time": 0.6016597510373444, + "noteOrder": 3389, + "time": 0.6016597510373443, "position": { "x": 6, "y": 0 @@ -4675,9 +4675,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6058091286307054, "position": { "x": 6, @@ -4698,9 +4698,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6058091286307054, "position": { "x": 7, @@ -4721,9 +4721,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, + "noteOrder": 3435, "time": 0.6099585062240663, "position": { "x": 7, @@ -4744,10 +4744,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3457, - "time": 0.6141078838174274, + "noteOrder": 3459, + "time": 0.6141078838174273, "position": { "x": 5, "y": 0 @@ -4767,10 +4767,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.6182572614107884, + "noteOrder": 3482, + "time": 0.6182572614107883, "position": { "x": 5, "y": 0 @@ -4790,10 +4790,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3481, - "time": 0.6182572614107884, + "noteOrder": 3482, + "time": 0.6182572614107883, "position": { "x": 4, "y": 0 @@ -4813,10 +4813,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3504, - "time": 0.6224066390041494, + "noteOrder": 3505, + "time": 0.6224066390041493, "position": { "x": 4, "y": 0 @@ -4836,10 +4836,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3504, - "time": 0.6224066390041494, + "noteOrder": 3505, + "time": 0.6224066390041493, "position": { "x": 5, "y": 0 @@ -4859,9 +4859,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3527, + "noteOrder": 3529, "time": 0.6265560165975104, "position": { "x": 5, @@ -4882,10 +4882,10 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3644, - "time": 0.6473029045643154, + "noteOrder": 3646, + "time": 0.6473029045643153, "position": { "x": 5, "y": 0 @@ -4905,9 +4905,9 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3667, + "noteOrder": 3669, "time": 0.6514522821576764, "position": { "x": 5, @@ -4928,9 +4928,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3667, + "noteOrder": 3669, "time": 0.6514522821576764, "position": { "x": 4, @@ -4951,10 +4951,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3691, - "time": 0.6556016597510373, + "noteOrder": 3692, + "time": 0.6556016597510372, "position": { "x": 4, "y": 0 @@ -4974,10 +4974,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3691, - "time": 0.6556016597510373, + "noteOrder": 3692, + "time": 0.6556016597510372, "position": { "x": 5, "y": 0 @@ -4997,9 +4997,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, + "noteOrder": 3716, "time": 0.6597510373443983, "position": { "x": 5, @@ -5020,9 +5020,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3714, + "noteOrder": 3716, "time": 0.6597510373443983, "position": { "x": 4, @@ -5043,9 +5043,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3738, + "noteOrder": 3739, "time": 0.6639004149377593, "position": { "x": 4, @@ -5066,9 +5066,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3738, + "noteOrder": 3739, "time": 0.6639004149377593, "position": { "x": 7, @@ -5089,10 +5089,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3761, - "time": 0.6680497925311203, + "noteOrder": 3763, + "time": 0.6680497925311202, "position": { "x": 7, "y": 0 @@ -5112,10 +5112,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3761, - "time": 0.6680497925311203, + "noteOrder": 3763, + "time": 0.6680497925311202, "position": { "x": 6, "y": 0 @@ -5135,9 +5135,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3784, + "noteOrder": 3786, "time": 0.6721991701244813, "position": { "x": 6, @@ -5158,9 +5158,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3784, + "noteOrder": 3786, "time": 0.6721991701244813, "position": { "x": 7, @@ -5181,9 +5181,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3808, + "noteOrder": 3809, "time": 0.6763485477178423, "position": { "x": 7, @@ -5204,9 +5204,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3808, + "noteOrder": 3809, "time": 0.6763485477178423, "position": { "x": 6, @@ -5227,10 +5227,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3831, - "time": 0.6804979253112033, + "noteOrder": 3833, + "time": 0.6804979253112032, "position": { "x": 6, "y": 0 @@ -5250,10 +5250,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3831, - "time": 0.6804979253112033, + "noteOrder": 3833, + "time": 0.6804979253112032, "position": { "x": 4, "y": 0 @@ -5273,9 +5273,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3854, + "noteOrder": 3856, "time": 0.6846473029045643, "position": { "x": 4, @@ -5296,9 +5296,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3854, + "noteOrder": 3856, "time": 0.6846473029045643, "position": { "x": 3, @@ -5319,10 +5319,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3878, - "time": 0.6887966804979253, + "noteOrder": 3879, + "time": 0.6887966804979252, "position": { "x": 3, "y": 0 @@ -5342,10 +5342,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3878, - "time": 0.6887966804979253, + "noteOrder": 3879, + "time": 0.6887966804979252, "position": { "x": 4, "y": 0 @@ -5365,9 +5365,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3901, + "noteOrder": 3903, "time": 0.6929460580912863, "position": { "x": 4, @@ -5388,9 +5388,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3901, + "noteOrder": 3903, "time": 0.6929460580912863, "position": { "x": 3, @@ -5411,9 +5411,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3924, + "noteOrder": 3926, "time": 0.6970954356846473, "position": { "x": 3, @@ -5434,10 +5434,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4018, - "time": 0.7136929460580914, + "noteOrder": 4020, + "time": 0.7136929460580912, "position": { "x": 4, "y": 0 @@ -5457,10 +5457,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4041, - "time": 0.7178423236514524, + "noteOrder": 4043, + "time": 0.7178423236514523, "position": { "x": 4, "y": 0 @@ -5480,10 +5480,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4041, - "time": 0.7178423236514524, + "noteOrder": 4043, + "time": 0.7178423236514523, "position": { "x": 3, "y": 0 @@ -5503,10 +5503,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4065, - "time": 0.7219917012448133, + "noteOrder": 4066, + "time": 0.7219917012448132, "position": { "x": 3, "y": 0 @@ -5526,10 +5526,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4065, - "time": 0.7219917012448133, + "noteOrder": 4066, + "time": 0.7219917012448132, "position": { "x": 4, "y": 0 @@ -5549,9 +5549,9 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4088, + "noteOrder": 4090, "time": 0.7261410788381742, "position": { "x": 4, @@ -5572,9 +5572,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4088, + "noteOrder": 4090, "time": 0.7261410788381742, "position": { "x": 3, @@ -5595,9 +5595,9 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.7302904564315352, "position": { "x": 3, @@ -5618,10 +5618,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4205, - "time": 0.7468879668049794, + "noteOrder": 4207, + "time": 0.7468879668049792, "position": { "x": 6, "y": 0 @@ -5641,10 +5641,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4228, - "time": 0.7510373443983404, + "noteOrder": 4230, + "time": 0.7510373443983402, "position": { "x": 6, "y": 0 @@ -5664,10 +5664,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, - "time": 0.7510373443983404, + "noteOrder": 4230, + "time": 0.7510373443983402, "position": { "x": 5, "y": 0 @@ -5687,10 +5687,10 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4251, - "time": 0.7551867219917013, + "noteOrder": 4253, + "time": 0.7551867219917011, "position": { "x": 5, "y": 0 @@ -5710,10 +5710,10 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4251, - "time": 0.7551867219917013, + "noteOrder": 4253, + "time": 0.7551867219917011, "position": { "x": 6, "y": 0 @@ -5733,10 +5733,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4275, - "time": 0.7593360995850623, + "noteOrder": 4277, + "time": 0.7593360995850622, "position": { "x": 6, "y": 0 @@ -5756,10 +5756,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4275, - "time": 0.7593360995850623, + "noteOrder": 4277, + "time": 0.7593360995850622, "position": { "x": 5, "y": 0 @@ -5779,10 +5779,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4298, - "time": 0.7634854771784233, + "noteOrder": 4300, + "time": 0.7634854771784232, "position": { "x": 5, "y": 0 @@ -5802,10 +5802,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4392, - "time": 0.7800829875518673, + "noteOrder": 4393, + "time": 0.7800829875518671, "position": { "x": 7, "y": 0 @@ -5825,10 +5825,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4415, - "time": 0.7842323651452283, + "noteOrder": 4417, + "time": 0.7842323651452282, "position": { "x": 7, "y": 0 @@ -5848,10 +5848,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4415, - "time": 0.7842323651452283, + "noteOrder": 4417, + "time": 0.7842323651452282, "position": { "x": 6, "y": 0 @@ -5871,10 +5871,10 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4438, - "time": 0.7883817427385893, + "noteOrder": 4440, + "time": 0.7883817427385891, "position": { "x": 6, "y": 0 @@ -5894,10 +5894,10 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4438, - "time": 0.7883817427385893, + "noteOrder": 4440, + "time": 0.7883817427385891, "position": { "x": 7, "y": 0 @@ -5917,10 +5917,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4462, - "time": 0.7925311203319503, + "noteOrder": 4464, + "time": 0.7925311203319502, "position": { "x": 7, "y": 0 @@ -5940,10 +5940,10 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4462, - "time": 0.7925311203319503, + "noteOrder": 4464, + "time": 0.7925311203319502, "position": { "x": 6, "y": 0 @@ -5963,10 +5963,10 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4485, - "time": 0.7966804979253113, + "noteOrder": 4487, + "time": 0.7966804979253111, "position": { "x": 6, "y": 0 @@ -5986,10 +5986,10 @@ }, { "lineGroupId": 181, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4578, - "time": 0.8132780082987553, + "noteOrder": 4580, + "time": 0.8132780082987551, "position": { "x": 5, "y": 0 @@ -6009,10 +6009,10 @@ }, { "lineGroupId": 181, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4602, - "time": 0.8174273858921163, + "noteOrder": 4604, + "time": 0.8174273858921162, "position": { "x": 5, "y": 0 @@ -6032,10 +6032,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4602, - "time": 0.8174273858921163, + "noteOrder": 4604, + "time": 0.8174273858921162, "position": { "x": 4, "y": 0 @@ -6055,10 +6055,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4625, - "time": 0.8215767634854773, + "noteOrder": 4627, + "time": 0.821576763485477, "position": { "x": 4, "y": 0 @@ -6078,10 +6078,10 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4765, - "time": 0.8464730290456433, + "noteOrder": 4767, + "time": 0.846473029045643, "position": { "x": 6, "y": 0 @@ -6101,10 +6101,10 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4789, - "time": 0.8506224066390042, + "noteOrder": 4791, + "time": 0.8506224066390041, "position": { "x": 6, "y": 0 @@ -6124,10 +6124,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4789, - "time": 0.8506224066390042, + "noteOrder": 4791, + "time": 0.8506224066390041, "position": { "x": 7, "y": 0 @@ -6147,10 +6147,10 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4812, - "time": 0.8547717842323652, + "noteOrder": 4814, + "time": 0.854771784232365, "position": { "x": 7, "y": 0 @@ -6170,10 +6170,10 @@ }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4812, - "time": 0.8547717842323652, + "noteOrder": 4814, + "time": 0.854771784232365, "position": { "x": 6, "y": 0 @@ -6193,10 +6193,10 @@ }, { "lineGroupId": 191, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, - "time": 0.8589211618257262, + "noteOrder": 4838, + "time": 0.858921161825726, "position": { "x": 6, "y": 0 @@ -6216,10 +6216,10 @@ }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4835, - "time": 0.8589211618257262, + "noteOrder": 4838, + "time": 0.858921161825726, "position": { "x": 7, "y": 0 @@ -6239,10 +6239,10 @@ }, { "lineGroupId": 192, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4859, - "time": 0.8630705394190872, + "noteOrder": 4861, + "time": 0.8630705394190871, "position": { "x": 7, "y": 0 @@ -6262,10 +6262,10 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, - "time": 0.8796680497925312, + "noteOrder": 4954, + "time": 0.879668049792531, "position": { "x": 4, "y": 0 @@ -6285,10 +6285,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4976, - "time": 0.8838174273858922, + "noteOrder": 4978, + "time": 0.8838174273858921, "position": { "x": 4, "y": 0 @@ -6308,10 +6308,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4976, - "time": 0.8838174273858922, + "noteOrder": 4978, + "time": 0.8838174273858921, "position": { "x": 5, "y": 0 @@ -6331,10 +6331,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4999, - "time": 0.8879668049792532, + "noteOrder": 5001, + "time": 0.887966804979253, "position": { "x": 5, "y": 0 @@ -6354,10 +6354,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, - "time": 0.8879668049792532, + "noteOrder": 5001, + "time": 0.887966804979253, "position": { "x": 4, "y": 0 @@ -6377,10 +6377,10 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5022, - "time": 0.8921161825726142, + "noteOrder": 5024, + "time": 0.8921161825726139, "position": { "x": 4, "y": 0 @@ -6400,10 +6400,10 @@ }, { "lineGroupId": 200, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5022, - "time": 0.8921161825726142, + "noteOrder": 5024, + "time": 0.8921161825726139, "position": { "x": 5, "y": 0 @@ -6423,10 +6423,10 @@ }, { "lineGroupId": 200, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5046, - "time": 0.8962655601659751, + "noteOrder": 5048, + "time": 0.896265560165975, "position": { "x": 5, "y": 0 @@ -6446,10 +6446,10 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5139, - "time": 0.9128630705394192, + "noteOrder": 5141, + "time": 0.912863070539419, "position": { "x": 3, "y": 0 @@ -6469,10 +6469,10 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5162, - "time": 0.9170124481327802, + "noteOrder": 5165, + "time": 0.91701244813278, "position": { "x": 3, "y": 0 @@ -6492,10 +6492,10 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5162, - "time": 0.9170124481327802, + "noteOrder": 5165, + "time": 0.91701244813278, "position": { "x": 4, "y": 0 @@ -6515,10 +6515,10 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5186, - "time": 0.9211618257261411, + "noteOrder": 5188, + "time": 0.921161825726141, "position": { "x": 4, "y": 0 @@ -6538,10 +6538,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5186, - "time": 0.9211618257261411, + "noteOrder": 5188, + "time": 0.921161825726141, "position": { "x": 3, "y": 0 @@ -6561,10 +6561,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5209, - "time": 0.9253112033195021, + "noteOrder": 5211, + "time": 0.9253112033195019, "position": { "x": 3, "y": 0 @@ -6584,10 +6584,10 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5209, - "time": 0.9253112033195021, + "noteOrder": 5211, + "time": 0.9253112033195019, "position": { "x": 4, "y": 0 @@ -6607,10 +6607,10 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5233, - "time": 0.9294605809128631, + "noteOrder": 5235, + "time": 0.929460580912863, "position": { "x": 4, "y": 0 @@ -6630,10 +6630,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5326, - "time": 0.9460580912863071, + "noteOrder": 5328, + "time": 0.9460580912863069, "position": { "x": 5, "y": 0 @@ -6653,10 +6653,10 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5349, - "time": 0.9502074688796681, + "noteOrder": 5352, + "time": 0.950207468879668, "position": { "x": 5, "y": 0 @@ -6676,10 +6676,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5349, - "time": 0.9502074688796681, + "noteOrder": 5352, + "time": 0.950207468879668, "position": { "x": 6, "y": 0 @@ -6699,10 +6699,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5373, - "time": 0.9543568464730291, + "noteOrder": 5375, + "time": 0.954356846473029, "position": { "x": 6, "y": 0 diff --git a/tracks/Tropical White/356_difficulty_1b.json b/tracks/Tropical White/356_difficulty_1b.json index 491885ec..d7250d4f 100644 --- a/tracks/Tropical White/356_difficulty_1b.json +++ b/tracks/Tropical White/356_difficulty_1b.json @@ -94,7 +94,7 @@ }, { "noteOrder": 280, - "time": 0.049792531120331954, + "time": 0.04979253112033195, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 304, - "time": 0.05394190871369295, + "time": 0.05394190871369294, "position": { "x": 8, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 327, - "time": 0.058091286307053944, + "time": 0.05809128630705394, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 350, - "time": 0.06224066390041494, + "noteOrder": 351, + "time": 0.06224066390041493, "position": { "x": 3, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 420, + "noteOrder": 421, "time": 0.07468879668049792, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 537, - "time": 0.09543568464730291, + "noteOrder": 538, + "time": 0.0954356846473029, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 561, - "time": 0.09958506224066391, + "time": 0.0995850622406639, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 584, - "time": 0.1037344398340249, + "time": 0.10373443983402489, "position": { "x": 4, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 607, - "time": 0.1078838174273859, + "noteOrder": 608, + "time": 0.10788381742738588, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 631, - "time": 0.11203319502074689, + "time": 0.11203319502074688, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 654, - "time": 0.11618257261410789, + "time": 0.11618257261410787, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 677, - "time": 0.12033195020746888, + "noteOrder": 678, + "time": 0.12033195020746887, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 701, - "time": 0.12448132780082988, + "time": 0.12448132780082986, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 724, - "time": 0.1286307053941909, + "time": 0.12863070539419086, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 771, - "time": 0.13692946058091288, + "time": 0.13692946058091285, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 794, + "noteOrder": 795, "time": 0.14107883817427386, "position": { "x": 6, @@ -594,7 +594,7 @@ }, { "noteOrder": 818, - "time": 0.14522821576763487, + "time": 0.14522821576763484, "position": { "x": 4, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 911, - "time": 0.16182572614107885, + "time": 0.16182572614107882, "position": { "x": 3, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 911, - "time": 0.16182572614107885, + "time": 0.16182572614107882, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1121, - "time": 0.19917012448132781, + "noteOrder": 1122, + "time": 0.1991701244813278, "position": { "x": 6, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1145, - "time": 0.20331950207468882, + "time": 0.20331950207468877, "position": { "x": 7, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1168, - "time": 0.2074688796680498, + "time": 0.20746887966804978, "position": { "x": 4, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1191, - "time": 0.2116182572614108, + "noteOrder": 1192, + "time": 0.21161825726141076, "position": { "x": 3, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1215, - "time": 0.2157676348547718, + "time": 0.21576763485477177, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1238, - "time": 0.2199170124481328, + "noteOrder": 1239, + "time": 0.21991701244813275, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1261, - "time": 0.22406639004149378, + "noteOrder": 1262, + "time": 0.22406639004149376, "position": { "x": 7, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1285, - "time": 0.2282157676348548, + "time": 0.22821576763485474, "position": { "x": 3, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1495, + "noteOrder": 1496, "time": 0.26556016597510373, "position": { "x": 6, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1518, - "time": 0.26970954356846477, + "noteOrder": 1519, + "time": 0.2697095435684647, "position": { "x": 7, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1542, - "time": 0.27385892116182575, + "time": 0.2738589211618257, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1565, - "time": 0.27800829875518673, + "noteOrder": 1566, + "time": 0.2780082987551867, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1588, + "noteOrder": 1589, "time": 0.2821576763485477, "position": { "x": 4, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1612, - "time": 0.28630705394190875, + "noteOrder": 1613, + "time": 0.2863070539419087, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1635, - "time": 0.29045643153526973, + "noteOrder": 1636, + "time": 0.2904564315352697, "position": { "x": 4, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1659, - "time": 0.2946058091286307, + "time": 0.29460580912863066, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2616, - "time": 0.46473029045643155, + "noteOrder": 2617, + "time": 0.4647302904564315, "position": { "x": 8, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2663, - "time": 0.47302904564315357, + "noteOrder": 2664, + "time": 0.47302904564315346, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2710, - "time": 0.48132780082987553, + "noteOrder": 2711, + "time": 0.4813278008298755, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.48962655601659755, + "noteOrder": 2758, + "time": 0.48962655601659744, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2990, + "noteOrder": 2991, "time": 0.5311203319502075, "position": { "x": 2, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3037, - "time": 0.5394190871369295, + "noteOrder": 3038, + "time": 0.5394190871369294, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3083, - "time": 0.5477178423236515, + "noteOrder": 3085, + "time": 0.5477178423236514, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3130, - "time": 0.5560165975103735, + "noteOrder": 3132, + "time": 0.5560165975103734, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.5975103734439834, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3387, - "time": 0.6016597510373444, + "noteOrder": 3389, + "time": 0.6016597510373443, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6058091286307054, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3457, - "time": 0.6141078838174274, + "noteOrder": 3459, + "time": 0.6141078838174273, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3481, - "time": 0.6182572614107884, + "noteOrder": 3482, + "time": 0.6182572614107883, "position": { "x": 5, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3504, - "time": 0.6224066390041494, + "noteOrder": 3505, + "time": 0.6224066390041493, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3739, "time": 0.6639004149377593, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3761, - "time": 0.6680497925311203, + "noteOrder": 3763, + "time": 0.6680497925311202, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3784, + "noteOrder": 3786, "time": 0.6721991701244813, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3831, - "time": 0.6804979253112033, + "noteOrder": 3833, + "time": 0.6804979253112032, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3854, + "noteOrder": 3856, "time": 0.6846473029045643, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3878, - "time": 0.6887966804979253, + "noteOrder": 3879, + "time": 0.6887966804979252, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4392, - "time": 0.7800829875518673, + "noteOrder": 4393, + "time": 0.7800829875518671, "position": { "x": 3, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4415, - "time": 0.7842323651452283, + "noteOrder": 4417, + "time": 0.7842323651452282, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4438, - "time": 0.7883817427385893, + "noteOrder": 4440, + "time": 0.7883817427385891, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4578, - "time": 0.8132780082987553, + "noteOrder": 4580, + "time": 0.8132780082987551, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4602, - "time": 0.8174273858921163, + "noteOrder": 4604, + "time": 0.8174273858921162, "position": { "x": 5, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4625, - "time": 0.8215767634854773, + "noteOrder": 4627, + "time": 0.821576763485477, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4719, + "noteOrder": 4721, "time": 0.8381742738589212, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4742, - "time": 0.8423236514522822, + "noteOrder": 4744, + "time": 0.842323651452282, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4812, - "time": 0.8547717842323652, + "noteOrder": 4814, + "time": 0.854771784232365, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4835, - "time": 0.8589211618257262, + "noteOrder": 4838, + "time": 0.858921161825726, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 4908, "time": 0.8713692946058091, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8755186721991702, + "noteOrder": 4931, + "time": 0.87551867219917, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4999, - "time": 0.8879668049792532, + "noteOrder": 5001, + "time": 0.887966804979253, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5022, - "time": 0.8921161825726142, + "noteOrder": 5024, + "time": 0.8921161825726139, "position": { "x": 6, "y": 0 @@ -1696,9 +1696,9 @@ "lineNodes": [ { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 934, + "noteOrder": 935, "time": 0.16597510373443983, "position": { "x": 6, @@ -1719,9 +1719,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 981, + "noteOrder": 982, "time": 0.17427385892116182, "position": { "x": 6, @@ -1742,9 +1742,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 981, + "noteOrder": 982, "time": 0.17427385892116182, "position": { "x": 4, @@ -1765,7 +1765,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1028, "time": 0.1825726141078838, @@ -1788,7 +1788,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1028, "time": 0.1825726141078838, @@ -1811,10 +1811,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1075, - "time": 0.19087136929460582, + "time": 0.1908713692946058, "position": { "x": 6, "y": 0 @@ -1834,10 +1834,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1075, - "time": 0.19087136929460582, + "time": 0.1908713692946058, "position": { "x": 4, "y": 0 @@ -1857,10 +1857,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1121, - "time": 0.19917012448132781, + "noteOrder": 1122, + "time": 0.1991701244813278, "position": { "x": 4, "y": 0 @@ -1880,10 +1880,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1308, - "time": 0.23236514522821577, + "noteOrder": 1309, + "time": 0.23236514522821575, "position": { "x": 6, "y": 0 @@ -1903,10 +1903,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1355, - "time": 0.24066390041493776, + "time": 0.24066390041493774, "position": { "x": 6, "y": 0 @@ -1926,10 +1926,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1355, - "time": 0.24066390041493776, + "time": 0.24066390041493774, "position": { "x": 4, "y": 0 @@ -1949,10 +1949,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1402, - "time": 0.24896265560165975, + "time": 0.24896265560165973, "position": { "x": 4, "y": 0 @@ -1972,10 +1972,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1402, - "time": 0.24896265560165975, + "time": 0.24896265560165973, "position": { "x": 6, "y": 0 @@ -1995,10 +1995,10 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1448, - "time": 0.2572614107883818, + "noteOrder": 1449, + "time": 0.2572614107883817, "position": { "x": 6, "y": 0 @@ -2018,10 +2018,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1448, - "time": 0.2572614107883818, + "noteOrder": 1449, + "time": 0.2572614107883817, "position": { "x": 4, "y": 0 @@ -2041,9 +2041,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1495, + "noteOrder": 1496, "time": 0.26556016597510373, "position": { "x": 4, @@ -2064,9 +2064,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2987551867219917, "position": { "x": 4, @@ -2087,10 +2087,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1729, - "time": 0.3070539419087137, + "time": 0.30705394190871366, "position": { "x": 4, "y": 0 @@ -2110,10 +2110,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1729, - "time": 0.3070539419087137, + "time": 0.30705394190871366, "position": { "x": 6, "y": 0 @@ -2133,9 +2133,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1775, + "noteOrder": 1776, "time": 0.3153526970954357, "position": { "x": 6, @@ -2156,9 +2156,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1775, + "noteOrder": 1776, "time": 0.3153526970954357, "position": { "x": 4, @@ -2179,10 +2179,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1822, - "time": 0.3236514522821577, + "noteOrder": 1823, + "time": 0.32365145228215764, "position": { "x": 4, "y": 0 @@ -2202,10 +2202,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1822, - "time": 0.3236514522821577, + "noteOrder": 1823, + "time": 0.32365145228215764, "position": { "x": 6, "y": 0 @@ -2225,9 +2225,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1869, + "noteOrder": 1870, "time": 0.33195020746887965, "position": { "x": 6, @@ -2248,9 +2248,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1869, + "noteOrder": 1870, "time": 0.33195020746887965, "position": { "x": 4, @@ -2271,10 +2271,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1915, - "time": 0.34024896265560167, + "noteOrder": 1916, + "time": 0.3402489626556016, "position": { "x": 4, "y": 0 @@ -2294,9 +2294,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1962, + "noteOrder": 1963, "time": 0.34854771784232363, "position": { "x": 6, @@ -2317,10 +2317,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2009, - "time": 0.3568464730290457, + "noteOrder": 2010, + "time": 0.3568464730290456, "position": { "x": 6, "y": 0 @@ -2340,9 +2340,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2056, + "noteOrder": 2057, "time": 0.3651452282157676, "position": { "x": 6, @@ -2363,10 +2363,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2102, - "time": 0.3734439834024897, + "noteOrder": 2103, + "time": 0.3734439834024896, "position": { "x": 6, "y": 0 @@ -2386,10 +2386,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2102, - "time": 0.3734439834024897, + "noteOrder": 2103, + "time": 0.3734439834024896, "position": { "x": 4, "y": 0 @@ -2409,10 +2409,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2149, - "time": 0.38174273858921165, + "noteOrder": 2150, + "time": 0.3817427385892116, "position": { "x": 4, "y": 0 @@ -2432,10 +2432,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2149, - "time": 0.38174273858921165, + "noteOrder": 2150, + "time": 0.3817427385892116, "position": { "x": 6, "y": 0 @@ -2455,10 +2455,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2196, - "time": 0.39004149377593367, + "noteOrder": 2197, + "time": 0.39004149377593356, "position": { "x": 6, "y": 0 @@ -2478,10 +2478,10 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2196, - "time": 0.39004149377593367, + "noteOrder": 2197, + "time": 0.39004149377593356, "position": { "x": 4, "y": 0 @@ -2501,10 +2501,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2243, - "time": 0.39834024896265563, + "time": 0.3983402489626556, "position": { "x": 4, "y": 0 @@ -2524,10 +2524,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2243, - "time": 0.39834024896265563, + "time": 0.3983402489626556, "position": { "x": 6, "y": 0 @@ -2547,10 +2547,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2289, - "time": 0.40663900414937765, + "noteOrder": 2290, + "time": 0.40663900414937754, "position": { "x": 6, "y": 0 @@ -2570,10 +2570,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2336, - "time": 0.4149377593360996, + "noteOrder": 2337, + "time": 0.41493775933609955, "position": { "x": 4, "y": 0 @@ -2593,10 +2593,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2383, - "time": 0.4232365145228216, + "noteOrder": 2384, + "time": 0.4232365145228215, "position": { "x": 4, "y": 0 @@ -2616,10 +2616,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2429, - "time": 0.4315352697095436, + "noteOrder": 2430, + "time": 0.43153526970954353, "position": { "x": 6, "y": 0 @@ -2639,10 +2639,10 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2476, - "time": 0.4398340248962656, + "noteOrder": 2477, + "time": 0.4398340248962655, "position": { "x": 6, "y": 0 @@ -2662,10 +2662,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2476, - "time": 0.4398340248962656, + "noteOrder": 2477, + "time": 0.4398340248962655, "position": { "x": 6, "y": 0 @@ -2685,10 +2685,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, - "time": 0.44813278008298757, + "noteOrder": 2524, + "time": 0.4481327800829875, "position": { "x": 6, "y": 0 @@ -2708,10 +2708,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2523, - "time": 0.44813278008298757, + "noteOrder": 2524, + "time": 0.4481327800829875, "position": { "x": 6, "y": 0 @@ -2731,10 +2731,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2570, - "time": 0.4564315352697096, + "noteOrder": 2571, + "time": 0.4564315352697095, "position": { "x": 6, "y": 0 @@ -2754,10 +2754,10 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2570, - "time": 0.4564315352697096, + "noteOrder": 2571, + "time": 0.4564315352697095, "position": { "x": 6, "y": 0 @@ -2777,10 +2777,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2616, - "time": 0.46473029045643155, + "noteOrder": 2617, + "time": 0.4647302904564315, "position": { "x": 6, "y": 0 @@ -2800,10 +2800,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2803, - "time": 0.4979253112033195, + "noteOrder": 2804, + "time": 0.49792531120331945, "position": { "x": 4, "y": 0 @@ -2823,10 +2823,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2850, - "time": 0.5062240663900416, + "noteOrder": 2851, + "time": 0.5062240663900415, "position": { "x": 4, "y": 0 @@ -2846,10 +2846,10 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2850, - "time": 0.5062240663900416, + "noteOrder": 2851, + "time": 0.5062240663900415, "position": { "x": 4, "y": 0 @@ -2869,10 +2869,10 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2897, - "time": 0.5145228215767635, + "noteOrder": 2898, + "time": 0.5145228215767634, "position": { "x": 4, "y": 0 @@ -2892,10 +2892,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2897, - "time": 0.5145228215767635, + "noteOrder": 2898, + "time": 0.5145228215767634, "position": { "x": 4, "y": 0 @@ -2915,10 +2915,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2943, - "time": 0.5228215767634855, + "noteOrder": 2945, + "time": 0.5228215767634854, "position": { "x": 4, "y": 0 @@ -2938,10 +2938,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2943, - "time": 0.5228215767634855, + "noteOrder": 2945, + "time": 0.5228215767634854, "position": { "x": 4, "y": 0 @@ -2961,9 +2961,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2990, + "noteOrder": 2991, "time": 0.5311203319502075, "position": { "x": 4, @@ -2984,9 +2984,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3177, + "noteOrder": 3178, "time": 0.5643153526970954, "position": { "x": 6, @@ -3007,10 +3007,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3224, - "time": 0.5726141078838175, + "noteOrder": 3225, + "time": 0.5726141078838174, "position": { "x": 6, "y": 0 @@ -3030,10 +3030,10 @@ }, { "lineGroupId": 94, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3224, - "time": 0.5726141078838175, + "noteOrder": 3225, + "time": 0.5726141078838174, "position": { "x": 4, "y": 0 @@ -3053,10 +3053,10 @@ }, { "lineGroupId": 94, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3270, - "time": 0.5809128630705395, + "noteOrder": 3272, + "time": 0.5809128630705394, "position": { "x": 4, "y": 0 @@ -3076,10 +3076,10 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3270, - "time": 0.5809128630705395, + "noteOrder": 3272, + "time": 0.5809128630705394, "position": { "x": 6, "y": 0 @@ -3099,10 +3099,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.5892116182572614, + "noteOrder": 3318, + "time": 0.5892116182572613, "position": { "x": 6, "y": 0 @@ -3122,10 +3122,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.5892116182572614, + "noteOrder": 3318, + "time": 0.5892116182572613, "position": { "x": 4, "y": 0 @@ -3145,9 +3145,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.5975103734439834, "position": { "x": 4, @@ -3168,9 +3168,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3551, + "noteOrder": 3552, "time": 0.6307053941908713, "position": { "x": 4, @@ -3191,9 +3191,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3597, + "noteOrder": 3599, "time": 0.6390041493775933, "position": { "x": 4, @@ -3214,9 +3214,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3597, + "noteOrder": 3599, "time": 0.6390041493775933, "position": { "x": 6, @@ -3237,10 +3237,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3644, - "time": 0.6473029045643154, + "noteOrder": 3646, + "time": 0.6473029045643153, "position": { "x": 6, "y": 0 @@ -3260,10 +3260,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3644, - "time": 0.6473029045643154, + "noteOrder": 3646, + "time": 0.6473029045643153, "position": { "x": 4, "y": 0 @@ -3283,10 +3283,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3691, - "time": 0.6556016597510373, + "noteOrder": 3692, + "time": 0.6556016597510372, "position": { "x": 4, "y": 0 @@ -3306,10 +3306,10 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3691, - "time": 0.6556016597510373, + "noteOrder": 3692, + "time": 0.6556016597510372, "position": { "x": 6, "y": 0 @@ -3329,9 +3329,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3738, + "noteOrder": 3739, "time": 0.6639004149377593, "position": { "x": 6, @@ -3352,9 +3352,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3924, + "noteOrder": 3926, "time": 0.6970954356846473, "position": { "x": 6, @@ -3375,9 +3375,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3971, + "noteOrder": 3973, "time": 0.7053941908713692, "position": { "x": 6, @@ -3398,9 +3398,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3971, + "noteOrder": 3973, "time": 0.7053941908713692, "position": { "x": 4, @@ -3421,10 +3421,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4018, - "time": 0.7136929460580914, + "noteOrder": 4020, + "time": 0.7136929460580912, "position": { "x": 4, "y": 0 @@ -3444,10 +3444,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4018, - "time": 0.7136929460580914, + "noteOrder": 4020, + "time": 0.7136929460580912, "position": { "x": 7, "y": 0 @@ -3467,10 +3467,10 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4065, - "time": 0.7219917012448133, + "noteOrder": 4066, + "time": 0.7219917012448132, "position": { "x": 7, "y": 0 @@ -3490,9 +3490,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.7302904564315352, "position": { "x": 4, @@ -3513,9 +3513,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4158, + "noteOrder": 4160, "time": 0.7385892116182572, "position": { "x": 4, @@ -3536,9 +3536,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, + "noteOrder": 4160, "time": 0.7385892116182572, "position": { "x": 6, @@ -3559,10 +3559,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4205, - "time": 0.7468879668049794, + "noteOrder": 4207, + "time": 0.7468879668049792, "position": { "x": 6, "y": 0 @@ -3582,10 +3582,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4205, - "time": 0.7468879668049794, + "noteOrder": 4207, + "time": 0.7468879668049792, "position": { "x": 3, "y": 0 @@ -3605,10 +3605,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4251, - "time": 0.7551867219917013, + "noteOrder": 4253, + "time": 0.7551867219917011, "position": { "x": 3, "y": 0 @@ -3628,10 +3628,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4298, - "time": 0.7634854771784233, + "noteOrder": 4300, + "time": 0.7634854771784232, "position": { "x": 4, "y": 0 @@ -3651,10 +3651,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4345, - "time": 0.7717842323651453, + "noteOrder": 4347, + "time": 0.7717842323651452, "position": { "x": 4, "y": 0 @@ -3674,10 +3674,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4345, - "time": 0.7717842323651453, + "noteOrder": 4347, + "time": 0.7717842323651452, "position": { "x": 6, "y": 0 @@ -3697,10 +3697,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4392, - "time": 0.7800829875518673, + "noteOrder": 4393, + "time": 0.7800829875518671, "position": { "x": 6, "y": 0 @@ -3720,10 +3720,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4485, - "time": 0.7966804979253113, + "noteOrder": 4487, + "time": 0.7966804979253111, "position": { "x": 6, "y": 0 @@ -3743,10 +3743,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4532, - "time": 0.8049792531120332, + "noteOrder": 4534, + "time": 0.8049792531120331, "position": { "x": 6, "y": 0 @@ -3766,10 +3766,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4532, - "time": 0.8049792531120332, + "noteOrder": 4534, + "time": 0.8049792531120331, "position": { "x": 4, "y": 0 @@ -3789,10 +3789,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4578, - "time": 0.8132780082987553, + "noteOrder": 4580, + "time": 0.8132780082987551, "position": { "x": 4, "y": 0 @@ -3812,10 +3812,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5046, - "time": 0.8962655601659751, + "noteOrder": 5048, + "time": 0.896265560165975, "position": { "x": 6, "y": 0 @@ -3835,9 +3835,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, + "noteOrder": 5095, "time": 0.9045643153526971, "position": { "x": 6, @@ -3858,9 +3858,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5092, + "noteOrder": 5095, "time": 0.9045643153526971, "position": { "x": 4, @@ -3881,10 +3881,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5139, - "time": 0.9128630705394192, + "noteOrder": 5141, + "time": 0.912863070539419, "position": { "x": 4, "y": 0 @@ -3904,10 +3904,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5139, - "time": 0.9128630705394192, + "noteOrder": 5141, + "time": 0.912863070539419, "position": { "x": 6, "y": 0 @@ -3927,10 +3927,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5186, - "time": 0.9211618257261411, + "noteOrder": 5188, + "time": 0.921161825726141, "position": { "x": 6, "y": 0 @@ -3950,10 +3950,10 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5186, - "time": 0.9211618257261411, + "noteOrder": 5188, + "time": 0.921161825726141, "position": { "x": 4, "y": 0 @@ -3973,10 +3973,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5233, - "time": 0.9294605809128631, + "noteOrder": 5235, + "time": 0.929460580912863, "position": { "x": 4, "y": 0 @@ -3996,10 +3996,10 @@ }, { "lineGroupId": 151, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5233, - "time": 0.9294605809128631, + "noteOrder": 5235, + "time": 0.929460580912863, "position": { "x": 6, "y": 0 @@ -4019,9 +4019,9 @@ }, { "lineGroupId": 151, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5279, + "noteOrder": 5282, "time": 0.9377593360995851, "position": { "x": 6, @@ -4042,9 +4042,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5279, + "noteOrder": 5282, "time": 0.9377593360995851, "position": { "x": 4, @@ -4065,10 +4065,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5326, - "time": 0.9460580912863071, + "noteOrder": 5328, + "time": 0.9460580912863069, "position": { "x": 4, "y": 0 @@ -4088,10 +4088,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5326, - "time": 0.9460580912863071, + "noteOrder": 5328, + "time": 0.9460580912863069, "position": { "x": 6, "y": 0 @@ -4111,10 +4111,10 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5373, - "time": 0.9543568464730291, + "noteOrder": 5375, + "time": 0.954356846473029, "position": { "x": 6, "y": 0 diff --git a/tracks/Tropical White/info.json b/tracks/Tropical White/info.json index da4464b7..5be9005b 100644 --- a/tracks/Tropical White/info.json +++ b/tracks/Tropical White/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Tropical White", - "SongLength": "119.954286", + "SongLength": "110.001633", "SongAuthorName": "\u661f\u5bae\u3068\u3068+TEMPLIME", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1a.json b/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1a.json index 6a336c83..e27884ba 100644 --- a/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1a.json +++ b/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1a.json @@ -74,7 +74,7 @@ }, { "noteOrder": 288, - "time": 0.04109589041095891, + "time": 0.0410958904109589, "position": { "x": 6, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 312, - "time": 0.04452054794520548, + "noteOrder": 313, + "time": 0.044520547945205484, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 553, - "time": 0.07876712328767123, + "time": 0.07876712328767124, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 625, - "time": 0.08904109589041095, + "time": 0.08904109589041097, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 745, - "time": 0.10616438356164383, + "time": 0.10616438356164384, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.13013698630136986, "position": { "x": 6, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.13356164383561644, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.1404109589041096, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.14383561643835618, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.14726027397260275, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.1541095890410959, "position": { "x": 6, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.15753424657534246, + "noteOrder": 1106, + "time": 0.15753424657534248, "position": { "x": 6, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.16095890410958905, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.21575342465753428, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.2226027397260274, "position": { "x": 6, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1634, - "time": 0.2328767123287671, + "noteOrder": 1635, + "time": 0.23287671232876714, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.2363013698630137, + "noteOrder": 1659, + "time": 0.23630136986301373, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.24315068493150688, + "noteOrder": 1707, + "time": 0.24315068493150685, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.24657534246575344, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1754, + "noteOrder": 1755, "time": 0.25, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2602739726027397, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1850, - "time": 0.2636986301369863, + "noteOrder": 1851, + "time": 0.26369863013698636, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.2705479452054794, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1922, - "time": 0.273972602739726, + "noteOrder": 1923, + "time": 0.27397260273972607, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.27739726027397266, + "noteOrder": 1947, + "time": 0.2773972602739726, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.3253424657534247, "position": { "x": 6, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.32876712328767127, + "noteOrder": 2308, + "time": 0.3287671232876712, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2332, "time": 0.33219178082191786, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2427, - "time": 0.3458904109589041, + "noteOrder": 2428, + "time": 0.34589041095890416, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3493150684931507, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.3527397260273973, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.3595890410958904, "position": { "x": 7, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2547, - "time": 0.363013698630137, + "noteOrder": 2548, + "time": 0.36301369863013705, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2571, - "time": 0.3664383561643835, + "noteOrder": 2572, + "time": 0.3664383561643836, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.3698630136986301, "position": { "x": 2, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2608, "time": 0.37157534246575347, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.3835616438356165, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2715, - "time": 0.38698630136986306, + "noteOrder": 2717, + "time": 0.386986301369863, "position": { "x": 2, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2741, "time": 0.3904109589041096, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.3938356164383562, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.4006849315068493, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4041095890410959, + "noteOrder": 2837, + "time": 0.40410958904109595, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2860, + "noteOrder": 2861, "time": 0.4075342465753425, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.4143835616438356, + "noteOrder": 2909, + "time": 0.41438356164383566, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.4143835616438356, + "noteOrder": 2909, + "time": 0.41438356164383566, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.4178082191780822, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.4178082191780822, "position": { "x": 3, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.4246575342465753, + "noteOrder": 2981, + "time": 0.4246575342465754, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.4246575342465753, + "noteOrder": 2981, + "time": 0.4246575342465754, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.43150684931506855, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.4383561643835617, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.4452054794520548, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4486301369863014, "position": { "x": 2, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3173, "time": 0.452054794520548, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.4589041095890411, "position": { "x": 3, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4657534246575342, + "noteOrder": 3269, + "time": 0.4657534246575343, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.4726027397260274, + "noteOrder": 3318, + "time": 0.47260273972602745, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3342, "time": 0.476027397260274, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3366, "time": 0.4794520547945206, "position": { "x": 5, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.48630136986301375, + "noteOrder": 3414, + "time": 0.4863013698630137, "position": { "x": 8, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.4931506849315069, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.5, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3534, "time": 0.5034246575342466, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3558, "time": 0.5068493150684932, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3582, "time": 0.5102739726027398, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.5136986301369864, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3630, "time": 0.517123287671233, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3654, "time": 0.5205479452054794, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3797, + "noteOrder": 3798, "time": 0.5410958904109588, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3821, + "noteOrder": 3822, "time": 0.5445205479452055, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3893, - "time": 0.5547945205479453, + "noteOrder": 3894, + "time": 0.5547945205479452, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3917, - "time": 0.5582191780821918, + "noteOrder": 3919, + "time": 0.5582191780821919, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.5821917808219178, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.5856164383561644, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4181, + "noteOrder": 4183, "time": 0.5958904109589042, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4205, - "time": 0.5993150684931506, + "noteOrder": 4207, + "time": 0.5993150684931507, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4277, - "time": 0.6095890410958904, + "noteOrder": 4279, + "time": 0.6095890410958905, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4301, + "noteOrder": 4303, "time": 0.613013698630137, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4375, "time": 0.6232876712328766, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4398, + "noteOrder": 4399, "time": 0.6267123287671234, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4446, - "time": 0.6335616438356165, + "noteOrder": 4447, + "time": 0.6335616438356164, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4446, - "time": 0.6335616438356165, + "noteOrder": 4447, + "time": 0.6335616438356164, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4471, "time": 0.636986301369863, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4471, "time": 0.636986301369863, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4494, + "noteOrder": 4495, "time": 0.6404109589041096, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4494, + "noteOrder": 4495, "time": 0.6404109589041096, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4542, + "noteOrder": 4544, "time": 0.6472602739726028, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4566, + "noteOrder": 4568, "time": 0.6506849315068494, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4590, - "time": 0.654109589041096, + "noteOrder": 4592, + "time": 0.6541095890410958, "position": { "x": 3, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4638, - "time": 0.660958904109589, + "noteOrder": 4640, + "time": 0.6609589041095891, "position": { "x": 8, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4662, + "noteOrder": 4664, "time": 0.6643835616438357, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.6678082191780822, "position": { "x": 8, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4782, - "time": 0.6815068493150684, + "noteOrder": 4784, + "time": 0.6815068493150686, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4830, + "noteOrder": 4832, "time": 0.6883561643835616, "position": { "x": 8, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.6917808219178082, + "noteOrder": 4856, + "time": 0.6917808219178083, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4878, - "time": 0.6952054794520548, + "noteOrder": 4880, + "time": 0.6952054794520549, "position": { "x": 8, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4926, + "noteOrder": 4928, "time": 0.702054794520548, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4974, + "noteOrder": 4976, "time": 0.7089041095890412, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5022, + "noteOrder": 5024, "time": 0.7157534246575343, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5095, - "time": 0.726027397260274, + "noteOrder": 5096, + "time": 0.7260273972602741, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5095, - "time": 0.726027397260274, + "noteOrder": 5096, + "time": 0.7260273972602741, "position": { "x": 3, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5120, "time": 0.7294520547945206, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5120, "time": 0.7294520547945206, "position": { "x": 7, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5143, - "time": 0.732876712328767, + "noteOrder": 5145, + "time": 0.7328767123287672, "position": { "x": 3, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5143, - "time": 0.732876712328767, + "noteOrder": 5145, + "time": 0.7328767123287672, "position": { "x": 7, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7363013698630138, "position": { "x": 3, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5167, + "noteOrder": 5169, "time": 0.7363013698630138, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5311, + "noteOrder": 5313, "time": 0.7568493150684932, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.7602739726027398, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5359, + "noteOrder": 5361, "time": 0.7636986301369864, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.767123287671233, "position": { "x": 8, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5407, + "noteOrder": 5409, "time": 0.7705479452054794, "position": { "x": 6, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.7739726027397261, + "noteOrder": 5433, + "time": 0.773972602739726, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5455, - "time": 0.7773972602739726, + "noteOrder": 5457, + "time": 0.7773972602739727, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.7842465753424658, "position": { "x": 4, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.7876712328767124, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5551, + "noteOrder": 5553, "time": 0.7910958904109588, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.7945205479452055, "position": { "x": 2, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5599, - "time": 0.797945205479452, + "noteOrder": 5601, + "time": 0.7979452054794521, "position": { "x": 3, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5625, "time": 0.8013698630136986, "position": { "x": 2, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5647, - "time": 0.8047945205479453, + "noteOrder": 5649, + "time": 0.8047945205479452, "position": { "x": 4, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5671, - "time": 0.8082191780821918, + "noteOrder": 5673, + "time": 0.8082191780821919, "position": { "x": 3, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.8184931506849316, "position": { "x": 2, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5842, "time": 0.8321917808219178, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5863, + "noteOrder": 5866, "time": 0.8356164383561644, "position": { "x": 5, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5888, + "noteOrder": 5890, "time": 0.839041095890411, "position": { "x": 5, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5936, + "noteOrder": 5938, "time": 0.8458904109589042, "position": { "x": 6, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5960, - "time": 0.8493150684931506, + "noteOrder": 5962, + "time": 0.8493150684931507, "position": { "x": 4, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.8527397260273973, "position": { "x": 4, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.8698630136986302, "position": { "x": 3, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6128, + "noteOrder": 6130, "time": 0.8732876712328768, "position": { "x": 4, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.8835616438356165, "position": { "x": 3, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.8835616438356165, "position": { "x": 7, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6224, + "noteOrder": 6226, "time": 0.886986301369863, "position": { "x": 3, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6224, + "noteOrder": 6226, "time": 0.886986301369863, "position": { "x": 7, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6320, + "noteOrder": 6322, "time": 0.9006849315068494, "position": { "x": 5, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6344, + "noteOrder": 6347, "time": 0.904109589041096, "position": { "x": 5, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6416, + "noteOrder": 6419, "time": 0.9143835616438357, "position": { "x": 3, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.9246575342465754, + "noteOrder": 6491, + "time": 0.9246575342465755, "position": { "x": 8, "y": 0 @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6512, + "noteOrder": 6515, "time": 0.928082191780822, "position": { "x": 3, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6560, + "noteOrder": 6563, "time": 0.9349315068493151, "position": { "x": 3, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6584, + "noteOrder": 6587, "time": 0.9383561643835616, "position": { "x": 8, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6608, - "time": 0.9417808219178082, + "noteOrder": 6611, + "time": 0.9417808219178083, "position": { "x": 4, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6705, + "noteOrder": 6707, "time": 0.9554794520547946, "position": { "x": 3, @@ -3236,10 +3236,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.020547945205479454, + "time": 0.02054794520547945, "position": { "x": 6, "y": 0 @@ -3259,7 +3259,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.027397260273972605, @@ -3282,10 +3282,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 240, - "time": 0.03424657534246575, + "time": 0.03424657534246576, "position": { "x": 5, "y": 0 @@ -3305,10 +3305,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, - "time": 0.03424657534246575, + "time": 0.03424657534246576, "position": { "x": 4, "y": 0 @@ -3328,10 +3328,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, - "time": 0.04109589041095891, + "time": 0.0410958904109589, "position": { "x": 4, "y": 0 @@ -3351,9 +3351,9 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.04794520547945206, "position": { "x": 5, @@ -3374,9 +3374,9 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.04794520547945206, "position": { "x": 7, @@ -3397,9 +3397,9 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05479452054794521, "position": { "x": 7, @@ -3420,9 +3420,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05479452054794521, "position": { "x": 3, @@ -3443,7 +3443,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.06164383561643836, @@ -3466,10 +3466,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.0684931506849315, + "time": 0.06849315068493152, "position": { "x": 7, "y": 0 @@ -3489,10 +3489,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.08219178082191782, + "time": 0.0821917808219178, "position": { "x": 7, "y": 0 @@ -3512,10 +3512,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.08219178082191782, + "time": 0.0821917808219178, "position": { "x": 4, "y": 0 @@ -3535,7 +3535,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.09589041095890412, @@ -3558,7 +3558,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.09589041095890412, @@ -3581,7 +3581,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, "time": 0.10273972602739725, @@ -3604,7 +3604,7 @@ }, { "lineGroupId": 18, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 769, "time": 0.10958904109589042, @@ -3627,7 +3627,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 769, "time": 0.10958904109589042, @@ -3650,7 +3650,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 793, "time": 0.113013698630137, @@ -3673,7 +3673,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 793, "time": 0.113013698630137, @@ -3696,10 +3696,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 817, - "time": 0.11643835616438356, + "time": 0.11643835616438357, "position": { "x": 6, "y": 0 @@ -3719,10 +3719,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 817, - "time": 0.11643835616438356, + "time": 0.11643835616438357, "position": { "x": 3, "y": 0 @@ -3742,7 +3742,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 841, "time": 0.11986301369863014, @@ -3765,7 +3765,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12328767123287672, @@ -3788,10 +3788,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, - "time": 0.136986301369863, + "noteOrder": 962, + "time": 0.13698630136986303, "position": { "x": 6, "y": 0 @@ -3811,10 +3811,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.136986301369863, + "noteOrder": 962, + "time": 0.13698630136986303, "position": { "x": 6, "y": 0 @@ -3834,9 +3834,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.1506849315068493, "position": { "x": 4, @@ -3857,9 +3857,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.1506849315068493, "position": { "x": 4, @@ -3880,10 +3880,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.16438356164383564, + "noteOrder": 1154, + "time": 0.1643835616438356, "position": { "x": 6, "y": 0 @@ -3903,10 +3903,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.16438356164383564, + "noteOrder": 1154, + "time": 0.1643835616438356, "position": { "x": 6, "y": 0 @@ -3926,7 +3926,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1226, "time": 0.17465753424657535, @@ -3949,10 +3949,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.1780821917808219, + "time": 0.17808219178082194, "position": { "x": 3, "y": 0 @@ -3971,13 +3971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.1815068493150685, + "noteOrder": 1262, + "time": 0.1797945205479452, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3989,18 +3989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1298, - "time": 0.18493150684931506, + "noteOrder": 1262, + "time": 0.1797945205479452, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4017,11 +4017,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1322, - "time": 0.18835616438356168, + "noteOrder": 1274, + "time": 0.18150684931506852, "position": { "x": 6, "y": 0 @@ -4040,11 +4040,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.2054794520547945, + "noteOrder": 1286, + "time": 0.1832191780821918, "position": { "x": 6, "y": 0 @@ -4063,13 +4063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1466, - "time": 0.2089041095890411, + "noteOrder": 1286, + "time": 0.1832191780821918, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4086,13 +4086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, - "time": 0.21232876712328766, + "noteOrder": 1298, + "time": 0.18493150684931506, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4104,16 +4104,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.21917808219178084, + "noteOrder": 1310, + "time": 0.18664383561643838, "position": { "x": 3, "y": 0 @@ -4132,13 +4132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1562, - "time": 0.2226027397260274, + "noteOrder": 1310, + "time": 0.18664383561643838, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4155,13 +4155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1586, - "time": 0.226027397260274, + "noteOrder": 1322, + "time": 0.18835616438356165, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4173,18 +4173,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1610, - "time": 0.22945205479452055, + "noteOrder": 1334, + "time": 0.19006849315068494, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4201,11 +4201,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1682, - "time": 0.2397260273972603, + "noteOrder": 1334, + "time": 0.19006849315068494, "position": { "x": 5, "y": 0 @@ -4219,18 +4219,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1778, - "time": 0.2534246575342466, + "noteOrder": 1346, + "time": 0.19178082191780824, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4247,11 +4247,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1802, - "time": 0.2568493150684932, + "noteOrder": 1346, + "time": 0.19178082191780824, "position": { "x": 6, "y": 0 @@ -4265,16 +4265,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, - "time": 0.2671232876712329, + "noteOrder": 1442, + "time": 0.2054794520547945, "position": { "x": 6, "y": 0 @@ -4293,13 +4293,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.2808219178082192, + "noteOrder": 1466, + "time": 0.2089041095890411, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4311,18 +4311,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1995, - "time": 0.2842465753424658, + "noteOrder": 1490, + "time": 0.2123287671232877, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4339,13 +4339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, - "time": 0.2979452054794521, + "noteOrder": 1502, + "time": 0.21404109589041095, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4357,18 +4357,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2187, - "time": 0.3116438356164383, + "noteOrder": 1502, + "time": 0.21404109589041095, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4380,18 +4380,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2091, - "time": 0.2979452054794521, + "noteOrder": 1515, + "time": 0.21575342465753428, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4408,13 +4408,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2187, - "time": 0.3116438356164383, + "noteOrder": 1539, + "time": 0.21917808219178084, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4426,18 +4426,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, - "time": 0.3150684931506849, + "noteOrder": 1563, + "time": 0.2226027397260274, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4449,18 +4449,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2235, - "time": 0.3184931506849315, + "noteOrder": 1587, + "time": 0.226027397260274, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4477,13 +4477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2259, - "time": 0.3219178082191781, + "noteOrder": 1599, + "time": 0.22773972602739728, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4495,18 +4495,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2355, - "time": 0.3356164383561644, + "noteOrder": 1599, + "time": 0.22773972602739728, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4518,18 +4518,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2355, - "time": 0.3356164383561644, + "noteOrder": 1611, + "time": 0.22945205479452055, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4546,13 +4546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2379, - "time": 0.339041095890411, + "noteOrder": 1611, + "time": 0.22945205479452055, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4564,18 +4564,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, - "time": 0.34246575342465757, + "noteOrder": 1611, + "time": 0.22945205479452055, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4587,18 +4587,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.3561643835616438, + "noteOrder": 1623, + "time": 0.23116438356164387, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4610,16 +4610,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2499, - "time": 0.3561643835616438, + "noteOrder": 1623, + "time": 0.23116438356164387, "position": { "x": 6, "y": 0 @@ -4638,13 +4638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2571, - "time": 0.3664383561643835, + "noteOrder": 1635, + "time": 0.23287671232876714, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4661,13 +4661,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2619, - "time": 0.3732876712328767, + "noteOrder": 1635, + "time": 0.23287671232876714, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4679,18 +4679,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2643, - "time": 0.37671232876712335, + "noteOrder": 1683, + "time": 0.2397260273972603, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4702,18 +4702,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2667, - "time": 0.3801369863013699, + "noteOrder": 1695, + "time": 0.24143835616438358, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4730,13 +4730,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2691, - "time": 0.3835616438356165, + "noteOrder": 1695, + "time": 0.24143835616438358, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4753,13 +4753,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 2, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2715, - "time": 0.38698630136986306, + "noteOrder": 1707, + "time": 0.24315068493150685, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4776,13 +4776,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 3, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2739, - "time": 0.3904109589041096, + "noteOrder": 1707, + "time": 0.24315068493150685, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4799,13 +4799,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 4, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2764, - "time": 0.3938356164383562, + "noteOrder": 1779, + "time": 0.2534246575342466, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4817,18 +4817,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 5, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2788, - "time": 0.3972602739726028, + "noteOrder": 1791, + "time": 0.2551369863013699, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4840,18 +4840,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2788, - "time": 0.3972602739726028, + "noteOrder": 1791, + "time": 0.2551369863013699, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4868,13 +4868,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 63, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2884, - "time": 0.410958904109589, + "noteOrder": 1803, + "time": 0.2568493150684932, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4891,11 +4891,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3701, - "time": 0.5273972602739726, + "noteOrder": 1803, + "time": 0.2568493150684932, "position": { "x": 3, "y": 0 @@ -4909,18 +4909,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 64, "indexInLine": 1, "isSliding": false, - "noteOrder": 3725, - "time": 0.5308219178082192, + "noteOrder": 1803, + "time": 0.2568493150684932, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4937,13 +4937,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3701, - "time": 0.5273972602739726, + "noteOrder": 1815, + "time": 0.2585616438356165, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4955,18 +4955,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3725, - "time": 0.5308219178082192, + "noteOrder": 1815, + "time": 0.2585616438356165, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4978,18 +4978,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3749, - "time": 0.5342465753424658, + "noteOrder": 1827, + "time": 0.2602739726027397, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5001,18 +5001,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3797, - "time": 0.5410958904109588, + "noteOrder": 1827, + "time": 0.2602739726027397, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5024,16 +5024,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3821, - "time": 0.5445205479452055, + "noteOrder": 1875, + "time": 0.2671232876712329, "position": { "x": 6, "y": 0 @@ -5052,13 +5052,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 3, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.547945205479452, + "noteOrder": 1887, + "time": 0.2688356164383562, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5075,13 +5075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3845, - "time": 0.547945205479452, + "noteOrder": 1887, + "time": 0.2688356164383562, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5093,18 +5093,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3893, - "time": 0.5547945205479453, + "noteOrder": 1899, + "time": 0.2705479452054794, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5116,18 +5116,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 2, + "lineGroupId": 67, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3917, - "time": 0.5582191780821918, + "noteOrder": 1899, + "time": 0.2705479452054794, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5139,18 +5139,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 3, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, - "time": 0.5616438356164384, + "noteOrder": 1971, + "time": 0.2808219178082192, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5167,13 +5167,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 4, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3989, - "time": 0.5684931506849316, + "noteOrder": 1983, + "time": 0.2825342465753425, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5190,13 +5190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 5, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4013, - "time": 0.571917808219178, + "noteOrder": 1983, + "time": 0.2825342465753425, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5213,13 +5213,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 6, + "lineGroupId": 71, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4037, - "time": 0.5753424657534247, + "noteOrder": 1995, + "time": 0.2842465753424658, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5236,11 +5236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3941, - "time": 0.5616438356164384, + "noteOrder": 1995, + "time": 0.2842465753424658, "position": { "x": 7, "y": 0 @@ -5254,18 +5254,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 3989, - "time": 0.5684931506849316, + "noteOrder": 1995, + "time": 0.2842465753424658, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5282,13 +5282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 72, "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.571917808219178, + "noteOrder": 2007, + "time": 0.285958904109589, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5305,11 +5305,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 72, "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.5753424657534247, + "noteOrder": 2007, + "time": 0.285958904109589, "position": { "x": 5, "y": 0 @@ -5328,13 +5328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 72, "indexInLine": 4, "isSliding": false, - "noteOrder": 4085, - "time": 0.5821917808219178, + "noteOrder": 2019, + "time": 0.28767123287671237, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5351,13 +5351,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 72, "indexInLine": 5, "isSliding": false, - "noteOrder": 4109, - "time": 0.5856164383561644, + "noteOrder": 2019, + "time": 0.28767123287671237, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5374,13 +5374,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 6, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4133, - "time": 0.589041095890411, + "noteOrder": 2091, + "time": 0.2979452054794521, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5392,18 +5392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4133, - "time": 0.589041095890411, + "noteOrder": 2188, + "time": 0.3116438356164383, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5420,13 +5420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 4181, - "time": 0.5958904109589042, + "noteOrder": 2091, + "time": 0.2979452054794521, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5438,18 +5438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 77, "indexInLine": 2, "isSliding": false, - "noteOrder": 4205, - "time": 0.5993150684931506, + "noteOrder": 2188, + "time": 0.3116438356164383, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5461,18 +5461,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 3, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.6027397260273972, + "noteOrder": 2212, + "time": 0.31506849315068497, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5484,18 +5484,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4229, - "time": 0.6027397260273972, + "noteOrder": 2224, + "time": 0.3167808219178082, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5512,13 +5512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4277, - "time": 0.6095890410958904, + "noteOrder": 2224, + "time": 0.3167808219178082, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5535,13 +5535,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 79, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4301, - "time": 0.613013698630137, + "noteOrder": 2236, + "time": 0.3184931506849315, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5558,13 +5558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 3, + "lineGroupId": 79, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4326, - "time": 0.6164383561643836, + "noteOrder": 2236, + "time": 0.3184931506849315, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5581,13 +5581,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.6164383561643836, + "noteOrder": 2236, + "time": 0.3184931506849315, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -5604,13 +5604,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4374, - "time": 0.6232876712328766, + "noteOrder": 2248, + "time": 0.3202054794520548, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5627,13 +5627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 2, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4398, - "time": 0.6267123287671234, + "noteOrder": 2248, + "time": 0.3202054794520548, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5650,11 +5650,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 3, + "lineGroupId": 80, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4422, - "time": 0.6301369863013698, + "noteOrder": 2260, + "time": 0.3219178082191781, "position": { "x": 6, "y": 0 @@ -5673,13 +5673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4518, - "time": 0.6438356164383562, + "noteOrder": 2260, + "time": 0.3219178082191781, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5691,18 +5691,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 4542, - "time": 0.6472602739726028, + "noteOrder": 2260, + "time": 0.3219178082191781, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -5719,13 +5719,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 81, "indexInLine": 2, "isSliding": false, - "noteOrder": 4566, - "time": 0.6506849315068494, + "noteOrder": 2356, + "time": 0.3356164383561644, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5742,13 +5742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 3, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4590, - "time": 0.654109589041096, + "noteOrder": 2356, + "time": 0.3356164383561644, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5760,18 +5760,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 4, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, - "time": 0.6575342465753425, + "noteOrder": 2368, + "time": 0.33732876712328774, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5783,16 +5783,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4614, - "time": 0.6575342465753425, + "noteOrder": 2368, + "time": 0.33732876712328774, "position": { "x": 4, "y": 0 @@ -5811,13 +5811,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4638, - "time": 0.660958904109589, + "noteOrder": 2380, + "time": 0.339041095890411, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5834,13 +5834,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 2, + "lineGroupId": 85, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4662, - "time": 0.6643835616438357, + "noteOrder": 2380, + "time": 0.339041095890411, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5857,13 +5857,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 3, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4686, - "time": 0.6678082191780822, + "noteOrder": 2380, + "time": 0.339041095890411, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5875,18 +5875,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 4, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4710, - "time": 0.6712328767123288, + "noteOrder": 2392, + "time": 0.3407534246575343, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5898,18 +5898,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 5, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4734, - "time": 0.6746575342465754, + "noteOrder": 2392, + "time": 0.3407534246575343, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5921,16 +5921,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 6, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4758, - "time": 0.678082191780822, + "noteOrder": 2404, + "time": 0.34246575342465757, "position": { "x": 4, "y": 0 @@ -5944,16 +5944,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4710, - "time": 0.6712328767123288, + "noteOrder": 2404, + "time": 0.34246575342465757, "position": { "x": 6, "y": 0 @@ -5972,13 +5972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 4734, - "time": 0.6746575342465754, + "noteOrder": 2404, + "time": 0.34246575342465757, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5990,18 +5990,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 87, "indexInLine": 2, "isSliding": false, - "noteOrder": 4758, - "time": 0.678082191780822, + "noteOrder": 2500, + "time": 0.35616438356164387, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6013,18 +6013,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 3, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4782, - "time": 0.6815068493150684, + "noteOrder": 2500, + "time": 0.35616438356164387, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6041,13 +6041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 4, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.6849315068493151, + "noteOrder": 2572, + "time": 0.3664383561643836, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6064,13 +6064,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4806, - "time": 0.6849315068493151, + "noteOrder": 2620, + "time": 0.37328767123287676, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6087,13 +6087,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4830, - "time": 0.6883561643835616, + "noteOrder": 2632, + "time": 0.375, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -6110,11 +6110,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4854, - "time": 0.6917808219178082, + "noteOrder": 2632, + "time": 0.375, "position": { "x": 4, "y": 0 @@ -6133,13 +6133,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 3, + "lineGroupId": 97, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4878, - "time": 0.6952054794520548, + "noteOrder": 2644, + "time": 0.3767123287671233, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6156,13 +6156,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4902, - "time": 0.6986301369863014, + "noteOrder": 2644, + "time": 0.3767123287671233, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6174,18 +6174,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4950, - "time": 0.7054794520547946, + "noteOrder": 2644, + "time": 0.3767123287671233, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -6197,18 +6197,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.7123287671232876, + "noteOrder": 2656, + "time": 0.3784246575342466, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -6225,13 +6225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5191, - "time": 0.7397260273972602, + "noteOrder": 2656, + "time": 0.3784246575342466, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6248,13 +6248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 98, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5239, - "time": 0.7465753424657534, + "noteOrder": 2668, + "time": 0.3801369863013699, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6271,11 +6271,80 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5191, - "time": 0.7397260273972602, + "noteOrder": 2668, + "time": 0.3801369863013699, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2668, + "time": 0.3801369863013699, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2692, + "time": 0.3835616438356165, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2717, + "time": 0.386986301369863, "position": { "x": 3, "y": 0 @@ -6294,11 +6363,34 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2741, + "time": 0.3904109589041096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5239, - "time": 0.7465753424657534, + "noteOrder": 2765, + "time": 0.3938356164383562, "position": { "x": 3, "y": 0 @@ -6317,11 +6409,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5287, - "time": 0.7534246575342467, + "noteOrder": 2789, + "time": 0.3972602739726028, "position": { "x": 5, "y": 0 @@ -6340,11 +6432,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 5383, - "time": 0.767123287671233, + "noteOrder": 2789, + "time": 0.3972602739726028, "position": { "x": 7, "y": 0 @@ -6358,18 +6450,64 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.410958904109589, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3702, + "time": 0.5273972602739727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 145, "indexInLine": 2, "isSliding": false, - "noteOrder": 5407, - "time": 0.7705479452054794, + "noteOrder": 3726, + "time": 0.5308219178082192, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6386,13 +6524,2106 @@ "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3702, + "time": 0.5273972602739727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3726, + "time": 0.5308219178082192, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5342465753424658, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3798, + "time": 0.5410958904109588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3822, + "time": 0.5445205479452055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5479452054794521, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5479452054794521, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5547945205479452, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3919, + "time": 0.5582191780821919, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3943, + "time": 0.5616438356164384, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3991, + "time": 0.5684931506849316, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4015, + "time": 0.571917808219178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4039, + "time": 0.5753424657534247, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.5616438356164384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3991, + "time": 0.5684931506849316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4015, + "time": 0.571917808219178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4039, + "time": 0.5753424657534247, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4087, + "time": 0.5821917808219178, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4111, + "time": 0.5856164383561644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4135, + "time": 0.589041095890411, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4135, + "time": 0.589041095890411, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4183, + "time": 0.5958904109589042, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4207, + "time": 0.5993150684931507, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4231, + "time": 0.6027397260273972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4231, + "time": 0.6027397260273972, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4279, + "time": 0.6095890410958905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4303, + "time": 0.613013698630137, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6164383561643836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6164383561643836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4375, + "time": 0.6232876712328766, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4399, + "time": 0.6267123287671234, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4423, + "time": 0.6301369863013699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6438356164383562, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4544, + "time": 0.6472602739726028, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4568, + "time": 0.6506849315068494, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4592, + "time": 0.6541095890410958, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4616, + "time": 0.6575342465753424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4616, + "time": 0.6575342465753424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4640, + "time": 0.6609589041095891, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4664, + "time": 0.6643835616438357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4688, + "time": 0.6678082191780822, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4712, + "time": 0.6712328767123288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4736, + "time": 0.6746575342465755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4760, + "time": 0.678082191780822, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4712, + "time": 0.6712328767123288, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4736, + "time": 0.6746575342465755, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4760, + "time": 0.678082191780822, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4784, + "time": 0.6815068493150686, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4808, + "time": 0.6849315068493151, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4808, + "time": 0.6849315068493151, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4832, + "time": 0.6883561643835616, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4856, + "time": 0.6917808219178083, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4880, + "time": 0.6952054794520549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4904, + "time": 0.6986301369863014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4916, + "time": 0.7003424657534247, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4916, + "time": 0.7003424657534247, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4928, + "time": 0.702054794520548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4928, + "time": 0.702054794520548, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4952, + "time": 0.7054794520547946, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4964, + "time": 0.7071917808219178, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4964, + "time": 0.7071917808219178, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4976, + "time": 0.7089041095890412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4976, + "time": 0.7089041095890412, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5000, + "time": 0.7123287671232877, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5012, + "time": 0.714041095890411, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5012, + "time": 0.714041095890411, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5024, + "time": 0.7157534246575343, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5024, + "time": 0.7157534246575343, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5193, + "time": 0.7397260273972602, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5241, + "time": 0.7465753424657535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5193, + "time": 0.7397260273972602, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5241, + "time": 0.7465753424657535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5289, + "time": 0.7534246575342466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5385, + "time": 0.767123287671233, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5409, + "time": 0.7705479452054794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5433, + "time": 0.773972602739726, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5457, + "time": 0.7773972602739727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5481, + "time": 0.7808219178082192, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5481, + "time": 0.7808219178082192, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5577, + "time": 0.7945205479452055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5601, + "time": 0.7979452054794521, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5625, + "time": 0.8013698630136986, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5649, + "time": 0.8047945205479452, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5673, + "time": 0.8082191780821919, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5697, + "time": 0.8116438356164384, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5709, + "time": 0.8133561643835617, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5709, + "time": 0.8133561643835617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5721, + "time": 0.815068493150685, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5721, + "time": 0.815068493150685, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5721, + "time": 0.815068493150685, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5734, + "time": 0.8167808219178082, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, "indexInLine": 3, "isSliding": false, - "noteOrder": 5431, - "time": 0.7739726027397261, + "noteOrder": 5734, + "time": 0.8167808219178082, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6409,13 +8640,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 224, "indexInLine": 4, "isSliding": false, - "noteOrder": 5455, - "time": 0.7773972602739726, + "noteOrder": 5746, + "time": 0.8184931506849316, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6432,13 +8663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 224, "indexInLine": 5, "isSliding": false, - "noteOrder": 5479, - "time": 0.7808219178082192, + "noteOrder": 5746, + "time": 0.8184931506849316, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6455,13 +8686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, - "time": 0.7808219178082192, + "noteOrder": 5770, + "time": 0.821917808219178, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -6478,13 +8709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5575, - "time": 0.7945205479452055, + "noteOrder": 5782, + "time": 0.8236301369863014, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -6501,13 +8732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 2, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5599, - "time": 0.797945205479452, + "noteOrder": 5782, + "time": 0.8236301369863014, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6524,11 +8755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 3, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5623, - "time": 0.8013698630136986, + "noteOrder": 5794, + "time": 0.8253424657534247, "position": { "x": 4, "y": 0 @@ -6547,13 +8778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 4, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5647, - "time": 0.8047945205479453, + "noteOrder": 5794, + "time": 0.8253424657534247, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6570,13 +8801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 5, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, - "time": 0.8082191780821918, + "noteOrder": 5794, + "time": 0.8253424657534247, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -6588,16 +8819,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5695, - "time": 0.8116438356164384, + "noteOrder": 5806, + "time": 0.827054794520548, "position": { "x": 2, "y": 0 @@ -6611,18 +8842,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5719, - "time": 0.815068493150685, + "noteOrder": 5806, + "time": 0.827054794520548, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6639,13 +8870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5767, - "time": 0.821917808219178, + "noteOrder": 5818, + "time": 0.8287671232876713, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6657,18 +8888,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5791, - "time": 0.8253424657534247, + "noteOrder": 5818, + "time": 0.8287671232876713, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -6686,10 +8917,10 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5815, - "time": 0.8287671232876712, + "noteOrder": 5818, + "time": 0.8287671232876713, "position": { "x": 2, "y": 0 @@ -6709,10 +8940,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5912, - "time": 0.8424657534246575, + "noteOrder": 5914, + "time": 0.8424657534246576, "position": { "x": 6, "y": 0 @@ -6732,10 +8963,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5912, - "time": 0.8424657534246575, + "noteOrder": 5914, + "time": 0.8424657534246576, "position": { "x": 7, "y": 0 @@ -6755,10 +8986,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6008, - "time": 0.8561643835616439, + "noteOrder": 6010, + "time": 0.8561643835616438, "position": { "x": 3, "y": 0 @@ -6778,9 +9009,9 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6080, + "noteOrder": 6082, "time": 0.8664383561643836, "position": { "x": 6, @@ -6801,9 +9032,9 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.8698630136986302, "position": { "x": 5, @@ -6824,9 +9055,9 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6152, + "noteOrder": 6154, "time": 0.8767123287671234, "position": { "x": 6, @@ -6847,10 +9078,10 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6176, - "time": 0.8801369863013698, + "noteOrder": 6178, + "time": 0.8801369863013699, "position": { "x": 7, "y": 0 @@ -6870,9 +9101,9 @@ }, { "lineGroupId": 249, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6250, "time": 0.8904109589041096, "position": { "x": 7, @@ -6893,9 +9124,9 @@ }, { "lineGroupId": 249, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6296, + "noteOrder": 6298, "time": 0.8972602739726028, "position": { "x": 7, @@ -6916,9 +9147,9 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6250, "time": 0.8904109589041096, "position": { "x": 3, @@ -6939,9 +9170,9 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6296, + "noteOrder": 6298, "time": 0.8972602739726028, "position": { "x": 3, @@ -6962,10 +9193,10 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6368, - "time": 0.9075342465753425, + "noteOrder": 6371, + "time": 0.9075342465753424, "position": { "x": 3, "y": 0 @@ -6985,10 +9216,10 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6392, - "time": 0.910958904109589, + "noteOrder": 6395, + "time": 0.9109589041095891, "position": { "x": 4, "y": 0 @@ -7008,10 +9239,10 @@ }, { "lineGroupId": 254, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6392, - "time": 0.910958904109589, + "noteOrder": 6395, + "time": 0.9109589041095891, "position": { "x": 7, "y": 0 @@ -7031,9 +9262,9 @@ }, { "lineGroupId": 254, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6416, + "noteOrder": 6419, "time": 0.9143835616438357, "position": { "x": 6, @@ -7054,9 +9285,9 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6464, + "noteOrder": 6467, "time": 0.9212328767123288, "position": { "x": 4, @@ -7077,10 +9308,10 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6536, - "time": 0.9315068493150684, + "noteOrder": 6539, + "time": 0.9315068493150686, "position": { "x": 7, "y": 0 @@ -7100,10 +9331,10 @@ }, { "lineGroupId": 260, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6536, - "time": 0.9315068493150684, + "noteOrder": 6539, + "time": 0.9315068493150686, "position": { "x": 7, "y": 0 @@ -7123,10 +9354,10 @@ }, { "lineGroupId": 260, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6608, - "time": 0.9417808219178082, + "noteOrder": 6611, + "time": 0.9417808219178083, "position": { "x": 4, "y": 0 @@ -7146,10 +9377,33 @@ }, { "lineGroupId": 264, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6635, + "time": 0.9452054794520549, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6632, - "time": 0.9452054794520548, + "noteOrder": 6647, + "time": 0.9469178082191781, "position": { "x": 7, "y": 0 @@ -7167,11 +9421,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 264, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6647, + "time": 0.9469178082191781, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 265, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6656, + "noteOrder": 6659, "time": 0.9486301369863014, "position": { "x": 3, @@ -7190,11 +9467,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 265, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6671, + "time": 0.9503424657534247, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6671, + "time": 0.9503424657534247, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 266, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6681, + "noteOrder": 6683, "time": 0.952054794520548, "position": { "x": 7, @@ -7213,11 +9536,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 266, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6695, + "time": 0.9537671232876712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6695, + "time": 0.9537671232876712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 268, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6729, + "noteOrder": 6731, "time": 0.9589041095890412, "position": { "x": 4, @@ -7238,10 +9607,10 @@ }, { "lineGroupId": 268, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6753, - "time": 0.9623287671232876, + "noteOrder": 6755, + "time": 0.9623287671232877, "position": { "x": 3, "y": 0 @@ -7261,9 +9630,9 @@ }, { "lineGroupId": 268, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6777, + "noteOrder": 6779, "time": 0.9657534246575343, "position": { "x": 4, @@ -7284,9 +9653,9 @@ }, { "lineGroupId": 268, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6801, + "noteOrder": 6803, "time": 0.9691780821917808, "position": { "x": 3, @@ -7307,10 +9676,10 @@ }, { "lineGroupId": 268, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6825, - "time": 0.9726027397260275, + "noteOrder": 6827, + "time": 0.9726027397260274, "position": { "x": 4, "y": 0 @@ -7330,9 +9699,9 @@ }, { "lineGroupId": 269, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6729, + "noteOrder": 6731, "time": 0.9589041095890412, "position": { "x": 6, @@ -7353,10 +9722,10 @@ }, { "lineGroupId": 269, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6753, - "time": 0.9623287671232876, + "noteOrder": 6755, + "time": 0.9623287671232877, "position": { "x": 5, "y": 0 @@ -7376,9 +9745,9 @@ }, { "lineGroupId": 269, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6777, + "noteOrder": 6779, "time": 0.9657534246575343, "position": { "x": 6, @@ -7399,9 +9768,9 @@ }, { "lineGroupId": 269, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6801, + "noteOrder": 6803, "time": 0.9691780821917808, "position": { "x": 5, @@ -7422,10 +9791,10 @@ }, { "lineGroupId": 269, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6825, - "time": 0.9726027397260275, + "noteOrder": 6827, + "time": 0.9726027397260274, "position": { "x": 6, "y": 0 diff --git a/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1b.json b/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1b.json index 98a8cd71..b20aad9a 100644 --- a/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1b.json +++ b/tracks/True Blue (STARDOM Remix) T STEP EDITION/329_difficulty_1b.json @@ -54,7 +54,7 @@ }, { "noteOrder": 288, - "time": 0.04109589041095891, + "time": 0.0410958904109589, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 625, - "time": 0.08904109589041095, + "time": 0.08904109589041097, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 817, - "time": 0.11643835616438356, + "time": 0.11643835616438357, "position": { "x": 4, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.13013698630136986, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.14383561643835618, "position": { "x": 4, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.15753424657534246, + "noteOrder": 1106, + "time": 0.15753424657534248, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.21575342465753428, "position": { "x": 3, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.2226027397260274, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.226027397260274, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.22945205479452055, "position": { "x": 6, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1658, - "time": 0.2363013698630137, + "noteOrder": 1659, + "time": 0.23630136986301373, "position": { "x": 8, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.24315068493150688, + "noteOrder": 1707, + "time": 0.24315068493150685, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1850, - "time": 0.2636986301369863, + "noteOrder": 1851, + "time": 0.26369863013698636, "position": { "x": 4, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.2705479452054794, "position": { "x": 3, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.27739726027397266, + "noteOrder": 1947, + "time": 0.2773972602739726, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2211, - "time": 0.3150684931506849, + "noteOrder": 2212, + "time": 0.31506849315068497, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2307, - "time": 0.32876712328767127, + "noteOrder": 2308, + "time": 0.3287671232876712, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.3356164383561644, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2451, + "noteOrder": 2452, "time": 0.3493150684931507, "position": { "x": 3, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2499, - "time": 0.3561643835616438, + "noteOrder": 2500, + "time": 0.35616438356164387, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2643, - "time": 0.37671232876712335, + "noteOrder": 2644, + "time": 0.3767123287671233, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.3835616438356165, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2741, "time": 0.3904109589041096, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2836, - "time": 0.4041095890410959, + "noteOrder": 2837, + "time": 0.40410958904109595, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.410958904109589, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2933, "time": 0.4178082191780822, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2980, - "time": 0.4246575342465753, + "noteOrder": 2981, + "time": 0.4246575342465754, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.43150684931506855, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3076, + "noteOrder": 3077, "time": 0.4383561643835617, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.4452054794520548, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.4486301369863014, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3173, "time": 0.452054794520548, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.4589041095890411, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4657534246575342, + "noteOrder": 3269, + "time": 0.4657534246575343, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 3293, "time": 0.4691780821917808, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3316, - "time": 0.4726027397260274, + "noteOrder": 3318, + "time": 0.47260273972602745, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3342, "time": 0.476027397260274, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.48630136986301375, + "noteOrder": 3414, + "time": 0.4863013698630137, "position": { "x": 8, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3460, + "noteOrder": 3462, "time": 0.4931506849315069, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.5, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3558, "time": 0.5068493150684932, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3606, "time": 0.5136986301369864, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3653, + "noteOrder": 3654, "time": 0.5205479452054794, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3701, - "time": 0.5273972602739726, + "noteOrder": 3702, + "time": 0.5273972602739727, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3797, + "noteOrder": 3798, "time": 0.5410958904109588, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3893, - "time": 0.5547945205479453, + "noteOrder": 3894, + "time": 0.5547945205479452, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3989, + "noteOrder": 3991, "time": 0.5684931506849316, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4037, + "noteOrder": 4039, "time": 0.5753424657534247, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4085, + "noteOrder": 4087, "time": 0.5821917808219178, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4109, + "noteOrder": 4111, "time": 0.5856164383561644, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4181, + "noteOrder": 4183, "time": 0.5958904109589042, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4277, - "time": 0.6095890410958904, + "noteOrder": 4279, + "time": 0.6095890410958905, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4375, "time": 0.6232876712328766, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4471, "time": 0.636986301369863, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4566, + "noteOrder": 4568, "time": 0.6506849315068494, "position": { "x": 5, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4614, - "time": 0.6575342465753425, + "noteOrder": 4616, + "time": 0.6575342465753424, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4662, + "noteOrder": 4664, "time": 0.6643835616438357, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4758, + "noteOrder": 4760, "time": 0.678082191780822, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.6849315068493151, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4854, - "time": 0.6917808219178082, + "noteOrder": 4856, + "time": 0.6917808219178083, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5046, + "noteOrder": 5048, "time": 0.7191780821917808, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5070, + "noteOrder": 5072, "time": 0.7226027397260274, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5335, + "noteOrder": 5337, "time": 0.7602739726027398, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5431, - "time": 0.7739726027397261, + "noteOrder": 5433, + "time": 0.773972602739726, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5527, + "noteOrder": 5529, "time": 0.7876712328767124, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5599, - "time": 0.797945205479452, + "noteOrder": 5601, + "time": 0.7979452054794521, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5625, "time": 0.8013698630136986, "position": { "x": 4, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5647, - "time": 0.8047945205479453, + "noteOrder": 5649, + "time": 0.8047945205479452, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5719, + "noteOrder": 5721, "time": 0.815068493150685, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5815, - "time": 0.8287671232876712, + "noteOrder": 5818, + "time": 0.8287671232876713, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5960, - "time": 0.8493150684931506, + "noteOrder": 5962, + "time": 0.8493150684931507, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5986, "time": 0.8527397260273973, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6008, - "time": 0.8561643835616439, + "noteOrder": 6010, + "time": 0.8561643835616438, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6032, - "time": 0.8595890410958904, + "noteOrder": 6034, + "time": 0.8595890410958905, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6104, + "noteOrder": 6106, "time": 0.8698630136986302, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6152, + "noteOrder": 6154, "time": 0.8767123287671234, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.8835616438356165, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6224, + "noteOrder": 6226, "time": 0.886986301369863, "position": { "x": 8, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6296, + "noteOrder": 6298, "time": 0.8972602739726028, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6344, + "noteOrder": 6347, "time": 0.904109589041096, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6368, - "time": 0.9075342465753425, + "noteOrder": 6371, + "time": 0.9075342465753424, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6392, - "time": 0.910958904109589, + "noteOrder": 6395, + "time": 0.9109589041095891, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6416, + "noteOrder": 6419, "time": 0.9143835616438357, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 6464, + "noteOrder": 6467, "time": 0.9212328767123288, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6488, - "time": 0.9246575342465754, + "noteOrder": 6491, + "time": 0.9246575342465755, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6512, + "noteOrder": 6515, "time": 0.928082191780822, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6560, + "noteOrder": 6563, "time": 0.9349315068493151, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6584, + "noteOrder": 6587, "time": 0.9383561643835616, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6608, - "time": 0.9417808219178082, + "noteOrder": 6611, + "time": 0.9417808219178083, "position": { "x": 6, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6632, - "time": 0.9452054794520548, + "noteOrder": 6635, + "time": 0.9452054794520549, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6656, + "noteOrder": 6659, "time": 0.9486301369863014, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6681, + "noteOrder": 6683, "time": 0.952054794520548, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6705, + "noteOrder": 6707, "time": 0.9554794520547946, "position": { "x": 4, @@ -2196,10 +2196,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 144, - "time": 0.020547945205479454, + "time": 0.02054794520547945, "position": { "x": 6, "y": 0 @@ -2219,10 +2219,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.03424657534246575, + "time": 0.03424657534246576, "position": { "x": 6, "y": 0 @@ -2242,10 +2242,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 240, - "time": 0.03424657534246575, + "time": 0.03424657534246576, "position": { "x": 4, "y": 0 @@ -2265,9 +2265,9 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.04794520547945206, "position": { "x": 4, @@ -2288,9 +2288,9 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 336, + "noteOrder": 337, "time": 0.04794520547945206, "position": { "x": 6, @@ -2311,9 +2311,9 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05479452054794521, "position": { "x": 6, @@ -2334,9 +2334,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, + "noteOrder": 385, "time": 0.05479452054794521, "position": { "x": 4, @@ -2357,7 +2357,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.06164383561643836, @@ -2380,10 +2380,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.0684931506849315, + "time": 0.06849315068493152, "position": { "x": 7, "y": 0 @@ -2403,10 +2403,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, - "time": 0.08219178082191782, + "time": 0.0821917808219178, "position": { "x": 7, "y": 0 @@ -2426,10 +2426,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.08219178082191782, + "time": 0.0821917808219178, "position": { "x": 4, "y": 0 @@ -2449,7 +2449,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.09589041095890412, @@ -2472,7 +2472,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.09589041095890412, @@ -2495,7 +2495,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, "time": 0.10958904109589042, @@ -2518,7 +2518,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, "time": 0.12328767123287672, @@ -2541,10 +2541,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, - "time": 0.136986301369863, + "noteOrder": 962, + "time": 0.13698630136986303, "position": { "x": 4, "y": 0 @@ -2564,10 +2564,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.136986301369863, + "noteOrder": 962, + "time": 0.13698630136986303, "position": { "x": 7, "y": 0 @@ -2587,9 +2587,9 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.1506849315068493, "position": { "x": 6, @@ -2610,9 +2610,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1057, + "noteOrder": 1058, "time": 0.1506849315068493, "position": { "x": 4, @@ -2633,10 +2633,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1153, - "time": 0.16438356164383564, + "noteOrder": 1154, + "time": 0.1643835616438356, "position": { "x": 4, "y": 0 @@ -2656,10 +2656,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1153, - "time": 0.16438356164383564, + "noteOrder": 1154, + "time": 0.1643835616438356, "position": { "x": 7, "y": 0 @@ -2679,7 +2679,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1202, "time": 0.17123287671232879, @@ -2702,10 +2702,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1250, - "time": 0.1780821917808219, + "time": 0.17808219178082194, "position": { "x": 4, "y": 0 @@ -2723,9 +2723,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1274, + "time": 0.18150684931506852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1274, + "time": 0.18150684931506852, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1298, "time": 0.18493150684931506, @@ -2746,9 +2792,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1322, + "time": 0.18835616438356165, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1322, + "time": 0.18835616438356165, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1442, "time": 0.2054794520547945, @@ -2771,7 +2863,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1466, "time": 0.2089041095890411, @@ -2794,10 +2886,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1490, - "time": 0.21232876712328766, + "time": 0.2123287671232877, "position": { "x": 6, "y": 0 @@ -2817,9 +2909,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.21575342465753428, "position": { "x": 6, @@ -2840,9 +2932,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, + "noteOrder": 1539, "time": 0.21917808219178084, "position": { "x": 4, @@ -2863,9 +2955,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.2226027397260274, "position": { "x": 4, @@ -2886,10 +2978,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.2328767123287671, + "noteOrder": 1635, + "time": 0.23287671232876714, "position": { "x": 4, "y": 0 @@ -2909,10 +3001,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1658, - "time": 0.2363013698630137, + "noteOrder": 1659, + "time": 0.23630136986301373, "position": { "x": 4, "y": 0 @@ -2932,9 +3024,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2397260273972603, "position": { "x": 4, @@ -2955,10 +3047,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1706, - "time": 0.24315068493150688, + "noteOrder": 1707, + "time": 0.24315068493150685, "position": { "x": 4, "y": 0 @@ -2978,9 +3070,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, + "noteOrder": 1731, "time": 0.24657534246575344, "position": { "x": 6, @@ -2999,11 +3091,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1755, + "time": 0.25, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1755, + "time": 0.25, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2534246575342466, "position": { "x": 6, @@ -3022,11 +3160,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2568493150684932, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1803, + "time": 0.2568493150684932, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.2671232876712329, "position": { "x": 6, @@ -3047,9 +3231,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1898, + "noteOrder": 1899, "time": 0.2705479452054794, "position": { "x": 6, @@ -3070,10 +3254,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.273972602739726, + "noteOrder": 1923, + "time": 0.27397260273972607, "position": { "x": 4, "y": 0 @@ -3093,10 +3277,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1946, - "time": 0.27739726027397266, + "noteOrder": 1947, + "time": 0.2773972602739726, "position": { "x": 4, "y": 0 @@ -3116,7 +3300,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2019, "time": 0.28767123287671237, @@ -3139,7 +3323,7 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2043, "time": 0.2910958904109589, @@ -3162,7 +3346,7 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2091, "time": 0.2979452054794521, @@ -3185,9 +3369,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.3116438356164383, "position": { "x": 3, @@ -3208,9 +3392,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.3219178082191781, "position": { "x": 3, @@ -3231,9 +3415,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.34246575342465757, "position": { "x": 3, @@ -3254,9 +3438,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.34246575342465757, "position": { "x": 6, @@ -3277,10 +3461,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2499, - "time": 0.3561643835616438, + "noteOrder": 2500, + "time": 0.35616438356164387, "position": { "x": 6, "y": 0 @@ -3300,9 +3484,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2595, + "noteOrder": 2596, "time": 0.3698630136986301, "position": { "x": 7, @@ -3323,9 +3507,9 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.3835616438356165, "position": { "x": 6, @@ -3346,9 +3530,9 @@ }, { "lineGroupId": 72, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2788, + "noteOrder": 2789, "time": 0.3972602739726028, "position": { "x": 5, @@ -3369,9 +3553,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2788, + "noteOrder": 2789, "time": 0.3972602739726028, "position": { "x": 3, @@ -3392,9 +3576,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.410958904109589, "position": { "x": 4, @@ -3415,10 +3599,10 @@ }, { "lineGroupId": 76, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2980, - "time": 0.4246575342465753, + "noteOrder": 2981, + "time": 0.4246575342465754, "position": { "x": 5, "y": 0 @@ -3438,9 +3622,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3749, + "noteOrder": 3750, "time": 0.5342465753424658, "position": { "x": 7, @@ -3461,10 +3645,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3845, - "time": 0.547945205479452, + "noteOrder": 3846, + "time": 0.5479452054794521, "position": { "x": 7, "y": 0 @@ -3484,10 +3668,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3845, - "time": 0.547945205479452, + "noteOrder": 3846, + "time": 0.5479452054794521, "position": { "x": 3, "y": 0 @@ -3507,9 +3691,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.5616438356164384, "position": { "x": 3, @@ -3530,9 +3714,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, + "noteOrder": 3943, "time": 0.5616438356164384, "position": { "x": 7, @@ -3553,9 +3737,9 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4037, + "noteOrder": 4039, "time": 0.5753424657534247, "position": { "x": 7, @@ -3576,9 +3760,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4133, + "noteOrder": 4135, "time": 0.589041095890411, "position": { "x": 6, @@ -3599,9 +3783,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4229, + "noteOrder": 4231, "time": 0.6027397260273972, "position": { "x": 6, @@ -3622,9 +3806,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, + "noteOrder": 4231, "time": 0.6027397260273972, "position": { "x": 4, @@ -3645,9 +3829,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, + "noteOrder": 4327, "time": 0.6164383561643836, "position": { "x": 4, @@ -3668,9 +3852,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, + "noteOrder": 4327, "time": 0.6164383561643836, "position": { "x": 6, @@ -3691,10 +3875,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4422, - "time": 0.6301369863013698, + "noteOrder": 4423, + "time": 0.6301369863013699, "position": { "x": 6, "y": 0 @@ -3714,10 +3898,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4422, - "time": 0.6301369863013698, + "noteOrder": 4423, + "time": 0.6301369863013699, "position": { "x": 4, "y": 0 @@ -3737,9 +3921,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4519, "time": 0.6438356164383562, "position": { "x": 4, @@ -3760,9 +3944,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4519, "time": 0.6438356164383562, "position": { "x": 7, @@ -3783,10 +3967,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, - "time": 0.6575342465753425, + "noteOrder": 4616, + "time": 0.6575342465753424, "position": { "x": 6, "y": 0 @@ -3806,9 +3990,9 @@ }, { "lineGroupId": 117, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.6712328767123288, "position": { "x": 5, @@ -3829,9 +4013,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.6712328767123288, "position": { "x": 3, @@ -3852,9 +4036,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.6849315068493151, "position": { "x": 4, @@ -3875,9 +4059,9 @@ }, { "lineGroupId": 121, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4902, + "noteOrder": 4904, "time": 0.6986301369863014, "position": { "x": 5, @@ -3898,9 +4082,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, + "noteOrder": 4904, "time": 0.6986301369863014, "position": { "x": 6, @@ -3921,9 +4105,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.7054794520547946, "position": { "x": 6, @@ -3944,9 +4128,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4950, + "noteOrder": 4952, "time": 0.7054794520547946, "position": { "x": 4, @@ -3967,10 +4151,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.7123287671232876, + "noteOrder": 5000, + "time": 0.7123287671232877, "position": { "x": 4, "y": 0 @@ -3990,10 +4174,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4998, - "time": 0.7123287671232876, + "noteOrder": 5000, + "time": 0.7123287671232877, "position": { "x": 6, "y": 0 @@ -4013,9 +4197,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5046, + "noteOrder": 5048, "time": 0.7191780821917808, "position": { "x": 6, @@ -4036,10 +4220,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5095, - "time": 0.726027397260274, + "noteOrder": 5096, + "time": 0.7260273972602741, "position": { "x": 4, "y": 0 @@ -4059,10 +4243,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5143, - "time": 0.732876712328767, + "noteOrder": 5145, + "time": 0.7328767123287672, "position": { "x": 4, "y": 0 @@ -4082,9 +4266,9 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, + "noteOrder": 5193, "time": 0.7397260273972602, "position": { "x": 4, @@ -4105,10 +4289,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5239, - "time": 0.7465753424657534, + "noteOrder": 5241, + "time": 0.7465753424657535, "position": { "x": 4, "y": 0 @@ -4128,9 +4312,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5191, + "noteOrder": 5193, "time": 0.7397260273972602, "position": { "x": 6, @@ -4151,10 +4335,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5239, - "time": 0.7465753424657534, + "noteOrder": 5241, + "time": 0.7465753424657535, "position": { "x": 6, "y": 0 @@ -4174,10 +4358,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5287, - "time": 0.7534246575342467, + "noteOrder": 5289, + "time": 0.7534246575342466, "position": { "x": 3, "y": 0 @@ -4197,9 +4381,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.767123287671233, "position": { "x": 4, @@ -4220,9 +4404,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.767123287671233, "position": { "x": 7, @@ -4243,9 +4427,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.7808219178082192, "position": { "x": 6, @@ -4266,9 +4450,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.7808219178082192, "position": { "x": 3, @@ -4289,9 +4473,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.7945205479452055, "position": { "x": 4, @@ -4312,9 +4496,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5575, + "noteOrder": 5577, "time": 0.7945205479452055, "position": { "x": 7, @@ -4335,10 +4519,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5671, - "time": 0.8082191780821918, + "noteOrder": 5673, + "time": 0.8082191780821919, "position": { "x": 6, "y": 0 @@ -4358,10 +4542,10 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, - "time": 0.8082191780821918, + "noteOrder": 5673, + "time": 0.8082191780821919, "position": { "x": 3, "y": 0 @@ -4381,9 +4565,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5767, + "noteOrder": 5770, "time": 0.821917808219178, "position": { "x": 4, @@ -4404,9 +4588,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5767, + "noteOrder": 5770, "time": 0.821917808219178, "position": { "x": 7, @@ -4427,9 +4611,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, + "noteOrder": 5866, "time": 0.8356164383561644, "position": { "x": 6, @@ -4450,9 +4634,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, + "noteOrder": 5866, "time": 0.8356164383561644, "position": { "x": 3, @@ -4473,10 +4657,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5912, - "time": 0.8424657534246575, + "noteOrder": 5914, + "time": 0.8424657534246576, "position": { "x": 3, "y": 0 @@ -4496,10 +4680,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5912, - "time": 0.8424657534246575, + "noteOrder": 5914, + "time": 0.8424657534246576, "position": { "x": 7, "y": 0 @@ -4519,10 +4703,10 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5960, - "time": 0.8493150684931506, + "noteOrder": 5962, + "time": 0.8493150684931507, "position": { "x": 7, "y": 0 @@ -4542,9 +4726,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6250, "time": 0.8904109589041096, "position": { "x": 6, @@ -4565,9 +4749,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6344, + "noteOrder": 6347, "time": 0.904109589041096, "position": { "x": 6, @@ -4588,9 +4772,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6440, + "noteOrder": 6443, "time": 0.9178082191780822, "position": { "x": 7, @@ -4611,10 +4795,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6536, - "time": 0.9315068493150684, + "noteOrder": 6539, + "time": 0.9315068493150686, "position": { "x": 6, "y": 0 @@ -4634,10 +4818,10 @@ }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6536, - "time": 0.9315068493150684, + "noteOrder": 6539, + "time": 0.9315068493150686, "position": { "x": 3, "y": 0 @@ -4657,10 +4841,10 @@ }, { "lineGroupId": 173, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6632, - "time": 0.9452054794520548, + "noteOrder": 6635, + "time": 0.9452054794520549, "position": { "x": 4, "y": 0 diff --git a/tracks/True Blue (STARDOM Remix) T STEP EDITION/info.json b/tracks/True Blue (STARDOM Remix) T STEP EDITION/info.json index 3517707c..a43af95a 100644 --- a/tracks/True Blue (STARDOM Remix) T STEP EDITION/info.json +++ b/tracks/True Blue (STARDOM Remix) T STEP EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "True Blue (STARDOM Remix) T STEP EDITION", - "SongLength": "133.537959", + "SongLength": "123.585306", "SongAuthorName": "\u304b\u3081\u308a\u3042", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Twilight/283_difficulty_1a.json b/tracks/Twilight/283_difficulty_1a.json index 689099ac..0b2258a4 100644 --- a/tracks/Twilight/283_difficulty_1a.json +++ b/tracks/Twilight/283_difficulty_1a.json @@ -174,7 +174,7 @@ }, { "noteOrder": 649, - "time": 0.12996389891696752, + "time": 0.1299638989169675, "position": { "x": 5, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 746, "time": 0.14921780986762936, "position": { "x": 3, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 793, - "time": 0.1588447653429603, + "noteOrder": 794, + "time": 0.15884476534296027, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 793, - "time": 0.1588447653429603, + "noteOrder": 794, + "time": 0.15884476534296027, "position": { "x": 4, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.16847172081829123, "position": { "x": 7, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.16847172081829123, "position": { "x": 3, @@ -314,7 +314,7 @@ }, { "noteOrder": 1106, - "time": 0.22141997593261134, + "time": 0.2214199759326113, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1106, - "time": 0.22141997593261134, + "time": 0.2214199759326113, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1130, - "time": 0.22623345367027678, + "time": 0.22623345367027675, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1130, - "time": 0.22623345367027678, + "time": 0.22623345367027675, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1226, - "time": 0.24548736462093865, + "noteOrder": 1227, + "time": 0.24548736462093862, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.25511432009626955, "position": { "x": 7, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.2647412755716005, "position": { "x": 7, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1418, - "time": 0.2839951865222623, + "noteOrder": 1419, + "time": 0.28399518652226236, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.33694344163658246, "position": { "x": 3, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1707, + "noteOrder": 1708, "time": 0.3417569193742479, "position": { "x": 7, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3561973525872443, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1803, + "noteOrder": 1804, "time": 0.36101083032490977, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.37063778580024065, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.37545126353790614, "position": { "x": 3, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.38026474127557164, + "noteOrder": 1900, + "time": 0.3802647412755716, "position": { "x": 8, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1947, + "noteOrder": 1948, "time": 0.3898916967509025, "position": { "x": 2, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.394705174488568, + "noteOrder": 1972, + "time": 0.39470517448856796, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.3995186522262335, + "noteOrder": 1996, + "time": 0.3995186522262334, "position": { "x": 2, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.4091456077015644, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.4187725631768953, "position": { "x": 4, @@ -754,7 +754,7 @@ }, { "noteOrder": 2140, - "time": 0.42839951865222625, + "time": 0.4283995186522262, "position": { "x": 7, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2164, + "noteOrder": 2165, "time": 0.4332129963898917, "position": { "x": 3, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.4380264741275572, + "noteOrder": 2189, + "time": 0.43802647412755713, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.4428399518652227, + "noteOrder": 2213, + "time": 0.4428399518652226, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.44765342960288806, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.45246690734055356, + "noteOrder": 2261, + "time": 0.4524669073405535, "position": { "x": 4, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.45246690734055356, + "noteOrder": 2261, + "time": 0.4524669073405535, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.4861612515042118, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.4909747292418773, + "noteOrder": 2453, + "time": 0.49097472924187724, "position": { "x": 2, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.49578820697954273, + "noteOrder": 2477, + "time": 0.4957882069795427, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.5054151624548737, + "noteOrder": 2525, + "time": 0.5054151624548736, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.5102286401925391, "position": { "x": 8, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.5150421179302046, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2718, "time": 0.5439229843561973, "position": { "x": 2, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2765, - "time": 0.5535499398315282, + "noteOrder": 2766, + "time": 0.5535499398315283, "position": { "x": 8, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.5631768953068592, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2837, - "time": 0.5679903730445246, + "noteOrder": 2838, + "time": 0.5679903730445247, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5728038507821901, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.5824308062575211, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5872442839951866, + "noteOrder": 2934, + "time": 0.5872442839951865, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.592057761732852, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.5968712394705175, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.601684717208183, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.6064981949458484, + "noteOrder": 3030, + "time": 0.6064981949458483, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.6064981949458484, + "noteOrder": 3030, + "time": 0.6064981949458483, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.6113116726835138, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.6113116726835138, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6305655836341757, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3197, - "time": 0.6401925391095067, + "noteOrder": 3199, + "time": 0.6401925391095066, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.6498194945848377, + "noteOrder": 3247, + "time": 0.6498194945848375, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3295, "time": 0.6594464500601684, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3295, "time": 0.6594464500601684, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3342, - "time": 0.6690734055354994, + "noteOrder": 3343, + "time": 0.6690734055354993, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3342, - "time": 0.6690734055354994, + "noteOrder": 3343, + "time": 0.6690734055354993, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3486, + "noteOrder": 3487, "time": 0.6979542719614922, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.7027677496991577, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.7075812274368232, + "noteOrder": 3535, + "time": 0.7075812274368231, "position": { "x": 5, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3584, "time": 0.717208182912154, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3630, + "noteOrder": 3632, "time": 0.7268351383874849, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3680, "time": 0.7364620938628159, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3680, "time": 0.7364620938628159, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3728, "time": 0.7460890493381468, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3728, "time": 0.7460890493381468, "position": { "x": 3, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.799037304452467, + "noteOrder": 3992, + "time": 0.7990373044524668, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.799037304452467, + "noteOrder": 3992, + "time": 0.7990373044524668, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8038507821901323, + "noteOrder": 4016, + "time": 0.8038507821901324, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8038507821901323, + "noteOrder": 4016, + "time": 0.8038507821901324, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4065, "time": 0.8134777376654633, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8231046931407943, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4159, + "noteOrder": 4161, "time": 0.8327316486161251, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.8423586040914561, + "noteOrder": 4209, + "time": 0.842358604091456, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.861612515042118, + "noteOrder": 4305, + "time": 0.8616125150421179, "position": { "x": 7, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.8904933814681107, + "noteOrder": 4449, + "time": 0.8904933814681106, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.8953068592057761, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4497, "time": 0.9001203369434416, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4544, - "time": 0.9097472924187726, + "noteOrder": 4546, + "time": 0.9097472924187725, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4592, - "time": 0.9193742478941036, + "noteOrder": 4594, + "time": 0.9193742478941035, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4640, - "time": 0.9290012033694344, + "noteOrder": 4642, + "time": 0.9290012033694345, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.9338146811070999, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4688, + "noteOrder": 4690, "time": 0.9386281588447654, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9434416365824309, "position": { "x": 7, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.9482551143200963, + "noteOrder": 4738, + "time": 0.9482551143200962, "position": { "x": 3, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.9530685920577617, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.9530685920577617, "position": { "x": 6, @@ -2036,7 +2036,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.019253910950661854, @@ -2059,7 +2059,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 192, "time": 0.03850782190132371, @@ -2082,10 +2082,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 288, - "time": 0.057761732851985555, + "noteOrder": 289, + "time": 0.05776173285198556, "position": { "x": 7, "y": 0 @@ -2105,10 +2105,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.09626955475330927, + "time": 0.09626955475330926, "position": { "x": 3, "y": 0 @@ -2128,10 +2128,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, - "time": 0.10108303249097472, + "time": 0.10108303249097474, "position": { "x": 3, "y": 0 @@ -2151,7 +2151,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.10589651022864019, @@ -2174,10 +2174,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, - "time": 0.11070998796630567, + "time": 0.11070998796630566, "position": { "x": 7, "y": 0 @@ -2197,10 +2197,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.11552346570397111, + "time": 0.11552346570397112, "position": { "x": 3, "y": 0 @@ -2220,7 +2220,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.13477737665463296, @@ -2243,9 +2243,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.17328519855595667, "position": { "x": 7, @@ -2266,9 +2266,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, + "noteOrder": 890, "time": 0.17809867629362214, "position": { "x": 7, @@ -2289,7 +2289,7 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, "time": 0.1829121540312876, @@ -2312,7 +2312,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 938, "time": 0.18772563176895307, @@ -2335,10 +2335,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 986, - "time": 0.197352587244284, + "time": 0.19735258724428398, "position": { "x": 3, "y": 0 @@ -2358,7 +2358,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1022, "time": 0.2045728038507822, @@ -2381,7 +2381,7 @@ }, { "lineGroupId": 36, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1046, "time": 0.20938628158844766, @@ -2404,7 +2404,7 @@ }, { "lineGroupId": 36, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1082, "time": 0.21660649819494585, @@ -2427,10 +2427,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1010, - "time": 0.20216606498194944, + "time": 0.20216606498194947, "position": { "x": 7, "y": 0 @@ -2450,7 +2450,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1022, "time": 0.2045728038507822, @@ -2473,7 +2473,7 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1046, "time": 0.20938628158844766, @@ -2496,7 +2496,7 @@ }, { "lineGroupId": 37, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1082, "time": 0.21660649819494585, @@ -2519,10 +2519,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, - "time": 0.23104693140794222, + "time": 0.23104693140794225, "position": { "x": 7, "y": 0 @@ -2544,10 +2544,10 @@ "lineGroupId": 43, "indexInLine": 2, "isSliding": false, - "noteOrder": 1178, - "time": 0.2358604091456077, + "noteOrder": 1166, + "time": 0.23345367027677497, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2564,13 +2564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1202, - "time": 0.24067388688327315, + "noteOrder": 1166, + "time": 0.23345367027677497, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2582,16 +2582,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 2, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1226, - "time": 0.24548736462093865, + "noteOrder": 1178, + "time": 0.2358604091456077, "position": { "x": 6, "y": 0 @@ -2605,16 +2605,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.2503008423586041, + "noteOrder": 1203, + "time": 0.24067388688327315, "position": { "x": 7, "y": 0 @@ -2628,18 +2628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 45, "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.25511432009626955, + "noteOrder": 1215, + "time": 0.2430806257521059, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2651,18 +2651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1298, - "time": 0.25992779783393505, + "noteOrder": 1215, + "time": 0.2430806257521059, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2679,11 +2679,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1322, - "time": 0.2647412755716005, + "noteOrder": 1227, + "time": 0.24548736462093862, "position": { "x": 6, "y": 0 @@ -2702,11 +2702,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.2695547533092659, + "noteOrder": 1251, + "time": 0.2503008423586041, "position": { "x": 7, "y": 0 @@ -2725,11 +2725,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.2743682310469314, + "noteOrder": 1263, + "time": 0.2527075812274368, "position": { "x": 7, "y": 0 @@ -2743,18 +2743,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1394, - "time": 0.27918170878459686, + "noteOrder": 1263, + "time": 0.2527075812274368, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2771,13 +2771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1442, - "time": 0.2888086642599278, + "noteOrder": 1275, + "time": 0.25511432009626955, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2789,16 +2789,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, - "time": 0.2936221419975933, + "noteOrder": 1299, + "time": 0.259927797833935, "position": { "x": 7, "y": 0 @@ -2812,18 +2812,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.29843561973525873, + "noteOrder": 1311, + "time": 0.26233453670276774, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2840,13 +2840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1539, - "time": 0.30806257521058966, + "noteOrder": 1311, + "time": 0.26233453670276774, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2863,13 +2863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1515, - "time": 0.3032490974729242, + "noteOrder": 1323, + "time": 0.2647412755716005, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2881,16 +2881,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 1539, - "time": 0.30806257521058966, + "noteOrder": 1347, + "time": 0.2695547533092659, "position": { "x": 7, "y": 0 @@ -2909,11 +2909,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.3273164861612515, + "noteOrder": 1359, + "time": 0.2719614921780987, "position": { "x": 7, "y": 0 @@ -2932,13 +2932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1683, - "time": 0.33694344163658246, + "noteOrder": 1359, + "time": 0.2719614921780987, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2955,13 +2955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1731, - "time": 0.34657039711191334, + "noteOrder": 1371, + "time": 0.27436823104693137, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2973,18 +2973,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1779, - "time": 0.3561973525872443, + "noteOrder": 1371, + "time": 0.27436823104693137, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2996,18 +2996,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1827, - "time": 0.3658243080625752, + "noteOrder": 1371, + "time": 0.27436823104693137, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3019,18 +3019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.3850782190132371, + "noteOrder": 1383, + "time": 0.27677496991576417, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3042,18 +3042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1923, - "time": 0.3850782190132371, + "noteOrder": 1383, + "time": 0.27677496991576417, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3070,13 +3070,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2019, - "time": 0.4043321299638989, + "noteOrder": 1395, + "time": 0.27918170878459686, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3093,13 +3093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2019, - "time": 0.4043321299638989, + "noteOrder": 1395, + "time": 0.27918170878459686, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3111,16 +3111,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.4091456077015644, + "noteOrder": 1395, + "time": 0.27918170878459686, "position": { "x": 7, "y": 0 @@ -3139,13 +3139,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.4139590854392299, + "noteOrder": 1407, + "time": 0.2815884476534296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3157,18 +3157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2091, - "time": 0.4187725631768953, + "noteOrder": 1407, + "time": 0.2815884476534296, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3180,18 +3180,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2284, - "time": 0.45728038507821905, + "noteOrder": 1419, + "time": 0.28399518652226236, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3203,18 +3203,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2308, - "time": 0.46209386281588444, + "noteOrder": 1419, + "time": 0.28399518652226236, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3226,18 +3226,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.45728038507821905, + "noteOrder": 1443, + "time": 0.2888086642599278, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3249,18 +3249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, - "time": 0.46209386281588444, + "noteOrder": 1455, + "time": 0.29121540312876054, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3272,18 +3272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2404, - "time": 0.4813477737665463, + "noteOrder": 1455, + "time": 0.29121540312876054, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3300,13 +3300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 2428, - "time": 0.4861612515042118, + "noteOrder": 1467, + "time": 0.29362214199759323, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3318,18 +3318,1283 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.296028880866426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.296028880866426, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.29843561973525873, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1539, + "time": 0.30806257521058966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1515, + "time": 0.30324909747292417, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1539, + "time": 0.30806257521058966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.3273164861612515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1684, + "time": 0.33694344163658246, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1732, + "time": 0.34657039711191334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1780, + "time": 0.3561973525872443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.3658243080625752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1924, + "time": 0.385078219013237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1924, + "time": 0.385078219013237, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2020, + "time": 0.40433212996389895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.40433212996389895, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.4091456077015644, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.4139590854392298, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2092, + "time": 0.4187725631768953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2285, + "time": 0.45728038507821905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2309, + "time": 0.4620938628158845, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2285, + "time": 0.45728038507821905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2309, + "time": 0.4620938628158845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4813477737665463, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2429, + "time": 0.4861612515042118, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2501, + "time": 0.5006016847172082, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.5006016847172082, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2525, + "time": 0.5054151624548736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2597, + "time": 0.51985559566787, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.51985559566787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2609, + "time": 0.5222623345367028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2609, + "time": 0.5222623345367028, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2621, + "time": 0.5246690734055355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2634, + "time": 0.5270758122743682, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2634, + "time": 0.5270758122743682, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2646, + "time": 0.529482551143201, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.5318892900120337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2658, + "time": 0.5318892900120337, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2670, + "time": 0.5342960288808664, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2682, + "time": 0.5367027677496992, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2682, + "time": 0.5367027677496992, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2694, + "time": 0.5391095066185319, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2718, + "time": 0.5439229843561973, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2742, + "time": 0.5487364620938627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2766, + "time": 0.5535499398315283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5583634175691937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5776173285198556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5776173285198556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5968712394705175, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.6161251504211793, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3090, + "time": 0.6185318892900119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3090, + "time": 0.6185318892900119, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3103, + "time": 0.6209386281588447, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3115, + "time": 0.6233453670276775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3115, + "time": 0.6233453670276775, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3127, + "time": 0.6257521058965102, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.5006016847172082, + "noteOrder": 3139, + "time": 0.628158844765343, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3346,13 +4611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2500, - "time": 0.5006016847172082, + "noteOrder": 3139, + "time": 0.628158844765343, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3364,16 +4629,62 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3151, + "time": 0.6305655836341757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3151, + "time": 0.6305655836341757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 2524, - "time": 0.5054151624548737, + "noteOrder": 3367, + "time": 0.6738868832731649, "position": { "x": 7, "y": 0 @@ -3392,13 +4703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 133, "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.5198555956678701, + "noteOrder": 3391, + "time": 0.6787003610108302, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3415,11 +4726,34 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6835138387484958, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.5198555956678701, + "noteOrder": 3439, + "time": 0.6883273164861613, "position": { "x": 3, "y": 0 @@ -3438,11 +4772,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.5246690734055355, + "noteOrder": 3463, + "time": 0.6931407942238267, "position": { "x": 7, "y": 0 @@ -3461,11 +4795,34 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2644, - "time": 0.529482551143201, + "noteOrder": 3559, + "time": 0.7123947051744886, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7509025270758123, "position": { "x": 3, "y": 0 @@ -3484,11 +4841,34 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3776, + "time": 0.7557160048134777, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2668, - "time": 0.5342960288808665, + "noteOrder": 3800, + "time": 0.7605294825511432, "position": { "x": 7, "y": 0 @@ -3507,13 +4887,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.5391095066185319, + "noteOrder": 3824, + "time": 0.7653429602888087, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3525,18 +4905,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 2716, - "time": 0.5439229843561973, + "noteOrder": 3872, + "time": 0.7749699157641395, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3553,13 +4933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2741, - "time": 0.5487364620938628, + "noteOrder": 3908, + "time": 0.7821901323706377, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3571,18 +4951,64 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3932, + "time": 0.7870036101083032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7942238267148015, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 2765, - "time": 0.5535499398315282, + "noteOrder": 3896, + "time": 0.779783393501805, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3599,13 +5025,59 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2789, - "time": 0.5583634175691937, + "noteOrder": 3908, + "time": 0.7821901323706377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3932, + "time": 0.7870036101083032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3968, + "time": 0.7942238267148015, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3617,16 +5089,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, + "lineGroupId": 164, "indexInLine": 1, "isSliding": false, - "noteOrder": 2885, - "time": 0.5776173285198556, + "noteOrder": 4040, + "time": 0.8086642599277979, "position": { "x": 3, "y": 0 @@ -3645,13 +5117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5776173285198556, + "noteOrder": 4053, + "time": 0.8110709987966306, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3663,18 +5135,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2981, - "time": 0.5968712394705175, + "noteOrder": 4053, + "time": 0.8110709987966306, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3686,18 +5158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3077, - "time": 0.6161251504211793, + "noteOrder": 4065, + "time": 0.8134777376654633, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3714,13 +5186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3101, - "time": 0.6209386281588447, + "noteOrder": 4089, + "time": 0.8182912154031288, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3737,11 +5209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3125, - "time": 0.6257521058965102, + "noteOrder": 4101, + "time": 0.8206979542719615, "position": { "x": 3, "y": 0 @@ -3755,18 +5227,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3366, - "time": 0.6738868832731649, + "noteOrder": 4101, + "time": 0.8206979542719615, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3783,13 +5255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3390, - "time": 0.6787003610108304, + "noteOrder": 4113, + "time": 0.8231046931407943, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3806,11 +5278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3414, - "time": 0.6835138387484958, + "noteOrder": 4137, + "time": 0.8279181708784596, "position": { "x": 3, "y": 0 @@ -3829,11 +5301,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3438, - "time": 0.6883273164861612, + "noteOrder": 4149, + "time": 0.8303249097472923, "position": { "x": 3, "y": 0 @@ -3852,13 +5324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3462, - "time": 0.6931407942238267, + "noteOrder": 4149, + "time": 0.8303249097472923, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3870,18 +5342,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3558, - "time": 0.7123947051744886, + "noteOrder": 4161, + "time": 0.8327316486161251, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3893,16 +5365,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3750, - "time": 0.7509025270758123, + "noteOrder": 4185, + "time": 0.8375451263537906, "position": { "x": 3, "y": 0 @@ -3916,16 +5388,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3774, - "time": 0.7557160048134778, + "noteOrder": 4197, + "time": 0.8399518652226233, "position": { "x": 3, "y": 0 @@ -3939,18 +5411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3798, - "time": 0.7605294825511433, + "noteOrder": 4197, + "time": 0.8399518652226233, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3967,13 +5439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3822, - "time": 0.7653429602888088, + "noteOrder": 4209, + "time": 0.842358604091456, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3990,13 +5462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3870, - "time": 0.7749699157641395, + "noteOrder": 4233, + "time": 0.8471720818291215, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4013,13 +5485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3906, - "time": 0.7821901323706378, + "noteOrder": 4245, + "time": 0.8495788206979542, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4036,13 +5508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 2, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3931, - "time": 0.7870036101083032, + "noteOrder": 4245, + "time": 0.8495788206979542, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4059,13 +5531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 3, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3967, - "time": 0.7942238267148015, + "noteOrder": 4257, + "time": 0.851985559566787, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4082,13 +5554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3894, - "time": 0.779783393501805, + "noteOrder": 4257, + "time": 0.851985559566787, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4100,16 +5572,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 3906, - "time": 0.7821901323706378, + "noteOrder": 4257, + "time": 0.851985559566787, "position": { "x": 3, "y": 0 @@ -4128,13 +5600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 173, "indexInLine": 2, "isSliding": false, - "noteOrder": 3931, - "time": 0.7870036101083032, + "noteOrder": 4269, + "time": 0.8543922984356198, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4151,13 +5623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 173, "indexInLine": 3, "isSliding": false, - "noteOrder": 3967, - "time": 0.7942238267148015, + "noteOrder": 4269, + "time": 0.8543922984356198, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4174,13 +5646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4039, - "time": 0.8086642599277978, + "noteOrder": 4281, + "time": 0.8567990373044524, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4192,18 +5664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 2, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4063, - "time": 0.8134777376654633, + "noteOrder": 4281, + "time": 0.8567990373044524, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4215,16 +5687,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, - "time": 0.8182912154031288, + "noteOrder": 4281, + "time": 0.8567990373044524, "position": { "x": 3, "y": 0 @@ -4238,18 +5710,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 174, "indexInLine": 2, "isSliding": false, - "noteOrder": 4111, - "time": 0.8231046931407943, + "noteOrder": 4293, + "time": 0.8592057761732852, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4261,18 +5733,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4135, - "time": 0.8279181708784598, + "noteOrder": 4293, + "time": 0.8592057761732852, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4289,11 +5761,11 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 2, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4159, - "time": 0.8327316486161251, + "noteOrder": 4305, + "time": 0.8616125150421179, "position": { "x": 4, "y": 0 @@ -4312,11 +5784,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4183, - "time": 0.8375451263537906, + "noteOrder": 4305, + "time": 0.8616125150421179, "position": { "x": 3, "y": 0 @@ -4330,18 +5802,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 2, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4207, - "time": 0.8423586040914561, + "noteOrder": 4329, + "time": 0.8664259927797834, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4358,13 +5830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4231, - "time": 0.8471720818291215, + "noteOrder": 4341, + "time": 0.8688327316486162, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4376,18 +5848,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4255, - "time": 0.851985559566787, + "noteOrder": 4341, + "time": 0.8688327316486162, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4404,11 +5876,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4279, - "time": 0.8567990373044525, + "noteOrder": 4353, + "time": 0.8712394705174488, "position": { "x": 3, "y": 0 @@ -4427,13 +5899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.8664259927797834, + "noteOrder": 4365, + "time": 0.8736462093862816, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4445,18 +5917,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4351, - "time": 0.8712394705174489, + "noteOrder": 4365, + "time": 0.8736462093862816, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4474,10 +5946,10 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, - "time": 0.8760529482551144, + "noteOrder": 4377, + "time": 0.8760529482551143, "position": { "x": 7, "y": 0 @@ -4497,10 +5969,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4399, - "time": 0.8808664259927799, + "noteOrder": 4401, + "time": 0.8808664259927798, "position": { "x": 7, "y": 0 @@ -4520,10 +5992,10 @@ }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4399, - "time": 0.8808664259927799, + "noteOrder": 4401, + "time": 0.8808664259927798, "position": { "x": 3, "y": 0 @@ -4543,10 +6015,10 @@ }, { "lineGroupId": 179, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.8856799037304454, + "noteOrder": 4425, + "time": 0.8856799037304453, "position": { "x": 3, "y": 0 @@ -4566,10 +6038,10 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.8856799037304454, + "noteOrder": 4425, + "time": 0.8856799037304453, "position": { "x": 7, "y": 0 @@ -4589,10 +6061,10 @@ }, { "lineGroupId": 180, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4447, - "time": 0.8904933814681107, + "noteOrder": 4449, + "time": 0.8904933814681106, "position": { "x": 7, "y": 0 @@ -4612,10 +6084,10 @@ }, { "lineGroupId": 180, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4519, - "time": 0.9049338146811071, + "noteOrder": 4521, + "time": 0.904933814681107, "position": { "x": 4, "y": 0 @@ -4635,10 +6107,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.9049338146811071, + "noteOrder": 4521, + "time": 0.904933814681107, "position": { "x": 3, "y": 0 @@ -4658,10 +6130,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4544, - "time": 0.9097472924187726, + "noteOrder": 4546, + "time": 0.9097472924187725, "position": { "x": 3, "y": 0 @@ -4681,9 +6153,9 @@ }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4568, + "noteOrder": 4570, "time": 0.9145607701564381, "position": { "x": 7, @@ -4704,10 +6176,10 @@ }, { "lineGroupId": 186, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4592, - "time": 0.9193742478941036, + "noteOrder": 4594, + "time": 0.9193742478941035, "position": { "x": 7, "y": 0 @@ -4727,10 +6199,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, - "time": 0.9241877256317689, + "noteOrder": 4618, + "time": 0.924187725631769, "position": { "x": 3, "y": 0 @@ -4750,10 +6222,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4640, - "time": 0.9290012033694344, + "noteOrder": 4642, + "time": 0.9290012033694345, "position": { "x": 3, "y": 0 @@ -4773,9 +6245,9 @@ }, { "lineGroupId": 188, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9434416365824309, "position": { "x": 6, @@ -4796,9 +6268,9 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4784, + "noteOrder": 4786, "time": 0.9578820697954272, "position": { "x": 7, @@ -4819,9 +6291,9 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4808, + "noteOrder": 4810, "time": 0.9626955475330926, "position": { "x": 7, @@ -4842,9 +6314,9 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4784, + "noteOrder": 4786, "time": 0.9578820697954272, "position": { "x": 3, @@ -4865,9 +6337,9 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4808, + "noteOrder": 4810, "time": 0.9626955475330926, "position": { "x": 3, diff --git a/tracks/Twilight/283_difficulty_1b.json b/tracks/Twilight/283_difficulty_1b.json index 0b161de1..f02de2d3 100644 --- a/tracks/Twilight/283_difficulty_1b.json +++ b/tracks/Twilight/283_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 577, - "time": 0.11552346570397111, + "time": 0.11552346570397112, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 649, - "time": 0.12996389891696752, + "time": 0.1299638989169675, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 962, - "time": 0.19253910950661854, + "time": 0.1925391095066185, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 986, - "time": 0.197352587244284, + "time": 0.19735258724428398, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 1106, - "time": 0.22141997593261134, + "time": 0.2214199759326113, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1106, - "time": 0.22141997593261134, + "time": 0.2214199759326113, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 1130, - "time": 0.22623345367027678, + "time": 0.22623345367027675, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 1130, - "time": 0.22623345367027678, + "time": 0.22623345367027675, "position": { "x": 7, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.2888086642599278, "position": { "x": 7, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1466, - "time": 0.2936221419975933, + "noteOrder": 1467, + "time": 0.29362214199759323, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.29843561973525873, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.29843561973525873, "position": { "x": 4, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1683, + "noteOrder": 1684, "time": 0.33694344163658246, "position": { "x": 3, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.34657039711191334, "position": { "x": 6, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.3561973525872443, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.3658243080625752, "position": { "x": 7, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1923, - "time": 0.3850782190132371, + "noteOrder": 1924, + "time": 0.385078219013237, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2019, - "time": 0.4043321299638989, + "noteOrder": 2020, + "time": 0.40433212996389895, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.4091456077015644, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2067, - "time": 0.4139590854392299, + "noteOrder": 2068, + "time": 0.4139590854392298, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.4187725631768953, "position": { "x": 4, @@ -514,7 +514,7 @@ }, { "noteOrder": 2140, - "time": 0.42839951865222625, + "time": 0.4283995186522262, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2212, - "time": 0.4428399518652227, + "noteOrder": 2213, + "time": 0.4428399518652226, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.46209386281588444, + "noteOrder": 2309, + "time": 0.4620938628158845, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2404, + "noteOrder": 2405, "time": 0.4813477737665463, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.4861612515042118, "position": { "x": 4, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.4909747292418773, + "noteOrder": 2453, + "time": 0.49097472924187724, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.49578820697954273, + "noteOrder": 2477, + "time": 0.4957882069795427, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.5006016847172082, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2524, - "time": 0.5054151624548737, + "noteOrder": 2525, + "time": 0.5054151624548736, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.5102286401925391, "position": { "x": 4, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.5150421179302046, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2596, - "time": 0.5198555956678701, + "noteOrder": 2597, + "time": 0.51985559566787, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.5246690734055355, "position": { "x": 7, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2646, "time": 0.529482551143201, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.5342960288808665, + "noteOrder": 2670, + "time": 0.5342960288808664, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2692, + "noteOrder": 2694, "time": 0.5391095066185319, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2718, "time": 0.5439229843561973, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2741, - "time": 0.5487364620938628, + "noteOrder": 2742, + "time": 0.5487364620938627, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2765, - "time": 0.5535499398315282, + "noteOrder": 2766, + "time": 0.5535499398315283, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.5631768953068592, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2837, - "time": 0.5679903730445246, + "noteOrder": 2838, + "time": 0.5679903730445247, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5728038507821901, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.5824308062575211, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5872442839951866, + "noteOrder": 2934, + "time": 0.5872442839951865, "position": { "x": 5, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.592057761732852, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.5968712394705175, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.601684717208183, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.6064981949458484, + "noteOrder": 3030, + "time": 0.6064981949458483, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.6113116726835138, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.6161251504211793, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3103, "time": 0.6209386281588447, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.6257521058965102, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.6257521058965102, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6305655836341757, "position": { "x": 8, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6305655836341757, "position": { "x": 3, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.6931407942238267, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3486, + "noteOrder": 3487, "time": 0.6979542719614922, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.7027677496991577, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.7075812274368232, + "noteOrder": 3535, + "time": 0.7075812274368231, "position": { "x": 3, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3846, - "time": 0.7701564380264742, + "noteOrder": 3848, + "time": 0.770156438026474, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 3872, "time": 0.7749699157641395, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.799037304452467, + "noteOrder": 3992, + "time": 0.7990373044524668, "position": { "x": 6, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.799037304452467, + "noteOrder": 3992, + "time": 0.7990373044524668, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8038507821901323, + "noteOrder": 4016, + "time": 0.8038507821901324, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8038507821901323, + "noteOrder": 4016, + "time": 0.8038507821901324, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.8664259927797834, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4351, - "time": 0.8712394705174489, + "noteOrder": 4353, + "time": 0.8712394705174488, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.8760529482551144, + "noteOrder": 4377, + "time": 0.8760529482551143, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.8760529482551144, + "noteOrder": 4377, + "time": 0.8760529482551143, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.8808664259927799, + "noteOrder": 4401, + "time": 0.8808664259927798, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.8808664259927799, + "noteOrder": 4401, + "time": 0.8808664259927798, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.8904933814681107, + "noteOrder": 4449, + "time": 0.8904933814681106, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4473, "time": 0.8953068592057761, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4497, "time": 0.9001203369434416, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4519, - "time": 0.9049338146811071, + "noteOrder": 4521, + "time": 0.904933814681107, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4544, - "time": 0.9097472924187726, + "noteOrder": 4546, + "time": 0.9097472924187725, "position": { "x": 4, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4568, + "noteOrder": 4570, "time": 0.9145607701564381, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4592, - "time": 0.9193742478941036, + "noteOrder": 4594, + "time": 0.9193742478941035, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4640, - "time": 0.9290012033694344, + "noteOrder": 4642, + "time": 0.9290012033694345, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.9338146811070999, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4688, + "noteOrder": 4690, "time": 0.9386281588447654, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9434416365824309, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.9482551143200963, + "noteOrder": 4738, + "time": 0.9482551143200962, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.9530685920577617, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4784, + "noteOrder": 4786, "time": 0.9578820697954272, "position": { "x": 7, @@ -1816,7 +1816,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.019253910950661854, @@ -1839,10 +1839,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 288, - "time": 0.057761732851985555, + "noteOrder": 289, + "time": 0.05776173285198556, "position": { "x": 3, "y": 0 @@ -1862,10 +1862,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.057761732851985555, + "noteOrder": 289, + "time": 0.05776173285198556, "position": { "x": 7, "y": 0 @@ -1885,7 +1885,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.06738868832731648, @@ -1908,7 +1908,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.07701564380264742, @@ -1931,7 +1931,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, "time": 0.08664259927797834, @@ -1954,10 +1954,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.09626955475330927, + "time": 0.09626955475330926, "position": { "x": 7, "y": 0 @@ -1977,7 +1977,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.10589651022864019, @@ -2000,10 +2000,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.09626955475330927, + "time": 0.09626955475330926, "position": { "x": 3, "y": 0 @@ -2023,7 +2023,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, "time": 0.10589651022864019, @@ -2046,7 +2046,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.13477737665463296, @@ -2069,9 +2069,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 721, + "noteOrder": 722, "time": 0.1444043321299639, "position": { "x": 3, @@ -2092,9 +2092,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 769, + "noteOrder": 770, "time": 0.15403128760529483, "position": { "x": 7, @@ -2115,9 +2115,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.16365824308062574, "position": { "x": 7, @@ -2138,9 +2138,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.17328519855595667, "position": { "x": 3, @@ -2161,7 +2161,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 914, "time": 0.1829121540312876, @@ -2184,9 +2184,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.17328519855595667, "position": { "x": 7, @@ -2207,7 +2207,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 914, "time": 0.1829121540312876, @@ -2230,10 +2230,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1010, - "time": 0.20216606498194944, + "time": 0.20216606498194947, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, "time": 0.21179302045728038, @@ -2276,10 +2276,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1010, - "time": 0.20216606498194944, + "time": 0.20216606498194947, "position": { "x": 6, "y": 0 @@ -2299,7 +2299,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, "time": 0.21179302045728038, @@ -2322,10 +2322,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, - "time": 0.23104693140794222, + "time": 0.23104693140794225, "position": { "x": 7, "y": 0 @@ -2344,11 +2344,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1202, - "time": 0.24067388688327315, + "noteOrder": 1178, + "time": 0.2358604091456077, "position": { "x": 7, "y": 0 @@ -2362,18 +2362,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1250, - "time": 0.2503008423586041, + "noteOrder": 1178, + "time": 0.2358604091456077, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2390,13 +2390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1298, - "time": 0.25992779783393505, + "noteOrder": 1203, + "time": 0.24067388688327315, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2408,18 +2408,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1346, - "time": 0.2695547533092659, + "noteOrder": 1203, + "time": 0.24067388688327315, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2436,13 +2436,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, - "time": 0.27918170878459686, + "noteOrder": 1203, + "time": 0.24067388688327315, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2459,11 +2459,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1515, - "time": 0.3032490974729242, + "noteOrder": 1227, + "time": 0.24548736462093862, "position": { "x": 7, "y": 0 @@ -2477,18 +2477,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1539, - "time": 0.30806257521058966, + "noteOrder": 1227, + "time": 0.24548736462093862, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2500,18 +2500,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1515, - "time": 0.3032490974729242, + "noteOrder": 1251, + "time": 0.2503008423586041, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2528,13 +2528,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1539, - "time": 0.30806257521058966, + "noteOrder": 1251, + "time": 0.2503008423586041, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2551,13 +2551,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1851, - "time": 0.37063778580024065, + "noteOrder": 1251, + "time": 0.2503008423586041, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2574,11 +2574,34 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1275, + "time": 0.25511432009626955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1899, - "time": 0.38026474127557164, + "noteOrder": 1275, + "time": 0.25511432009626955, "position": { "x": 6, "y": 0 @@ -2597,13 +2620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1947, - "time": 0.3898916967509025, + "noteOrder": 1299, + "time": 0.259927797833935, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2615,18 +2638,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1995, - "time": 0.3995186522262335, + "noteOrder": 1299, + "time": 0.259927797833935, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2638,18 +2661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2164, - "time": 0.4332129963898917, + "noteOrder": 1299, + "time": 0.259927797833935, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2666,13 +2689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2188, - "time": 0.4380264741275572, + "noteOrder": 1323, + "time": 0.2647412755716005, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2689,11 +2712,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.4332129963898917, + "noteOrder": 1323, + "time": 0.2647412755716005, "position": { "x": 6, "y": 0 @@ -2707,16 +2730,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2188, - "time": 0.4380264741275572, + "noteOrder": 1347, + "time": 0.2695547533092659, "position": { "x": 6, "y": 0 @@ -2730,18 +2753,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2236, - "time": 0.44765342960288806, + "noteOrder": 1347, + "time": 0.2695547533092659, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2758,13 +2781,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, + "lineGroupId": 33, "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.45728038507821905, + "noteOrder": 1347, + "time": 0.2695547533092659, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2776,18 +2799,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2332, - "time": 0.46690734055354993, + "noteOrder": 1371, + "time": 0.27436823104693137, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2804,11 +2827,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2380, - "time": 0.47653429602888087, + "noteOrder": 1371, + "time": 0.27436823104693137, "position": { "x": 6, "y": 0 @@ -2827,11 +2850,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2789, - "time": 0.5583634175691937, + "noteOrder": 1395, + "time": 0.27918170878459686, "position": { "x": 3, "y": 0 @@ -2850,11 +2873,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5776173285198556, + "noteOrder": 1419, + "time": 0.28399518652226236, "position": { "x": 3, "y": 0 @@ -2873,13 +2896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2885, - "time": 0.5776173285198556, + "noteOrder": 1419, + "time": 0.28399518652226236, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2891,16 +2914,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 39, "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, - "time": 0.5968712394705175, + "noteOrder": 1515, + "time": 0.30324909747292417, "position": { "x": 7, "y": 0 @@ -2919,13 +2942,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, - "time": 0.6353790613718412, + "noteOrder": 1539, + "time": 0.30806257521058966, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2937,16 +2960,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, - "time": 0.6450060168471722, + "noteOrder": 1515, + "time": 0.30324909747292417, "position": { "x": 3, "y": 0 @@ -2965,13 +2988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3269, - "time": 0.654632972322503, + "noteOrder": 1539, + "time": 0.30806257521058966, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2983,18 +3006,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.6642599277978339, + "noteOrder": 1852, + "time": 0.37063778580024065, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3011,13 +3034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.6738868832731649, + "noteOrder": 1900, + "time": 0.3802647412755716, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3034,13 +3057,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 3414, - "time": 0.6835138387484958, + "noteOrder": 1948, + "time": 0.3898916967509025, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3052,18 +3075,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.6738868832731649, + "noteOrder": 1996, + "time": 0.3995186522262334, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3080,13 +3103,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 3414, - "time": 0.6835138387484958, + "noteOrder": 2165, + "time": 0.4332129963898917, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3103,13 +3126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.7123947051744886, + "noteOrder": 2189, + "time": 0.43802647412755713, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3121,18 +3144,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.7220216606498195, + "noteOrder": 2165, + "time": 0.4332129963898917, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3149,13 +3172,703 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3654, - "time": 0.7316486161251504, + "noteOrder": 2189, + "time": 0.43802647412755713, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2237, + "time": 0.44765342960288806, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2285, + "time": 0.45728038507821905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2333, + "time": 0.46690734055354993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2381, + "time": 0.47653429602888087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5583634175691937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5776173285198556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5776173285198556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2982, + "time": 0.5968712394705175, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.6353790613718411, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6450060168471721, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.654632972322503, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3319, + "time": 0.6642599277978338, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.6738868832731649, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6835138387484958, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.6738868832731649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6835138387484958, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.7123947051744886, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7220216606498195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.7316486161251504, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7412755716004813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7509025270758123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3800, + "time": 0.7605294825511432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7509025270758123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3800, + "time": 0.7605294825511432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.779783393501805, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7894103489771359, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3896, + "time": 0.779783393501805, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7894103489771359, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4040, + "time": 0.8086642599277979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4065, + "time": 0.8134777376654633, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3172,13 +3885,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3702, - "time": 0.7412755716004813, + "noteOrder": 4065, + "time": 0.8134777376654633, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3195,13 +3908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3750, - "time": 0.7509025270758123, + "noteOrder": 4089, + "time": 0.8182912154031288, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3218,11 +3931,34 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4089, + "time": 0.8182912154031288, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.7605294825511433, + "noteOrder": 4089, + "time": 0.8182912154031288, "position": { "x": 3, "y": 0 @@ -3236,18 +3972,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3750, - "time": 0.7509025270758123, + "noteOrder": 4113, + "time": 0.8231046931407943, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3264,13 +4000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3798, - "time": 0.7605294825511433, + "noteOrder": 4113, + "time": 0.8231046931407943, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3287,13 +4023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3894, - "time": 0.779783393501805, + "noteOrder": 4137, + "time": 0.8279181708784596, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3310,13 +4046,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3943, - "time": 0.789410348977136, + "noteOrder": 4137, + "time": 0.8279181708784596, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3333,11 +4069,57 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.779783393501805, + "noteOrder": 4137, + "time": 0.8279181708784596, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4161, + "time": 0.8327316486161251, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4161, + "time": 0.8327316486161251, "position": { "x": 4, "y": 0 @@ -3356,11 +4138,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 125, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3943, - "time": 0.789410348977136, + "noteOrder": 4185, + "time": 0.8375451263537906, "position": { "x": 4, "y": 0 @@ -3379,13 +4161,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4039, - "time": 0.8086642599277978, + "noteOrder": 4185, + "time": 0.8375451263537906, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3402,11 +4184,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, - "time": 0.8182912154031288, + "noteOrder": 4185, + "time": 0.8375451263537906, "position": { "x": 3, "y": 0 @@ -3425,11 +4207,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4135, - "time": 0.8279181708784598, + "noteOrder": 4209, + "time": 0.842358604091456, "position": { "x": 3, "y": 0 @@ -3443,18 +4225,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4183, - "time": 0.8375451263537906, + "noteOrder": 4209, + "time": 0.842358604091456, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4233, + "time": 0.8471720818291215, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4233, + "time": 0.8471720818291215, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -3472,9 +4300,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4231, + "noteOrder": 4233, "time": 0.8471720818291215, "position": { "x": 3, @@ -3493,12 +4321,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4257, + "time": 0.851985559566787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4257, + "time": 0.851985559566787, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4279, - "time": 0.8567990373044525, + "noteOrder": 4281, + "time": 0.8567990373044524, "position": { "x": 7, "y": 0 @@ -3517,11 +4391,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.8856799037304454, + "noteOrder": 4305, + "time": 0.8616125150421179, "position": { "x": 7, "y": 0 @@ -3539,12 +4413,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4305, + "time": 0.8616125150421179, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, - "time": 0.9049338146811071, + "noteOrder": 4425, + "time": 0.8856799037304453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4521, + "time": 0.904933814681107, "position": { "x": 7, "y": 0 @@ -3564,10 +4484,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, - "time": 0.9241877256317689, + "noteOrder": 4618, + "time": 0.924187725631769, "position": { "x": 3, "y": 0 @@ -3587,9 +4507,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.9434416365824309, "position": { "x": 3, diff --git a/tracks/Twilight/info.json b/tracks/Twilight/info.json index 3510689d..a08cd1a4 100644 --- a/tracks/Twilight/info.json +++ b/tracks/Twilight/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Twilight", - "SongLength": "116.715102", + "SongLength": "106.762449", "SongAuthorName": "ONEUS", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/VOLAQUAS/380_difficulty_1a.json b/tracks/VOLAQUAS/380_difficulty_1a.json index 7145ba10..2dda39e4 100644 --- a/tracks/VOLAQUAS/380_difficulty_1a.json +++ b/tracks/VOLAQUAS/380_difficulty_1a.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 553, + "noteOrder": 554, "time": 0.10109890109890109, "position": { "x": 7, @@ -54,7 +54,7 @@ }, { "noteOrder": 698, - "time": 0.1274725274725275, + "time": 0.12747252747252746, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 722, - "time": 0.13186813186813187, + "time": 0.13186813186813184, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 794, - "time": 0.14505494505494507, + "time": 0.14505494505494504, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 818, - "time": 0.14945054945054947, + "time": 0.14945054945054945, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 842, - "time": 0.15384615384615385, + "time": 0.15384615384615383, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 854, - "time": 0.15604395604395604, + "time": 0.15604395604395602, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1155, - "time": 0.210989010989011, + "time": 0.21098901098901096, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1179, - "time": 0.21538461538461537, + "time": 0.2153846153846154, "position": { "x": 3, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1215, + "noteOrder": 1216, "time": 0.22197802197802197, "position": { "x": 5, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1239, - "time": 0.22637362637362637, + "noteOrder": 1240, + "time": 0.22637362637362635, "position": { "x": 5, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1371, + "noteOrder": 1372, "time": 0.25054945054945055, "position": { "x": 3, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.2857142857142857, "position": { "x": 7, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1576, - "time": 0.28791208791208794, + "noteOrder": 1577, + "time": 0.2879120879120879, "position": { "x": 3, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1684, - "time": 0.3076923076923077, + "noteOrder": 1685, + "time": 0.30769230769230765, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1732, - "time": 0.3164835164835165, + "noteOrder": 1733, + "time": 0.31648351648351647, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1781, - "time": 0.3252747252747253, + "time": 0.32527472527472523, "position": { "x": 7, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1829, - "time": 0.3340659340659341, + "time": 0.33406593406593404, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1901, + "noteOrder": 1902, "time": 0.34725274725274724, "position": { "x": 2, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1925, - "time": 0.3516483516483517, + "noteOrder": 1926, + "time": 0.3516483516483516, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1937, + "noteOrder": 1938, "time": 0.3538461538461538, "position": { "x": 5, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1949, - "time": 0.35604395604395606, + "noteOrder": 1950, + "time": 0.356043956043956, "position": { "x": 8, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2045, - "time": 0.37362637362637363, + "noteOrder": 2046, + "time": 0.3736263736263736, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2057, + "noteOrder": 2058, "time": 0.3758241758241758, "position": { "x": 5, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2262, + "noteOrder": 2263, "time": 0.41318681318681316, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2286, - "time": 0.4175824175824176, + "noteOrder": 2287, + "time": 0.41758241758241754, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2310, - "time": 0.421978021978022, + "noteOrder": 2311, + "time": 0.4219780219780219, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2358, - "time": 0.43076923076923074, + "noteOrder": 2359, + "time": 0.4307692307692308, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2382, + "noteOrder": 2383, "time": 0.4351648351648352, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2406, + "noteOrder": 2407, "time": 0.43956043956043955, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2430, + "noteOrder": 2431, "time": 0.44395604395604393, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2478, - "time": 0.45274725274725275, + "noteOrder": 2479, + "time": 0.4527472527472527, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.45714285714285713, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2526, - "time": 0.46153846153846156, + "noteOrder": 2527, + "time": 0.4615384615384615, "position": { "x": 6, "y": 0 @@ -934,7 +934,7 @@ }, { "noteOrder": 2575, - "time": 0.4703296703296703, + "time": 0.47032967032967027, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2599, - "time": 0.4747252747252747, + "noteOrder": 2600, + "time": 0.47472527472527465, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2623, + "noteOrder": 2624, "time": 0.47912087912087914, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2671, + "noteOrder": 2672, "time": 0.4879120879120879, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2695, + "noteOrder": 2696, "time": 0.4923076923076923, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2719, + "noteOrder": 2720, "time": 0.49670329670329666, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.5054945054945055, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2791, - "time": 0.50989010989011, + "noteOrder": 2792, + "time": 0.5098901098901099, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2815, + "noteOrder": 2816, "time": 0.5142857142857142, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2863, - "time": 0.5230769230769231, + "noteOrder": 2864, + "time": 0.523076923076923, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2875, + "noteOrder": 2876, "time": 0.5252747252747253, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.5406593406593406, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2972, + "noteOrder": 2973, "time": 0.5428571428571428, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3056, + "noteOrder": 3057, "time": 0.5582417582417583, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3068, + "noteOrder": 3069, "time": 0.5604395604395604, "position": { "x": 5, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3152, - "time": 0.5758241758241759, + "noteOrder": 3153, + "time": 0.5758241758241758, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3164, + "noteOrder": 3165, "time": 0.578021978021978, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3778, + "noteOrder": 3779, "time": 0.6901098901098901, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3790, - "time": 0.6923076923076923, + "noteOrder": 3791, + "time": 0.6923076923076922, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3874, + "noteOrder": 3875, "time": 0.7076923076923076, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3898, - "time": 0.7120879120879121, + "noteOrder": 3899, + "time": 0.712087912087912, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.7164835164835165, + "noteOrder": 3923, + "time": 0.7164835164835164, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3970, + "noteOrder": 3972, "time": 0.7252747252747253, "position": { "x": 7, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3982, - "time": 0.7274725274725276, + "noteOrder": 3984, + "time": 0.7274725274725274, "position": { "x": 6, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4066, + "noteOrder": 4068, "time": 0.7428571428571428, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4163, + "noteOrder": 4164, "time": 0.7604395604395604, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4187, + "noteOrder": 4188, "time": 0.7648351648351648, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4211, + "noteOrder": 4212, "time": 0.7692307692307693, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4259, + "noteOrder": 4260, "time": 0.778021978021978, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4355, + "noteOrder": 4357, "time": 0.7956043956043956, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.8153846153846154, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4560, - "time": 0.832967032967033, + "noteOrder": 4561, + "time": 0.8329670329670329, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4740, + "noteOrder": 4742, "time": 0.865934065934066, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4788, + "noteOrder": 4790, "time": 0.8747252747252747, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4812, + "noteOrder": 4814, "time": 0.8791208791208791, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4836, + "noteOrder": 4838, "time": 0.8835164835164835, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4884, - "time": 0.8923076923076924, + "noteOrder": 4886, + "time": 0.8923076923076922, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4908, + "noteOrder": 4910, "time": 0.8967032967032966, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.9010989010989011, + "noteOrder": 4934, + "time": 0.901098901098901, "position": { "x": 3, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4981, + "noteOrder": 4982, "time": 0.9098901098901099, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5029, + "noteOrder": 5031, "time": 0.9186813186813186, "position": { "x": 3, @@ -1756,7 +1756,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.017582417582417582, @@ -1779,10 +1779,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.026373626373626374, + "time": 0.02637362637362637, "position": { "x": 7, "y": 0 @@ -1802,9 +1802,9 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 192, + "noteOrder": 193, "time": 0.035164835164835165, "position": { "x": 6, @@ -1825,9 +1825,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 192, + "noteOrder": 193, "time": 0.035164835164835165, "position": { "x": 3, @@ -1848,10 +1848,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, - "time": 0.04395604395604396, + "time": 0.04395604395604395, "position": { "x": 3, "y": 0 @@ -1871,10 +1871,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 289, - "time": 0.05274725274725275, + "time": 0.05274725274725274, "position": { "x": 4, "y": 0 @@ -1894,10 +1894,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.05274725274725275, + "time": 0.05274725274725274, "position": { "x": 7, "y": 0 @@ -1917,7 +1917,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.061538461538461535, @@ -1940,10 +1940,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 361, - "time": 0.06593406593406594, + "time": 0.06593406593406592, "position": { "x": 6, "y": 0 @@ -1963,7 +1963,7 @@ }, { "lineGroupId": 3, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 385, "time": 0.07032967032967033, @@ -1986,7 +1986,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.07032967032967033, @@ -2009,10 +2009,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 409, - "time": 0.07472527472527474, + "time": 0.07472527472527472, "position": { "x": 5, "y": 0 @@ -2032,10 +2032,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, - "time": 0.07472527472527474, + "time": 0.07472527472527472, "position": { "x": 5, "y": 0 @@ -2055,10 +2055,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, - "time": 0.07912087912087913, + "time": 0.07912087912087912, "position": { "x": 5, "y": 0 @@ -2078,10 +2078,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 433, - "time": 0.07912087912087913, + "time": 0.07912087912087912, "position": { "x": 5, "y": 0 @@ -2101,10 +2101,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, - "time": 0.08351648351648353, + "time": 0.08351648351648351, "position": { "x": 5, "y": 0 @@ -2124,10 +2124,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 457, - "time": 0.08351648351648353, + "time": 0.08351648351648351, "position": { "x": 5, "y": 0 @@ -2147,10 +2147,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, - "time": 0.08791208791208792, + "time": 0.0879120879120879, "position": { "x": 5, "y": 0 @@ -2170,10 +2170,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08791208791208792, + "time": 0.0879120879120879, "position": { "x": 2, "y": 0 @@ -2192,13 +2192,13 @@ "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 2, "isSliding": false, - "noteOrder": 505, - "time": 0.0923076923076923, + "noteOrder": 493, + "time": 0.09010989010989011, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2210,18 +2210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 8, + "indexInLine": 3, "isSliding": false, - "noteOrder": 529, - "time": 0.09670329670329669, + "noteOrder": 493, + "time": 0.09010989010989011, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2238,11 +2238,11 @@ "isPlayAudio": false }, { - "lineGroupId": 12, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, - "time": 0.1054945054945055, + "noteOrder": 505, + "time": 0.0923076923076923, "position": { "x": 7, "y": 0 @@ -2261,13 +2261,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 602, - "time": 0.10989010989010989, + "noteOrder": 518, + "time": 0.0945054945054945, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2279,18 +2279,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 626, - "time": 0.11428571428571428, + "noteOrder": 518, + "time": 0.0945054945054945, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2307,13 +2307,13 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 4, "isSliding": false, - "noteOrder": 650, - "time": 0.11868131868131868, + "noteOrder": 530, + "time": 0.0967032967032967, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2325,18 +2325,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 5, "isSliding": false, - "noteOrder": 746, - "time": 0.13626373626373628, + "noteOrder": 530, + "time": 0.0967032967032967, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2353,13 +2353,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 866, - "time": 0.15824175824175826, + "noteOrder": 530, + "time": 0.0967032967032967, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2376,13 +2376,13 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 902, - "time": 0.16483516483516483, + "noteOrder": 542, + "time": 0.0989010989010989, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2399,13 +2399,13 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 914, - "time": 0.16703296703296705, + "noteOrder": 542, + "time": 0.0989010989010989, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2417,18 +2417,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 4, "isSliding": false, - "noteOrder": 938, - "time": 0.17142857142857143, + "noteOrder": 554, + "time": 0.10109890109890109, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2445,13 +2445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 5, "isSliding": false, - "noteOrder": 962, - "time": 0.17582417582417584, + "noteOrder": 554, + "time": 0.10109890109890109, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2463,16 +2463,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 6, "isSliding": false, - "noteOrder": 987, - "time": 0.18021978021978025, + "noteOrder": 566, + "time": 0.10329670329670329, "position": { "x": 4, "y": 0 @@ -2491,13 +2491,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1011, - "time": 0.1846153846153846, + "noteOrder": 566, + "time": 0.10329670329670329, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2509,18 +2509,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 8, "isSliding": false, - "noteOrder": 1035, - "time": 0.189010989010989, + "noteOrder": 578, + "time": 0.10549450549450548, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2537,11 +2537,11 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1059, - "time": 0.19340659340659339, + "noteOrder": 578, + "time": 0.10549450549450548, "position": { "x": 4, "y": 0 @@ -2555,18 +2555,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 4, + "lineGroupId": 12, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1107, - "time": 0.20219780219780217, + "noteOrder": 578, + "time": 0.10549450549450548, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2583,13 +2583,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 5, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1131, - "time": 0.20659340659340658, + "noteOrder": 590, + "time": 0.1076923076923077, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2606,13 +2606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 6, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1155, - "time": 0.210989010989011, + "noteOrder": 590, + "time": 0.1076923076923077, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2629,13 +2629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1203, - "time": 0.21978021978021978, + "noteOrder": 602, + "time": 0.10989010989010989, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2652,13 +2652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1215, - "time": 0.22197802197802197, + "noteOrder": 614, + "time": 0.11208791208791208, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2675,13 +2675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 2, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1227, - "time": 0.22417582417582416, + "noteOrder": 614, + "time": 0.11208791208791208, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2698,13 +2698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 3, + "lineGroupId": 13, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1239, - "time": 0.22637362637362637, + "noteOrder": 626, + "time": 0.11428571428571428, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2721,13 +2721,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1251, - "time": 0.22857142857142856, + "noteOrder": 626, + "time": 0.11428571428571428, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2744,13 +2744,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1275, - "time": 0.23296703296703294, + "noteOrder": 626, + "time": 0.11428571428571428, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2767,13 +2767,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1299, - "time": 0.23736263736263735, + "noteOrder": 638, + "time": 0.11648351648351647, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -2785,18 +2785,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1323, - "time": 0.24175824175824176, + "noteOrder": 638, + "time": 0.11648351648351647, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2813,13 +2813,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1347, - "time": 0.24615384615384614, + "noteOrder": 650, + "time": 0.11868131868131866, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2831,16 +2831,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 2, + "lineGroupId": 14, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1371, - "time": 0.25054945054945055, + "noteOrder": 650, + "time": 0.11868131868131866, "position": { "x": 5, "y": 0 @@ -2854,18 +2854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1396, - "time": 0.254945054945055, + "noteOrder": 650, + "time": 0.11868131868131866, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2877,18 +2877,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1420, - "time": 0.2593406593406593, + "noteOrder": 662, + "time": 0.12087912087912088, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -2905,13 +2905,6430 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1444, - "time": 0.26373626373626374, + "noteOrder": 662, + "time": 0.12087912087912088, "position": { - "x": 7, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 674, + "time": 0.12307692307692307, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 674, + "time": 0.12307692307692307, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 698, + "time": 0.12747252747252746, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 698, + "time": 0.12747252747252746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 722, + "time": 0.13186813186813184, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 722, + "time": 0.13186813186813184, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 746, + "time": 0.13626373626373625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 770, + "time": 0.14065934065934066, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 770, + "time": 0.14065934065934066, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 794, + "time": 0.14505494505494504, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 794, + "time": 0.14505494505494504, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 818, + "time": 0.14945054945054945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 867, + "time": 0.15824175824175823, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 903, + "time": 0.16483516483516483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 915, + "time": 0.16703296703296702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 927, + "time": 0.16923076923076924, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 927, + "time": 0.16923076923076924, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 939, + "time": 0.17142857142857143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 939, + "time": 0.17142857142857143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 939, + "time": 0.17142857142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 951, + "time": 0.17362637362637362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 951, + "time": 0.17362637362637362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 963, + "time": 0.1758241758241758, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 963, + "time": 0.1758241758241758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 963, + "time": 0.1758241758241758, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 975, + "time": 0.178021978021978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 975, + "time": 0.178021978021978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 987, + "time": 0.18021978021978022, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 987, + "time": 0.18021978021978022, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 987, + "time": 0.18021978021978022, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 999, + "time": 0.1824175824175824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 999, + "time": 0.1824175824175824, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1011, + "time": 0.1846153846153846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1011, + "time": 0.1846153846153846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1011, + "time": 0.1846153846153846, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1023, + "time": 0.1868131868131868, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1023, + "time": 0.1868131868131868, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1035, + "time": 0.189010989010989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1035, + "time": 0.189010989010989, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1035, + "time": 0.189010989010989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1047, + "time": 0.1912087912087912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1047, + "time": 0.1912087912087912, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1059, + "time": 0.1934065934065934, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1059, + "time": 0.1934065934065934, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1059, + "time": 0.1934065934065934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1071, + "time": 0.1956043956043956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1071, + "time": 0.1956043956043956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1083, + "time": 0.1978021978021978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1083, + "time": 0.1978021978021978, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1095, + "time": 0.19999999999999998, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1095, + "time": 0.19999999999999998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1107, + "time": 0.20219780219780217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1131, + "time": 0.20659340659340658, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 1155, + "time": 0.21098901098901096, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1204, + "time": 0.21978021978021978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1216, + "time": 0.22197802197802197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1228, + "time": 0.22417582417582416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1240, + "time": 0.22637362637362635, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1252, + "time": 0.22857142857142856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1264, + "time": 0.23076923076923075, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1264, + "time": 0.23076923076923075, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1276, + "time": 0.23296703296703294, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1288, + "time": 0.23516483516483513, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1288, + "time": 0.23516483516483513, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1300, + "time": 0.23736263736263732, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1312, + "time": 0.23956043956043957, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1312, + "time": 0.23956043956043957, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1324, + "time": 0.24175824175824176, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1324, + "time": 0.24175824175824176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1324, + "time": 0.24175824175824176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1336, + "time": 0.24395604395604395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1336, + "time": 0.24395604395604395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1348, + "time": 0.24615384615384614, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1348, + "time": 0.24615384615384614, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1348, + "time": 0.24615384615384614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1360, + "time": 0.24835164835164833, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1360, + "time": 0.24835164835164833, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1372, + "time": 0.25054945054945055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1396, + "time": 0.2549450549450549, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1408, + "time": 0.2571428571428571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1408, + "time": 0.2571428571428571, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1420, + "time": 0.2593406593406593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1420, + "time": 0.2593406593406593, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1420, + "time": 0.2593406593406593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1432, + "time": 0.2615384615384615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1432, + "time": 0.2615384615384615, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1444, + "time": 0.2637362637362637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1444, + "time": 0.2637362637362637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1444, + "time": 0.2637362637362637, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1456, + "time": 0.2659340659340659, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1456, + "time": 0.2659340659340659, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2681318681318681, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1468, + "time": 0.2681318681318681, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2703296703296703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1480, + "time": 0.2703296703296703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2725274725274725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2725274725274725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1492, + "time": 0.2725274725274725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1516, + "time": 0.27692307692307694, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1540, + "time": 0.2813186813186813, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1565, + "time": 0.2857142857142857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1589, + "time": 0.2901098901098901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1601, + "time": 0.2923076923076923, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1601, + "time": 0.2923076923076923, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1613, + "time": 0.2945054945054945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1625, + "time": 0.2967032967032967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1625, + "time": 0.2967032967032967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1637, + "time": 0.2989010989010989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1649, + "time": 0.3010989010989011, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1649, + "time": 0.3010989010989011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1661, + "time": 0.3032967032967033, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1673, + "time": 0.30549450549450546, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1673, + "time": 0.30549450549450546, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1974, + "time": 0.36043956043956044, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1986, + "time": 0.3626373626373626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1986, + "time": 0.3626373626373626, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1998, + "time": 0.3648351648351648, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2010, + "time": 0.367032967032967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2010, + "time": 0.367032967032967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2022, + "time": 0.3692307692307692, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2046, + "time": 0.3736263736263736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2070, + "time": 0.378021978021978, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2118, + "time": 0.3868131868131868, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2166, + "time": 0.3956043956043956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2166, + "time": 0.3956043956043956, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2214, + "time": 0.40439560439560435, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41318681318681316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2335, + "time": 0.42637362637362636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2359, + "time": 0.4307692307692308, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2383, + "time": 0.4351648351648352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2407, + "time": 0.43956043956043955, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2455, + "time": 0.4483516483516483, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2479, + "time": 0.4527472527472527, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2503, + "time": 0.45714285714285713, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2527, + "time": 0.4615384615384615, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2551, + "time": 0.4659340659340659, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2551, + "time": 0.4659340659340659, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2575, + "time": 0.47032967032967027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2600, + "time": 0.47472527472527465, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2624, + "time": 0.47912087912087914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2648, + "time": 0.4835164835164835, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2648, + "time": 0.4835164835164835, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2672, + "time": 0.4879120879120879, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2696, + "time": 0.4923076923076923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2720, + "time": 0.49670329670329666, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2744, + "time": 0.5010989010989011, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2744, + "time": 0.5010989010989011, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2768, + "time": 0.5054945054945055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2792, + "time": 0.5098901098901099, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2816, + "time": 0.5142857142857142, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2840, + "time": 0.5186813186813186, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2840, + "time": 0.5186813186813186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2852, + "time": 0.5208791208791209, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2852, + "time": 0.5208791208791209, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2888, + "time": 0.5274725274725274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2900, + "time": 0.5296703296703297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2900, + "time": 0.5296703296703297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2912, + "time": 0.5318681318681318, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2937, + "time": 0.5362637362637362, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2937, + "time": 0.5362637362637362, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2949, + "time": 0.5384615384615384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2949, + "time": 0.5384615384615384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2985, + "time": 0.545054945054945, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2997, + "time": 0.5472527472527472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2997, + "time": 0.5472527472527472, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3009, + "time": 0.5494505494505494, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3033, + "time": 0.5538461538461539, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3033, + "time": 0.5538461538461539, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3045, + "time": 0.556043956043956, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3045, + "time": 0.556043956043956, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3081, + "time": 0.5626373626373626, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3093, + "time": 0.5648351648351648, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3093, + "time": 0.5648351648351648, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3105, + "time": 0.567032967032967, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3129, + "time": 0.5714285714285714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3129, + "time": 0.5714285714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3141, + "time": 0.5736263736263736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3141, + "time": 0.5736263736263736, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3177, + "time": 0.5802197802197802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3201, + "time": 0.5846153846153846, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3201, + "time": 0.5846153846153846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3225, + "time": 0.589010989010989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3225, + "time": 0.589010989010989, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3274, + "time": 0.5978021978021978, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3322, + "time": 0.6065934065934065, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3322, + "time": 0.6065934065934065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3370, + "time": 0.6153846153846153, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3418, + "time": 0.6241758241758241, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3418, + "time": 0.6241758241758241, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3466, + "time": 0.6329670329670329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3514, + "time": 0.6417582417582417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3514, + "time": 0.6417582417582417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3562, + "time": 0.6505494505494505, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3598, + "time": 0.6571428571428571, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3611, + "time": 0.6593406593406593, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3623, + "time": 0.6615384615384615, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3623, + "time": 0.6615384615384615, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3635, + "time": 0.6637362637362637, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3635, + "time": 0.6637362637362637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3635, + "time": 0.6637362637362637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3647, + "time": 0.6659340659340659, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3647, + "time": 0.6659340659340659, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3659, + "time": 0.6681318681318681, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3659, + "time": 0.6681318681318681, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3659, + "time": 0.6681318681318681, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3671, + "time": 0.6703296703296703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3671, + "time": 0.6703296703296703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3683, + "time": 0.6725274725274725, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3683, + "time": 0.6725274725274725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3683, + "time": 0.6725274725274725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6747252747252747, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6747252747252747, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3707, + "time": 0.676923076923077, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3707, + "time": 0.676923076923077, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3707, + "time": 0.676923076923077, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3731, + "time": 0.6813186813186813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3731, + "time": 0.6813186813186813, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3731, + "time": 0.6813186813186813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3755, + "time": 0.6857142857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3755, + "time": 0.6857142857142857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3755, + "time": 0.6857142857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3779, + "time": 0.6901098901098901, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3803, + "time": 0.6945054945054945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3815, + "time": 0.6967032967032966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3815, + "time": 0.6967032967032966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3827, + "time": 0.6989010989010989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3827, + "time": 0.6989010989010989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3827, + "time": 0.6989010989010989, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3839, + "time": 0.701098901098901, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3839, + "time": 0.701098901098901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3851, + "time": 0.7032967032967032, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3851, + "time": 0.7032967032967032, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3851, + "time": 0.7032967032967032, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3863, + "time": 0.7054945054945055, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3863, + "time": 0.7054945054945055, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3875, + "time": 0.7076923076923076, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3875, + "time": 0.7076923076923076, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3887, + "time": 0.7098901098901099, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3887, + "time": 0.7098901098901099, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3899, + "time": 0.712087912087912, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3923, + "time": 0.7164835164835164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3947, + "time": 0.7208791208791209, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3972, + "time": 0.7252747252747253, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3996, + "time": 0.7296703296703296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4008, + "time": 0.7318681318681318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4008, + "time": 0.7318681318681318, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4020, + "time": 0.734065934065934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4032, + "time": 0.7362637362637362, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4032, + "time": 0.7362637362637362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4044, + "time": 0.7384615384615384, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4056, + "time": 0.7406593406593406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4056, + "time": 0.7406593406593406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4068, + "time": 0.7428571428571428, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4068, + "time": 0.7428571428571428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4080, + "time": 0.7450549450549451, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4080, + "time": 0.7450549450549451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4092, + "time": 0.7472527472527472, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4092, + "time": 0.7472527472527472, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4092, + "time": 0.7472527472527472, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4104, + "time": 0.7494505494505495, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4104, + "time": 0.7494505494505495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4116, + "time": 0.7516483516483516, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4116, + "time": 0.7516483516483516, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4116, + "time": 0.7516483516483516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4128, + "time": 0.7538461538461538, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4128, + "time": 0.7538461538461538, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4140, + "time": 0.756043956043956, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4140, + "time": 0.756043956043956, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4140, + "time": 0.756043956043956, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4164, + "time": 0.7604395604395604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4188, + "time": 0.7648351648351648, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4188, + "time": 0.7648351648351648, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4200, + "time": 0.767032967032967, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4200, + "time": 0.767032967032967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4212, + "time": 0.7692307692307693, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4212, + "time": 0.7692307692307693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 4224, + "time": 0.7714285714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 4224, + "time": 0.7714285714285714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 4236, + "time": 0.7736263736263737, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -2923,18 +9340,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 12, "isSliding": false, - "noteOrder": 1492, - "time": 0.27252747252747256, + "noteOrder": 4236, + "time": 0.7736263736263737, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2951,13 +9368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 159, "indexInLine": 1, "isSliding": false, - "noteOrder": 1516, - "time": 0.27692307692307694, + "noteOrder": 4236, + "time": 0.7736263736263737, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2969,18 +9386,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 159, "indexInLine": 2, "isSliding": false, - "noteOrder": 1540, - "time": 0.2813186813186813, + "noteOrder": 4248, + "time": 0.7758241758241757, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2992,16 +9409,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 159, "indexInLine": 3, "isSliding": false, - "noteOrder": 1564, - "time": 0.2857142857142857, + "noteOrder": 4248, + "time": 0.7758241758241757, "position": { "x": 5, "y": 0 @@ -3015,18 +9432,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1588, - "time": 0.29010989010989013, + "noteOrder": 4260, + "time": 0.778021978021978, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3043,13 +9460,36 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1612, - "time": 0.2945054945054945, + "noteOrder": 4260, + "time": 0.778021978021978, "position": { - "x": 5, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4284, + "time": 0.7824175824175824, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -3066,13 +9506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1636, - "time": 0.29890109890109895, + "noteOrder": 4297, + "time": 0.7846153846153845, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3084,18 +9524,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1660, - "time": 0.3032967032967033, + "noteOrder": 4297, + "time": 0.7846153846153845, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3112,11 +9552,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1973, - "time": 0.3604395604395605, + "noteOrder": 4309, + "time": 0.7868131868131868, "position": { "x": 7, "y": 0 @@ -3135,13 +9575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1997, - "time": 0.3648351648351648, + "noteOrder": 4321, + "time": 0.7890109890109889, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3153,18 +9593,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2021, - "time": 0.3692307692307692, + "noteOrder": 4321, + "time": 0.7890109890109889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3181,13 +9621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 2045, - "time": 0.37362637362637363, + "noteOrder": 4333, + "time": 0.7912087912087912, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3199,16 +9639,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2069, - "time": 0.378021978021978, + "noteOrder": 4345, + "time": 0.7934065934065934, "position": { "x": 3, "y": 0 @@ -3227,13 +9667,36 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4345, + "time": 0.7934065934065934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 2117, - "time": 0.38681318681318677, + "noteOrder": 4381, + "time": 0.7999999999999999, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3250,11 +9713,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 165, "indexInLine": 2, "isSliding": false, - "noteOrder": 2166, - "time": 0.3956043956043956, + "noteOrder": 4405, + "time": 0.8043956043956043, "position": { "x": 6, "y": 0 @@ -3273,13 +9736,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2166, - "time": 0.3956043956043956, + "noteOrder": 4411, + "time": 0.8054945054945054, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3291,18 +9754,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2214, - "time": 0.40439560439560435, + "noteOrder": 4417, + "time": 0.8065934065934066, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3314,16 +9777,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2262, - "time": 0.41318681318681316, + "noteOrder": 4423, + "time": 0.8076923076923077, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4429, + "time": 0.8087912087912087, "position": { "x": 4, "y": 0 @@ -3337,18 +9823,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2334, - "time": 0.42637362637362636, + "noteOrder": 4453, + "time": 0.8131868131868131, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3360,18 +9846,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 2358, - "time": 0.43076923076923074, + "noteOrder": 4393, + "time": 0.8021978021978022, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3388,13 +9874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 166, "indexInLine": 2, "isSliding": false, - "noteOrder": 2382, - "time": 0.4351648351648352, + "noteOrder": 4429, + "time": 0.8087912087912087, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3411,13 +9897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, + "lineGroupId": 166, "indexInLine": 3, "isSliding": false, - "noteOrder": 2406, - "time": 0.43956043956043955, + "noteOrder": 4435, + "time": 0.8098901098901098, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3434,13 +9920,59 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4441, + "time": 0.810989010989011, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4447, + "time": 0.8120879120879121, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2454, - "time": 0.4483516483516483, + "noteOrder": 4453, + "time": 0.8131868131868131, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3452,16 +9984,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 2478, - "time": 0.45274725274725275, + "noteOrder": 4477, + "time": 0.8175824175824176, "position": { "x": 4, "y": 0 @@ -3475,16 +10007,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 2502, - "time": 0.45714285714285713, + "noteOrder": 4501, + "time": 0.8219780219780219, "position": { "x": 4, "y": 0 @@ -3498,18 +10030,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 169, "indexInLine": 3, "isSliding": false, - "noteOrder": 2526, - "time": 0.46153846153846156, + "noteOrder": 4507, + "time": 0.8230769230769229, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3521,18 +10053,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 169, "indexInLine": 4, "isSliding": false, - "noteOrder": 2550, - "time": 0.4659340659340659, + "noteOrder": 4513, + "time": 0.8241758241758241, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3544,16 +10076,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2550, - "time": 0.4659340659340659, + "noteOrder": 4519, + "time": 0.8252747252747252, "position": { "x": 7, "y": 0 @@ -3572,13 +10104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 169, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2575, - "time": 0.4703296703296703, + "noteOrder": 4525, + "time": 0.8263736263736263, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3595,11 +10127,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 169, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2599, - "time": 0.4747252747252747, + "noteOrder": 4549, + "time": 0.8307692307692307, "position": { "x": 6, "y": 0 @@ -3618,11 +10150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 3, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2623, - "time": 0.47912087912087914, + "noteOrder": 4489, + "time": 0.8197802197802198, "position": { "x": 6, "y": 0 @@ -3636,18 +10168,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 4, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2647, - "time": 0.4835164835164835, + "noteOrder": 4525, + "time": 0.8263736263736263, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3659,16 +10191,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2647, - "time": 0.4835164835164835, + "noteOrder": 4531, + "time": 0.8274725274725275, "position": { "x": 3, "y": 0 @@ -3687,13 +10219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2671, - "time": 0.4879120879120879, + "noteOrder": 4537, + "time": 0.8285714285714285, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3710,11 +10242,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 2, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2695, - "time": 0.4923076923076923, + "noteOrder": 4543, + "time": 0.8296703296703296, "position": { "x": 3, "y": 0 @@ -3733,13 +10265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 3, + "lineGroupId": 170, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2719, - "time": 0.49670329670329666, + "noteOrder": 4549, + "time": 0.8307692307692307, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3756,13 +10288,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 4, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2743, - "time": 0.5010989010989011, + "noteOrder": 4573, + "time": 0.8351648351648351, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3779,13 +10311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2743, - "time": 0.5010989010989011, + "noteOrder": 4597, + "time": 0.8395604395604395, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3797,18 +10329,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2767, - "time": 0.5054945054945055, + "noteOrder": 4597, + "time": 0.8395604395604395, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3820,18 +10352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 2, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2791, - "time": 0.50989010989011, + "noteOrder": 4609, + "time": 0.8417582417582418, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3843,16 +10375,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 3, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2815, - "time": 0.5142857142857142, + "noteOrder": 4609, + "time": 0.8417582417582418, "position": { "x": 5, "y": 0 @@ -3866,18 +10398,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 4, + "lineGroupId": 173, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2839, - "time": 0.5186813186813186, + "noteOrder": 4621, + "time": 0.8439560439560438, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3889,18 +10421,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2839, - "time": 0.5186813186813186, + "noteOrder": 4621, + "time": 0.8439560439560438, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3917,13 +10449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2887, - "time": 0.5274725274725275, + "noteOrder": 4585, + "time": 0.8373626373626374, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3940,13 +10472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2911, - "time": 0.5318681318681319, + "noteOrder": 4597, + "time": 0.8395604395604395, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3958,18 +10490,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2935, - "time": 0.5362637362637362, + "noteOrder": 4597, + "time": 0.8395604395604395, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3981,18 +10513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2935, - "time": 0.5362637362637362, + "noteOrder": 4621, + "time": 0.8439560439560438, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4009,11 +10541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2984, - "time": 0.5450549450549451, + "noteOrder": 4633, + "time": 0.8461538461538461, "position": { "x": 3, "y": 0 @@ -4027,16 +10559,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3008, - "time": 0.5494505494505494, + "noteOrder": 4633, + "time": 0.8461538461538461, "position": { "x": 5, "y": 0 @@ -4055,11 +10587,11 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3032, - "time": 0.5538461538461539, + "noteOrder": 4646, + "time": 0.8483516483516482, "position": { "x": 5, "y": 0 @@ -4078,13 +10610,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3032, - "time": 0.5538461538461539, + "noteOrder": 4646, + "time": 0.8483516483516482, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4096,16 +10628,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3080, - "time": 0.5626373626373626, + "noteOrder": 4646, + "time": 0.8483516483516482, "position": { "x": 3, "y": 0 @@ -4119,18 +10651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3104, - "time": 0.567032967032967, + "noteOrder": 4658, + "time": 0.8505494505494505, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4147,13 +10679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3128, - "time": 0.5714285714285714, + "noteOrder": 4670, + "time": 0.8527472527472527, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4165,18 +10697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3128, - "time": 0.5714285714285714, + "noteOrder": 4694, + "time": 0.8571428571428571, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4193,13 +10725,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3176, - "time": 0.5802197802197803, + "noteOrder": 4694, + "time": 0.8571428571428571, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4211,18 +10743,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3200, - "time": 0.5846153846153845, + "noteOrder": 4706, + "time": 0.8593406593406593, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4234,18 +10766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3200, - "time": 0.5846153846153845, + "noteOrder": 4706, + "time": 0.8593406593406593, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4262,13 +10794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3224, - "time": 0.589010989010989, + "noteOrder": 4718, + "time": 0.8615384615384616, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4285,13 +10817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3224, - "time": 0.589010989010989, + "noteOrder": 4718, + "time": 0.8615384615384616, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4303,18 +10835,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 3272, - "time": 0.5978021978021979, + "noteOrder": 4682, + "time": 0.8549450549450549, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4331,13 +10863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 178, "indexInLine": 2, "isSliding": false, - "noteOrder": 3320, - "time": 0.6065934065934065, + "noteOrder": 4694, + "time": 0.8571428571428571, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4354,11 +10886,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3320, - "time": 0.6065934065934065, + "noteOrder": 4718, + "time": 0.8615384615384616, "position": { "x": 7, "y": 0 @@ -4372,16 +10904,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3369, - "time": 0.6153846153846154, + "noteOrder": 4730, + "time": 0.8637362637362637, "position": { "x": 7, "y": 0 @@ -4395,16 +10927,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 2, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3417, - "time": 0.6241758241758242, + "noteOrder": 4730, + "time": 0.8637362637362637, "position": { "x": 5, "y": 0 @@ -4418,18 +10950,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3417, - "time": 0.6241758241758242, + "noteOrder": 4742, + "time": 0.865934065934066, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4446,13 +10978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3465, - "time": 0.632967032967033, + "noteOrder": 4742, + "time": 0.865934065934066, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4469,13 +11001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 2, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3513, - "time": 0.6417582417582417, + "noteOrder": 4766, + "time": 0.8703296703296703, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4492,13 +11024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3513, - "time": 0.6417582417582417, + "noteOrder": 4778, + "time": 0.8725274725274724, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4510,16 +11042,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3561, - "time": 0.6505494505494506, + "noteOrder": 4778, + "time": 0.8725274725274724, "position": { "x": 5, "y": 0 @@ -4533,16 +11065,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 2, + "lineGroupId": 181, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3597, - "time": 0.6571428571428571, + "noteOrder": 4790, + "time": 0.8747252747252747, "position": { "x": 5, "y": 0 @@ -4556,18 +11088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3609, - "time": 0.6593406593406593, + "noteOrder": 4790, + "time": 0.8747252747252747, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4584,13 +11116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3633, - "time": 0.6637362637362637, + "noteOrder": 4802, + "time": 0.8769230769230768, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4602,18 +11134,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3657, - "time": 0.6681318681318682, + "noteOrder": 4802, + "time": 0.8769230769230768, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4630,11 +11162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 8, "isSliding": false, - "noteOrder": 3681, - "time": 0.6725274725274725, + "noteOrder": 4814, + "time": 0.8791208791208791, "position": { "x": 5, "y": 0 @@ -4648,16 +11180,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 9, "isSliding": false, - "noteOrder": 3705, - "time": 0.676923076923077, + "noteOrder": 4814, + "time": 0.8791208791208791, "position": { "x": 3, "y": 0 @@ -4676,13 +11208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 10, "isSliding": false, - "noteOrder": 3729, - "time": 0.6813186813186813, + "noteOrder": 4826, + "time": 0.8813186813186812, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4694,18 +11226,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 11, "isSliding": false, - "noteOrder": 3754, - "time": 0.6857142857142857, + "noteOrder": 4826, + "time": 0.8813186813186812, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4722,13 +11254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 12, "isSliding": false, - "noteOrder": 3778, - "time": 0.6901098901098901, + "noteOrder": 4838, + "time": 0.8835164835164835, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4745,13 +11277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 13, "isSliding": false, - "noteOrder": 3802, - "time": 0.6945054945054945, + "noteOrder": 4838, + "time": 0.8835164835164835, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4763,18 +11295,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 14, "isSliding": false, - "noteOrder": 3826, - "time": 0.698901098901099, + "noteOrder": 4850, + "time": 0.8857142857142857, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4791,13 +11323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 15, "isSliding": false, - "noteOrder": 3850, - "time": 0.7032967032967034, + "noteOrder": 4850, + "time": 0.8857142857142857, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4809,18 +11341,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 4, + "lineGroupId": 181, + "indexInLine": 16, "isSliding": false, - "noteOrder": 3898, - "time": 0.7120879120879121, + "noteOrder": 4862, + "time": 0.8879120879120879, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4832,18 +11364,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 5, + "lineGroupId": 181, + "indexInLine": 17, "isSliding": false, - "noteOrder": 3922, - "time": 0.7164835164835165, + "noteOrder": 4862, + "time": 0.8879120879120879, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4855,18 +11387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3946, - "time": 0.720879120879121, + "noteOrder": 4862, + "time": 0.8879120879120879, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4878,18 +11410,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3970, - "time": 0.7252747252747253, + "noteOrder": 4874, + "time": 0.8901098901098901, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4901,18 +11433,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3994, - "time": 0.7296703296703296, + "noteOrder": 4874, + "time": 0.8901098901098901, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4929,13 +11461,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4018, - "time": 0.7340659340659341, + "noteOrder": 4886, + "time": 0.8923076923076922, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4947,18 +11479,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4042, - "time": 0.7384615384615384, + "noteOrder": 4886, + "time": 0.8923076923076922, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4975,13 +11507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4090, - "time": 0.7472527472527473, + "noteOrder": 4898, + "time": 0.8945054945054944, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4993,18 +11525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4114, - "time": 0.7516483516483516, + "noteOrder": 4898, + "time": 0.8945054945054944, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5021,13 +11553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4139, - "time": 0.756043956043956, + "noteOrder": 4910, + "time": 0.8967032967032966, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5039,18 +11571,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4163, - "time": 0.7604395604395604, + "noteOrder": 4910, + "time": 0.8967032967032966, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5062,16 +11594,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 10, "isSliding": false, - "noteOrder": 4235, - "time": 0.7736263736263735, + "noteOrder": 4922, + "time": 0.8989010989010988, "position": { "x": 7, "y": 0 @@ -5090,13 +11622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 11, "isSliding": false, - "noteOrder": 4283, - "time": 0.7824175824175824, + "noteOrder": 4922, + "time": 0.8989010989010988, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5108,18 +11640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 12, "isSliding": false, - "noteOrder": 4307, - "time": 0.7868131868131868, + "noteOrder": 4934, + "time": 0.901098901098901, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5136,13 +11668,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 13, "isSliding": false, - "noteOrder": 4331, - "time": 0.7912087912087912, + "noteOrder": 4934, + "time": 0.901098901098901, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5154,18 +11686,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 14, "isSliding": false, - "noteOrder": 4379, - "time": 0.8, + "noteOrder": 4946, + "time": 0.9032967032967033, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5177,18 +11709,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 15, "isSliding": false, - "noteOrder": 4403, - "time": 0.8043956043956044, + "noteOrder": 4946, + "time": 0.9032967032967033, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5200,18 +11732,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 16, "isSliding": false, - "noteOrder": 4409, - "time": 0.8054945054945055, + "noteOrder": 4958, + "time": 0.9054945054945054, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5223,18 +11755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 3, + "lineGroupId": 185, + "indexInLine": 17, "isSliding": false, - "noteOrder": 4415, - "time": 0.8065934065934066, + "noteOrder": 4958, + "time": 0.9054945054945054, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5246,16 +11778,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 4, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4421, - "time": 0.8076923076923077, + "noteOrder": 4958, + "time": 0.9054945054945054, "position": { "x": 3, "y": 0 @@ -5274,13 +11806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 5, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4427, - "time": 0.8087912087912087, + "noteOrder": 4970, + "time": 0.9076923076923077, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5297,13 +11829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 6, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4451, - "time": 0.8131868131868132, + "noteOrder": 4970, + "time": 0.9076923076923077, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5320,13 +11852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4391, - "time": 0.8021978021978021, + "noteOrder": 4982, + "time": 0.9098901098901099, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5338,18 +11870,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4427, - "time": 0.8087912087912087, + "noteOrder": 4982, + "time": 0.9098901098901099, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5361,16 +11893,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 2, + "lineGroupId": 189, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4433, - "time": 0.8098901098901099, + "noteOrder": 4995, + "time": 0.9120879120879121, "position": { "x": 7, "y": 0 @@ -5384,18 +11916,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 3, + "lineGroupId": 189, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4439, - "time": 0.810989010989011, + "noteOrder": 4995, + "time": 0.9120879120879121, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5407,18 +11939,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 4, + "lineGroupId": 189, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4445, - "time": 0.8120879120879121, + "noteOrder": 5007, + "time": 0.9142857142857143, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5430,18 +11962,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 5, + "lineGroupId": 189, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4451, - "time": 0.8131868131868132, + "noteOrder": 5007, + "time": 0.9142857142857143, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5453,18 +11985,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4475, - "time": 0.8175824175824176, + "noteOrder": 5007, + "time": 0.9142857142857143, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5481,13 +12013,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4499, - "time": 0.821978021978022, + "noteOrder": 5019, + "time": 0.9164835164835164, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5504,13 +12036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 2, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4505, - "time": 0.823076923076923, + "noteOrder": 5019, + "time": 0.9164835164835164, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5527,13 +12059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 3, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4511, - "time": 0.8241758241758241, + "noteOrder": 5031, + "time": 0.9186813186813186, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5550,11 +12082,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 4, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4517, - "time": 0.8252747252747252, + "noteOrder": 5031, + "time": 0.9186813186813186, "position": { "x": 7, "y": 0 @@ -5573,13 +12105,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 5, + "lineGroupId": 191, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4524, - "time": 0.8263736263736263, + "noteOrder": 5043, + "time": 0.9208791208791208, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5596,13 +12128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 6, + "lineGroupId": 191, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4548, - "time": 0.8307692307692307, + "noteOrder": 5043, + "time": 0.9208791208791208, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5619,13 +12151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4487, - "time": 0.8197802197802198, + "noteOrder": 5055, + "time": 0.923076923076923, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5637,18 +12169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4524, - "time": 0.8263736263736263, + "noteOrder": 5055, + "time": 0.923076923076923, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5660,18 +12192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 2, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4530, - "time": 0.8274725274725275, + "noteOrder": 5055, + "time": 0.923076923076923, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5688,13 +12220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 3, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4536, - "time": 0.8285714285714286, + "noteOrder": 5067, + "time": 0.9252747252747252, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5711,13 +12243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 4, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4542, - "time": 0.8296703296703297, + "noteOrder": 5067, + "time": 0.9252747252747252, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5734,11 +12266,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 5, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4548, - "time": 0.8307692307692307, + "noteOrder": 5079, + "time": 0.9274725274725274, "position": { "x": 5, "y": 0 @@ -5757,13 +12289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4572, - "time": 0.8351648351648352, + "noteOrder": 5079, + "time": 0.9274725274725274, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5780,13 +12312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4584, - "time": 0.8373626373626373, + "noteOrder": 5079, + "time": 0.9274725274725274, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5803,13 +12335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4620, - "time": 0.843956043956044, + "noteOrder": 5091, + "time": 0.9296703296703296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5826,13 +12358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4644, - "time": 0.8483516483516483, + "noteOrder": 5091, + "time": 0.9296703296703296, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5844,16 +12376,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4656, - "time": 0.8505494505494506, + "noteOrder": 5103, + "time": 0.9318681318681318, "position": { "x": 5, "y": 0 @@ -5867,18 +12399,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4668, - "time": 0.8527472527472527, + "noteOrder": 5103, + "time": 0.9318681318681318, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5895,13 +12427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4680, - "time": 0.8549450549450549, + "noteOrder": 5103, + "time": 0.9318681318681318, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5918,11 +12450,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4716, - "time": 0.8615384615384615, + "noteOrder": 5115, + "time": 0.9340659340659341, "position": { "x": 7, "y": 0 @@ -5941,13 +12473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4764, - "time": 0.8703296703296703, + "noteOrder": 5115, + "time": 0.9340659340659341, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5964,13 +12496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4860, - "time": 0.8879120879120879, + "noteOrder": 5127, + "time": 0.9362637362637362, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5982,16 +12514,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4957, - "time": 0.9054945054945055, + "noteOrder": 5127, + "time": 0.9362637362637362, "position": { "x": 3, "y": 0 @@ -6010,13 +12542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5005, - "time": 0.9142857142857143, + "noteOrder": 5127, + "time": 0.9362637362637362, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6033,11 +12565,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5053, - "time": 0.9230769230769231, + "noteOrder": 5139, + "time": 0.9384615384615385, "position": { "x": 7, "y": 0 @@ -6051,18 +12583,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5077, - "time": 0.9274725274725275, + "noteOrder": 5139, + "time": 0.9384615384615385, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6079,13 +12611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5101, - "time": 0.9318681318681318, + "noteOrder": 5151, + "time": 0.9406593406593405, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6097,16 +12629,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5125, - "time": 0.9362637362637363, + "noteOrder": 5151, + "time": 0.9406593406593405, "position": { "x": 7, "y": 0 @@ -6126,10 +12658,10 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5149, - "time": 0.9406593406593406, + "noteOrder": 5151, + "time": 0.9406593406593405, "position": { "x": 3, "y": 0 @@ -6149,10 +12681,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5173, - "time": 0.9450549450549451, + "noteOrder": 5175, + "time": 0.9450549450549449, "position": { "x": 3, "y": 0 @@ -6172,10 +12704,10 @@ }, { "lineGroupId": 197, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5197, - "time": 0.9494505494505494, + "noteOrder": 5199, + "time": 0.9494505494505493, "position": { "x": 4, "y": 0 @@ -6195,10 +12727,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5221, - "time": 0.9538461538461538, + "noteOrder": 5223, + "time": 0.9538461538461539, "position": { "x": 6, "y": 0 @@ -6218,9 +12750,9 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5293, + "noteOrder": 5295, "time": 0.967032967032967, "position": { "x": 6, @@ -6241,9 +12773,9 @@ }, { "lineGroupId": 198, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5342, + "noteOrder": 5344, "time": 0.9758241758241758, "position": { "x": 6, diff --git a/tracks/VOLAQUAS/380_difficulty_1b.json b/tracks/VOLAQUAS/380_difficulty_1b.json index e64b0bbd..27fba2a3 100644 --- a/tracks/VOLAQUAS/380_difficulty_1b.json +++ b/tracks/VOLAQUAS/380_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 409, - "time": 0.07472527472527474, + "time": 0.07472527472527472, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 433, - "time": 0.07912087912087913, + "time": 0.07912087912087912, "position": { "x": 5, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 457, - "time": 0.08351648351648353, + "time": 0.08351648351648351, "position": { "x": 5, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 529, - "time": 0.09670329670329669, + "noteOrder": 530, + "time": 0.0967032967032967, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 698, - "time": 0.1274725274725275, + "time": 0.12747252747252746, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 722, - "time": 0.13186813186813187, + "time": 0.13186813186813184, "position": { "x": 6, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 794, - "time": 0.14505494505494507, + "time": 0.14505494505494504, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 818, - "time": 0.14945054945054947, + "time": 0.14945054945054945, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 842, - "time": 0.15384615384615385, + "time": 0.15384615384615383, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1155, - "time": 0.210989010989011, + "time": 0.21098901098901096, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1179, - "time": 0.21538461538461537, + "time": 0.2153846153846154, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1203, + "noteOrder": 1204, "time": 0.21978021978021978, "position": { "x": 8, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1227, + "noteOrder": 1228, "time": 0.22417582417582416, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1251, + "noteOrder": 1252, "time": 0.22857142857142856, "position": { "x": 7, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1275, + "noteOrder": 1276, "time": 0.23296703296703294, "position": { "x": 2, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.2857142857142857, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1588, - "time": 0.29010989010989013, + "noteOrder": 1589, + "time": 0.2901098901098901, "position": { "x": 2, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1612, + "noteOrder": 1613, "time": 0.2945054945054945, "position": { "x": 7, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1636, - "time": 0.29890109890109895, + "noteOrder": 1637, + "time": 0.2989010989010989, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1660, + "noteOrder": 1661, "time": 0.3032967032967033, "position": { "x": 8, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1684, - "time": 0.3076923076923077, + "noteOrder": 1685, + "time": 0.30769230769230765, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1732, - "time": 0.3164835164835165, + "noteOrder": 1733, + "time": 0.31648351648351647, "position": { "x": 7, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1781, - "time": 0.3252747252747253, + "time": 0.32527472527472523, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1829, - "time": 0.3340659340659341, + "time": 0.33406593406593404, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1901, + "noteOrder": 1902, "time": 0.34725274725274724, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1949, - "time": 0.35604395604395606, + "noteOrder": 1950, + "time": 0.356043956043956, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2021, + "noteOrder": 2022, "time": 0.3692307692307692, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2045, - "time": 0.37362637362637363, + "noteOrder": 2046, + "time": 0.3736263736263736, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2262, + "noteOrder": 2263, "time": 0.41318681318681316, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2286, - "time": 0.4175824175824176, + "noteOrder": 2287, + "time": 0.41758241758241754, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2310, - "time": 0.421978021978022, + "noteOrder": 2311, + "time": 0.4219780219780219, "position": { "x": 7, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2334, + "noteOrder": 2335, "time": 0.42637362637362636, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2358, - "time": 0.43076923076923074, + "noteOrder": 2359, + "time": 0.4307692307692308, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2382, + "noteOrder": 2383, "time": 0.4351648351648352, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2406, + "noteOrder": 2407, "time": 0.43956043956043955, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2430, + "noteOrder": 2431, "time": 0.44395604395604393, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2478, - "time": 0.45274725274725275, + "noteOrder": 2479, + "time": 0.4527472527472527, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2502, + "noteOrder": 2503, "time": 0.45714285714285713, "position": { "x": 8, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2526, - "time": 0.46153846153846156, + "noteOrder": 2527, + "time": 0.4615384615384615, "position": { "x": 6, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 2575, - "time": 0.4703296703296703, + "time": 0.47032967032967027, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2599, - "time": 0.4747252747252747, + "noteOrder": 2600, + "time": 0.47472527472527465, "position": { "x": 2, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2623, + "noteOrder": 2624, "time": 0.47912087912087914, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2671, + "noteOrder": 2672, "time": 0.4879120879120879, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2695, + "noteOrder": 2696, "time": 0.4923076923076923, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2719, + "noteOrder": 2720, "time": 0.49670329670329666, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.5054945054945055, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2791, - "time": 0.50989010989011, + "noteOrder": 2792, + "time": 0.5098901098901099, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2815, + "noteOrder": 2816, "time": 0.5142857142857142, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2887, - "time": 0.5274725274725275, + "noteOrder": 2888, + "time": 0.5274725274725274, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2984, - "time": 0.5450549450549451, + "noteOrder": 2985, + "time": 0.545054945054945, "position": { "x": 5, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3128, + "noteOrder": 3129, "time": 0.5714285714285714, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3152, - "time": 0.5758241758241759, + "noteOrder": 3153, + "time": 0.5758241758241758, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3176, - "time": 0.5802197802197803, + "noteOrder": 3177, + "time": 0.5802197802197802, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3200, - "time": 0.5846153846153845, + "noteOrder": 3201, + "time": 0.5846153846153846, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3802, + "noteOrder": 3803, "time": 0.6945054945054945, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3826, - "time": 0.698901098901099, + "noteOrder": 3827, + "time": 0.6989010989010989, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3850, - "time": 0.7032967032967034, + "noteOrder": 3851, + "time": 0.7032967032967032, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3874, + "noteOrder": 3875, "time": 0.7076923076923076, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.7164835164835165, + "noteOrder": 3923, + "time": 0.7164835164835164, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3970, + "noteOrder": 3972, "time": 0.7252747252747253, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4042, + "noteOrder": 4044, "time": 0.7384615384615384, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4066, + "noteOrder": 4068, "time": 0.7428571428571428, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4211, + "noteOrder": 4212, "time": 0.7692307692307693, "position": { "x": 5, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4235, - "time": 0.7736263736263735, + "noteOrder": 4236, + "time": 0.7736263736263737, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4259, + "noteOrder": 4260, "time": 0.778021978021978, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4283, + "noteOrder": 4284, "time": 0.7824175824175824, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4307, + "noteOrder": 4309, "time": 0.7868131868131868, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4331, + "noteOrder": 4333, "time": 0.7912087912087912, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4355, + "noteOrder": 4357, "time": 0.7956043956043956, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4403, - "time": 0.8043956043956044, + "noteOrder": 4405, + "time": 0.8043956043956043, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4427, + "noteOrder": 4429, "time": 0.8087912087912087, "position": { "x": 8, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4451, - "time": 0.8131868131868132, + "noteOrder": 4453, + "time": 0.8131868131868131, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4499, - "time": 0.821978021978022, + "noteOrder": 4501, + "time": 0.8219780219780219, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4524, + "noteOrder": 4525, "time": 0.8263736263736263, "position": { "x": 2, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4548, + "noteOrder": 4549, "time": 0.8307692307692307, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4596, - "time": 0.8395604395604396, + "noteOrder": 4597, + "time": 0.8395604395604395, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4620, - "time": 0.843956043956044, + "noteOrder": 4621, + "time": 0.8439560439560438, "position": { "x": 7, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4644, - "time": 0.8483516483516483, + "noteOrder": 4646, + "time": 0.8483516483516482, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4692, - "time": 0.8571428571428572, + "noteOrder": 4694, + "time": 0.8571428571428571, "position": { "x": 4, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4716, - "time": 0.8615384615384615, + "noteOrder": 4718, + "time": 0.8615384615384616, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4740, + "noteOrder": 4742, "time": 0.865934065934066, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4836, + "noteOrder": 4838, "time": 0.8835164835164835, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.9010989010989011, + "noteOrder": 4934, + "time": 0.901098901098901, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5029, + "noteOrder": 5031, "time": 0.9186813186813186, "position": { "x": 7, @@ -1876,7 +1876,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.017582417582417582, @@ -1899,10 +1899,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, - "time": 0.026373626373626374, + "time": 0.02637362637362637, "position": { "x": 7, "y": 0 @@ -1922,9 +1922,9 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 192, + "noteOrder": 193, "time": 0.035164835164835165, "position": { "x": 6, @@ -1945,9 +1945,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 192, + "noteOrder": 193, "time": 0.035164835164835165, "position": { "x": 3, @@ -1968,10 +1968,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, - "time": 0.04395604395604396, + "time": 0.04395604395604395, "position": { "x": 3, "y": 0 @@ -1991,10 +1991,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 289, - "time": 0.05274725274725275, + "time": 0.05274725274725274, "position": { "x": 4, "y": 0 @@ -2014,10 +2014,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.05274725274725275, + "time": 0.05274725274725274, "position": { "x": 7, "y": 0 @@ -2037,7 +2037,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 337, "time": 0.061538461538461535, @@ -2060,10 +2060,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 361, - "time": 0.06593406593406594, + "time": 0.06593406593406592, "position": { "x": 6, "y": 0 @@ -2083,7 +2083,7 @@ }, { "lineGroupId": 3, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 385, "time": 0.07032967032967033, @@ -2106,10 +2106,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.08791208791208792, + "time": 0.0879120879120879, "position": { "x": 4, "y": 0 @@ -2129,7 +2129,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.0923076923076923, @@ -2152,9 +2152,9 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 553, + "noteOrder": 554, "time": 0.10109890109890109, "position": { "x": 6, @@ -2175,10 +2175,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 577, - "time": 0.1054945054945055, + "noteOrder": 578, + "time": 0.10549450549450548, "position": { "x": 6, "y": 0 @@ -2198,10 +2198,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 577, - "time": 0.1054945054945055, + "noteOrder": 578, + "time": 0.10549450549450548, "position": { "x": 3, "y": 0 @@ -2221,7 +2221,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 602, "time": 0.10989010989010989, @@ -2244,10 +2244,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 650, - "time": 0.11868131868131868, + "time": 0.11868131868131866, "position": { "x": 4, "y": 0 @@ -2267,7 +2267,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 674, "time": 0.12307692307692307, @@ -2290,10 +2290,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 746, - "time": 0.13626373626373628, + "time": 0.13626373626373625, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 770, "time": 0.14065934065934066, @@ -2336,10 +2336,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 866, - "time": 0.15824175824175826, + "noteOrder": 867, + "time": 0.15824175824175823, "position": { "x": 5, "y": 0 @@ -2359,9 +2359,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 902, + "noteOrder": 903, "time": 0.16483516483516483, "position": { "x": 5, @@ -2382,10 +2382,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 914, - "time": 0.16703296703296705, + "noteOrder": 915, + "time": 0.16703296703296702, "position": { "x": 3, "y": 0 @@ -2404,11 +2404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 938, - "time": 0.17142857142857143, + "noteOrder": 927, + "time": 0.16923076923076924, "position": { "x": 3, "y": 0 @@ -2422,18 +2422,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 962, - "time": 0.17582417582417584, + "noteOrder": 927, + "time": 0.16923076923076924, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2450,13 +2450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 987, - "time": 0.18021978021978025, + "noteOrder": 939, + "time": 0.17142857142857143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2473,13 +2473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 1, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1011, - "time": 0.1846153846153846, + "noteOrder": 951, + "time": 0.17362637362637362, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2496,13 +2496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1011, - "time": 0.1846153846153846, + "noteOrder": 951, + "time": 0.17362637362637362, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2514,18 +2514,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1035, - "time": 0.189010989010989, + "noteOrder": 963, + "time": 0.1758241758241758, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2537,16 +2537,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1059, - "time": 0.19340659340659339, + "noteOrder": 975, + "time": 0.178021978021978, "position": { "x": 3, "y": 0 @@ -2565,13 +2565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1083, - "time": 0.1978021978021978, + "noteOrder": 975, + "time": 0.178021978021978, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2583,18 +2583,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1107, - "time": 0.20219780219780217, + "noteOrder": 987, + "time": 0.18021978021978022, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2611,13 +2611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1107, - "time": 0.20219780219780217, + "noteOrder": 1011, + "time": 0.1846153846153846, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2629,18 +2629,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1131, - "time": 0.20659340659340658, + "noteOrder": 1011, + "time": 0.1846153846153846, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2657,13 +2657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 29, "indexInLine": 2, "isSliding": false, - "noteOrder": 1155, - "time": 0.210989010989011, + "noteOrder": 1023, + "time": 0.1868131868131868, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2680,11 +2680,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 29, "indexInLine": 3, "isSliding": false, - "noteOrder": 1179, - "time": 0.21538461538461537, + "noteOrder": 1023, + "time": 0.1868131868131868, "position": { "x": 4, "y": 0 @@ -2703,13 +2703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 4, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1203, - "time": 0.21978021978021978, + "noteOrder": 1035, + "time": 0.189010989010989, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2721,18 +2721,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1299, - "time": 0.23736263736263735, + "noteOrder": 1047, + "time": 0.1912087912087912, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2749,13 +2749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1323, - "time": 0.24175824175824176, + "noteOrder": 1047, + "time": 0.1912087912087912, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2767,18 +2767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1347, - "time": 0.24615384615384614, + "noteOrder": 1059, + "time": 0.1934065934065934, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2790,16 +2790,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1371, - "time": 0.25054945054945055, + "noteOrder": 1071, + "time": 0.1956043956043956, "position": { "x": 3, "y": 0 @@ -2818,11 +2818,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1396, - "time": 0.254945054945055, + "noteOrder": 1071, + "time": 0.1956043956043956, "position": { "x": 4, "y": 0 @@ -2841,11 +2841,11 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1396, - "time": 0.254945054945055, + "noteOrder": 1083, + "time": 0.1978021978021978, "position": { "x": 7, "y": 0 @@ -2864,13 +2864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1420, - "time": 0.2593406593406593, + "noteOrder": 1107, + "time": 0.20219780219780217, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2882,18 +2882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1444, - "time": 0.26373626373626374, + "noteOrder": 1107, + "time": 0.20219780219780217, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2905,18 +2905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1468, - "time": 0.2681318681318681, + "noteOrder": 1131, + "time": 0.20659340659340658, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2933,11 +2933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1492, - "time": 0.27252747252747256, + "noteOrder": 1155, + "time": 0.21098901098901096, "position": { "x": 4, "y": 0 @@ -2956,13 +2956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1492, - "time": 0.27252747252747256, + "noteOrder": 1179, + "time": 0.2153846153846154, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2974,18 +2974,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1516, - "time": 0.27692307692307694, + "noteOrder": 1204, + "time": 0.21978021978021978, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2997,18 +2997,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1540, - "time": 0.2813186813186813, + "noteOrder": 1300, + "time": 0.23736263736263732, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3025,13 +3025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 3, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1564, - "time": 0.2857142857142857, + "noteOrder": 1312, + "time": 0.23956043956043957, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3048,13 +3048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 4, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1588, - "time": 0.29010989010989013, + "noteOrder": 1312, + "time": 0.23956043956043957, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3071,13 +3071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1877, - "time": 0.34285714285714286, + "noteOrder": 1324, + "time": 0.24175824175824176, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3089,18 +3089,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1901, - "time": 0.34725274725274724, + "noteOrder": 1336, + "time": 0.24395604395604395, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3112,18 +3112,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1925, - "time": 0.3516483516483517, + "noteOrder": 1336, + "time": 0.24395604395604395, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3140,13 +3140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 1949, - "time": 0.35604395604395606, + "noteOrder": 1348, + "time": 0.24615384615384614, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3158,18 +3158,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1973, - "time": 0.3604395604395605, + "noteOrder": 1360, + "time": 0.24835164835164833, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3186,13 +3186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1997, - "time": 0.3648351648351648, + "noteOrder": 1360, + "time": 0.24835164835164833, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3209,13 +3209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1997, - "time": 0.3648351648351648, + "noteOrder": 1372, + "time": 0.25054945054945055, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3232,13 +3232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2021, - "time": 0.3692307692307692, + "noteOrder": 1396, + "time": 0.2549450549450549, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3255,11 +3255,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2069, - "time": 0.378021978021978, + "noteOrder": 1396, + "time": 0.2549450549450549, "position": { "x": 7, "y": 0 @@ -3278,11 +3278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2117, - "time": 0.38681318681318677, + "noteOrder": 1408, + "time": 0.2571428571428571, "position": { "x": 7, "y": 0 @@ -3301,11 +3301,11 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2166, - "time": 0.3956043956043956, + "noteOrder": 1408, + "time": 0.2571428571428571, "position": { "x": 6, "y": 0 @@ -3324,13 +3324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2166, - "time": 0.3956043956043956, + "noteOrder": 1420, + "time": 0.2593406593406593, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3347,13 +3347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2214, - "time": 0.40439560439560435, + "noteOrder": 1432, + "time": 0.2615384615384615, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3370,11 +3370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2262, - "time": 0.41318681318681316, + "noteOrder": 1432, + "time": 0.2615384615384615, "position": { "x": 4, "y": 0 @@ -3393,13 +3393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2454, - "time": 0.4483516483516483, + "noteOrder": 1444, + "time": 0.2637362637362637, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3416,13 +3416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2526, - "time": 0.46153846153846156, + "noteOrder": 1456, + "time": 0.2659340659340659, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3439,13 +3439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2550, - "time": 0.4659340659340659, + "noteOrder": 1456, + "time": 0.2659340659340659, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3457,18 +3457,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2623, - "time": 0.47912087912087914, + "noteOrder": 1468, + "time": 0.2681318681318681, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3485,13 +3485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2647, - "time": 0.4835164835164835, + "noteOrder": 1492, + "time": 0.2725274725274725, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3503,18 +3503,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 2671, - "time": 0.4879120879120879, + "noteOrder": 1492, + "time": 0.2725274725274725, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3531,11 +3531,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 49, "indexInLine": 2, "isSliding": false, - "noteOrder": 2695, - "time": 0.4923076923076923, + "noteOrder": 1516, + "time": 0.27692307692307694, "position": { "x": 6, "y": 0 @@ -3554,13 +3554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 49, "indexInLine": 3, "isSliding": false, - "noteOrder": 2719, - "time": 0.49670329670329666, + "noteOrder": 1540, + "time": 0.2813186813186813, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3577,13 +3577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2743, - "time": 0.5010989010989011, + "noteOrder": 1565, + "time": 0.2857142857142857, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3595,18 +3595,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 49, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2767, - "time": 0.5054945054945055, + "noteOrder": 1589, + "time": 0.2901098901098901, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3618,18 +3618,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2791, - "time": 0.50989010989011, + "noteOrder": 1877, + "time": 0.34285714285714286, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3641,18 +3641,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 3, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2815, - "time": 0.5142857142857142, + "noteOrder": 1902, + "time": 0.34725274725274724, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3664,18 +3664,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2839, - "time": 0.5186813186813186, + "noteOrder": 1926, + "time": 0.3516483516483516, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3692,13 +3692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2863, - "time": 0.5230769230769231, + "noteOrder": 1950, + "time": 0.356043956043956, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3710,16 +3710,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 2887, - "time": 0.5274725274725275, + "noteOrder": 1974, + "time": 0.36043956043956044, "position": { "x": 6, "y": 0 @@ -3738,13 +3738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 69, "indexInLine": 2, "isSliding": false, - "noteOrder": 2911, - "time": 0.5318681318681319, + "noteOrder": 1998, + "time": 0.3648351648351648, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3761,11 +3761,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2911, - "time": 0.5318681318681319, + "noteOrder": 1998, + "time": 0.3648351648351648, "position": { "x": 4, "y": 0 @@ -3784,13 +3784,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2935, - "time": 0.5362637362637362, + "noteOrder": 2022, + "time": 0.3692307692307692, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3807,11 +3807,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2935, - "time": 0.5362637362637362, + "noteOrder": 2070, + "time": 0.378021978021978, "position": { "x": 7, "y": 0 @@ -3830,13 +3830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2960, - "time": 0.5406593406593406, + "noteOrder": 2118, + "time": 0.3868131868131868, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3848,18 +3848,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2984, - "time": 0.5450549450549451, + "noteOrder": 2166, + "time": 0.3956043956043956, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3871,18 +3871,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 2, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3008, - "time": 0.5494505494505494, + "noteOrder": 2166, + "time": 0.3956043956043956, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3899,13 +3899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3008, - "time": 0.5494505494505494, + "noteOrder": 2214, + "time": 0.40439560439560435, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3917,16 +3917,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2263, + "time": 0.41318681318681316, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 3032, - "time": 0.5538461538461539, + "noteOrder": 2455, + "time": 0.4483516483516483, "position": { "x": 6, "y": 0 @@ -3945,13 +3968,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3032, - "time": 0.5538461538461539, + "noteOrder": 2527, + "time": 0.4615384615384615, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3963,16 +3986,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 3056, - "time": 0.5582417582417583, + "noteOrder": 2551, + "time": 0.4659340659340659, "position": { "x": 4, "y": 0 @@ -3991,13 +4014,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3056, - "time": 0.5582417582417583, + "noteOrder": 2624, + "time": 0.47912087912087914, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4009,16 +4032,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 3080, - "time": 0.5626373626373626, + "noteOrder": 2648, + "time": 0.4835164835164835, "position": { "x": 6, "y": 0 @@ -4037,13 +4060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3080, - "time": 0.5626373626373626, + "noteOrder": 2672, + "time": 0.4879120879120879, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4055,18 +4078,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3104, - "time": 0.567032967032967, + "noteOrder": 2696, + "time": 0.4923076923076923, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4078,16 +4101,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3104, - "time": 0.567032967032967, + "noteOrder": 2720, + "time": 0.49670329670329666, "position": { "x": 5, "y": 0 @@ -4106,13 +4129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 95, "indexInLine": 1, "isSliding": false, - "noteOrder": 3128, - "time": 0.5714285714285714, + "noteOrder": 2744, + "time": 0.5010989010989011, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4124,18 +4147,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3224, - "time": 0.589010989010989, + "noteOrder": 2768, + "time": 0.5054945054945055, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4152,13 +4175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3272, - "time": 0.5978021978021979, + "noteOrder": 2792, + "time": 0.5098901098901099, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4175,13 +4198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3272, - "time": 0.5978021978021979, + "noteOrder": 2816, + "time": 0.5142857142857142, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4193,18 +4216,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3320, - "time": 0.6065934065934065, + "noteOrder": 2840, + "time": 0.5186813186813186, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4216,16 +4239,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3320, - "time": 0.6065934065934065, + "noteOrder": 2852, + "time": 0.5208791208791209, "position": { "x": 3, "y": 0 @@ -4244,13 +4267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3369, - "time": 0.6153846153846154, + "noteOrder": 2852, + "time": 0.5208791208791209, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4267,13 +4290,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3369, - "time": 0.6153846153846154, + "noteOrder": 2864, + "time": 0.523076923076923, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4290,11 +4313,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3417, - "time": 0.6241758241758242, + "noteOrder": 2888, + "time": 0.5274725274725274, "position": { "x": 6, "y": 0 @@ -4313,13 +4336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3417, - "time": 0.6241758241758242, + "noteOrder": 2912, + "time": 0.5318681318681318, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4331,18 +4354,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 3465, - "time": 0.632967032967033, + "noteOrder": 2912, + "time": 0.5318681318681318, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4359,11 +4382,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 102, "indexInLine": 2, "isSliding": false, - "noteOrder": 3513, - "time": 0.6417582417582417, + "noteOrder": 2937, + "time": 0.5362637362637362, "position": { "x": 4, "y": 0 @@ -4382,13 +4405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3513, - "time": 0.6417582417582417, + "noteOrder": 2937, + "time": 0.5362637362637362, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4405,13 +4428,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3561, - "time": 0.6505494505494506, + "noteOrder": 2949, + "time": 0.5384615384615384, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4428,13 +4451,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 2, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3597, - "time": 0.6571428571428571, + "noteOrder": 2949, + "time": 0.5384615384615384, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4451,11 +4474,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3609, - "time": 0.6593406593406593, + "noteOrder": 2961, + "time": 0.5406593406593406, "position": { "x": 3, "y": 0 @@ -4474,13 +4497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3633, - "time": 0.6637362637362637, + "noteOrder": 2985, + "time": 0.545054945054945, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4492,18 +4515,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3657, - "time": 0.6681318681318682, + "noteOrder": 3009, + "time": 0.5494505494505494, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4520,13 +4543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3681, - "time": 0.6725274725274725, + "noteOrder": 3009, + "time": 0.5494505494505494, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4543,13 +4566,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3705, - "time": 0.676923076923077, + "noteOrder": 3033, + "time": 0.5538461538461539, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4561,18 +4584,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3729, - "time": 0.6813186813186813, + "noteOrder": 3033, + "time": 0.5538461538461539, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4584,18 +4607,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3754, - "time": 0.6857142857142857, + "noteOrder": 3057, + "time": 0.5582417582417583, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4612,11 +4635,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3778, - "time": 0.6901098901098901, + "noteOrder": 3057, + "time": 0.5582417582417583, "position": { "x": 7, "y": 0 @@ -4635,11 +4658,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3802, - "time": 0.6945054945054945, + "noteOrder": 3081, + "time": 0.5626373626373626, "position": { "x": 6, "y": 0 @@ -4658,13 +4681,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 109, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3898, - "time": 0.7120879120879121, + "noteOrder": 3081, + "time": 0.5626373626373626, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4681,11 +4704,1828 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3105, + "time": 0.567032967032967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3105, + "time": 0.567032967032967, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3129, + "time": 0.5714285714285714, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3225, + "time": 0.589010989010989, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3274, + "time": 0.5978021978021978, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3274, + "time": 0.5978021978021978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3322, + "time": 0.6065934065934065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3322, + "time": 0.6065934065934065, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3370, + "time": 0.6153846153846153, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3370, + "time": 0.6153846153846153, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3418, + "time": 0.6241758241758241, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3418, + "time": 0.6241758241758241, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3466, + "time": 0.6329670329670329, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3514, + "time": 0.6417582417582417, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3514, + "time": 0.6417582417582417, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3562, + "time": 0.6505494505494505, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3598, + "time": 0.6571428571428571, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3611, + "time": 0.6593406593406593, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3623, + "time": 0.6615384615384615, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3623, + "time": 0.6615384615384615, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3635, + "time": 0.6637362637362637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3647, + "time": 0.6659340659340659, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3647, + "time": 0.6659340659340659, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3659, + "time": 0.6681318681318681, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3671, + "time": 0.6703296703296703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3671, + "time": 0.6703296703296703, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3683, + "time": 0.6725274725274725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6747252747252747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3695, + "time": 0.6747252747252747, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3707, + "time": 0.676923076923077, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3719, + "time": 0.679120879120879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3719, + "time": 0.679120879120879, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3731, + "time": 0.6813186813186813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3743, + "time": 0.6835164835164834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3743, + "time": 0.6835164835164834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3755, + "time": 0.6857142857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3767, + "time": 0.6879120879120878, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3767, + "time": 0.6879120879120878, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3779, + "time": 0.6901098901098901, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3803, + "time": 0.6945054945054945, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3899, + "time": 0.712087912087912, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3923, + "time": 0.7164835164835164, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3947, + "time": 0.7208791208791209, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3972, + "time": 0.7252747252747253, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3996, + "time": 0.7296703296703296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4008, + "time": 0.7318681318681318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4008, + "time": 0.7318681318681318, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4020, + "time": 0.734065934065934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4032, + "time": 0.7362637362637362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4032, + "time": 0.7362637362637362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4092, + "time": 0.7472527472527472, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4104, + "time": 0.7494505494505495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4104, + "time": 0.7494505494505495, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4116, + "time": 0.7516483516483516, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4128, + "time": 0.7538461538461538, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4128, + "time": 0.7538461538461538, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4140, + "time": 0.756043956043956, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4152, + "time": 0.7582417582417582, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4152, + "time": 0.7582417582417582, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4164, + "time": 0.7604395604395604, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4176, + "time": 0.7626373626373626, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4176, + "time": 0.7626373626373626, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4188, + "time": 0.7648351648351648, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4212, + "time": 0.7692307692307693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4236, + "time": 0.7736263736263737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4260, + "time": 0.778021978021978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4381, + "time": 0.7999999999999999, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4453, + "time": 0.8131868131868131, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4477, + "time": 0.8175824175824176, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4549, + "time": 0.8307692307692307, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4573, + "time": 0.8351648351648351, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4597, + "time": 0.8395604395604395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4621, + "time": 0.8439560439560438, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4646, + "time": 0.8483516483516482, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4670, + "time": 0.8527472527472527, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4694, + "time": 0.8571428571428571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4718, + "time": 0.8615384615384616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4742, + "time": 0.865934065934066, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4766, + "time": 0.8703296703296703, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3922, - "time": 0.7164835164835165, + "noteOrder": 4778, + "time": 0.8725274725274724, "position": { "x": 3, "y": 0 @@ -4704,13 +6544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3946, - "time": 0.720879120879121, + "noteOrder": 4778, + "time": 0.8725274725274724, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4722,18 +6562,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 170, "indexInLine": 1, "isSliding": false, - "noteOrder": 3970, - "time": 0.7252747252747253, + "noteOrder": 4790, + "time": 0.8747252747252747, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4750,13 +6590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3994, - "time": 0.7296703296703296, + "noteOrder": 4802, + "time": 0.8769230769230768, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4773,11 +6613,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4018, - "time": 0.7340659340659341, + "noteOrder": 4802, + "time": 0.8769230769230768, "position": { "x": 4, "y": 0 @@ -4791,18 +6631,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4090, - "time": 0.7472527472527473, + "noteOrder": 4814, + "time": 0.8791208791208791, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4814,18 +6654,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4114, - "time": 0.7516483516483516, + "noteOrder": 4826, + "time": 0.8813186813186812, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4842,13 +6682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4139, - "time": 0.756043956043956, + "noteOrder": 4826, + "time": 0.8813186813186812, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4860,18 +6700,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4163, - "time": 0.7604395604395604, + "noteOrder": 4862, + "time": 0.8879120879120879, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4883,18 +6723,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4187, - "time": 0.7648351648351648, + "noteOrder": 4874, + "time": 0.8901098901098901, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4911,13 +6751,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4211, - "time": 0.7692307692307693, + "noteOrder": 4874, + "time": 0.8901098901098901, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4934,13 +6774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 2, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4235, - "time": 0.7736263736263735, + "noteOrder": 4886, + "time": 0.8923076923076922, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4952,18 +6792,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 3, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4259, - "time": 0.778021978021978, + "noteOrder": 4898, + "time": 0.8945054945054944, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4975,18 +6815,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4379, - "time": 0.8, + "noteOrder": 4898, + "time": 0.8945054945054944, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4998,18 +6838,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 4451, - "time": 0.8131868131868132, + "noteOrder": 4910, + "time": 0.8967032967032966, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5026,13 +6866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4475, - "time": 0.8175824175824176, + "noteOrder": 4922, + "time": 0.8989010989010988, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5044,16 +6884,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4548, - "time": 0.8307692307692307, + "noteOrder": 4922, + "time": 0.8989010989010988, "position": { "x": 4, "y": 0 @@ -5067,16 +6907,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4572, - "time": 0.8351648351648352, + "noteOrder": 4958, + "time": 0.9054945054945054, "position": { "x": 7, "y": 0 @@ -5095,13 +6935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4596, - "time": 0.8395604395604396, + "noteOrder": 4970, + "time": 0.9076923076923077, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5118,11 +6958,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 2, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4620, - "time": 0.843956043956044, + "noteOrder": 4970, + "time": 0.9076923076923077, "position": { "x": 6, "y": 0 @@ -5141,13 +6981,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 3, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4644, - "time": 0.8483516483516483, + "noteOrder": 4982, + "time": 0.9098901098901099, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5159,18 +6999,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4668, - "time": 0.8527472527472527, + "noteOrder": 4995, + "time": 0.9120879120879121, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5187,13 +7027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4692, - "time": 0.8571428571428572, + "noteOrder": 4995, + "time": 0.9120879120879121, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5210,13 +7050,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 2, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4716, - "time": 0.8615384615384615, + "noteOrder": 5007, + "time": 0.9142857142857143, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5228,18 +7068,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 3, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4740, - "time": 0.865934065934066, + "noteOrder": 5019, + "time": 0.9164835164835164, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5251,18 +7091,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4764, - "time": 0.8703296703296703, + "noteOrder": 5019, + "time": 0.9164835164835164, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5274,18 +7114,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4788, - "time": 0.8747252747252747, + "noteOrder": 5055, + "time": 0.923076923076923, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5297,18 +7137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4812, - "time": 0.8791208791208791, + "noteOrder": 5067, + "time": 0.9252747252747252, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5325,13 +7165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4860, - "time": 0.8879120879120879, + "noteOrder": 5067, + "time": 0.9252747252747252, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5343,18 +7183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4884, - "time": 0.8923076923076924, + "noteOrder": 5079, + "time": 0.9274725274725274, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5366,18 +7206,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4908, - "time": 0.8967032967032966, + "noteOrder": 5091, + "time": 0.9296703296703296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5394,13 +7234,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4957, - "time": 0.9054945054945055, + "noteOrder": 5091, + "time": 0.9296703296703296, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5417,13 +7257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4981, - "time": 0.9098901098901099, + "noteOrder": 5103, + "time": 0.9318681318681318, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5440,13 +7280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5005, - "time": 0.9142857142857143, + "noteOrder": 5115, + "time": 0.9340659340659341, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5458,18 +7298,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5053, - "time": 0.9230769230769231, + "noteOrder": 5115, + "time": 0.9340659340659341, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5486,11 +7326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5077, - "time": 0.9274725274725275, + "noteOrder": 5127, + "time": 0.9362637362637362, "position": { "x": 7, "y": 0 @@ -5509,13 +7349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5101, - "time": 0.9318681318681318, + "noteOrder": 5139, + "time": 0.9384615384615385, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5527,18 +7367,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5125, - "time": 0.9362637362637363, + "noteOrder": 5139, + "time": 0.9384615384615385, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5556,10 +7396,10 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5149, - "time": 0.9406593406593406, + "noteOrder": 5151, + "time": 0.9406593406593405, "position": { "x": 3, "y": 0 @@ -5579,10 +7419,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5173, - "time": 0.9450549450549451, + "noteOrder": 5175, + "time": 0.9450549450549449, "position": { "x": 3, "y": 0 @@ -5602,10 +7442,10 @@ }, { "lineGroupId": 185, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5197, - "time": 0.9494505494505494, + "noteOrder": 5199, + "time": 0.9494505494505493, "position": { "x": 4, "y": 0 @@ -5625,10 +7465,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5221, - "time": 0.9538461538461538, + "noteOrder": 5223, + "time": 0.9538461538461539, "position": { "x": 5, "y": 0 @@ -5648,9 +7488,9 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5342, + "noteOrder": 5344, "time": 0.9758241758241758, "position": { "x": 5, diff --git a/tracks/VOLAQUAS/info.json b/tracks/VOLAQUAS/info.json index 98efc67c..bbc51dd2 100644 --- a/tracks/VOLAQUAS/info.json +++ b/tracks/VOLAQUAS/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "VOLAQUAS", - "SongLength": "139.102041", + "SongLength": "129.149388", "SongAuthorName": "BEMANI Sound Team \"DJ TOTTO VS \u514e\u3005\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Valkyrie/284_difficulty_1a.json b/tracks/Valkyrie/284_difficulty_1a.json index 8b06c892..97f1157c 100644 --- a/tracks/Valkyrie/284_difficulty_1a.json +++ b/tracks/Valkyrie/284_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 144, - "time": 0.02973977695167286, + "time": 0.029739776951672865, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 168, - "time": 0.03469640644361834, + "time": 0.034696406443618336, "position": { "x": 3, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 288, - "time": 0.05947955390334572, + "noteOrder": 289, + "time": 0.05947955390334573, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 313, - "time": 0.06443618339529121, + "time": 0.0644361833952912, "position": { "x": 5, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 337, - "time": 0.06939281288723669, + "time": 0.06939281288723667, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 625, - "time": 0.12887236679058242, + "time": 0.1288723667905824, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 746, "time": 0.1536555142503098, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.15861214374225527, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.16356877323420074, "position": { "x": 7, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.16852540272614622, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.16852540272614622, "position": { "x": 6, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17348203221809172, + "noteOrder": 842, + "time": 0.1734820322180917, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17348203221809172, + "noteOrder": 842, + "time": 0.1734820322180917, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.18339529120198267, + "noteOrder": 890, + "time": 0.18339529120198264, "position": { "x": 4, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 913, - "time": 0.18835192069392814, + "noteOrder": 914, + "time": 0.18835192069392812, "position": { "x": 6, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 986, - "time": 0.20322180916976457, + "time": 0.20322180916976454, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1082, - "time": 0.22304832713754646, + "time": 0.2230483271375465, "position": { "x": 2, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1154, - "time": 0.2379182156133829, + "time": 0.23791821561338292, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1178, - "time": 0.24287484510532836, + "noteOrder": 1179, + "time": 0.2428748451053284, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.24783147459727384, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.24783147459727384, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1226, + "noteOrder": 1227, "time": 0.25278810408921937, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1226, + "noteOrder": 1227, "time": 0.25278810408921937, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.2627013630731103, + "noteOrder": 1275, + "time": 0.26270136307311026, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.27261462205700127, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1346, - "time": 0.27757125154894674, + "noteOrder": 1347, + "time": 0.2775712515489467, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.2825278810408922, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2874845105328377, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.29244114002478316, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.3023543990086741, "position": { "x": 2, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.31226765799256506, "position": { "x": 8, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.3618339529120198, "position": { "x": 5, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.36679058240396534, + "noteOrder": 1780, + "time": 0.3667905824039653, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.37174721189591076, + "noteOrder": 1804, + "time": 0.3717472118959108, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.39157372986369265, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.41140024783147466, + "noteOrder": 1996, + "time": 0.4114002478314746, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2043, - "time": 0.4213135068153656, + "noteOrder": 2044, + "time": 0.4213135068153655, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.43122676579925656, + "noteOrder": 2092, + "time": 0.4312267657992565, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.4609665427509294, "position": { "x": 8, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.47087980173482036, + "noteOrder": 2285, + "time": 0.4708798017348203, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.4758364312267658, + "noteOrder": 2309, + "time": 0.47583643122676583, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.4758364312267658, + "noteOrder": 2309, + "time": 0.47583643122676583, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.5006195786864932, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.5055762081784387, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.5105328376703842, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.5154894671623297, + "noteOrder": 2501, + "time": 0.5154894671623296, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.5204460966542751, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.5254027261462206, + "noteOrder": 2549, + "time": 0.5254027261462205, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2548, - "time": 0.5254027261462206, + "noteOrder": 2549, + "time": 0.5254027261462205, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.530359355638166, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.530359355638166, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2622, "time": 0.540272614622057, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2646, "time": 0.5452292441140025, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2670, "time": 0.550185873605948, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.5551425030978935, + "noteOrder": 2694, + "time": 0.5551425030978934, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2718, "time": 0.5600991325898389, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2742, "time": 0.5650557620817844, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2740, + "noteOrder": 2742, "time": 0.5650557620817844, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5700123915737298, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5700123915737298, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.5799256505576208, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2837, + "noteOrder": 2838, "time": 0.5848822800495663, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5898389095415117, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.5947955390334573, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.5997521685254027, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6047087980173482, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6047087980173482, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.6096654275092938, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.6096654275092938, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3005, - "time": 0.6195786864931847, + "noteOrder": 3006, + "time": 0.6195786864931846, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3030, "time": 0.6245353159851301, "position": { "x": 5, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.6294919454770757, + "noteOrder": 3055, + "time": 0.6294919454770755, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3079, "time": 0.6344485749690211, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3103, "time": 0.6394052044609666, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.644361833952912, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.644361833952912, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6493184634448576, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6493184634448576, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.6790582403965303, + "noteOrder": 3295, + "time": 0.6790582403965304, "position": { "x": 4, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3343, "time": 0.6889714993804213, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3391, "time": 0.6988847583643122, "position": { "x": 2, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3438, + "noteOrder": 3439, "time": 0.7087980173482032, "position": { "x": 8, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3536, "time": 0.7286245353159851, "position": { "x": 5, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3678, - "time": 0.7583643122676581, + "noteOrder": 3680, + "time": 0.758364312267658, "position": { "x": 6, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3728, "time": 0.7682775712515489, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3776, "time": 0.77819083023544, "position": { "x": 8, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.7881040892193308, "position": { "x": 2, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.7930607187112764, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3870, - "time": 0.7980173482032219, + "noteOrder": 3872, + "time": 0.7980173482032218, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.8029739776951672, + "noteOrder": 3896, + "time": 0.8029739776951673, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.8029739776951672, + "noteOrder": 3896, + "time": 0.8029739776951673, "position": { "x": 6, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.8079306071871127, + "noteOrder": 3920, + "time": 0.8079306071871128, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.8079306071871127, + "noteOrder": 3920, + "time": 0.8079306071871128, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.8178438661710038, + "noteOrder": 3968, + "time": 0.8178438661710037, "position": { "x": 4, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.8228004956629493, + "noteOrder": 3993, + "time": 0.8228004956629492, "position": { "x": 5, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8277571251548946, + "noteOrder": 4017, + "time": 0.8277571251548947, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4039, + "noteOrder": 4041, "time": 0.8327137546468402, "position": { "x": 7, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4065, "time": 0.8376703841387857, "position": { "x": 3, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.8426270136307312, + "noteOrder": 4089, + "time": 0.842627013630731, "position": { "x": 6, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.8426270136307312, + "noteOrder": 4089, + "time": 0.842627013630731, "position": { "x": 4, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8475836431226765, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8475836431226765, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4159, + "noteOrder": 4161, "time": 0.8574969021065676, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4183, - "time": 0.8624535315985131, + "noteOrder": 4185, + "time": 0.862453531598513, "position": { "x": 5, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.8674101610904584, + "noteOrder": 4209, + "time": 0.8674101610904585, "position": { "x": 4, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4233, "time": 0.872366790582404, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4255, - "time": 0.8773234200743495, + "noteOrder": 4257, + "time": 0.8773234200743494, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4279, - "time": 0.882280049566295, + "noteOrder": 4281, + "time": 0.8822800495662949, "position": { "x": 4, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4279, - "time": 0.882280049566295, + "noteOrder": 4281, + "time": 0.8822800495662949, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.8872366790582403, + "noteOrder": 4305, + "time": 0.8872366790582404, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.8872366790582403, + "noteOrder": 4305, + "time": 0.8872366790582404, "position": { "x": 7, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4353, "time": 0.8971499380421314, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4401, "time": 0.9070631970260222, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4546, "time": 0.9368029739776952, "position": { "x": 6, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.9467162329615862, + "noteOrder": 4594, + "time": 0.9467162329615861, "position": { "x": 4, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4616, - "time": 0.9516728624535316, + "noteOrder": 4618, + "time": 0.9516728624535317, "position": { "x": 7, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4640, - "time": 0.9566294919454771, + "noteOrder": 4642, + "time": 0.9566294919454772, "position": { "x": 3, "y": 0 @@ -2816,7 +2816,7 @@ "lineNodes": [ { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 216, "time": 0.0446096654275093, @@ -2839,9 +2839,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 264, + "noteOrder": 265, "time": 0.05452292441140025, "position": { "x": 7, @@ -2862,7 +2862,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 216, "time": 0.0446096654275093, @@ -2885,9 +2885,9 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 264, + "noteOrder": 265, "time": 0.05452292441140025, "position": { "x": 3, @@ -2908,7 +2908,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.08426270136307311, @@ -2931,10 +2931,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, - "time": 0.09417596034696407, + "time": 0.09417596034696406, "position": { "x": 7, "y": 0 @@ -2954,7 +2954,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.08426270136307311, @@ -2977,10 +2977,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 457, - "time": 0.09417596034696407, + "time": 0.09417596034696406, "position": { "x": 3, "y": 0 @@ -3000,7 +3000,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.09913258983890955, @@ -3023,7 +3023,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.10408921933085502, @@ -3046,10 +3046,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.11895910780669144, + "time": 0.11895910780669146, "position": { "x": 7, "y": 0 @@ -3069,7 +3069,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 601, "time": 0.12391573729863692, @@ -3092,10 +3092,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, - "time": 0.13878562577447337, + "time": 0.13878562577447334, "position": { "x": 3, "y": 0 @@ -3115,7 +3115,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 697, "time": 0.14374225526641884, @@ -3138,9 +3138,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 721, + "noteOrder": 722, "time": 0.14869888475836432, "position": { "x": 7, @@ -3161,9 +3161,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 745, + "noteOrder": 746, "time": 0.1536555142503098, "position": { "x": 7, @@ -3184,9 +3184,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.1784386617100372, "position": { "x": 3, @@ -3207,7 +3207,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 962, "time": 0.1982651796778191, @@ -3230,7 +3230,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, "time": 0.1982651796778191, @@ -3253,7 +3253,7 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, "time": 0.218091697645601, @@ -3276,7 +3276,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, "time": 0.218091697645601, @@ -3299,10 +3299,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1082, - "time": 0.22304832713754646, + "time": 0.2230483271375465, "position": { "x": 4, "y": 0 @@ -3322,7 +3322,7 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1106, "time": 0.22800495662949194, @@ -3345,7 +3345,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1130, "time": 0.23296158612143741, @@ -3368,10 +3368,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.25774473358116484, + "noteOrder": 1251, + "time": 0.2577447335811648, "position": { "x": 4, "y": 0 @@ -3391,10 +3391,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.2627013630731103, + "noteOrder": 1275, + "time": 0.26270136307311026, "position": { "x": 4, "y": 0 @@ -3414,9 +3414,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.2676579925650558, "position": { "x": 6, @@ -3437,9 +3437,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.27261462205700127, "position": { "x": 6, @@ -3460,9 +3460,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.29739776951672864, "position": { "x": 4, @@ -3483,9 +3483,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.3023543990086741, "position": { "x": 4, @@ -3506,9 +3506,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.3073110285006196, "position": { "x": 6, @@ -3529,9 +3529,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.31226765799256506, "position": { "x": 6, @@ -3552,7 +3552,7 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1635, "time": 0.33705080545229243, @@ -3574,11 +3574,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1659, - "time": 0.3420074349442379, + "noteOrder": 1648, + "time": 0.3395291201982652, "position": { "x": 7, "y": 0 @@ -3592,18 +3592,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1683, - "time": 0.34696406443618344, + "noteOrder": 1648, + "time": 0.3395291201982652, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3620,13 +3620,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1707, - "time": 0.35192069392812886, + "noteOrder": 1660, + "time": 0.34200743494423796, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3638,18 +3638,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1731, - "time": 0.3568773234200744, + "noteOrder": 1660, + "time": 0.34200743494423796, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3666,11 +3666,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 1755, - "time": 0.3618339529120198, + "noteOrder": 1660, + "time": 0.34200743494423796, "position": { "x": 7, "y": 0 @@ -3684,18 +3684,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 76, "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.37174721189591076, + "noteOrder": 1672, + "time": 0.3444857496902107, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3707,18 +3707,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.3767038413878563, + "noteOrder": 1672, + "time": 0.3444857496902107, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3735,13 +3735,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1851, - "time": 0.3816604708798017, + "noteOrder": 1684, + "time": 0.3469640644361834, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3758,11 +3758,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1851, - "time": 0.3816604708798017, + "noteOrder": 1684, + "time": 0.3469640644361834, "position": { "x": 5, "y": 0 @@ -3776,18 +3776,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 77, "indexInLine": 1, "isSliding": false, - "noteOrder": 1875, - "time": 0.38661710037174724, + "noteOrder": 1684, + "time": 0.3469640644361834, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3804,13 +3804,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.38661710037174724, + "noteOrder": 1696, + "time": 0.3494423791821561, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3822,18 +3822,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1899, - "time": 0.39157372986369265, + "noteOrder": 1696, + "time": 0.3494423791821561, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3845,18 +3845,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1923, - "time": 0.3965303593556382, + "noteOrder": 1708, + "time": 0.35192069392812886, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3868,18 +3868,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1947, - "time": 0.4014869888475836, + "noteOrder": 1708, + "time": 0.35192069392812886, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3896,13 +3896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1971, - "time": 0.40644361833952913, + "noteOrder": 1708, + "time": 0.35192069392812886, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3919,13 +3919,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.4163568773234201, + "noteOrder": 1720, + "time": 0.3543990086741016, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3937,16 +3937,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2043, - "time": 0.4213135068153656, + "noteOrder": 1720, + "time": 0.3543990086741016, "position": { "x": 6, "y": 0 @@ -3960,18 +3960,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2067, - "time": 0.42627013630731103, + "noteOrder": 1732, + "time": 0.3568773234200744, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3988,13 +3988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2091, - "time": 0.43122676579925656, + "noteOrder": 1732, + "time": 0.3568773234200744, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4011,11 +4011,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.436183395291202, + "noteOrder": 1732, + "time": 0.3568773234200744, "position": { "x": 7, "y": 0 @@ -4034,13 +4034,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2139, - "time": 0.4411400247831475, + "noteOrder": 1756, + "time": 0.3618339529120198, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4052,18 +4052,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2164, - "time": 0.44609665427509293, + "noteOrder": 1804, + "time": 0.3717472118959108, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4080,13 +4080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2188, - "time": 0.45105328376703846, + "noteOrder": 1828, + "time": 0.37670384138785623, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4098,18 +4098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2188, - "time": 0.45105328376703846, + "noteOrder": 1852, + "time": 0.3816604708798017, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4126,13 +4126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2212, - "time": 0.4560099132589839, + "noteOrder": 1852, + "time": 0.3816604708798017, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4144,18 +4144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2212, - "time": 0.4560099132589839, + "noteOrder": 1876, + "time": 0.38661710037174724, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4172,13 +4172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2236, - "time": 0.4609665427509294, + "noteOrder": 1876, + "time": 0.38661710037174724, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4190,18 +4190,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2260, - "time": 0.46592317224287483, + "noteOrder": 1900, + "time": 0.39157372986369265, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4218,13 +4218,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, - "time": 0.47087980173482036, + "noteOrder": 1924, + "time": 0.3965303593556382, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4241,13 +4241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2332, - "time": 0.4807930607187113, + "noteOrder": 1936, + "time": 0.3990086741016109, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4264,13 +4264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2344, - "time": 0.48327137546468407, + "noteOrder": 1936, + "time": 0.3990086741016109, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4287,13 +4287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 2, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2368, - "time": 0.4882280049566295, + "noteOrder": 1948, + "time": 0.40148698884758366, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4305,18 +4305,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 3, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.49070631970260226, + "noteOrder": 1960, + "time": 0.4039653035935564, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4328,18 +4328,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2332, - "time": 0.4807930607187113, + "noteOrder": 1960, + "time": 0.4039653035935564, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4356,11 +4356,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 2344, - "time": 0.48327137546468407, + "noteOrder": 1972, + "time": 0.4064436183395291, "position": { "x": 3, "y": 0 @@ -4374,18 +4374,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 89, "indexInLine": 2, "isSliding": false, - "noteOrder": 2368, - "time": 0.4882280049566295, + "noteOrder": 1984, + "time": 0.40892193308550184, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4397,18 +4397,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 89, "indexInLine": 3, "isSliding": false, - "noteOrder": 2380, - "time": 0.49070631970260226, + "noteOrder": 1984, + "time": 0.40892193308550184, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4420,16 +4420,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2404, - "time": 0.4956629491945477, + "noteOrder": 1996, + "time": 0.4114002478314746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1996, + "time": 0.4114002478314746, "position": { "x": 3, "y": 0 @@ -4448,13 +4471,59 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 91, "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.5154894671623297, + "noteOrder": 2020, + "time": 0.4163568773234201, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.4213135068153655, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.42627013630731103, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4471,11 +4540,34 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.5353159851301116, + "noteOrder": 2092, + "time": 0.4312267657992565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2117, + "time": 0.436183395291202, "position": { "x": 7, "y": 0 @@ -4494,11 +4586,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.5551425030978935, + "noteOrder": 2129, + "time": 0.4386617100371747, "position": { "x": 7, "y": 0 @@ -4517,13 +4609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2789, - "time": 0.5749690210656754, + "noteOrder": 2129, + "time": 0.4386617100371747, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4535,16 +4627,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 2813, - "time": 0.5799256505576208, + "noteOrder": 2141, + "time": 0.44114002478314746, "position": { "x": 3, "y": 0 @@ -4563,13 +4655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 98, "indexInLine": 2, "isSliding": false, - "noteOrder": 2885, - "time": 0.5947955390334573, + "noteOrder": 2153, + "time": 0.4436183395291202, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4586,13 +4678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2981, - "time": 0.6146220570012392, + "noteOrder": 2153, + "time": 0.4436183395291202, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4604,16 +4696,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3005, - "time": 0.6195786864931847, + "noteOrder": 2165, + "time": 0.446096654275093, "position": { "x": 7, "y": 0 @@ -4632,13 +4724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 99, "indexInLine": 2, "isSliding": false, - "noteOrder": 3077, - "time": 0.6344485749690211, + "noteOrder": 2189, + "time": 0.4510532837670384, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4655,11 +4747,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, - "time": 0.654275092936803, + "noteOrder": 2189, + "time": 0.4510532837670384, "position": { "x": 3, "y": 0 @@ -4678,11 +4770,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3197, - "time": 0.6592317224287485, + "noteOrder": 2213, + "time": 0.4560099132589839, "position": { "x": 3, "y": 0 @@ -4696,18 +4788,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, - "time": 0.6641883519206939, + "noteOrder": 2213, + "time": 0.4560099132589839, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4719,18 +4811,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 101, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3245, - "time": 0.6691449814126395, + "noteOrder": 2237, + "time": 0.4609665427509294, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4747,13 +4839,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, - "time": 0.6741016109045849, + "noteOrder": 2261, + "time": 0.46592317224287483, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4770,13 +4862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3293, - "time": 0.6790582403965303, + "noteOrder": 2285, + "time": 0.4708798017348203, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4793,11 +4885,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.6840148698884758, + "noteOrder": 2333, + "time": 0.48079306071871125, "position": { "x": 7, "y": 0 @@ -4811,16 +4903,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3341, - "time": 0.6889714993804213, + "noteOrder": 2345, + "time": 0.483271375464684, "position": { "x": 7, "y": 0 @@ -4834,18 +4926,1766 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.4882280049566295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.49070631970260226, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2333, + "time": 0.48079306071871125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2345, + "time": 0.483271375464684, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.4882280049566295, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2381, + "time": 0.49070631970260226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.4956629491945477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2501, + "time": 0.5154894671623296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2598, + "time": 0.5353159851301116, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2694, + "time": 0.5551425030978934, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.5749690210656754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2814, + "time": 0.5799256505576208, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5947955390334573, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.6146220570012392, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3006, + "time": 0.6195786864931846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3079, + "time": 0.6344485749690211, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3175, + "time": 0.654275092936803, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3187, + "time": 0.6567534076827757, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3187, + "time": 0.6567534076827757, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6592317224287484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6592317224287484, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6592317224287484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3211, + "time": 0.6617100371747212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3211, + "time": 0.6617100371747212, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6641883519206939, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6641883519206939, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3223, + "time": 0.6641883519206939, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3235, + "time": 0.6666666666666667, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3235, + "time": 0.6666666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6691449814126395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6691449814126395, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6691449814126395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3259, + "time": 0.6716232961586122, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3259, + "time": 0.6716232961586122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6741016109045849, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6741016109045849, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3271, + "time": 0.6741016109045849, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3295, + "time": 0.6790582403965304, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3319, + "time": 0.6840148698884759, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3343, + "time": 0.6889714993804213, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3367, + "time": 0.6939281288723668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3391, + "time": 0.6988847583643122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.7038413878562577, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3439, + "time": 0.7087980173482032, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.7137546468401488, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3475, + "time": 0.7162329615861215, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3475, + "time": 0.7162329615861215, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3487, + "time": 0.7187112763320942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3499, + "time": 0.721189591078067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3499, + "time": 0.721189591078067, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3511, + "time": 0.7236679058240396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3536, + "time": 0.7286245353159851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3560, + "time": 0.7335811648079306, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3572, + "time": 0.7360594795539034, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3572, + "time": 0.7360594795539034, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3584, + "time": 0.7385377942998761, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3584, + "time": 0.7385377942998761, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3584, + "time": 0.7385377942998761, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3596, + "time": 0.7410161090458488, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3596, + "time": 0.7410161090458488, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7434944237918216, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7434944237918216, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3608, + "time": 0.7434944237918216, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3620, + "time": 0.7459727385377943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3620, + "time": 0.7459727385377943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3632, + "time": 0.7484510532837672, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3632, + "time": 0.7484510532837672, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3632, + "time": 0.7484510532837672, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3644, + "time": 0.7509293680297399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3644, + "time": 0.7509293680297399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3656, + "time": 0.7534076827757125, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3656, + "time": 0.7534076827757125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3656, + "time": 0.7534076827757125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3680, + "time": 0.758364312267658, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7633209417596034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7682775712515489, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3365, - "time": 0.6939281288723669, + "noteOrder": 3752, + "time": 0.7732342007434945, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4857,18 +6697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3390, - "time": 0.6988847583643122, + "noteOrder": 3776, + "time": 0.77819083023544, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4880,18 +6720,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3414, - "time": 0.7038413878562577, + "noteOrder": 3800, + "time": 0.7831474597273853, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4903,18 +6743,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3438, - "time": 0.7087980173482032, + "noteOrder": 3824, + "time": 0.7881040892193308, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4926,16 +6766,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.7137546468401488, + "noteOrder": 3944, + "time": 0.8128872366790582, "position": { "x": 3, "y": 0 @@ -4954,13 +6794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3486, - "time": 0.7187112763320943, + "noteOrder": 3968, + "time": 0.8178438661710037, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4972,18 +6812,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3510, - "time": 0.7236679058240396, + "noteOrder": 4041, + "time": 0.8327137546468402, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5000,13 +6840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 3534, - "time": 0.7286245353159851, + "noteOrder": 4137, + "time": 0.8525402726146221, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5018,16 +6858,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3558, - "time": 0.7335811648079307, + "noteOrder": 4161, + "time": 0.8574969021065676, "position": { "x": 7, "y": 0 @@ -5046,13 +6886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3582, - "time": 0.7385377942998762, + "noteOrder": 4233, + "time": 0.872366790582404, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5064,16 +6904,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3606, - "time": 0.7434944237918215, + "noteOrder": 4329, + "time": 0.892193308550186, "position": { "x": 7, "y": 0 @@ -5092,11 +6932,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3630, - "time": 0.748451053283767, + "noteOrder": 4341, + "time": 0.8946716232961587, "position": { "x": 7, "y": 0 @@ -5110,18 +6950,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3654, - "time": 0.7534076827757126, + "noteOrder": 4341, + "time": 0.8946716232961587, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5138,13 +6978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3678, - "time": 0.7583643122676581, + "noteOrder": 4353, + "time": 0.8971499380421314, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5161,13 +7001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.7633209417596034, + "noteOrder": 4377, + "time": 0.9021065675340768, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5184,13 +7024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3726, - "time": 0.7682775712515489, + "noteOrder": 4389, + "time": 0.9045848822800495, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5207,11 +7047,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3750, - "time": 0.7732342007434945, + "noteOrder": 4389, + "time": 0.9045848822800495, "position": { "x": 6, "y": 0 @@ -5225,16 +7065,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3774, - "time": 0.77819083023544, + "noteOrder": 4401, + "time": 0.9070631970260222, "position": { "x": 6, "y": 0 @@ -5248,18 +7088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.7831474597273853, + "noteOrder": 4425, + "time": 0.9120198265179678, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5271,18 +7111,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3822, - "time": 0.7881040892193308, + "noteOrder": 4437, + "time": 0.9144981412639406, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5294,18 +7134,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3942, - "time": 0.8128872366790583, + "noteOrder": 4437, + "time": 0.9144981412639406, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5317,18 +7157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3966, - "time": 0.8178438661710038, + "noteOrder": 4449, + "time": 0.9169764560099133, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5340,16 +7180,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4039, - "time": 0.8327137546468402, + "noteOrder": 4449, + "time": 0.9169764560099133, "position": { "x": 5, "y": 0 @@ -5363,16 +7203,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4135, - "time": 0.8525402726146221, + "noteOrder": 4449, + "time": 0.9169764560099133, "position": { "x": 7, "y": 0 @@ -5386,16 +7226,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4159, - "time": 0.8574969021065676, + "noteOrder": 4462, + "time": 0.919454770755886, "position": { "x": 7, "y": 0 @@ -5409,18 +7249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 2, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4231, - "time": 0.872366790582404, + "noteOrder": 4462, + "time": 0.919454770755886, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5432,18 +7272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4327, - "time": 0.8921933085501859, + "noteOrder": 4474, + "time": 0.9219330855018588, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5455,18 +7295,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 2, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4351, - "time": 0.8971499380421314, + "noteOrder": 4474, + "time": 0.9219330855018588, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5478,16 +7318,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4375, - "time": 0.9021065675340769, + "noteOrder": 4474, + "time": 0.9219330855018588, "position": { "x": 7, "y": 0 @@ -5501,18 +7341,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, + "lineGroupId": 210, "indexInLine": 2, "isSliding": false, - "noteOrder": 4399, - "time": 0.9070631970260222, + "noteOrder": 4486, + "time": 0.9244114002478315, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5524,18 +7364,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.9120198265179678, + "noteOrder": 4486, + "time": 0.9244114002478315, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5552,13 +7392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4447, - "time": 0.9169764560099133, + "noteOrder": 4498, + "time": 0.9268897149938042, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5575,13 +7415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.9219330855018588, + "noteOrder": 4510, + "time": 0.929368029739777, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5593,18 +7433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4495, - "time": 0.9268897149938043, + "noteOrder": 4510, + "time": 0.929368029739777, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5622,9 +7462,9 @@ }, { "lineGroupId": 212, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4519, + "noteOrder": 4522, "time": 0.9318463444857497, "position": { "x": 7, @@ -5645,9 +7485,9 @@ }, { "lineGroupId": 212, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4543, + "noteOrder": 4546, "time": 0.9368029739776952, "position": { "x": 7, @@ -5668,10 +7508,10 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4567, - "time": 0.9417596034696407, + "noteOrder": 4570, + "time": 0.9417596034696406, "position": { "x": 3, "y": 0 @@ -5691,10 +7531,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4591, - "time": 0.9467162329615862, + "noteOrder": 4594, + "time": 0.9467162329615861, "position": { "x": 3, "y": 0 @@ -5714,10 +7554,10 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4664, - "time": 0.9615861214374226, + "noteOrder": 4666, + "time": 0.9615861214374225, "position": { "x": 7, "y": 0 @@ -5737,10 +7577,10 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.9640644361833953, + "noteOrder": 4678, + "time": 0.9640644361833952, "position": { "x": 7, "y": 0 @@ -5760,10 +7600,10 @@ }, { "lineGroupId": 218, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4700, - "time": 0.9690210656753409, + "noteOrder": 4702, + "time": 0.9690210656753407, "position": { "x": 3, "y": 0 @@ -5783,10 +7623,10 @@ }, { "lineGroupId": 218, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4712, - "time": 0.9714993804213135, + "noteOrder": 4714, + "time": 0.9714993804213136, "position": { "x": 3, "y": 0 @@ -5806,10 +7646,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4664, - "time": 0.9615861214374226, + "noteOrder": 4666, + "time": 0.9615861214374225, "position": { "x": 3, "y": 0 @@ -5829,10 +7669,10 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4676, - "time": 0.9640644361833953, + "noteOrder": 4678, + "time": 0.9640644361833952, "position": { "x": 3, "y": 0 @@ -5852,10 +7692,10 @@ }, { "lineGroupId": 219, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4700, - "time": 0.9690210656753409, + "noteOrder": 4702, + "time": 0.9690210656753407, "position": { "x": 7, "y": 0 @@ -5875,10 +7715,10 @@ }, { "lineGroupId": 219, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4712, - "time": 0.9714993804213135, + "noteOrder": 4714, + "time": 0.9714993804213136, "position": { "x": 7, "y": 0 diff --git a/tracks/Valkyrie/284_difficulty_1b.json b/tracks/Valkyrie/284_difficulty_1b.json index fc50802d..798ac365 100644 --- a/tracks/Valkyrie/284_difficulty_1b.json +++ b/tracks/Valkyrie/284_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.02973977695167286, + "time": 0.029739776951672865, "position": { "x": 7, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 288, - "time": 0.05947955390334572, + "noteOrder": 289, + "time": 0.05947955390334573, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 337, - "time": 0.06939281288723669, + "time": 0.06939281288723667, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 577, - "time": 0.11895910780669144, + "time": 0.11895910780669146, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 625, - "time": 0.12887236679058242, + "time": 0.1288723667905824, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 673, - "time": 0.13878562577447337, + "time": 0.13878562577447334, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 722, "time": 0.14869888475836432, "position": { "x": 3, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 746, "time": 0.1536555142503098, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.15861214374225527, "position": { "x": 7, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.16356877323420074, "position": { "x": 3, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.16852540272614622, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.16852540272614622, "position": { "x": 4, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17348203221809172, + "noteOrder": 842, + "time": 0.1734820322180917, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 841, - "time": 0.17348203221809172, + "noteOrder": 842, + "time": 0.1734820322180917, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 889, - "time": 0.18339529120198267, + "noteOrder": 890, + "time": 0.18339529120198264, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 986, - "time": 0.20322180916976457, + "time": 0.20322180916976454, "position": { "x": 4, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.24783147459727384, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.2627013630731103, + "noteOrder": 1275, + "time": 0.26270136307311026, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.27261462205700127, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.2825278810408922, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.29244114002478316, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.3073110285006196, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1659, - "time": 0.3420074349442379, + "noteOrder": 1660, + "time": 0.34200743494423796, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1683, - "time": 0.34696406443618344, + "noteOrder": 1684, + "time": 0.3469640644361834, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1707, + "noteOrder": 1708, "time": 0.35192069392812886, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.3568773234200744, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.3618339529120198, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.36679058240396534, + "noteOrder": 1780, + "time": 0.3667905824039653, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1779, - "time": 0.36679058240396534, + "noteOrder": 1780, + "time": 0.3667905824039653, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.37174721189591076, + "noteOrder": 1804, + "time": 0.3717472118959108, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1803, - "time": 0.37174721189591076, + "noteOrder": 1804, + "time": 0.3717472118959108, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1827, - "time": 0.3767038413878563, + "noteOrder": 1828, + "time": 0.37670384138785623, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.3816604708798017, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.38661710037174724, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.39157372986369265, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.3965303593556382, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.4014869888475836, + "noteOrder": 1948, + "time": 0.40148698884758366, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.40644361833952913, + "noteOrder": 1972, + "time": 0.4064436183395291, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1971, - "time": 0.40644361833952913, + "noteOrder": 1972, + "time": 0.4064436183395291, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.41140024783147466, + "noteOrder": 1996, + "time": 0.4114002478314746, "position": { "x": 7, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1995, - "time": 0.41140024783147466, + "noteOrder": 1996, + "time": 0.4114002478314746, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.4163568773234201, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2043, - "time": 0.4213135068153656, + "noteOrder": 2044, + "time": 0.4213135068153655, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.42627013630731103, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.43122676579925656, + "noteOrder": 2092, + "time": 0.4312267657992565, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2117, "time": 0.436183395291202, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2139, - "time": 0.4411400247831475, + "noteOrder": 2141, + "time": 0.44114002478314746, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.44609665427509293, + "noteOrder": 2165, + "time": 0.446096654275093, "position": { "x": 6, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2164, - "time": 0.44609665427509293, + "noteOrder": 2165, + "time": 0.446096654275093, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.45105328376703846, + "noteOrder": 2189, + "time": 0.4510532837670384, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2188, - "time": 0.45105328376703846, + "noteOrder": 2189, + "time": 0.4510532837670384, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2212, + "noteOrder": 2213, "time": 0.4560099132589839, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2237, "time": 0.4609665427509294, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.46592317224287483, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2284, - "time": 0.47087980173482036, + "noteOrder": 2285, + "time": 0.4708798017348203, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.4758364312267658, + "noteOrder": 2309, + "time": 0.47583643122676583, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2332, - "time": 0.4807930607187113, + "noteOrder": 2333, + "time": 0.48079306071871125, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4857496902106567, + "noteOrder": 2357, + "time": 0.4857496902106568, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2356, - "time": 0.4857496902106567, + "noteOrder": 2357, + "time": 0.4857496902106568, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.49070631970260226, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.49070631970260226, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.5006195786864932, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.5055762081784387, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.5105328376703842, "position": { "x": 5, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2500, - "time": 0.5154894671623297, + "noteOrder": 2501, + "time": 0.5154894671623296, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2525, "time": 0.5204460966542751, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2622, "time": 0.540272614622057, "position": { "x": 5, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2644, + "noteOrder": 2646, "time": 0.5452292441140025, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2670, "time": 0.550185873605948, "position": { "x": 5, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2692, - "time": 0.5551425030978935, + "noteOrder": 2694, + "time": 0.5551425030978934, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2716, + "noteOrder": 2718, "time": 0.5600991325898389, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2789, + "noteOrder": 2790, "time": 0.5749690210656754, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2813, + "noteOrder": 2814, "time": 0.5799256505576208, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2837, + "noteOrder": 2838, "time": 0.5848822800495663, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.5898389095415117, "position": { "x": 5, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.5947955390334573, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.5997521685254027, "position": { "x": 2, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6047087980173482, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.6047087980173482, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.6096654275092938, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.6096654275092938, "position": { "x": 7, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3005, - "time": 0.6195786864931847, + "noteOrder": 3006, + "time": 0.6195786864931846, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3053, - "time": 0.6294919454770757, + "noteOrder": 3055, + "time": 0.6294919454770755, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3079, "time": 0.6344485749690211, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3077, + "noteOrder": 3079, "time": 0.6344485749690211, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3103, "time": 0.6394052044609666, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3101, + "noteOrder": 3103, "time": 0.6394052044609666, "position": { "x": 6, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.6939281288723669, + "noteOrder": 3367, + "time": 0.6939281288723668, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3391, "time": 0.6988847583643122, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.7038413878562577, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3438, + "noteOrder": 3439, "time": 0.7087980173482032, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.7137546468401488, "position": { "x": 3, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3486, - "time": 0.7187112763320943, + "noteOrder": 3487, + "time": 0.7187112763320942, "position": { "x": 8, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.7236679058240396, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.7236679058240396, "position": { "x": 6, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3536, "time": 0.7286245353159851, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3534, + "noteOrder": 3536, "time": 0.7286245353159851, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3752, "time": 0.7732342007434945, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3776, "time": 0.77819083023544, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3800, "time": 0.7831474597273853, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3824, "time": 0.7881040892193308, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.7930607187112764, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3870, - "time": 0.7980173482032219, + "noteOrder": 3872, + "time": 0.7980173482032218, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.8029739776951672, + "noteOrder": 3896, + "time": 0.8029739776951673, "position": { "x": 4, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3894, - "time": 0.8029739776951672, + "noteOrder": 3896, + "time": 0.8029739776951673, "position": { "x": 6, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.8079306071871127, + "noteOrder": 3920, + "time": 0.8079306071871128, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3918, - "time": 0.8079306071871127, + "noteOrder": 3920, + "time": 0.8079306071871128, "position": { "x": 3, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.8178438661710038, + "noteOrder": 3968, + "time": 0.8178438661710037, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3991, - "time": 0.8228004956629493, + "noteOrder": 3993, + "time": 0.8228004956629492, "position": { "x": 5, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4015, - "time": 0.8277571251548946, + "noteOrder": 4017, + "time": 0.8277571251548947, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4039, + "noteOrder": 4041, "time": 0.8327137546468402, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4063, + "noteOrder": 4065, "time": 0.8376703841387857, "position": { "x": 3, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4087, - "time": 0.8426270136307312, + "noteOrder": 4089, + "time": 0.842627013630731, "position": { "x": 6, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4111, + "noteOrder": 4113, "time": 0.8475836431226765, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4159, + "noteOrder": 4161, "time": 0.8574969021065676, "position": { "x": 5, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4183, - "time": 0.8624535315985131, + "noteOrder": 4185, + "time": 0.862453531598513, "position": { "x": 5, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4207, - "time": 0.8674101610904584, + "noteOrder": 4209, + "time": 0.8674101610904585, "position": { "x": 5, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4233, "time": 0.872366790582404, "position": { "x": 3, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4255, - "time": 0.8773234200743495, + "noteOrder": 4257, + "time": 0.8773234200743494, "position": { "x": 7, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4279, - "time": 0.882280049566295, + "noteOrder": 4281, + "time": 0.8822800495662949, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.8872366790582403, + "noteOrder": 4305, + "time": 0.8872366790582404, "position": { "x": 6, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4519, + "noteOrder": 4522, "time": 0.9318463444857497, "position": { "x": 3, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4543, + "noteOrder": 4546, "time": 0.9368029739776952, "position": { "x": 4, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.9417596034696407, + "noteOrder": 4570, + "time": 0.9417596034696406, "position": { "x": 6, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.9467162329615862, + "noteOrder": 4594, + "time": 0.9467162329615861, "position": { "x": 7, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4616, - "time": 0.9516728624535316, + "noteOrder": 4618, + "time": 0.9516728624535317, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4640, - "time": 0.9566294919454771, + "noteOrder": 4642, + "time": 0.9566294919454772, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4664, - "time": 0.9615861214374226, + "noteOrder": 4666, + "time": 0.9615861214374225, "position": { "x": 6, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4664, - "time": 0.9615861214374226, + "noteOrder": 4666, + "time": 0.9615861214374225, "position": { "x": 4, "y": 0 @@ -3016,9 +3016,9 @@ "lineNodes": [ { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.1784386617100372, "position": { "x": 4, @@ -3039,10 +3039,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.18339529120198267, + "noteOrder": 890, + "time": 0.18339529120198264, "position": { "x": 4, "y": 0 @@ -3062,10 +3062,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, - "time": 0.18835192069392814, + "noteOrder": 914, + "time": 0.18835192069392812, "position": { "x": 3, "y": 0 @@ -3085,7 +3085,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 938, "time": 0.19330855018587362, @@ -3108,7 +3108,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 962, "time": 0.1982651796778191, @@ -3131,10 +3131,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 986, - "time": 0.20322180916976457, + "time": 0.20322180916976454, "position": { "x": 6, "y": 0 @@ -3154,7 +3154,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1010, "time": 0.20817843866171004, @@ -3177,7 +3177,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1034, "time": 0.21313506815365552, @@ -3200,7 +3200,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, "time": 0.218091697645601, @@ -3223,7 +3223,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1106, "time": 0.22800495662949194, @@ -3246,10 +3246,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1154, - "time": 0.2379182156133829, + "time": 0.23791821561338292, "position": { "x": 7, "y": 0 @@ -3269,9 +3269,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1202, + "noteOrder": 1203, "time": 0.24783147459727384, "position": { "x": 7, @@ -3292,10 +3292,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.25774473358116484, + "noteOrder": 1251, + "time": 0.2577447335811648, "position": { "x": 6, "y": 0 @@ -3315,10 +3315,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.2627013630731103, + "noteOrder": 1275, + "time": 0.26270136307311026, "position": { "x": 6, "y": 0 @@ -3338,9 +3338,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.2676579925650558, "position": { "x": 7, @@ -3361,9 +3361,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, + "noteOrder": 1323, "time": 0.27261462205700127, "position": { "x": 7, @@ -3384,10 +3384,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1346, - "time": 0.27757125154894674, + "noteOrder": 1347, + "time": 0.2775712515489467, "position": { "x": 4, "y": 0 @@ -3407,9 +3407,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.2825278810408922, "position": { "x": 4, @@ -3430,9 +3430,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, + "noteOrder": 1395, "time": 0.2874845105328377, "position": { "x": 3, @@ -3453,9 +3453,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.29244114002478316, "position": { "x": 3, @@ -3476,9 +3476,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.29739776951672864, "position": { "x": 7, @@ -3499,9 +3499,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.3073110285006196, "position": { "x": 7, @@ -3522,7 +3522,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1539, "time": 0.31722428748451054, @@ -3545,7 +3545,7 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1587, "time": 0.3271375464684015, @@ -3568,9 +3568,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, + "noteOrder": 2405, "time": 0.4956629491945477, "position": { "x": 3, @@ -3591,10 +3591,10 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.5154894671623297, + "noteOrder": 2501, + "time": 0.5154894671623296, "position": { "x": 3, "y": 0 @@ -3614,10 +3614,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.5254027261462206, + "noteOrder": 2549, + "time": 0.5254027261462205, "position": { "x": 6, "y": 0 @@ -3637,9 +3637,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.530359355638166, "position": { "x": 6, @@ -3660,10 +3660,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.5254027261462206, + "noteOrder": 2549, + "time": 0.5254027261462205, "position": { "x": 4, "y": 0 @@ -3683,9 +3683,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.530359355638166, "position": { "x": 4, @@ -3706,9 +3706,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2596, + "noteOrder": 2598, "time": 0.5353159851301116, "position": { "x": 7, @@ -3729,10 +3729,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.5551425030978935, + "noteOrder": 2694, + "time": 0.5551425030978934, "position": { "x": 7, "y": 0 @@ -3752,9 +3752,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, + "noteOrder": 2742, "time": 0.5650557620817844, "position": { "x": 4, @@ -3775,9 +3775,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5700123915737298, "position": { "x": 4, @@ -3798,9 +3798,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2740, + "noteOrder": 2742, "time": 0.5650557620817844, "position": { "x": 6, @@ -3821,9 +3821,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2765, + "noteOrder": 2766, "time": 0.5700123915737298, "position": { "x": 6, @@ -3844,9 +3844,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.6146220570012392, "position": { "x": 7, @@ -3867,10 +3867,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3005, - "time": 0.6195786864931847, + "noteOrder": 3006, + "time": 0.6195786864931846, "position": { "x": 7, "y": 0 @@ -3890,9 +3890,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3029, + "noteOrder": 3030, "time": 0.6245353159851301, "position": { "x": 3, @@ -3913,10 +3913,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3053, - "time": 0.6294919454770757, + "noteOrder": 3055, + "time": 0.6294919454770755, "position": { "x": 3, "y": 0 @@ -3936,9 +3936,9 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.644361833952912, "position": { "x": 7, @@ -3959,9 +3959,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6493184634448576, "position": { "x": 7, @@ -3982,9 +3982,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, + "noteOrder": 3127, "time": 0.644361833952912, "position": { "x": 3, @@ -4005,9 +4005,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, + "noteOrder": 3151, "time": 0.6493184634448576, "position": { "x": 3, @@ -4028,9 +4028,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3175, "time": 0.654275092936803, "position": { "x": 7, @@ -4049,11 +4049,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6592317224287484, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3199, + "time": 0.6592317224287484, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.6641883519206939, "position": { "x": 3, @@ -4072,11 +4118,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6691449814126395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3247, + "time": 0.6691449814126395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, + "noteOrder": 3271, "time": 0.6741016109045849, "position": { "x": 7, @@ -4096,11 +4188,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.6840148698884758, + "noteOrder": 3295, + "time": 0.6790582403965304, "position": { "x": 7, "y": 0 @@ -4114,18 +4206,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3558, - "time": 0.7335811648079307, + "noteOrder": 3295, + "time": 0.6790582403965304, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4137,18 +4229,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3606, - "time": 0.7434944237918215, + "noteOrder": 3319, + "time": 0.6840148698884759, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4165,13 +4257,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3654, - "time": 0.7534076827757126, + "noteOrder": 3319, + "time": 0.6840148698884759, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4183,18 +4275,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3702, - "time": 0.7633209417596034, + "noteOrder": 3319, + "time": 0.6840148698884759, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4206,18 +4298,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3942, - "time": 0.8128872366790583, + "noteOrder": 3343, + "time": 0.6889714993804213, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4234,13 +4326,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4039, - "time": 0.8327137546468402, + "noteOrder": 3343, + "time": 0.6889714993804213, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4257,13 +4349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4135, - "time": 0.8525402726146221, + "noteOrder": 3367, + "time": 0.6939281288723668, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4275,18 +4367,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4231, - "time": 0.872366790582404, + "noteOrder": 3367, + "time": 0.6939281288723668, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4298,16 +4390,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4327, - "time": 0.8921933085501859, + "noteOrder": 3560, + "time": 0.7335811648079306, "position": { "x": 3, "y": 0 @@ -4326,11 +4418,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4375, - "time": 0.9021065675340769, + "noteOrder": 3584, + "time": 0.7385377942998761, "position": { "x": 3, "y": 0 @@ -4344,18 +4436,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.9120198265179678, + "noteOrder": 3584, + "time": 0.7385377942998761, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4372,11 +4464,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4471, - "time": 0.9219330855018588, + "noteOrder": 3608, + "time": 0.7434944237918216, "position": { "x": 7, "y": 0 @@ -4395,11 +4487,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4688, - "time": 0.9665427509293681, + "noteOrder": 3632, + "time": 0.7484510532837672, "position": { "x": 7, "y": 0 @@ -4418,13 +4510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4712, - "time": 0.9714993804213135, + "noteOrder": 3632, + "time": 0.7484510532837672, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4441,11 +4533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4688, - "time": 0.9665427509293681, + "noteOrder": 3656, + "time": 0.7534076827757125, "position": { "x": 3, "y": 0 @@ -4464,11 +4556,747 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3680, + "time": 0.758364312267658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3680, + "time": 0.758364312267658, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7633209417596034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7633209417596034, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3704, + "time": 0.7633209417596034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7682775712515489, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3728, + "time": 0.7682775712515489, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7732342007434945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3752, + "time": 0.7732342007434945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3944, + "time": 0.8128872366790582, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4041, + "time": 0.8327137546468402, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4137, + "time": 0.8525402726146221, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4233, + "time": 0.872366790582404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4329, + "time": 0.892193308550186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4353, + "time": 0.8971499380421314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4353, + "time": 0.8971499380421314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4377, + "time": 0.9021065675340768, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4377, + "time": 0.9021065675340768, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4377, + "time": 0.9021065675340768, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4401, + "time": 0.9070631970260222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4401, + "time": 0.9070631970260222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4425, + "time": 0.9120198265179678, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4425, + "time": 0.9120198265179678, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4425, + "time": 0.9120198265179678, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4449, + "time": 0.9169764560099133, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4449, + "time": 0.9169764560099133, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4474, + "time": 0.9219330855018588, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4498, + "time": 0.9268897149938042, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4498, + "time": 0.9268897149938042, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4690, + "time": 0.966542750929368, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4714, + "time": 0.9714993804213136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4690, + "time": 0.966542750929368, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4712, - "time": 0.9714993804213135, + "noteOrder": 4714, + "time": 0.9714993804213136, "position": { "x": 3, "y": 0 diff --git a/tracks/Valkyrie/info.json b/tracks/Valkyrie/info.json index 203a4bfc..b8091f33 100644 --- a/tracks/Valkyrie/info.json +++ b/tracks/Valkyrie/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Valkyrie", - "SongLength": "104.724898", + "SongLength": "94.772245", "SongAuthorName": "ONEUS", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Virus Funk/383_difficulty_1a.json b/tracks/Virus Funk/383_difficulty_1a.json index 7d5b319c..50cdae9f 100644 --- a/tracks/Virus Funk/383_difficulty_1a.json +++ b/tracks/Virus Funk/383_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 169, - "time": 0.02592592592592592, + "time": 0.02592592592592593, "position": { "x": 6, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.02592592592592592, + "time": 0.02592592592592593, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 290, - "time": 0.04444444444444444, + "time": 0.044444444444444446, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 290, - "time": 0.04444444444444444, + "time": 0.044444444444444446, "position": { "x": 4, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 314, + "noteOrder": 315, "time": 0.04814814814814815, "position": { "x": 3, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 314, + "noteOrder": 315, "time": 0.04814814814814815, "position": { "x": 7, @@ -134,7 +134,7 @@ }, { "noteOrder": 387, - "time": 0.059259259259259255, + "time": 0.05925925925925926, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 435, - "time": 0.06666666666666665, + "noteOrder": 436, + "time": 0.06666666666666667, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 508, - "time": 0.07777777777777777, + "time": 0.07777777777777778, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 532, - "time": 0.08148148148148147, + "time": 0.08148148148148149, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 556, + "noteOrder": 557, "time": 0.08518518518518518, "position": { "x": 7, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 677, - "time": 0.10370370370370369, + "noteOrder": 678, + "time": 0.10370370370370371, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 677, - "time": 0.10370370370370369, + "noteOrder": 678, + "time": 0.10370370370370371, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 701, + "noteOrder": 702, "time": 0.1074074074074074, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 701, + "noteOrder": 702, "time": 0.1074074074074074, "position": { "x": 3, @@ -374,7 +374,7 @@ }, { "noteOrder": 750, - "time": 0.1148148148148148, + "time": 0.11481481481481481, "position": { "x": 6, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 750, - "time": 0.1148148148148148, + "time": 0.11481481481481481, "position": { "x": 4, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 798, + "noteOrder": 799, "time": 0.12222222222222222, "position": { "x": 2, @@ -454,7 +454,7 @@ }, { "noteOrder": 871, - "time": 0.1333333333333333, + "time": 0.13333333333333333, "position": { "x": 3, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 895, - "time": 0.137037037037037, + "time": 0.13703703703703704, "position": { "x": 7, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 919, + "noteOrder": 920, "time": 0.14074074074074072, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 919, + "noteOrder": 920, "time": 0.14074074074074072, "position": { "x": 6, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 943, + "noteOrder": 944, "time": 0.14444444444444443, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 943, + "noteOrder": 944, "time": 0.14444444444444443, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 1016, - "time": 0.15555555555555553, + "time": 0.15555555555555556, "position": { "x": 3, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1040, - "time": 0.15925925925925924, + "noteOrder": 1041, + "time": 0.15925925925925927, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1185, - "time": 0.18148148148148147, + "noteOrder": 1186, + "time": 0.1814814814814815, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1282, + "noteOrder": 1283, "time": 0.1962962962962963, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1306, + "noteOrder": 1307, "time": 0.2, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1330, - "time": 0.2037037037037037, + "noteOrder": 1331, + "time": 0.20370370370370372, "position": { "x": 3, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1379, - "time": 0.21111111111111108, + "time": 0.2111111111111111, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1403, + "noteOrder": 1404, "time": 0.2148148148148148, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1427, + "noteOrder": 1428, "time": 0.2185185185185185, "position": { "x": 6, @@ -894,7 +894,7 @@ }, { "noteOrder": 1476, - "time": 0.2259259259259259, + "time": 0.22592592592592592, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1524, - "time": 0.2333333333333333, + "noteOrder": 1525, + "time": 0.23333333333333334, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1670, "time": 0.25555555555555554, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1693, + "noteOrder": 1694, "time": 0.25925925925925924, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1693, + "noteOrder": 1694, "time": 0.25925925925925924, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1717, - "time": 0.2629629629629629, + "noteOrder": 1718, + "time": 0.26296296296296295, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1717, - "time": 0.2629629629629629, + "noteOrder": 1718, + "time": 0.26296296296296295, "position": { "x": 3, "y": 0 @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1742, - "time": 0.2666666666666666, + "time": 0.26666666666666666, "position": { "x": 3, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1754, - "time": 0.2685185185185185, + "time": 0.26851851851851855, "position": { "x": 4, "y": 0 @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1766, - "time": 0.2703703703703703, + "time": 0.27037037037037037, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1778, - "time": 0.2722222222222222, + "noteOrder": 1779, + "time": 0.27222222222222225, "position": { "x": 7, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1790, - "time": 0.274074074074074, + "noteOrder": 1791, + "time": 0.2740740740740741, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1802, - "time": 0.2759259259259259, + "noteOrder": 1803, + "time": 0.27592592592592596, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1814, + "noteOrder": 1815, "time": 0.27777777777777773, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 1826, + "noteOrder": 1827, "time": 0.2796296296296296, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1838, + "noteOrder": 1839, "time": 0.28148148148148144, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2056, - "time": 0.31481481481481477, + "noteOrder": 2057, + "time": 0.3148148148148148, "position": { "x": 2, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2080, - "time": 0.3185185185185185, + "noteOrder": 2081, + "time": 0.31851851851851853, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2104, - "time": 0.3222222222222222, + "noteOrder": 2105, + "time": 0.32222222222222224, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2153, + "noteOrder": 2154, "time": 0.3296296296296296, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2298, + "noteOrder": 2299, "time": 0.35185185185185186, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2443, - "time": 0.37407407407407406, + "noteOrder": 2444, + "time": 0.3740740740740741, "position": { "x": 8, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.37777777777777777, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2491, + "noteOrder": 2492, "time": 0.3814814814814815, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2540, + "noteOrder": 2541, "time": 0.3888888888888889, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2612, + "noteOrder": 2613, "time": 0.4, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2637, - "time": 0.4037037037037037, + "noteOrder": 2638, + "time": 0.40370370370370373, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2661, - "time": 0.4074074074074074, + "noteOrder": 2662, + "time": 0.40740740740740744, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2685, - "time": 0.4111111111111111, + "noteOrder": 2686, + "time": 0.41111111111111115, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2733, - "time": 0.41851851851851846, + "noteOrder": 2734, + "time": 0.41851851851851857, "position": { "x": 8, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2758, - "time": 0.42222222222222217, + "noteOrder": 2759, + "time": 0.4222222222222222, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2782, - "time": 0.4259259259259259, + "noteOrder": 2783, + "time": 0.42592592592592593, "position": { "x": 8, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2830, + "noteOrder": 2831, "time": 0.4333333333333333, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2879, + "noteOrder": 2880, "time": 0.4407407407407407, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2999, - "time": 0.4592592592592592, + "noteOrder": 3001, + "time": 0.45925925925925926, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3024, - "time": 0.4629629629629629, + "noteOrder": 3025, + "time": 0.46296296296296297, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3048, - "time": 0.4666666666666666, + "noteOrder": 3049, + "time": 0.4666666666666667, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3048, - "time": 0.4666666666666666, + "noteOrder": 3049, + "time": 0.4666666666666667, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3072, - "time": 0.4703703703703703, + "noteOrder": 3073, + "time": 0.4703703703703704, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3072, - "time": 0.4703703703703703, + "noteOrder": 3073, + "time": 0.4703703703703704, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3120, - "time": 0.47777777777777775, + "noteOrder": 3122, + "time": 0.4777777777777778, "position": { "x": 2, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3145, + "noteOrder": 3146, "time": 0.48148148148148145, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3169, + "noteOrder": 3170, "time": 0.48518518518518516, "position": { "x": 2, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3218, "time": 0.4925925925925926, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.49999999999999994, + "noteOrder": 3267, + "time": 0.5, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3388, "time": 0.5185185185185185, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3411, - "time": 0.5222222222222221, + "noteOrder": 3412, + "time": 0.5222222222222223, "position": { "x": 3, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3435, - "time": 0.5259259259259258, + "noteOrder": 3436, + "time": 0.5259259259259259, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3459, - "time": 0.5296296296296296, + "noteOrder": 3460, + "time": 0.5296296296296297, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3919, + "noteOrder": 3920, "time": 0.6, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3943, + "noteOrder": 3944, "time": 0.6037037037037037, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.6296296296296295, + "noteOrder": 4114, + "time": 0.6296296296296297, "position": { "x": 6, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4136, - "time": 0.6333333333333333, + "noteOrder": 4138, + "time": 0.6333333333333334, "position": { "x": 4, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4354, + "noteOrder": 4356, "time": 0.6666666666666666, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4378, + "noteOrder": 4380, "time": 0.6703703703703703, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.674074074074074, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4451, + "noteOrder": 4453, "time": 0.6814814814814815, "position": { "x": 3, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4475, + "noteOrder": 4477, "time": 0.6851851851851851, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4499, + "noteOrder": 4501, "time": 0.6888888888888889, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4523, + "noteOrder": 4525, "time": 0.6925925925925925, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4572, + "noteOrder": 4574, "time": 0.7, "position": { "x": 2, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4620, + "noteOrder": 4622, "time": 0.7074074074074074, "position": { "x": 8, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4717, - "time": 0.7222222222222221, + "noteOrder": 4719, + "time": 0.7222222222222222, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4862, - "time": 0.7444444444444444, + "noteOrder": 4864, + "time": 0.7444444444444445, "position": { "x": 8, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4886, - "time": 0.7481481481481481, + "noteOrder": 4888, + "time": 0.7481481481481482, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4910, - "time": 0.7518518518518518, + "noteOrder": 4912, + "time": 0.7518518518518519, "position": { "x": 7, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4959, + "noteOrder": 4961, "time": 0.7592592592592592, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.7611111111111111, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5009, "time": 0.7666666666666666, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5152, + "noteOrder": 5154, "time": 0.7888888888888889, "position": { "x": 2, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5201, + "noteOrder": 5203, "time": 0.7962962962962963, "position": { "x": 8, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5249, + "noteOrder": 5251, "time": 0.8037037037037037, "position": { "x": 5, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 5273, - "time": 0.8074074074074074, + "noteOrder": 5275, + "time": 0.8074074074074075, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.811111111111111, + "noteOrder": 5299, + "time": 0.8111111111111111, "position": { "x": 7, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5346, - "time": 0.8185185185185184, + "noteOrder": 5348, + "time": 0.8185185185185185, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5394, - "time": 0.8259259259259258, + "noteOrder": 5396, + "time": 0.825925925925926, "position": { "x": 4, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5491, - "time": 0.8407407407407407, + "noteOrder": 5493, + "time": 0.8407407407407408, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5636, + "noteOrder": 5638, "time": 0.8629629629629629, "position": { "x": 2, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5660, + "noteOrder": 5662, "time": 0.8666666666666666, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5684, + "noteOrder": 5687, "time": 0.8703703703703703, "position": { "x": 3, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5733, + "noteOrder": 5735, "time": 0.8777777777777778, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 5747, "time": 0.8796296296296297, "position": { "x": 5, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5781, + "noteOrder": 5783, "time": 0.8851851851851852, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5926, - "time": 0.9074074074074073, + "noteOrder": 5929, + "time": 0.9074074074074074, "position": { "x": 8, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5975, - "time": 0.9148148148148147, + "noteOrder": 5977, + "time": 0.9148148148148149, "position": { "x": 2, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6023, - "time": 0.9222222222222222, + "noteOrder": 6025, + "time": 0.9222222222222223, "position": { "x": 5, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6047, - "time": 0.9259259259259258, + "noteOrder": 6050, + "time": 0.9259259259259259, "position": { "x": 4, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6071, - "time": 0.9296296296296296, + "noteOrder": 6074, + "time": 0.9296296296296297, "position": { "x": 3, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6265, + "noteOrder": 6267, "time": 0.9592592592592593, "position": { "x": 6, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6265, + "noteOrder": 6267, "time": 0.9592592592592593, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6289, + "noteOrder": 6292, "time": 0.9629629629629629, "position": { "x": 3, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6301, + "noteOrder": 6304, "time": 0.9648148148148148, "position": { "x": 4, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6313, + "noteOrder": 6316, "time": 0.9666666666666667, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6325, + "noteOrder": 6328, "time": 0.9685185185185184, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6338, + "noteOrder": 6340, "time": 0.9703703703703703, "position": { "x": 6, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6350, + "noteOrder": 6352, "time": 0.9722222222222222, "position": { "x": 4, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6362, + "noteOrder": 6364, "time": 0.9740740740740741, "position": { "x": 3, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6374, + "noteOrder": 6376, "time": 0.9759259259259259, "position": { "x": 4, @@ -2896,10 +2896,10 @@ "lineNodes": [ { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.029629629629629627, + "time": 0.02962962962962963, "position": { "x": 7, "y": 0 @@ -2919,10 +2919,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 218, - "time": 0.033333333333333326, + "time": 0.03333333333333333, "position": { "x": 7, "y": 0 @@ -2942,7 +2942,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, "time": 0.037037037037037035, @@ -2965,10 +2965,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.04074074074074074, + "time": 0.040740740740740744, "position": { "x": 3, "y": 0 @@ -2988,10 +2988,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.08888888888888888, + "time": 0.08888888888888889, "position": { "x": 3, "y": 0 @@ -3011,10 +3011,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 605, - "time": 0.09259259259259259, + "time": 0.0925925925925926, "position": { "x": 3, "y": 0 @@ -3034,7 +3034,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 629, "time": 0.0962962962962963, @@ -3057,7 +3057,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 653, "time": 0.1, @@ -3080,10 +3080,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.11851851851851851, + "time": 0.11851851851851852, "position": { "x": 4, "y": 0 @@ -3103,9 +3103,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 798, + "noteOrder": 799, "time": 0.12222222222222222, "position": { "x": 4, @@ -3126,9 +3126,9 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.1259259259259259, "position": { "x": 6, @@ -3149,7 +3149,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 847, "time": 0.12962962962962962, @@ -3172,10 +3172,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1064, - "time": 0.16296296296296295, + "noteOrder": 1065, + "time": 0.16296296296296298, "position": { "x": 3, "y": 0 @@ -3195,10 +3195,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1161, - "time": 0.17777777777777776, + "noteOrder": 1162, + "time": 0.17777777777777778, "position": { "x": 3, "y": 0 @@ -3218,10 +3218,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1161, - "time": 0.17777777777777776, + "noteOrder": 1162, + "time": 0.17777777777777778, "position": { "x": 7, "y": 0 @@ -3241,10 +3241,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1185, - "time": 0.18148148148148147, + "noteOrder": 1186, + "time": 0.1814814814814815, "position": { "x": 7, "y": 0 @@ -3264,10 +3264,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1209, - "time": 0.18518518518518517, + "noteOrder": 1210, + "time": 0.1851851851851852, "position": { "x": 3, "y": 0 @@ -3287,7 +3287,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1234, "time": 0.18888888888888888, @@ -3310,10 +3310,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1355, - "time": 0.20740740740740737, + "time": 0.20740740740740743, "position": { "x": 7, "y": 0 @@ -3333,9 +3333,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1451, + "noteOrder": 1452, "time": 0.2222222222222222, "position": { "x": 7, @@ -3356,9 +3356,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1451, + "noteOrder": 1452, "time": 0.2222222222222222, "position": { "x": 3, @@ -3379,10 +3379,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1476, - "time": 0.2259259259259259, + "time": 0.22592592592592592, "position": { "x": 3, "y": 0 @@ -3402,10 +3402,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1500, - "time": 0.2296296296296296, + "time": 0.22962962962962963, "position": { "x": 7, "y": 0 @@ -3425,10 +3425,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1524, - "time": 0.2333333333333333, + "noteOrder": 1525, + "time": 0.23333333333333334, "position": { "x": 7, "y": 0 @@ -3448,10 +3448,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.23703703703703702, + "noteOrder": 1549, + "time": 0.23703703703703705, "position": { "x": 3, "y": 0 @@ -3471,9 +3471,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1572, + "noteOrder": 1573, "time": 0.24074074074074073, "position": { "x": 4, @@ -3494,9 +3494,9 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1596, + "noteOrder": 1597, "time": 0.24444444444444444, "position": { "x": 7, @@ -3517,7 +3517,7 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1621, "time": 0.24814814814814815, @@ -3540,7 +3540,7 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1887, "time": 0.28888888888888886, @@ -3563,9 +3563,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.29259259259259257, "position": { "x": 4, @@ -3586,7 +3586,7 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1887, "time": 0.28888888888888886, @@ -3609,9 +3609,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.29259259259259257, "position": { "x": 6, @@ -3632,9 +3632,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1935, + "noteOrder": 1936, "time": 0.2962962962962963, "position": { "x": 3, @@ -3654,11 +3654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1959, - "time": 0.3, + "noteOrder": 1948, + "time": 0.29814814814814816, "position": { "x": 3, "y": 0 @@ -3672,18 +3672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1984, - "time": 0.3037037037037037, + "noteOrder": 1948, + "time": 0.29814814814814816, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3700,13 +3700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2008, - "time": 0.3074074074074074, + "noteOrder": 1960, + "time": 0.3, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3718,18 +3718,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2032, - "time": 0.31111111111111106, + "noteOrder": 1960, + "time": 0.3, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3746,13 +3746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2129, - "time": 0.3259259259259259, + "noteOrder": 1960, + "time": 0.3, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3764,18 +3764,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2129, - "time": 0.3259259259259259, + "noteOrder": 1972, + "time": 0.30185185185185187, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3792,13 +3792,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2153, - "time": 0.3296296296296296, + "noteOrder": 1972, + "time": 0.30185185185185187, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3815,13 +3815,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2177, - "time": 0.3333333333333333, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3833,18 +3833,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2201, - "time": 0.337037037037037, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3861,11 +3861,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2225, - "time": 0.34074074074074073, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { "x": 3, "y": 0 @@ -3884,13 +3884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2250, - "time": 0.34444444444444444, + "noteOrder": 1996, + "time": 0.3055555555555556, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3902,18 +3902,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2274, - "time": 0.34814814814814815, + "noteOrder": 1996, + "time": 0.3055555555555556, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3930,13 +3930,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2322, - "time": 0.3555555555555555, + "noteOrder": 2008, + "time": 0.3074074074074074, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3948,18 +3948,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2346, - "time": 0.3592592592592592, + "noteOrder": 2008, + "time": 0.3074074074074074, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3976,13 +3976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2371, - "time": 0.36296296296296293, + "noteOrder": 2008, + "time": 0.3074074074074074, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3999,13 +3999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2395, - "time": 0.36666666666666664, + "noteOrder": 2021, + "time": 0.3092592592592593, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4017,18 +4017,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2419, - "time": 0.37037037037037035, + "noteOrder": 2021, + "time": 0.3092592592592593, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4045,11 +4045,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2516, - "time": 0.3851851851851852, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { "x": 4, "y": 0 @@ -4068,13 +4068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2516, - "time": 0.3851851851851852, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4086,18 +4086,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 2540, - "time": 0.3888888888888889, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4114,13 +4114,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2564, - "time": 0.3925925925925926, + "noteOrder": 2129, + "time": 0.32592592592592595, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4132,18 +4132,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2588, - "time": 0.3962962962962963, + "noteOrder": 2129, + "time": 0.32592592592592595, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4155,16 +4155,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, - "time": 0.41481481481481475, + "noteOrder": 2154, + "time": 0.3296296296296296, "position": { "x": 6, "y": 0 @@ -4183,13 +4183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 2806, - "time": 0.4296296296296296, + "noteOrder": 2178, + "time": 0.3333333333333333, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4201,16 +4201,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2806, - "time": 0.4296296296296296, + "noteOrder": 2190, + "time": 0.33518518518518514, "position": { "x": 3, "y": 0 @@ -4229,13 +4229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2830, - "time": 0.4333333333333333, + "noteOrder": 2190, + "time": 0.33518518518518514, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4252,13 +4252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2854, - "time": 0.437037037037037, + "noteOrder": 2202, + "time": 0.337037037037037, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4270,18 +4270,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2879, - "time": 0.4407407407407407, + "noteOrder": 2202, + "time": 0.337037037037037, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4293,16 +4293,2684 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2903, - "time": 0.4444444444444444, + "noteOrder": 2202, + "time": 0.337037037037037, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2214, + "time": 0.33888888888888885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2214, + "time": 0.33888888888888885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2226, + "time": 0.34074074074074073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2226, + "time": 0.34074074074074073, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2226, + "time": 0.34074074074074073, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2238, + "time": 0.34259259259259256, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2238, + "time": 0.34259259259259256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2250, + "time": 0.34444444444444444, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2263, + "time": 0.34629629629629627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2263, + "time": 0.34629629629629627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2275, + "time": 0.34814814814814815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2287, + "time": 0.35, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2287, + "time": 0.35, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2299, + "time": 0.35185185185185186, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2299, + "time": 0.35185185185185186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2323, + "time": 0.35555555555555557, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2335, + "time": 0.3574074074074074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2335, + "time": 0.3574074074074074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2347, + "time": 0.3592592592592593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2347, + "time": 0.3592592592592593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2347, + "time": 0.3592592592592593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2359, + "time": 0.3611111111111111, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2359, + "time": 0.3611111111111111, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2371, + "time": 0.362962962962963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2371, + "time": 0.362962962962963, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2371, + "time": 0.362962962962963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2384, + "time": 0.3648148148148148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2384, + "time": 0.3648148148148148, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2396, + "time": 0.3666666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2396, + "time": 0.3666666666666667, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2396, + "time": 0.3666666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2408, + "time": 0.3685185185185185, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2408, + "time": 0.3685185185185185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2420, + "time": 0.3703703703703704, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2420, + "time": 0.3703703703703704, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2420, + "time": 0.3703703703703704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2517, + "time": 0.3851851851851852, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2517, + "time": 0.3851851851851852, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2541, + "time": 0.3888888888888889, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2565, + "time": 0.3925925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2577, + "time": 0.39444444444444443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2577, + "time": 0.39444444444444443, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2589, + "time": 0.3962962962962963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2601, + "time": 0.39814814814814814, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2601, + "time": 0.39814814814814814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2710, + "time": 0.41481481481481486, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2807, + "time": 0.4296296296296296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2807, + "time": 0.4296296296296296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2831, + "time": 0.4333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2855, + "time": 0.437037037037037, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2880, + "time": 0.4407407407407407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2904, + "time": 0.4444444444444444, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2928, + "time": 0.44814814814814813, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2928, + "time": 0.44814814814814813, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2952, + "time": 0.45185185185185184, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2952, + "time": 0.45185185185185184, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2976, + "time": 0.45555555555555555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2976, + "time": 0.45555555555555555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3001, + "time": 0.45925925925925926, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3097, + "time": 0.4740740740740741, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3194, + "time": 0.4888888888888889, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.4888888888888889, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3218, + "time": 0.4925925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.4962962962962963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3291, + "time": 0.5037037037037037, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3315, + "time": 0.5074074074074074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3339, + "time": 0.5111111111111111, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3364, + "time": 0.5148148148148148, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3485, + "time": 0.5333333333333333, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3509, + "time": 0.5370370370370371, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3521, + "time": 0.538888888888889, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3545, + "time": 0.5425925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3557, + "time": 0.5444444444444445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3581, + "time": 0.5481481481481482, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3509, + "time": 0.5370370370370371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3521, + "time": 0.538888888888889, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3545, + "time": 0.5425925925925926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3557, + "time": 0.5444444444444445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3581, + "time": 0.5481481481481482, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3775, + "time": 0.5777777777777777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3872, + "time": 0.5925925925925926, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3969, + "time": 0.6074074074074074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4065, + "time": 0.6222222222222222, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4162, + "time": 0.6370370370370371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4211, + "time": 0.6444444444444445, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4259, + "time": 0.6518518518518519, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4307, + "time": 0.6592592592592592, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4428, + "time": 0.6777777777777777, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4428, + "time": 0.6777777777777777, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4525, + "time": 0.6925925925925925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4549, + "time": 0.6962962962962963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4574, + "time": 0.7, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4598, + "time": 0.7037037037037037, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4622, + "time": 0.7074074074074074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4646, + "time": 0.7111111111111111, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4658, + "time": 0.712962962962963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4658, + "time": 0.712962962962963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4670, + "time": 0.7148148148148148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4682, + "time": 0.7166666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4682, + "time": 0.7166666666666667, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4694, + "time": 0.7185185185185186, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4707, + "time": 0.7203703703703704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4707, + "time": 0.7203703703703704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4719, + "time": 0.7222222222222222, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4719, + "time": 0.7222222222222222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4743, + "time": 0.725925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4755, + "time": 0.7277777777777779, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4755, + "time": 0.7277777777777779, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4767, + "time": 0.7296296296296296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4767, + "time": 0.7296296296296296, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4767, + "time": 0.7296296296296296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4779, + "time": 0.7314814814814815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4779, + "time": 0.7314814814814815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4791, + "time": 0.7333333333333334, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4791, + "time": 0.7333333333333334, "position": { "x": 5, "y": 0 @@ -4316,18 +6984,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4791, + "time": 0.7333333333333334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4803, + "time": 0.7351851851851853, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2927, - "time": 0.44814814814814813, + "noteOrder": 4803, + "time": 0.7351851851851853, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4339,18 +7053,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2927, - "time": 0.44814814814814813, + "noteOrder": 4815, + "time": 0.737037037037037, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4367,11 +7081,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2951, - "time": 0.4518518518518518, + "noteOrder": 4815, + "time": 0.737037037037037, "position": { "x": 5, "y": 0 @@ -4390,13 +7104,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2951, - "time": 0.4518518518518518, + "noteOrder": 4815, + "time": 0.737037037037037, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4413,13 +7127,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2975, - "time": 0.4555555555555555, + "noteOrder": 4828, + "time": 0.7388888888888889, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4436,13 +7150,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2975, - "time": 0.4555555555555555, + "noteOrder": 4828, + "time": 0.7388888888888889, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4454,18 +7168,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2999, - "time": 0.4592592592592592, + "noteOrder": 4840, + "time": 0.7407407407407408, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4477,18 +7191,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3096, - "time": 0.47407407407407404, + "noteOrder": 4840, + "time": 0.7407407407407408, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4505,13 +7219,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 3193, - "time": 0.4888888888888889, + "noteOrder": 4840, + "time": 0.7407407407407408, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4523,18 +7237,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3193, - "time": 0.4888888888888889, + "noteOrder": 4936, + "time": 0.7555555555555555, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4551,13 +7265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 3217, - "time": 0.4925925925925926, + "noteOrder": 4936, + "time": 0.7555555555555555, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4569,16 +7283,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3241, - "time": 0.4962962962962963, + "noteOrder": 4949, + "time": 0.7574074074074073, "position": { "x": 3, "y": 0 @@ -4597,13 +7311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.49999999999999994, + "noteOrder": 4949, + "time": 0.7574074074074073, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4620,11 +7334,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3290, - "time": 0.5037037037037037, + "noteOrder": 4985, + "time": 0.762962962962963, "position": { "x": 7, "y": 0 @@ -4643,13 +7357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3314, - "time": 0.5074074074074073, + "noteOrder": 4997, + "time": 0.7648148148148147, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4666,13 +7380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3338, - "time": 0.5111111111111111, + "noteOrder": 4997, + "time": 0.7648148148148147, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4684,18 +7398,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3362, - "time": 0.5148148148148147, + "noteOrder": 5009, + "time": 0.7666666666666666, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4707,18 +7421,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3483, - "time": 0.5333333333333332, + "noteOrder": 5009, + "time": 0.7666666666666666, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4735,13 +7449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 3507, - "time": 0.537037037037037, + "noteOrder": 5033, + "time": 0.7703703703703704, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4758,13 +7472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 190, "indexInLine": 2, "isSliding": false, - "noteOrder": 3520, - "time": 0.5388888888888889, + "noteOrder": 5045, + "time": 0.7722222222222221, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4781,11 +7495,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 190, "indexInLine": 3, "isSliding": false, - "noteOrder": 3544, - "time": 0.5425925925925925, + "noteOrder": 5057, + "time": 0.774074074074074, "position": { "x": 7, "y": 0 @@ -4804,11 +7518,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 190, "indexInLine": 4, "isSliding": false, - "noteOrder": 3556, - "time": 0.5444444444444444, + "noteOrder": 5070, + "time": 0.7759259259259259, "position": { "x": 7, "y": 0 @@ -4827,13 +7541,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 190, "indexInLine": 5, "isSliding": false, - "noteOrder": 3580, - "time": 0.548148148148148, + "noteOrder": 5082, + "time": 0.7777777777777778, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4850,11 +7564,34 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5094, + "time": 0.7796296296296296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3507, - "time": 0.537037037037037, + "noteOrder": 5106, + "time": 0.7814814814814814, "position": { "x": 7, "y": 0 @@ -4868,18 +7605,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 3520, - "time": 0.5388888888888889, + "noteOrder": 5033, + "time": 0.7703703703703704, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4896,13 +7633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 191, "indexInLine": 2, "isSliding": false, - "noteOrder": 3544, - "time": 0.5425925925925925, + "noteOrder": 5045, + "time": 0.7722222222222221, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4919,13 +7656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 191, "indexInLine": 3, "isSliding": false, - "noteOrder": 3556, - "time": 0.5444444444444444, + "noteOrder": 5057, + "time": 0.774074074074074, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4942,13 +7679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 191, "indexInLine": 4, "isSliding": false, - "noteOrder": 3580, - "time": 0.548148148148148, + "noteOrder": 5070, + "time": 0.7759259259259259, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4965,13 +7702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3774, - "time": 0.5777777777777777, + "noteOrder": 5082, + "time": 0.7777777777777778, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4983,18 +7720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3870, - "time": 0.5925925925925926, + "noteOrder": 5094, + "time": 0.7796296296296296, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5006,18 +7743,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3967, - "time": 0.6074074074074074, + "noteOrder": 5106, + "time": 0.7814814814814814, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5034,13 +7771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 4064, - "time": 0.6222222222222221, + "noteOrder": 5130, + "time": 0.7851851851851852, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5057,13 +7794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4161, - "time": 0.637037037037037, + "noteOrder": 5154, + "time": 0.7888888888888889, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5075,16 +7812,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 4209, - "time": 0.6444444444444444, + "noteOrder": 5178, + "time": 0.7925925925925926, "position": { "x": 6, "y": 0 @@ -5103,13 +7840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4257, - "time": 0.6518518518518518, + "noteOrder": 5203, + "time": 0.7962962962962963, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5121,18 +7858,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 4306, - "time": 0.6592592592592592, + "noteOrder": 5227, + "time": 0.8, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5149,13 +7886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 196, "indexInLine": 2, "isSliding": false, - "noteOrder": 4427, - "time": 0.6777777777777777, + "noteOrder": 5251, + "time": 0.8037037037037037, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5172,11 +7909,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4427, - "time": 0.6777777777777777, + "noteOrder": 5324, + "time": 0.8148148148148149, "position": { "x": 6, "y": 0 @@ -5190,18 +7927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 4523, - "time": 0.6925925925925925, + "noteOrder": 5324, + "time": 0.8148148148148149, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5218,13 +7955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4548, - "time": 0.6962962962962963, + "noteOrder": 5348, + "time": 0.8185185185185185, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5236,18 +7973,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 202, "indexInLine": 1, "isSliding": false, - "noteOrder": 4572, - "time": 0.7, + "noteOrder": 5372, + "time": 0.8222222222222223, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5264,13 +8001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4596, - "time": 0.7037037037037037, + "noteOrder": 5396, + "time": 0.825925925925926, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5282,18 +8019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 4620, - "time": 0.7074074074074074, + "noteOrder": 5420, + "time": 0.8296296296296297, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5310,13 +8047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4644, - "time": 0.711111111111111, + "noteOrder": 5433, + "time": 0.8314814814814815, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5328,18 +8065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4669, - "time": 0.7148148148148147, + "noteOrder": 5433, + "time": 0.8314814814814815, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5356,11 +8093,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4693, - "time": 0.7185185185185184, + "noteOrder": 5445, + "time": 0.8333333333333334, "position": { "x": 3, "y": 0 @@ -5379,13 +8116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4741, - "time": 0.7259259259259259, + "noteOrder": 5457, + "time": 0.8351851851851853, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5397,18 +8134,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4765, - "time": 0.7296296296296295, + "noteOrder": 5457, + "time": 0.8351851851851853, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5425,11 +8162,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4789, - "time": 0.7333333333333333, + "noteOrder": 5469, + "time": 0.8370370370370371, "position": { "x": 7, "y": 0 @@ -5448,11 +8185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4814, - "time": 0.7370370370370369, + "noteOrder": 5481, + "time": 0.8388888888888889, "position": { "x": 7, "y": 0 @@ -5466,18 +8203,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4838, - "time": 0.7407407407407407, + "noteOrder": 5481, + "time": 0.8388888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5494,13 +8231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4935, - "time": 0.7555555555555555, + "noteOrder": 5493, + "time": 0.8407407407407408, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5517,13 +8254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4935, - "time": 0.7555555555555555, + "noteOrder": 5493, + "time": 0.8407407407407408, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5535,18 +8272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4983, - "time": 0.762962962962963, + "noteOrder": 5517, + "time": 0.8444444444444444, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5558,18 +8295,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5031, - "time": 0.7703703703703704, + "noteOrder": 5529, + "time": 0.8462962962962963, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5581,18 +8318,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5043, - "time": 0.7722222222222221, + "noteOrder": 5529, + "time": 0.8462962962962963, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5604,18 +8341,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5056, - "time": 0.774074074074074, + "noteOrder": 5541, + "time": 0.8481481481481482, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5627,18 +8364,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 3, + "lineGroupId": 208, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5068, - "time": 0.7759259259259259, + "noteOrder": 5541, + "time": 0.8481481481481482, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5650,18 +8387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 4, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5080, - "time": 0.7777777777777778, + "noteOrder": 5541, + "time": 0.8481481481481482, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5678,13 +8415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 5, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5092, - "time": 0.7796296296296296, + "noteOrder": 5554, + "time": 0.8500000000000001, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5701,13 +8438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 6, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5104, - "time": 0.7814814814814814, + "noteOrder": 5554, + "time": 0.8500000000000001, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5724,11 +8461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5031, - "time": 0.7703703703703704, + "noteOrder": 5566, + "time": 0.8518518518518519, "position": { "x": 4, "y": 0 @@ -5742,18 +8479,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5043, - "time": 0.7722222222222221, + "noteOrder": 5566, + "time": 0.8518518518518519, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5765,18 +8502,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 2, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5056, - "time": 0.774074074074074, + "noteOrder": 5566, + "time": 0.8518518518518519, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5793,13 +8530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 3, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5068, - "time": 0.7759259259259259, + "noteOrder": 5578, + "time": 0.8537037037037037, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5816,11 +8553,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 4, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5080, - "time": 0.7777777777777778, + "noteOrder": 5578, + "time": 0.8537037037037037, "position": { "x": 4, "y": 0 @@ -5839,11 +8576,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 5, + "lineGroupId": 210, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5092, - "time": 0.7796296296296296, + "noteOrder": 5590, + "time": 0.8555555555555556, "position": { "x": 4, "y": 0 @@ -5862,13 +8599,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 6, + "lineGroupId": 210, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5104, - "time": 0.7814814814814814, + "noteOrder": 5590, + "time": 0.8555555555555556, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5885,13 +8622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5128, - "time": 0.7851851851851852, + "noteOrder": 5590, + "time": 0.8555555555555556, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5903,18 +8640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5152, - "time": 0.7888888888888889, + "noteOrder": 5602, + "time": 0.8574074074074074, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5926,18 +8663,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5176, - "time": 0.7925925925925926, + "noteOrder": 5602, + "time": 0.8574074074074074, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5954,13 +8691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5201, - "time": 0.7962962962962963, + "noteOrder": 5614, + "time": 0.8592592592592592, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5977,13 +8714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5225, - "time": 0.8, + "noteOrder": 5614, + "time": 0.8592592592592592, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5995,16 +8732,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 5249, - "time": 0.8037037037037037, + "noteOrder": 5614, + "time": 0.8592592592592592, "position": { "x": 3, "y": 0 @@ -6023,11 +8760,11 @@ "isPlayAudio": false }, { - "lineGroupId": 196, + "lineGroupId": 212, "indexInLine": 2, "isSliding": false, - "noteOrder": 5322, - "time": 0.8148148148148148, + "noteOrder": 5711, + "time": 0.874074074074074, "position": { "x": 6, "y": 0 @@ -6046,11 +8783,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5322, - "time": 0.8148148148148148, + "noteOrder": 5711, + "time": 0.874074074074074, "position": { "x": 7, "y": 0 @@ -6069,11 +8806,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5346, - "time": 0.8185185185185184, + "noteOrder": 5723, + "time": 0.8759259259259259, "position": { "x": 7, "y": 0 @@ -6092,13 +8829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5370, - "time": 0.8222222222222222, + "noteOrder": 5723, + "time": 0.8759259259259259, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6110,16 +8847,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 219, "indexInLine": 1, "isSliding": false, - "noteOrder": 5394, - "time": 0.8259259259259258, + "noteOrder": 5759, + "time": 0.8814814814814814, "position": { "x": 3, "y": 0 @@ -6138,13 +8875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5418, - "time": 0.8296296296296295, + "noteOrder": 5771, + "time": 0.8833333333333333, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6156,18 +8893,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5443, - "time": 0.8333333333333333, + "noteOrder": 5771, + "time": 0.8833333333333333, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6184,13 +8921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5467, - "time": 0.8370370370370369, + "noteOrder": 5783, + "time": 0.8851851851851852, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6202,16 +8939,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5515, - "time": 0.8444444444444443, + "noteOrder": 5783, + "time": 0.8851851851851852, "position": { "x": 3, "y": 0 @@ -6230,13 +8967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5539, - "time": 0.8481481481481481, + "noteOrder": 5808, + "time": 0.8888888888888888, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6248,18 +8985,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5564, - "time": 0.8518518518518517, + "noteOrder": 5820, + "time": 0.8907407407407407, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6276,11 +9013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5588, - "time": 0.8555555555555555, + "noteOrder": 5832, + "time": 0.8925925925925926, "position": { "x": 3, "y": 0 @@ -6294,16 +9031,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5612, - "time": 0.8592592592592592, + "noteOrder": 5844, + "time": 0.8944444444444445, "position": { "x": 3, "y": 0 @@ -6322,13 +9059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5709, - "time": 0.874074074074074, + "noteOrder": 5856, + "time": 0.8962962962962963, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6345,13 +9082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5709, - "time": 0.874074074074074, + "noteOrder": 5868, + "time": 0.8981481481481481, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6363,16 +9100,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5757, - "time": 0.8814814814814814, + "noteOrder": 5880, + "time": 0.9, "position": { "x": 3, "y": 0 @@ -6391,13 +9128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5805, + "noteOrder": 5808, "time": 0.8888888888888888, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6409,18 +9146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5817, + "noteOrder": 5820, "time": 0.8907407407407407, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6432,18 +9169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 2, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5830, + "noteOrder": 5832, "time": 0.8925925925925926, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6455,18 +9192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 3, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5842, + "noteOrder": 5844, "time": 0.8944444444444445, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6478,18 +9215,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 4, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5854, + "noteOrder": 5856, "time": 0.8962962962962963, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6501,18 +9238,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 5, + "lineGroupId": 222, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5866, + "noteOrder": 5868, "time": 0.8981481481481481, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6524,18 +9261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 6, + "lineGroupId": 222, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5878, - "time": 0.8999999999999999, + "noteOrder": 5880, + "time": 0.9, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6547,16 +9284,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5805, - "time": 0.8888888888888888, + "noteOrder": 5904, + "time": 0.9037037037037037, "position": { "x": 6, "y": 0 @@ -6575,11 +9312,11 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5817, - "time": 0.8907407407407407, + "noteOrder": 5929, + "time": 0.9074074074074074, "position": { "x": 6, "y": 0 @@ -6598,13 +9335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 2, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5830, - "time": 0.8925925925925926, + "noteOrder": 5953, + "time": 0.9111111111111111, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6616,18 +9353,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 3, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5842, - "time": 0.8944444444444445, + "noteOrder": 5977, + "time": 0.9148148148148149, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6639,18 +9376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 4, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5854, - "time": 0.8962962962962963, + "noteOrder": 6001, + "time": 0.9185185185185185, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6667,13 +9404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 5, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5866, - "time": 0.8981481481481481, + "noteOrder": 6025, + "time": 0.9222222222222223, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6690,13 +9427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 6, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5878, - "time": 0.8999999999999999, + "noteOrder": 6098, + "time": 0.9333333333333333, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6713,13 +9450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5902, - "time": 0.9037037037037036, + "noteOrder": 6098, + "time": 0.9333333333333333, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6731,18 +9468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5926, - "time": 0.9074074074074073, + "noteOrder": 6110, + "time": 0.9351851851851852, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6754,16 +9491,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5951, - "time": 0.911111111111111, + "noteOrder": 6110, + "time": 0.9351851851851852, "position": { "x": 4, "y": 0 @@ -6782,13 +9519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 5975, - "time": 0.9148148148148147, + "noteOrder": 6122, + "time": 0.9370370370370371, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6800,16 +9537,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5999, - "time": 0.9185185185185184, + "noteOrder": 6134, + "time": 0.9388888888888889, "position": { "x": 7, "y": 0 @@ -6828,13 +9565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6023, - "time": 0.9222222222222222, + "noteOrder": 6134, + "time": 0.9388888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6851,13 +9588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 2, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6096, - "time": 0.9333333333333332, + "noteOrder": 6146, + "time": 0.9407407407407408, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6869,16 +9606,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6096, - "time": 0.9333333333333332, + "noteOrder": 6159, + "time": 0.9425925925925926, "position": { "x": 3, "y": 0 @@ -6897,11 +9634,34 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6159, + "time": 0.9425925925925926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6120, - "time": 0.937037037037037, + "noteOrder": 6171, + "time": 0.9444444444444445, "position": { "x": 7, "y": 0 @@ -6920,13 +9680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6144, - "time": 0.9407407407407407, + "noteOrder": 6183, + "time": 0.9462962962962963, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6938,18 +9698,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6168, - "time": 0.9444444444444444, + "noteOrder": 6183, + "time": 0.9462962962962963, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6967,10 +9727,10 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6192, - "time": 0.9481481481481481, + "noteOrder": 6195, + "time": 0.9481481481481482, "position": { "x": 3, "y": 0 @@ -6990,10 +9750,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6241, - "time": 0.9555555555555555, + "noteOrder": 6243, + "time": 0.9555555555555556, "position": { "x": 3, "y": 0 @@ -7013,10 +9773,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6217, - "time": 0.9518518518518518, + "noteOrder": 6219, + "time": 0.951851851851852, "position": { "x": 7, "y": 0 @@ -7036,10 +9796,10 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6241, - "time": 0.9555555555555555, + "noteOrder": 6243, + "time": 0.9555555555555556, "position": { "x": 7, "y": 0 diff --git a/tracks/Virus Funk/383_difficulty_1b.json b/tracks/Virus Funk/383_difficulty_1b.json index 27e20a95..b2463384 100644 --- a/tracks/Virus Funk/383_difficulty_1b.json +++ b/tracks/Virus Funk/383_difficulty_1b.json @@ -54,7 +54,7 @@ }, { "noteOrder": 871, - "time": 0.1333333333333333, + "time": 0.13333333333333333, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 895, - "time": 0.137037037037037, + "time": 0.13703703703703704, "position": { "x": 7, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 919, + "noteOrder": 920, "time": 0.14074074074074072, "position": { "x": 4, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 943, + "noteOrder": 944, "time": 0.14444444444444443, "position": { "x": 6, @@ -134,7 +134,7 @@ }, { "noteOrder": 1016, - "time": 0.15555555555555553, + "time": 0.15555555555555556, "position": { "x": 3, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1161, - "time": 0.17777777777777776, + "noteOrder": 1162, + "time": 0.17777777777777778, "position": { "x": 3, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1185, - "time": 0.18148148148148147, + "noteOrder": 1186, + "time": 0.1814814814814815, "position": { "x": 5, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1209, - "time": 0.18518518518518517, + "noteOrder": 1210, + "time": 0.1851851851851852, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1306, + "noteOrder": 1307, "time": 0.2, "position": { "x": 6, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1403, + "noteOrder": 1404, "time": 0.2148148148148148, "position": { "x": 4, @@ -294,7 +294,7 @@ }, { "noteOrder": 1500, - "time": 0.2296296296296296, + "time": 0.22962962962962963, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1524, - "time": 0.2333333333333333, + "noteOrder": 1525, + "time": 0.23333333333333334, "position": { "x": 7, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1693, + "noteOrder": 1694, "time": 0.25925925925925924, "position": { "x": 7, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1717, - "time": 0.2629629629629629, + "noteOrder": 1718, + "time": 0.26296296296296295, "position": { "x": 3, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1838, + "noteOrder": 1839, "time": 0.28148148148148144, "position": { "x": 7, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.29259259259259257, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2032, - "time": 0.31111111111111106, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2056, - "time": 0.31481481481481477, + "noteOrder": 2057, + "time": 0.3148148148148148, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2080, - "time": 0.3185185185185185, + "noteOrder": 2081, + "time": 0.31851851851851853, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2104, - "time": 0.3222222222222222, + "noteOrder": 2105, + "time": 0.32222222222222224, "position": { "x": 3, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2274, + "noteOrder": 2275, "time": 0.34814814814814815, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2298, + "noteOrder": 2299, "time": 0.35185185185185186, "position": { "x": 7, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2419, - "time": 0.37037037037037035, + "noteOrder": 2420, + "time": 0.3703703703703704, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2443, - "time": 0.37407407407407406, + "noteOrder": 2444, + "time": 0.3740740740740741, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2467, + "noteOrder": 2468, "time": 0.37777777777777777, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2491, + "noteOrder": 2492, "time": 0.3814814814814815, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2612, + "noteOrder": 2613, "time": 0.4, "position": { "x": 7, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2637, - "time": 0.4037037037037037, + "noteOrder": 2638, + "time": 0.40370370370370373, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2661, - "time": 0.4074074074074074, + "noteOrder": 2662, + "time": 0.40740740740740744, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2685, - "time": 0.4111111111111111, + "noteOrder": 2686, + "time": 0.41111111111111115, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2758, - "time": 0.42222222222222217, + "noteOrder": 2759, + "time": 0.4222222222222222, "position": { "x": 3, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2782, - "time": 0.4259259259259259, + "noteOrder": 2783, + "time": 0.42592592592592593, "position": { "x": 7, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2854, + "noteOrder": 2855, "time": 0.437037037037037, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2879, + "noteOrder": 2880, "time": 0.4407407407407407, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2903, + "noteOrder": 2904, "time": 0.4444444444444444, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2927, + "noteOrder": 2928, "time": 0.44814814814814813, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2951, - "time": 0.4518518518518518, + "noteOrder": 2952, + "time": 0.45185185185185184, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2975, - "time": 0.4555555555555555, + "noteOrder": 2976, + "time": 0.45555555555555555, "position": { "x": 5, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2999, - "time": 0.4592592592592592, + "noteOrder": 3001, + "time": 0.45925925925925926, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3024, - "time": 0.4629629629629629, + "noteOrder": 3025, + "time": 0.46296296296296297, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3145, + "noteOrder": 3146, "time": 0.48148148148148145, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3169, + "noteOrder": 3170, "time": 0.48518518518518516, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3241, + "noteOrder": 3243, "time": 0.4962962962962963, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3266, - "time": 0.49999999999999994, + "noteOrder": 3267, + "time": 0.5, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.5444444444444444, + "noteOrder": 3557, + "time": 0.5444444444444445, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3556, - "time": 0.5444444444444444, + "noteOrder": 3557, + "time": 0.5444444444444445, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3919, + "noteOrder": 3920, "time": 0.6, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4112, - "time": 0.6296296296296295, + "noteOrder": 4114, + "time": 0.6296296296296297, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4402, + "noteOrder": 4404, "time": 0.674074074074074, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4427, + "noteOrder": 4428, "time": 0.6777777777777777, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4499, + "noteOrder": 4501, "time": 0.6888888888888889, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4523, + "noteOrder": 4525, "time": 0.6925925925925925, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4644, - "time": 0.711111111111111, + "noteOrder": 4646, + "time": 0.7111111111111111, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4669, - "time": 0.7148148148148147, + "noteOrder": 4670, + "time": 0.7148148148148148, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4693, - "time": 0.7185185185185184, + "noteOrder": 4694, + "time": 0.7185185185185186, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4693, - "time": 0.7185185185185184, + "noteOrder": 4694, + "time": 0.7185185185185186, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4717, - "time": 0.7222222222222221, + "noteOrder": 4719, + "time": 0.7222222222222222, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4717, - "time": 0.7222222222222221, + "noteOrder": 4719, + "time": 0.7222222222222222, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4983, + "noteOrder": 4985, "time": 0.762962962962963, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5009, "time": 0.7666666666666666, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5176, + "noteOrder": 5178, "time": 0.7925925925925926, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5201, + "noteOrder": 5203, "time": 0.7962962962962963, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5225, + "noteOrder": 5227, "time": 0.8, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5249, + "noteOrder": 5251, "time": 0.8037037037037037, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5273, - "time": 0.8074074074074074, + "noteOrder": 5275, + "time": 0.8074074074074075, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.811111111111111, + "noteOrder": 5299, + "time": 0.8111111111111111, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5467, - "time": 0.8370370370370369, + "noteOrder": 5469, + "time": 0.8370370370370371, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5467, - "time": 0.8370370370370369, + "noteOrder": 5469, + "time": 0.8370370370370371, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5491, - "time": 0.8407407407407407, + "noteOrder": 5493, + "time": 0.8407407407407408, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5491, - "time": 0.8407407407407407, + "noteOrder": 5493, + "time": 0.8407407407407408, "position": { "x": 6, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.8814814814814814, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5781, + "noteOrder": 5783, "time": 0.8851851851851852, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5951, - "time": 0.911111111111111, + "noteOrder": 5953, + "time": 0.9111111111111111, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5975, - "time": 0.9148148148148147, + "noteOrder": 5977, + "time": 0.9148148148148149, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5999, - "time": 0.9185185185185184, + "noteOrder": 6001, + "time": 0.9185185185185185, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6023, - "time": 0.9222222222222222, + "noteOrder": 6025, + "time": 0.9222222222222223, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6047, - "time": 0.9259259259259258, + "noteOrder": 6050, + "time": 0.9259259259259259, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6071, - "time": 0.9296296296296296, + "noteOrder": 6074, + "time": 0.9296296296296297, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6192, - "time": 0.9481481481481481, + "noteOrder": 6195, + "time": 0.9481481481481482, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6217, - "time": 0.9518518518518518, + "noteOrder": 6219, + "time": 0.951851851851852, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6241, - "time": 0.9555555555555555, + "noteOrder": 6243, + "time": 0.9555555555555556, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6265, + "noteOrder": 6267, "time": 0.9592592592592593, "position": { "x": 7, @@ -1776,10 +1776,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.029629629629629627, + "time": 0.02962962962962963, "position": { "x": 7, "y": 0 @@ -1799,10 +1799,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.04074074074074074, + "time": 0.040740740740740744, "position": { "x": 7, "y": 0 @@ -1822,10 +1822,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.04444444444444444, + "time": 0.044444444444444446, "position": { "x": 3, "y": 0 @@ -1845,7 +1845,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 363, "time": 0.05555555555555555, @@ -1868,10 +1868,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 387, - "time": 0.059259259259259255, + "time": 0.05925925925925926, "position": { "x": 6, "y": 0 @@ -1891,7 +1891,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 411, "time": 0.06296296296296296, @@ -1914,10 +1914,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 435, - "time": 0.06666666666666665, + "noteOrder": 436, + "time": 0.06666666666666667, "position": { "x": 4, "y": 0 @@ -1937,7 +1937,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 460, "time": 0.07037037037037036, @@ -1960,7 +1960,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, "time": 0.07407407407407407, @@ -1983,9 +1983,9 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 556, + "noteOrder": 557, "time": 0.08518518518518518, "position": { "x": 7, @@ -2006,7 +2006,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, "time": 0.07407407407407407, @@ -2029,9 +2029,9 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 556, + "noteOrder": 557, "time": 0.08518518518518518, "position": { "x": 3, @@ -2052,10 +2052,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 581, - "time": 0.08888888888888888, + "time": 0.08888888888888889, "position": { "x": 3, "y": 0 @@ -2075,7 +2075,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 629, "time": 0.0962962962962963, @@ -2098,10 +2098,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 677, - "time": 0.10370370370370369, + "noteOrder": 678, + "time": 0.10370370370370371, "position": { "x": 7, "y": 0 @@ -2121,7 +2121,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 726, "time": 0.1111111111111111, @@ -2144,10 +2144,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 774, - "time": 0.11851851851851851, + "time": 0.11851851851851852, "position": { "x": 4, "y": 0 @@ -2167,9 +2167,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 798, + "noteOrder": 799, "time": 0.12222222222222222, "position": { "x": 4, @@ -2190,9 +2190,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 822, + "noteOrder": 823, "time": 0.1259259259259259, "position": { "x": 6, @@ -2213,7 +2213,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 847, "time": 0.12962962962962962, @@ -2236,7 +2236,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1258, "time": 0.1925925925925926, @@ -2259,9 +2259,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1306, + "noteOrder": 1307, "time": 0.2, "position": { "x": 7, @@ -2282,10 +2282,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1355, - "time": 0.20740740740740737, + "time": 0.20740740740740743, "position": { "x": 3, "y": 0 @@ -2305,9 +2305,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1403, + "noteOrder": 1404, "time": 0.2148148148148148, "position": { "x": 3, @@ -2328,9 +2328,9 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1451, + "noteOrder": 1452, "time": 0.2222222222222222, "position": { "x": 7, @@ -2351,10 +2351,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1500, - "time": 0.2296296296296296, + "time": 0.22962962962962963, "position": { "x": 7, "y": 0 @@ -2374,10 +2374,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1548, - "time": 0.23703703703703702, + "noteOrder": 1549, + "time": 0.23703703703703705, "position": { "x": 3, "y": 0 @@ -2397,9 +2397,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1572, + "noteOrder": 1573, "time": 0.24074074074074073, "position": { "x": 3, @@ -2420,9 +2420,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1596, + "noteOrder": 1597, "time": 0.24444444444444444, "position": { "x": 7, @@ -2443,7 +2443,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1621, "time": 0.24814814814814815, @@ -2466,7 +2466,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1645, "time": 0.2518518518518518, @@ -2489,9 +2489,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1693, + "noteOrder": 1694, "time": 0.25925925925925924, "position": { "x": 3, @@ -2512,10 +2512,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1742, - "time": 0.2666666666666666, + "time": 0.26666666666666666, "position": { "x": 3, "y": 0 @@ -2535,10 +2535,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1766, - "time": 0.2703703703703703, + "time": 0.27037037037037037, "position": { "x": 3, "y": 0 @@ -2558,10 +2558,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1742, - "time": 0.2666666666666666, + "time": 0.26666666666666666, "position": { "x": 7, "y": 0 @@ -2581,10 +2581,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1766, - "time": 0.2703703703703703, + "time": 0.27037037037037037, "position": { "x": 7, "y": 0 @@ -2604,10 +2604,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.274074074074074, + "noteOrder": 1791, + "time": 0.2740740740740741, "position": { "x": 4, "y": 0 @@ -2627,9 +2627,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1814, + "noteOrder": 1815, "time": 0.27777777777777773, "position": { "x": 4, @@ -2650,10 +2650,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1790, - "time": 0.274074074074074, + "noteOrder": 1791, + "time": 0.2740740740740741, "position": { "x": 6, "y": 0 @@ -2673,9 +2673,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1814, + "noteOrder": 1815, "time": 0.27777777777777773, "position": { "x": 6, @@ -2696,9 +2696,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1935, + "noteOrder": 1936, "time": 0.2962962962962963, "position": { "x": 7, @@ -2718,11 +2718,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1984, - "time": 0.3037037037037037, + "noteOrder": 1960, + "time": 0.3, "position": { "x": 7, "y": 0 @@ -2736,18 +2736,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2129, - "time": 0.3259259259259259, + "noteOrder": 1960, + "time": 0.3, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2759,18 +2759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2177, - "time": 0.3333333333333333, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2787,13 +2787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2225, - "time": 0.34074074074074073, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2805,16 +2805,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2250, - "time": 0.34444444444444444, + "noteOrder": 1984, + "time": 0.3037037037037037, "position": { "x": 7, "y": 0 @@ -2828,18 +2828,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2322, - "time": 0.3555555555555555, + "noteOrder": 2008, + "time": 0.3074074074074074, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2856,13 +2856,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2371, - "time": 0.36296296296296293, + "noteOrder": 2008, + "time": 0.3074074074074074, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2874,18 +2874,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2516, - "time": 0.3851851851851852, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2897,18 +2897,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2564, - "time": 0.3925925925925926, + "noteOrder": 2033, + "time": 0.3111111111111111, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2925,13 +2925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2709, - "time": 0.41481481481481475, + "noteOrder": 2129, + "time": 0.32592592592592595, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2943,18 +2943,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2758, - "time": 0.42222222222222217, + "noteOrder": 2154, + "time": 0.3296296296296296, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2966,18 +2966,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2806, - "time": 0.4296296296296296, + "noteOrder": 2154, + "time": 0.3296296296296296, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2994,13 +2994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2854, - "time": 0.437037037037037, + "noteOrder": 2178, + "time": 0.3333333333333333, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3012,18 +3012,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3048, - "time": 0.4666666666666666, + "noteOrder": 2202, + "time": 0.337037037037037, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3035,18 +3035,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3072, - "time": 0.4703703703703703, + "noteOrder": 2202, + "time": 0.337037037037037, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3058,18 +3058,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3048, - "time": 0.4666666666666666, + "noteOrder": 2226, + "time": 0.34074074074074073, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3081,18 +3081,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3072, - "time": 0.4703703703703703, + "noteOrder": 2238, + "time": 0.34259259259259256, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3104,18 +3104,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3096, - "time": 0.47407407407407404, + "noteOrder": 2238, + "time": 0.34259259259259256, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3132,13 +3132,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 3169, - "time": 0.48518518518518516, + "noteOrder": 2250, + "time": 0.34444444444444444, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3150,16 +3150,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3193, - "time": 0.4888888888888889, + "noteOrder": 2263, + "time": 0.34629629629629627, "position": { "x": 7, "y": 0 @@ -3178,13 +3178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.49999999999999994, + "noteOrder": 2263, + "time": 0.34629629629629627, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3201,11 +3201,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3290, - "time": 0.5037037037037037, + "noteOrder": 2323, + "time": 0.35555555555555557, "position": { "x": 3, "y": 0 @@ -3224,11 +3224,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3314, - "time": 0.5074074074074073, + "noteOrder": 2347, + "time": 0.3592592592592593, "position": { "x": 3, "y": 0 @@ -3247,13 +3247,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3338, - "time": 0.5111111111111111, + "noteOrder": 2347, + "time": 0.3592592592592593, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3265,18 +3265,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3362, - "time": 0.5148148148148147, + "noteOrder": 2371, + "time": 0.362962962962963, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3288,18 +3288,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3386, - "time": 0.5185185185185185, + "noteOrder": 2371, + "time": 0.362962962962963, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3316,13 +3316,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 3411, - "time": 0.5222222222222221, + "noteOrder": 2371, + "time": 0.362962962962963, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3334,18 +3334,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3386, - "time": 0.5185185185185185, + "noteOrder": 2396, + "time": 0.3666666666666667, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3362,13 +3362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3411, - "time": 0.5222222222222221, + "noteOrder": 2396, + "time": 0.3666666666666667, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3385,13 +3385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3435, - "time": 0.5259259259259258, + "noteOrder": 2420, + "time": 0.3703703703703704, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3408,13 +3408,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3459, - "time": 0.5296296296296296, + "noteOrder": 2420, + "time": 0.3703703703703704, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3431,13 +3431,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3435, - "time": 0.5259259259259258, + "noteOrder": 2517, + "time": 0.3851851851851852, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3449,18 +3449,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3459, - "time": 0.5296296296296296, + "noteOrder": 2541, + "time": 0.3888888888888889, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3472,18 +3472,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3483, - "time": 0.5333333333333332, + "noteOrder": 2541, + "time": 0.3888888888888889, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3495,16 +3495,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 65, "indexInLine": 1, "isSliding": false, - "noteOrder": 3532, - "time": 0.5407407407407406, + "noteOrder": 2565, + "time": 0.3925925925925926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2589, + "time": 0.3962962962962963, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2589, + "time": 0.3962962962962963, "position": { "x": 4, "y": 0 @@ -3523,13 +3569,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3507, - "time": 0.537037037037037, + "noteOrder": 2710, + "time": 0.41481481481481486, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3546,11 +3592,126 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2759, + "time": 0.4222222222222222, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2807, + "time": 0.4296296296296296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2855, + "time": 0.437037037037037, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3049, + "time": 0.4666666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3073, + "time": 0.4703703703703704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 3532, - "time": 0.5407407407407406, + "noteOrder": 3049, + "time": 0.4666666666666667, "position": { "x": 6, "y": 0 @@ -3569,13 +3730,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3774, - "time": 0.5777777777777777, + "noteOrder": 3073, + "time": 0.4703703703703704, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3592,11 +3753,57 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 3870, - "time": 0.5925925925925926, + "noteOrder": 3097, + "time": 0.4740740740740741, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3170, + "time": 0.48518518518518516, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.4888888888888889, "position": { "x": 7, "y": 0 @@ -3615,11 +3822,34 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3967, - "time": 0.6074074074074074, + "noteOrder": 3267, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3291, + "time": 0.5037037037037037, "position": { "x": 3, "y": 0 @@ -3638,11 +3868,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4064, - "time": 0.6222222222222221, + "noteOrder": 3315, + "time": 0.5074074074074074, "position": { "x": 3, "y": 0 @@ -3661,11 +3891,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4161, - "time": 0.637037037037037, + "noteOrder": 3339, + "time": 0.5111111111111111, "position": { "x": 7, "y": 0 @@ -3684,11 +3914,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4257, - "time": 0.6518518518518518, + "noteOrder": 3364, + "time": 0.5148148148148148, "position": { "x": 7, "y": 0 @@ -3707,13 +3937,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4257, - "time": 0.6518518518518518, + "noteOrder": 3388, + "time": 0.5185185185185185, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3730,13 +3960,1025 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4354, - "time": 0.6666666666666666, + "noteOrder": 3412, + "time": 0.5222222222222223, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3388, + "time": 0.5185185185185185, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3412, + "time": 0.5222222222222223, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3436, + "time": 0.5259259259259259, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5296296296296297, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3436, + "time": 0.5259259259259259, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.5296296296296297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3485, + "time": 0.5333333333333333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3533, + "time": 0.5407407407407407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3509, + "time": 0.5370370370370371, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3533, + "time": 0.5407407407407407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3775, + "time": 0.5777777777777777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3872, + "time": 0.5925925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3969, + "time": 0.6074074074074074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4065, + "time": 0.6222222222222222, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4162, + "time": 0.6370370370370371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4259, + "time": 0.6518518518518519, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4259, + "time": 0.6518518518518519, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4356, + "time": 0.6666666666666666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4356, + "time": 0.6666666666666666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4404, + "time": 0.674074074074074, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4453, + "time": 0.6814814814814815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4501, + "time": 0.6888888888888889, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4549, + "time": 0.6962962962962963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4574, + "time": 0.7, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4598, + "time": 0.7037037037037037, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4622, + "time": 0.7074074074074074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4743, + "time": 0.725925925925926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4767, + "time": 0.7296296296296296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4767, + "time": 0.7296296296296296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4791, + "time": 0.7333333333333334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4815, + "time": 0.737037037037037, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4815, + "time": 0.737037037037037, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4840, + "time": 0.7407407407407408, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4852, + "time": 0.7425925925925927, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4852, + "time": 0.7425925925925927, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4864, + "time": 0.7444444444444445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4876, + "time": 0.7462962962962963, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4876, + "time": 0.7462962962962963, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4888, + "time": 0.7481481481481482, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4900, + "time": 0.7500000000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4900, + "time": 0.7500000000000001, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4912, + "time": 0.7518518518518519, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7537037037037038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7537037037037038, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3753,11 +4995,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4354, - "time": 0.6666666666666666, + "noteOrder": 4936, + "time": 0.7555555555555555, "position": { "x": 7, "y": 0 @@ -3776,11 +5018,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4402, - "time": 0.674074074074074, + "noteOrder": 4985, + "time": 0.762962962962963, "position": { "x": 7, "y": 0 @@ -3799,13 +5041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4451, - "time": 0.6814814814814815, + "noteOrder": 5033, + "time": 0.7703703703703704, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3817,18 +5059,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4499, - "time": 0.6888888888888889, + "noteOrder": 5106, + "time": 0.7814814814814814, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3840,18 +5082,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4548, - "time": 0.6962962962962963, + "noteOrder": 5033, + "time": 0.7703703703703704, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3863,18 +5105,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4572, - "time": 0.7, + "noteOrder": 5106, + "time": 0.7814814814814814, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3886,18 +5128,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4596, - "time": 0.7037037037037037, + "noteOrder": 5130, + "time": 0.7851851851851852, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3909,18 +5151,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4620, - "time": 0.7074074074074074, + "noteOrder": 5154, + "time": 0.7888888888888889, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3932,18 +5174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4741, - "time": 0.7259259259259259, + "noteOrder": 5154, + "time": 0.7888888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3960,13 +5202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4789, - "time": 0.7333333333333333, + "noteOrder": 5324, + "time": 0.8148148148148149, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3978,16 +5220,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4838, - "time": 0.7407407407407407, + "noteOrder": 5348, + "time": 0.8185185185185185, "position": { "x": 7, "y": 0 @@ -4006,13 +5248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4862, - "time": 0.7444444444444444, + "noteOrder": 5372, + "time": 0.8222222222222223, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4029,13 +5271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4886, - "time": 0.7481481481481481, + "noteOrder": 5396, + "time": 0.825925925925926, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4047,18 +5289,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4910, - "time": 0.7518518518518518, + "noteOrder": 5420, + "time": 0.8296296296296297, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4070,18 +5312,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4935, - "time": 0.7555555555555555, + "noteOrder": 5445, + "time": 0.8333333333333334, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4098,13 +5340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 4983, - "time": 0.762962962962963, + "noteOrder": 5420, + "time": 0.8296296296296297, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4116,18 +5358,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5031, - "time": 0.7703703703703704, + "noteOrder": 5445, + "time": 0.8333333333333334, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4139,18 +5381,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 5104, - "time": 0.7814814814814814, + "noteOrder": 5517, + "time": 0.8444444444444444, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4162,18 +5404,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5031, - "time": 0.7703703703703704, + "noteOrder": 5541, + "time": 0.8481481481481482, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4190,13 +5432,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5104, - "time": 0.7814814814814814, + "noteOrder": 5541, + "time": 0.8481481481481482, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4213,11 +5455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5128, - "time": 0.7851851851851852, + "noteOrder": 5566, + "time": 0.8518518518518519, "position": { "x": 7, "y": 0 @@ -4236,11 +5478,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5322, - "time": 0.8148148148148148, + "noteOrder": 5590, + "time": 0.8555555555555556, "position": { "x": 7, "y": 0 @@ -4259,13 +5501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5346, - "time": 0.8185185185185184, + "noteOrder": 5590, + "time": 0.8555555555555556, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4282,11 +5524,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5370, - "time": 0.8222222222222222, + "noteOrder": 5614, + "time": 0.8592592592592592, "position": { "x": 3, "y": 0 @@ -4305,11 +5547,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5394, - "time": 0.8259259259259258, + "noteOrder": 5626, + "time": 0.861111111111111, "position": { "x": 3, "y": 0 @@ -4328,13 +5570,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5418, - "time": 0.8296296296296295, + "noteOrder": 5626, + "time": 0.861111111111111, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4346,18 +5588,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 5443, - "time": 0.8333333333333333, + "noteOrder": 5638, + "time": 0.8629629629629629, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4374,13 +5616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5418, - "time": 0.8296296296296295, + "noteOrder": 5650, + "time": 0.8648148148148148, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4392,16 +5634,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5443, - "time": 0.8333333333333333, + "noteOrder": 5650, + "time": 0.8648148148148148, "position": { "x": 4, "y": 0 @@ -4415,16 +5657,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5515, - "time": 0.8444444444444443, + "noteOrder": 5662, + "time": 0.8666666666666666, "position": { "x": 3, "y": 0 @@ -4443,13 +5685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5564, - "time": 0.8518518518518517, + "noteOrder": 5675, + "time": 0.8685185185185185, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4461,18 +5703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5612, - "time": 0.8592592592592592, + "noteOrder": 5675, + "time": 0.8685185185185185, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4489,11 +5731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5636, - "time": 0.8629629629629629, + "noteOrder": 5687, + "time": 0.8703703703703703, "position": { "x": 3, "y": 0 @@ -4512,11 +5754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5660, - "time": 0.8666666666666666, + "noteOrder": 5699, + "time": 0.8722222222222222, "position": { "x": 3, "y": 0 @@ -4530,18 +5772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5684, - "time": 0.8703703703703703, + "noteOrder": 5699, + "time": 0.8722222222222222, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4559,9 +5801,9 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5709, + "noteOrder": 5711, "time": 0.874074074074074, "position": { "x": 3, @@ -4582,9 +5824,9 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5757, + "noteOrder": 5759, "time": 0.8814814814814814, "position": { "x": 3, @@ -4605,9 +5847,9 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5805, + "noteOrder": 5808, "time": 0.8888888888888888, "position": { "x": 8, @@ -4628,10 +5870,10 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5878, - "time": 0.8999999999999999, + "noteOrder": 5880, + "time": 0.9, "position": { "x": 5, "y": 0 @@ -4651,9 +5893,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5805, + "noteOrder": 5808, "time": 0.8888888888888888, "position": { "x": 4, @@ -4674,10 +5916,33 @@ }, { "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5880, + "time": 0.9, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 5878, - "time": 0.8999999999999999, + "noteOrder": 5904, + "time": 0.9037037037037037, "position": { "x": 3, "y": 0 @@ -4697,10 +5962,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5902, - "time": 0.9037037037037036, + "noteOrder": 5929, + "time": 0.9074074074074074, "position": { "x": 3, "y": 0 @@ -4718,12 +5983,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5929, + "time": 0.9074074074074074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6096, - "time": 0.9333333333333332, + "noteOrder": 6098, + "time": 0.9333333333333333, "position": { "x": 3, "y": 0 @@ -4743,10 +6031,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6120, - "time": 0.937037037037037, + "noteOrder": 6122, + "time": 0.9370370370370371, "position": { "x": 3, "y": 0 @@ -4766,10 +6054,10 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6144, - "time": 0.9407407407407407, + "noteOrder": 6146, + "time": 0.9407407407407408, "position": { "x": 7, "y": 0 @@ -4789,10 +6077,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6168, - "time": 0.9444444444444444, + "noteOrder": 6171, + "time": 0.9444444444444445, "position": { "x": 7, "y": 0 @@ -4812,9 +6100,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6289, + "noteOrder": 6292, "time": 0.9629629629629629, "position": { "x": 4, @@ -4835,9 +6123,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6313, + "noteOrder": 6316, "time": 0.9666666666666667, "position": { "x": 4, @@ -4858,9 +6146,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6289, + "noteOrder": 6292, "time": 0.9629629629629629, "position": { "x": 6, @@ -4881,9 +6169,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6313, + "noteOrder": 6316, "time": 0.9666666666666667, "position": { "x": 6, @@ -4904,9 +6192,9 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6340, "time": 0.9703703703703703, "position": { "x": 7, @@ -4927,9 +6215,9 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, + "noteOrder": 6388, "time": 0.9777777777777777, "position": { "x": 7, @@ -4950,9 +6238,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6338, + "noteOrder": 6340, "time": 0.9703703703703703, "position": { "x": 3, @@ -4973,9 +6261,9 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, + "noteOrder": 6388, "time": 0.9777777777777777, "position": { "x": 3, diff --git a/tracks/Virus Funk/info.json b/tracks/Virus Funk/info.json index 7463bc37..b3acb47c 100644 --- a/tracks/Virus Funk/info.json +++ b/tracks/Virus Funk/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Virus Funk", - "SongLength": "133.694694", + "SongLength": "123.742041", "SongAuthorName": "Nhato", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/WELCOME TO MY GAME/305_difficulty_1a.json b/tracks/WELCOME TO MY GAME/305_difficulty_1a.json index 006d8da3..d851d583 100644 --- a/tracks/WELCOME TO MY GAME/305_difficulty_1a.json +++ b/tracks/WELCOME TO MY GAME/305_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 121, - "time": 0.024539877300613498, + "time": 0.024539877300613494, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.03435582822085889, + "time": 0.0343558282208589, "position": { "x": 3, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 217, + "noteOrder": 218, "time": 0.04417177914110429, "position": { "x": 5, @@ -74,7 +74,7 @@ }, { "noteOrder": 266, - "time": 0.053987730061349694, + "time": 0.05398773006134969, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 362, - "time": 0.07361963190184048, + "noteOrder": 363, + "time": 0.0736196319018405, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 411, - "time": 0.0834355828220859, + "time": 0.08343558282208588, "position": { "x": 5, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 507, + "noteOrder": 508, "time": 0.10306748466257667, "position": { "x": 5, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 531, - "time": 0.10797546012269939, + "noteOrder": 532, + "time": 0.10797546012269937, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 556, - "time": 0.11288343558282207, + "time": 0.11288343558282209, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 604, - "time": 0.12269938650306747, + "time": 0.12269938650306748, "position": { "x": 5, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 652, - "time": 0.13251533742331287, + "noteOrder": 653, + "time": 0.1325153374233129, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 701, - "time": 0.14233128834355827, + "time": 0.1423312883435583, "position": { "x": 5, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 797, - "time": 0.1619631901840491, + "noteOrder": 798, + "time": 0.16196319018404906, "position": { "x": 5, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 821, - "time": 0.1668711656441718, + "noteOrder": 822, + "time": 0.16687116564417176, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 894, - "time": 0.18159509202453988, + "time": 0.18159509202453986, "position": { "x": 5, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 942, + "noteOrder": 943, "time": 0.19141104294478525, "position": { "x": 7, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 990, - "time": 0.20122699386503068, + "noteOrder": 991, + "time": 0.20122699386503065, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1087, - "time": 0.22085889570552147, + "noteOrder": 1088, + "time": 0.22085889570552145, "position": { "x": 5, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1111, - "time": 0.22576687116564415, + "noteOrder": 1112, + "time": 0.22576687116564417, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1135, + "noteOrder": 1136, "time": 0.23067484662576687, "position": { "x": 7, @@ -554,7 +554,7 @@ }, { "noteOrder": 1184, - "time": 0.24049079754601224, + "time": 0.24049079754601227, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1208, - "time": 0.24539877300613494, + "time": 0.24539877300613497, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1280, + "noteOrder": 1281, "time": 0.26012269938650306, "position": { "x": 5, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1304, - "time": 0.26503067484662574, + "noteOrder": 1305, + "time": 0.2650306748466258, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1377, + "noteOrder": 1378, "time": 0.27975460122699386, "position": { "x": 5, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1401, - "time": 0.28466257668711653, + "noteOrder": 1402, + "time": 0.2846625766871166, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1425, + "noteOrder": 1426, "time": 0.28957055214723926, "position": { "x": 7, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1449, - "time": 0.29447852760736193, + "noteOrder": 1450, + "time": 0.294478527607362, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1473, + "noteOrder": 1474, "time": 0.29938650306748466, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1522, + "noteOrder": 1523, "time": 0.30920245398773005, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1546, + "noteOrder": 1547, "time": 0.3141104294478527, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1546, + "noteOrder": 1547, "time": 0.3141104294478527, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1570, - "time": 0.3190184049079754, + "noteOrder": 1571, + "time": 0.3190184049079755, "position": { "x": 7, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1570, - "time": 0.3190184049079754, + "noteOrder": 1571, + "time": 0.3190184049079755, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1667, - "time": 0.33865030674846625, + "noteOrder": 1668, + "time": 0.3386503067484663, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1691, + "noteOrder": 1692, "time": 0.3435582822085889, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1715, - "time": 0.34846625766871164, + "noteOrder": 1716, + "time": 0.3484662576687117, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1739, + "noteOrder": 1740, "time": 0.3533742331288343, "position": { "x": 2, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1763, - "time": 0.35828220858895704, + "noteOrder": 1764, + "time": 0.3582822085889571, "position": { "x": 3, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1788, - "time": 0.36319018404907977, + "time": 0.3631901840490797, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1812, + "noteOrder": 1813, "time": 0.36809815950920244, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1836, + "noteOrder": 1837, "time": 0.3730061349693251, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 1861, "time": 0.37791411042944784, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1884, + "noteOrder": 1885, "time": 0.3828220858895705, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 1908, - "time": 0.3877300613496933, + "noteOrder": 1909, + "time": 0.38773006134969323, "position": { "x": 3, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1932, - "time": 0.39263803680981596, + "noteOrder": 1933, + "time": 0.3926380368098159, "position": { "x": 2, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2053, + "noteOrder": 2054, "time": 0.4171779141104294, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2077, + "noteOrder": 2078, "time": 0.4220858895705521, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2102, + "noteOrder": 2103, "time": 0.4269938650306748, "position": { "x": 7, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2126, - "time": 0.43190184049079755, + "noteOrder": 2127, + "time": 0.4319018404907975, "position": { "x": 8, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2150, + "noteOrder": 2151, "time": 0.4368098159509202, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2174, - "time": 0.44171779141104295, + "noteOrder": 2175, + "time": 0.4417177914110429, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2198, + "noteOrder": 2199, "time": 0.4466257668711656, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2222, - "time": 0.4515337423312883, + "noteOrder": 2223, + "time": 0.45153374233128835, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2246, - "time": 0.4564417177914111, + "noteOrder": 2248, + "time": 0.456441717791411, "position": { "x": 5, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2271, + "noteOrder": 2272, "time": 0.46134969325153374, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2295, + "noteOrder": 2296, "time": 0.4662576687116564, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2319, + "noteOrder": 2320, "time": 0.47116564417177914, "position": { "x": 8, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2440, - "time": 0.49570552147239266, + "noteOrder": 2441, + "time": 0.4957055214723926, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2488, + "noteOrder": 2489, "time": 0.505521472392638, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2536, + "noteOrder": 2538, "time": 0.5153374233128835, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2585, + "noteOrder": 2586, "time": 0.5251533742331288, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2633, - "time": 0.5349693251533741, + "noteOrder": 2634, + "time": 0.5349693251533743, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2681, + "noteOrder": 2683, "time": 0.5447852760736196, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2705, - "time": 0.5496932515337423, + "noteOrder": 2707, + "time": 0.5496932515337424, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2730, + "noteOrder": 2731, "time": 0.554601226993865, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2754, + "noteOrder": 2755, "time": 0.5595092024539877, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2826, + "noteOrder": 2828, "time": 0.5742331288343557, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2875, + "noteOrder": 2876, "time": 0.5840490797546012, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2923, - "time": 0.5938650306748466, + "noteOrder": 2924, + "time": 0.5938650306748465, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2971, - "time": 0.603680981595092, + "noteOrder": 2973, + "time": 0.6036809815950921, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2995, + "noteOrder": 2997, "time": 0.6085889570552148, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3019, + "noteOrder": 3021, "time": 0.6134969325153374, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3044, + "noteOrder": 3045, "time": 0.6184049079754601, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3068, - "time": 0.6233128834355828, + "noteOrder": 3069, + "time": 0.6233128834355829, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3092, + "noteOrder": 3093, "time": 0.6282208588957054, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3116, - "time": 0.6331288343558282, + "noteOrder": 3118, + "time": 0.6331288343558281, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3140, - "time": 0.6380368098159508, + "noteOrder": 3142, + "time": 0.638036809815951, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3213, - "time": 0.652760736196319, + "noteOrder": 3214, + "time": 0.6527607361963189, "position": { "x": 5, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3237, - "time": 0.6576687116564417, + "noteOrder": 3238, + "time": 0.6576687116564418, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3261, - "time": 0.6625766871165644, + "noteOrder": 3263, + "time": 0.6625766871165645, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3406, - "time": 0.6920245398773006, + "noteOrder": 3408, + "time": 0.6920245398773005, "position": { "x": 5, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3430, - "time": 0.6969325153374233, + "noteOrder": 3432, + "time": 0.6969325153374234, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3454, + "noteOrder": 3456, "time": 0.701840490797546, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3599, + "noteOrder": 3601, "time": 0.7312883435582821, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3623, + "noteOrder": 3625, "time": 0.7361963190184049, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3647, - "time": 0.7411042944785277, + "noteOrder": 3649, + "time": 0.7411042944785275, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3792, - "time": 0.7705521472392638, + "noteOrder": 3794, + "time": 0.7705521472392639, "position": { "x": 5, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3817, - "time": 0.7754601226993866, + "noteOrder": 3818, + "time": 0.7754601226993865, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3841, + "noteOrder": 3843, "time": 0.7803680981595091, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3986, - "time": 0.8098159509202453, + "noteOrder": 3988, + "time": 0.8098159509202454, "position": { "x": 5, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.8196319018404908, + "noteOrder": 4036, + "time": 0.8196319018404907, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.8294478527607362, "position": { "x": 5, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4131, + "noteOrder": 4133, "time": 0.8392638036809815, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4179, + "noteOrder": 4181, "time": 0.849079754601227, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4227, + "noteOrder": 4229, "time": 0.8588957055214723, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4276, - "time": 0.8687116564417177, + "noteOrder": 4278, + "time": 0.8687116564417178, "position": { "x": 5, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8736196319018404, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4372, + "noteOrder": 4374, "time": 0.8883435582822086, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.8932515337423312, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4420, - "time": 0.898159509202454, + "noteOrder": 4423, + "time": 0.8981595092024539, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.9079754601226994, "position": { "x": 5, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4493, - "time": 0.9128834355828221, + "noteOrder": 4495, + "time": 0.912883435582822, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.9177914110429447, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4565, + "noteOrder": 4568, "time": 0.9276073619631902, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.9374233128834355, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.9521472392638036, "position": { "x": 7, @@ -2336,7 +2336,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.019631901840490795, @@ -2359,10 +2359,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, - "time": 0.024539877300613498, + "time": 0.024539877300613494, "position": { "x": 6, "y": 0 @@ -2382,7 +2382,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, "time": 0.029447852760736196, @@ -2405,10 +2405,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, - "time": 0.03435582822085889, + "time": 0.0343558282208589, "position": { "x": 4, "y": 0 @@ -2428,7 +2428,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03926380368098159, @@ -2451,9 +2451,9 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 217, + "noteOrder": 218, "time": 0.04417177914110429, "position": { "x": 4, @@ -2474,10 +2474,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, - "time": 0.049079754601226995, + "time": 0.04907975460122699, "position": { "x": 5, "y": 0 @@ -2497,10 +2497,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.053987730061349694, + "time": 0.05398773006134969, "position": { "x": 6, "y": 0 @@ -2520,7 +2520,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, "time": 0.05889570552147239, @@ -2543,7 +2543,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 314, "time": 0.0638036809815951, @@ -2566,10 +2566,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, - "time": 0.06871165644171778, + "time": 0.0687116564417178, "position": { "x": 3, "y": 0 @@ -2589,10 +2589,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 362, - "time": 0.07361963190184048, + "noteOrder": 363, + "time": 0.0736196319018405, "position": { "x": 5, "y": 0 @@ -2612,9 +2612,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 386, + "noteOrder": 387, "time": 0.07852760736196318, "position": { "x": 7, @@ -2635,7 +2635,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 435, "time": 0.08834355828220858, @@ -2658,10 +2658,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.09815950920245399, + "time": 0.09815950920245398, "position": { "x": 3, "y": 0 @@ -2681,9 +2681,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 507, + "noteOrder": 508, "time": 0.10306748466257667, "position": { "x": 4, @@ -2704,7 +2704,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, "time": 0.11779141104294479, @@ -2727,10 +2727,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 604, - "time": 0.12269938650306747, + "time": 0.12269938650306748, "position": { "x": 6, "y": 0 @@ -2750,10 +2750,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 676, - "time": 0.13742331288343557, + "noteOrder": 677, + "time": 0.1374233128834356, "position": { "x": 7, "y": 0 @@ -2773,10 +2773,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 701, - "time": 0.14233128834355827, + "time": 0.1423312883435583, "position": { "x": 6, "y": 0 @@ -2796,10 +2796,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 725, - "time": 0.14723926380368096, + "time": 0.147239263803681, "position": { "x": 3, "y": 0 @@ -2819,7 +2819,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 749, "time": 0.1521472392638037, @@ -2842,7 +2842,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 773, "time": 0.15705521472392636, @@ -2865,10 +2865,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 821, - "time": 0.1668711656441718, + "noteOrder": 822, + "time": 0.16687116564417176, "position": { "x": 4, "y": 0 @@ -2888,7 +2888,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 870, "time": 0.17668711656441716, @@ -2911,9 +2911,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 942, + "noteOrder": 943, "time": 0.19141104294478525, "position": { "x": 6, @@ -2934,10 +2934,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 966, - "time": 0.19631901840490798, + "noteOrder": 967, + "time": 0.19631901840490795, "position": { "x": 7, "y": 0 @@ -2957,7 +2957,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1039, "time": 0.21104294478527605, @@ -2980,10 +2980,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1063, - "time": 0.21595092024539878, + "time": 0.21595092024539875, "position": { "x": 3, "y": 0 @@ -3003,9 +3003,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1135, + "noteOrder": 1136, "time": 0.23067484662576687, "position": { "x": 6, @@ -3026,9 +3026,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1159, + "noteOrder": 1160, "time": 0.23558282208588957, "position": { "x": 7, @@ -3049,10 +3049,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1184, - "time": 0.24049079754601224, + "time": 0.24049079754601227, "position": { "x": 6, "y": 0 @@ -3072,10 +3072,10 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1208, - "time": 0.24539877300613494, + "time": 0.24539877300613497, "position": { "x": 7, "y": 0 @@ -3095,9 +3095,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1256, + "noteOrder": 1257, "time": 0.2552147239263804, "position": { "x": 7, @@ -3118,7 +3118,7 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1329, "time": 0.26993865030674846, @@ -3141,10 +3141,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1353, - "time": 0.27484662576687113, + "time": 0.2748466257668712, "position": { "x": 3, "y": 0 @@ -3164,9 +3164,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1425, + "noteOrder": 1426, "time": 0.28957055214723926, "position": { "x": 6, @@ -3187,10 +3187,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1643, - "time": 0.3337423312883436, + "time": 0.3337423312883435, "position": { "x": 8, "y": 0 @@ -3210,9 +3210,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1739, + "noteOrder": 1740, "time": 0.3533742331288343, "position": { "x": 4, @@ -3233,9 +3233,9 @@ }, { "lineGroupId": 64, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1836, + "noteOrder": 1837, "time": 0.3730061349693251, "position": { "x": 8, @@ -3256,10 +3256,10 @@ }, { "lineGroupId": 64, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1932, - "time": 0.39263803680981596, + "noteOrder": 1933, + "time": 0.3926380368098159, "position": { "x": 4, "y": 0 @@ -3279,9 +3279,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2029, + "noteOrder": 2030, "time": 0.4122699386503067, "position": { "x": 2, @@ -3302,10 +3302,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2126, - "time": 0.43190184049079755, + "noteOrder": 2127, + "time": 0.4319018404907975, "position": { "x": 6, "y": 0 @@ -3325,10 +3325,10 @@ }, { "lineGroupId": 78, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2222, - "time": 0.4515337423312883, + "noteOrder": 2223, + "time": 0.45153374233128835, "position": { "x": 2, "y": 0 @@ -3348,9 +3348,9 @@ }, { "lineGroupId": 78, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2319, + "noteOrder": 2320, "time": 0.47116564417177914, "position": { "x": 6, @@ -3371,10 +3371,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2802, - "time": 0.5693251533742331, + "noteOrder": 2803, + "time": 0.5693251533742332, "position": { "x": 6, "y": 0 @@ -3394,9 +3394,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2826, + "noteOrder": 2828, "time": 0.5742331288343557, "position": { "x": 6, @@ -3417,9 +3417,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2850, + "noteOrder": 2852, "time": 0.5791411042944785, "position": { "x": 4, @@ -3440,9 +3440,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2875, + "noteOrder": 2876, "time": 0.5840490797546012, "position": { "x": 4, @@ -3463,10 +3463,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2899, - "time": 0.5889570552147239, + "noteOrder": 2900, + "time": 0.588957055214724, "position": { "x": 6, "y": 0 @@ -3486,10 +3486,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2923, - "time": 0.5938650306748466, + "noteOrder": 2924, + "time": 0.5938650306748465, "position": { "x": 6, "y": 0 @@ -3509,9 +3509,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2947, + "noteOrder": 2948, "time": 0.5987730061349693, "position": { "x": 4, @@ -3532,10 +3532,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2971, - "time": 0.603680981595092, + "noteOrder": 2973, + "time": 0.6036809815950921, "position": { "x": 4, "y": 0 @@ -3555,10 +3555,10 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3189, - "time": 0.6478527607361964, + "noteOrder": 3190, + "time": 0.6478527607361962, "position": { "x": 7, "y": 0 @@ -3578,10 +3578,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3261, - "time": 0.6625766871165644, + "noteOrder": 3263, + "time": 0.6625766871165645, "position": { "x": 4, "y": 0 @@ -3601,10 +3601,56 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3287, + "time": 0.667484662576687, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3311, + "time": 0.6723926380368097, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3285, - "time": 0.6674846625766871, + "noteOrder": 3311, + "time": 0.6723926380368097, "position": { "x": 3, "y": 0 @@ -3624,10 +3670,56 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3335, + "time": 0.6773006134969326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3359, + "time": 0.6822085889570552, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3333, - "time": 0.6773006134969325, + "noteOrder": 3359, + "time": 0.6822085889570552, "position": { "x": 3, "y": 0 @@ -3647,9 +3739,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3382, + "noteOrder": 3383, "time": 0.6871165644171778, "position": { "x": 3, @@ -3670,9 +3762,9 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3454, + "noteOrder": 3456, "time": 0.701840490797546, "position": { "x": 6, @@ -3693,9 +3785,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3478, + "noteOrder": 3480, "time": 0.7067484662576686, "position": { "x": 7, @@ -3714,12 +3806,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3504, + "time": 0.7116564417177913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3504, + "time": 0.7116564417177913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3527, - "time": 0.7165644171779141, + "noteOrder": 3528, + "time": 0.7165644171779142, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3553, + "time": 0.7214723926380368, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3553, + "time": 0.7214723926380368, "position": { "x": 7, "y": 0 @@ -3739,10 +3923,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3575, - "time": 0.7263803680981595, + "noteOrder": 3577, + "time": 0.7263803680981594, "position": { "x": 7, "y": 0 @@ -3762,10 +3946,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3647, - "time": 0.7411042944785277, + "noteOrder": 3649, + "time": 0.7411042944785275, "position": { "x": 5, "y": 0 @@ -3785,9 +3969,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3672, + "noteOrder": 3673, "time": 0.7460122699386502, "position": { "x": 3, @@ -3806,11 +3990,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3698, + "time": 0.7509202453987731, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3698, + "time": 0.7509202453987731, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3720, + "noteOrder": 3722, "time": 0.7558282208588957, "position": { "x": 7, @@ -3829,11 +4059,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3746, + "time": 0.7607361963190183, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3746, + "time": 0.7607361963190183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3768, + "noteOrder": 3770, "time": 0.765644171779141, "position": { "x": 3, @@ -3854,9 +4130,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3841, + "noteOrder": 3843, "time": 0.7803680981595091, "position": { "x": 5, @@ -3877,10 +4153,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3865, - "time": 0.7852760736196319, + "noteOrder": 3867, + "time": 0.7852760736196318, "position": { "x": 7, "y": 0 @@ -3898,11 +4174,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3891, + "time": 0.7901840490797546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3891, + "time": 0.7901840490797546, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3913, + "noteOrder": 3915, "time": 0.7950920245398773, "position": { "x": 3, @@ -3921,12 +4243,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3939, + "time": 0.7999999999999999, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3939, + "time": 0.7999999999999999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3962, - "time": 0.8049079754601227, + "noteOrder": 3963, + "time": 0.8049079754601226, "position": { "x": 7, "y": 0 @@ -3946,10 +4314,10 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3986, - "time": 0.8098159509202453, + "noteOrder": 3988, + "time": 0.8098159509202454, "position": { "x": 6, "y": 0 @@ -3969,9 +4337,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4010, + "noteOrder": 4012, "time": 0.8147239263803681, "position": { "x": 5, @@ -3992,10 +4360,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.8196319018404908, + "noteOrder": 4036, + "time": 0.8196319018404907, "position": { "x": 4, "y": 0 @@ -4015,9 +4383,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4058, + "noteOrder": 4060, "time": 0.8245398773006134, "position": { "x": 3, @@ -4038,9 +4406,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4082, + "noteOrder": 4084, "time": 0.8294478527607362, "position": { "x": 4, @@ -4061,9 +4429,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.8343558282208589, "position": { "x": 5, @@ -4084,9 +4452,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, + "noteOrder": 4133, "time": 0.8392638036809815, "position": { "x": 6, @@ -4107,9 +4475,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4155, + "noteOrder": 4157, "time": 0.8441717791411042, "position": { "x": 7, @@ -4130,9 +4498,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4179, + "noteOrder": 4181, "time": 0.849079754601227, "position": { "x": 5, @@ -4153,9 +4521,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.8539877300613496, "position": { "x": 3, @@ -4176,9 +4544,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4227, + "noteOrder": 4229, "time": 0.8588957055214723, "position": { "x": 5, @@ -4199,10 +4567,10 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4251, - "time": 0.8638036809815951, + "noteOrder": 4253, + "time": 0.863803680981595, "position": { "x": 7, "y": 0 @@ -4222,9 +4590,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8736196319018404, "position": { "x": 4, @@ -4245,10 +4613,10 @@ }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4348, - "time": 0.8834355828220859, + "noteOrder": 4350, + "time": 0.8834355828220858, "position": { "x": 3, "y": 0 @@ -4268,9 +4636,9 @@ }, { "lineGroupId": 155, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4372, + "noteOrder": 4374, "time": 0.8883435582822086, "position": { "x": 4, @@ -4291,10 +4659,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4445, - "time": 0.9030674846625766, + "noteOrder": 4447, + "time": 0.9030674846625767, "position": { "x": 7, "y": 0 @@ -4314,9 +4682,9 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4469, + "noteOrder": 4471, "time": 0.9079754601226994, "position": { "x": 6, @@ -4337,9 +4705,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4541, + "noteOrder": 4543, "time": 0.9226993865030675, "position": { "x": 7, @@ -4360,9 +4728,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4565, + "noteOrder": 4568, "time": 0.9276073619631902, "position": { "x": 6, @@ -4383,9 +4751,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.9325153374233128, "position": { "x": 3, @@ -4406,9 +4774,9 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, + "noteOrder": 4616, "time": 0.9374233128834355, "position": { "x": 4, @@ -4429,9 +4797,9 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4638, + "noteOrder": 4640, "time": 0.9423312883435583, "position": { "x": 7, @@ -4452,10 +4820,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4662, - "time": 0.9472392638036808, + "noteOrder": 4664, + "time": 0.947239263803681, "position": { "x": 5, "y": 0 @@ -4475,10 +4843,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4662, - "time": 0.9472392638036808, + "noteOrder": 4664, + "time": 0.947239263803681, "position": { "x": 3, "y": 0 @@ -4498,9 +4866,9 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.9521472392638036, "position": { "x": 5, diff --git a/tracks/WELCOME TO MY GAME/305_difficulty_1b.json b/tracks/WELCOME TO MY GAME/305_difficulty_1b.json index 6152b4c8..8e59d19e 100644 --- a/tracks/WELCOME TO MY GAME/305_difficulty_1b.json +++ b/tracks/WELCOME TO MY GAME/305_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 242, - "time": 0.049079754601226995, + "time": 0.04907975460122699, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 338, - "time": 0.06871165644171778, + "time": 0.0687116564417178, "position": { "x": 4, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 531, - "time": 0.10797546012269939, + "noteOrder": 532, + "time": 0.10797546012269937, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 725, - "time": 0.14723926380368096, + "time": 0.147239263803681, "position": { "x": 3, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 821, - "time": 0.1668711656441718, + "noteOrder": 822, + "time": 0.16687116564417176, "position": { "x": 7, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 966, - "time": 0.19631901840490798, + "noteOrder": 967, + "time": 0.19631901840490795, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1111, - "time": 0.22576687116564415, + "noteOrder": 1112, + "time": 0.22576687116564417, "position": { "x": 5, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1159, + "noteOrder": 1160, "time": 0.23558282208588957, "position": { "x": 6, @@ -274,7 +274,7 @@ }, { "noteOrder": 1208, - "time": 0.24539877300613494, + "time": 0.24539877300613497, "position": { "x": 7, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1304, - "time": 0.26503067484662574, + "noteOrder": 1305, + "time": 0.2650306748466258, "position": { "x": 5, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1401, - "time": 0.28466257668711653, + "noteOrder": 1402, + "time": 0.2846625766871166, "position": { "x": 5, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1594, - "time": 0.3239263803680982, + "noteOrder": 1595, + "time": 0.3239263803680981, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1691, + "noteOrder": 1692, "time": 0.3435582822085889, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1884, + "noteOrder": 1885, "time": 0.3828220858895705, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2077, + "noteOrder": 2078, "time": 0.4220858895705521, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2174, - "time": 0.44171779141104295, + "noteOrder": 2175, + "time": 0.4417177914110429, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2271, + "noteOrder": 2272, "time": 0.46134969325153374, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2367, - "time": 0.4809815950920245, + "noteOrder": 2368, + "time": 0.48098159509202454, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2802, - "time": 0.5693251533742331, + "noteOrder": 2803, + "time": 0.5693251533742332, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2850, + "noteOrder": 2852, "time": 0.5791411042944785, "position": { "x": 6, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2899, - "time": 0.5889570552147239, + "noteOrder": 2900, + "time": 0.588957055214724, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2947, + "noteOrder": 2948, "time": 0.5987730061349693, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2995, + "noteOrder": 2997, "time": 0.6085889570552148, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3044, + "noteOrder": 3045, "time": 0.6184049079754601, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3092, + "noteOrder": 3093, "time": 0.6282208588957054, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3140, - "time": 0.6380368098159508, + "noteOrder": 3142, + "time": 0.638036809815951, "position": { "x": 5, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3237, - "time": 0.6576687116564417, + "noteOrder": 3238, + "time": 0.6576687116564418, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3285, - "time": 0.6674846625766871, + "noteOrder": 3287, + "time": 0.667484662576687, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3333, - "time": 0.6773006134969325, + "noteOrder": 3335, + "time": 0.6773006134969326, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3430, - "time": 0.6969325153374233, + "noteOrder": 3432, + "time": 0.6969325153374234, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3478, + "noteOrder": 3480, "time": 0.7067484662576686, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3527, - "time": 0.7165644171779141, + "noteOrder": 3528, + "time": 0.7165644171779142, "position": { "x": 7, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3623, + "noteOrder": 3625, "time": 0.7361963190184049, "position": { "x": 5, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3673, "time": 0.7460122699386502, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3722, "time": 0.7558282208588957, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3817, - "time": 0.7754601226993866, + "noteOrder": 3818, + "time": 0.7754601226993865, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3865, - "time": 0.7852760736196319, + "noteOrder": 3867, + "time": 0.7852760736196318, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3913, + "noteOrder": 3915, "time": 0.7950920245398773, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4010, + "noteOrder": 4012, "time": 0.8147239263803681, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4058, + "noteOrder": 4060, "time": 0.8245398773006134, "position": { "x": 5, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.8343558282208589, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4155, + "noteOrder": 4157, "time": 0.8441717791411042, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4203, + "noteOrder": 4205, "time": 0.8539877300613496, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4251, - "time": 0.8638036809815951, + "noteOrder": 4253, + "time": 0.863803680981595, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8736196319018404, "position": { "x": 2, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.8932515337423312, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.9030674846625766, + "noteOrder": 4447, + "time": 0.9030674846625767, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4493, - "time": 0.9128834355828221, + "noteOrder": 4495, + "time": 0.912883435582822, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4541, + "noteOrder": 4543, "time": 0.9226993865030675, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4590, + "noteOrder": 4592, "time": 0.9325153374233128, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4638, + "noteOrder": 4640, "time": 0.9423312883435583, "position": { "x": 7, @@ -1156,7 +1156,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.019631901840490795, @@ -1179,7 +1179,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.029447852760736196, @@ -1202,7 +1202,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03926380368098159, @@ -1225,10 +1225,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 242, - "time": 0.049079754601226995, + "time": 0.04907975460122699, "position": { "x": 6, "y": 0 @@ -1248,7 +1248,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, "time": 0.05889570552147239, @@ -1271,10 +1271,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, - "time": 0.06871165644171778, + "time": 0.0687116564417178, "position": { "x": 4, "y": 0 @@ -1294,9 +1294,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 386, + "noteOrder": 387, "time": 0.07852760736196318, "position": { "x": 3, @@ -1317,7 +1317,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 435, "time": 0.08834355828220858, @@ -1340,10 +1340,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.09815950920245399, + "time": 0.09815950920245398, "position": { "x": 6, "y": 0 @@ -1363,10 +1363,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 531, - "time": 0.10797546012269939, + "noteOrder": 532, + "time": 0.10797546012269937, "position": { "x": 6, "y": 0 @@ -1386,7 +1386,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, "time": 0.11779141104294479, @@ -1409,7 +1409,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 628, "time": 0.1276073619631902, @@ -1432,10 +1432,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 676, - "time": 0.13742331288343557, + "noteOrder": 677, + "time": 0.1374233128834356, "position": { "x": 6, "y": 0 @@ -1455,10 +1455,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 725, - "time": 0.14723926380368096, + "time": 0.147239263803681, "position": { "x": 6, "y": 0 @@ -1478,7 +1478,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 773, "time": 0.15705521472392636, @@ -1501,10 +1501,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 821, - "time": 0.1668711656441718, + "noteOrder": 822, + "time": 0.16687116564417176, "position": { "x": 4, "y": 0 @@ -1524,7 +1524,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 870, "time": 0.17668711656441716, @@ -1547,7 +1547,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1015, "time": 0.20613496932515335, @@ -1570,10 +1570,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1063, - "time": 0.21595092024539878, + "time": 0.21595092024539875, "position": { "x": 3, "y": 0 @@ -1593,10 +1593,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1208, - "time": 0.24539877300613494, + "time": 0.24539877300613497, "position": { "x": 6, "y": 0 @@ -1616,9 +1616,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1256, + "noteOrder": 1257, "time": 0.2552147239263804, "position": { "x": 7, @@ -1639,10 +1639,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1304, - "time": 0.26503067484662574, + "noteOrder": 1305, + "time": 0.2650306748466258, "position": { "x": 6, "y": 0 @@ -1662,10 +1662,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1353, - "time": 0.27484662576687113, + "time": 0.2748466257668712, "position": { "x": 3, "y": 0 @@ -1685,10 +1685,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1401, - "time": 0.28466257668711653, + "noteOrder": 1402, + "time": 0.2846625766871166, "position": { "x": 4, "y": 0 @@ -1708,10 +1708,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1449, - "time": 0.29447852760736193, + "noteOrder": 1450, + "time": 0.294478527607362, "position": { "x": 7, "y": 0 @@ -1731,7 +1731,7 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1498, "time": 0.3042944785276074, @@ -1754,9 +1754,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1546, + "noteOrder": 1547, "time": 0.3141104294478527, "position": { "x": 3, @@ -1777,10 +1777,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1594, - "time": 0.3239263803680982, + "noteOrder": 1595, + "time": 0.3239263803680981, "position": { "x": 4, "y": 0 @@ -1800,10 +1800,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1643, - "time": 0.3337423312883436, + "time": 0.3337423312883435, "position": { "x": 7, "y": 0 @@ -1823,9 +1823,9 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1691, + "noteOrder": 1692, "time": 0.3435582822085889, "position": { "x": 6, @@ -1846,9 +1846,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1739, + "noteOrder": 1740, "time": 0.3533742331288343, "position": { "x": 3, @@ -1867,12 +1867,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1764, + "time": 0.3582822085889571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1764, + "time": 0.3582822085889571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1788, - "time": 0.36319018404907977, + "time": 0.3631901840490797, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1813, + "time": 0.36809815950920244, "position": { "x": 3, "y": 0 @@ -1890,11 +1959,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1813, + "time": 0.36809815950920244, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1836, + "noteOrder": 1837, "time": 0.3730061349693251, "position": { "x": 3, @@ -1915,9 +2007,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1884, + "noteOrder": 1885, "time": 0.3828220858895705, "position": { "x": 4, @@ -1938,10 +2030,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1932, - "time": 0.39263803680981596, + "noteOrder": 1933, + "time": 0.3926380368098159, "position": { "x": 7, "y": 0 @@ -1959,12 +2051,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1958, + "time": 0.39754601226993863, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1958, + "time": 0.39754601226993863, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1981, - "time": 0.40245398773006136, + "noteOrder": 1982, + "time": 0.4024539877300613, "position": { "x": 7, "y": 0 @@ -1982,11 +2120,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2006, + "time": 0.40736196319018403, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2006, + "time": 0.40736196319018403, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2029, + "noteOrder": 2030, "time": 0.4122699386503067, "position": { "x": 7, @@ -2007,9 +2191,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2077, + "noteOrder": 2078, "time": 0.4220858895705521, "position": { "x": 6, @@ -2030,10 +2214,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2126, - "time": 0.43190184049079755, + "noteOrder": 2127, + "time": 0.4319018404907975, "position": { "x": 6, "y": 0 @@ -2053,10 +2237,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2174, - "time": 0.44171779141104295, + "noteOrder": 2175, + "time": 0.4417177914110429, "position": { "x": 4, "y": 0 @@ -2076,10 +2260,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2222, - "time": 0.4515337423312883, + "noteOrder": 2223, + "time": 0.45153374233128835, "position": { "x": 3, "y": 0 @@ -2099,9 +2283,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2271, + "noteOrder": 2272, "time": 0.46134969325153374, "position": { "x": 4, @@ -2122,9 +2306,9 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2319, + "noteOrder": 2320, "time": 0.47116564417177914, "position": { "x": 4, @@ -2145,10 +2329,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2367, - "time": 0.4809815950920245, + "noteOrder": 2368, + "time": 0.48098159509202454, "position": { "x": 6, "y": 0 @@ -2168,10 +2352,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2416, - "time": 0.4907975460122699, + "noteOrder": 2417, + "time": 0.49079754601226994, "position": { "x": 6, "y": 0 @@ -2191,9 +2375,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2464, + "noteOrder": 2465, "time": 0.5006134969325153, "position": { "x": 6, @@ -2214,9 +2398,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2512, + "noteOrder": 2513, "time": 0.5104294478527608, "position": { "x": 4, @@ -2237,9 +2421,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2560, + "noteOrder": 2562, "time": 0.5202453987730061, "position": { "x": 4, @@ -2260,10 +2444,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2609, - "time": 0.5300613496932515, + "noteOrder": 2610, + "time": 0.5300613496932516, "position": { "x": 3, "y": 0 @@ -2283,9 +2467,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.5398773006134969, "position": { "x": 3, @@ -2306,10 +2490,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2705, - "time": 0.5496932515337423, + "noteOrder": 2707, + "time": 0.5496932515337424, "position": { "x": 7, "y": 0 @@ -2329,9 +2513,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2754, + "noteOrder": 2755, "time": 0.5595092024539877, "position": { "x": 7, @@ -2352,10 +2536,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3189, - "time": 0.6478527607361964, + "noteOrder": 3190, + "time": 0.6478527607361962, "position": { "x": 7, "y": 0 @@ -2375,10 +2559,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3333, - "time": 0.6773006134969325, + "noteOrder": 3335, + "time": 0.6773006134969326, "position": { "x": 4, "y": 0 @@ -2398,9 +2582,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3382, + "noteOrder": 3383, "time": 0.6871165644171778, "position": { "x": 3, @@ -2421,10 +2605,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3527, - "time": 0.7165644171779141, + "noteOrder": 3528, + "time": 0.7165644171779142, "position": { "x": 6, "y": 0 @@ -2444,10 +2628,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3575, - "time": 0.7263803680981595, + "noteOrder": 3577, + "time": 0.7263803680981594, "position": { "x": 7, "y": 0 @@ -2467,9 +2651,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3720, + "noteOrder": 3722, "time": 0.7558282208588957, "position": { "x": 4, @@ -2490,9 +2674,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3768, + "noteOrder": 3770, "time": 0.765644171779141, "position": { "x": 3, @@ -2513,9 +2697,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3913, + "noteOrder": 3915, "time": 0.7950920245398773, "position": { "x": 6, @@ -2536,10 +2720,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3962, - "time": 0.8049079754601227, + "noteOrder": 3963, + "time": 0.8049079754601226, "position": { "x": 8, "y": 0 @@ -2559,9 +2743,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4300, + "noteOrder": 4302, "time": 0.8736196319018404, "position": { "x": 4, @@ -2582,10 +2766,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4348, - "time": 0.8834355828220859, + "noteOrder": 4350, + "time": 0.8834355828220858, "position": { "x": 2, "y": 0 @@ -2605,9 +2789,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.9521472392638036, "position": { "x": 6, @@ -2628,9 +2812,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.9521472392638036, "position": { "x": 8, @@ -2651,10 +2835,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4734, - "time": 0.961963190184049, + "noteOrder": 4737, + "time": 0.9619631901840491, "position": { "x": 8, "y": 0 diff --git a/tracks/WELCOME TO MY GAME/info.json b/tracks/WELCOME TO MY GAME/info.json index bae6adf3..353bc2d6 100644 --- a/tracks/WELCOME TO MY GAME/info.json +++ b/tracks/WELCOME TO MY GAME/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "WELCOME TO MY GAME", - "SongLength": "112.535510", + "SongLength": "102.582857", "SongAuthorName": "GUCHON", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Waiting for you/262_difficulty_1a.json b/tracks/Waiting for you/262_difficulty_1a.json index 13c9fd69..0381a4dc 100644 --- a/tracks/Waiting for you/262_difficulty_1a.json +++ b/tracks/Waiting for you/262_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 291, - "time": 0.04959318093762108, + "time": 0.04959318093762107, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 339, - "time": 0.057858711093891256, + "time": 0.05785871109389125, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 339, - "time": 0.057858711093891256, + "time": 0.05785871109389125, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 363, - "time": 0.06199147617202635, + "time": 0.06199147617202634, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 363, - "time": 0.06199147617202635, + "time": 0.06199147617202634, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 387, + "noteOrder": 388, "time": 0.06612424125016143, "position": { "x": 7, @@ -174,7 +174,7 @@ }, { "noteOrder": 436, - "time": 0.0743897714064316, + "time": 0.07438977140643162, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 581, - "time": 0.09918636187524216, + "time": 0.09918636187524214, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 605, + "noteOrder": 606, "time": 0.10331912695337725, "position": { "x": 5, @@ -274,7 +274,7 @@ }, { "noteOrder": 678, - "time": 0.11571742218778251, + "time": 0.1157174221877825, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 847, - "time": 0.14464677773472814, + "noteOrder": 848, + "time": 0.14464677773472812, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 944, - "time": 0.16117783804726848, + "noteOrder": 945, + "time": 0.1611778380472685, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1041, + "noteOrder": 1042, "time": 0.17770889835980885, "position": { "x": 6, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1162, - "time": 0.19837272375048431, + "noteOrder": 1163, + "time": 0.1983727237504843, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1186, - "time": 0.2025054888286194, + "noteOrder": 1187, + "time": 0.20250548882861938, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1380, - "time": 0.23556760945370012, + "noteOrder": 1381, + "time": 0.2355676094537001, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1428, - "time": 0.2438331396099703, + "noteOrder": 1429, + "time": 0.24383313960997027, "position": { "x": 7, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1525, + "noteOrder": 1526, "time": 0.26036419992251064, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1599, "time": 0.2727624951569159, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1599, "time": 0.2727624951569159, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1623, "time": 0.276895260235051, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1623, "time": 0.276895260235051, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1767, - "time": 0.3016918507038615, + "noteOrder": 1768, + "time": 0.30169185070386156, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1816, + "noteOrder": 1817, "time": 0.3099573808601317, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1937, + "noteOrder": 1938, "time": 0.33062120625080715, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1961, + "noteOrder": 1962, "time": 0.33475397132894225, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3512850316414826, + "noteOrder": 2059, + "time": 0.35128503164148256, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3512850316414826, + "noteOrder": 2059, + "time": 0.35128503164148256, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2082, + "noteOrder": 2083, "time": 0.3554177967196177, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.3595505617977528, "position": { "x": 7, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2155, + "noteOrder": 2156, "time": 0.367816091954023, "position": { "x": 4, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2179, + "noteOrder": 2180, "time": 0.3719488570321581, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2203, - "time": 0.37608162211029317, + "noteOrder": 2204, + "time": 0.3760816221102931, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2252, + "noteOrder": 2253, "time": 0.38434715226656335, "position": { "x": 8, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2276, + "noteOrder": 2277, "time": 0.38847991734469844, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2300, + "noteOrder": 2301, "time": 0.39261268242283354, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2324, - "time": 0.39674544750096863, + "noteOrder": 2325, + "time": 0.3967454475009686, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2348, - "time": 0.4008782125791037, + "noteOrder": 2349, + "time": 0.40087821257910367, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2373, - "time": 0.4050109776572388, + "noteOrder": 2374, + "time": 0.40501097765723876, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2373, - "time": 0.4050109776572388, + "noteOrder": 2374, + "time": 0.40501097765723876, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2397, - "time": 0.4091437427353739, + "noteOrder": 2398, + "time": 0.40914374273537385, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2397, - "time": 0.4091437427353739, + "noteOrder": 2398, + "time": 0.40914374273537385, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2445, - "time": 0.4174092728916441, + "noteOrder": 2446, + "time": 0.41740927289164403, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2470, + "noteOrder": 2471, "time": 0.4215420379697791, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2494, + "noteOrder": 2495, "time": 0.4256748030479142, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2543, "time": 0.4339403332041844, "position": { "x": 2, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2566, + "noteOrder": 2567, "time": 0.4380730982823195, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.4422058633604546, + "noteOrder": 2592, + "time": 0.44220586336045453, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2687, + "noteOrder": 2689, "time": 0.45873692367299496, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2712, - "time": 0.46286968875113005, + "noteOrder": 2713, + "time": 0.46286968875113, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2736, - "time": 0.46700245382926514, + "noteOrder": 2737, + "time": 0.4670024538292651, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.5620560506263722, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3318, "time": 0.5661888157045073, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5703215807826424, + "noteOrder": 3343, + "time": 0.5703215807826423, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3341, - "time": 0.5703215807826424, + "noteOrder": 3343, + "time": 0.5703215807826423, "position": { "x": 4, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3367, "time": 0.5744543458607775, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3367, "time": 0.5744543458607775, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3390, - "time": 0.5785871109389126, + "noteOrder": 3391, + "time": 0.5785871109389125, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.5827198760170477, "position": { "x": 5, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3462, - "time": 0.5909854061733179, + "noteOrder": 3464, + "time": 0.5909854061733177, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3486, - "time": 0.5951181712514528, + "noteOrder": 3488, + "time": 0.5951181712514529, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3511, + "noteOrder": 3512, "time": 0.5992509363295879, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3561, "time": 0.6075164664858581, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3704, + "noteOrder": 3706, "time": 0.6323130569546687, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3753, + "noteOrder": 3754, "time": 0.6405785871109388, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3801, + "noteOrder": 3803, "time": 0.648844117267209, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3825, - "time": 0.6529768823453441, + "noteOrder": 3827, + "time": 0.6529768823453442, "position": { "x": 8, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3851, "time": 0.6571096474234792, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3898, + "noteOrder": 3900, "time": 0.6653751775797494, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3922, + "noteOrder": 3924, "time": 0.6695079426578845, "position": { "x": 2, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3946, - "time": 0.6736407077360196, + "noteOrder": 3948, + "time": 0.6736407077360197, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4069, "time": 0.694304533126695, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4092, + "noteOrder": 4093, "time": 0.6984372982048301, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7025700632829652, + "noteOrder": 4118, + "time": 0.7025700632829651, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7025700632829652, + "noteOrder": 4118, + "time": 0.7025700632829651, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.7067028283611003, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.7067028283611003, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4189, + "noteOrder": 4190, "time": 0.7149683585173705, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4237, - "time": 0.7232338886736407, + "noteOrder": 4239, + "time": 0.7232338886736406, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4382, + "noteOrder": 4384, "time": 0.7480304791424512, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4432, "time": 0.7562960092987214, "position": { "x": 3, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4455, - "time": 0.7604287743768565, + "noteOrder": 4457, + "time": 0.7604287743768564, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.7645615394549916, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.7686943045331267, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.7686943045331267, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4528, - "time": 0.7728270696112618, + "noteOrder": 4529, + "time": 0.7728270696112617, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4528, - "time": 0.7728270696112618, + "noteOrder": 4529, + "time": 0.7728270696112617, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4576, - "time": 0.781092599767532, + "noteOrder": 4578, + "time": 0.7810925997675319, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4624, - "time": 0.7893581299238022, + "noteOrder": 4626, + "time": 0.789358129923802, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4844, "time": 0.826553015627018, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4866, - "time": 0.8306857807051531, + "noteOrder": 4868, + "time": 0.830685780705153, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8472168410176933, "position": { "x": 7, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8472168410176933, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4988, + "noteOrder": 4990, "time": 0.8513496060958284, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.8554823711739635, + "noteOrder": 5014, + "time": 0.8554823711739636, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5060, + "noteOrder": 5062, "time": 0.8637479013302337, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5084, + "noteOrder": 5086, "time": 0.8678806664083688, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5109, + "noteOrder": 5111, "time": 0.8720134314865039, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5157, + "noteOrder": 5159, "time": 0.8802789616427741, "position": { "x": 2, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5181, - "time": 0.8844117267209092, + "noteOrder": 5183, + "time": 0.8844117267209091, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5205, + "noteOrder": 5208, "time": 0.8885444917990443, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.8926772568771794, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5256, "time": 0.8968100219553145, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5278, + "noteOrder": 5280, "time": 0.9009427870334495, "position": { "x": 6, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5278, + "noteOrder": 5280, "time": 0.9009427870334495, "position": { "x": 4, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9050755521115846, + "noteOrder": 5304, + "time": 0.9050755521115845, "position": { "x": 3, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9050755521115846, + "noteOrder": 5304, + "time": 0.9050755521115845, "position": { "x": 7, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5351, - "time": 0.9133410822678548, + "noteOrder": 5353, + "time": 0.9133410822678547, "position": { "x": 4, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5375, + "noteOrder": 5377, "time": 0.9174738473459899, "position": { "x": 5, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5399, + "noteOrder": 5401, "time": 0.921606612424125, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9298721425803952, "position": { "x": 8, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9340049076585303, + "noteOrder": 5474, + "time": 0.9340049076585302, "position": { "x": 4, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.9381376727366654, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9546687330492057, + "noteOrder": 5595, + "time": 0.9546687330492056, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5617, + "noteOrder": 5619, "time": 0.9588014981273408, "position": { "x": 7, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5641, - "time": 0.9629342632054759, + "noteOrder": 5644, + "time": 0.9629342632054758, "position": { "x": 3, "y": 0 @@ -2656,7 +2656,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01653106031254036, @@ -2679,10 +2679,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, - "time": 0.02479659046881054, + "time": 0.024796590468810536, "position": { "x": 7, "y": 0 @@ -2702,7 +2702,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 194, "time": 0.03306212062508072, @@ -2725,7 +2725,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03306212062508072, @@ -2748,7 +2748,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 242, "time": 0.041327650781350894, @@ -2771,10 +2771,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 291, - "time": 0.04959318093762108, + "time": 0.04959318093762107, "position": { "x": 4, "y": 0 @@ -2794,7 +2794,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, "time": 0.08265530156270179, @@ -2817,9 +2817,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 508, + "noteOrder": 509, "time": 0.08678806664083688, "position": { "x": 6, @@ -2840,7 +2840,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 533, "time": 0.09092083171897197, @@ -2863,10 +2863,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 557, - "time": 0.09505359679710706, + "time": 0.09505359679710705, "position": { "x": 4, "y": 0 @@ -2886,9 +2886,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 629, + "noteOrder": 630, "time": 0.10745189203151233, "position": { "x": 7, @@ -2909,7 +2909,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 654, "time": 0.11158465710964742, @@ -2932,10 +2932,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 726, - "time": 0.1239829523440527, + "noteOrder": 727, + "time": 0.12398295234405268, "position": { "x": 3, "y": 0 @@ -2955,7 +2955,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 751, "time": 0.12811571742218777, @@ -2978,7 +2978,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 775, "time": 0.13224848250032287, @@ -3001,7 +3001,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 799, "time": 0.13638124757845796, @@ -3024,9 +3024,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 823, + "noteOrder": 824, "time": 0.14051401265659305, "position": { "x": 3, @@ -3047,10 +3047,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 847, - "time": 0.14464677773472814, + "noteOrder": 848, + "time": 0.14464677773472812, "position": { "x": 3, "y": 0 @@ -3070,10 +3070,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 872, - "time": 0.1487795428128632, + "time": 0.14877954281286324, "position": { "x": 6, "y": 0 @@ -3093,9 +3093,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 968, + "noteOrder": 969, "time": 0.16531060312540358, "position": { "x": 6, @@ -3116,9 +3116,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 968, + "noteOrder": 969, "time": 0.16531060312540358, "position": { "x": 4, @@ -3139,9 +3139,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1065, + "noteOrder": 1066, "time": 0.18184166343794395, "position": { "x": 4, @@ -3162,9 +3162,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1065, + "noteOrder": 1066, "time": 0.18184166343794395, "position": { "x": 7, @@ -3185,9 +3185,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1077, + "noteOrder": 1078, "time": 0.1839080459770115, "position": { "x": 6, @@ -3208,7 +3208,7 @@ }, { "lineGroupId": 35, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1090, "time": 0.18597442851607904, @@ -3231,7 +3231,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1090, "time": 0.18597442851607904, @@ -3254,10 +3254,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1102, - "time": 0.18804081105514658, + "time": 0.18804081105514656, "position": { "x": 4, "y": 0 @@ -3277,10 +3277,10 @@ }, { "lineGroupId": 36, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1114, - "time": 0.19010719359421413, + "time": 0.1901071935942141, "position": { "x": 4, "y": 0 @@ -3300,10 +3300,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1114, - "time": 0.19010719359421413, + "time": 0.1901071935942141, "position": { "x": 7, "y": 0 @@ -3323,7 +3323,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1126, "time": 0.19217357613328168, @@ -3346,7 +3346,7 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1138, "time": 0.19423995867234922, @@ -3369,7 +3369,7 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1138, "time": 0.19423995867234922, @@ -3392,9 +3392,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1150, + "noteOrder": 1151, "time": 0.19630634121141677, "position": { "x": 4, @@ -3415,10 +3415,10 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1162, - "time": 0.19837272375048431, + "noteOrder": 1163, + "time": 0.1983727237504843, "position": { "x": 4, "y": 0 @@ -3438,9 +3438,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1259, + "noteOrder": 1260, "time": 0.21490378406302466, "position": { "x": 7, @@ -3460,11 +3460,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1283, - "time": 0.21903654914115975, + "noteOrder": 1272, + "time": 0.2169701666020922, "position": { "x": 7, "y": 0 @@ -3478,18 +3478,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1307, - "time": 0.22316931421929484, + "noteOrder": 1272, + "time": 0.2169701666020922, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3506,13 +3506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1332, - "time": 0.22730207929742993, + "noteOrder": 1284, + "time": 0.21903654914115975, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3524,18 +3524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1356, - "time": 0.23143484437556502, + "noteOrder": 1284, + "time": 0.21903654914115975, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3552,13 +3552,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1380, - "time": 0.23556760945370012, + "noteOrder": 1284, + "time": 0.21903654914115975, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3570,16 +3570,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1404, - "time": 0.2397003745318352, + "noteOrder": 1296, + "time": 0.22110293168022727, "position": { "x": 7, "y": 0 @@ -3598,11 +3598,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1428, - "time": 0.2438331396099703, + "noteOrder": 1296, + "time": 0.22110293168022727, "position": { "x": 6, "y": 0 @@ -3621,13 +3621,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1453, - "time": 0.2479659046881054, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3639,18 +3639,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1477, - "time": 0.25209866976624046, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3667,11 +3667,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1501, - "time": 0.25623143484437555, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { "x": 7, "y": 0 @@ -3690,13 +3690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1525, - "time": 0.26036419992251064, + "noteOrder": 1320, + "time": 0.22523569675836239, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3713,13 +3713,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1550, - "time": 0.26449696500064573, + "noteOrder": 1320, + "time": 0.22523569675836239, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3731,18 +3731,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1574, - "time": 0.2686297300787808, + "noteOrder": 1332, + "time": 0.22730207929742993, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3754,18 +3754,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1646, - "time": 0.2810280253131861, + "noteOrder": 1332, + "time": 0.22730207929742993, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3777,18 +3777,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1671, - "time": 0.2851607903913212, + "noteOrder": 1332, + "time": 0.22730207929742993, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3800,18 +3800,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1695, - "time": 0.2892935554694563, + "noteOrder": 1344, + "time": 0.22936846183649748, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3828,13 +3828,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1719, - "time": 0.2934263205475914, + "noteOrder": 1344, + "time": 0.22936846183649748, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3846,18 +3846,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1743, - "time": 0.2975590856257264, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3874,13 +3874,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 2, + "lineGroupId": 48, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1767, - "time": 0.3016918507038615, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3897,13 +3897,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1792, - "time": 0.3058246157819966, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3920,13 +3920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 49, "indexInLine": 2, "isSliding": false, - "noteOrder": 1816, - "time": 0.3099573808601317, + "noteOrder": 1369, + "time": 0.23350122691463254, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3943,13 +3943,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1840, - "time": 0.3140901459382668, + "noteOrder": 1369, + "time": 0.23350122691463254, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3961,18 +3961,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1864, - "time": 0.3182229110164019, + "noteOrder": 1381, + "time": 0.2355676094537001, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3989,13 +3989,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1888, - "time": 0.32235567609453697, + "noteOrder": 1405, + "time": 0.2397003745318352, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4012,11 +4012,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1913, - "time": 0.32648844117267206, + "noteOrder": 1417, + "time": 0.24176675707090275, "position": { "x": 7, "y": 0 @@ -4030,18 +4030,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1985, - "time": 0.33888673640707734, + "noteOrder": 1417, + "time": 0.24176675707090275, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4058,13 +4058,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1997, - "time": 0.3409531189461449, + "noteOrder": 1429, + "time": 0.24383313960997027, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4081,13 +4081,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2022, - "time": 0.34508588402428, + "noteOrder": 1453, + "time": 0.24796590468810537, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4099,16 +4099,2661 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 3, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2034, - "time": 0.3471522665633475, + "noteOrder": 1465, + "time": 0.2500322872271729, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1465, + "time": 0.2500322872271729, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1477, + "time": 0.25209866976624046, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1477, + "time": 0.25209866976624046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1477, + "time": 0.25209866976624046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1490, + "time": 0.254165052305308, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1490, + "time": 0.254165052305308, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1502, + "time": 0.25623143484437555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1502, + "time": 0.25623143484437555, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1502, + "time": 0.25623143484437555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1526, + "time": 0.26036419992251064, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1550, + "time": 0.26449696500064573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1574, + "time": 0.2686297300787808, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1647, + "time": 0.2810280253131861, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.28309440785225365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1659, + "time": 0.28309440785225365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1671, + "time": 0.28516079039132114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1671, + "time": 0.28516079039132114, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1671, + "time": 0.28516079039132114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1683, + "time": 0.28722717293038874, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1683, + "time": 0.28722717293038874, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1695, + "time": 0.28929355546945623, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1695, + "time": 0.28929355546945623, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1695, + "time": 0.28929355546945623, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1708, + "time": 0.29135993800852383, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1708, + "time": 0.29135993800852383, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1720, + "time": 0.2934263205475914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1720, + "time": 0.2934263205475914, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1720, + "time": 0.2934263205475914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1732, + "time": 0.29549270308665887, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1732, + "time": 0.29549270308665887, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1744, + "time": 0.29755908562572647, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1744, + "time": 0.29755908562572647, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1744, + "time": 0.29755908562572647, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1756, + "time": 0.29962546816479396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1756, + "time": 0.29962546816479396, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1768, + "time": 0.30169185070386156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1792, + "time": 0.3058246157819966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1804, + "time": 0.3078909983210642, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1804, + "time": 0.3078909983210642, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1817, + "time": 0.3099573808601317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1841, + "time": 0.3140901459382668, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1853, + "time": 0.31615652847733433, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1853, + "time": 0.31615652847733433, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1865, + "time": 0.3182229110164019, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1877, + "time": 0.3202892935554694, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1877, + "time": 0.3202892935554694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1889, + "time": 0.322355676094537, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1901, + "time": 0.3244220586336045, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1901, + "time": 0.3244220586336045, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1913, + "time": 0.3264884411726721, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1926, + "time": 0.3285548237117396, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1926, + "time": 0.3285548237117396, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1986, + "time": 0.33888673640707734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1998, + "time": 0.3409531189461449, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2022, + "time": 0.34508588402428, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2035, + "time": 0.3471522665633475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1986, + "time": 0.33888673640707734, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1998, + "time": 0.3409531189461449, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2022, + "time": 0.34508588402428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2035, + "time": 0.3471522665633475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3636833268758879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2156, + "time": 0.367816091954023, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2228, + "time": 0.3802143871884282, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2228, + "time": 0.3802143871884282, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2253, + "time": 0.38434715226656335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2325, + "time": 0.3967454475009686, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2422, + "time": 0.413276507813509, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2446, + "time": 0.41740927289164403, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2519, + "time": 0.4298075681260493, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2519, + "time": 0.4298075681260493, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2543, + "time": 0.4339403332041844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2616, + "time": 0.4463386284385897, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2616, + "time": 0.4463386284385897, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2628, + "time": 0.4484050109776572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2628, + "time": 0.4484050109776572, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2640, + "time": 0.45047139351672477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2652, + "time": 0.45253777605579226, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2652, + "time": 0.45253777605579226, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2664, + "time": 0.45460415859485986, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2676, + "time": 0.45667054113392735, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2676, + "time": 0.45667054113392735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2689, + "time": 0.45873692367299496, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2689, + "time": 0.45873692367299496, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4711352189074002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2773, + "time": 0.4732016014464678, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2798, + "time": 0.4773343665246028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4794007490636704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4711352189074002, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2773, + "time": 0.4732016014464678, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2798, + "time": 0.4773343665246028, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4794007490636704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5289939300012915, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5455249903138318, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5455249903138318, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5620560506263722, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3439, + "time": 0.5868526410951828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3464, + "time": 0.5909854061733177, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3536, + "time": 0.6033837014077231, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3561, + "time": 0.6075164664858581, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3585, + "time": 0.6116492315639932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3609, + "time": 0.6157819966421284, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3633, + "time": 0.6199147617202634, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3657, + "time": 0.6240475267983986, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3682, + "time": 0.6281802918765336, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3706, + "time": 0.6323130569546687, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3730, + "time": 0.6364458220328038, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3754, + "time": 0.6405785871109388, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3779, + "time": 0.644711352189074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3875, + "time": 0.6612424125016143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3875, + "time": 0.6612424125016143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3972, + "time": 0.6777734728141547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3972, + "time": 0.6777734728141547, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3984, + "time": 0.6798398553532222, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3997, + "time": 0.6819062378922898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3997, + "time": 0.6819062378922898, "position": { "x": 3, "y": 0 @@ -4127,13 +6772,59 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4009, + "time": 0.6839726204313573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4021, + "time": 0.6860390029704249, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1985, - "time": 0.33888673640707734, + "noteOrder": 4021, + "time": 0.6860390029704249, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4150,11 +6841,57 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4033, + "time": 0.6881053855094924, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4045, + "time": 0.69017176804856, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 1997, - "time": 0.3409531189461449, + "noteOrder": 4045, + "time": 0.69017176804856, "position": { "x": 3, "y": 0 @@ -4168,18 +6905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 152, "indexInLine": 2, "isSliding": false, - "noteOrder": 2022, - "time": 0.34508588402428, + "noteOrder": 4057, + "time": 0.6922381505876275, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4191,18 +6928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 152, "indexInLine": 3, "isSliding": false, - "noteOrder": 2034, - "time": 0.3471522665633475, + "noteOrder": 4069, + "time": 0.694304533126695, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4214,16 +6951,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2131, - "time": 0.3636833268758879, + "noteOrder": 4166, + "time": 0.7108355934392354, "position": { "x": 3, "y": 0 @@ -4242,11 +6979,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2155, - "time": 0.367816091954023, + "noteOrder": 4178, + "time": 0.7129019759783028, "position": { "x": 3, "y": 0 @@ -4265,13 +7002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 2, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2227, - "time": 0.38021438718842826, + "noteOrder": 4178, + "time": 0.7129019759783028, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4288,13 +7025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2227, - "time": 0.38021438718842826, + "noteOrder": 4190, + "time": 0.7149683585173705, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4306,18 +7043,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 2252, - "time": 0.38434715226656335, + "noteOrder": 4215, + "time": 0.7191011235955056, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4334,13 +7071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 161, "indexInLine": 2, "isSliding": false, - "noteOrder": 2324, - "time": 0.39674544750096863, + "noteOrder": 4227, + "time": 0.7211675061345731, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4357,13 +7094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 161, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2421, - "time": 0.413276507813509, + "noteOrder": 4227, + "time": 0.7211675061345731, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4380,13 +7117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 161, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2445, - "time": 0.4174092728916441, + "noteOrder": 4239, + "time": 0.7232338886736406, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4403,13 +7140,36 @@ "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4263, + "time": 0.7273666537517758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, "indexInLine": 2, "isSliding": false, - "noteOrder": 2518, - "time": 0.4298075681260493, + "noteOrder": 4275, + "time": 0.7294330362908433, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4421,16 +7181,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2518, - "time": 0.4298075681260493, + "noteOrder": 4275, + "time": 0.7294330362908433, "position": { "x": 4, "y": 0 @@ -4449,11 +7209,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2542, - "time": 0.4339403332041844, + "noteOrder": 4287, + "time": 0.7314994188299108, "position": { "x": 4, "y": 0 @@ -4472,11 +7232,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 2, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2615, - "time": 0.4463386284385897, + "noteOrder": 4287, + "time": 0.7314994188299108, "position": { "x": 5, "y": 0 @@ -4495,13 +7255,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2615, - "time": 0.4463386284385897, + "noteOrder": 4287, + "time": 0.7314994188299108, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4518,11 +7278,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2639, - "time": 0.45047139351672477, + "noteOrder": 4299, + "time": 0.7335658013689783, "position": { "x": 3, "y": 0 @@ -4536,18 +7296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2663, - "time": 0.45460415859485986, + "noteOrder": 4299, + "time": 0.7335658013689783, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4564,13 +7324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2760, - "time": 0.47113521890740023, + "noteOrder": 4311, + "time": 0.735632183908046, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4587,11 +7347,34 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4311, + "time": 0.735632183908046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 2772, - "time": 0.4732016014464678, + "noteOrder": 4311, + "time": 0.735632183908046, "position": { "x": 3, "y": 0 @@ -4605,18 +7388,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 165, "indexInLine": 2, "isSliding": false, - "noteOrder": 2796, - "time": 0.47733436652460287, + "noteOrder": 4323, + "time": 0.7376985664471135, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4628,18 +7411,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 165, "indexInLine": 3, "isSliding": false, - "noteOrder": 2809, - "time": 0.4794007490636704, + "noteOrder": 4323, + "time": 0.7376985664471135, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4651,18 +7434,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2760, - "time": 0.47113521890740023, + "noteOrder": 4336, + "time": 0.7397649489861811, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4679,13 +7462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 165, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2772, - "time": 0.4732016014464678, + "noteOrder": 4336, + "time": 0.7397649489861811, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4702,11 +7485,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 2, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2796, - "time": 0.47733436652460287, + "noteOrder": 4336, + "time": 0.7397649489861811, "position": { "x": 3, "y": 0 @@ -4720,16 +7503,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 3, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2809, - "time": 0.4794007490636704, + "noteOrder": 4348, + "time": 0.7418313315252485, "position": { "x": 3, "y": 0 @@ -4743,18 +7526,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3099, - "time": 0.5289939300012915, + "noteOrder": 4348, + "time": 0.7418313315252485, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4770,14 +7553,14 @@ "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 116, - "indexInLine": 1, + { + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3196, - "time": 0.5455249903138318, + "noteOrder": 4360, + "time": 0.7438977140643162, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4794,13 +7577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3196, - "time": 0.5455249903138318, + "noteOrder": 4360, + "time": 0.7438977140643162, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4812,16 +7595,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 3293, - "time": 0.5620560506263722, + "noteOrder": 4360, + "time": 0.7438977140643162, "position": { "x": 3, "y": 0 @@ -4840,13 +7623,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3438, - "time": 0.5868526410951828, + "noteOrder": 4384, + "time": 0.7480304791424512, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4858,16 +7641,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.5909854061733179, + "noteOrder": 4408, + "time": 0.7521632442205862, "position": { "x": 7, "y": 0 @@ -4886,13 +7669,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3535, - "time": 0.603383701407723, + "noteOrder": 4432, + "time": 0.7562960092987214, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4904,18 +7687,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3559, - "time": 0.6075164664858581, + "noteOrder": 4554, + "time": 0.7769598346893969, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4927,16 +7710,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3583, - "time": 0.6116492315639932, + "noteOrder": 4566, + "time": 0.7790262172284644, "position": { "x": 7, "y": 0 @@ -4955,11 +7738,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3607, - "time": 0.6157819966421283, + "noteOrder": 4566, + "time": 0.7790262172284644, "position": { "x": 6, "y": 0 @@ -4978,13 +7761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3632, - "time": 0.6199147617202634, + "noteOrder": 4578, + "time": 0.7810925997675319, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4996,18 +7779,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3656, - "time": 0.6240475267983985, + "noteOrder": 4602, + "time": 0.7852253648456671, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5024,11 +7807,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3680, - "time": 0.6281802918765336, + "noteOrder": 4614, + "time": 0.7872917473847346, "position": { "x": 7, "y": 0 @@ -5042,18 +7825,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3704, - "time": 0.6323130569546687, + "noteOrder": 4614, + "time": 0.7872917473847346, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5065,18 +7848,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3729, - "time": 0.6364458220328038, + "noteOrder": 4626, + "time": 0.789358129923802, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5093,13 +7876,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 3753, - "time": 0.6405785871109388, + "noteOrder": 4650, + "time": 0.7934908950019371, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5111,18 +7894,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3777, - "time": 0.6447113521890739, + "noteOrder": 4663, + "time": 0.7955572775410048, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5139,11 +7922,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3874, - "time": 0.6612424125016143, + "noteOrder": 4663, + "time": 0.7955572775410048, "position": { "x": 6, "y": 0 @@ -5162,13 +7945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3874, - "time": 0.6612424125016143, + "noteOrder": 4675, + "time": 0.7976236600800723, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5180,18 +7963,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3971, - "time": 0.6777734728141547, + "noteOrder": 4675, + "time": 0.7976236600800723, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5203,16 +7986,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3971, - "time": 0.6777734728141547, + "noteOrder": 4675, + "time": 0.7976236600800723, "position": { "x": 7, "y": 0 @@ -5226,18 +8009,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3983, - "time": 0.6798398553532223, + "noteOrder": 4687, + "time": 0.7996900426191398, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5249,16 +8032,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 2, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3995, - "time": 0.6819062378922898, + "noteOrder": 4687, + "time": 0.7996900426191398, "position": { "x": 6, "y": 0 @@ -5272,18 +8055,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3995, - "time": 0.6819062378922898, + "noteOrder": 4699, + "time": 0.8017564251582073, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5300,13 +8083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4007, - "time": 0.6839726204313574, + "noteOrder": 4699, + "time": 0.8017564251582073, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5323,13 +8106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 2, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4019, - "time": 0.6860390029704249, + "noteOrder": 4699, + "time": 0.8017564251582073, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5341,16 +8124,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4019, - "time": 0.6860390029704249, + "noteOrder": 4711, + "time": 0.8038228076972749, "position": { "x": 7, "y": 0 @@ -5369,11 +8152,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4031, - "time": 0.6881053855094925, + "noteOrder": 4711, + "time": 0.8038228076972749, "position": { "x": 6, "y": 0 @@ -5392,11 +8175,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 2, + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4043, - "time": 0.69017176804856, + "noteOrder": 4723, + "time": 0.8058891902363425, "position": { "x": 6, "y": 0 @@ -5415,13 +8198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4043, - "time": 0.69017176804856, + "noteOrder": 4723, + "time": 0.8058891902363425, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5433,18 +8216,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 4055, - "time": 0.6922381505876276, + "noteOrder": 4723, + "time": 0.8058891902363425, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5461,13 +8244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 184, "indexInLine": 2, "isSliding": false, - "noteOrder": 4067, - "time": 0.694304533126695, + "noteOrder": 4735, + "time": 0.80795557277541, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5484,13 +8267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4164, - "time": 0.7108355934392354, + "noteOrder": 4735, + "time": 0.80795557277541, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5507,13 +8290,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4189, - "time": 0.7149683585173705, + "noteOrder": 4747, + "time": 0.8100219553144775, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5530,13 +8313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4213, - "time": 0.7191011235955056, + "noteOrder": 4747, + "time": 0.8100219553144775, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5548,18 +8331,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 2, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4237, - "time": 0.7232338886736407, + "noteOrder": 4747, + "time": 0.8100219553144775, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5576,13 +8359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4261, - "time": 0.7273666537517758, + "noteOrder": 4759, + "time": 0.8120883378535451, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5594,18 +8377,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4285, - "time": 0.7314994188299109, + "noteOrder": 4759, + "time": 0.8120883378535451, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5622,11 +8405,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4310, - "time": 0.735632183908046, + "noteOrder": 4772, + "time": 0.8141547203926126, "position": { "x": 3, "y": 0 @@ -5645,34 +8428,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4334, - "time": 0.7397649489861811, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4358, - "time": 0.7438977140643162, + "noteOrder": 4784, + "time": 0.8162211029316803, "position": { "x": 3, "y": 0 @@ -5691,11 +8451,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4382, - "time": 0.7480304791424512, + "noteOrder": 4784, + "time": 0.8162211029316803, "position": { "x": 4, "y": 0 @@ -5714,11 +8474,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4406, - "time": 0.7521632442205863, + "noteOrder": 4796, + "time": 0.8182874854707477, "position": { "x": 7, "y": 0 @@ -5737,13 +8497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4431, - "time": 0.7562960092987214, + "noteOrder": 4808, + "time": 0.8203538680098152, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5760,13 +8520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4552, - "time": 0.7769598346893969, + "noteOrder": 4808, + "time": 0.8203538680098152, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5783,13 +8543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 2, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4576, - "time": 0.781092599767532, + "noteOrder": 4820, + "time": 0.8224202505488828, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5801,18 +8561,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4600, - "time": 0.7852253648456671, + "noteOrder": 4832, + "time": 0.8244866330879503, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5829,13 +8589,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 2, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4624, - "time": 0.7893581299238022, + "noteOrder": 4832, + "time": 0.8244866330879503, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5852,11 +8612,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4649, - "time": 0.7934908950019373, + "noteOrder": 4893, + "time": 0.8348185457832881, "position": { "x": 7, "y": 0 @@ -5870,16 +8630,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4673, - "time": 0.7976236600800723, + "noteOrder": 4905, + "time": 0.8368849283223556, "position": { "x": 7, "y": 0 @@ -5898,13 +8658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4697, - "time": 0.8017564251582074, + "noteOrder": 4929, + "time": 0.8410176934004907, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5916,18 +8676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4721, - "time": 0.8058891902363425, + "noteOrder": 4941, + "time": 0.8430840759395583, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5944,13 +8704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4745, - "time": 0.8100219553144776, + "noteOrder": 4893, + "time": 0.8348185457832881, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5967,11 +8727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4770, - "time": 0.8141547203926127, + "noteOrder": 4905, + "time": 0.8368849283223556, "position": { "x": 3, "y": 0 @@ -5985,16 +8745,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4794, - "time": 0.8182874854707478, + "noteOrder": 4929, + "time": 0.8410176934004907, "position": { "x": 7, "y": 0 @@ -6013,13 +8773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4818, - "time": 0.8224202505488829, + "noteOrder": 4941, + "time": 0.8430840759395583, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6031,16 +8791,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4891, - "time": 0.8348185457832882, + "noteOrder": 5038, + "time": 0.8596151362520986, "position": { "x": 7, "y": 0 @@ -6054,16 +8814,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.8368849283223556, + "noteOrder": 5062, + "time": 0.8637479013302337, "position": { "x": 7, "y": 0 @@ -6077,18 +8837,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4927, - "time": 0.8410176934004907, + "noteOrder": 5135, + "time": 0.876146196564639, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6100,18 +8860,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 3, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, - "time": 0.8430840759395583, + "noteOrder": 5135, + "time": 0.876146196564639, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6128,13 +8888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4891, - "time": 0.8348185457832882, + "noteOrder": 5159, + "time": 0.8802789616427741, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6146,18 +8906,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4903, - "time": 0.8368849283223556, + "noteOrder": 5232, + "time": 0.8926772568771794, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6169,18 +8929,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 2, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4927, - "time": 0.8410176934004907, + "noteOrder": 5329, + "time": 0.9092083171897197, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6192,18 +8952,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 3, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4939, - "time": 0.8430840759395583, + "noteOrder": 5353, + "time": 0.9133410822678547, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6215,18 +8975,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5036, - "time": 0.8596151362520986, + "noteOrder": 5426, + "time": 0.92573937750226, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6238,18 +8998,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 5060, - "time": 0.8637479013302337, + "noteOrder": 5426, + "time": 0.92573937750226, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6266,13 +9026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 216, "indexInLine": 2, "isSliding": false, - "noteOrder": 5133, - "time": 0.876146196564639, + "noteOrder": 5450, + "time": 0.9298721425803952, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6289,13 +9049,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5133, - "time": 0.876146196564639, + "noteOrder": 5522, + "time": 0.9422704378148004, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6307,18 +9067,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 5157, - "time": 0.8802789616427741, + "noteOrder": 5522, + "time": 0.9422704378148004, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6335,13 +9095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 220, "indexInLine": 2, "isSliding": false, - "noteOrder": 5230, - "time": 0.8926772568771794, + "noteOrder": 5535, + "time": 0.9443368203538679, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6358,13 +9118,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5326, - "time": 0.9092083171897197, + "noteOrder": 5535, + "time": 0.9443368203538679, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6381,13 +9141,13 @@ "isPlayAudio": false }, { - "lineGroupId": 212, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 5351, - "time": 0.9133410822678548, + "noteOrder": 5547, + "time": 0.9464032028929356, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6399,18 +9159,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, + "lineGroupId": 221, "indexInLine": 2, "isSliding": false, - "noteOrder": 5423, - "time": 0.9257393775022601, + "noteOrder": 5559, + "time": 0.9484695854320031, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6422,16 +9182,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5423, - "time": 0.9257393775022601, + "noteOrder": 5559, + "time": 0.9484695854320031, "position": { "x": 6, "y": 0 @@ -6450,13 +9210,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, + "lineGroupId": 222, "indexInLine": 1, "isSliding": false, - "noteOrder": 5448, - "time": 0.9298721425803952, + "noteOrder": 5571, + "time": 0.9505359679710706, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6468,18 +9228,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, + "lineGroupId": 222, "indexInLine": 2, "isSliding": false, - "noteOrder": 5520, - "time": 0.9422704378148005, + "noteOrder": 5583, + "time": 0.9526023505101381, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6491,18 +9251,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5520, - "time": 0.9422704378148005, + "noteOrder": 5583, + "time": 0.9526023505101381, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6519,13 +9279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5544, - "time": 0.9464032028929356, + "noteOrder": 5595, + "time": 0.9546687330492056, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6537,16 +9297,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 222, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5569, - "time": 0.9505359679710706, + "noteOrder": 5595, + "time": 0.9546687330492056, "position": { "x": 3, "y": 0 @@ -6566,9 +9326,9 @@ }, { "lineGroupId": 226, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5665, + "noteOrder": 5668, "time": 0.967067028283611, "position": { "x": 7, @@ -6589,10 +9349,10 @@ }, { "lineGroupId": 226, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5678, - "time": 0.9691334108226785, + "noteOrder": 5680, + "time": 0.9691334108226786, "position": { "x": 7, "y": 0 @@ -6612,9 +9372,9 @@ }, { "lineGroupId": 226, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5702, + "noteOrder": 5704, "time": 0.9732661759008135, "position": { "x": 3, @@ -6635,10 +9395,10 @@ }, { "lineGroupId": 226, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5714, - "time": 0.9753325584398812, + "noteOrder": 5716, + "time": 0.9753325584398811, "position": { "x": 3, "y": 0 @@ -6658,9 +9418,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5665, + "noteOrder": 5668, "time": 0.967067028283611, "position": { "x": 3, @@ -6681,10 +9441,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5678, - "time": 0.9691334108226785, + "noteOrder": 5680, + "time": 0.9691334108226786, "position": { "x": 3, "y": 0 @@ -6704,9 +9464,9 @@ }, { "lineGroupId": 227, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5702, + "noteOrder": 5704, "time": 0.9732661759008135, "position": { "x": 7, @@ -6727,10 +9487,10 @@ }, { "lineGroupId": 227, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5714, - "time": 0.9753325584398812, + "noteOrder": 5716, + "time": 0.9753325584398811, "position": { "x": 7, "y": 0 diff --git a/tracks/Waiting for you/262_difficulty_1b.json b/tracks/Waiting for you/262_difficulty_1b.json index efa71b9c..3bd3bad8 100644 --- a/tracks/Waiting for you/262_difficulty_1b.json +++ b/tracks/Waiting for you/262_difficulty_1b.json @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 387, + "noteOrder": 388, "time": 0.06612424125016143, "position": { "x": 7, @@ -54,7 +54,7 @@ }, { "noteOrder": 436, - "time": 0.0743897714064316, + "time": 0.07438977140643162, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 581, - "time": 0.09918636187524216, + "time": 0.09918636187524214, "position": { "x": 7, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 605, + "noteOrder": 606, "time": 0.10331912695337725, "position": { "x": 6, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 629, + "noteOrder": 630, "time": 0.10745189203151233, "position": { "x": 3, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 726, - "time": 0.1239829523440527, + "noteOrder": 727, + "time": 0.12398295234405268, "position": { "x": 6, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 823, + "noteOrder": 824, "time": 0.14051401265659305, "position": { "x": 4, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 944, - "time": 0.16117783804726848, + "noteOrder": 945, + "time": 0.1611778380472685, "position": { "x": 5, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1041, + "noteOrder": 1042, "time": 0.17770889835980885, "position": { "x": 5, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1065, + "noteOrder": 1066, "time": 0.18184166343794395, "position": { "x": 7, @@ -374,7 +374,7 @@ }, { "noteOrder": 1114, - "time": 0.19010719359421413, + "time": 0.1901071935942141, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1162, - "time": 0.19837272375048431, + "noteOrder": 1163, + "time": 0.1983727237504843, "position": { "x": 7, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1186, - "time": 0.2025054888286194, + "noteOrder": 1187, + "time": 0.20250548882861938, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1453, - "time": 0.2479659046881054, + "time": 0.24796590468810537, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1501, + "noteOrder": 1502, "time": 0.25623143484437555, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1525, + "noteOrder": 1526, "time": 0.26036419992251064, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1599, "time": 0.2727624951569159, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1599, "time": 0.2727624951569159, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1623, "time": 0.276895260235051, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1623, "time": 0.276895260235051, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1840, + "noteOrder": 1841, "time": 0.3140901459382668, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1864, + "noteOrder": 1865, "time": 0.3182229110164019, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1888, - "time": 0.32235567609453697, + "noteOrder": 1889, + "time": 0.322355676094537, "position": { "x": 4, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1913, - "time": 0.32648844117267206, + "time": 0.3264884411726721, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1937, + "noteOrder": 1938, "time": 0.33062120625080715, "position": { "x": 3, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1961, + "noteOrder": 1962, "time": 0.33475397132894225, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1985, + "noteOrder": 1986, "time": 0.33888673640707734, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1985, + "noteOrder": 1986, "time": 0.33888673640707734, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3512850316414826, + "noteOrder": 2059, + "time": 0.35128503164148256, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3512850316414826, + "noteOrder": 2059, + "time": 0.35128503164148256, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2082, + "noteOrder": 2083, "time": 0.3554177967196177, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.3595505617977528, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2155, + "noteOrder": 2156, "time": 0.367816091954023, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2179, + "noteOrder": 2180, "time": 0.3719488570321581, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2203, - "time": 0.37608162211029317, + "noteOrder": 2204, + "time": 0.3760816221102931, "position": { "x": 3, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2227, - "time": 0.38021438718842826, + "noteOrder": 2228, + "time": 0.3802143871884282, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2252, + "noteOrder": 2253, "time": 0.38434715226656335, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2276, + "noteOrder": 2277, "time": 0.38847991734469844, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2300, + "noteOrder": 2301, "time": 0.39261268242283354, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2324, - "time": 0.39674544750096863, + "noteOrder": 2325, + "time": 0.3967454475009686, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2348, - "time": 0.4008782125791037, + "noteOrder": 2349, + "time": 0.40087821257910367, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2373, - "time": 0.4050109776572388, + "noteOrder": 2374, + "time": 0.40501097765723876, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2373, - "time": 0.4050109776572388, + "noteOrder": 2374, + "time": 0.40501097765723876, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2397, - "time": 0.4091437427353739, + "noteOrder": 2398, + "time": 0.40914374273537385, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2397, - "time": 0.4091437427353739, + "noteOrder": 2398, + "time": 0.40914374273537385, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2421, + "noteOrder": 2422, "time": 0.413276507813509, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2445, - "time": 0.4174092728916441, + "noteOrder": 2446, + "time": 0.41740927289164403, "position": { "x": 5, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2470, + "noteOrder": 2471, "time": 0.4215420379697791, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2494, + "noteOrder": 2495, "time": 0.4256748030479142, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2518, + "noteOrder": 2519, "time": 0.4298075681260493, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2543, "time": 0.4339403332041844, "position": { "x": 5, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2566, + "noteOrder": 2567, "time": 0.4380730982823195, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.4422058633604546, + "noteOrder": 2592, + "time": 0.44220586336045453, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2615, + "noteOrder": 2616, "time": 0.4463386284385897, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2639, + "noteOrder": 2640, "time": 0.45047139351672477, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2663, + "noteOrder": 2664, "time": 0.45460415859485986, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2663, + "noteOrder": 2664, "time": 0.45460415859485986, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2687, + "noteOrder": 2689, "time": 0.45873692367299496, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2687, + "noteOrder": 2689, "time": 0.45873692367299496, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3680, + "noteOrder": 3682, "time": 0.6281802918765336, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3704, + "noteOrder": 3706, "time": 0.6323130569546687, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3729, + "noteOrder": 3730, "time": 0.6364458220328038, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3729, + "noteOrder": 3730, "time": 0.6364458220328038, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3753, + "noteOrder": 3754, "time": 0.6405785871109388, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3753, + "noteOrder": 3754, "time": 0.6405785871109388, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3801, + "noteOrder": 3803, "time": 0.648844117267209, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3825, - "time": 0.6529768823453441, + "noteOrder": 3827, + "time": 0.6529768823453442, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3851, "time": 0.6571096474234792, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3898, + "noteOrder": 3900, "time": 0.6653751775797494, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3922, + "noteOrder": 3924, "time": 0.6695079426578845, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3946, - "time": 0.6736407077360196, + "noteOrder": 3948, + "time": 0.6736407077360197, "position": { "x": 5, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3972, "time": 0.6777734728141547, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3997, "time": 0.6819062378922898, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4019, + "noteOrder": 4021, "time": 0.6860390029704249, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4045, "time": 0.69017176804856, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4069, "time": 0.694304533126695, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4092, + "noteOrder": 4093, "time": 0.6984372982048301, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7025700632829652, + "noteOrder": 4118, + "time": 0.7025700632829651, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7025700632829652, + "noteOrder": 4118, + "time": 0.7025700632829651, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.7067028283611003, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.7067028283611003, "position": { "x": 3, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4358, + "noteOrder": 4360, "time": 0.7438977140643162, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4382, + "noteOrder": 4384, "time": 0.7480304791424512, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4406, - "time": 0.7521632442205863, + "noteOrder": 4408, + "time": 0.7521632442205862, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4432, "time": 0.7562960092987214, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4455, - "time": 0.7604287743768565, + "noteOrder": 4457, + "time": 0.7604287743768564, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.7645615394549916, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.7686943045331267, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.7686943045331267, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4528, - "time": 0.7728270696112618, + "noteOrder": 4529, + "time": 0.7728270696112617, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4528, - "time": 0.7728270696112618, + "noteOrder": 4529, + "time": 0.7728270696112617, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4745, - "time": 0.8100219553144776, + "noteOrder": 4747, + "time": 0.8100219553144775, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4770, - "time": 0.8141547203926127, + "noteOrder": 4772, + "time": 0.8141547203926126, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4794, - "time": 0.8182874854707478, + "noteOrder": 4796, + "time": 0.8182874854707477, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4818, - "time": 0.8224202505488829, + "noteOrder": 4820, + "time": 0.8224202505488828, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4844, "time": 0.826553015627018, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4866, - "time": 0.8306857807051531, + "noteOrder": 4868, + "time": 0.830685780705153, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4891, - "time": 0.8348185457832882, + "noteOrder": 4893, + "time": 0.8348185457832881, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4891, - "time": 0.8348185457832882, + "noteOrder": 4893, + "time": 0.8348185457832881, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8472168410176933, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8472168410176933, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4988, + "noteOrder": 4990, "time": 0.8513496060958284, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.8554823711739635, + "noteOrder": 5014, + "time": 0.8554823711739636, "position": { "x": 7, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5036, + "noteOrder": 5038, "time": 0.8596151362520986, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5060, + "noteOrder": 5062, "time": 0.8637479013302337, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5084, + "noteOrder": 5086, "time": 0.8678806664083688, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5109, + "noteOrder": 5111, "time": 0.8720134314865039, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5133, + "noteOrder": 5135, "time": 0.876146196564639, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5157, + "noteOrder": 5159, "time": 0.8802789616427741, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5181, - "time": 0.8844117267209092, + "noteOrder": 5183, + "time": 0.8844117267209091, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5205, + "noteOrder": 5208, "time": 0.8885444917990443, "position": { "x": 3, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.8926772568771794, "position": { "x": 3, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5256, "time": 0.8968100219553145, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5278, + "noteOrder": 5280, "time": 0.9009427870334495, "position": { "x": 6, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5278, + "noteOrder": 5280, "time": 0.9009427870334495, "position": { "x": 4, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9050755521115846, + "noteOrder": 5304, + "time": 0.9050755521115845, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9050755521115846, + "noteOrder": 5304, + "time": 0.9050755521115845, "position": { "x": 3, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5326, + "noteOrder": 5329, "time": 0.9092083171897197, "position": { "x": 7, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5351, - "time": 0.9133410822678548, + "noteOrder": 5353, + "time": 0.9133410822678547, "position": { "x": 5, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5375, + "noteOrder": 5377, "time": 0.9174738473459899, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5399, + "noteOrder": 5401, "time": 0.921606612424125, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5423, - "time": 0.9257393775022601, + "noteOrder": 5426, + "time": 0.92573937750226, "position": { "x": 3, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9298721425803952, "position": { "x": 5, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9340049076585303, + "noteOrder": 5474, + "time": 0.9340049076585302, "position": { "x": 6, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.9381376727366654, "position": { "x": 7, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5520, - "time": 0.9422704378148005, + "noteOrder": 5522, + "time": 0.9422704378148004, "position": { "x": 7, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5544, + "noteOrder": 5547, "time": 0.9464032028929356, "position": { "x": 3, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5569, + "noteOrder": 5571, "time": 0.9505359679710706, "position": { "x": 6, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5569, + "noteOrder": 5571, "time": 0.9505359679710706, "position": { "x": 4, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9546687330492057, + "noteOrder": 5595, + "time": 0.9546687330492056, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5593, - "time": 0.9546687330492057, + "noteOrder": 5595, + "time": 0.9546687330492056, "position": { "x": 3, "y": 0 @@ -2976,7 +2976,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01653106031254036, @@ -2999,7 +2999,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 194, "time": 0.03306212062508072, @@ -3022,7 +3022,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03306212062508072, @@ -3045,10 +3045,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, - "time": 0.04959318093762108, + "time": 0.04959318093762107, "position": { "x": 3, "y": 0 @@ -3068,10 +3068,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.04959318093762108, + "time": 0.04959318093762107, "position": { "x": 7, "y": 0 @@ -3091,10 +3091,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 339, - "time": 0.057858711093891256, + "time": 0.05785871109389125, "position": { "x": 7, "y": 0 @@ -3114,10 +3114,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 339, - "time": 0.057858711093891256, + "time": 0.05785871109389125, "position": { "x": 3, "y": 0 @@ -3137,9 +3137,9 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 387, + "noteOrder": 388, "time": 0.06612424125016143, "position": { "x": 3, @@ -3160,7 +3160,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, "time": 0.08265530156270179, @@ -3183,7 +3183,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 533, "time": 0.09092083171897197, @@ -3206,7 +3206,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 533, "time": 0.09092083171897197, @@ -3229,10 +3229,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 581, - "time": 0.09918636187524216, + "time": 0.09918636187524214, "position": { "x": 3, "y": 0 @@ -3252,10 +3252,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 678, - "time": 0.11571742218778251, + "time": 0.1157174221877825, "position": { "x": 7, "y": 0 @@ -3275,10 +3275,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 726, - "time": 0.1239829523440527, + "noteOrder": 727, + "time": 0.12398295234405268, "position": { "x": 7, "y": 0 @@ -3298,7 +3298,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 775, "time": 0.13224848250032287, @@ -3321,9 +3321,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 823, + "noteOrder": 824, "time": 0.14051401265659305, "position": { "x": 3, @@ -3344,10 +3344,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 872, - "time": 0.1487795428128632, + "time": 0.14877954281286324, "position": { "x": 7, "y": 0 @@ -3367,9 +3367,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 968, + "noteOrder": 969, "time": 0.16531060312540358, "position": { "x": 7, @@ -3390,9 +3390,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 968, + "noteOrder": 969, "time": 0.16531060312540358, "position": { "x": 3, @@ -3413,9 +3413,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1065, + "noteOrder": 1066, "time": 0.18184166343794395, "position": { "x": 3, @@ -3436,9 +3436,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1259, + "noteOrder": 1260, "time": 0.21490378406302466, "position": { "x": 7, @@ -3458,11 +3458,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1307, - "time": 0.22316931421929484, + "noteOrder": 1284, + "time": 0.21903654914115975, "position": { "x": 7, "y": 0 @@ -3476,18 +3476,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1356, - "time": 0.23143484437556502, + "noteOrder": 1284, + "time": 0.21903654914115975, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3504,13 +3504,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1404, - "time": 0.2397003745318352, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3522,18 +3522,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1646, - "time": 0.2810280253131861, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3545,18 +3545,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1695, - "time": 0.2892935554694563, + "noteOrder": 1308, + "time": 0.22316931421929484, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3568,18 +3568,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1743, - "time": 0.2975590856257264, + "noteOrder": 1332, + "time": 0.22730207929742993, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3596,13 +3596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1792, - "time": 0.3058246157819966, + "noteOrder": 1332, + "time": 0.22730207929742993, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3614,18 +3614,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2010, - "time": 0.34301950148521243, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3637,18 +3637,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2034, - "time": 0.3471522665633475, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3660,18 +3660,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2010, - "time": 0.34301950148521243, + "noteOrder": 1356, + "time": 0.231434844375565, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3683,18 +3683,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2034, - "time": 0.3471522665633475, + "noteOrder": 1381, + "time": 0.2355676094537001, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3706,18 +3706,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2712, - "time": 0.46286968875113005, + "noteOrder": 1381, + "time": 0.2355676094537001, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3734,13 +3734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2809, - "time": 0.4794007490636704, + "noteOrder": 1405, + "time": 0.2397003745318352, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3757,13 +3757,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2760, - "time": 0.47113521890740023, + "noteOrder": 1405, + "time": 0.2397003745318352, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3775,18 +3775,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 2809, - "time": 0.4794007490636704, + "noteOrder": 1405, + "time": 0.2397003745318352, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3803,13 +3803,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3293, - "time": 0.5620560506263722, + "noteOrder": 1429, + "time": 0.24383313960997027, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3826,13 +3826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3390, - "time": 0.5785871109389126, + "noteOrder": 1429, + "time": 0.24383313960997027, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3849,13 +3849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3390, - "time": 0.5785871109389126, + "noteOrder": 1453, + "time": 0.24796590468810537, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3867,18 +3867,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3486, - "time": 0.5951181712514528, + "noteOrder": 1453, + "time": 0.24796590468810537, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3890,16 +3890,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3777, - "time": 0.6447113521890739, + "noteOrder": 1647, + "time": 0.2810280253131861, "position": { "x": 3, "y": 0 @@ -3918,11 +3918,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3874, - "time": 0.6612424125016143, + "noteOrder": 1671, + "time": 0.28516079039132114, "position": { "x": 3, "y": 0 @@ -3941,13 +3941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3874, - "time": 0.6612424125016143, + "noteOrder": 1671, + "time": 0.28516079039132114, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3959,18 +3959,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3971, - "time": 0.6777734728141547, + "noteOrder": 1695, + "time": 0.28929355546945623, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3982,18 +3982,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4164, - "time": 0.7108355934392354, + "noteOrder": 1695, + "time": 0.28929355546945623, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4010,11 +4010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4213, - "time": 0.7191011235955056, + "noteOrder": 1695, + "time": 0.28929355546945623, "position": { "x": 3, "y": 0 @@ -4033,11 +4033,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4261, - "time": 0.7273666537517758, + "noteOrder": 1720, + "time": 0.2934263205475914, "position": { "x": 3, "y": 0 @@ -4051,18 +4051,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4310, - "time": 0.735632183908046, + "noteOrder": 1720, + "time": 0.2934263205475914, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4079,13 +4079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4552, - "time": 0.7769598346893969, + "noteOrder": 1744, + "time": 0.29755908562572647, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4102,13 +4102,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4600, - "time": 0.7852253648456671, + "noteOrder": 1744, + "time": 0.29755908562572647, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4120,18 +4120,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4649, - "time": 0.7934908950019373, + "noteOrder": 1744, + "time": 0.29755908562572647, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4143,18 +4143,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4697, - "time": 0.8017564251582074, + "noteOrder": 1768, + "time": 0.30169185070386156, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4171,13 +4171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4915, - "time": 0.8389513108614233, + "noteOrder": 1768, + "time": 0.30169185070386156, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4189,18 +4189,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4939, - "time": 0.8430840759395583, + "noteOrder": 1792, + "time": 0.3058246157819966, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4212,18 +4212,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4915, - "time": 0.8389513108614233, + "noteOrder": 1792, + "time": 0.3058246157819966, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4240,11 +4240,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, - "time": 0.8430840759395583, + "noteOrder": 1792, + "time": 0.3058246157819966, "position": { "x": 3, "y": 0 @@ -4258,16 +4258,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5617, - "time": 0.9588014981273408, + "noteOrder": 1817, + "time": 0.3099573808601317, "position": { "x": 3, "y": 0 @@ -4281,16 +4281,1488 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1817, + "time": 0.3099573808601317, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1841, + "time": 0.3140901459382668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1841, + "time": 0.3140901459382668, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2010, + "time": 0.34301950148521243, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2035, + "time": 0.3471522665633475, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2010, + "time": 0.34301950148521243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2035, + "time": 0.3471522665633475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2713, + "time": 0.46286968875113, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4794007490636704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2761, + "time": 0.4711352189074002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4794007490636704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5620560506263722, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3391, + "time": 0.5785871109389125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3391, + "time": 0.5785871109389125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3488, + "time": 0.5951181712514529, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3779, + "time": 0.644711352189074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3875, + "time": 0.6612424125016143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3875, + "time": 0.6612424125016143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3972, + "time": 0.6777734728141547, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4166, + "time": 0.7108355934392354, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4190, + "time": 0.7149683585173705, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4190, + "time": 0.7149683585173705, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4215, + "time": 0.7191011235955056, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4215, + "time": 0.7191011235955056, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4215, + "time": 0.7191011235955056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4239, + "time": 0.7232338886736406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4239, + "time": 0.7232338886736406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4263, + "time": 0.7273666537517758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4263, + "time": 0.7273666537517758, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4263, + "time": 0.7273666537517758, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4287, + "time": 0.7314994188299108, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4287, + "time": 0.7314994188299108, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4311, + "time": 0.735632183908046, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4311, + "time": 0.735632183908046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4311, + "time": 0.735632183908046, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4336, + "time": 0.7397649489861811, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4336, + "time": 0.7397649489861811, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4360, + "time": 0.7438977140643162, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4360, + "time": 0.7438977140643162, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4554, + "time": 0.7769598346893969, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4578, + "time": 0.7810925997675319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4578, + "time": 0.7810925997675319, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7852253648456671, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7852253648456671, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4602, + "time": 0.7852253648456671, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4626, + "time": 0.789358129923802, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4626, + "time": 0.789358129923802, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4650, + "time": 0.7934908950019371, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4650, + "time": 0.7934908950019371, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4650, + "time": 0.7934908950019371, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7976236600800723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4675, + "time": 0.7976236600800723, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4699, + "time": 0.8017564251582073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4699, + "time": 0.8017564251582073, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4699, + "time": 0.8017564251582073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4723, + "time": 0.8058891902363425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4723, + "time": 0.8058891902363425, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4747, + "time": 0.8100219553144775, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4747, + "time": 0.8100219553144775, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.8389513108614232, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4941, + "time": 0.8430840759395583, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4917, + "time": 0.8389513108614232, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4941, + "time": 0.8430840759395583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 5714, - "time": 0.9753325584398812, + "noteOrder": 5619, + "time": 0.9588014981273408, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5716, + "time": 0.9753325584398811, "position": { "x": 3, "y": 0 @@ -4310,9 +5782,9 @@ }, { "lineGroupId": 194, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5665, + "noteOrder": 5668, "time": 0.967067028283611, "position": { "x": 7, @@ -4333,10 +5805,10 @@ }, { "lineGroupId": 194, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5714, - "time": 0.9753325584398812, + "noteOrder": 5716, + "time": 0.9753325584398811, "position": { "x": 7, "y": 0 diff --git a/tracks/Waiting for you/info.json b/tracks/Waiting for you/info.json index 742da4cf..a500be3f 100644 --- a/tracks/Waiting for you/info.json +++ b/tracks/Waiting for you/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Waiting for you", - "SongLength": "124.421224", + "SongLength": "114.468571", "SongAuthorName": "Soda Sphere", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Warpstep/354_difficulty_1a.json b/tracks/Warpstep/354_difficulty_1a.json index 124753cd..ced145d4 100644 --- a/tracks/Warpstep/354_difficulty_1a.json +++ b/tracks/Warpstep/354_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 216, - "time": 0.03516054205835673, + "time": 0.03516054205835674, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 360, - "time": 0.058600903430594556, + "time": 0.05860090343059456, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 408, - "time": 0.0664143572213405, + "time": 0.06641435722134051, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 432, - "time": 0.07032108411671346, + "time": 0.07032108411671348, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 456, - "time": 0.07422781101208645, + "time": 0.07422781101208643, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 529, "time": 0.08594799169820534, "position": { "x": 5, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.08985471859357833, "position": { "x": 4, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.09766817238432426, "position": { "x": 4, @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.1054816261750702, + "noteOrder": 649, + "time": 0.10548162617507022, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.11329507996581616, + "noteOrder": 697, + "time": 0.11329507996581614, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.1211085337565621, + "noteOrder": 745, + "time": 0.12110853375656208, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 769, "time": 0.12501526065193505, "position": { "x": 8, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 793, "time": 0.12892198754730802, "position": { "x": 3, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 816, - "time": 0.132828714442681, + "noteOrder": 817, + "time": 0.13282871444268102, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 828, + "noteOrder": 829, "time": 0.13478207789036747, "position": { "x": 3, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 841, "time": 0.13673544133805396, "position": { "x": 5, @@ -414,7 +414,7 @@ }, { "noteOrder": 1177, - "time": 0.19142961787327553, + "time": 0.19142961787327556, "position": { "x": 5, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1297, - "time": 0.2109632523501404, + "time": 0.21096325235014043, "position": { "x": 5, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1657, + "noteOrder": 1658, "time": 0.26956415578073495, "position": { "x": 8, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1681, + "noteOrder": 1682, "time": 0.2734708826761079, "position": { "x": 3, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1729, - "time": 0.28128433646685386, + "noteOrder": 1730, + "time": 0.2812843364668539, "position": { "x": 7, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.2851910633622269, + "noteOrder": 1754, + "time": 0.2851910633622268, "position": { "x": 2, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1777, - "time": 0.28909779025759985, + "noteOrder": 1778, + "time": 0.2890977902575998, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1789, - "time": 0.2910511537052863, + "noteOrder": 1790, + "time": 0.29105115370528634, "position": { "x": 5, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2930045171529728, "position": { "x": 2, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.3008179709437187, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.3047246978390917, + "noteOrder": 1874, + "time": 0.30472469783909173, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.30863142473446464, "position": { "x": 4, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.3125381516298376, + "noteOrder": 1922, + "time": 0.31253815162983767, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.3164448785252106, + "noteOrder": 1946, + "time": 0.31644487852521064, "position": { "x": 8, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.3203516054205836, + "noteOrder": 1970, + "time": 0.32035160542058355, "position": { "x": 3, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1981, + "noteOrder": 1982, "time": 0.32230496886827004, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.3242583323159566, "position": { "x": 8, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3320717861067025, + "noteOrder": 2042, + "time": 0.33207178610670246, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3359785130020755, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3398852398974484, + "noteOrder": 2090, + "time": 0.33988523989744845, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2114, "time": 0.34379196679282137, "position": { "x": 3, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2137, - "time": 0.34769869368819434, + "noteOrder": 2138, + "time": 0.3476986936881944, "position": { "x": 8, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.35160542058356736, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2173, - "time": 0.35355878403125385, + "noteOrder": 2174, + "time": 0.3535587840312538, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.35551214747894033, + "noteOrder": 2186, + "time": 0.3555121474789403, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.36723232816505924, "position": { "x": 8, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.3711390550604322, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.3750457819558052, "position": { "x": 8, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2329, + "noteOrder": 2330, "time": 0.37895250885117815, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2353, - "time": 0.38285923574655106, + "noteOrder": 2354, + "time": 0.3828592357465511, "position": { "x": 8, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2365, + "noteOrder": 2366, "time": 0.3848125991942376, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2377, + "noteOrder": 2378, "time": 0.3867659626419241, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2449, + "noteOrder": 2450, "time": 0.398486143328043, "position": { "x": 2, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.40239287022341597, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.40239287022341597, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2882, - "time": 0.46880722744475645, + "noteOrder": 2883, + "time": 0.4688072274447565, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2906, + "noteOrder": 2907, "time": 0.4727139543401294, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.4766206812355024, + "noteOrder": 2931, + "time": 0.47662068123550244, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2942, + "noteOrder": 2943, "time": 0.4785740446831889, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2954, - "time": 0.48052740813087536, + "noteOrder": 2955, + "time": 0.4805274081308754, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3074, + "noteOrder": 3075, "time": 0.5000610426077402, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.5039677695031132, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3122, + "noteOrder": 3123, "time": 0.5078744963984861, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.5098278598461726, + "noteOrder": 3135, + "time": 0.5098278598461727, "position": { "x": 8, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.5117812232938591, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.527408130875351, "position": { "x": 7, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.527408130875351, "position": { "x": 3, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.5391283115614699, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.543035038456843, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3411, "time": 0.5547552191429618, "position": { "x": 5, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.5586619460383347, + "noteOrder": 3435, + "time": 0.5586619460383349, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5703821267244538, + "noteOrder": 3507, + "time": 0.5703821267244537, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3531, "time": 0.5742888536198266, "position": { "x": 5, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5899157612013185, + "noteOrder": 3628, + "time": 0.5899157612013186, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.5977292149920644, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.6016359418874374, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.6055426687828105, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3772, "time": 0.6133561225735564, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.6172628494689293, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3818, - "time": 0.6211695763643024, + "noteOrder": 3820, + "time": 0.6211695763643023, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3868, "time": 0.6289830301550483, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.6367964839457942, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4010, - "time": 0.652423391527286, + "noteOrder": 4012, + "time": 0.6524233915272861, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4034, + "noteOrder": 4036, "time": 0.6563301184226591, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4058, - "time": 0.660236845318032, + "noteOrder": 4060, + "time": 0.6602368453180321, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.664143572213405, + "noteOrder": 4084, + "time": 0.6641435722134049, "position": { "x": 7, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4106, + "noteOrder": 4108, "time": 0.668050299108778, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.671957026004151, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4154, + "noteOrder": 4156, "time": 0.6758637528995239, "position": { "x": 3, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6797704797948968, + "noteOrder": 4180, + "time": 0.6797704797948969, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.6836772066902699, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4395, + "noteOrder": 4396, "time": 0.7149310218532536, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4467, + "noteOrder": 4468, "time": 0.7266512025393725, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4480, "time": 0.728604565987059, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4492, "time": 0.7305579294347454, "position": { "x": 2, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4539, + "noteOrder": 4540, "time": 0.7383713832254915, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4563, + "noteOrder": 4565, "time": 0.7422781101208644, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.7461848370162374, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4659, + "noteOrder": 4661, "time": 0.7579050177023563, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4671, + "noteOrder": 4673, "time": 0.7598583811500428, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.7618117445977293, "position": { "x": 8, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4733, "time": 0.7696251983884752, "position": { "x": 5, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.7735319252838482, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4779, - "time": 0.7774386521792211, + "noteOrder": 4781, + "time": 0.7774386521792213, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4851, + "noteOrder": 4853, "time": 0.78915883286534, "position": { "x": 2, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4863, + "noteOrder": 4865, "time": 0.7911121963130265, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4875, + "noteOrder": 4877, "time": 0.793065559760713, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4971, + "noteOrder": 4973, "time": 0.8086924673422049, "position": { "x": 5, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.8204126480283238, "position": { "x": 8, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5055, + "noteOrder": 5057, "time": 0.8223660114760103, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.8243193749236968, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5139, - "time": 0.8360395556098158, + "noteOrder": 5141, + "time": 0.8360395556098157, "position": { "x": 2, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.8399462825051887, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.8399462825051887, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.8477597362959346, "position": { "x": 5, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8516664631913076, "position": { "x": 5, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5259, + "noteOrder": 5261, "time": 0.8555731900866805, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.8633866438774265, "position": { "x": 5, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5331, - "time": 0.8672933707727994, + "noteOrder": 5333, + "time": 0.8672933707727996, "position": { "x": 5, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5355, - "time": 0.8712000976681725, + "noteOrder": 5357, + "time": 0.8712000976681724, "position": { "x": 3, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5403, + "noteOrder": 5405, "time": 0.8790135514589184, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.8868270052496643, + "noteOrder": 5453, + "time": 0.8868270052496644, "position": { "x": 5, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5549, "time": 0.9024539128311562, "position": { "x": 4, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5571, - "time": 0.9063606397265292, + "noteOrder": 5574, + "time": 0.9063606397265291, "position": { "x": 7, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5646, "time": 0.918080820412648, "position": { "x": 2, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5655, + "noteOrder": 5658, "time": 0.9200341838603346, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5667, + "noteOrder": 5670, "time": 0.921987547308021, "position": { "x": 2, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5739, + "noteOrder": 5742, "time": 0.93370772799414, "position": { "x": 8, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5751, - "time": 0.9356610914418265, + "noteOrder": 5754, + "time": 0.9356610914418264, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5763, - "time": 0.9376144548895129, + "noteOrder": 5766, + "time": 0.937614454889513, "position": { "x": 8, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5835, - "time": 0.9493346355756319, + "noteOrder": 5838, + "time": 0.9493346355756318, "position": { "x": 3, "y": 0 @@ -2736,7 +2736,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.03125381516298376, @@ -2759,7 +2759,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.04688072274447565, @@ -2782,7 +2782,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04688072274447565, @@ -2805,7 +2805,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, "time": 0.06250763032596753, @@ -2828,10 +2828,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 480, - "time": 0.0781345379074594, + "time": 0.07813453790745942, "position": { "x": 7, "y": 0 @@ -2851,9 +2851,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 576, + "noteOrder": 577, "time": 0.0937614454889513, "position": { "x": 6, @@ -2874,9 +2874,9 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 576, + "noteOrder": 577, "time": 0.0937614454889513, "position": { "x": 3, @@ -2897,9 +2897,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 624, + "noteOrder": 625, "time": 0.10157489927969723, "position": { "x": 3, @@ -2920,9 +2920,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 624, + "noteOrder": 625, "time": 0.10157489927969723, "position": { "x": 7, @@ -2943,9 +2943,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10938835307044317, "position": { "x": 7, @@ -2966,9 +2966,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.10938835307044317, "position": { "x": 3, @@ -2989,10 +2989,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 696, - "time": 0.11329507996581616, + "noteOrder": 697, + "time": 0.11329507996581614, "position": { "x": 4, "y": 0 @@ -3012,10 +3012,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 720, - "time": 0.11720180686118911, + "noteOrder": 721, + "time": 0.11720180686118913, "position": { "x": 7, "y": 0 @@ -3035,10 +3035,10 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 744, - "time": 0.1211085337565621, + "noteOrder": 745, + "time": 0.12110853375656208, "position": { "x": 6, "y": 0 @@ -3058,10 +3058,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 865, - "time": 0.14064216823342693, + "time": 0.14064216823342696, "position": { "x": 3, "y": 0 @@ -3080,13 +3080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.14454889512879993, + "noteOrder": 877, + "time": 0.1425955316811134, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3098,18 +3098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 913, - "time": 0.1484556220241729, + "noteOrder": 877, + "time": 0.1425955316811134, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3126,13 +3126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.1562690758149188, + "noteOrder": 889, + "time": 0.1445488951287999, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3144,18 +3144,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, - "time": 0.1601758027102918, + "noteOrder": 901, + "time": 0.1465022585764864, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -3172,13 +3172,13 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1009, - "time": 0.16408252960566477, + "noteOrder": 901, + "time": 0.1465022585764864, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3190,18 +3190,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1033, - "time": 0.16798925650103774, + "noteOrder": 913, + "time": 0.14845562202417287, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3213,18 +3213,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.17189598339641068, + "noteOrder": 925, + "time": 0.15040898547185935, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -3241,13 +3241,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1081, - "time": 0.17580271029178368, + "noteOrder": 925, + "time": 0.15040898547185935, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3259,18 +3259,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1105, - "time": 0.17970943718715665, + "noteOrder": 961, + "time": 0.15626907581491883, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3287,11 +3287,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1129, - "time": 0.18361616408252962, + "noteOrder": 973, + "time": 0.15822243926260532, "position": { "x": 2, "y": 0 @@ -3305,18 +3305,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.1875228909779026, + "noteOrder": 973, + "time": 0.15822243926260532, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3333,11 +3333,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1201, - "time": 0.19533634476864853, + "noteOrder": 985, + "time": 0.16017580271029178, "position": { "x": 4, "y": 0 @@ -3356,11 +3356,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 2, + "lineGroupId": 32, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1225, - "time": 0.1992430716640215, + "noteOrder": 985, + "time": 0.16017580271029178, "position": { "x": 5, "y": 0 @@ -3379,13 +3379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1225, - "time": 0.1992430716640215, + "noteOrder": 985, + "time": 0.16017580271029178, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3402,13 +3402,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 3, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.2109632523501404, + "noteOrder": 997, + "time": 0.1621291661579783, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3425,13 +3425,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 4, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1321, - "time": 0.21486997924551338, + "noteOrder": 997, + "time": 0.1621291661579783, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3448,13 +3448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1321, - "time": 0.21486997924551338, + "noteOrder": 1009, + "time": 0.16408252960566477, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3466,16 +3466,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1441, - "time": 0.23440361372237822, + "noteOrder": 1009, + "time": 0.16408252960566477, "position": { "x": 5, "y": 0 @@ -3489,18 +3489,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 34, "indexInLine": 1, "isSliding": false, - "noteOrder": 1465, - "time": 0.2383103406177512, + "noteOrder": 1009, + "time": 0.16408252960566477, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3517,13 +3517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1465, - "time": 0.2383103406177512, + "noteOrder": 1021, + "time": 0.16603589305335123, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3535,18 +3535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.2422170675131242, + "noteOrder": 1021, + "time": 0.16603589305335123, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3558,18 +3558,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1489, - "time": 0.2422170675131242, + "noteOrder": 1033, + "time": 0.16798925650103774, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3586,11 +3586,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1513, - "time": 0.24612379440849716, + "noteOrder": 1033, + "time": 0.16798925650103774, "position": { "x": 5, "y": 0 @@ -3609,13 +3609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1513, - "time": 0.24612379440849716, + "noteOrder": 1033, + "time": 0.16798925650103774, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3632,13 +3632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, - "time": 0.2500305213038701, + "noteOrder": 1045, + "time": 0.16994261994872423, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3655,13 +3655,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 2, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1561, - "time": 0.25393724819924307, + "noteOrder": 1045, + "time": 0.16994261994872423, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3678,13 +3678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 3, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1585, - "time": 0.25784397509461604, + "noteOrder": 1057, + "time": 0.17189598339641068, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3701,13 +3701,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 4, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1609, - "time": 0.261750701989989, + "noteOrder": 1057, + "time": 0.17189598339641068, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3724,13 +3724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 5, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.265657428885362, + "noteOrder": 1057, + "time": 0.17189598339641068, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -3742,18 +3742,2456 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1069, + "time": 0.1738493468440972, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1069, + "time": 0.1738493468440972, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1081, + "time": 0.17580271029178368, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1093, + "time": 0.17775607373947014, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1093, + "time": 0.17775607373947014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1105, + "time": 0.17970943718715665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1105, + "time": 0.17970943718715665, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1105, + "time": 0.17970943718715665, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1117, + "time": 0.18166280063484314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 38, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1117, + "time": 0.18166280063484314, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1129, + "time": 0.18361616408252962, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1141, + "time": 0.1855695275302161, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1141, + "time": 0.1855695275302161, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1153, + "time": 0.1875228909779026, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1201, + "time": 0.19533634476864853, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1225, + "time": 0.1992430716640215, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1225, + "time": 0.1992430716640215, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1237, + "time": 0.20119643511170798, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1237, + "time": 0.20119643511170798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1249, + "time": 0.20314979855939447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1249, + "time": 0.20314979855939447, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1297, + "time": 0.21096325235014043, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1321, + "time": 0.21486997924551338, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1321, + "time": 0.21486997924551338, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1333, + "time": 0.2168233426931999, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1333, + "time": 0.2168233426931999, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1441, + "time": 0.23440361372237825, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1465, + "time": 0.23831034061775122, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1465, + "time": 0.23831034061775122, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1489, + "time": 0.24221706751312416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1489, + "time": 0.24221706751312416, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1513, + "time": 0.24612379440849716, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1513, + "time": 0.24612379440849716, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1538, + "time": 0.2500305213038701, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1562, + "time": 0.25393724819924307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1586, + "time": 0.25784397509461604, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1610, + "time": 0.261750701989989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1634, + "time": 0.26565742888536203, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1538, + "time": 0.2500305213038701, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1562, + "time": 0.25393724819924307, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1586, + "time": 0.25784397509461604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1610, + "time": 0.261750701989989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1634, + "time": 0.26565742888536203, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.29691124404834573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1850, + "time": 0.3008179709437187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1874, + "time": 0.30472469783909173, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1898, + "time": 0.30863142473446464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.32816505921132955, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.33207178610670246, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3359785130020755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2090, + "time": 0.33988523989744845, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3594188743743133, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3613722378219998, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3613722378219998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2234, + "time": 0.36332560126968627, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2234, + "time": 0.36332560126968627, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.36332560126968627, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2246, + "time": 0.3652789647173727, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2246, + "time": 0.3652789647173727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2258, + "time": 0.36723232816505924, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2258, + "time": 0.36723232816505924, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.39067268953729706, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2414, + "time": 0.39262605298498354, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2414, + "time": 0.39262605298498354, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39457941643267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39457941643267, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2426, + "time": 0.39457941643267, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2438, + "time": 0.3965327798803565, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2438, + "time": 0.3965327798803565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2450, + "time": 0.398486143328043, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2450, + "time": 0.398486143328043, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2498, + "time": 0.40629959711878894, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42192650470028087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42192650470028087, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2691, + "time": 0.4375534122817727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.4375534122817727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2787, + "time": 0.45318031986326457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.45318031986326457, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4688072274447565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4844341350262483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4922475888169943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3027, + "time": 0.4922475888169943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3075, + "time": 0.5000610426077402, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3171, + "time": 0.5156879501892321, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.523501403979978, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.5313148577707241, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3363, + "time": 0.5469417653522158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3363, + "time": 0.5469417653522158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5625686729337078, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3459, + "time": 0.5625686729337078, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5703821267244537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3652, + "time": 0.5938224880966915, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3748, + "time": 0.6094493956781835, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3748, + "time": 0.6094493956781835, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3844, + "time": 0.6250763032596753, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3844, + "time": 0.6250763032596753, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3892, + "time": 0.6328897570504213, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3892, + "time": 0.6328897570504213, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3940, + "time": 0.6407032108411671, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4228, + "time": 0.6875839335856427, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4240, + "time": 0.6895372970333293, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4240, + "time": 0.6895372970333293, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4252, + "time": 0.6914906604810158, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4264, + "time": 0.6934440239287023, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4264, + "time": 0.6934440239287023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4276, + "time": 0.6953973873763888, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, - "time": 0.2500305213038701, + "noteOrder": 4288, + "time": 0.6973507508240752, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3765,18 +6203,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4288, + "time": 0.6973507508240752, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.25393724819924307, + "noteOrder": 4300, + "time": 0.6993041142717618, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3793,11 +6254,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 164, "indexInLine": 2, "isSliding": false, - "noteOrder": 1585, - "time": 0.25784397509461604, + "noteOrder": 4312, + "time": 0.7012574777194482, "position": { "x": 3, "y": 0 @@ -3816,11 +6277,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 164, "indexInLine": 3, "isSliding": false, - "noteOrder": 1609, - "time": 0.261750701989989, + "noteOrder": 4312, + "time": 0.7012574777194482, "position": { "x": 4, "y": 0 @@ -3839,11 +6300,80 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 4, + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4420, + "time": 0.7188377487486266, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4432, + "time": 0.720791112196313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4432, + "time": 0.720791112196313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.265657428885362, + "noteOrder": 4444, + "time": 0.7227444756439996, "position": { "x": 3, "y": 0 @@ -3862,11 +6392,34 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4456, + "time": 0.7246978390916861, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1825, - "time": 0.2969112440483458, + "noteOrder": 4456, + "time": 0.7246978390916861, "position": { "x": 4, "y": 0 @@ -3885,13 +6438,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 1849, - "time": 0.3008179709437187, + "noteOrder": 4516, + "time": 0.7344646563301185, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3908,13 +6461,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 173, "indexInLine": 2, "isSliding": false, - "noteOrder": 1873, - "time": 0.3047246978390917, + "noteOrder": 4540, + "time": 0.7383713832254915, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3931,11 +6484,34 @@ "isPlayAudio": false }, { - "lineGroupId": 66, + "lineGroupId": 173, "indexInLine": 3, "isSliding": false, - "noteOrder": 1897, - "time": 0.30863142473446464, + "noteOrder": 4565, + "time": 0.7422781101208644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4589, + "time": 0.7461848370162374, "position": { "x": 6, "y": 0 @@ -3954,13 +6530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.32816505921132955, + "noteOrder": 4613, + "time": 0.7500915639116104, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -3972,16 +6548,62 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4625, + "time": 0.7520449273592968, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4625, + "time": 0.7520449273592968, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, "indexInLine": 1, "isSliding": false, - "noteOrder": 2041, - "time": 0.3320717861067025, + "noteOrder": 4637, + "time": 0.7539982908069832, "position": { "x": 7, "y": 0 @@ -4000,13 +6622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 178, "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, - "time": 0.3359785130020755, + "noteOrder": 4649, + "time": 0.7559516542546698, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4023,13 +6645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 178, "indexInLine": 3, "isSliding": false, - "noteOrder": 2089, - "time": 0.3398852398974484, + "noteOrder": 4649, + "time": 0.7559516542546698, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4046,11 +6668,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.3594188743743133, + "noteOrder": 4709, + "time": 0.7657184714931022, "position": { "x": 8, "y": 0 @@ -4069,13 +6691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.36332560126968627, + "noteOrder": 4733, + "time": 0.7696251983884752, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4087,18 +6709,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2401, - "time": 0.39067268953729706, + "noteOrder": 4757, + "time": 0.7735319252838482, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -4110,18 +6732,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2425, - "time": 0.39457941643267, + "noteOrder": 4781, + "time": 0.7774386521792213, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4138,11 +6760,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2497, - "time": 0.40629959711878894, + "noteOrder": 4805, + "time": 0.7813453790745941, "position": { "x": 3, "y": 0 @@ -4161,11 +6783,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, - "time": 0.4219265047002808, + "noteOrder": 4817, + "time": 0.7832987425222806, "position": { "x": 3, "y": 0 @@ -4184,13 +6806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2594, - "time": 0.4219265047002808, + "noteOrder": 4817, + "time": 0.7832987425222806, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4202,16 +6824,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, - "time": 0.4375534122817727, + "noteOrder": 4829, + "time": 0.7852521059699671, "position": { "x": 7, "y": 0 @@ -4230,13 +6852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2690, - "time": 0.4375534122817727, + "noteOrder": 4841, + "time": 0.7872054694176536, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4248,18 +6870,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2786, - "time": 0.4531803198632646, + "noteOrder": 4841, + "time": 0.7872054694176536, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4271,18 +6893,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, - "time": 0.4531803198632646, + "noteOrder": 4901, + "time": 0.796972286656086, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4299,13 +6921,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, - "time": 0.46880722744475645, + "noteOrder": 4913, + "time": 0.7989256501037725, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4322,13 +6944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2978, - "time": 0.4844341350262484, + "noteOrder": 4913, + "time": 0.7989256501037725, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4345,13 +6967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3026, - "time": 0.4922475888169943, + "noteOrder": 4925, + "time": 0.8008790135514591, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4368,13 +6990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3026, - "time": 0.4922475888169943, + "noteOrder": 4925, + "time": 0.8008790135514591, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4386,18 +7008,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, - "time": 0.5000610426077402, + "noteOrder": 4925, + "time": 0.8008790135514591, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4414,13 +7036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3170, - "time": 0.5156879501892321, + "noteOrder": 4937, + "time": 0.8028323769991454, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4437,11 +7059,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3218, - "time": 0.523501403979978, + "noteOrder": 4937, + "time": 0.8028323769991454, "position": { "x": 6, "y": 0 @@ -4460,13 +7082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3266, - "time": 0.531314857770724, + "noteOrder": 4949, + "time": 0.8047857404468319, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4478,18 +7100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3362, - "time": 0.5469417653522158, + "noteOrder": 4949, + "time": 0.8047857404468319, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4501,18 +7123,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3362, - "time": 0.5469417653522158, + "noteOrder": 4949, + "time": 0.8047857404468319, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4524,18 +7146,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.5625686729337077, + "noteOrder": 4961, + "time": 0.8067391038945184, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4547,18 +7169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3458, - "time": 0.5625686729337077, + "noteOrder": 4961, + "time": 0.8067391038945184, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4575,13 +7197,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3506, - "time": 0.5703821267244538, + "noteOrder": 4973, + "time": 0.8086924673422049, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4598,13 +7220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3650, - "time": 0.5938224880966916, + "noteOrder": 4973, + "time": 0.8086924673422049, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4616,18 +7238,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 3746, - "time": 0.6094493956781833, + "noteOrder": 4997, + "time": 0.8125991942375779, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4639,18 +7261,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3746, - "time": 0.6094493956781833, + "noteOrder": 5009, + "time": 0.8145525576852644, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4667,11 +7289,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3842, - "time": 0.6250763032596752, + "noteOrder": 5009, + "time": 0.8145525576852644, "position": { "x": 6, "y": 0 @@ -4690,13 +7312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3842, - "time": 0.6250763032596752, + "noteOrder": 5021, + "time": 0.8165059211329508, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4713,11 +7335,11 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3890, - "time": 0.6328897570504212, + "noteOrder": 5033, + "time": 0.8184592845806373, "position": { "x": 3, "y": 0 @@ -4736,13 +7358,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3890, - "time": 0.6328897570504212, + "noteOrder": 5033, + "time": 0.8184592845806373, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4754,18 +7376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.6407032108411672, + "noteOrder": 5093, + "time": 0.8282261018190697, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4777,18 +7399,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4226, - "time": 0.6875839335856427, + "noteOrder": 5105, + "time": 0.8301794652667562, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4800,18 +7422,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4251, - "time": 0.6914906604810158, + "noteOrder": 5105, + "time": 0.8301794652667562, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4828,13 +7450,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4275, - "time": 0.6953973873763887, + "noteOrder": 5117, + "time": 0.8321328287144427, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4846,18 +7468,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4299, - "time": 0.6993041142717618, + "noteOrder": 5117, + "time": 0.8321328287144427, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4874,13 +7496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4419, - "time": 0.7188377487486266, + "noteOrder": 5117, + "time": 0.8321328287144427, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -4897,13 +7519,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4443, - "time": 0.7227444756439995, + "noteOrder": 5129, + "time": 0.8340861921621293, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -4915,16 +7537,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4515, - "time": 0.7344646563301185, + "noteOrder": 5129, + "time": 0.8340861921621293, "position": { "x": 4, "y": 0 @@ -4938,18 +7560,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4539, - "time": 0.7383713832254915, + "noteOrder": 5141, + "time": 0.8360395556098157, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4961,18 +7583,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 2, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4563, - "time": 0.7422781101208644, + "noteOrder": 5141, + "time": 0.8360395556098157, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4984,18 +7606,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 3, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4587, - "time": 0.7461848370162374, + "noteOrder": 5189, + "time": 0.8438530094005617, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5012,13 +7634,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4611, - "time": 0.7500915639116104, + "noteOrder": 5237, + "time": 0.8516664631913076, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5035,11 +7657,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4635, - "time": 0.7539982908069833, + "noteOrder": 5285, + "time": 0.8594799169820535, "position": { "x": 7, "y": 0 @@ -5053,18 +7675,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4707, - "time": 0.7657184714931021, + "noteOrder": 5285, + "time": 0.8594799169820535, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5081,13 +7703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4731, - "time": 0.7696251983884752, + "noteOrder": 5381, + "time": 0.8751068245635454, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5104,13 +7726,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 2, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4755, - "time": 0.7735319252838482, + "noteOrder": 5381, + "time": 0.8751068245635454, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5122,16 +7744,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 3, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4779, - "time": 0.7774386521792211, + "noteOrder": 5429, + "time": 0.8829202783542913, "position": { "x": 5, "y": 0 @@ -5145,18 +7767,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.7813453790745941, + "noteOrder": 5429, + "time": 0.8829202783542913, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5168,18 +7790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4827, - "time": 0.7852521059699671, + "noteOrder": 5477, + "time": 0.8907337321450374, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5196,13 +7818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4899, - "time": 0.796972286656086, + "noteOrder": 5598, + "time": 0.9102673666219022, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5214,18 +7836,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4923, - "time": 0.8008790135514589, + "noteOrder": 5610, + "time": 0.9122207300695886, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -5242,13 +7864,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4947, - "time": 0.8047857404468319, + "noteOrder": 5610, + "time": 0.9122207300695886, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5260,18 +7882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4995, - "time": 0.8125991942375779, + "noteOrder": 5622, + "time": 0.9141740935172752, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5283,18 +7905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5019, - "time": 0.8165059211329508, + "noteOrder": 5622, + "time": 0.9141740935172752, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5311,11 +7933,11 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5091, - "time": 0.8282261018190697, + "noteOrder": 5622, + "time": 0.9141740935172752, "position": { "x": 2, "y": 0 @@ -5329,16 +7951,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5115, - "time": 0.8321328287144427, + "noteOrder": 5634, + "time": 0.9161274569649616, "position": { "x": 2, "y": 0 @@ -5357,13 +7979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5187, - "time": 0.8438530094005616, + "noteOrder": 5634, + "time": 0.9161274569649616, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5375,18 +7997,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5235, - "time": 0.8516664631913076, + "noteOrder": 5646, + "time": 0.918080820412648, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5398,18 +8020,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 2, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5283, - "time": 0.8594799169820535, + "noteOrder": 5694, + "time": 0.925894274203394, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5421,18 +8043,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5283, - "time": 0.8594799169820535, + "noteOrder": 5706, + "time": 0.9278476376510806, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5449,13 +8071,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5379, - "time": 0.8751068245635454, + "noteOrder": 5706, + "time": 0.9278476376510806, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5472,13 +8094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5379, - "time": 0.8751068245635454, + "noteOrder": 5718, + "time": 0.929801001098767, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5490,16 +8112,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5427, - "time": 0.8829202783542913, + "noteOrder": 5718, + "time": 0.929801001098767, "position": { "x": 5, "y": 0 @@ -5513,18 +8135,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5427, - "time": 0.8829202783542913, + "noteOrder": 5718, + "time": 0.929801001098767, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5536,18 +8158,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5475, - "time": 0.8907337321450373, + "noteOrder": 5730, + "time": 0.9317543645464534, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -5559,18 +8181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5595, - "time": 0.9102673666219021, + "noteOrder": 5730, + "time": 0.9317543645464534, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5587,13 +8209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5619, - "time": 0.9141740935172752, + "noteOrder": 5742, + "time": 0.93370772799414, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5605,18 +8227,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 2, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5643, - "time": 0.918080820412648, + "noteOrder": 5790, + "time": 0.9415211817848859, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5628,18 +8250,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5691, - "time": 0.925894274203394, + "noteOrder": 5802, + "time": 0.9434745452325725, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5651,18 +8273,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5715, - "time": 0.929801001098767, + "noteOrder": 5802, + "time": 0.9434745452325725, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5679,13 +8301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 2, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5739, - "time": 0.93370772799414, + "noteOrder": 5814, + "time": 0.9454279086802588, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5697,18 +8319,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5787, - "time": 0.941521181784886, + "noteOrder": 5826, + "time": 0.9473812721279454, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -5720,18 +8342,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5811, - "time": 0.9454279086802588, + "noteOrder": 5826, + "time": 0.9473812721279454, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5749,9 +8371,9 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5847, + "noteOrder": 5850, "time": 0.9512879990233183, "position": { "x": 6, @@ -5772,10 +8394,10 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5956, - "time": 0.9688682700524968, + "noteOrder": 5958, + "time": 0.9688682700524966, "position": { "x": 6, "y": 0 diff --git a/tracks/Warpstep/354_difficulty_1b.json b/tracks/Warpstep/354_difficulty_1b.json index a9fe0a3b..ea29bca1 100644 --- a/tracks/Warpstep/354_difficulty_1b.json +++ b/tracks/Warpstep/354_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 432, - "time": 0.07032108411671346, + "time": 0.07032108411671348, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 480, - "time": 0.0781345379074594, + "time": 0.07813453790745942, "position": { "x": 4, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 529, "time": 0.08594799169820534, "position": { "x": 6, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 553, "time": 0.08985471859357833, "position": { "x": 6, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 577, "time": 0.0937614454889513, "position": { "x": 3, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 601, "time": 0.09766817238432426, "position": { "x": 7, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.10157489927969723, "position": { "x": 4, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 648, - "time": 0.1054816261750702, + "noteOrder": 649, + "time": 0.10548162617507022, "position": { "x": 8, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.10938835307044317, "position": { "x": 6, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 696, - "time": 0.11329507996581616, + "noteOrder": 697, + "time": 0.11329507996581614, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 720, - "time": 0.11720180686118911, + "noteOrder": 721, + "time": 0.11720180686118913, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.1211085337565621, + "noteOrder": 745, + "time": 0.12110853375656208, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1297, - "time": 0.2109632523501404, + "time": 0.21096325235014043, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1489, - "time": 0.2422170675131242, + "time": 0.24221706751312416, "position": { "x": 6, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1585, + "noteOrder": 1586, "time": 0.25784397509461604, "position": { "x": 4, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.2773776095714809, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1705, + "noteOrder": 1706, "time": 0.2773776095714809, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.2851910633622269, + "noteOrder": 1754, + "time": 0.2851910633622268, "position": { "x": 5, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1801, + "noteOrder": 1802, "time": 0.2930045171529728, "position": { "x": 5, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.3008179709437187, "position": { "x": 5, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1873, - "time": 0.3047246978390917, + "noteOrder": 1874, + "time": 0.30472469783909173, "position": { "x": 8, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.30863142473446464, "position": { "x": 5, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1945, - "time": 0.3164448785252106, + "noteOrder": 1946, + "time": 0.31644487852521064, "position": { "x": 5, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1993, + "noteOrder": 1994, "time": 0.3242583323159566, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3320717861067025, + "noteOrder": 2042, + "time": 0.33207178610670246, "position": { "x": 5, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2065, + "noteOrder": 2066, "time": 0.3359785130020755, "position": { "x": 2, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.3398852398974484, + "noteOrder": 2090, + "time": 0.33988523989744845, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.3594188743743133, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2234, "time": 0.36332560126968627, "position": { "x": 4, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.36723232816505924, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2282, "time": 0.3711390550604322, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.40239287022341597, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2473, + "noteOrder": 2474, "time": 0.40239287022341597, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2738, - "time": 0.44536686607251863, + "noteOrder": 2739, + "time": 0.4453668660725187, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2834, + "noteOrder": 2835, "time": 0.4609937736540105, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2906, + "noteOrder": 2907, "time": 0.4727139543401294, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2954, - "time": 0.48052740813087536, + "noteOrder": 2955, + "time": 0.4805274081308754, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.4922475888169943, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3050, - "time": 0.4961543157123673, + "noteOrder": 3051, + "time": 0.49615431571236723, "position": { "x": 4, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.5039677695031132, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.5117812232938591, "position": { "x": 5, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.523501403979978, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.527408130875351, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3314, + "noteOrder": 3315, "time": 0.5391283115614699, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3339, "time": 0.543035038456843, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3411, "time": 0.5547552191429618, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3434, - "time": 0.5586619460383347, + "noteOrder": 3435, + "time": 0.5586619460383349, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.5703821267244538, + "noteOrder": 3507, + "time": 0.5703821267244537, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3531, "time": 0.5742888536198266, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5899157612013185, + "noteOrder": 3628, + "time": 0.5899157612013186, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.5977292149920644, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.6016359418874374, "position": { "x": 3, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.6055426687828105, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3772, "time": 0.6133561225735564, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.6172628494689293, "position": { "x": 7, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3818, - "time": 0.6211695763643024, + "noteOrder": 3820, + "time": 0.6211695763643023, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3868, "time": 0.6289830301550483, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3890, - "time": 0.6328897570504212, + "noteOrder": 3892, + "time": 0.6328897570504213, "position": { "x": 4, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3914, + "noteOrder": 3916, "time": 0.6367964839457942, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4010, - "time": 0.652423391527286, + "noteOrder": 4012, + "time": 0.6524233915272861, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4034, + "noteOrder": 4036, "time": 0.6563301184226591, "position": { "x": 3, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.664143572213405, + "noteOrder": 4084, + "time": 0.6641435722134049, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4132, "time": 0.671957026004151, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.6797704797948968, + "noteOrder": 4180, + "time": 0.6797704797948969, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4226, + "noteOrder": 4228, "time": 0.6875839335856427, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4251, + "noteOrder": 4252, "time": 0.6914906604810158, "position": { "x": 7, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.6953973873763887, + "noteOrder": 4276, + "time": 0.6953973873763888, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4300, "time": 0.6993041142717618, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4443, - "time": 0.7227444756439995, + "noteOrder": 4444, + "time": 0.7227444756439996, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4492, "time": 0.7305579294347454, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4563, + "noteOrder": 4565, "time": 0.7422781101208644, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4587, + "noteOrder": 4589, "time": 0.7461848370162374, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.7539982908069833, + "noteOrder": 4637, + "time": 0.7539982908069832, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4683, + "noteOrder": 4685, "time": 0.7618117445977293, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4707, - "time": 0.7657184714931021, + "noteOrder": 4709, + "time": 0.7657184714931022, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4731, + "noteOrder": 4733, "time": 0.7696251983884752, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4851, + "noteOrder": 4853, "time": 0.78915883286534, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4875, + "noteOrder": 4877, "time": 0.793065559760713, "position": { "x": 7, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5043, + "noteOrder": 5045, "time": 0.8204126480283238, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5069, "time": 0.8243193749236968, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.8477597362959346, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8516664631913076, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5259, + "noteOrder": 5261, "time": 0.8555731900866805, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5307, + "noteOrder": 5309, "time": 0.8633866438774265, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5331, - "time": 0.8672933707727994, + "noteOrder": 5333, + "time": 0.8672933707727996, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5355, - "time": 0.8712000976681725, + "noteOrder": 5357, + "time": 0.8712000976681724, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5403, + "noteOrder": 5405, "time": 0.8790135514589184, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5427, + "noteOrder": 5429, "time": 0.8829202783542913, "position": { "x": 8, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5451, - "time": 0.8868270052496643, + "noteOrder": 5453, + "time": 0.8868270052496644, "position": { "x": 5, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5547, + "noteOrder": 5549, "time": 0.9024539128311562, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5595, - "time": 0.9102673666219021, + "noteOrder": 5598, + "time": 0.9102673666219022, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5619, + "noteOrder": 5622, "time": 0.9141740935172752, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5643, + "noteOrder": 5646, "time": 0.918080820412648, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5691, + "noteOrder": 5694, "time": 0.925894274203394, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5715, + "noteOrder": 5718, "time": 0.929801001098767, "position": { "x": 6, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5739, + "noteOrder": 5742, "time": 0.93370772799414, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5787, - "time": 0.941521181784886, + "noteOrder": 5790, + "time": 0.9415211817848859, "position": { "x": 7, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5811, + "noteOrder": 5814, "time": 0.9454279086802588, "position": { "x": 2, @@ -2076,7 +2076,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.03125381516298376, @@ -2099,7 +2099,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.04688072274447565, @@ -2122,7 +2122,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.04688072274447565, @@ -2145,7 +2145,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 384, "time": 0.06250763032596753, @@ -2168,9 +2168,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, + "noteOrder": 769, "time": 0.12501526065193505, "position": { "x": 3, @@ -2190,13 +2190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 816, - "time": 0.132828714442681, + "noteOrder": 793, + "time": 0.12892198754730802, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2208,18 +2208,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 961, - "time": 0.1562690758149188, + "noteOrder": 793, + "time": 0.12892198754730802, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2231,16 +2231,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1009, - "time": 0.16408252960566477, + "noteOrder": 817, + "time": 0.13282871444268102, "position": { "x": 7, "y": 0 @@ -2254,16 +2254,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.17189598339641068, + "noteOrder": 841, + "time": 0.13673544133805396, "position": { "x": 7, "y": 0 @@ -2282,13 +2282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1153, - "time": 0.1875228909779026, + "noteOrder": 841, + "time": 0.13673544133805396, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2300,18 +2300,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1201, - "time": 0.19533634476864853, + "noteOrder": 961, + "time": 0.15626907581491883, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2328,13 +2328,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1249, - "time": 0.20314979855939447, + "noteOrder": 985, + "time": 0.16017580271029178, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2346,18 +2346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1345, - "time": 0.21877670614088635, + "noteOrder": 985, + "time": 0.16017580271029178, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2374,11 +2374,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 1393, - "time": 0.2265901599316323, + "noteOrder": 1009, + "time": 0.16408252960566477, "position": { "x": 7, "y": 0 @@ -2392,18 +2392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1441, - "time": 0.23440361372237822, + "noteOrder": 1033, + "time": 0.16798925650103774, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2420,13 +2420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1489, - "time": 0.2422170675131242, + "noteOrder": 1033, + "time": 0.16798925650103774, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2443,13 +2443,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 2, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1537, - "time": 0.2500305213038701, + "noteOrder": 1057, + "time": 0.17189598339641068, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2461,16 +2461,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1537, - "time": 0.2500305213038701, + "noteOrder": 1081, + "time": 0.17580271029178368, "position": { "x": 7, "y": 0 @@ -2489,11 +2489,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 1, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1585, - "time": 0.25784397509461604, + "noteOrder": 1081, + "time": 0.17580271029178368, "position": { "x": 6, "y": 0 @@ -2512,13 +2512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 2, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, - "time": 0.265657428885362, + "noteOrder": 1153, + "time": 0.1875228909779026, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2530,16 +2530,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1633, - "time": 0.265657428885362, + "noteOrder": 1177, + "time": 0.19142961787327556, "position": { "x": 3, "y": 0 @@ -2558,11 +2558,34 @@ "isPlayAudio": false }, { - "lineGroupId": 40, + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1177, + "time": 0.19142961787327556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.2734708826761079, + "noteOrder": 1201, + "time": 0.19533634476864853, "position": { "x": 3, "y": 0 @@ -2576,18 +2599,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1729, - "time": 0.28128433646685386, + "noteOrder": 1225, + "time": 0.1992430716640215, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2604,13 +2627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1777, - "time": 0.28909779025759985, + "noteOrder": 1225, + "time": 0.1992430716640215, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2627,11 +2650,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1777, - "time": 0.28909779025759985, + "noteOrder": 1249, + "time": 0.20314979855939447, "position": { "x": 3, "y": 0 @@ -2650,11 +2673,11 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.2969112440483458, + "noteOrder": 1273, + "time": 0.20705652545476744, "position": { "x": 3, "y": 0 @@ -2673,13 +2696,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1825, - "time": 0.2969112440483458, + "noteOrder": 1273, + "time": 0.20705652545476744, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2691,18 +2714,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, + "lineGroupId": 33, "indexInLine": 1, "isSliding": false, - "noteOrder": 1921, - "time": 0.3125381516298376, + "noteOrder": 1345, + "time": 0.21877670614088635, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2719,13 +2742,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1921, - "time": 0.3125381516298376, + "noteOrder": 1393, + "time": 0.22659015993163228, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2737,16 +2760,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 1969, - "time": 0.3203516054205836, + "noteOrder": 1441, + "time": 0.23440361372237825, "position": { "x": 3, "y": 0 @@ -2765,13 +2788,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, - "time": 0.3203516054205836, + "noteOrder": 1489, + "time": 0.24221706751312416, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2783,18 +2806,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.32816505921132955, + "noteOrder": 1538, + "time": 0.2500305213038701, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2806,18 +2829,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.32816505921132955, + "noteOrder": 1538, + "time": 0.2500305213038701, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2829,18 +2852,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2113, - "time": 0.34379196679282137, + "noteOrder": 1586, + "time": 0.25784397509461604, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2852,18 +2875,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2113, - "time": 0.34379196679282137, + "noteOrder": 1634, + "time": 0.26565742888536203, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2880,11 +2903,11 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2161, - "time": 0.35160542058356736, + "noteOrder": 1634, + "time": 0.26565742888536203, "position": { "x": 3, "y": 0 @@ -2903,11 +2926,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2305, - "time": 0.3750457819558052, + "noteOrder": 1682, + "time": 0.2734708826761079, "position": { "x": 3, "y": 0 @@ -2926,11 +2949,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.38285923574655106, + "noteOrder": 1730, + "time": 0.2812843364668539, "position": { "x": 7, "y": 0 @@ -2949,13 +2972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2401, - "time": 0.39067268953729706, + "noteOrder": 1778, + "time": 0.2890977902575998, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2967,16 +2990,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 2449, - "time": 0.398486143328043, + "noteOrder": 1778, + "time": 0.2890977902575998, "position": { "x": 3, "y": 0 @@ -2995,13 +3018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2497, - "time": 0.40629959711878894, + "noteOrder": 1826, + "time": 0.29691124404834573, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3018,13 +3041,818 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 48, "indexInLine": 1, "isSliding": false, - "noteOrder": 2545, - "time": 0.4141130509095349, + "noteOrder": 1826, + "time": 0.29691124404834573, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1922, + "time": 0.31253815162983767, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, + "time": 0.31253815162983767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1970, + "time": 0.32035160542058355, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1970, + "time": 0.32035160542058355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2018, + "time": 0.32816505921132955, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.32816505921132955, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2114, + "time": 0.34379196679282137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.34379196679282137, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3476986936881944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2138, + "time": 0.3476986936881944, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.35160542058356736, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3555121474789403, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3555121474789403, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.3750457819558052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37895250885117815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.37895250885117815, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2354, + "time": 0.3828592357465511, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3867659626419241, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2378, + "time": 0.3867659626419241, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.39067268953729706, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2450, + "time": 0.398486143328043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2498, + "time": 0.40629959711878894, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2547, + "time": 0.4141130509095349, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42192650470028087, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.42192650470028087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2643, + "time": 0.42973995849102675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2691, + "time": 0.4375534122817727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.4375534122817727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2787, + "time": 0.45318031986326457, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.45318031986326457, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4688072274447565, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2883, + "time": 0.4688072274447565, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.47662068123550244, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2931, + "time": 0.47662068123550244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2979, + "time": 0.4844341350262483, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3036,18 +3864,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 2, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.4219265047002808, + "noteOrder": 2979, + "time": 0.4844341350262483, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3064,13 +3892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2594, - "time": 0.4219265047002808, + "noteOrder": 3027, + "time": 0.4922475888169943, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3082,18 +3910,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2642, - "time": 0.42973995849102675, + "noteOrder": 3075, + "time": 0.5000610426077402, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3110,13 +3938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, + "lineGroupId": 85, "indexInLine": 2, "isSliding": false, - "noteOrder": 2690, - "time": 0.4375534122817727, + "noteOrder": 3123, + "time": 0.5078744963984861, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3133,13 +3961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2690, - "time": 0.4375534122817727, + "noteOrder": 3123, + "time": 0.5078744963984861, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3156,13 +3984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2786, - "time": 0.4531803198632646, + "noteOrder": 3171, + "time": 0.5156879501892321, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3179,13 +4007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2786, - "time": 0.4531803198632646, + "noteOrder": 3171, + "time": 0.5156879501892321, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3202,11 +4030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2882, - "time": 0.46880722744475645, + "noteOrder": 3219, + "time": 0.523501403979978, "position": { "x": 6, "y": 0 @@ -3225,13 +4053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2882, - "time": 0.46880722744475645, + "noteOrder": 4324, + "time": 0.7032108411671347, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3248,13 +4076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2930, - "time": 0.4766206812355024, + "noteOrder": 4372, + "time": 0.7110242949578806, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3271,13 +4099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2930, - "time": 0.4766206812355024, + "noteOrder": 4420, + "time": 0.7188377487486266, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3294,13 +4122,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, - "time": 0.4844341350262484, + "noteOrder": 4468, + "time": 0.7266512025393725, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3317,13 +4145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2978, - "time": 0.4844341350262484, + "noteOrder": 4468, + "time": 0.7266512025393725, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3340,11 +4168,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3026, - "time": 0.4922475888169943, + "noteOrder": 4516, + "time": 0.7344646563301185, "position": { "x": 4, "y": 0 @@ -3363,11 +4191,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, - "time": 0.5000610426077402, + "noteOrder": 4516, + "time": 0.7344646563301185, "position": { "x": 7, "y": 0 @@ -3386,11 +4214,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.5078744963984861, + "noteOrder": 4540, + "time": 0.7383713832254915, "position": { "x": 7, "y": 0 @@ -3409,13 +4237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3122, - "time": 0.5078744963984861, + "noteOrder": 4540, + "time": 0.7383713832254915, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3427,18 +4255,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 141, "indexInLine": 1, "isSliding": false, - "noteOrder": 3170, - "time": 0.5156879501892321, + "noteOrder": 4613, + "time": 0.7500915639116104, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3455,13 +4283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3170, - "time": 0.5156879501892321, + "noteOrder": 4661, + "time": 0.7579050177023563, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3473,16 +4301,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, - "time": 0.523501403979978, + "noteOrder": 4661, + "time": 0.7579050177023563, "position": { "x": 6, "y": 0 @@ -3501,13 +4329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4323, - "time": 0.7032108411671347, + "noteOrder": 4709, + "time": 0.7657184714931022, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3519,18 +4347,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 4371, - "time": 0.7110242949578807, + "noteOrder": 4757, + "time": 0.7735319252838482, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3547,13 +4375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4419, - "time": 0.7188377487486266, + "noteOrder": 4805, + "time": 0.7813453790745941, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3565,18 +4393,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 148, "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.7266512025393725, + "noteOrder": 4805, + "time": 0.7813453790745941, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3593,13 +4421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4467, - "time": 0.7266512025393725, + "noteOrder": 4829, + "time": 0.7852521059699671, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3611,18 +4439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4515, - "time": 0.7344646563301185, + "noteOrder": 4829, + "time": 0.7852521059699671, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3634,18 +4462,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4515, - "time": 0.7344646563301185, + "noteOrder": 4901, + "time": 0.796972286656086, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3657,18 +4485,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4611, - "time": 0.7500915639116104, + "noteOrder": 4925, + "time": 0.8008790135514591, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3685,11 +4513,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4659, - "time": 0.7579050177023563, + "noteOrder": 4925, + "time": 0.8008790135514591, "position": { "x": 4, "y": 0 @@ -3708,13 +4536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4659, - "time": 0.7579050177023563, + "noteOrder": 4949, + "time": 0.8047857404468319, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3731,13 +4559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4707, - "time": 0.7657184714931021, + "noteOrder": 4973, + "time": 0.8086924673422049, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3754,13 +4582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4755, - "time": 0.7735319252838482, + "noteOrder": 4973, + "time": 0.8086924673422049, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3772,16 +4600,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 4803, - "time": 0.7813453790745941, + "noteOrder": 4997, + "time": 0.8125991942375779, "position": { "x": 3, "y": 0 @@ -3800,13 +4628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4803, - "time": 0.7813453790745941, + "noteOrder": 5021, + "time": 0.8165059211329508, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3818,18 +4646,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.796972286656086, + "noteOrder": 5021, + "time": 0.8165059211329508, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3846,13 +4674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4947, - "time": 0.8047857404468319, + "noteOrder": 5093, + "time": 0.8282261018190697, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3869,13 +4697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4995, - "time": 0.8125991942375779, + "noteOrder": 5117, + "time": 0.8321328287144427, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3887,18 +4715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5091, - "time": 0.8282261018190697, + "noteOrder": 5117, + "time": 0.8321328287144427, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3916,10 +4744,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5139, - "time": 0.8360395556098158, + "noteOrder": 5141, + "time": 0.8360395556098157, "position": { "x": 5, "y": 0 @@ -3939,10 +4767,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5187, - "time": 0.8438530094005616, + "noteOrder": 5189, + "time": 0.8438530094005617, "position": { "x": 5, "y": 0 @@ -3962,10 +4790,10 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5835, - "time": 0.9493346355756319, + "noteOrder": 5838, + "time": 0.9493346355756318, "position": { "x": 5, "y": 0 @@ -3985,10 +4813,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5956, - "time": 0.9688682700524968, + "noteOrder": 5958, + "time": 0.9688682700524966, "position": { "x": 5, "y": 0 diff --git a/tracks/Warpstep/info.json b/tracks/Warpstep/info.json index bbd9dfc1..a21d288b 100644 --- a/tracks/Warpstep/info.json +++ b/tracks/Warpstep/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Warpstep", - "SongLength": "128.208980", + "SongLength": "118.256327", "SongAuthorName": "DJ Shimamura", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1a.json b/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1a.json index 189788ca..d5510548 100644 --- a/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1a.json +++ b/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 147, - "time": 0.026785714285714284, + "time": 0.026785714285714288, "position": { "x": 7, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 244, + "noteOrder": 245, "time": 0.044642857142857144, "position": { "x": 5, @@ -174,7 +174,7 @@ }, { "noteOrder": 293, - "time": 0.05357142857142857, + "time": 0.053571428571428575, "position": { "x": 4, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 367, - "time": 0.06696428571428571, + "time": 0.06696428571428573, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 415, - "time": 0.07589285714285714, + "noteOrder": 416, + "time": 0.07589285714285715, "position": { "x": 5, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 464, + "noteOrder": 465, "time": 0.08482142857142858, "position": { "x": 5, @@ -374,7 +374,7 @@ }, { "noteOrder": 562, - "time": 0.10267857142857142, + "time": 0.10267857142857144, "position": { "x": 6, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 636, "time": 0.11607142857142858, "position": { "x": 4, @@ -494,7 +494,7 @@ }, { "noteOrder": 831, - "time": 0.15178571428571427, + "time": 0.1517857142857143, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 904, - "time": 0.16517857142857142, + "noteOrder": 905, + "time": 0.16517857142857145, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 953, - "time": 0.17410714285714285, + "noteOrder": 954, + "time": 0.17410714285714288, "position": { "x": 7, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1002, - "time": 0.18303571428571427, + "time": 0.1830357142857143, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1026, + "noteOrder": 1027, "time": 0.1875, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 1051, - "time": 0.19196428571428573, + "time": 0.1919642857142857, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1100, - "time": 0.20089285714285715, + "time": 0.20089285714285712, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1124, - "time": 0.20535714285714285, + "noteOrder": 1125, + "time": 0.20535714285714288, "position": { "x": 2, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1149, - "time": 0.20982142857142858, + "time": 0.2098214285714286, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1173, - "time": 0.21428571428571427, + "noteOrder": 1174, + "time": 0.2142857142857143, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1198, - "time": 0.21875, + "time": 0.21875000000000003, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1295, - "time": 0.23660714285714285, + "noteOrder": 1296, + "time": 0.23660714285714288, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1344, - "time": 0.24553571428571427, + "noteOrder": 1345, + "time": 0.2455357142857143, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.25446428571428575, + "noteOrder": 1394, + "time": 0.2544642857142857, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.26339285714285715, "position": { "x": 7, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1515, - "time": 0.27678571428571425, + "noteOrder": 1516, + "time": 0.2767857142857143, "position": { "x": 8, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.28571428571428575, "position": { "x": 3, @@ -934,7 +934,7 @@ }, { "noteOrder": 1589, - "time": 0.2901785714285714, + "time": 0.29017857142857145, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1784, + "noteOrder": 1785, "time": 0.32589285714285715, "position": { "x": 7, @@ -994,7 +994,7 @@ }, { "noteOrder": 1809, - "time": 0.33035714285714285, + "time": 0.3303571428571429, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1821, + "noteOrder": 1822, "time": 0.3325892857142857, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1833, - "time": 0.33482142857142855, + "noteOrder": 1834, + "time": 0.3348214285714286, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1955, + "noteOrder": 1956, "time": 0.35714285714285715, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2151, + "noteOrder": 2152, "time": 0.39285714285714285, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2175, + "noteOrder": 2176, "time": 0.39732142857142855, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.4017857142857143, + "noteOrder": 2201, + "time": 0.40178571428571425, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2212, + "noteOrder": 2213, "time": 0.40401785714285715, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2224, - "time": 0.40625, + "noteOrder": 2225, + "time": 0.40625000000000006, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2346, - "time": 0.42857142857142855, + "noteOrder": 2347, + "time": 0.4285714285714286, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2371, + "noteOrder": 2372, "time": 0.4330357142857143, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2493, - "time": 0.45535714285714285, + "noteOrder": 2494, + "time": 0.4553571428571429, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2543, "time": 0.4642857142857143, "position": { "x": 8, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.4732142857142857, + "noteOrder": 2592, + "time": 0.47321428571428575, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2688, - "time": 0.49107142857142855, + "noteOrder": 2690, + "time": 0.4910714285714286, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.5, "position": { "x": 2, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2786, - "time": 0.5089285714285715, + "noteOrder": 2787, + "time": 0.5089285714285714, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.5267857142857143, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.5267857142857143, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5357142857142857, + "noteOrder": 2934, + "time": 0.5357142857142858, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5357142857142857, + "noteOrder": 2934, + "time": 0.5357142857142858, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2982, + "noteOrder": 2983, "time": 0.5446428571428572, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3006, - "time": 0.5491071428571428, + "noteOrder": 3007, + "time": 0.5491071428571429, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3079, + "noteOrder": 3081, "time": 0.5625, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3128, + "noteOrder": 3130, "time": 0.5714285714285715, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5803571428571428, + "noteOrder": 3179, + "time": 0.5803571428571429, "position": { "x": 6, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3202, - "time": 0.5848214285714285, + "noteOrder": 3203, + "time": 0.5848214285714286, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3519, + "noteOrder": 3521, "time": 0.6428571428571429, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6473214285714286, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3568, + "noteOrder": 3570, "time": 0.6517857142857143, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3739, + "noteOrder": 3741, "time": 0.6830357142857143, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3764, + "noteOrder": 3765, "time": 0.6875, "position": { "x": 5, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3788, + "noteOrder": 3790, "time": 0.6919642857142857, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 3912, "time": 0.7142857142857143, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3935, - "time": 0.71875, + "noteOrder": 3937, + "time": 0.7187500000000001, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4130, - "time": 0.7544642857142857, + "noteOrder": 4132, + "time": 0.7544642857142858, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4155, + "noteOrder": 4157, "time": 0.7589285714285714, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4179, - "time": 0.7633928571428571, + "noteOrder": 4181, + "time": 0.7633928571428572, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4301, + "noteOrder": 4303, "time": 0.7857142857142857, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4326, - "time": 0.7901785714285714, + "noteOrder": 4328, + "time": 0.7901785714285715, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.8035714285714286, + "noteOrder": 4401, + "time": 0.8035714285714285, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4424, + "noteOrder": 4426, "time": 0.8080357142857143, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4448, - "time": 0.8125, + "noteOrder": 4450, + "time": 0.8125000000000001, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.8169642857142857, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4497, - "time": 0.8214285714285714, + "noteOrder": 4499, + "time": 0.8214285714285715, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4521, - "time": 0.8258928571428571, + "noteOrder": 4523, + "time": 0.8258928571428572, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4595, - "time": 0.8392857142857143, + "noteOrder": 4597, + "time": 0.8392857142857144, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.84375, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4644, - "time": 0.8482142857142857, + "noteOrder": 4646, + "time": 0.8482142857142858, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.8504464285714285, + "noteOrder": 4658, + "time": 0.8504464285714286, "position": { "x": 3, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4670, "time": 0.8526785714285714, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4692, - "time": 0.8571428571428571, + "noteOrder": 4695, + "time": 0.8571428571428572, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4719, "time": 0.8616071428571429, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4790, - "time": 0.875, + "noteOrder": 4792, + "time": 0.8750000000000001, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 4817, "time": 0.8794642857142857, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4888, + "noteOrder": 4890, "time": 0.8928571428571429, "position": { "x": 3, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4915, "time": 0.8973214285714286, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4915, "time": 0.8973214285714286, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4937, + "noteOrder": 4939, "time": 0.9017857142857143, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4949, + "noteOrder": 4951, "time": 0.9040178571428572, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4961, + "noteOrder": 4963, "time": 0.90625, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5132, + "noteOrder": 5135, "time": 0.9375, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5145, - "time": 0.9397321428571428, + "noteOrder": 5147, + "time": 0.9397321428571429, "position": { "x": 5, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5157, - "time": 0.9419642857142857, + "noteOrder": 5159, + "time": 0.9419642857142858, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5169, - "time": 0.9441964285714285, + "noteOrder": 5171, + "time": 0.9441964285714286, "position": { "x": 5, "y": 0 @@ -2316,7 +2316,7 @@ "lineNodes": [ { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 489, "time": 0.08928571428571429, @@ -2339,10 +2339,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 587, - "time": 0.10714285714285714, + "time": 0.10714285714285715, "position": { "x": 5, "y": 0 @@ -2362,10 +2362,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 587, - "time": 0.10714285714285714, + "time": 0.10714285714285715, "position": { "x": 7, "y": 0 @@ -2385,9 +2385,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 684, + "noteOrder": 685, "time": 0.125, "position": { "x": 5, @@ -2408,9 +2408,9 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 684, + "noteOrder": 685, "time": 0.125, "position": { "x": 3, @@ -2430,13 +2430,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 709, - "time": 0.1294642857142857, + "noteOrder": 697, + "time": 0.12723214285714285, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2448,18 +2448,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 733, - "time": 0.13392857142857142, + "noteOrder": 697, + "time": 0.12723214285714285, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2476,11 +2476,11 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 758, - "time": 0.13839285714285712, + "noteOrder": 709, + "time": 0.1294642857142857, "position": { "x": 7, "y": 0 @@ -2499,13 +2499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 880, - "time": 0.16071428571428573, + "noteOrder": 721, + "time": 0.13169642857142858, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2517,18 +2517,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 978, - "time": 0.17857142857142858, + "noteOrder": 721, + "time": 0.13169642857142858, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2540,18 +2540,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 978, - "time": 0.17857142857142858, + "noteOrder": 734, + "time": 0.13392857142857145, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2563,18 +2563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1075, - "time": 0.19642857142857142, + "noteOrder": 746, + "time": 0.1361607142857143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2586,16 +2586,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1075, - "time": 0.19642857142857142, + "noteOrder": 746, + "time": 0.1361607142857143, "position": { "x": 4, "y": 0 @@ -2614,13 +2614,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, + "lineGroupId": 30, "indexInLine": 1, "isSliding": false, - "noteOrder": 1173, - "time": 0.21428571428571427, + "noteOrder": 758, + "time": 0.13839285714285715, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2632,16 +2632,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1222, - "time": 0.22321428571428573, + "noteOrder": 770, + "time": 0.140625, "position": { "x": 7, "y": 0 @@ -2660,13 +2660,36 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1246, - "time": 0.22767857142857142, + "noteOrder": 770, + "time": 0.140625, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 880, + "time": 0.16071428571428573, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -2683,13 +2706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1271, - "time": 0.23214285714285715, + "noteOrder": 978, + "time": 0.17857142857142858, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2701,16 +2724,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 40, "indexInLine": 1, "isSliding": false, - "noteOrder": 1369, - "time": 0.25, + "noteOrder": 978, + "time": 0.17857142857142858, "position": { "x": 7, "y": 0 @@ -2729,13 +2752,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1369, - "time": 0.25, + "noteOrder": 1076, + "time": 0.19642857142857142, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2747,18 +2770,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, - "time": 0.26785714285714285, + "noteOrder": 1076, + "time": 0.19642857142857142, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2775,13 +2798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.26785714285714285, + "noteOrder": 1174, + "time": 0.2142857142857143, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2793,16 +2816,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 1564, - "time": 0.28571428571428575, + "noteOrder": 1223, + "time": 0.22321428571428573, "position": { "x": 7, "y": 0 @@ -2821,13 +2844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1613, - "time": 0.29464285714285715, + "noteOrder": 1235, + "time": 0.22544642857142858, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2839,18 +2862,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1637, - "time": 0.29910714285714285, + "noteOrder": 1235, + "time": 0.22544642857142858, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2867,11 +2890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1662, - "time": 0.30357142857142855, + "noteOrder": 1247, + "time": 0.22767857142857145, "position": { "x": 3, "y": 0 @@ -2890,11 +2913,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1686, - "time": 0.3080357142857143, + "noteOrder": 1259, + "time": 0.2299107142857143, "position": { "x": 3, "y": 0 @@ -2908,18 +2931,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1711, - "time": 0.3125, + "noteOrder": 1259, + "time": 0.2299107142857143, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2936,13 +2959,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1735, - "time": 0.3169642857142857, + "noteOrder": 1271, + "time": 0.23214285714285715, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2959,13 +2982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1857, - "time": 0.3392857142857143, + "noteOrder": 1369, + "time": 0.25, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2977,16 +3000,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1882, - "time": 0.34375, + "noteOrder": 1369, + "time": 0.25, "position": { "x": 3, "y": 0 @@ -3000,16 +3023,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, - "time": 0.3482142857142857, + "noteOrder": 1467, + "time": 0.2678571428571429, "position": { "x": 3, "y": 0 @@ -3028,13 +3051,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1931, - "time": 0.35267857142857145, + "noteOrder": 1467, + "time": 0.2678571428571429, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3051,11 +3074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2004, - "time": 0.36607142857142855, + "noteOrder": 1565, + "time": 0.28571428571428575, "position": { "x": 7, "y": 0 @@ -3074,11 +3097,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2029, - "time": 0.3705357142857143, + "noteOrder": 1614, + "time": 0.29464285714285715, "position": { "x": 3, "y": 0 @@ -3097,13 +3120,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2053, - "time": 0.375, + "noteOrder": 1626, + "time": 0.296875, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3115,18 +3138,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2077, - "time": 0.3794642857142857, + "noteOrder": 1626, + "time": 0.296875, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3143,11 +3166,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2102, - "time": 0.38392857142857145, + "noteOrder": 1638, + "time": 0.29910714285714285, "position": { "x": 7, "y": 0 @@ -3166,11 +3189,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2126, - "time": 0.38839285714285715, + "noteOrder": 1650, + "time": 0.3013392857142857, "position": { "x": 7, "y": 0 @@ -3184,18 +3207,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2248, - "time": 0.4107142857142857, + "noteOrder": 1650, + "time": 0.3013392857142857, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3212,13 +3235,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2273, - "time": 0.41517857142857145, + "noteOrder": 1663, + "time": 0.3035714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3235,13 +3258,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2297, - "time": 0.41964285714285715, + "noteOrder": 1675, + "time": 0.30580357142857145, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3253,18 +3276,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2322, - "time": 0.42410714285714285, + "noteOrder": 1675, + "time": 0.30580357142857145, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3281,13 +3304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2395, - "time": 0.4375, + "noteOrder": 1687, + "time": 0.3080357142857143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3304,11 +3327,11 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2420, - "time": 0.4419642857142857, + "noteOrder": 1699, + "time": 0.31026785714285715, "position": { "x": 3, "y": 0 @@ -3322,16 +3345,2822 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3226, - "time": 0.5892857142857143, + "noteOrder": 1699, + "time": 0.31026785714285715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1712, + "time": 0.31250000000000006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1724, + "time": 0.31473214285714285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1724, + "time": 0.31473214285714285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1736, + "time": 0.31696428571428575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1748, + "time": 0.31919642857142855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1748, + "time": 0.31919642857142855, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1858, + "time": 0.3392857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1870, + "time": 0.34151785714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1870, + "time": 0.34151785714285715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1883, + "time": 0.34375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1895, + "time": 0.34598214285714285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1895, + "time": 0.34598214285714285, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1907, + "time": 0.34821428571428575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1919, + "time": 0.3504464285714286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1919, + "time": 0.3504464285714286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1932, + "time": 0.35267857142857145, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1944, + "time": 0.35491071428571436, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1944, + "time": 0.35491071428571436, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2005, + "time": 0.3660714285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2017, + "time": 0.36830357142857145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2017, + "time": 0.36830357142857145, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2029, + "time": 0.3705357142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.37276785714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2042, + "time": 0.37276785714285715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2054, + "time": 0.375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3772321428571429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2066, + "time": 0.3772321428571429, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2078, + "time": 0.3794642857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3816964285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2091, + "time": 0.3816964285714286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2103, + "time": 0.3839285714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2115, + "time": 0.3861607142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2115, + "time": 0.3861607142857143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2127, + "time": 0.38839285714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2139, + "time": 0.390625, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2139, + "time": 0.390625, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2249, + "time": 0.41071428571428575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2262, + "time": 0.4129464285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2262, + "time": 0.4129464285714286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2274, + "time": 0.41517857142857145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.4174107142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2286, + "time": 0.4174107142857143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2298, + "time": 0.4196428571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2311, + "time": 0.421875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2311, + "time": 0.421875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2323, + "time": 0.4241071428571429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2335, + "time": 0.4263392857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2335, + "time": 0.4263392857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2396, + "time": 0.43750000000000006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2408, + "time": 0.43973214285714285, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2408, + "time": 0.43973214285714285, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2421, + "time": 0.44196428571428575, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2433, + "time": 0.44419642857142855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2433, + "time": 0.44419642857142855, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3227, + "time": 0.5892857142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3240, + "time": 0.5915178571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3240, + "time": 0.5915178571428572, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3252, + "time": 0.59375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3264, + "time": 0.5959821428571429, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3264, + "time": 0.5959821428571429, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3276, + "time": 0.5982142857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3289, + "time": 0.6004464285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3289, + "time": 0.6004464285714286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3301, + "time": 0.6026785714285714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3313, + "time": 0.6049107142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3313, + "time": 0.6049107142857143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3325, + "time": 0.6071428571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3338, + "time": 0.609375, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3338, + "time": 0.609375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3350, + "time": 0.6116071428571429, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3362, + "time": 0.6138392857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3362, + "time": 0.6138392857142857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3374, + "time": 0.6160714285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3386, + "time": 0.6183035714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3386, + "time": 0.6183035714285715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3399, + "time": 0.6205357142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3411, + "time": 0.6227678571428571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3411, + "time": 0.6227678571428571, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3423, + "time": 0.6250000000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3435, + "time": 0.6272321428571429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3435, + "time": 0.6272321428571429, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3448, + "time": 0.6294642857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6316964285714285, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3460, + "time": 0.6316964285714285, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3472, + "time": 0.6339285714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3484, + "time": 0.6361607142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3484, + "time": 0.6361607142857143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3496, + "time": 0.6383928571428571, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3496, + "time": 0.6383928571428571, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3509, + "time": 0.6406250000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3509, + "time": 0.6406250000000001, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6607142857142858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3631, + "time": 0.6629464285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3631, + "time": 0.6629464285714286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3643, + "time": 0.6651785714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6674107142857144, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6674107142857144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.6696428571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3680, + "time": 0.671875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3680, + "time": 0.671875, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6741071428571428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3704, + "time": 0.6763392857142858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3704, + "time": 0.6763392857142858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3716, + "time": 0.6785714285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3814, + "time": 0.6964285714285715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3814, + "time": 0.6964285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3827, + "time": 0.6986607142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3827, + "time": 0.6986607142857143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3839, + "time": 0.7008928571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3851, + "time": 0.7031250000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3851, + "time": 0.7031250000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3863, + "time": 0.7053571428571429, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3875, + "time": 0.7075892857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3875, + "time": 0.7075892857142857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3888, + "time": 0.7098214285714287, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3900, + "time": 0.7120535714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3900, + "time": 0.7120535714285715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3961, + "time": 0.7232142857142857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3973, + "time": 0.7254464285714286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3973, + "time": 0.7254464285714286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3985, + "time": 0.7276785714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3998, + "time": 0.7299107142857143, "position": { "x": 7, "y": 0 @@ -3350,11 +6179,310 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3998, + "time": 0.7299107142857143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4010, + "time": 0.7321428571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4022, + "time": 0.734375, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4022, + "time": 0.734375, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4034, + "time": 0.7366071428571429, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4047, + "time": 0.7388392857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4047, + "time": 0.7388392857142857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4059, + "time": 0.7410714285714286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4071, + "time": 0.7433035714285714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4071, + "time": 0.7433035714285714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4083, + "time": 0.7455357142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4095, + "time": 0.7477678571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4095, + "time": 0.7477678571428572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3250, - "time": 0.59375, + "noteOrder": 4108, + "time": 0.75, "position": { "x": 3, "y": 0 @@ -3373,13 +6501,289 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3275, - "time": 0.5982142857142857, + "noteOrder": 4206, + "time": 0.7678571428571428, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7678571428571428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7700892857142858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4218, + "time": 0.7700892857142858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4230, + "time": 0.7723214285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4242, + "time": 0.7745535714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4242, + "time": 0.7745535714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4254, + "time": 0.7767857142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4267, + "time": 0.7790178571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4267, + "time": 0.7790178571428572, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4279, + "time": 0.78125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4291, + "time": 0.7834821428571429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4291, + "time": 0.7834821428571429, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3391,18 +6795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3299, - "time": 0.6026785714285714, + "noteOrder": 4352, + "time": 0.7946428571428571, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3414,16 +6818,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3324, - "time": 0.6071428571428571, + "noteOrder": 4364, + "time": 0.7968750000000001, "position": { "x": 7, "y": 0 @@ -3442,13 +6846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3348, - "time": 0.6116071428571429, + "noteOrder": 4364, + "time": 0.7968750000000001, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3460,18 +6864,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3373, - "time": 0.6160714285714286, + "noteOrder": 4377, + "time": 0.7991071428571429, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3483,16 +6887,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3397, - "time": 0.6205357142857143, + "noteOrder": 4389, + "time": 0.8013392857142857, "position": { "x": 3, "y": 0 @@ -3511,13 +6915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3422, - "time": 0.625, + "noteOrder": 4389, + "time": 0.8013392857142857, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3529,18 +6933,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3446, - "time": 0.6294642857142857, + "noteOrder": 4548, + "time": 0.8303571428571429, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3552,16 +6956,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3470, - "time": 0.6339285714285714, + "noteOrder": 4560, + "time": 0.8325892857142858, "position": { "x": 7, "y": 0 @@ -3580,13 +6984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3617, - "time": 0.6607142857142857, + "noteOrder": 4560, + "time": 0.8325892857142858, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3603,13 +7007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3642, - "time": 0.6651785714285714, + "noteOrder": 4572, + "time": 0.8348214285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3626,13 +7030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3666, - "time": 0.6696428571428571, + "noteOrder": 4584, + "time": 0.8370535714285714, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3644,18 +7048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3690, - "time": 0.6741071428571429, + "noteOrder": 4584, + "time": 0.8370535714285714, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3672,13 +7076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3715, - "time": 0.6785714285714286, + "noteOrder": 4743, + "time": 0.8660714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3690,18 +7094,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3813, - "time": 0.6964285714285714, + "noteOrder": 4756, + "time": 0.8683035714285715, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3713,18 +7117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3813, - "time": 0.6964285714285714, + "noteOrder": 4756, + "time": 0.8683035714285715, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3741,13 +7145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3837, - "time": 0.7008928571428571, + "noteOrder": 4768, + "time": 0.8705357142857143, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3764,13 +7168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3861, - "time": 0.7053571428571429, + "noteOrder": 4780, + "time": 0.8727678571428572, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3782,18 +7186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3886, - "time": 0.7098214285714286, + "noteOrder": 4780, + "time": 0.8727678571428572, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3810,13 +7214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3959, - "time": 0.7232142857142857, + "noteOrder": 4841, + "time": 0.8839285714285715, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3833,13 +7237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3984, - "time": 0.7276785714285714, + "noteOrder": 4853, + "time": 0.8861607142857143, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3851,18 +7255,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4008, - "time": 0.7321428571428571, + "noteOrder": 4853, + "time": 0.8861607142857143, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3879,13 +7283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4033, - "time": 0.7366071428571429, + "noteOrder": 4866, + "time": 0.8883928571428571, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3902,13 +7306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4057, - "time": 0.7410714285714286, + "noteOrder": 4878, + "time": 0.8906250000000001, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3920,18 +7324,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4081, - "time": 0.7455357142857143, + "noteOrder": 4878, + "time": 0.8906250000000001, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3948,13 +7352,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4106, - "time": 0.75, + "noteOrder": 4890, + "time": 0.8928571428571429, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3966,18 +7370,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4204, - "time": 0.7678571428571429, + "noteOrder": 4890, + "time": 0.8928571428571429, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3989,16 +7393,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4204, - "time": 0.7678571428571429, + "noteOrder": 4988, + "time": 0.9107142857142858, "position": { "x": 7, "y": 0 @@ -4017,11 +7421,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4228, - "time": 0.7723214285714286, + "noteOrder": 5000, + "time": 0.9129464285714286, "position": { "x": 7, "y": 0 @@ -4035,18 +7439,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4253, - "time": 0.7767857142857143, + "noteOrder": 5000, + "time": 0.9129464285714286, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4063,13 +7467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.78125, + "noteOrder": 5012, + "time": 0.9151785714285714, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4086,13 +7490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4350, - "time": 0.7946428571428571, + "noteOrder": 5025, + "time": 0.9174107142857144, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4104,18 +7508,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4375, - "time": 0.7991071428571429, + "noteOrder": 5025, + "time": 0.9174107142857144, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4132,11 +7536,11 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4546, - "time": 0.8303571428571429, + "noteOrder": 5037, + "time": 0.9196428571428572, "position": { "x": 7, "y": 0 @@ -4155,13 +7559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4570, - "time": 0.8348214285714286, + "noteOrder": 5049, + "time": 0.921875, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4173,18 +7577,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4741, - "time": 0.8660714285714286, + "noteOrder": 5049, + "time": 0.921875, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4196,18 +7600,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4766, - "time": 0.8705357142857143, + "noteOrder": 5061, + "time": 0.9241071428571428, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4219,16 +7623,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4839, - "time": 0.8839285714285714, + "noteOrder": 5074, + "time": 0.9263392857142858, "position": { "x": 3, "y": 0 @@ -4247,13 +7651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4864, - "time": 0.8883928571428571, + "noteOrder": 5074, + "time": 0.9263392857142858, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4265,16 +7669,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4986, - "time": 0.9107142857142857, + "noteOrder": 5086, + "time": 0.9285714285714286, "position": { "x": 7, "y": 0 @@ -4293,13 +7697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5010, - "time": 0.9151785714285714, + "noteOrder": 5098, + "time": 0.9308035714285714, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4311,18 +7715,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5035, - "time": 0.9196428571428571, + "noteOrder": 5098, + "time": 0.9308035714285714, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4339,11 +7743,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5059, - "time": 0.9241071428571429, + "noteOrder": 5110, + "time": 0.9330357142857144, "position": { "x": 3, "y": 0 @@ -4362,13 +7766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5083, - "time": 0.9285714285714286, + "noteOrder": 5122, + "time": 0.9352678571428572, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4380,18 +7784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5108, - "time": 0.9330357142857143, + "noteOrder": 5122, + "time": 0.9352678571428572, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4409,10 +7813,10 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5181, - "time": 0.9464285714285714, + "noteOrder": 5184, + "time": 0.9464285714285715, "position": { "x": 7, "y": 0 @@ -4432,9 +7836,9 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5279, + "noteOrder": 5281, "time": 0.9642857142857143, "position": { "x": 7, diff --git a/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1b.json b/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1b.json index 41026657..85058635 100644 --- a/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1b.json +++ b/tracks/Wicked SPONGEBOB EDITION/330_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 147, - "time": 0.026785714285714284, + "time": 0.026785714285714288, "position": { "x": 3, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 244, + "noteOrder": 245, "time": 0.044642857142857144, "position": { "x": 7, @@ -94,7 +94,7 @@ }, { "noteOrder": 293, - "time": 0.05357142857142857, + "time": 0.053571428571428575, "position": { "x": 3, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 636, "time": 0.11607142857142858, "position": { "x": 3, @@ -254,7 +254,7 @@ }, { "noteOrder": 831, - "time": 0.15178571428571427, + "time": 0.1517857142857143, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1026, + "noteOrder": 1027, "time": 0.1875, "position": { "x": 3, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1124, - "time": 0.20535714285714285, + "noteOrder": 1125, + "time": 0.20535714285714288, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1222, + "noteOrder": 1223, "time": 0.22321428571428573, "position": { "x": 3, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1246, - "time": 0.22767857142857142, + "noteOrder": 1247, + "time": 0.22767857142857145, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1515, - "time": 0.27678571428571425, + "noteOrder": 1516, + "time": 0.2767857142857143, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1613, + "noteOrder": 1614, "time": 0.29464285714285715, "position": { "x": 3, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1637, + "noteOrder": 1638, "time": 0.29910714285714285, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1711, - "time": 0.3125, + "noteOrder": 1712, + "time": 0.31250000000000006, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1735, - "time": 0.3169642857142857, + "noteOrder": 1736, + "time": 0.31696428571428575, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1809, - "time": 0.33035714285714285, + "time": 0.3303571428571429, "position": { "x": 3, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1833, - "time": 0.33482142857142855, + "noteOrder": 1834, + "time": 0.3348214285714286, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1906, - "time": 0.3482142857142857, + "noteOrder": 1907, + "time": 0.34821428571428575, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1931, + "noteOrder": 1932, "time": 0.35267857142857145, "position": { "x": 3, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2102, - "time": 0.38392857142857145, + "noteOrder": 2103, + "time": 0.3839285714285714, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2126, + "noteOrder": 2127, "time": 0.38839285714285715, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.4017857142857143, + "noteOrder": 2201, + "time": 0.40178571428571425, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2224, - "time": 0.40625, + "noteOrder": 2225, + "time": 0.40625000000000006, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2297, - "time": 0.41964285714285715, + "noteOrder": 2298, + "time": 0.4196428571428572, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2322, - "time": 0.42410714285714285, + "noteOrder": 2323, + "time": 0.4241071428571429, "position": { "x": 7, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2493, - "time": 0.45535714285714285, + "noteOrder": 2494, + "time": 0.4553571428571429, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2543, "time": 0.4642857142857143, "position": { "x": 8, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.4732142857142857, + "noteOrder": 2592, + "time": 0.47321428571428575, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2688, - "time": 0.49107142857142855, + "noteOrder": 2690, + "time": 0.4910714285714286, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 2738, "time": 0.5, "position": { "x": 2, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2786, - "time": 0.5089285714285715, + "noteOrder": 2787, + "time": 0.5089285714285714, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.5267857142857143, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2884, + "noteOrder": 2885, "time": 0.5267857142857143, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5357142857142857, + "noteOrder": 2934, + "time": 0.5357142857142858, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2933, - "time": 0.5357142857142857, + "noteOrder": 2934, + "time": 0.5357142857142858, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2982, + "noteOrder": 2983, "time": 0.5446428571428572, "position": { "x": 8, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3006, - "time": 0.5491071428571428, + "noteOrder": 3007, + "time": 0.5491071428571429, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3079, + "noteOrder": 3081, "time": 0.5625, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3128, + "noteOrder": 3130, "time": 0.5714285714285715, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3177, - "time": 0.5803571428571428, + "noteOrder": 3179, + "time": 0.5803571428571429, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3519, + "noteOrder": 3521, "time": 0.6428571428571429, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6473214285714286, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3568, + "noteOrder": 3570, "time": 0.6517857142857143, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3861, + "noteOrder": 3863, "time": 0.7053571428571429, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3886, - "time": 0.7098214285714286, + "noteOrder": 3888, + "time": 0.7098214285714287, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4253, + "noteOrder": 4254, "time": 0.7767857142857143, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4277, + "noteOrder": 4279, "time": 0.78125, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.8035714285714286, + "noteOrder": 4401, + "time": 0.8035714285714285, "position": { "x": 7, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4424, + "noteOrder": 4426, "time": 0.8080357142857143, "position": { "x": 7, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4448, - "time": 0.8125, + "noteOrder": 4450, + "time": 0.8125000000000001, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4472, + "noteOrder": 4474, "time": 0.8169642857142857, "position": { "x": 7, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4497, - "time": 0.8214285714285714, + "noteOrder": 4499, + "time": 0.8214285714285715, "position": { "x": 3, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4521, - "time": 0.8258928571428571, + "noteOrder": 4523, + "time": 0.8258928571428572, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4546, + "noteOrder": 4548, "time": 0.8303571428571429, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4570, + "noteOrder": 4572, "time": 0.8348214285714286, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4595, - "time": 0.8392857142857143, + "noteOrder": 4597, + "time": 0.8392857142857144, "position": { "x": 6, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4621, "time": 0.84375, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4644, - "time": 0.8482142857142857, + "noteOrder": 4646, + "time": 0.8482142857142858, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4670, "time": 0.8526785714285714, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4719, "time": 0.8616071428571429, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.8705357142857143, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 4817, "time": 0.8794642857142857, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4864, + "noteOrder": 4866, "time": 0.8883928571428571, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5083, + "noteOrder": 5086, "time": 0.9285714285714286, "position": { "x": 7, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5108, - "time": 0.9330357142857143, + "noteOrder": 5110, + "time": 0.9330357142857144, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5132, + "noteOrder": 5135, "time": 0.9375, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5157, - "time": 0.9419642857142857, + "noteOrder": 5159, + "time": 0.9419642857142858, "position": { "x": 4, "y": 0 @@ -1556,7 +1556,7 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 489, "time": 0.08928571428571429, @@ -1579,10 +1579,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 587, - "time": 0.10714285714285714, + "time": 0.10714285714285715, "position": { "x": 3, "y": 0 @@ -1602,10 +1602,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 587, - "time": 0.10714285714285714, + "time": 0.10714285714285715, "position": { "x": 7, "y": 0 @@ -1625,9 +1625,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 684, + "noteOrder": 685, "time": 0.125, "position": { "x": 7, @@ -1648,9 +1648,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 684, + "noteOrder": 685, "time": 0.125, "position": { "x": 3, @@ -1669,12 +1669,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 709, + "time": 0.1294642857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 709, + "time": 0.1294642857142857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 734, + "time": 0.13392857142857145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 733, - "time": 0.13392857142857142, + "noteOrder": 758, + "time": 0.13839285714285715, "position": { "x": 7, "y": 0 @@ -1692,9 +1761,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 758, + "time": 0.13839285714285715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 880, "time": 0.16071428571428573, @@ -1717,7 +1809,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 978, "time": 0.17857142857142858, @@ -1740,7 +1832,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 978, "time": 0.17857142857142858, @@ -1763,9 +1855,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1075, + "noteOrder": 1076, "time": 0.19642857142857142, "position": { "x": 7, @@ -1786,9 +1878,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1075, + "noteOrder": 1076, "time": 0.19642857142857142, "position": { "x": 3, @@ -1809,10 +1901,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1173, - "time": 0.21428571428571427, + "noteOrder": 1174, + "time": 0.2142857142857143, "position": { "x": 3, "y": 0 @@ -1832,10 +1924,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1173, - "time": 0.21428571428571427, + "noteOrder": 1174, + "time": 0.2142857142857143, "position": { "x": 7, "y": 0 @@ -1855,7 +1947,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1271, "time": 0.23214285714285715, @@ -1878,7 +1970,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1271, "time": 0.23214285714285715, @@ -1901,7 +1993,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1369, "time": 0.25, @@ -1924,7 +2016,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1369, "time": 0.25, @@ -1947,10 +2039,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.26785714285714285, + "noteOrder": 1467, + "time": 0.2678571428571429, "position": { "x": 7, "y": 0 @@ -1970,10 +2062,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1466, - "time": 0.26785714285714285, + "noteOrder": 1467, + "time": 0.2678571428571429, "position": { "x": 3, "y": 0 @@ -1993,9 +2085,9 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.28571428571428575, "position": { "x": 3, @@ -2016,9 +2108,9 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1564, + "noteOrder": 1565, "time": 0.28571428571428575, "position": { "x": 7, @@ -2039,10 +2131,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1662, - "time": 0.30357142857142855, + "noteOrder": 1663, + "time": 0.3035714285714286, "position": { "x": 7, "y": 0 @@ -2062,10 +2154,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1662, - "time": 0.30357142857142855, + "noteOrder": 1663, + "time": 0.3035714285714286, "position": { "x": 3, "y": 0 @@ -2085,10 +2177,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1711, - "time": 0.3125, + "noteOrder": 1712, + "time": 0.31250000000000006, "position": { "x": 3, "y": 0 @@ -2108,7 +2200,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1760, "time": 0.32142857142857145, @@ -2131,10 +2223,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1809, - "time": 0.33035714285714285, + "time": 0.3303571428571429, "position": { "x": 7, "y": 0 @@ -2154,9 +2246,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1857, + "noteOrder": 1858, "time": 0.3392857142857143, "position": { "x": 3, @@ -2177,10 +2269,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, - "time": 0.3482142857142857, + "noteOrder": 1907, + "time": 0.34821428571428575, "position": { "x": 3, "y": 0 @@ -2200,9 +2292,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1955, + "noteOrder": 1956, "time": 0.35714285714285715, "position": { "x": 7, @@ -2222,13 +2314,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2004, - "time": 0.36607142857142855, + "noteOrder": 1980, + "time": 0.36160714285714285, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2240,18 +2332,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2053, - "time": 0.375, + "noteOrder": 1980, + "time": 0.36160714285714285, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2268,13 +2360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 48, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 2151, - "time": 0.39285714285714285, + "noteOrder": 2005, + "time": 0.3660714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2286,16 +2378,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2151, - "time": 0.39285714285714285, + "noteOrder": 2029, + "time": 0.3705357142857143, "position": { "x": 3, "y": 0 @@ -2314,13 +2406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2248, - "time": 0.4107142857142857, + "noteOrder": 2029, + "time": 0.3705357142857143, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2337,11 +2429,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2248, - "time": 0.4107142857142857, + "noteOrder": 2054, + "time": 0.375, "position": { "x": 7, "y": 0 @@ -2360,11 +2452,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2297, - "time": 0.41964285714285715, + "noteOrder": 2152, + "time": 0.39285714285714285, "position": { "x": 7, "y": 0 @@ -2383,11 +2475,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2346, - "time": 0.42857142857142855, + "noteOrder": 2152, + "time": 0.39285714285714285, "position": { "x": 3, "y": 0 @@ -2406,13 +2498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2395, - "time": 0.4375, + "noteOrder": 2249, + "time": 0.41071428571428575, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2424,16 +2516,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3226, - "time": 0.5892857142857143, + "noteOrder": 2249, + "time": 0.41071428571428575, "position": { "x": 7, "y": 0 @@ -2452,13 +2544,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3275, - "time": 0.5982142857142857, + "noteOrder": 2298, + "time": 0.4196428571428572, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2470,18 +2562,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3324, - "time": 0.6071428571428571, + "noteOrder": 2347, + "time": 0.4285714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2493,16 +2585,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3373, - "time": 0.6160714285714286, + "noteOrder": 2372, + "time": 0.4330357142857143, "position": { "x": 3, "y": 0 @@ -2521,13 +2613,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3422, - "time": 0.625, + "noteOrder": 2372, + "time": 0.4330357142857143, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2539,18 +2631,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3470, - "time": 0.6339285714285714, + "noteOrder": 2396, + "time": 0.43750000000000006, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2562,16 +2654,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3617, - "time": 0.6607142857142857, + "noteOrder": 2421, + "time": 0.44196428571428575, "position": { "x": 7, "y": 0 @@ -2590,13 +2682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3666, - "time": 0.6696428571428571, + "noteOrder": 2421, + "time": 0.44196428571428575, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2608,16 +2700,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3715, - "time": 0.6785714285714286, + "noteOrder": 3227, + "time": 0.5892857142857143, "position": { "x": 7, "y": 0 @@ -2636,11 +2728,11 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3764, - "time": 0.6875, + "noteOrder": 3252, + "time": 0.59375, "position": { "x": 7, "y": 0 @@ -2654,18 +2746,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3813, - "time": 0.6964285714285714, + "noteOrder": 3252, + "time": 0.59375, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2682,13 +2774,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 3861, - "time": 0.7053571428571429, + "noteOrder": 3276, + "time": 0.5982142857142857, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2700,16 +2792,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3910, - "time": 0.7142857142857143, + "noteOrder": 3301, + "time": 0.6026785714285714, "position": { "x": 3, "y": 0 @@ -2728,13 +2820,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3959, - "time": 0.7232142857142857, + "noteOrder": 3301, + "time": 0.6026785714285714, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2746,18 +2838,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4008, - "time": 0.7321428571428571, + "noteOrder": 3325, + "time": 0.6071428571428572, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2769,18 +2861,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4057, - "time": 0.7410714285714286, + "noteOrder": 3350, + "time": 0.6116071428571429, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2797,13 +2889,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4106, - "time": 0.75, + "noteOrder": 3350, + "time": 0.6116071428571429, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2815,16 +2907,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4155, - "time": 0.7589285714285714, + "noteOrder": 3374, + "time": 0.6160714285714286, "position": { "x": 3, "y": 0 @@ -2838,16 +2930,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4204, - "time": 0.7678571428571429, + "noteOrder": 3399, + "time": 0.6205357142857143, "position": { "x": 3, "y": 0 @@ -2866,13 +2958,956 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3399, + "time": 0.6205357142857143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3423, + "time": 0.6250000000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3448, + "time": 0.6294642857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3448, + "time": 0.6294642857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3472, + "time": 0.6339285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3496, + "time": 0.6383928571428571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3496, + "time": 0.6383928571428571, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3619, + "time": 0.6607142857142858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3643, + "time": 0.6651785714285714, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3643, + "time": 0.6651785714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3668, + "time": 0.6696428571428572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6741071428571428, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3692, + "time": 0.6741071428571428, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3716, + "time": 0.6785714285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3741, + "time": 0.6830357142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3741, + "time": 0.6830357142857143, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3765, + "time": 0.6875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3790, + "time": 0.6919642857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3790, + "time": 0.6919642857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3814, + "time": 0.6964285714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3863, + "time": 0.7053571428571429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3912, + "time": 0.7142857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3937, + "time": 0.7187500000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3937, + "time": 0.7187500000000001, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3961, + "time": 0.7232142857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3985, + "time": 0.7276785714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3985, + "time": 0.7276785714285715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4010, + "time": 0.7321428571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4034, + "time": 0.7366071428571429, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4034, + "time": 0.7366071428571429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4059, + "time": 0.7410714285714286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4083, + "time": 0.7455357142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4083, + "time": 0.7455357142857143, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4108, + "time": 0.75, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4132, + "time": 0.7544642857142858, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4132, + "time": 0.7544642857142858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4157, + "time": 0.7589285714285714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4181, + "time": 0.7633928571428572, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4181, + "time": 0.7633928571428572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4206, + "time": 0.7678571428571428, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4254, + "time": 0.7767857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 4253, - "time": 0.7767857142857143, + "noteOrder": 4303, + "time": 0.7857142857142857, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2884,16 +3919,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4301, - "time": 0.7857142857142857, + "noteOrder": 4328, + "time": 0.7901785714285715, "position": { "x": 7, "y": 0 @@ -2911,11 +3946,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7901785714285715, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4350, + "noteOrder": 4352, "time": 0.7946428571428571, "position": { "x": 4, @@ -2934,12 +3992,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4377, + "time": 0.7991071428571429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4377, + "time": 0.7991071428571429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4692, - "time": 0.8571428571428571, + "noteOrder": 4695, + "time": 0.8571428571428572, "position": { "x": 6, "y": 0 @@ -2959,9 +4063,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4717, + "noteOrder": 4719, "time": 0.8616071428571429, "position": { "x": 6, @@ -2982,9 +4086,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4741, + "noteOrder": 4743, "time": 0.8660714285714286, "position": { "x": 3, @@ -3005,9 +4109,9 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4766, + "noteOrder": 4768, "time": 0.8705357142857143, "position": { "x": 3, @@ -3028,10 +4132,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4790, - "time": 0.875, + "noteOrder": 4792, + "time": 0.8750000000000001, "position": { "x": 6, "y": 0 @@ -3051,9 +4155,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4815, + "noteOrder": 4817, "time": 0.8794642857142857, "position": { "x": 6, @@ -3074,10 +4178,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4839, - "time": 0.8839285714285714, + "noteOrder": 4841, + "time": 0.8839285714285715, "position": { "x": 3, "y": 0 @@ -3097,9 +4201,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4864, + "noteOrder": 4866, "time": 0.8883928571428571, "position": { "x": 3, @@ -3120,9 +4224,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4888, + "noteOrder": 4890, "time": 0.8928571428571429, "position": { "x": 7, @@ -3141,11 +4245,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4915, + "time": 0.8973214285714286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4915, + "time": 0.8973214285714286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4937, + "noteOrder": 4939, "time": 0.9017857142857143, "position": { "x": 3, @@ -3164,12 +4314,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4963, + "time": 0.90625, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4963, + "time": 0.90625, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4988, + "time": 0.9107142857142858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4986, - "time": 0.9107142857142857, + "noteOrder": 5012, + "time": 0.9151785714285714, "position": { "x": 7, "y": 0 @@ -3187,12 +4406,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5012, + "time": 0.9151785714285714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5035, - "time": 0.9196428571428571, + "noteOrder": 5037, + "time": 0.9196428571428572, "position": { "x": 3, "y": 0 @@ -3211,11 +4453,34 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5061, + "time": 0.9241071428571428, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5181, - "time": 0.9464285714285714, + "noteOrder": 5061, + "time": 0.9241071428571428, "position": { "x": 4, "y": 0 @@ -3237,7 +4502,30 @@ "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 5279, + "noteOrder": 5184, + "time": 0.9464285714285715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5281, "time": 0.9642857142857143, "position": { "x": 4, @@ -3258,10 +4546,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5181, - "time": 0.9464285714285714, + "noteOrder": 5184, + "time": 0.9464285714285715, "position": { "x": 6, "y": 0 @@ -3281,9 +4569,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5279, + "noteOrder": 5281, "time": 0.9642857142857143, "position": { "x": 6, diff --git a/tracks/Wicked SPONGEBOB EDITION/info.json b/tracks/Wicked SPONGEBOB EDITION/info.json index eee28e57..1752d9cf 100644 --- a/tracks/Wicked SPONGEBOB EDITION/info.json +++ b/tracks/Wicked SPONGEBOB EDITION/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Wicked SPONGEBOB EDITION", - "SongLength": "116.924082", + "SongLength": "106.971429", "SongAuthorName": "Hommarju", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/Without Words/350_difficulty_1a.json b/tracks/Without Words/350_difficulty_1a.json index fc95bc71..f8a6b909 100644 --- a/tracks/Without Words/350_difficulty_1a.json +++ b/tracks/Without Words/350_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 241, - "time": 0.03731778425655977, + "time": 0.037317784256559766, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 337, - "time": 0.05224489795918368, + "time": 0.052244897959183675, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 337, - "time": 0.05224489795918368, + "time": 0.052244897959183675, "position": { "x": 6, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 361, - "time": 0.055976676384839656, + "time": 0.05597667638483965, "position": { "x": 7, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 361, - "time": 0.055976676384839656, + "time": 0.05597667638483965, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 410, "time": 0.06344023323615161, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 434, "time": 0.06717201166180758, "position": { "x": 7, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 457, + "noteOrder": 458, "time": 0.07090379008746356, "position": { "x": 6, @@ -294,7 +294,7 @@ }, { "noteOrder": 482, - "time": 0.07463556851311955, + "time": 0.07463556851311953, "position": { "x": 3, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 674, - "time": 0.10448979591836736, + "time": 0.10448979591836735, "position": { "x": 7, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 699, "time": 0.10822157434402334, "position": { "x": 6, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 722, - "time": 0.11195335276967931, + "noteOrder": 723, + "time": 0.1119533527696793, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 746, + "noteOrder": 747, "time": 0.11568513119533529, "position": { "x": 6, @@ -634,7 +634,7 @@ }, { "noteOrder": 939, - "time": 0.1455393586005831, + "time": 0.14553935860058312, "position": { "x": 8, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 987, - "time": 0.15300291545189507, + "noteOrder": 988, + "time": 0.15300291545189504, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1012, "time": 0.15673469387755104, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1035, - "time": 0.16046647230320701, + "noteOrder": 1036, + "time": 0.160466472303207, "position": { "x": 4, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1180, - "time": 0.18285714285714286, + "time": 0.18285714285714288, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1228, + "noteOrder": 1229, "time": 0.19032069970845483, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1276, - "time": 0.19778425655976678, + "noteOrder": 1277, + "time": 0.19778425655976675, "position": { "x": 4, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1324, - "time": 0.20524781341107876, + "noteOrder": 1325, + "time": 0.20524781341107873, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1348, - "time": 0.20897959183673473, + "noteOrder": 1349, + "time": 0.2089795918367347, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1372, - "time": 0.2127113702623907, + "noteOrder": 1373, + "time": 0.21271137026239068, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1517, + "noteOrder": 1518, "time": 0.23510204081632655, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.23883381924198252, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.23883381924198252, "position": { "x": 4, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1565, - "time": 0.2425655976676385, + "noteOrder": 1566, + "time": 0.24256559766763852, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1565, - "time": 0.2425655976676385, + "noteOrder": 1566, + "time": 0.24256559766763852, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1782, + "noteOrder": 1783, "time": 0.2761516034985423, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 1806, + "noteOrder": 1807, "time": 0.27988338192419826, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1854, + "noteOrder": 1855, "time": 0.2873469387755102, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1902, - "time": 0.29481049562682216, + "noteOrder": 1903, + "time": 0.2948104956268222, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2143, + "noteOrder": 2144, "time": 0.33212827988338195, "position": { "x": 8, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2167, + "noteOrder": 2168, "time": 0.3358600583090379, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2191, + "noteOrder": 2192, "time": 0.3395918367346939, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2239, + "noteOrder": 2240, "time": 0.34705539358600584, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2287, - "time": 0.35451895043731785, + "noteOrder": 2288, + "time": 0.3545189504373178, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2384, - "time": 0.36944606413994174, + "noteOrder": 2385, + "time": 0.3694460641399417, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2432, - "time": 0.3769096209912537, + "noteOrder": 2433, + "time": 0.37690962099125364, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2456, + "noteOrder": 2457, "time": 0.38064139941690966, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.38437317784256564, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 2481, "time": 0.38437317784256564, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2601, + "noteOrder": 2602, "time": 0.4030320699708455, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2625, + "noteOrder": 2626, "time": 0.4067638483965015, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2649, - "time": 0.4104956268221575, + "noteOrder": 2650, + "time": 0.41049562682215746, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.41422740524781343, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2697, - "time": 0.41795918367346946, + "noteOrder": 2698, + "time": 0.4179591836734694, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2721, + "noteOrder": 2722, "time": 0.4216909620991254, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2745, - "time": 0.4254227405247814, + "noteOrder": 2746, + "time": 0.42542274052478135, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2769, + "noteOrder": 2770, "time": 0.4291545189504373, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2793, + "noteOrder": 2794, "time": 0.43288629737609335, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 2963, "time": 0.45900874635568517, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3010, - "time": 0.4664723032069971, + "noteOrder": 3011, + "time": 0.46647230320699706, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3058, - "time": 0.4739358600583091, + "noteOrder": 3059, + "time": 0.47393586005830907, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3082, + "noteOrder": 3083, "time": 0.47766763848396504, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3106, - "time": 0.48139941690962107, + "noteOrder": 3107, + "time": 0.481399416909621, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3323, + "noteOrder": 3324, "time": 0.5149854227405248, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3419, + "noteOrder": 3421, "time": 0.5299125364431487, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3564, + "noteOrder": 3565, "time": 0.5523032069970846, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3588, + "noteOrder": 3589, "time": 0.5560349854227405, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3612, + "noteOrder": 3613, "time": 0.5597667638483965, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3636, - "time": 0.5634985422740526, + "noteOrder": 3637, + "time": 0.5634985422740525, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3660, + "noteOrder": 3661, "time": 0.5672303206997085, "position": { "x": 7, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3684, - "time": 0.5709620991253644, + "noteOrder": 3686, + "time": 0.5709620991253646, "position": { "x": 3, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3853, - "time": 0.5970845481049564, + "noteOrder": 3854, + "time": 0.5970845481049563, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3877, - "time": 0.6008163265306122, + "noteOrder": 3878, + "time": 0.6008163265306123, "position": { "x": 3, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3901, - "time": 0.6045481049562683, + "noteOrder": 3902, + "time": 0.6045481049562682, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3925, + "noteOrder": 3926, "time": 0.6082798833819243, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.6157434402332361, + "noteOrder": 3975, + "time": 0.6157434402332362, "position": { "x": 4, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3997, + "noteOrder": 3999, "time": 0.6194752186588922, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4021, - "time": 0.6232069970845482, + "noteOrder": 4023, + "time": 0.6232069970845481, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4045, + "noteOrder": 4047, "time": 0.6269387755102042, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4069, + "noteOrder": 4071, "time": 0.63067055393586, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4093, + "noteOrder": 4095, "time": 0.6344023323615161, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 4107, "time": 0.636268221574344, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4117, + "noteOrder": 4119, "time": 0.6381341107871721, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4166, + "noteOrder": 4167, "time": 0.645597667638484, "position": { "x": 2, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4214, + "noteOrder": 4215, "time": 0.653061224489796, "position": { "x": 8, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.656793002915452, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4262, + "noteOrder": 4264, "time": 0.6605247813411079, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4286, + "noteOrder": 4288, "time": 0.6642565597667639, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4298, + "noteOrder": 4300, "time": 0.6661224489795918, "position": { "x": 5, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4310, - "time": 0.6679883381924199, + "noteOrder": 4312, + "time": 0.6679883381924198, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4334, + "noteOrder": 4336, "time": 0.6717201166180758, "position": { "x": 7, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4358, - "time": 0.6754518950437319, + "noteOrder": 4360, + "time": 0.6754518950437318, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4382, + "noteOrder": 4384, "time": 0.6791836734693878, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4406, + "noteOrder": 4408, "time": 0.6829154518950438, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4432, "time": 0.6866472303206997, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4455, - "time": 0.6903790087463558, + "noteOrder": 4456, + "time": 0.6903790087463557, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4599, - "time": 0.7127696793002916, + "noteOrder": 4601, + "time": 0.7127696793002917, "position": { "x": 7, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4599, - "time": 0.7127696793002916, + "noteOrder": 4601, + "time": 0.7127696793002917, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4623, + "noteOrder": 4625, "time": 0.7165014577259475, "position": { "x": 7, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4647, - "time": 0.7202332361516036, + "noteOrder": 4649, + "time": 0.7202332361516035, "position": { "x": 3, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4671, + "noteOrder": 4673, "time": 0.7239650145772596, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4671, + "noteOrder": 4673, "time": 0.7239650145772596, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4695, + "noteOrder": 4697, "time": 0.7276967930029155, "position": { "x": 3, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4695, + "noteOrder": 4697, "time": 0.7276967930029155, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4840, + "noteOrder": 4842, "time": 0.7500874635568514, "position": { "x": 3, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4888, - "time": 0.7575510204081632, + "noteOrder": 4890, + "time": 0.7575510204081634, "position": { "x": 3, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4936, - "time": 0.7650145772594753, + "noteOrder": 4938, + "time": 0.7650145772594752, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 4962, "time": 0.7687463556851313, "position": { "x": 3, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4984, - "time": 0.7724781341107873, + "noteOrder": 4986, + "time": 0.7724781341107871, "position": { "x": 7, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5225, - "time": 0.809795918367347, + "noteOrder": 5227, + "time": 0.8097959183673469, "position": { "x": 7, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5273, + "noteOrder": 5275, "time": 0.8172594752186589, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5321, + "noteOrder": 5324, "time": 0.8247230320699709, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5346, + "noteOrder": 5348, "time": 0.8284548104956269, "position": { "x": 7, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5370, - "time": 0.8321865889212829, + "noteOrder": 5372, + "time": 0.8321865889212828, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5466, + "noteOrder": 5468, "time": 0.8471137026239068, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5683, - "time": 0.8806997084548106, + "noteOrder": 5685, + "time": 0.8806997084548105, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5707, + "noteOrder": 5709, "time": 0.8844314868804666, "position": { "x": 6, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5731, + "noteOrder": 5733, "time": 0.8881632653061224, "position": { "x": 3, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5755, + "noteOrder": 5757, "time": 0.8918950437317785, "position": { "x": 4, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5851, - "time": 0.9068221574344024, + "noteOrder": 5854, + "time": 0.9068221574344023, "position": { "x": 6, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9254810495626823, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.9292128279883383, "position": { "x": 4, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6020, - "time": 0.9329446064139942, + "noteOrder": 6022, + "time": 0.9329446064139941, "position": { "x": 7, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6044, + "noteOrder": 6046, "time": 0.9366763848396502, "position": { "x": 6, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6140, - "time": 0.9516034985422741, + "noteOrder": 6143, + "time": 0.951603498542274, "position": { "x": 4, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6164, + "noteOrder": 6167, "time": 0.9553352769679301, "position": { "x": 7, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6188, + "noteOrder": 6191, "time": 0.959067055393586, "position": { "x": 3, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6212, - "time": 0.9627988338192421, + "noteOrder": 6215, + "time": 0.962798833819242, "position": { "x": 3, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6230, + "noteOrder": 6233, "time": 0.9655976676384841, "position": { "x": 5, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6248, - "time": 0.968396501457726, + "noteOrder": 6251, + "time": 0.9683965014577259, "position": { "x": 7, "y": 0 @@ -2996,7 +2996,7 @@ "lineNodes": [ { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 867, "time": 0.13434402332361517, @@ -3019,7 +3019,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 891, "time": 0.13807580174927114, @@ -3042,7 +3042,7 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 915, "time": 0.14180758017492712, @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 939, - "time": 0.1455393586005831, + "time": 0.14553935860058312, "position": { "x": 6, "y": 0 @@ -3088,10 +3088,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 963, - "time": 0.1492711370262391, + "noteOrder": 964, + "time": 0.14927113702623906, "position": { "x": 3, "y": 0 @@ -3111,9 +3111,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1059, + "noteOrder": 1060, "time": 0.164198250728863, "position": { "x": 3, @@ -3134,9 +3134,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1059, + "noteOrder": 1060, "time": 0.164198250728863, "position": { "x": 6, @@ -3157,7 +3157,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1084, "time": 0.16793002915451896, @@ -3180,7 +3180,7 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1108, "time": 0.17166180758017494, @@ -3203,7 +3203,7 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1132, "time": 0.1753935860058309, @@ -3226,7 +3226,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1156, "time": 0.17912536443148688, @@ -3249,9 +3249,9 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.1940524781341108, "position": { "x": 7, @@ -3272,9 +3272,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.1940524781341108, "position": { "x": 3, @@ -3295,10 +3295,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1276, - "time": 0.19778425655976678, + "noteOrder": 1277, + "time": 0.19778425655976675, "position": { "x": 3, "y": 0 @@ -3318,9 +3318,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.20151603498542275, "position": { "x": 7, @@ -3341,10 +3341,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1324, - "time": 0.20524781341107876, + "noteOrder": 1325, + "time": 0.20524781341107873, "position": { "x": 7, "y": 0 @@ -3364,10 +3364,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1421, - "time": 0.22017492711370265, + "time": 0.22017492711370262, "position": { "x": 7, "y": 0 @@ -3387,10 +3387,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, - "time": 0.22390670553935862, + "time": 0.2239067055393586, "position": { "x": 7, "y": 0 @@ -3410,10 +3410,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1421, - "time": 0.22017492711370265, + "time": 0.22017492711370262, "position": { "x": 3, "y": 0 @@ -3433,10 +3433,10 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, - "time": 0.22390670553935862, + "time": 0.2239067055393586, "position": { "x": 3, "y": 0 @@ -3456,9 +3456,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1589, + "noteOrder": 1590, "time": 0.24629737609329447, "position": { "x": 6, @@ -3479,10 +3479,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1613, - "time": 0.25002915451895047, + "noteOrder": 1614, + "time": 0.2500291545189504, "position": { "x": 6, "y": 0 @@ -3502,9 +3502,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1589, + "noteOrder": 1590, "time": 0.24629737609329447, "position": { "x": 4, @@ -3525,10 +3525,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1613, - "time": 0.25002915451895047, + "noteOrder": 1614, + "time": 0.2500291545189504, "position": { "x": 4, "y": 0 @@ -3548,9 +3548,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1637, + "noteOrder": 1638, "time": 0.25376093294460644, "position": { "x": 7, @@ -3570,13 +3570,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1686, - "time": 0.2612244897959184, + "noteOrder": 1662, + "time": 0.2574927113702624, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3588,18 +3588,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1710, - "time": 0.26495626822157436, + "noteOrder": 1662, + "time": 0.2574927113702624, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3616,11 +3616,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1734, - "time": 0.26868804664723034, + "noteOrder": 1686, + "time": 0.2612244897959184, "position": { "x": 3, "y": 0 @@ -3639,13 +3639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1830, - "time": 0.28361516034985423, + "noteOrder": 1698, + "time": 0.2630903790087464, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3662,13 +3662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1830, - "time": 0.28361516034985423, + "noteOrder": 1698, + "time": 0.2630903790087464, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3680,18 +3680,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1854, - "time": 0.2873469387755102, + "noteOrder": 1710, + "time": 0.26495626822157436, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3703,18 +3703,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1878, - "time": 0.2910787172011662, + "noteOrder": 1710, + "time": 0.26495626822157436, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3731,11 +3731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 1902, - "time": 0.29481049562682216, + "noteOrder": 1710, + "time": 0.26495626822157436, "position": { "x": 3, "y": 0 @@ -3749,18 +3749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1926, - "time": 0.2985422740524782, + "noteOrder": 1722, + "time": 0.26682215743440235, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3777,13 +3777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1950, - "time": 0.30227405247813416, + "noteOrder": 1722, + "time": 0.26682215743440235, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3795,18 +3795,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1974, - "time": 0.30600583090379013, + "noteOrder": 1734, + "time": 0.26868804664723034, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3823,13 +3823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2023, - "time": 0.3134693877551021, + "noteOrder": 1734, + "time": 0.26868804664723034, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3841,18 +3841,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2071, - "time": 0.32093294460641403, + "noteOrder": 1734, + "time": 0.26868804664723034, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3864,18 +3864,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2095, - "time": 0.32466472303207, + "noteOrder": 1831, + "time": 0.28361516034985423, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3892,11 +3892,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2119, - "time": 0.328396501457726, + "noteOrder": 1831, + "time": 0.28361516034985423, "position": { "x": 7, "y": 0 @@ -3915,13 +3915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2215, - "time": 0.34332361516034987, + "noteOrder": 1855, + "time": 0.2873469387755102, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3938,11 +3938,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2215, - "time": 0.34332361516034987, + "noteOrder": 1879, + "time": 0.29107871720116624, "position": { "x": 3, "y": 0 @@ -3961,11 +3961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2239, - "time": 0.34705539358600584, + "noteOrder": 1903, + "time": 0.2948104956268222, "position": { "x": 3, "y": 0 @@ -3984,11 +3984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2263, - "time": 0.3507871720116618, + "noteOrder": 1927, + "time": 0.29854227405247813, "position": { "x": 7, "y": 0 @@ -4007,11 +4007,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2287, - "time": 0.35451895043731785, + "noteOrder": 1939, + "time": 0.30040816326530617, "position": { "x": 7, "y": 0 @@ -4030,13 +4030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2312, - "time": 0.35825072886297377, + "noteOrder": 1939, + "time": 0.30040816326530617, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4048,18 +4048,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2336, - "time": 0.3619825072886298, + "noteOrder": 1951, + "time": 0.3022740524781341, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4071,16 +4071,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2360, - "time": 0.3657142857142857, + "noteOrder": 1963, + "time": 0.30413994169096215, "position": { "x": 3, "y": 0 @@ -4099,11 +4099,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2504, - "time": 0.3881049562682216, + "noteOrder": 1963, + "time": 0.30413994169096215, "position": { "x": 4, "y": 0 @@ -4117,18 +4117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 81, "indexInLine": 1, "isSliding": false, - "noteOrder": 2528, - "time": 0.3918367346938776, + "noteOrder": 1975, + "time": 0.3060058309037901, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4145,13 +4145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2528, - "time": 0.3918367346938776, + "noteOrder": 1987, + "time": 0.3078717201166181, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4163,18 +4163,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2552, - "time": 0.39556851311953356, + "noteOrder": 1987, + "time": 0.3078717201166181, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4186,18 +4186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2552, - "time": 0.39556851311953356, + "noteOrder": 1999, + "time": 0.3097376093294461, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4214,13 +4214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2576, - "time": 0.39930029154518953, + "noteOrder": 1999, + "time": 0.3097376093294461, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4237,13 +4237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2576, - "time": 0.39930029154518953, + "noteOrder": 2023, + "time": 0.3134693877551021, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4260,13 +4260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2588, - "time": 0.4011661807580175, + "noteOrder": 2048, + "time": 0.31720116618075805, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4283,13 +4283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2817, - "time": 0.4366180758017493, + "noteOrder": 2048, + "time": 0.31720116618075805, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4306,13 +4306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2841, - "time": 0.4403498542274053, + "noteOrder": 2072, + "time": 0.320932944606414, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4324,16 +4324,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2841, - "time": 0.4403498542274053, + "noteOrder": 2084, + "time": 0.322798833819242, "position": { "x": 7, "y": 0 @@ -4352,11 +4352,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2865, - "time": 0.4440816326530612, + "noteOrder": 2084, + "time": 0.322798833819242, "position": { "x": 6, "y": 0 @@ -4375,13 +4375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2865, - "time": 0.4440816326530612, + "noteOrder": 2096, + "time": 0.32466472303206995, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4393,16 +4393,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2889, - "time": 0.44781341107871725, + "noteOrder": 2096, + "time": 0.32466472303206995, "position": { "x": 4, "y": 0 @@ -4416,16 +4416,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2889, - "time": 0.44781341107871725, + "noteOrder": 2096, + "time": 0.32466472303206995, "position": { "x": 7, "y": 0 @@ -4439,16 +4439,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2914, - "time": 0.45154518950437317, + "noteOrder": 2108, + "time": 0.326530612244898, "position": { "x": 7, "y": 0 @@ -4467,13 +4467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2938, - "time": 0.4552769679300292, + "noteOrder": 2108, + "time": 0.326530612244898, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4485,18 +4485,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2986, - "time": 0.46274052478134114, + "noteOrder": 2120, + "time": 0.328396501457726, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4513,13 +4513,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3010, - "time": 0.4664723032069971, + "noteOrder": 2120, + "time": 0.328396501457726, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4536,11 +4536,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3034, - "time": 0.4702040816326531, + "noteOrder": 2120, + "time": 0.328396501457726, "position": { "x": 7, "y": 0 @@ -4559,13 +4559,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3058, - "time": 0.4739358600583091, + "noteOrder": 2216, + "time": 0.34332361516034987, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4582,13 +4582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 90, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3130, - "time": 0.485131195335277, + "noteOrder": 2216, + "time": 0.34332361516034987, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4605,13 +4605,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 90, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3142, - "time": 0.48699708454810503, + "noteOrder": 2240, + "time": 0.34705539358600584, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4628,13 +4628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 2, + "lineGroupId": 92, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3166, - "time": 0.49072886297376095, + "noteOrder": 2264, + "time": 0.3507871720116618, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4646,18 +4646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 3, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3178, - "time": 0.49259475218658894, + "noteOrder": 2288, + "time": 0.3545189504373178, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4669,16 +4669,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3130, - "time": 0.485131195335277, + "noteOrder": 2312, + "time": 0.35825072886297377, "position": { "x": 3, "y": 0 @@ -4692,16 +4692,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3142, - "time": 0.48699708454810503, + "noteOrder": 2325, + "time": 0.36011661807580175, "position": { "x": 3, "y": 0 @@ -4715,18 +4715,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 2, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3166, - "time": 0.49072886297376095, + "noteOrder": 2325, + "time": 0.36011661807580175, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4738,16 +4738,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 3, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3178, - "time": 0.49259475218658894, + "noteOrder": 2337, + "time": 0.3619825072886298, "position": { "x": 7, "y": 0 @@ -4766,13 +4766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3227, - "time": 0.5000583090379009, + "noteOrder": 2349, + "time": 0.3638483965014577, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4784,18 +4784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3275, - "time": 0.5075218658892129, + "noteOrder": 2349, + "time": 0.3638483965014577, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4807,18 +4807,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3275, - "time": 0.5075218658892129, + "noteOrder": 2361, + "time": 0.36571428571428577, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4830,18 +4830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3323, - "time": 0.5149854227405248, + "noteOrder": 2373, + "time": 0.3675801749271137, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4853,18 +4853,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3371, - "time": 0.5224489795918368, + "noteOrder": 2373, + "time": 0.3675801749271137, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4881,13 +4881,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3419, - "time": 0.5299125364431487, + "noteOrder": 2385, + "time": 0.3694460641399417, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4904,13 +4904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3467, - "time": 0.5373760932944607, + "noteOrder": 2385, + "time": 0.3694460641399417, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4922,18 +4922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 3491, - "time": 0.5411078717201167, + "noteOrder": 2505, + "time": 0.3881049562682216, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4950,13 +4950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3516, - "time": 0.5448396501457726, + "noteOrder": 2529, + "time": 0.3918367346938776, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4968,18 +4968,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 104, "indexInLine": 1, "isSliding": false, - "noteOrder": 3540, - "time": 0.5485714285714287, + "noteOrder": 2529, + "time": 0.3918367346938776, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4996,13 +4996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3708, - "time": 0.5746938775510204, + "noteOrder": 2553, + "time": 0.3955685131195335, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5014,18 +5014,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 3732, - "time": 0.5784256559766765, + "noteOrder": 2553, + "time": 0.3955685131195335, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5042,13 +5042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3708, - "time": 0.5746938775510204, + "noteOrder": 2577, + "time": 0.39930029154518953, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5060,18 +5060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, + "lineGroupId": 106, "indexInLine": 1, "isSliding": false, - "noteOrder": 3732, - "time": 0.5784256559766765, + "noteOrder": 2577, + "time": 0.39930029154518953, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5088,13 +5088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3756, - "time": 0.5821574344023324, + "noteOrder": 2590, + "time": 0.4011661807580175, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5111,11 +5111,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 3780, - "time": 0.5858892128279883, + "noteOrder": 2818, + "time": 0.43661807580174933, "position": { "x": 3, "y": 0 @@ -5134,13 +5134,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3804, - "time": 0.5896209912536443, + "noteOrder": 2842, + "time": 0.44034985422740525, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5152,16 +5152,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 118, "indexInLine": 1, "isSliding": false, - "noteOrder": 3829, - "time": 0.5933527696793004, + "noteOrder": 2842, + "time": 0.44034985422740525, "position": { "x": 7, "y": 0 @@ -5180,13 +5180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3949, - "time": 0.6120116618075803, + "noteOrder": 2867, + "time": 0.4440816326530612, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5198,16 +5198,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 4045, - "time": 0.6269387755102042, + "noteOrder": 2867, + "time": 0.4440816326530612, "position": { "x": 3, "y": 0 @@ -5226,11 +5226,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4142, - "time": 0.6418658892128281, + "noteOrder": 2891, + "time": 0.4478134110787172, "position": { "x": 4, "y": 0 @@ -5249,13 +5249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 120, "indexInLine": 1, "isSliding": false, - "noteOrder": 4166, - "time": 0.645597667638484, + "noteOrder": 2891, + "time": 0.4478134110787172, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5267,18 +5267,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4190, - "time": 0.64932944606414, + "noteOrder": 2903, + "time": 0.44967930029154524, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5295,11 +5295,11 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4214, - "time": 0.653061224489796, + "noteOrder": 2903, + "time": 0.44967930029154524, "position": { "x": 6, "y": 0 @@ -5318,11 +5318,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4479, - "time": 0.6941107871720117, + "noteOrder": 2915, + "time": 0.4515451895043732, "position": { "x": 6, "y": 0 @@ -5341,11 +5341,80 @@ "isPlayAudio": false }, { - "lineGroupId": 177, + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2915, + "time": 0.4515451895043732, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, "indexInLine": 1, "isSliding": false, - "noteOrder": 4527, - "time": 0.7015743440233236, + "noteOrder": 2915, + "time": 0.4515451895043732, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2927, + "time": 0.45341107871720115, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2927, + "time": 0.45341107871720115, "position": { "x": 6, "y": 0 @@ -5359,18 +5428,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4479, - "time": 0.6941107871720117, + "noteOrder": 2939, + "time": 0.4552769679300292, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5387,11 +5456,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4527, - "time": 0.7015743440233236, + "noteOrder": 2939, + "time": 0.4552769679300292, "position": { "x": 4, "y": 0 @@ -5410,13 +5479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4719, - "time": 0.7314285714285714, + "noteOrder": 2939, + "time": 0.4552769679300292, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5428,18 +5497,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4744, - "time": 0.7351603498542275, + "noteOrder": 2951, + "time": 0.45714285714285713, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5456,13 +5525,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4768, - "time": 0.7388921282798835, + "noteOrder": 2951, + "time": 0.45714285714285713, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5474,18 +5543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4792, - "time": 0.7426239067055393, + "noteOrder": 2963, + "time": 0.45900874635568517, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5502,11 +5571,34 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4816, - "time": 0.7463556851311953, + "noteOrder": 2963, + "time": 0.45900874635568517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2987, + "time": 0.46274052478134114, "position": { "x": 3, "y": 0 @@ -5525,13 +5617,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, + "lineGroupId": 124, "indexInLine": 2, "isSliding": false, - "noteOrder": 4840, - "time": 0.7500874635568514, + "noteOrder": 3011, + "time": 0.46647230320699706, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5548,13 +5640,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4864, - "time": 0.7538192419825074, + "noteOrder": 3035, + "time": 0.4702040816326531, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5571,13 +5663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 126, "indexInLine": 2, "isSliding": false, - "noteOrder": 4888, - "time": 0.7575510204081632, + "noteOrder": 3059, + "time": 0.47393586005830907, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5594,11 +5686,57 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4912, - "time": 0.7612827988338193, + "noteOrder": 3132, + "time": 0.48513119533527704, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3144, + "time": 0.486997084548105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3168, + "time": 0.49072886297376095, "position": { "x": 3, "y": 0 @@ -5617,13 +5755,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5008, - "time": 0.7762099125364432, + "noteOrder": 3180, + "time": 0.49259475218658894, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5640,13 +5778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5008, - "time": 0.7762099125364432, + "noteOrder": 3132, + "time": 0.48513119533527704, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5663,11 +5801,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5032, - "time": 0.7799416909620992, + "noteOrder": 3144, + "time": 0.486997084548105, "position": { "x": 3, "y": 0 @@ -5681,18 +5819,2364 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3168, + "time": 0.49072886297376095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3180, + "time": 0.49259475218658894, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3228, + "time": 0.5000583090379008, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3276, + "time": 0.5075218658892129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3276, + "time": 0.5075218658892129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3324, + "time": 0.5149854227405248, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3372, + "time": 0.5224489795918368, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3421, + "time": 0.5299125364431487, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3469, + "time": 0.5373760932944607, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3493, + "time": 0.5411078717201167, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3517, + "time": 0.5448396501457726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3541, + "time": 0.5485714285714286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3710, + "time": 0.5746938775510204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3734, + "time": 0.5784256559766764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3710, + "time": 0.5746938775510204, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3734, + "time": 0.5784256559766764, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3758, + "time": 0.5821574344023325, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3782, + "time": 0.5858892128279883, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3806, + "time": 0.5896209912536444, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3830, + "time": 0.5933527696793003, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3951, + "time": 0.6120116618075802, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4047, + "time": 0.6269387755102042, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4143, + "time": 0.641865889212828, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4167, + "time": 0.645597667638484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4191, + "time": 0.6493294460641399, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4215, + "time": 0.653061224489796, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4480, + "time": 0.6941107871720117, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4529, + "time": 0.7015743440233236, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4480, + "time": 0.6941107871720117, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4529, + "time": 0.7015743440233236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4721, + "time": 0.7314285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4733, + "time": 0.7332944606413995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4733, + "time": 0.7332944606413995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4745, + "time": 0.7351603498542274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4745, + "time": 0.7351603498542274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4745, + "time": 0.7351603498542274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4757, + "time": 0.7370262390670554, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4757, + "time": 0.7370262390670554, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4770, + "time": 0.7388921282798834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4770, + "time": 0.7388921282798834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4770, + "time": 0.7388921282798834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4782, + "time": 0.7407580174927114, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4782, + "time": 0.7407580174927114, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4794, + "time": 0.7426239067055395, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4794, + "time": 0.7426239067055395, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4794, + "time": 0.7426239067055395, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4806, + "time": 0.7444897959183674, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4806, + "time": 0.7444897959183674, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4818, + "time": 0.7463556851311953, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4818, + "time": 0.7463556851311953, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4818, + "time": 0.7463556851311953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4830, + "time": 0.7482215743440233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4830, + "time": 0.7482215743440233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4842, + "time": 0.7500874635568514, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4866, + "time": 0.7538192419825073, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4878, + "time": 0.7556851311953353, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4878, + "time": 0.7556851311953353, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4890, + "time": 0.7575510204081634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4914, + "time": 0.7612827988338193, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5010, + "time": 0.7762099125364432, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5010, + "time": 0.7762099125364432, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5022, + "time": 0.7780758017492712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5022, + "time": 0.7780758017492712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5034, + "time": 0.7799416909620992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5047, + "time": 0.7818075801749271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5047, + "time": 0.7818075801749271, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5059, + "time": 0.7836734693877552, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5071, + "time": 0.7855393586005832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5071, + "time": 0.7855393586005832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5083, + "time": 0.7874052478134111, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5095, + "time": 0.7892711370262391, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5095, + "time": 0.7892711370262391, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5107, + "time": 0.791137026239067, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5119, + "time": 0.7930029154518952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5119, + "time": 0.7930029154518952, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7948688046647231, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7948688046647231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5131, + "time": 0.7948688046647231, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5143, + "time": 0.796734693877551, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5143, + "time": 0.796734693877551, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5167, + "time": 0.800466472303207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5167, + "time": 0.800466472303207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5179, + "time": 0.802332361516035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5179, + "time": 0.802332361516035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5179, + "time": 0.802332361516035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5191, + "time": 0.8041982507288631, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5191, + "time": 0.8041982507288631, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5215, + "time": 0.807930029154519, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5215, + "time": 0.807930029154519, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8097959183673469, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5251, + "time": 0.813527696793003, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5263, + "time": 0.8153935860058309, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5263, + "time": 0.8153935860058309, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 211, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5275, + "time": 0.8172594752186589, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5299, + "time": 0.8209912536443149, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5396, + "time": 0.8359183673469388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5057, - "time": 0.7836734693877552, + "noteOrder": 5396, + "time": 0.8359183673469388, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5704,16 +8188,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5081, - "time": 0.7874052478134111, + "noteOrder": 5408, + "time": 0.8377842565597668, "position": { "x": 3, "y": 0 @@ -5732,13 +8216,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5105, - "time": 0.7911370262390671, + "noteOrder": 5408, + "time": 0.8377842565597668, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5750,16 +8234,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5129, - "time": 0.7948688046647231, + "noteOrder": 5420, + "time": 0.8396501457725948, "position": { "x": 7, "y": 0 @@ -5773,16 +8257,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5153, - "time": 0.7986005830903791, + "noteOrder": 5432, + "time": 0.8415160349854228, "position": { "x": 7, "y": 0 @@ -5801,13 +8285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5177, - "time": 0.802332361516035, + "noteOrder": 5432, + "time": 0.8415160349854228, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5819,18 +8303,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5201, - "time": 0.806064139941691, + "noteOrder": 5444, + "time": 0.8433819241982508, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5842,18 +8326,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, + "lineGroupId": 219, "indexInLine": 2, "isSliding": false, - "noteOrder": 5225, - "time": 0.809795918367347, + "noteOrder": 5456, + "time": 0.8452478134110787, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5865,18 +8349,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5249, - "time": 0.813527696793003, + "noteOrder": 5456, + "time": 0.8452478134110787, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5893,13 +8377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5273, - "time": 0.8172594752186589, + "noteOrder": 5468, + "time": 0.8471137026239068, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5916,13 +8400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5297, - "time": 0.820991253644315, + "noteOrder": 5468, + "time": 0.8471137026239068, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5934,16 +8418,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 5394, - "time": 0.8359183673469389, + "noteOrder": 5589, + "time": 0.8657725947521867, "position": { "x": 4, "y": 0 @@ -5962,13 +8446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5394, - "time": 0.8359183673469389, + "noteOrder": 5613, + "time": 0.8695043731778426, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5980,18 +8464,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5418, - "time": 0.8396501457725948, + "noteOrder": 5613, + "time": 0.8695043731778426, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6003,18 +8487,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5442, - "time": 0.8433819241982508, + "noteOrder": 5637, + "time": 0.8732361516034987, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6031,11 +8515,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5586, - "time": 0.8657725947521867, + "noteOrder": 5637, + "time": 0.8732361516034987, "position": { "x": 4, "y": 0 @@ -6054,11 +8538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5610, - "time": 0.8695043731778426, + "noteOrder": 5661, + "time": 0.8769679300291545, "position": { "x": 5, "y": 0 @@ -6077,11 +8561,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5610, - "time": 0.8695043731778426, + "noteOrder": 5661, + "time": 0.8769679300291545, "position": { "x": 6, "y": 0 @@ -6100,11 +8584,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5634, - "time": 0.8732361516034985, + "noteOrder": 5673, + "time": 0.8788338192419826, "position": { "x": 5, "y": 0 @@ -6123,13 +8607,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5634, - "time": 0.8732361516034985, + "noteOrder": 5781, + "time": 0.8956268221574344, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6146,13 +8630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5659, - "time": 0.8769679300291546, + "noteOrder": 5793, + "time": 0.8974927113702624, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6169,11 +8653,11 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5659, - "time": 0.8769679300291546, + "noteOrder": 5793, + "time": 0.8974927113702624, "position": { "x": 6, "y": 0 @@ -6187,18 +8671,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, - "time": 0.8788338192419826, + "noteOrder": 5805, + "time": 0.8993586005830905, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6215,13 +8699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5779, - "time": 0.8956268221574345, + "noteOrder": 5817, + "time": 0.9012244897959184, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6233,18 +8717,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5803, - "time": 0.8993586005830905, + "noteOrder": 5817, + "time": 0.9012244897959184, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6262,10 +8746,10 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5827, - "time": 0.9030903790087463, + "noteOrder": 5829, + "time": 0.9030903790087464, "position": { "x": 7, "y": 0 @@ -6285,10 +8769,10 @@ }, { "lineGroupId": 233, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5851, - "time": 0.9068221574344024, + "noteOrder": 5854, + "time": 0.9068221574344023, "position": { "x": 7, "y": 0 @@ -6308,9 +8792,9 @@ }, { "lineGroupId": 235, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5875, + "noteOrder": 5878, "time": 0.9105539358600584, "position": { "x": 6, @@ -6331,10 +8815,10 @@ }, { "lineGroupId": 235, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5899, - "time": 0.9142857142857144, + "noteOrder": 5902, + "time": 0.9142857142857143, "position": { "x": 5, "y": 0 @@ -6354,10 +8838,10 @@ }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5899, - "time": 0.9142857142857144, + "noteOrder": 5902, + "time": 0.9142857142857143, "position": { "x": 4, "y": 0 @@ -6377,9 +8861,9 @@ }, { "lineGroupId": 236, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5923, + "noteOrder": 5926, "time": 0.9180174927113703, "position": { "x": 5, @@ -6400,9 +8884,9 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5923, + "noteOrder": 5926, "time": 0.9180174927113703, "position": { "x": 6, @@ -6423,9 +8907,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5947, + "noteOrder": 5950, "time": 0.9217492711370263, "position": { "x": 5, @@ -6446,9 +8930,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5947, + "noteOrder": 5950, "time": 0.9217492711370263, "position": { "x": 4, @@ -6469,9 +8953,9 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5960, + "noteOrder": 5962, "time": 0.9236151603498542, "position": { "x": 5, @@ -6492,9 +8976,9 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6068, + "noteOrder": 6070, "time": 0.9404081632653062, "position": { "x": 3, @@ -6513,11 +8997,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 243, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6082, + "time": 0.9422740524781341, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 243, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6082, + "time": 0.9422740524781341, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6092, + "noteOrder": 6094, "time": 0.9441399416909622, "position": { "x": 7, @@ -6536,12 +9066,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 244, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6106, + "time": 0.9460058309037902, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6106, + "time": 0.9460058309037902, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6116, - "time": 0.9478717201166182, + "noteOrder": 6118, + "time": 0.9478717201166181, "position": { "x": 3, "y": 0 @@ -6561,10 +9137,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6140, - "time": 0.9516034985422741, + "noteOrder": 6143, + "time": 0.951603498542274, "position": { "x": 3, "y": 0 diff --git a/tracks/Without Words/350_difficulty_1b.json b/tracks/Without Words/350_difficulty_1b.json index 7f8ff739..a0955346 100644 --- a/tracks/Without Words/350_difficulty_1b.json +++ b/tracks/Without Words/350_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 241, - "time": 0.03731778425655977, + "time": 0.037317784256559766, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 337, - "time": 0.05224489795918368, + "time": 0.052244897959183675, "position": { "x": 7, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 434, "time": 0.06717201166180758, "position": { "x": 4, @@ -134,7 +134,7 @@ }, { "noteOrder": 482, - "time": 0.07463556851311955, + "time": 0.07463556851311953, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 674, - "time": 0.10448979591836736, + "time": 0.10448979591836735, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 699, "time": 0.10822157434402334, "position": { "x": 7, @@ -354,7 +354,7 @@ }, { "noteOrder": 939, - "time": 0.1455393586005831, + "time": 0.14553935860058312, "position": { "x": 6, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1012, "time": 0.15673469387755104, "position": { "x": 4, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1035, - "time": 0.16046647230320701, + "noteOrder": 1036, + "time": 0.160466472303207, "position": { "x": 4, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1059, + "noteOrder": 1060, "time": 0.164198250728863, "position": { "x": 7, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1228, + "noteOrder": 1229, "time": 0.19032069970845483, "position": { "x": 6, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1348, - "time": 0.20897959183673473, + "noteOrder": 1349, + "time": 0.2089795918367347, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1372, - "time": 0.2127113702623907, + "noteOrder": 1373, + "time": 0.21271137026239068, "position": { "x": 7, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1517, + "noteOrder": 1518, "time": 0.23510204081632655, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.23883381924198252, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1541, + "noteOrder": 1542, "time": 0.23883381924198252, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1590, "time": 0.24629737609329447, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1590, "time": 0.24629737609329447, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1782, + "noteOrder": 1783, "time": 0.2761516034985423, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1806, + "noteOrder": 1807, "time": 0.27988338192419826, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1878, - "time": 0.2910787172011662, + "noteOrder": 1879, + "time": 0.29107871720116624, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1902, - "time": 0.29481049562682216, + "noteOrder": 1903, + "time": 0.2948104956268222, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1926, - "time": 0.2985422740524782, + "noteOrder": 1927, + "time": 0.29854227405247813, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1950, - "time": 0.30227405247813416, + "noteOrder": 1951, + "time": 0.3022740524781341, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1974, - "time": 0.30600583090379013, + "noteOrder": 1975, + "time": 0.3060058309037901, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1974, - "time": 0.30600583090379013, + "noteOrder": 1975, + "time": 0.3060058309037901, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2071, - "time": 0.32093294460641403, + "noteOrder": 2072, + "time": 0.320932944606414, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2095, - "time": 0.32466472303207, + "noteOrder": 2096, + "time": 0.32466472303206995, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2119, + "noteOrder": 2120, "time": 0.328396501457726, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2143, + "noteOrder": 2144, "time": 0.33212827988338195, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2167, + "noteOrder": 2168, "time": 0.3358600583090379, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2191, + "noteOrder": 2192, "time": 0.3395918367346939, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2263, + "noteOrder": 2264, "time": 0.3507871720116618, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2287, - "time": 0.35451895043731785, + "noteOrder": 2288, + "time": 0.3545189504373178, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2336, + "noteOrder": 2337, "time": 0.3619825072886298, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2360, - "time": 0.3657142857142857, + "noteOrder": 2361, + "time": 0.36571428571428577, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2360, - "time": 0.3657142857142857, + "noteOrder": 2361, + "time": 0.36571428571428577, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2384, - "time": 0.36944606413994174, + "noteOrder": 2385, + "time": 0.3694460641399417, "position": { "x": 3, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2384, - "time": 0.36944606413994174, + "noteOrder": 2385, + "time": 0.3694460641399417, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2456, + "noteOrder": 2457, "time": 0.38064139941690966, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2456, + "noteOrder": 2457, "time": 0.38064139941690966, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2504, + "noteOrder": 2505, "time": 0.3881049562682216, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2528, + "noteOrder": 2529, "time": 0.3918367346938776, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2552, - "time": 0.39556851311953356, + "noteOrder": 2553, + "time": 0.3955685131195335, "position": { "x": 4, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2577, "time": 0.39930029154518953, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2649, - "time": 0.4104956268221575, + "noteOrder": 2650, + "time": 0.41049562682215746, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.41422740524781343, "position": { "x": 4, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2697, - "time": 0.41795918367346946, + "noteOrder": 2698, + "time": 0.4179591836734694, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2721, + "noteOrder": 2722, "time": 0.4216909620991254, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2745, - "time": 0.4254227405247814, + "noteOrder": 2746, + "time": 0.42542274052478135, "position": { "x": 3, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2769, + "noteOrder": 2770, "time": 0.4291545189504373, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2793, + "noteOrder": 2794, "time": 0.43288629737609335, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2817, - "time": 0.4366180758017493, + "noteOrder": 2818, + "time": 0.43661807580174933, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2841, - "time": 0.4403498542274053, + "noteOrder": 2842, + "time": 0.44034985422740525, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2865, + "noteOrder": 2867, "time": 0.4440816326530612, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2889, - "time": 0.44781341107871725, + "noteOrder": 2891, + "time": 0.4478134110787172, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2914, - "time": 0.45154518950437317, + "noteOrder": 2915, + "time": 0.4515451895043732, "position": { "x": 7, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2938, + "noteOrder": 2939, "time": 0.4552769679300292, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 2963, "time": 0.45900874635568517, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3082, + "noteOrder": 3083, "time": 0.47766763848396504, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3106, - "time": 0.48139941690962107, + "noteOrder": 3107, + "time": 0.481399416909621, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3130, - "time": 0.485131195335277, + "noteOrder": 3132, + "time": 0.48513119533527704, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3154, - "time": 0.488862973760933, + "noteOrder": 3156, + "time": 0.48886297376093296, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3154, - "time": 0.488862973760933, + "noteOrder": 3156, + "time": 0.48886297376093296, "position": { "x": 6, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3227, - "time": 0.5000583090379009, + "noteOrder": 3228, + "time": 0.5000583090379008, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3275, + "noteOrder": 3276, "time": 0.5075218658892129, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3323, + "noteOrder": 3324, "time": 0.5149854227405248, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3371, + "noteOrder": 3372, "time": 0.5224489795918368, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3419, + "noteOrder": 3421, "time": 0.5299125364431487, "position": { "x": 7, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3467, + "noteOrder": 3469, "time": 0.5373760932944607, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3516, + "noteOrder": 3517, "time": 0.5448396501457726, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3564, + "noteOrder": 3565, "time": 0.5523032069970846, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3612, + "noteOrder": 3613, "time": 0.5597667638483965, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3660, + "noteOrder": 3661, "time": 0.5672303206997085, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3708, + "noteOrder": 3710, "time": 0.5746938775510204, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3756, - "time": 0.5821574344023324, + "noteOrder": 3758, + "time": 0.5821574344023325, "position": { "x": 7, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3804, - "time": 0.5896209912536443, + "noteOrder": 3806, + "time": 0.5896209912536444, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3853, - "time": 0.5970845481049564, + "noteOrder": 3854, + "time": 0.5970845481049563, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3901, - "time": 0.6045481049562683, + "noteOrder": 3902, + "time": 0.6045481049562682, "position": { "x": 4, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3997, + "noteOrder": 3999, "time": 0.6194752186588922, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4021, - "time": 0.6232069970845482, + "noteOrder": 4023, + "time": 0.6232069970845481, "position": { "x": 6, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4190, - "time": 0.64932944606414, + "noteOrder": 4191, + "time": 0.6493294460641399, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4214, + "noteOrder": 4215, "time": 0.653061224489796, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4432, "time": 0.6866472303206997, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4431, + "noteOrder": 4432, "time": 0.6866472303206997, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4480, "time": 0.6941107871720117, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4480, "time": 0.6941107871720117, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4575, - "time": 0.7090379008746357, + "noteOrder": 4577, + "time": 0.7090379008746356, "position": { "x": 6, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4599, - "time": 0.7127696793002916, + "noteOrder": 4601, + "time": 0.7127696793002917, "position": { "x": 4, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4623, + "noteOrder": 4625, "time": 0.7165014577259475, "position": { "x": 7, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4647, - "time": 0.7202332361516036, + "noteOrder": 4649, + "time": 0.7202332361516035, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4671, + "noteOrder": 4673, "time": 0.7239650145772596, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4695, + "noteOrder": 4697, "time": 0.7276967930029155, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4912, + "noteOrder": 4914, "time": 0.7612827988338193, "position": { "x": 7, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4936, - "time": 0.7650145772594753, + "noteOrder": 4938, + "time": 0.7650145772594752, "position": { "x": 6, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 4962, "time": 0.7687463556851313, "position": { "x": 4, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4984, - "time": 0.7724781341107873, + "noteOrder": 4986, + "time": 0.7724781341107871, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.820991253644315, + "noteOrder": 5299, + "time": 0.8209912536443149, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5321, + "noteOrder": 5324, "time": 0.8247230320699709, "position": { "x": 4, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5346, + "noteOrder": 5348, "time": 0.8284548104956269, "position": { "x": 6, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5370, - "time": 0.8321865889212829, + "noteOrder": 5372, + "time": 0.8321865889212828, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5586, + "noteOrder": 5589, "time": 0.8657725947521867, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5613, "time": 0.8695043731778426, "position": { "x": 4, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5634, - "time": 0.8732361516034985, + "noteOrder": 5637, + "time": 0.8732361516034987, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5659, - "time": 0.8769679300291546, + "noteOrder": 5661, + "time": 0.8769679300291545, "position": { "x": 3, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5683, - "time": 0.8806997084548106, + "noteOrder": 5685, + "time": 0.8806997084548105, "position": { "x": 7, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5707, + "noteOrder": 5709, "time": 0.8844314868804666, "position": { "x": 7, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5731, + "noteOrder": 5733, "time": 0.8881632653061224, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5755, + "noteOrder": 5757, "time": 0.8918950437317785, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5779, - "time": 0.8956268221574345, + "noteOrder": 5781, + "time": 0.8956268221574344, "position": { "x": 7, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5803, + "noteOrder": 5805, "time": 0.8993586005830905, "position": { "x": 3, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5875, + "noteOrder": 5878, "time": 0.9105539358600584, "position": { "x": 3, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5899, - "time": 0.9142857142857144, + "noteOrder": 5902, + "time": 0.9142857142857143, "position": { "x": 7, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5923, + "noteOrder": 5926, "time": 0.9180174927113703, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5947, + "noteOrder": 5950, "time": 0.9217492711370263, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9254810495626823, "position": { "x": 3, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.9292128279883383, "position": { "x": 3, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6020, - "time": 0.9329446064139942, + "noteOrder": 6022, + "time": 0.9329446064139941, "position": { "x": 7, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6044, + "noteOrder": 6046, "time": 0.9366763848396502, "position": { "x": 7, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 6068, + "noteOrder": 6070, "time": 0.9404081632653062, "position": { "x": 3, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6092, + "noteOrder": 6094, "time": 0.9441399416909622, "position": { "x": 7, @@ -2896,7 +2896,7 @@ "lineNodes": [ { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 530, "time": 0.0820991253644315, @@ -2919,7 +2919,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 554, "time": 0.08583090379008747, @@ -2942,10 +2942,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 722, - "time": 0.11195335276967931, + "noteOrder": 723, + "time": 0.1119533527696793, "position": { "x": 3, "y": 0 @@ -2965,9 +2965,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 746, + "noteOrder": 747, "time": 0.11568513119533529, "position": { "x": 3, @@ -2988,10 +2988,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 963, - "time": 0.1492711370262391, + "noteOrder": 964, + "time": 0.14927113702623906, "position": { "x": 3, "y": 0 @@ -3011,10 +3011,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1035, - "time": 0.16046647230320701, + "noteOrder": 1036, + "time": 0.160466472303207, "position": { "x": 3, "y": 0 @@ -3034,7 +3034,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1156, "time": 0.17912536443148688, @@ -3057,9 +3057,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1228, + "noteOrder": 1229, "time": 0.19032069970845483, "position": { "x": 7, @@ -3080,9 +3080,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1252, + "noteOrder": 1253, "time": 0.1940524781341108, "position": { "x": 3, @@ -3103,10 +3103,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1276, - "time": 0.19778425655976678, + "noteOrder": 1277, + "time": 0.19778425655976675, "position": { "x": 3, "y": 0 @@ -3126,9 +3126,9 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1300, + "noteOrder": 1301, "time": 0.20151603498542275, "position": { "x": 7, @@ -3149,10 +3149,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1324, - "time": 0.20524781341107876, + "noteOrder": 1325, + "time": 0.20524781341107873, "position": { "x": 7, "y": 0 @@ -3172,7 +3172,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1397, "time": 0.21644314868804668, @@ -3195,10 +3195,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, - "time": 0.22390670553935862, + "time": 0.2239067055393586, "position": { "x": 4, "y": 0 @@ -3218,7 +3218,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1397, "time": 0.21644314868804668, @@ -3241,10 +3241,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1445, - "time": 0.22390670553935862, + "time": 0.2239067055393586, "position": { "x": 6, "y": 0 @@ -3264,9 +3264,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1637, + "noteOrder": 1638, "time": 0.25376093294460644, "position": { "x": 8, @@ -3287,9 +3287,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1661, + "noteOrder": 1662, "time": 0.2574927113702624, "position": { "x": 6, @@ -3310,9 +3310,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1830, + "noteOrder": 1831, "time": 0.28361516034985423, "position": { "x": 7, @@ -3333,10 +3333,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1902, - "time": 0.29481049562682216, + "noteOrder": 1903, + "time": 0.2948104956268222, "position": { "x": 7, "y": 0 @@ -3356,7 +3356,7 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2023, "time": 0.3134693877551021, @@ -3379,9 +3379,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2047, + "noteOrder": 2048, "time": 0.31720116618075805, "position": { "x": 4, @@ -3402,9 +3402,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2215, + "noteOrder": 2216, "time": 0.34332361516034987, "position": { "x": 3, @@ -3425,10 +3425,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2287, - "time": 0.35451895043731785, + "noteOrder": 2288, + "time": 0.3545189504373178, "position": { "x": 3, "y": 0 @@ -3448,9 +3448,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2601, + "noteOrder": 2602, "time": 0.4030320699708455, "position": { "x": 3, @@ -3471,9 +3471,9 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.41422740524781343, "position": { "x": 3, @@ -3494,9 +3494,9 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2986, + "noteOrder": 2987, "time": 0.46274052478134114, "position": { "x": 7, @@ -3517,10 +3517,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3010, - "time": 0.4664723032069971, + "noteOrder": 3011, + "time": 0.46647230320699706, "position": { "x": 7, "y": 0 @@ -3540,9 +3540,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.4702040816326531, "position": { "x": 3, @@ -3563,10 +3563,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3058, - "time": 0.4739358600583091, + "noteOrder": 3059, + "time": 0.47393586005830907, "position": { "x": 3, "y": 0 @@ -3586,10 +3586,10 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3949, - "time": 0.6120116618075803, + "noteOrder": 3951, + "time": 0.6120116618075802, "position": { "x": 7, "y": 0 @@ -3609,10 +3609,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4021, - "time": 0.6232069970845482, + "noteOrder": 4023, + "time": 0.6232069970845481, "position": { "x": 7, "y": 0 @@ -3632,9 +3632,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4045, + "noteOrder": 4047, "time": 0.6269387755102042, "position": { "x": 3, @@ -3655,9 +3655,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4069, + "noteOrder": 4071, "time": 0.63067055393586, "position": { "x": 3, @@ -3678,9 +3678,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4093, + "noteOrder": 4095, "time": 0.6344023323615161, "position": { "x": 7, @@ -3701,9 +3701,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4117, + "noteOrder": 4119, "time": 0.6381341107871721, "position": { "x": 7, @@ -3724,10 +3724,10 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4142, - "time": 0.6418658892128281, + "noteOrder": 4143, + "time": 0.641865889212828, "position": { "x": 3, "y": 0 @@ -3747,9 +3747,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4214, + "noteOrder": 4215, "time": 0.653061224489796, "position": { "x": 3, @@ -3770,9 +3770,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4238, + "noteOrder": 4240, "time": 0.656793002915452, "position": { "x": 7, @@ -3793,9 +3793,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4262, + "noteOrder": 4264, "time": 0.6605247813411079, "position": { "x": 7, @@ -3816,9 +3816,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4286, + "noteOrder": 4288, "time": 0.6642565597667639, "position": { "x": 3, @@ -3839,10 +3839,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4310, - "time": 0.6679883381924199, + "noteOrder": 4312, + "time": 0.6679883381924198, "position": { "x": 3, "y": 0 @@ -3862,9 +3862,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4334, + "noteOrder": 4336, "time": 0.6717201166180758, "position": { "x": 6, @@ -3885,10 +3885,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4358, - "time": 0.6754518950437319, + "noteOrder": 4360, + "time": 0.6754518950437318, "position": { "x": 6, "y": 0 @@ -3908,9 +3908,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4382, + "noteOrder": 4384, "time": 0.6791836734693878, "position": { "x": 4, @@ -3931,9 +3931,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4406, + "noteOrder": 4408, "time": 0.6829154518950438, "position": { "x": 4, @@ -3954,10 +3954,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4719, - "time": 0.7314285714285714, + "noteOrder": 4721, + "time": 0.7314285714285715, "position": { "x": 7, "y": 0 @@ -3976,11 +3976,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4768, - "time": 0.7388921282798835, + "noteOrder": 4745, + "time": 0.7351603498542274, "position": { "x": 7, "y": 0 @@ -3994,18 +3994,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4816, - "time": 0.7463556851311953, + "noteOrder": 4745, + "time": 0.7351603498542274, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4022,13 +4022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4864, - "time": 0.7538192419825074, + "noteOrder": 4770, + "time": 0.7388921282798834, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4040,18 +4040,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5008, - "time": 0.7762099125364432, + "noteOrder": 4770, + "time": 0.7388921282798834, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4770, + "time": 0.7388921282798834, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4068,11 +4091,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5057, - "time": 0.7836734693877552, + "noteOrder": 4794, + "time": 0.7426239067055395, "position": { "x": 7, "y": 0 @@ -4086,18 +4109,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5105, - "time": 0.7911370262390671, + "noteOrder": 4794, + "time": 0.7426239067055395, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4114,13 +4137,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5153, - "time": 0.7986005830903791, + "noteOrder": 4818, + "time": 0.7463556851311953, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4132,18 +4155,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5201, - "time": 0.806064139941691, + "noteOrder": 4818, + "time": 0.7463556851311953, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4160,13 +4183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5249, - "time": 0.813527696793003, + "noteOrder": 4818, + "time": 0.7463556851311953, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4183,11 +4206,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5394, - "time": 0.8359183673469389, + "noteOrder": 4842, + "time": 0.7500874635568514, "position": { "x": 7, "y": 0 @@ -4206,13 +4229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5442, - "time": 0.8433819241982508, + "noteOrder": 4842, + "time": 0.7500874635568514, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4224,18 +4247,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5490, - "time": 0.8508454810495628, + "noteOrder": 4866, + "time": 0.7538192419825073, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4252,13 +4275,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5514, - "time": 0.8545772594752187, + "noteOrder": 4866, + "time": 0.7538192419825073, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4275,13 +4298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5538, - "time": 0.8583090379008746, + "noteOrder": 4866, + "time": 0.7538192419825073, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4298,13 +4321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5562, - "time": 0.8620408163265307, + "noteOrder": 4890, + "time": 0.7575510204081634, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4321,11 +4344,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5827, - "time": 0.9030903790087463, + "noteOrder": 4890, + "time": 0.7575510204081634, "position": { "x": 6, "y": 0 @@ -4339,16 +4362,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5851, - "time": 0.9068221574344024, + "noteOrder": 4914, + "time": 0.7612827988338193, "position": { "x": 6, "y": 0 @@ -4362,18 +4385,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5827, - "time": 0.9030903790087463, + "noteOrder": 4914, + "time": 0.7612827988338193, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4390,13 +4413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 178, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 5851, - "time": 0.9068221574344024, + "noteOrder": 5010, + "time": 0.7762099125364432, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4413,13 +4436,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6116, - "time": 0.9478717201166182, + "noteOrder": 5034, + "time": 0.7799416909620992, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4436,11 +4459,11 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6140, - "time": 0.9516034985422741, + "noteOrder": 5034, + "time": 0.7799416909620992, "position": { "x": 4, "y": 0 @@ -4459,13 +4482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6116, - "time": 0.9478717201166182, + "noteOrder": 5059, + "time": 0.7836734693877552, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4482,11 +4505,34 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5083, + "time": 0.7874052478134111, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6140, - "time": 0.9516034985422741, + "noteOrder": 5083, + "time": 0.7874052478134111, "position": { "x": 6, "y": 0 @@ -4505,11 +4551,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6164, - "time": 0.9553352769679301, + "noteOrder": 5107, + "time": 0.791137026239067, "position": { "x": 3, "y": 0 @@ -4528,11 +4574,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6248, - "time": 0.968396501457726, + "noteOrder": 5131, + "time": 0.7948688046647231, "position": { "x": 3, "y": 0 @@ -4551,13 +4597,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6212, - "time": 0.9627988338192421, + "noteOrder": 5131, + "time": 0.7948688046647231, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4569,16 +4615,890 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5155, + "time": 0.7986005830903791, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5179, + "time": 0.802332361516035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5179, + "time": 0.802332361516035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5203, + "time": 0.806064139941691, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8097959183673469, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5227, + "time": 0.8097959183673469, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5251, + "time": 0.813527696793003, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5251, + "time": 0.813527696793003, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5251, + "time": 0.813527696793003, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5275, + "time": 0.8172594752186589, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5275, + "time": 0.8172594752186589, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5299, + "time": 0.8209912536443149, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5299, + "time": 0.8209912536443149, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5396, + "time": 0.8359183673469388, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5420, + "time": 0.8396501457725948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5420, + "time": 0.8396501457725948, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5444, + "time": 0.8433819241982508, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5468, + "time": 0.8471137026239068, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5468, + "time": 0.8471137026239068, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5492, + "time": 0.8508454810495627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5516, + "time": 0.8545772594752188, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5540, + "time": 0.8583090379008746, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5564, + "time": 0.8620408163265306, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5829, + "time": 0.9030903790087464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5854, + "time": 0.9068221574344023, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5829, + "time": 0.9030903790087464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5854, + "time": 0.9068221574344023, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6118, + "time": 0.9478717201166181, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6143, + "time": 0.951603498542274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6118, + "time": 0.9478717201166181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6143, + "time": 0.951603498542274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6167, + "time": 0.9553352769679301, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6251, + "time": 0.9683965014577259, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6215, + "time": 0.962798833819242, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6248, - "time": 0.968396501457726, + "noteOrder": 6251, + "time": 0.9683965014577259, "position": { "x": 7, "y": 0 diff --git a/tracks/Without Words/info.json b/tracks/Without Words/info.json index 3f175b07..eead7c0b 100644 --- a/tracks/Without Words/info.json +++ b/tracks/Without Words/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "Without Words", - "SongLength": "129.488980", + "SongLength": "119.536327", "SongAuthorName": "Dominant Space", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/You Take My Soul/315_difficulty_1a.json b/tracks/You Take My Soul/315_difficulty_1a.json index 8d0db92f..98322668 100644 --- a/tracks/You Take My Soul/315_difficulty_1a.json +++ b/tracks/You Take My Soul/315_difficulty_1a.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 96, - "time": 0.0170162984233336, + "time": 0.017016298423333596, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 169, - "time": 0.0297785222408338, + "time": 0.029778522240833796, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 169, - "time": 0.0297785222408338, + "time": 0.029778522240833796, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 193, - "time": 0.0340325968466672, + "time": 0.03403259684666719, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 217, - "time": 0.038286671452500594, + "time": 0.0382866714525006, "position": { "x": 7, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 313, + "noteOrder": 314, "time": 0.0553029698758342, "position": { "x": 6, @@ -294,7 +294,7 @@ }, { "noteOrder": 386, - "time": 0.0680651936933344, + "time": 0.06806519369333439, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 386, - "time": 0.0680651936933344, + "time": 0.06806519369333439, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 434, - "time": 0.07657334290500119, + "time": 0.0765733429050012, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 434, - "time": 0.07657334290500119, + "time": 0.0765733429050012, "position": { "x": 7, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 506, - "time": 0.08933556672250138, + "time": 0.0893355667225014, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 531, "time": 0.09358964132833479, "position": { "x": 7, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 542, + "noteOrder": 543, "time": 0.0957166786312515, "position": { "x": 5, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 554, - "time": 0.0978437159341682, + "noteOrder": 555, + "time": 0.09784371593416819, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 747, + "noteOrder": 748, "time": 0.1318763127808354, "position": { "x": 6, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 771, - "time": 0.1361303873866688, + "noteOrder": 772, + "time": 0.13613038738666877, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 771, - "time": 0.1361303873866688, + "noteOrder": 772, + "time": 0.13613038738666877, "position": { "x": 3, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 868, - "time": 0.15314668581000238, + "time": 0.1531466858100024, "position": { "x": 7, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 892, - "time": 0.15740076041583578, + "time": 0.1574007604158358, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 940, - "time": 0.1659089096275026, + "noteOrder": 941, + "time": 0.16590890962750257, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 988, + "noteOrder": 989, "time": 0.1744170588391694, "position": { "x": 5, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1012, - "time": 0.17867113344500277, + "noteOrder": 1013, + "time": 0.1786711334450028, "position": { "x": 8, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1157, + "noteOrder": 1158, "time": 0.20419558108000319, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1181, - "time": 0.2084496556858366, + "noteOrder": 1182, + "time": 0.20844965568583657, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1205, - "time": 0.21270373029167, + "noteOrder": 1206, + "time": 0.21270373029166997, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1229, + "noteOrder": 1230, "time": 0.21695780489750338, "position": { "x": 6, @@ -1074,7 +1074,7 @@ }, { "noteOrder": 1278, - "time": 0.22546595410917017, + "time": 0.2254659541091702, "position": { "x": 5, "y": 0 @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1326, - "time": 0.23397410332083698, + "time": 0.23397410332083696, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.24248225253250377, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 1398, + "noteOrder": 1399, "time": 0.24673632713833718, "position": { "x": 2, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1422, + "noteOrder": 1423, "time": 0.2509904017441706, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1470, - "time": 0.25949855095583735, + "noteOrder": 1471, + "time": 0.2594985509558374, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1615, + "noteOrder": 1616, "time": 0.2850229985908378, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.319055595437505, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1832, + "noteOrder": 1833, "time": 0.3233096700433383, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1856, + "noteOrder": 1857, "time": 0.32756374464917176, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1880, - "time": 0.3318178192550052, + "noteOrder": 1881, + "time": 0.33181781925500514, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1880, - "time": 0.3318178192550052, + "noteOrder": 1881, + "time": 0.33181781925500514, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3360718938608386, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3360718938608386, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2097, + "noteOrder": 2098, "time": 0.3701044907075058, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2194, - "time": 0.38712078913083936, + "noteOrder": 2195, + "time": 0.3871207891308394, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.3913748637366728, + "noteOrder": 2219, + "time": 0.39137486373667274, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2242, - "time": 0.3956289383425062, + "noteOrder": 2243, + "time": 0.3956289383425061, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2266, + "noteOrder": 2267, "time": 0.39988301294833956, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2266, + "noteOrder": 2267, "time": 0.39988301294833956, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.404137087554173, + "noteOrder": 2291, + "time": 0.40413708755417294, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.404137087554173, + "noteOrder": 2291, + "time": 0.40413708755417294, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 2460, "time": 0.43391560979500676, "position": { "x": 7, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2471, + "noteOrder": 2472, "time": 0.43604264709792345, "position": { "x": 5, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.45093190821834034, + "noteOrder": 2556, + "time": 0.4509319082183404, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2567, - "time": 0.4530589455212571, + "noteOrder": 2568, + "time": 0.45305894552125703, "position": { "x": 5, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.48071043045917417, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2748, + "noteOrder": 2749, "time": 0.48496450506500755, "position": { "x": 2, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2772, - "time": 0.489218579670841, + "noteOrder": 2773, + "time": 0.4892185796708409, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2820, + "noteOrder": 2822, "time": 0.49772672888250774, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2869, + "noteOrder": 2870, "time": 0.5062348780941746, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2893, + "noteOrder": 2894, "time": 0.5104889527000079, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2917, + "noteOrder": 2918, "time": 0.5147430273058413, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2941, - "time": 0.5189971019116747, + "noteOrder": 2942, + "time": 0.5189971019116748, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2941, - "time": 0.5189971019116747, + "noteOrder": 2942, + "time": 0.5189971019116748, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5232511765175082, "position": { "x": 3, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5232511765175082, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2989, + "noteOrder": 2990, "time": 0.5275052511233416, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3013, + "noteOrder": 3015, "time": 0.531759325729175, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3039, "time": 0.5360134003350083, "position": { "x": 7, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3061, + "noteOrder": 3063, "time": 0.5402674749408417, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3086, - "time": 0.5445215495466752, + "noteOrder": 3087, + "time": 0.5445215495466751, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3110, + "noteOrder": 3111, "time": 0.5487756241525086, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3230, + "noteOrder": 3232, "time": 0.5700459971816756, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.5870622956050091, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3375, + "noteOrder": 3376, "time": 0.595570444816676, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3423, + "noteOrder": 3424, "time": 0.6040785940283427, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6253489670575098, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6253489670575098, "position": { "x": 6, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.6338571162691766, + "noteOrder": 3593, + "time": 0.6338571162691765, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3617, "time": 0.63811119087501, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3640, + "noteOrder": 3642, "time": 0.6423652654808434, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3690, "time": 0.6508734146925101, "position": { "x": 6, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3714, "time": 0.6551274892983435, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3736, + "noteOrder": 3738, "time": 0.6593815639041769, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3785, + "noteOrder": 3786, "time": 0.6678897131158438, "position": { "x": 2, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3833, - "time": 0.6763978623275106, + "noteOrder": 3834, + "time": 0.6763978623275105, "position": { "x": 8, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.6934141607508442, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3978, - "time": 0.7019223099625109, + "noteOrder": 3979, + "time": 0.701922309962511, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4027, "time": 0.7104304591741778, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4122, + "noteOrder": 4124, "time": 0.7274467575975113, "position": { "x": 3, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.7572252798383451, + "noteOrder": 4293, + "time": 0.7572252798383452, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.7614793544441786, + "noteOrder": 4317, + "time": 0.7614793544441785, "position": { "x": 4, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.7614793544441786, + "noteOrder": 4317, + "time": 0.7614793544441785, "position": { "x": 6, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4363, + "noteOrder": 4365, "time": 0.7699875036558453, "position": { "x": 3, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4411, - "time": 0.7784956528675122, + "noteOrder": 4413, + "time": 0.7784956528675121, "position": { "x": 3, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4508, + "noteOrder": 4510, "time": 0.7955119512908457, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4628, + "noteOrder": 4630, "time": 0.8167823243200127, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4652, + "noteOrder": 4654, "time": 0.8210363989258461, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4677, + "noteOrder": 4679, "time": 0.8252904735316795, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4677, + "noteOrder": 4679, "time": 0.8252904735316795, "position": { "x": 4, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4701, - "time": 0.8295445481375129, + "noteOrder": 4703, + "time": 0.829544548137513, "position": { "x": 7, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4749, + "noteOrder": 4751, "time": 0.8380526973491798, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4773, + "noteOrder": 4775, "time": 0.8423067719550131, "position": { "x": 6, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4797, + "noteOrder": 4799, "time": 0.8465608465608466, "position": { "x": 5, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4845, + "noteOrder": 4847, "time": 0.8550689957725133, "position": { "x": 5, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4869, - "time": 0.8593230703783467, + "noteOrder": 4871, + "time": 0.8593230703783468, "position": { "x": 3, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4894, - "time": 0.8635771449841801, + "noteOrder": 4896, + "time": 0.86357714498418, "position": { "x": 5, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4990, - "time": 0.8805934434075138, + "noteOrder": 4992, + "time": 0.8805934434075137, "position": { "x": 7, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.9146260402541809, "position": { "x": 5, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5255, + "noteOrder": 5257, "time": 0.9273882640716811, "position": { "x": 7, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5279, - "time": 0.9316423386775144, + "noteOrder": 5281, + "time": 0.9316423386775146, "position": { "x": 3, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5327, + "noteOrder": 5330, "time": 0.9401504878891813, "position": { "x": 8, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5376, - "time": 0.9486586371008482, + "noteOrder": 5378, + "time": 0.9486586371008481, "position": { "x": 2, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5400, - "time": 0.9529127117066816, + "noteOrder": 5402, + "time": 0.9529127117066815, "position": { "x": 7, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5424, - "time": 0.9571667863125148, + "noteOrder": 5426, + "time": 0.957166786312515, "position": { "x": 3, "y": 0 @@ -2856,7 +2856,7 @@ "lineNodes": [ { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.051048895270000796, @@ -2879,9 +2879,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 313, + "noteOrder": 314, "time": 0.0553029698758342, "position": { "x": 7, @@ -2902,10 +2902,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 337, - "time": 0.0595570444816676, + "noteOrder": 338, + "time": 0.05955704448166759, "position": { "x": 3, "y": 0 @@ -2925,7 +2925,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, "time": 0.06381111908750099, @@ -2948,7 +2948,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.10209779054000159, @@ -2969,12 +2969,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 31, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 591, + "time": 0.10422482784291828, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 31, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 591, + "time": 0.10422482784291828, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 603, - "time": 0.106351865145835, + "time": 0.10635186514583499, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 615, + "time": 0.10847890244875169, "position": { "x": 3, "y": 0 @@ -2992,9 +3061,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 615, + "time": 0.10847890244875169, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 627, "time": 0.1106059397516684, @@ -3015,12 +3107,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 639, + "time": 0.1127329770545851, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 639, + "time": 0.1127329770545851, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 651, + "time": 0.1148600143575018, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 651, + "time": 0.1148600143575018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.1191140889633352, + "time": 0.11911408896333518, "position": { "x": 3, "y": 0 @@ -3040,7 +3224,7 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 699, "time": 0.12336816356916859, @@ -3063,7 +3247,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, "time": 0.12762223817500198, @@ -3086,9 +3270,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 747, + "noteOrder": 748, "time": 0.1318763127808354, "position": { "x": 7, @@ -3109,10 +3293,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, - "time": 0.15314668581000238, + "time": 0.1531466858100024, "position": { "x": 3, "y": 0 @@ -3132,10 +3316,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 892, - "time": 0.15740076041583578, + "time": 0.1574007604158358, "position": { "x": 3, "y": 0 @@ -3155,9 +3339,9 @@ }, { "lineGroupId": 47, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 964, + "noteOrder": 965, "time": 0.17016298423333598, "position": { "x": 6, @@ -3178,9 +3362,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 964, + "noteOrder": 965, "time": 0.17016298423333598, "position": { "x": 7, @@ -3201,9 +3385,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 988, + "noteOrder": 989, "time": 0.1744170588391694, "position": { "x": 7, @@ -3224,7 +3408,7 @@ }, { "lineGroupId": 52, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1061, "time": 0.18717928265666958, @@ -3247,7 +3431,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1061, "time": 0.18717928265666958, @@ -3270,7 +3454,7 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1085, "time": 0.191433357262503, @@ -3293,10 +3477,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1109, - "time": 0.1956874318683364, + "time": 0.19568743186833637, "position": { "x": 7, "y": 0 @@ -3316,7 +3500,7 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1133, "time": 0.19994150647416978, @@ -3339,7 +3523,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1254, "time": 0.2212118795033368, @@ -3362,10 +3546,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1278, - "time": 0.22546595410917017, + "time": 0.2254659541091702, "position": { "x": 7, "y": 0 @@ -3385,10 +3569,10 @@ }, { "lineGroupId": 65, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1350, - "time": 0.2382281779266704, + "time": 0.23822817792667036, "position": { "x": 4, "y": 0 @@ -3408,10 +3592,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1350, - "time": 0.2382281779266704, + "time": 0.23822817792667036, "position": { "x": 3, "y": 0 @@ -3431,9 +3615,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1374, + "noteOrder": 1375, "time": 0.24248225253250377, "position": { "x": 3, @@ -3454,9 +3638,9 @@ }, { "lineGroupId": 69, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.25524447635000397, "position": { "x": 6, @@ -3477,9 +3661,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.25524447635000397, "position": { "x": 7, @@ -3500,10 +3684,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1470, - "time": 0.25949855095583735, + "noteOrder": 1471, + "time": 0.2594985509558374, "position": { "x": 6, "y": 0 @@ -3523,7 +3707,7 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1495, "time": 0.2637526255616708, @@ -3546,7 +3730,7 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1519, "time": 0.26800670016750416, @@ -3569,10 +3753,10 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1543, - "time": 0.2722607747733376, + "time": 0.27226077477333754, "position": { "x": 7, "y": 0 @@ -3591,13 +3775,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1567, - "time": 0.276514849379171, + "noteOrder": 1555, + "time": 0.2743878120762543, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3609,18 +3793,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1591, - "time": 0.28076892398500436, + "noteOrder": 1555, + "time": 0.2743878120762543, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3637,11 +3821,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, - "time": 0.2892770731966712, + "noteOrder": 1568, + "time": 0.276514849379171, "position": { "x": 3, "y": 0 @@ -3660,11 +3844,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1663, - "time": 0.29353114780250456, + "noteOrder": 1580, + "time": 0.2786418866820877, "position": { "x": 3, "y": 0 @@ -3678,18 +3862,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1687, - "time": 0.297785222408338, + "noteOrder": 1580, + "time": 0.2786418866820877, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3706,11 +3890,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1736, - "time": 0.30629337162000475, + "noteOrder": 1592, + "time": 0.28076892398500436, "position": { "x": 7, "y": 0 @@ -3728,14 +3912,3763 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1604, + "time": 0.2828959612879211, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1604, + "time": 0.2828959612879211, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1616, + "time": 0.2850229985908378, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1616, + "time": 0.2850229985908378, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1640, + "time": 0.2892770731966712, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1652, + "time": 0.29140411049958787, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1652, + "time": 0.29140411049958787, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1664, + "time": 0.29353114780250456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1664, + "time": 0.29353114780250456, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1664, + "time": 0.29353114780250456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1676, + "time": 0.29565818510542125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1676, + "time": 0.29565818510542125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1688, + "time": 0.297785222408338, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1688, + "time": 0.297785222408338, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1688, + "time": 0.297785222408338, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1700, + "time": 0.2999122597112547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1700, + "time": 0.2999122597112547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1712, + "time": 0.30203929701417137, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1712, + "time": 0.30203929701417137, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1736, + "time": 0.3062933716200048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1748, + "time": 0.30842040892292144, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1748, + "time": 0.30842040892292144, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1760, + "time": 0.3105474462258382, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1760, + "time": 0.3105474462258382, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1760, + "time": 0.3105474462258382, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1773, + "time": 0.3126744835287549, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1773, + "time": 0.3126744835287549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1785, + "time": 0.3148015208316716, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1785, + "time": 0.3148015208316716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1785, + "time": 0.3148015208316716, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1797, + "time": 0.31692855813458826, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1797, + "time": 0.31692855813458826, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1809, + "time": 0.319055595437505, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1809, + "time": 0.319055595437505, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1929, + "time": 0.34032596846667196, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1941, + "time": 0.3424530057695887, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1953, + "time": 0.34458004307250534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1965, + "time": 0.3467070803754221, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1978, + "time": 0.3488341176783388, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1990, + "time": 0.3509611549812555, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2002, + "time": 0.35308819228417215, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1929, + "time": 0.34032596846667196, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1941, + "time": 0.3424530057695887, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1953, + "time": 0.34458004307250534, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1965, + "time": 0.3467070803754221, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1978, + "time": 0.3488341176783388, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1990, + "time": 0.3509611549812555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2002, + "time": 0.35308819228417215, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2026, + "time": 0.3573422668900056, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2038, + "time": 0.3594693041929222, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2038, + "time": 0.3594693041929222, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2050, + "time": 0.36159634149583897, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2050, + "time": 0.36159634149583897, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2050, + "time": 0.36159634149583897, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2062, + "time": 0.36372337879875566, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2062, + "time": 0.36372337879875566, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2074, + "time": 0.36585041610167235, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2074, + "time": 0.36585041610167235, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2074, + "time": 0.36585041610167235, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2086, + "time": 0.36797745340458904, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2086, + "time": 0.36797745340458904, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2098, + "time": 0.3701044907075058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2098, + "time": 0.3701044907075058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2122, + "time": 0.37435856531333916, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2134, + "time": 0.37648560261625585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2134, + "time": 0.37648560261625585, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3786126399191726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3786126399191726, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3786126399191726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2158, + "time": 0.38073967722208923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2158, + "time": 0.38073967722208923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2170, + "time": 0.382866714525006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2170, + "time": 0.382866714525006, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.382866714525006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2183, + "time": 0.38499375182792267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2183, + "time": 0.38499375182792267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2195, + "time": 0.3871207891308394, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2195, + "time": 0.3871207891308394, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2315, + "time": 0.40839116216000637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2327, + "time": 0.41051819946292306, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2339, + "time": 0.41264523676583975, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2351, + "time": 0.4147722740687565, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2363, + "time": 0.41689931137167313, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2375, + "time": 0.4190263486745899, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2387, + "time": 0.42115338597750657, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2315, + "time": 0.40839116216000637, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2327, + "time": 0.41051819946292306, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2339, + "time": 0.41264523676583975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2351, + "time": 0.4147722740687565, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2363, + "time": 0.41689931137167313, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2375, + "time": 0.4190263486745899, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 2387, + "time": 0.42115338597750657, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2412, + "time": 0.42540746058333995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2424, + "time": 0.42753449788625664, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2424, + "time": 0.42753449788625664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2436, + "time": 0.4296615351891734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2448, + "time": 0.43178857249209, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2448, + "time": 0.43178857249209, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2484, + "time": 0.43816968440084014, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2496, + "time": 0.44029672170375683, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2496, + "time": 0.44029672170375683, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2508, + "time": 0.4424237590066736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2520, + "time": 0.44455079630959027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2520, + "time": 0.44455079630959027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2532, + "time": 0.44667783361250696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2544, + "time": 0.44880487091542365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2544, + "time": 0.44880487091542365, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2580, + "time": 0.4551859828241738, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2592, + "time": 0.45731302012709046, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2592, + "time": 0.45731302012709046, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2605, + "time": 0.4594400574300072, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2617, + "time": 0.46156709473292384, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2617, + "time": 0.46156709473292384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2629, + "time": 0.46369413203584053, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2629, + "time": 0.46369413203584053, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2629, + "time": 0.46369413203584053, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2641, + "time": 0.4658211693387573, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2641, + "time": 0.4658211693387573, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2653, + "time": 0.4679482066416739, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2653, + "time": 0.4679482066416739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2653, + "time": 0.4679482066416739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2665, + "time": 0.47007524394459066, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2665, + "time": 0.47007524394459066, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2677, + "time": 0.47220228124750735, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2677, + "time": 0.47220228124750735, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2677, + "time": 0.47220228124750735, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2689, + "time": 0.47432931855042404, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2689, + "time": 0.47432931855042404, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2701, + "time": 0.47645635585334073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2701, + "time": 0.47645635585334073, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2701, + "time": 0.47645635585334073, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2725, + "time": 0.48071043045917417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2797, + "time": 0.49347265427667436, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2797, + "time": 0.49347265427667436, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2822, + "time": 0.49772672888250774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2846, + "time": 0.5019808034883412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5062348780941746, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3135, + "time": 0.553029698758342, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3159, + "time": 0.5572837733641754, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3135, + "time": 0.553029698758342, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3159, + "time": 0.5572837733641754, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3473, + "time": 0.6125867432400096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3521, + "time": 0.6210948924516764, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3497, + "time": 0.6168408178458429, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3521, + "time": 0.6210948924516764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3569, + "time": 0.6296030416633432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6466193400866767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6466193400866767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3762, + "time": 0.6636356385100103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3762, + "time": 0.6636356385100103, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3786, + "time": 0.6678897131158438, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3810, + "time": 0.6721437877216772, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3834, + "time": 0.6763978623275105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3859, + "time": 0.6806519369333439, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3871, + "time": 0.6827789742362605, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3871, + "time": 0.6827789742362605, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3883, + "time": 0.6849060115391774, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3895, + "time": 0.687033048842094, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3895, + "time": 0.687033048842094, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3907, + "time": 0.6891600861450107, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3919, + "time": 0.6912871234479274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3919, + "time": 0.6912871234479274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3931, + "time": 0.6934141607508442, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1760, - "time": 0.3105474462258382, + "noteOrder": 3931, + "time": 0.6934141607508442, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3752,11 +7685,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1784, - "time": 0.31480152083167157, + "noteOrder": 3955, + "time": 0.6976682353566775, "position": { "x": 7, "y": 0 @@ -3775,11 +7708,195 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1928, - "time": 0.34032596846667196, + "noteOrder": 3967, + "time": 0.6997952726595942, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3967, + "time": 0.6997952726595942, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3979, + "time": 0.701922309962511, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3979, + "time": 0.701922309962511, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7061763845683443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4015, + "time": 0.708303421871261, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4015, + "time": 0.708303421871261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4027, + "time": 0.7104304591741778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4027, + "time": 0.7104304591741778, "position": { "x": 4, "y": 0 @@ -3798,11 +7915,80 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7146845337800112, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7168115710829278, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7168115710829278, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1941, - "time": 0.34245300576958865, + "noteOrder": 4076, + "time": 0.7189386083858444, "position": { "x": 4, "y": 0 @@ -3816,18 +8002,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1953, - "time": 0.34458004307250534, + "noteOrder": 4076, + "time": 0.7189386083858444, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3839,16 +8025,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 3, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1965, - "time": 0.3467070803754221, + "noteOrder": 4076, + "time": 0.7189386083858444, "position": { "x": 3, "y": 0 @@ -3867,13 +8053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 4, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1977, - "time": 0.3488341176783388, + "noteOrder": 4088, + "time": 0.7210656456887613, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3890,11 +8076,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 5, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1989, - "time": 0.35096115498125546, + "noteOrder": 4088, + "time": 0.7210656456887613, "position": { "x": 4, "y": 0 @@ -3913,13 +8099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 6, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2001, - "time": 0.3530881922841722, + "noteOrder": 4100, + "time": 0.7231926829916779, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3936,11 +8122,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1928, - "time": 0.34032596846667196, + "noteOrder": 4100, + "time": 0.7231926829916779, "position": { "x": 6, "y": 0 @@ -3954,18 +8140,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 1941, - "time": 0.34245300576958865, + "noteOrder": 4100, + "time": 0.7231926829916779, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3982,13 +8168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 185, "indexInLine": 2, "isSliding": false, - "noteOrder": 1953, - "time": 0.34458004307250534, + "noteOrder": 4112, + "time": 0.7253197202945946, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4005,13 +8191,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 185, "indexInLine": 3, "isSliding": false, - "noteOrder": 1965, - "time": 0.3467070803754221, + "noteOrder": 4112, + "time": 0.7253197202945946, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4028,13 +8214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 185, "indexInLine": 4, "isSliding": false, - "noteOrder": 1977, - "time": 0.3488341176783388, + "noteOrder": 4124, + "time": 0.7274467575975113, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4051,11 +8237,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 185, "indexInLine": 5, "isSliding": false, - "noteOrder": 1989, - "time": 0.35096115498125546, + "noteOrder": 4124, + "time": 0.7274467575975113, "position": { "x": 6, "y": 0 @@ -4074,13 +8260,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 6, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2001, - "time": 0.3530881922841722, + "noteOrder": 4148, + "time": 0.7317008322033447, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4092,16 +8278,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2025, - "time": 0.35734226689000553, + "noteOrder": 4160, + "time": 0.7338278695062614, "position": { "x": 7, "y": 0 @@ -4115,18 +8301,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2049, - "time": 0.36159634149583897, + "noteOrder": 4160, + "time": 0.7338278695062614, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4143,13 +8329,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2073, - "time": 0.36585041610167235, + "noteOrder": 4172, + "time": 0.7359549068091781, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4161,18 +8347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2121, - "time": 0.37435856531333916, + "noteOrder": 4172, + "time": 0.7359549068091781, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4189,13 +8375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2145, - "time": 0.37861263991917254, + "noteOrder": 4172, + "time": 0.7359549068091781, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4212,13 +8398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2170, - "time": 0.382866714525006, + "noteOrder": 4184, + "time": 0.7380819441120949, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4230,16 +8416,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2314, - "time": 0.40839116216000637, + "noteOrder": 4184, + "time": 0.7380819441120949, "position": { "x": 6, "y": 0 @@ -4258,11 +8444,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2326, - "time": 0.41051819946292306, + "noteOrder": 4196, + "time": 0.7402089814150116, "position": { "x": 6, "y": 0 @@ -4281,13 +8467,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 2, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2338, - "time": 0.41264523676583975, + "noteOrder": 4196, + "time": 0.7402089814150116, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4304,11 +8490,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 3, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2350, - "time": 0.41477227406875644, + "noteOrder": 4196, + "time": 0.7402089814150116, "position": { "x": 7, "y": 0 @@ -4322,18 +8508,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 4, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2362, - "time": 0.4168993113716732, + "noteOrder": 4208, + "time": 0.7423360187179282, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4345,16 +8531,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 5, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2374, - "time": 0.4190263486745899, + "noteOrder": 4208, + "time": 0.7423360187179282, "position": { "x": 6, "y": 0 @@ -4368,18 +8554,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 6, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2387, - "time": 0.42115338597750657, + "noteOrder": 4220, + "time": 0.744463056020845, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4391,16 +8577,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2314, - "time": 0.40839116216000637, + "noteOrder": 4220, + "time": 0.744463056020845, "position": { "x": 4, "y": 0 @@ -4419,13 +8605,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 2326, - "time": 0.41051819946292306, + "noteOrder": 4220, + "time": 0.744463056020845, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4437,18 +8623,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 190, "indexInLine": 2, "isSliding": false, - "noteOrder": 2338, - "time": 0.41264523676583975, + "noteOrder": 4232, + "time": 0.7465900933237616, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4460,18 +8646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 190, "indexInLine": 3, "isSliding": false, - "noteOrder": 2350, - "time": 0.41477227406875644, + "noteOrder": 4232, + "time": 0.7465900933237616, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4483,18 +8669,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 4, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2362, - "time": 0.4168993113716732, + "noteOrder": 4244, + "time": 0.7487171306266783, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4511,13 +8697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 5, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2374, - "time": 0.4190263486745899, + "noteOrder": 4256, + "time": 0.7508441679295951, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4534,11 +8720,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 6, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2387, - "time": 0.42115338597750657, + "noteOrder": 4256, + "time": 0.7508441679295951, "position": { "x": 4, "y": 0 @@ -4557,13 +8743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2411, - "time": 0.42540746058334, + "noteOrder": 4269, + "time": 0.7529712052325117, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4575,16 +8761,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2435, - "time": 0.4296615351891733, + "noteOrder": 4281, + "time": 0.7550982425354283, "position": { "x": 7, "y": 0 @@ -4603,13 +8789,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2483, - "time": 0.4381696844008402, + "noteOrder": 4281, + "time": 0.7550982425354283, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4621,18 +8807,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2507, - "time": 0.4424237590066736, + "noteOrder": 4293, + "time": 0.7572252798383452, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4649,13 +8835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2531, - "time": 0.44667783361250696, + "noteOrder": 4293, + "time": 0.7572252798383452, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4667,18 +8853,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2579, - "time": 0.4551859828241738, + "noteOrder": 4341, + "time": 0.765733429050012, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4690,16 +8876,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2603, - "time": 0.4594400574300072, + "noteOrder": 4353, + "time": 0.7678604663529286, "position": { "x": 3, "y": 0 @@ -4718,13 +8904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2628, - "time": 0.46369413203584053, + "noteOrder": 4353, + "time": 0.7678604663529286, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4736,18 +8922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2652, - "time": 0.46794820664167397, + "noteOrder": 4365, + "time": 0.7699875036558453, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4764,13 +8950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2676, - "time": 0.47220228124750735, + "noteOrder": 4365, + "time": 0.7699875036558453, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4782,16 +8968,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2700, - "time": 0.4764563558533408, + "noteOrder": 4389, + "time": 0.7742415782616788, "position": { "x": 3, "y": 0 @@ -4805,16 +8991,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2724, - "time": 0.48071043045917417, + "noteOrder": 4401, + "time": 0.7763686155645955, "position": { "x": 3, "y": 0 @@ -4828,18 +9014,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2796, - "time": 0.49347265427667436, + "noteOrder": 4401, + "time": 0.7763686155645955, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4851,18 +9037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2796, - "time": 0.49347265427667436, + "noteOrder": 4413, + "time": 0.7784956528675121, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4879,13 +9065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2820, - "time": 0.49772672888250774, + "noteOrder": 4413, + "time": 0.7784956528675121, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4902,13 +9088,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2845, - "time": 0.5019808034883412, + "noteOrder": 4437, + "time": 0.7827497274733455, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4925,13 +9111,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2869, - "time": 0.5062348780941746, + "noteOrder": 4449, + "time": 0.7848767647762622, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4948,11 +9134,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3134, - "time": 0.553029698758342, + "noteOrder": 4449, + "time": 0.7848767647762622, "position": { "x": 6, "y": 0 @@ -4966,16 +9152,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3158, - "time": 0.5572837733641753, + "noteOrder": 4461, + "time": 0.787003802079179, "position": { "x": 6, "y": 0 @@ -4989,16 +9175,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3134, - "time": 0.553029698758342, + "noteOrder": 4461, + "time": 0.787003802079179, "position": { "x": 4, "y": 0 @@ -5017,13 +9203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 3158, - "time": 0.5572837733641753, + "noteOrder": 4461, + "time": 0.787003802079179, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5035,18 +9221,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3471, - "time": 0.6125867432400095, + "noteOrder": 4474, + "time": 0.7891308393820956, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5058,18 +9244,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3520, - "time": 0.6210948924516764, + "noteOrder": 4474, + "time": 0.7891308393820956, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5081,18 +9267,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3495, - "time": 0.6168408178458429, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5109,13 +9295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3520, - "time": 0.6210948924516764, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5132,13 +9318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3568, - "time": 0.6296030416633431, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5155,13 +9341,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3664, - "time": 0.6466193400866767, + "noteOrder": 4498, + "time": 0.7933849139879291, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5178,13 +9364,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3664, - "time": 0.6466193400866767, + "noteOrder": 4498, + "time": 0.7933849139879291, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5196,18 +9382,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3761, - "time": 0.6636356385100104, + "noteOrder": 4510, + "time": 0.7955119512908457, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5219,16 +9405,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3761, - "time": 0.6636356385100104, + "noteOrder": 4510, + "time": 0.7955119512908457, "position": { "x": 4, "y": 0 @@ -5247,13 +9433,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 3785, - "time": 0.6678897131158438, + "noteOrder": 4534, + "time": 0.7997660258966791, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5265,18 +9451,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3809, - "time": 0.6721437877216772, + "noteOrder": 4546, + "time": 0.8018930631995959, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5293,13 +9479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3833, - "time": 0.6763978623275106, + "noteOrder": 4546, + "time": 0.8018930631995959, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5316,13 +9502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3857, - "time": 0.6806519369333439, + "noteOrder": 4558, + "time": 0.8040201005025125, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5334,18 +9520,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3881, - "time": 0.6849060115391773, + "noteOrder": 4558, + "time": 0.8040201005025125, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5362,11 +9548,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3905, - "time": 0.6891600861450107, + "noteOrder": 4558, + "time": 0.8040201005025125, "position": { "x": 3, "y": 0 @@ -5385,13 +9571,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3953, - "time": 0.6976682353566775, + "noteOrder": 4570, + "time": 0.8061471378054292, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5403,18 +9589,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4002, - "time": 0.7061763845683444, + "noteOrder": 4570, + "time": 0.8061471378054292, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5431,13 +9617,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4050, - "time": 0.7146845337800111, + "noteOrder": 4582, + "time": 0.8082741751083459, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5449,18 +9635,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4074, - "time": 0.7189386083858444, + "noteOrder": 4582, + "time": 0.8082741751083459, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5477,11 +9663,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4098, - "time": 0.7231926829916779, + "noteOrder": 4582, + "time": 0.8082741751083459, "position": { "x": 3, "y": 0 @@ -5500,13 +9686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4146, - "time": 0.7317008322033447, + "noteOrder": 4594, + "time": 0.8104012124112627, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5518,18 +9704,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4170, - "time": 0.7359549068091782, + "noteOrder": 4594, + "time": 0.8104012124112627, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5546,13 +9732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4194, - "time": 0.7402089814150116, + "noteOrder": 4606, + "time": 0.8125282497141794, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5564,18 +9750,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4219, - "time": 0.744463056020845, + "noteOrder": 4606, + "time": 0.8125282497141794, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5592,11 +9778,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4243, - "time": 0.7487171306266783, + "noteOrder": 4606, + "time": 0.8125282497141794, "position": { "x": 3, "y": 0 @@ -5615,13 +9801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4267, - "time": 0.7529712052325117, + "noteOrder": 4618, + "time": 0.814655287017096, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5633,18 +9819,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4339, - "time": 0.765733429050012, + "noteOrder": 4618, + "time": 0.814655287017096, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5661,11 +9847,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4387, - "time": 0.7742415782616787, + "noteOrder": 4703, + "time": 0.829544548137513, "position": { "x": 3, "y": 0 @@ -5679,18 +9865,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4436, - "time": 0.7827497274733456, + "noteOrder": 4823, + "time": 0.8508149211666799, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5707,11 +9893,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4460, - "time": 0.7870038020791789, + "noteOrder": 4823, + "time": 0.8508149211666799, "position": { "x": 7, "y": 0 @@ -5730,11 +9916,11 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4484, - "time": 0.7912578766850124, + "noteOrder": 4920, + "time": 0.8678312195900135, "position": { "x": 7, "y": 0 @@ -5748,16 +9934,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4532, - "time": 0.7997660258966791, + "noteOrder": 4920, + "time": 0.8678312195900135, "position": { "x": 3, "y": 0 @@ -5771,16 +9957,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4556, - "time": 0.8040201005025126, + "noteOrder": 4932, + "time": 0.8699582568929302, "position": { "x": 3, "y": 0 @@ -5799,13 +9985,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4580, - "time": 0.808274175108346, + "noteOrder": 4932, + "time": 0.8699582568929302, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5817,18 +10003,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4604, - "time": 0.8125282497141794, + "noteOrder": 4944, + "time": 0.8720852941958469, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5840,18 +10026,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4701, - "time": 0.8295445481375129, + "noteOrder": 4956, + "time": 0.8742123314987637, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5863,18 +10049,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4821, - "time": 0.85081492116668, + "noteOrder": 4956, + "time": 0.8742123314987637, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5886,18 +10072,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4821, - "time": 0.85081492116668, + "noteOrder": 4968, + "time": 0.8763393688016803, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5909,18 +10095,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4918, - "time": 0.8678312195900135, + "noteOrder": 4980, + "time": 0.878466406104597, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5932,18 +10118,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4918, - "time": 0.8678312195900135, + "noteOrder": 4980, + "time": 0.878466406104597, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5960,13 +10146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4942, - "time": 0.8720852941958469, + "noteOrder": 4992, + "time": 0.8805934434075137, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5978,16 +10164,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4966, - "time": 0.8763393688016804, + "noteOrder": 4992, + "time": 0.8805934434075137, "position": { "x": 3, "y": 0 @@ -6007,9 +10193,9 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5014, + "noteOrder": 5016, "time": 0.8848475180133472, "position": { "x": 4, @@ -6030,10 +10216,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5026, - "time": 0.8869745553162639, + "noteOrder": 5028, + "time": 0.8869745553162638, "position": { "x": 4, "y": 0 @@ -6053,10 +10239,10 @@ }, { "lineGroupId": 227, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5038, - "time": 0.8891015926191804, + "noteOrder": 5040, + "time": 0.8891015926191805, "position": { "x": 3, "y": 0 @@ -6076,9 +10262,9 @@ }, { "lineGroupId": 227, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8912286299220972, "position": { "x": 3, @@ -6099,9 +10285,9 @@ }, { "lineGroupId": 227, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5062, + "noteOrder": 5064, "time": 0.8933556672250139, "position": { "x": 4, @@ -6122,10 +10308,10 @@ }, { "lineGroupId": 227, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5074, - "time": 0.8954827045279306, + "noteOrder": 5076, + "time": 0.8954827045279307, "position": { "x": 4, "y": 0 @@ -6145,9 +10331,9 @@ }, { "lineGroupId": 227, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5086, + "noteOrder": 5088, "time": 0.8976097418308473, "position": { "x": 3, @@ -6168,9 +10354,9 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5014, + "noteOrder": 5016, "time": 0.8848475180133472, "position": { "x": 6, @@ -6191,10 +10377,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5026, - "time": 0.8869745553162639, + "noteOrder": 5028, + "time": 0.8869745553162638, "position": { "x": 6, "y": 0 @@ -6214,10 +10400,10 @@ }, { "lineGroupId": 228, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5038, - "time": 0.8891015926191804, + "noteOrder": 5040, + "time": 0.8891015926191805, "position": { "x": 6, "y": 0 @@ -6237,9 +10423,9 @@ }, { "lineGroupId": 228, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.8912286299220972, "position": { "x": 6, @@ -6260,9 +10446,9 @@ }, { "lineGroupId": 228, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5062, + "noteOrder": 5064, "time": 0.8933556672250139, "position": { "x": 6, @@ -6283,10 +10469,10 @@ }, { "lineGroupId": 228, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5074, - "time": 0.8954827045279306, + "noteOrder": 5076, + "time": 0.8954827045279307, "position": { "x": 6, "y": 0 @@ -6306,9 +10492,9 @@ }, { "lineGroupId": 228, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5086, + "noteOrder": 5088, "time": 0.8976097418308473, "position": { "x": 6, @@ -6329,10 +10515,10 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5111, - "time": 0.9018638164366807, + "noteOrder": 5113, + "time": 0.9018638164366808, "position": { "x": 5, "y": 0 @@ -6352,10 +10538,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5135, - "time": 0.9061178910425142, + "noteOrder": 5137, + "time": 0.9061178910425141, "position": { "x": 5, "y": 0 @@ -6375,10 +10561,10 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5135, - "time": 0.9061178910425142, + "noteOrder": 5137, + "time": 0.9061178910425141, "position": { "x": 5, "y": 0 @@ -6398,9 +10584,9 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5159, + "noteOrder": 5161, "time": 0.9103719656483475, "position": { "x": 5, @@ -6421,9 +10607,9 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5159, + "noteOrder": 5161, "time": 0.9103719656483475, "position": { "x": 5, @@ -6444,9 +10630,9 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.9146260402541809, "position": { "x": 5, @@ -6467,9 +10653,9 @@ }, { "lineGroupId": 233, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5207, + "noteOrder": 5209, "time": 0.9188801148600144, "position": { "x": 7, @@ -6488,11 +10674,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 233, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5221, + "time": 0.921007152162931, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 233, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5221, + "time": 0.921007152162931, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5231, + "noteOrder": 5233, "time": 0.9231341894658477, "position": { "x": 3, @@ -6511,12 +10743,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5245, + "time": 0.9252612267687644, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5245, + "time": 0.9252612267687644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5303, - "time": 0.9358964132833479, + "noteOrder": 5306, + "time": 0.9358964132833478, "position": { "x": 7, "y": 0 @@ -6536,9 +10814,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5327, + "noteOrder": 5330, "time": 0.9401504878891813, "position": { "x": 7, @@ -6559,9 +10837,9 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5352, + "noteOrder": 5354, "time": 0.9444045624950147, "position": { "x": 3, @@ -6582,10 +10860,10 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5376, - "time": 0.9486586371008482, + "noteOrder": 5378, + "time": 0.9486586371008481, "position": { "x": 3, "y": 0 @@ -6605,9 +10883,9 @@ }, { "lineGroupId": 243, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9614208609183483, "position": { "x": 3, @@ -6628,9 +10906,9 @@ }, { "lineGroupId": 243, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5460, + "noteOrder": 5462, "time": 0.963547898221265, "position": { "x": 3, @@ -6651,10 +10929,10 @@ }, { "lineGroupId": 243, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5484, - "time": 0.9678019728270983, + "noteOrder": 5486, + "time": 0.9678019728270985, "position": { "x": 7, "y": 0 @@ -6674,9 +10952,9 @@ }, { "lineGroupId": 243, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.9699290101300151, "position": { "x": 7, @@ -6697,9 +10975,9 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9614208609183483, "position": { "x": 7, @@ -6720,9 +10998,9 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5460, + "noteOrder": 5462, "time": 0.963547898221265, "position": { "x": 7, @@ -6743,10 +11021,10 @@ }, { "lineGroupId": 244, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5484, - "time": 0.9678019728270983, + "noteOrder": 5486, + "time": 0.9678019728270985, "position": { "x": 3, "y": 0 @@ -6766,9 +11044,9 @@ }, { "lineGroupId": 244, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.9699290101300151, "position": { "x": 3, diff --git a/tracks/You Take My Soul/315_difficulty_1b.json b/tracks/You Take My Soul/315_difficulty_1b.json index 73360cc6..be137009 100644 --- a/tracks/You Take My Soul/315_difficulty_1b.json +++ b/tracks/You Take My Soul/315_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.0297785222408338, + "time": 0.029778522240833796, "position": { "x": 7, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 337, - "time": 0.0595570444816676, + "noteOrder": 338, + "time": 0.05955704448166759, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 531, "time": 0.09358964132833479, "position": { "x": 4, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 554, - "time": 0.0978437159341682, + "noteOrder": 555, + "time": 0.09784371593416819, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 603, - "time": 0.106351865145835, + "time": 0.10635186514583499, "position": { "x": 6, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 747, + "noteOrder": 748, "time": 0.1318763127808354, "position": { "x": 4, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 771, - "time": 0.1361303873866688, + "noteOrder": 772, + "time": 0.13613038738666877, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 892, - "time": 0.15740076041583578, + "time": 0.1574007604158358, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 940, - "time": 0.1659089096275026, + "noteOrder": 941, + "time": 0.16590890962750257, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 964, + "noteOrder": 965, "time": 0.17016298423333598, "position": { "x": 7, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1012, - "time": 0.17867113344500277, + "noteOrder": 1013, + "time": 0.1786711334450028, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1109, - "time": 0.1956874318683364, + "time": 0.19568743186833637, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1109, - "time": 0.1956874318683364, + "time": 0.19568743186833637, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1157, + "noteOrder": 1158, "time": 0.20419558108000319, "position": { "x": 7, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1181, - "time": 0.2084496556858366, + "noteOrder": 1182, + "time": 0.20844965568583657, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1205, - "time": 0.21270373029167, + "noteOrder": 1206, + "time": 0.21270373029166997, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1229, + "noteOrder": 1230, "time": 0.21695780489750338, "position": { "x": 4, @@ -634,7 +634,7 @@ }, { "noteOrder": 1278, - "time": 0.22546595410917017, + "time": 0.2254659541091702, "position": { "x": 5, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1326, - "time": 0.23397410332083698, + "time": 0.23397410332083696, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1350, - "time": 0.2382281779266704, + "time": 0.23822817792667036, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1398, + "noteOrder": 1399, "time": 0.24673632713833718, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.25524447635000397, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.25524447635000397, "position": { "x": 7, @@ -814,7 +814,7 @@ }, { "noteOrder": 1543, - "time": 0.2722607747733376, + "time": 0.27226077477333754, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1567, + "noteOrder": 1568, "time": 0.276514849379171, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1591, + "noteOrder": 1592, "time": 0.28076892398500436, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1615, + "noteOrder": 1616, "time": 0.2850229985908378, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1832, + "noteOrder": 1833, "time": 0.3233096700433383, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1856, + "noteOrder": 1857, "time": 0.32756374464917176, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1880, - "time": 0.3318178192550052, + "noteOrder": 1881, + "time": 0.33181781925500514, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1880, - "time": 0.3318178192550052, + "noteOrder": 1881, + "time": 0.33181781925500514, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3360718938608386, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.3360718938608386, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2001, - "time": 0.3530881922841722, + "noteOrder": 2002, + "time": 0.35308819228417215, "position": { "x": 4, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.3913748637366728, + "noteOrder": 2219, + "time": 0.39137486373667274, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2242, - "time": 0.3956289383425062, + "noteOrder": 2243, + "time": 0.3956289383425061, "position": { "x": 3, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2266, + "noteOrder": 2267, "time": 0.39988301294833956, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2266, + "noteOrder": 2267, "time": 0.39988301294833956, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.404137087554173, + "noteOrder": 2291, + "time": 0.40413708755417294, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2290, - "time": 0.404137087554173, + "noteOrder": 2291, + "time": 0.40413708755417294, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2338, + "noteOrder": 2339, "time": 0.41264523676583975, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2483, - "time": 0.4381696844008402, + "noteOrder": 2484, + "time": 0.43816968440084014, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2483, - "time": 0.4381696844008402, + "noteOrder": 2484, + "time": 0.43816968440084014, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2579, + "noteOrder": 2580, "time": 0.4551859828241738, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2579, + "noteOrder": 2580, "time": 0.4551859828241738, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2603, + "noteOrder": 2605, "time": 0.4594400574300072, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2628, + "noteOrder": 2629, "time": 0.46369413203584053, "position": { "x": 5, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2652, - "time": 0.46794820664167397, + "noteOrder": 2653, + "time": 0.4679482066416739, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2676, + "noteOrder": 2677, "time": 0.47220228124750735, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2700, - "time": 0.4764563558533408, + "noteOrder": 2701, + "time": 0.47645635585334073, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.48071043045917417, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2748, + "noteOrder": 2749, "time": 0.48496450506500755, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2772, - "time": 0.489218579670841, + "noteOrder": 2773, + "time": 0.4892185796708409, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2845, + "noteOrder": 2846, "time": 0.5019808034883412, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2869, + "noteOrder": 2870, "time": 0.5062348780941746, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2893, + "noteOrder": 2894, "time": 0.5104889527000079, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2917, + "noteOrder": 2918, "time": 0.5147430273058413, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2941, - "time": 0.5189971019116747, + "noteOrder": 2942, + "time": 0.5189971019116748, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2965, + "noteOrder": 2966, "time": 0.5232511765175082, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3037, + "noteOrder": 3039, "time": 0.5360134003350083, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3061, + "noteOrder": 3063, "time": 0.5402674749408417, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3086, - "time": 0.5445215495466752, + "noteOrder": 3087, + "time": 0.5445215495466751, "position": { "x": 7, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3110, + "noteOrder": 3111, "time": 0.5487756241525086, "position": { "x": 6, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3134, + "noteOrder": 3135, "time": 0.553029698758342, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3158, - "time": 0.5572837733641753, + "noteOrder": 3159, + "time": 0.5572837733641754, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3495, + "noteOrder": 3497, "time": 0.6168408178458429, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3520, + "noteOrder": 3521, "time": 0.6210948924516764, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6253489670575098, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3544, + "noteOrder": 3545, "time": 0.6253489670575098, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.6338571162691766, + "noteOrder": 3593, + "time": 0.6338571162691765, "position": { "x": 5, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3617, "time": 0.63811119087501, "position": { "x": 5, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3640, + "noteOrder": 3642, "time": 0.6423652654808434, "position": { "x": 5, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3688, + "noteOrder": 3690, "time": 0.6508734146925101, "position": { "x": 5, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3714, "time": 0.6551274892983435, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3736, + "noteOrder": 3738, "time": 0.6593815639041769, "position": { "x": 5, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3857, + "noteOrder": 3859, "time": 0.6806519369333439, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3881, - "time": 0.6849060115391773, + "noteOrder": 3883, + "time": 0.6849060115391774, "position": { "x": 7, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3907, "time": 0.6891600861450107, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3907, "time": 0.6891600861450107, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.6934141607508442, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.6934141607508442, "position": { "x": 7, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4146, + "noteOrder": 4148, "time": 0.7317008322033447, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4170, - "time": 0.7359549068091782, + "noteOrder": 4172, + "time": 0.7359549068091781, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4194, + "noteOrder": 4196, "time": 0.7402089814150116, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4194, + "noteOrder": 4196, "time": 0.7402089814150116, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4219, + "noteOrder": 4220, "time": 0.744463056020845, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4219, + "noteOrder": 4220, "time": 0.744463056020845, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4267, + "noteOrder": 4269, "time": 0.7529712052325117, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.7614793544441786, + "noteOrder": 4317, + "time": 0.7614793544441785, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4532, + "noteOrder": 4534, "time": 0.7997660258966791, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4556, - "time": 0.8040201005025126, + "noteOrder": 4558, + "time": 0.8040201005025125, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4580, - "time": 0.808274175108346, + "noteOrder": 4582, + "time": 0.8082741751083459, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4580, - "time": 0.808274175108346, + "noteOrder": 4582, + "time": 0.8082741751083459, "position": { "x": 6, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.8125282497141794, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4604, + "noteOrder": 4606, "time": 0.8125282497141794, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4652, + "noteOrder": 4654, "time": 0.8210363989258461, "position": { "x": 6, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4701, - "time": 0.8295445481375129, + "noteOrder": 4703, + "time": 0.829544548137513, "position": { "x": 4, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4797, + "noteOrder": 4799, "time": 0.8465608465608466, "position": { "x": 4, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4797, + "noteOrder": 4799, "time": 0.8465608465608466, "position": { "x": 6, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4894, - "time": 0.8635771449841801, + "noteOrder": 4896, + "time": 0.86357714498418, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4894, - "time": 0.8635771449841801, + "noteOrder": 4896, + "time": 0.86357714498418, "position": { "x": 4, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4942, + "noteOrder": 4944, "time": 0.8720852941958469, "position": { "x": 6, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4990, - "time": 0.8805934434075138, + "noteOrder": 4992, + "time": 0.8805934434075137, "position": { "x": 4, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5014, + "noteOrder": 5016, "time": 0.8848475180133472, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5038, - "time": 0.8891015926191804, + "noteOrder": 5040, + "time": 0.8891015926191805, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5062, + "noteOrder": 5064, "time": 0.8933556672250139, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5062, + "noteOrder": 5064, "time": 0.8933556672250139, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5086, + "noteOrder": 5088, "time": 0.8976097418308473, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5086, + "noteOrder": 5088, "time": 0.8976097418308473, "position": { "x": 3, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5111, - "time": 0.9018638164366807, + "noteOrder": 5113, + "time": 0.9018638164366808, "position": { "x": 3, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5135, - "time": 0.9061178910425142, + "noteOrder": 5137, + "time": 0.9061178910425141, "position": { "x": 4, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5159, + "noteOrder": 5161, "time": 0.9103719656483475, "position": { "x": 6, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.9146260402541809, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5207, + "noteOrder": 5209, "time": 0.9188801148600144, "position": { "x": 7, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5231, + "noteOrder": 5233, "time": 0.9231341894658477, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5255, + "noteOrder": 5257, "time": 0.9273882640716811, "position": { "x": 4, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5279, - "time": 0.9316423386775144, + "noteOrder": 5281, + "time": 0.9316423386775146, "position": { "x": 3, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5400, - "time": 0.9529127117066816, + "noteOrder": 5402, + "time": 0.9529127117066815, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5424, - "time": 0.9571667863125148, + "noteOrder": 5426, + "time": 0.957166786312515, "position": { "x": 7, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9614208609183483, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 5450, "time": 0.9614208609183483, "position": { "x": 4, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 5474, "time": 0.9656749355241817, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 5474, "time": 0.9656749355241817, "position": { "x": 7, @@ -2856,10 +2856,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.0170162984233336, + "time": 0.017016298423333596, "position": { "x": 7, "y": 0 @@ -2879,7 +2879,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.025524447635000398, @@ -2902,10 +2902,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.0340325968466672, + "time": 0.03403259684666719, "position": { "x": 3, "y": 0 @@ -2925,7 +2925,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, "time": 0.042540746058333995, @@ -2948,7 +2948,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, "time": 0.051048895270000796, @@ -2971,10 +2971,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 337, - "time": 0.0595570444816676, + "noteOrder": 338, + "time": 0.05955704448166759, "position": { "x": 7, "y": 0 @@ -2994,10 +2994,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.0680651936933344, + "time": 0.06806519369333439, "position": { "x": 3, "y": 0 @@ -3017,7 +3017,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 410, "time": 0.0723192682991678, @@ -3040,10 +3040,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 434, - "time": 0.07657334290500119, + "time": 0.0765733429050012, "position": { "x": 7, "y": 0 @@ -3063,7 +3063,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.08082741751083458, @@ -3086,7 +3086,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.08508149211666799, @@ -3109,10 +3109,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 554, - "time": 0.0978437159341682, + "noteOrder": 555, + "time": 0.09784371593416819, "position": { "x": 3, "y": 0 @@ -3132,10 +3132,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.1191140889633352, + "time": 0.11911408896333518, "position": { "x": 7, "y": 0 @@ -3155,9 +3155,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 747, + "noteOrder": 748, "time": 0.1318763127808354, "position": { "x": 7, @@ -3178,10 +3178,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, - "time": 0.15314668581000238, + "time": 0.1531466858100024, "position": { "x": 3, "y": 0 @@ -3201,9 +3201,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 964, + "noteOrder": 965, "time": 0.17016298423333598, "position": { "x": 3, @@ -3224,7 +3224,7 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1254, "time": 0.2212118795033368, @@ -3247,10 +3247,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1350, - "time": 0.2382281779266704, + "time": 0.23822817792667036, "position": { "x": 7, "y": 0 @@ -3270,9 +3270,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, + "noteOrder": 1640, "time": 0.2892770731966712, "position": { "x": 3, @@ -3292,11 +3292,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1687, - "time": 0.297785222408338, + "noteOrder": 1664, + "time": 0.29353114780250456, "position": { "x": 3, "y": 0 @@ -3310,18 +3310,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1736, - "time": 0.30629337162000475, + "noteOrder": 1664, + "time": 0.29353114780250456, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3338,13 +3338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1784, - "time": 0.31480152083167157, + "noteOrder": 1688, + "time": 0.297785222408338, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3356,18 +3356,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1928, - "time": 0.34032596846667196, + "noteOrder": 1688, + "time": 0.297785222408338, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3379,18 +3379,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 1953, - "time": 0.34458004307250534, + "noteOrder": 1688, + "time": 0.297785222408338, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3407,11 +3407,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1977, - "time": 0.3488341176783388, + "noteOrder": 1712, + "time": 0.30203929701417137, "position": { "x": 3, "y": 0 @@ -3425,18 +3425,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2001, - "time": 0.3530881922841722, + "noteOrder": 1712, + "time": 0.30203929701417137, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3448,18 +3448,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2025, - "time": 0.35734226689000553, + "noteOrder": 1736, + "time": 0.3062933716200048, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3476,13 +3476,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2073, - "time": 0.36585041610167235, + "noteOrder": 1736, + "time": 0.3062933716200048, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3494,18 +3494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2121, - "time": 0.37435856531333916, + "noteOrder": 1736, + "time": 0.3062933716200048, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3517,18 +3517,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2170, - "time": 0.382866714525006, + "noteOrder": 1760, + "time": 0.3105474462258382, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3545,13 +3545,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2314, - "time": 0.40839116216000637, + "noteOrder": 1760, + "time": 0.3105474462258382, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3568,13 +3568,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2338, - "time": 0.41264523676583975, + "noteOrder": 1785, + "time": 0.3148015208316716, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3591,13 +3591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2362, - "time": 0.4168993113716732, + "noteOrder": 1785, + "time": 0.3148015208316716, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3609,18 +3609,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 2387, - "time": 0.42115338597750657, + "noteOrder": 1785, + "time": 0.3148015208316716, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3637,11 +3637,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2411, - "time": 0.42540746058334, + "noteOrder": 1809, + "time": 0.319055595437505, "position": { "x": 3, "y": 0 @@ -3655,18 +3655,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2459, - "time": 0.43391560979500676, + "noteOrder": 1809, + "time": 0.319055595437505, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3678,18 +3678,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2435, - "time": 0.4296615351891733, + "noteOrder": 1833, + "time": 0.3233096700433383, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3706,13 +3706,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2459, - "time": 0.43391560979500676, + "noteOrder": 1833, + "time": 0.3233096700433383, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3729,11 +3729,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2507, - "time": 0.4424237590066736, + "noteOrder": 1929, + "time": 0.34032596846667196, "position": { "x": 7, "y": 0 @@ -3752,11 +3752,11 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2555, - "time": 0.45093190821834034, + "noteOrder": 1953, + "time": 0.34458004307250534, "position": { "x": 7, "y": 0 @@ -3775,11 +3775,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2531, - "time": 0.44667783361250696, + "noteOrder": 1978, + "time": 0.3488341176783388, "position": { "x": 3, "y": 0 @@ -3798,11 +3798,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2555, - "time": 0.45093190821834034, + "noteOrder": 2002, + "time": 0.35308819228417215, "position": { "x": 3, "y": 0 @@ -3821,11 +3821,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2796, - "time": 0.49347265427667436, + "noteOrder": 2026, + "time": 0.3573422668900056, "position": { "x": 7, "y": 0 @@ -3844,11 +3844,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2869, - "time": 0.5062348780941746, + "noteOrder": 2050, + "time": 0.36159634149583897, "position": { "x": 7, "y": 0 @@ -3867,13 +3867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2989, - "time": 0.5275052511233416, + "noteOrder": 2050, + "time": 0.36159634149583897, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3885,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3061, - "time": 0.5402674749408417, + "noteOrder": 2074, + "time": 0.36585041610167235, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3908,18 +3908,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3375, - "time": 0.595570444816676, + "noteOrder": 2074, + "time": 0.36585041610167235, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3936,11 +3936,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 3471, - "time": 0.6125867432400095, + "noteOrder": 2074, + "time": 0.36585041610167235, "position": { "x": 7, "y": 0 @@ -3954,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3423, - "time": 0.6040785940283427, + "noteOrder": 2098, + "time": 0.3701044907075058, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3982,13 +3982,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3471, - "time": 0.6125867432400095, + "noteOrder": 2098, + "time": 0.3701044907075058, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4005,13 +4005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3568, - "time": 0.6296030416633431, + "noteOrder": 2122, + "time": 0.37435856531333916, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4028,13 +4028,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3664, - "time": 0.6466193400866767, + "noteOrder": 2122, + "time": 0.37435856531333916, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4051,11 +4051,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3664, - "time": 0.6466193400866767, + "noteOrder": 2122, + "time": 0.37435856531333916, "position": { "x": 7, "y": 0 @@ -4074,11 +4074,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3761, - "time": 0.6636356385100104, + "noteOrder": 2146, + "time": 0.3786126399191726, "position": { "x": 7, "y": 0 @@ -4097,13 +4097,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3761, - "time": 0.6636356385100104, + "noteOrder": 2146, + "time": 0.3786126399191726, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4115,18 +4115,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3785, - "time": 0.6678897131158438, + "noteOrder": 2170, + "time": 0.382866714525006, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4138,18 +4138,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3809, - "time": 0.6721437877216772, + "noteOrder": 2170, + "time": 0.382866714525006, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4166,11 +4166,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 3833, - "time": 0.6763978623275106, + "noteOrder": 2170, + "time": 0.382866714525006, "position": { "x": 7, "y": 0 @@ -4184,16 +4184,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3953, - "time": 0.6976682353566775, + "noteOrder": 2195, + "time": 0.3871207891308394, "position": { "x": 7, "y": 0 @@ -4207,18 +4207,1375 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2195, + "time": 0.3871207891308394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2219, + "time": 0.39137486373667274, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2219, + "time": 0.39137486373667274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2315, + "time": 0.40839116216000637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2339, + "time": 0.41264523676583975, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2363, + "time": 0.41689931137167313, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2387, + "time": 0.42115338597750657, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2412, + "time": 0.42540746058333995, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2460, + "time": 0.43391560979500676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2436, + "time": 0.4296615351891734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2460, + "time": 0.43391560979500676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2508, + "time": 0.4424237590066736, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2556, + "time": 0.4509319082183404, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2532, + "time": 0.44667783361250696, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2556, + "time": 0.4509319082183404, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2797, + "time": 0.49347265427667436, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5062348780941746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2990, + "time": 0.5275052511233416, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3063, + "time": 0.5402674749408417, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3376, + "time": 0.595570444816676, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3473, + "time": 0.6125867432400096, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3424, + "time": 0.6040785940283427, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3473, + "time": 0.6125867432400096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3569, + "time": 0.6296030416633432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6466193400866767, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3666, + "time": 0.6466193400866767, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3762, + "time": 0.6636356385100103, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3762, + "time": 0.6636356385100103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3786, + "time": 0.6678897131158438, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3810, + "time": 0.6721437877216772, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3834, + "time": 0.6763978623275105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3955, + "time": 0.6976682353566775, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3979, + "time": 0.701922309962511, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3979, + "time": 0.701922309962511, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7061763845683443, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7061763845683443, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4003, + "time": 0.7061763845683443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4027, + "time": 0.7104304591741778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4027, + "time": 0.7104304591741778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7146845337800112, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7146845337800112, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4051, + "time": 0.7146845337800112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7189386083858444, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4076, + "time": 0.7189386083858444, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4100, + "time": 0.7231926829916779, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4100, + "time": 0.7231926829916779, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4100, + "time": 0.7231926829916779, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7274467575975113, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4124, + "time": 0.7274467575975113, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4148, + "time": 0.7317008322033447, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4148, + "time": 0.7317008322033447, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4244, + "time": 0.7487171306266783, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4269, + "time": 0.7529712052325117, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4293, + "time": 0.7572252798383452, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4317, + "time": 0.7614793544441785, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4341, + "time": 0.765733429050012, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4365, + "time": 0.7699875036558453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4365, + "time": 0.7699875036558453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4389, + "time": 0.7742415782616788, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4002, - "time": 0.7061763845683444, + "noteOrder": 4389, + "time": 0.7742415782616788, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4235,13 +5592,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4050, - "time": 0.7146845337800111, + "noteOrder": 4389, + "time": 0.7742415782616788, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4258,13 +5615,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4098, - "time": 0.7231926829916779, + "noteOrder": 4413, + "time": 0.7784956528675121, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4276,16 +5633,85 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4243, - "time": 0.7487171306266783, + "noteOrder": 4413, + "time": 0.7784956528675121, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4437, + "time": 0.7827497274733455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4437, + "time": 0.7827497274733455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4437, + "time": 0.7827497274733455, "position": { "x": 3, "y": 0 @@ -4304,11 +5730,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4267, - "time": 0.7529712052325117, + "noteOrder": 4461, + "time": 0.787003802079179, "position": { "x": 3, "y": 0 @@ -4327,13 +5753,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4291, - "time": 0.7572252798383451, + "noteOrder": 4461, + "time": 0.787003802079179, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4345,18 +5771,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4315, - "time": 0.7614793544441786, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4368,18 +5794,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4339, - "time": 0.765733429050012, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4396,11 +5822,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4387, - "time": 0.7742415782616787, + "noteOrder": 4486, + "time": 0.7912578766850122, "position": { "x": 3, "y": 0 @@ -4419,11 +5845,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4436, - "time": 0.7827497274733456, + "noteOrder": 4510, + "time": 0.7955119512908457, "position": { "x": 3, "y": 0 @@ -4437,18 +5863,64 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4484, - "time": 0.7912578766850124, + "noteOrder": 4510, + "time": 0.7955119512908457, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4534, + "time": 0.7997660258966791, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4534, + "time": 0.7997660258966791, + "position": { + "x": 5, "y": 0 }, "position2D": { @@ -4466,9 +5938,9 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4628, + "noteOrder": 4630, "time": 0.8167823243200127, "position": { "x": 7, @@ -4489,9 +5961,9 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4652, + "noteOrder": 4654, "time": 0.8210363989258461, "position": { "x": 7, @@ -4512,9 +5984,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4677, + "noteOrder": 4679, "time": 0.8252904735316795, "position": { "x": 3, @@ -4535,10 +6007,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4701, - "time": 0.8295445481375129, + "noteOrder": 4703, + "time": 0.829544548137513, "position": { "x": 3, "y": 0 @@ -4558,10 +6030,10 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4725, - "time": 0.8337986227433464, + "noteOrder": 4727, + "time": 0.8337986227433463, "position": { "x": 7, "y": 0 @@ -4581,9 +6053,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4773, + "noteOrder": 4775, "time": 0.8423067719550131, "position": { "x": 7, @@ -4604,9 +6076,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4749, + "noteOrder": 4751, "time": 0.8380526973491798, "position": { "x": 3, @@ -4627,9 +6099,9 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4773, + "noteOrder": 4775, "time": 0.8423067719550131, "position": { "x": 3, @@ -4650,10 +6122,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4821, - "time": 0.85081492116668, + "noteOrder": 4823, + "time": 0.8508149211666799, "position": { "x": 3, "y": 0 @@ -4673,10 +6145,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4869, - "time": 0.8593230703783467, + "noteOrder": 4871, + "time": 0.8593230703783468, "position": { "x": 3, "y": 0 @@ -4696,9 +6168,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4845, + "noteOrder": 4847, "time": 0.8550689957725133, "position": { "x": 7, @@ -4719,10 +6191,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4869, - "time": 0.8593230703783467, + "noteOrder": 4871, + "time": 0.8593230703783468, "position": { "x": 7, "y": 0 @@ -4742,9 +6214,9 @@ }, { "lineGroupId": 172, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4918, + "noteOrder": 4920, "time": 0.8678312195900135, "position": { "x": 7, @@ -4765,9 +6237,9 @@ }, { "lineGroupId": 172, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4942, + "noteOrder": 4944, "time": 0.8720852941958469, "position": { "x": 7, @@ -4788,10 +6260,10 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4966, - "time": 0.8763393688016804, + "noteOrder": 4968, + "time": 0.8763393688016803, "position": { "x": 3, "y": 0 @@ -4811,10 +6283,33 @@ }, { "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4992, + "time": 0.8805934434075137, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 4990, - "time": 0.8805934434075138, + "noteOrder": 5306, + "time": 0.9358964132833478, "position": { "x": 3, "y": 0 @@ -4834,10 +6329,10 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5303, - "time": 0.9358964132833479, + "noteOrder": 5330, + "time": 0.9401504878891813, "position": { "x": 3, "y": 0 @@ -4855,11 +6350,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5330, + "time": 0.9401504878891813, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5352, + "noteOrder": 5354, "time": 0.9444045624950147, "position": { "x": 7, @@ -4877,6 +6395,52 @@ "noteType": 13, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5378, + "time": 0.9486586371008481, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5378, + "time": 0.9486586371008481, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git a/tracks/You Take My Soul/info.json b/tracks/You Take My Soul/info.json index 3efc1b42..642c01a2 100644 --- a/tracks/You Take My Soul/info.json +++ b/tracks/You Take My Soul/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "You Take My Soul", - "SongLength": "126.119184", + "SongLength": "116.166531", "SongAuthorName": "BEMANI Sound Team \"SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/You You You/337_difficulty_1a.json b/tracks/You You You/337_difficulty_1a.json index 30c6fdac..5b9a0792 100644 --- a/tracks/You You You/337_difficulty_1a.json +++ b/tracks/You You You/337_difficulty_1a.json @@ -54,7 +54,7 @@ }, { "noteOrder": 407, - "time": 0.06693736926295066, + "time": 0.06693736926295064, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 407, - "time": 0.06693736926295066, + "time": 0.06693736926295064, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 479, - "time": 0.07874984619170666, + "time": 0.07874984619170665, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 526, + "noteOrder": 527, "time": 0.08662483081087731, "position": { "x": 7, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 550, - "time": 0.09056232312046265, + "noteOrder": 551, + "time": 0.09056232312046264, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 574, + "noteOrder": 575, "time": 0.09449981543004798, "position": { "x": 3, @@ -194,7 +194,7 @@ }, { "noteOrder": 598, - "time": 0.09843730773963333, + "time": 0.09843730773963331, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 622, - "time": 0.10237480004921866, + "time": 0.10237480004921864, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 694, - "time": 0.11418727697797465, + "time": 0.11418727697797464, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 790, - "time": 0.129937246216316, + "time": 0.12993724621631597, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 814, - "time": 0.13387473852590132, + "time": 0.1338747385259013, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 861, + "noteOrder": 862, "time": 0.14174972314507198, "position": { "x": 7, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 885, - "time": 0.14568721545465732, + "noteOrder": 886, + "time": 0.1456872154546573, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 909, - "time": 0.14962470776424266, + "noteOrder": 910, + "time": 0.14962470776424264, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 933, - "time": 0.15356220007382798, + "noteOrder": 934, + "time": 0.15356220007382795, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 957, - "time": 0.15749969238341333, + "noteOrder": 958, + "time": 0.1574996923834133, "position": { "x": 7, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 981, - "time": 0.16143718469299864, + "noteOrder": 982, + "time": 0.16143718469299861, "position": { "x": 3, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1029, - "time": 0.16931216931216933, + "time": 0.1693121693121693, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1029, - "time": 0.16931216931216933, + "time": 0.1693121693121693, "position": { "x": 4, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1173, - "time": 0.1929371231696813, + "time": 0.19293712316968128, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1244, - "time": 0.20474960009843732, + "noteOrder": 1245, + "time": 0.2047496000984373, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1244, - "time": 0.20474960009843732, + "noteOrder": 1245, + "time": 0.2047496000984373, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1292, + "noteOrder": 1293, "time": 0.21262458471760795, "position": { "x": 3, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1316, + "noteOrder": 1317, "time": 0.2165620770271933, "position": { "x": 5, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.22443706164636396, "position": { "x": 5, @@ -754,7 +754,7 @@ }, { "noteOrder": 1388, - "time": 0.2283745539559493, + "time": 0.22837455395594927, "position": { "x": 4, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1412, - "time": 0.23231204626553464, + "time": 0.23231204626553462, "position": { "x": 3, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1460, - "time": 0.2401870308847053, + "time": 0.24018703088470528, "position": { "x": 5, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1508, - "time": 0.24806201550387597, + "time": 0.24806201550387594, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1555, - "time": 0.25593700012304665, + "noteOrder": 1556, + "time": 0.2559370001230466, "position": { "x": 5, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1579, - "time": 0.259874492432632, + "noteOrder": 1580, + "time": 0.25987449243263194, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1603, + "noteOrder": 1604, "time": 0.2638119847422173, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1627, - "time": 0.26774947705180263, + "noteOrder": 1628, + "time": 0.2677494770518026, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1651, - "time": 0.271686969361388, + "noteOrder": 1652, + "time": 0.2716869693613879, "position": { "x": 3, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1675, + "noteOrder": 1676, "time": 0.27562446167097326, "position": { "x": 6, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1675, + "noteOrder": 1676, "time": 0.27562446167097326, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1699, + "noteOrder": 1700, "time": 0.2795619539805586, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1699, + "noteOrder": 1700, "time": 0.2795619539805586, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.28940568475452194, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.28940568475452194, "position": { "x": 6, @@ -1094,7 +1094,7 @@ }, { "noteOrder": 1843, - "time": 0.3031869078380707, + "time": 0.30318690783807056, "position": { "x": 4, "y": 0 @@ -1114,7 +1114,7 @@ }, { "noteOrder": 1843, - "time": 0.3031869078380707, + "time": 0.30318690783807056, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1866, - "time": 0.30712440014765596, + "noteOrder": 1867, + "time": 0.3071244001476559, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1890, - "time": 0.31106189245724125, + "noteOrder": 1891, + "time": 0.3110618924572413, "position": { "x": 3, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1938, + "noteOrder": 1939, "time": 0.31893687707641194, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1986, - "time": 0.32681186169558263, + "noteOrder": 1987, + "time": 0.3268118616955826, "position": { "x": 4, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2010, + "noteOrder": 2011, "time": 0.330749354005168, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2034, + "noteOrder": 2035, "time": 0.33468684631475326, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.33862433862433866, + "noteOrder": 2059, + "time": 0.3386243386243386, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2082, - "time": 0.34256183093392395, + "noteOrder": 2083, + "time": 0.3425618309339239, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2201, - "time": 0.3622492924818506, + "noteOrder": 2202, + "time": 0.36224929248185056, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2225, - "time": 0.36618678479143596, + "noteOrder": 2226, + "time": 0.3661867847914359, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2249, + "noteOrder": 2250, "time": 0.37012427710102125, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2273, - "time": 0.37406176941060665, + "noteOrder": 2274, + "time": 0.3740617694106066, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.37799926172019194, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2321, - "time": 0.3819367540297773, + "noteOrder": 2322, + "time": 0.3819367540297772, "position": { "x": 5, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2345, - "time": 0.3858742463393626, + "noteOrder": 2346, + "time": 0.38587424633936257, "position": { "x": 7, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.3898117386489479, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.3898117386489479, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2393, - "time": 0.3937492309585333, + "noteOrder": 2394, + "time": 0.39374923095853326, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2393, - "time": 0.3937492309585333, + "noteOrder": 2394, + "time": 0.39374923095853326, "position": { "x": 3, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2584, + "noteOrder": 2585, "time": 0.4252491694352159, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2608, - "time": 0.4291866617448013, + "noteOrder": 2609, + "time": 0.42918666174480125, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2632, + "noteOrder": 2633, "time": 0.4331241540543866, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2656, + "noteOrder": 2657, "time": 0.43706164636397193, "position": { "x": 3, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2704, - "time": 0.4449366309831426, + "noteOrder": 2705, + "time": 0.44493663098314257, "position": { "x": 4, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2752, + "noteOrder": 2753, "time": 0.45281161560231326, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2776, - "time": 0.4567491079118986, + "noteOrder": 2777, + "time": 0.45674910791189854, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2800, + "noteOrder": 2801, "time": 0.4606866002214839, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2824, - "time": 0.4646240925310693, + "noteOrder": 2825, + "time": 0.46462409253106923, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2824, - "time": 0.4646240925310693, + "noteOrder": 2825, + "time": 0.46462409253106923, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4685615848406546, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4685615848406546, "position": { "x": 7, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.47643656945982527, + "noteOrder": 2897, + "time": 0.4764365694598252, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2919, - "time": 0.4803740617694106, + "noteOrder": 2921, + "time": 0.48037406176941055, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2943, - "time": 0.48431155407899595, + "noteOrder": 2945, + "time": 0.4843115540789959, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2992, "time": 0.4921865386981666, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3015, - "time": 0.49612403100775193, + "noteOrder": 3016, + "time": 0.4961240310077519, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3039, + "noteOrder": 3040, "time": 0.5000615233173372, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3159, - "time": 0.519748984865264, + "noteOrder": 3160, + "time": 0.5197489848652639, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3183, + "noteOrder": 3184, "time": 0.5236864771748493, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3208, "time": 0.5276239694844346, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3208, "time": 0.5276239694844346, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3230, - "time": 0.53156146179402, + "noteOrder": 3232, + "time": 0.5315614617940199, "position": { "x": 7, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3230, - "time": 0.53156146179402, + "noteOrder": 3232, + "time": 0.5315614617940199, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3254, - "time": 0.5354989541036053, + "noteOrder": 3256, + "time": 0.5354989541036052, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3278, + "noteOrder": 3280, "time": 0.5394364464131906, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3302, - "time": 0.543373938722776, + "noteOrder": 3304, + "time": 0.5433739387227758, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3326, + "noteOrder": 3328, "time": 0.5473114310323612, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3541, - "time": 0.5827488618186293, + "noteOrder": 3543, + "time": 0.5827488618186292, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3565, + "noteOrder": 3567, "time": 0.5866863541282146, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3589, - "time": 0.5906238464378, + "noteOrder": 3591, + "time": 0.5906238464377999, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3613, - "time": 0.5945613387473853, + "noteOrder": 3615, + "time": 0.5945613387473851, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3637, - "time": 0.5984988310569707, + "noteOrder": 3639, + "time": 0.5984988310569705, "position": { "x": 7, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3661, - "time": 0.6024363233665558, + "noteOrder": 3663, + "time": 0.602436323366556, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3685, - "time": 0.6063738156761413, + "noteOrder": 3687, + "time": 0.6063738156761411, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3709, - "time": 0.6103113079857266, + "noteOrder": 3711, + "time": 0.6103113079857265, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3733, - "time": 0.6142488002953119, + "noteOrder": 3735, + "time": 0.6142488002953118, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 3759, "time": 0.6181862926048972, "position": { "x": 5, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3781, - "time": 0.6221237849144825, + "noteOrder": 3782, + "time": 0.6221237849144826, "position": { "x": 7, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.6260612772240678, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.6260612772240678, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3924, - "time": 0.6457487387719946, + "noteOrder": 3926, + "time": 0.6457487387719945, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3948, - "time": 0.64968623108158, + "noteOrder": 3950, + "time": 0.6496862310815799, "position": { "x": 7, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3972, - "time": 0.6536237233911653, + "noteOrder": 3974, + "time": 0.6536237233911651, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3996, + "noteOrder": 3998, "time": 0.6575612157007505, "position": { "x": 6, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4044, - "time": 0.6654362003199212, + "noteOrder": 4046, + "time": 0.6654362003199211, "position": { "x": 4, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4092, - "time": 0.6733111849390919, + "noteOrder": 4094, + "time": 0.6733111849390918, "position": { "x": 6, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.6772486772486773, + "noteOrder": 4118, + "time": 0.6772486772486772, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.6811861695582626, "position": { "x": 7, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4331, + "noteOrder": 4333, "time": 0.7126861080349451, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4355, + "noteOrder": 4357, "time": 0.7166236003445305, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4379, + "noteOrder": 4381, "time": 0.7205610926541159, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4499, + "noteOrder": 4501, "time": 0.7402485542020425, "position": { "x": 7, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4523, - "time": 0.7441860465116279, + "noteOrder": 4525, + "time": 0.7441860465116278, "position": { "x": 3, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.7756859849883105, "position": { "x": 6, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4738, + "noteOrder": 4740, "time": 0.7796234772978958, "position": { "x": 4, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.7835609696074811, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4882, - "time": 0.8032484311554079, + "noteOrder": 4884, + "time": 0.8032484311554078, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.8071859234649932, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8111234157745786, + "noteOrder": 4932, + "time": 0.8111234157745785, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4929, - "time": 0.8111234157745786, + "noteOrder": 4932, + "time": 0.8111234157745785, "position": { "x": 6, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.8268733850129198, "position": { "x": 4, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.8268733850129198, "position": { "x": 6, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5097, - "time": 0.8386858619416759, + "noteOrder": 5099, + "time": 0.8386858619416758, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5145, + "noteOrder": 5147, "time": 0.8465608465608465, "position": { "x": 6, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5169, + "noteOrder": 5171, "time": 0.8504983388704318, "position": { "x": 7, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5169, + "noteOrder": 5171, "time": 0.8504983388704318, "position": { "x": 3, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5193, - "time": 0.8544358311800173, + "noteOrder": 5195, + "time": 0.8544358311800172, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5193, - "time": 0.8544358311800173, + "noteOrder": 5195, + "time": 0.8544358311800172, "position": { "x": 6, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5217, - "time": 0.8583733234896026, + "noteOrder": 5219, + "time": 0.8583733234896025, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5217, - "time": 0.8583733234896026, + "noteOrder": 5219, + "time": 0.8583733234896025, "position": { "x": 7, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5291, "time": 0.8701858004183585, "position": { "x": 6, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5315, "time": 0.8741232927279439, "position": { "x": 3, @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8780607850375293, + "noteOrder": 5339, + "time": 0.8780607850375292, "position": { "x": 7, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5360, - "time": 0.8819982773471146, + "noteOrder": 5362, + "time": 0.8819982773471144, "position": { "x": 3, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.8859357696566998, "position": { "x": 4, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.8859357696566998, "position": { "x": 6, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5408, - "time": 0.8898732619662852, + "noteOrder": 5410, + "time": 0.8898732619662851, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5432, - "time": 0.8938107542758705, + "noteOrder": 5434, + "time": 0.8938107542758704, "position": { "x": 4, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5432, - "time": 0.8938107542758705, + "noteOrder": 5434, + "time": 0.8938107542758704, "position": { "x": 6, "y": 0 @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5480, - "time": 0.9016857388950412, + "noteOrder": 5482, + "time": 0.9016857388950411, "position": { "x": 6, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5528, - "time": 0.9095607235142119, + "noteOrder": 5530, + "time": 0.9095607235142118, "position": { "x": 4, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5552, - "time": 0.9134982158237972, + "noteOrder": 5554, + "time": 0.9134982158237971, "position": { "x": 7, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5575, + "noteOrder": 5578, "time": 0.9174357081333825, "position": { "x": 3, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.9449981543004798, "position": { "x": 4, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5767, - "time": 0.9489356466100652, + "noteOrder": 5769, + "time": 0.9489356466100651, "position": { "x": 6, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5887, - "time": 0.9686231081579919, + "noteOrder": 5889, + "time": 0.9686231081579918, "position": { "x": 6, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5887, - "time": 0.9686231081579919, + "noteOrder": 5889, + "time": 0.9686231081579918, "position": { "x": 4, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5910, - "time": 0.9725606004675772, + "noteOrder": 5913, + "time": 0.9725606004675771, "position": { "x": 3, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5910, - "time": 0.9725606004675772, + "noteOrder": 5913, + "time": 0.9725606004675771, "position": { "x": 7, "y": 0 @@ -3316,7 +3316,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 287, "time": 0.04724990771502399, @@ -3339,7 +3339,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 359, "time": 0.05906238464377999, @@ -3362,10 +3362,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 335, - "time": 0.05512489233419466, + "time": 0.05512489233419465, "position": { "x": 3, "y": 0 @@ -3385,7 +3385,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 359, "time": 0.05906238464377999, @@ -3408,7 +3408,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 431, "time": 0.07087486157253599, @@ -3431,10 +3431,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 455, - "time": 0.07481235388212133, + "time": 0.07481235388212132, "position": { "x": 6, "y": 0 @@ -3454,7 +3454,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 431, "time": 0.07087486157253599, @@ -3477,10 +3477,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 455, - "time": 0.07481235388212133, + "time": 0.07481235388212132, "position": { "x": 4, "y": 0 @@ -3500,10 +3500,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 670, - "time": 0.11024978466838932, + "time": 0.1102497846683893, "position": { "x": 7, "y": 0 @@ -3523,10 +3523,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 694, - "time": 0.11418727697797465, + "time": 0.11418727697797464, "position": { "x": 7, "y": 0 @@ -3546,7 +3546,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 718, "time": 0.11812476928755998, @@ -3569,7 +3569,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 742, "time": 0.12206226159714531, @@ -3592,7 +3592,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1053, "time": 0.17324966162175462, @@ -3615,7 +3615,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1077, "time": 0.17718715393133996, @@ -3638,10 +3638,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1101, - "time": 0.1811246462409253, + "time": 0.18112464624092528, "position": { "x": 7, "y": 0 @@ -3661,7 +3661,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1125, "time": 0.18506213855051062, @@ -3684,10 +3684,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1196, - "time": 0.19687461547926666, + "noteOrder": 1197, + "time": 0.19687461547926663, "position": { "x": 7, "y": 0 @@ -3707,10 +3707,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, - "time": 0.20081210778885197, + "noteOrder": 1221, + "time": 0.20081210778885195, "position": { "x": 7, "y": 0 @@ -3730,10 +3730,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1196, - "time": 0.19687461547926666, + "noteOrder": 1197, + "time": 0.19687461547926663, "position": { "x": 3, "y": 0 @@ -3753,10 +3753,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, - "time": 0.20081210778885197, + "noteOrder": 1221, + "time": 0.20081210778885195, "position": { "x": 3, "y": 0 @@ -3776,10 +3776,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1340, - "time": 0.22049956933677864, + "noteOrder": 1341, + "time": 0.2204995693367786, "position": { "x": 7, "y": 0 @@ -3799,9 +3799,9 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.22443706164636396, "position": { "x": 7, @@ -3822,7 +3822,7 @@ }, { "lineGroupId": 48, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1436, "time": 0.23624953857511996, @@ -3845,9 +3845,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1531, + "noteOrder": 1532, "time": 0.2519995078134613, "position": { "x": 3, @@ -3868,10 +3868,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1555, - "time": 0.25593700012304665, + "noteOrder": 1556, + "time": 0.2559370001230466, "position": { "x": 3, "y": 0 @@ -3891,10 +3891,10 @@ }, { "lineGroupId": 56, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1627, - "time": 0.26774947705180263, + "noteOrder": 1628, + "time": 0.2677494770518026, "position": { "x": 7, "y": 0 @@ -3914,10 +3914,10 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1795, - "time": 0.2953119232189, + "time": 0.29531192321889993, "position": { "x": 7, "y": 0 @@ -3937,10 +3937,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1819, - "time": 0.29924941552848533, + "time": 0.2992494155284853, "position": { "x": 7, "y": 0 @@ -3960,10 +3960,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1795, - "time": 0.2953119232189, + "time": 0.29531192321889993, "position": { "x": 3, "y": 0 @@ -3983,10 +3983,10 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1819, - "time": 0.29924941552848533, + "time": 0.2992494155284853, "position": { "x": 3, "y": 0 @@ -4006,10 +4006,10 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1914, - "time": 0.31499938476682665, + "noteOrder": 1915, + "time": 0.3149993847668266, "position": { "x": 7, "y": 0 @@ -4029,9 +4029,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1938, + "noteOrder": 1939, "time": 0.31893687707641194, "position": { "x": 7, @@ -4052,10 +4052,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1962, - "time": 0.3228743693859973, + "noteOrder": 1963, + "time": 0.32287436938599723, "position": { "x": 3, "y": 0 @@ -4075,10 +4075,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1986, - "time": 0.32681186169558263, + "noteOrder": 1987, + "time": 0.3268118616955826, "position": { "x": 3, "y": 0 @@ -4098,9 +4098,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.34649932324350924, "position": { "x": 7, @@ -4120,34 +4120,11 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2154, - "time": 0.3543743078626799, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2489, - "time": 0.40949920019687464, + "noteOrder": 2131, + "time": 0.35043681555309464, "position": { "x": 7, "y": 0 @@ -4166,13 +4143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2536, - "time": 0.41737418481604527, + "noteOrder": 2131, + "time": 0.35043681555309464, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4184,16 +4161,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2680, - "time": 0.4409991386735573, + "noteOrder": 2155, + "time": 0.3543743078626799, "position": { "x": 3, "y": 0 @@ -4212,11 +4189,11 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2704, - "time": 0.4449366309831426, + "noteOrder": 2179, + "time": 0.35831180017226527, "position": { "x": 3, "y": 0 @@ -4235,13 +4212,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2728, - "time": 0.4488741232927279, + "noteOrder": 2179, + "time": 0.35831180017226527, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4253,16 +4230,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2752, - "time": 0.45281161560231326, + "noteOrder": 2490, + "time": 0.4094992001968746, "position": { "x": 7, "y": 0 @@ -4281,11 +4258,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2871, - "time": 0.4724990771502399, + "noteOrder": 2514, + "time": 0.4134366925064599, "position": { "x": 7, "y": 0 @@ -4304,13 +4281,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2967, - "time": 0.48824904638858124, + "noteOrder": 2514, + "time": 0.4134366925064599, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4327,13 +4304,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2967, - "time": 0.48824904638858124, + "noteOrder": 2538, + "time": 0.41737418481604527, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4345,18 +4322,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3063, - "time": 0.5039990156269226, + "noteOrder": 2538, + "time": 0.41737418481604527, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4368,16 +4345,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3063, - "time": 0.5039990156269226, + "noteOrder": 2538, + "time": 0.41737418481604527, "position": { "x": 7, "y": 0 @@ -4391,16 +4368,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3087, - "time": 0.5079365079365079, + "noteOrder": 2562, + "time": 0.42131167712563056, "position": { "x": 7, "y": 0 @@ -4414,18 +4391,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3111, - "time": 0.5118740002460933, + "noteOrder": 2562, + "time": 0.42131167712563056, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4442,13 +4419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3135, - "time": 0.5158114925556786, + "noteOrder": 2585, + "time": 0.4252491694352159, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4465,13 +4442,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3398, - "time": 0.5591239079611172, + "noteOrder": 2585, + "time": 0.4252491694352159, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4483,18 +4460,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, + "lineGroupId": 105, "indexInLine": 1, "isSliding": false, - "noteOrder": 3422, - "time": 0.5630614002707025, + "noteOrder": 2681, + "time": 0.4409991386735572, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4506,18 +4483,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3398, - "time": 0.5591239079611172, + "noteOrder": 2705, + "time": 0.44493663098314257, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4534,13 +4511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 107, "indexInLine": 1, "isSliding": false, - "noteOrder": 3422, - "time": 0.5630614002707025, + "noteOrder": 2729, + "time": 0.4488741232927279, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4552,16 +4529,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3446, - "time": 0.5669988925802879, + "noteOrder": 2753, + "time": 0.45281161560231326, "position": { "x": 7, "y": 0 @@ -4580,11 +4557,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 115, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.5748738771994586, + "noteOrder": 2873, + "time": 0.4724990771502399, "position": { "x": 7, "y": 0 @@ -4603,13 +4580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3446, - "time": 0.5669988925802879, + "noteOrder": 2969, + "time": 0.48824904638858124, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4621,16 +4598,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.5748738771994586, + "noteOrder": 2969, + "time": 0.48824904638858124, "position": { "x": 3, "y": 0 @@ -4649,11 +4626,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3829, - "time": 0.6299987695336533, + "noteOrder": 3064, + "time": 0.5039990156269226, "position": { "x": 3, "y": 0 @@ -4672,13 +4649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 123, "indexInLine": 1, "isSliding": false, - "noteOrder": 3900, - "time": 0.6418112464624092, + "noteOrder": 3064, + "time": 0.5039990156269226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4690,16 +4667,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3829, - "time": 0.6299987695336533, + "noteOrder": 3088, + "time": 0.5079365079365079, "position": { "x": 7, "y": 0 @@ -4718,13 +4695,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3900, - "time": 0.6418112464624092, + "noteOrder": 3112, + "time": 0.5118740002460932, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4736,16 +4713,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4020, - "time": 0.661498708010336, + "noteOrder": 3136, + "time": 0.5158114925556785, "position": { "x": 3, "y": 0 @@ -4764,13 +4741,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 4044, - "time": 0.6654362003199212, + "noteOrder": 3399, + "time": 0.5591239079611172, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4782,18 +4759,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4068, - "time": 0.6693736926295065, + "noteOrder": 3423, + "time": 0.5630614002707025, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4810,13 +4787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 4092, - "time": 0.6733111849390919, + "noteOrder": 3399, + "time": 0.5591239079611172, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4828,16 +4805,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4164, - "time": 0.6851236618678479, + "noteOrder": 3423, + "time": 0.5630614002707025, "position": { "x": 4, "y": 0 @@ -4856,13 +4833,749 @@ "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 140, "indexInLine": 1, "isSliding": false, - "noteOrder": 4188, - "time": 0.6890611541774332, + "noteOrder": 3447, + "time": 0.5669988925802879, "position": { - "x": 4, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5748738771994585, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3447, + "time": 0.5669988925802879, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3495, + "time": 0.5748738771994585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3830, + "time": 0.6299987695336532, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3902, + "time": 0.6418112464624093, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3830, + "time": 0.6299987695336532, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3902, + "time": 0.6418112464624093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4022, + "time": 0.661498708010336, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4046, + "time": 0.6654362003199211, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4070, + "time": 0.6693736926295065, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4094, + "time": 0.6733111849390918, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4165, + "time": 0.6851236618678478, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4189, + "time": 0.6890611541774332, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4165, + "time": 0.6851236618678478, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4189, + "time": 0.6890611541774332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4213, + "time": 0.6929986464870185, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4237, + "time": 0.6969361387966039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4237, + "time": 0.6969361387966039, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4261, + "time": 0.7008736311061893, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4261, + "time": 0.7008736311061893, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4261, + "time": 0.7008736311061893, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4285, + "time": 0.7048111234157745, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4285, + "time": 0.7048111234157745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4309, + "time": 0.7087486157253599, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4309, + "time": 0.7087486157253599, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4309, + "time": 0.7087486157253599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4333, + "time": 0.7126861080349451, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4405, + "time": 0.7244985849637011, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4405, + "time": 0.7244985849637011, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4429, + "time": 0.7284360772732865, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4429, + "time": 0.7284360772732865, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4453, + "time": 0.7323735695828718, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4879,13 +5592,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4164, - "time": 0.6851236618678479, + "noteOrder": 4477, + "time": 0.7363110618924572, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4897,18 +5610,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 179, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4477, + "time": 0.7363110618924572, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 4188, - "time": 0.6890611541774332, + "noteOrder": 4549, + "time": 0.7481235388212132, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4920,18 +5656,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4211, - "time": 0.6929986464870185, + "noteOrder": 4572, + "time": 0.7520610311307985, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4948,13 +5684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4259, - "time": 0.7008736311061893, + "noteOrder": 4549, + "time": 0.7481235388212132, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4971,13 +5707,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4307, - "time": 0.7087486157253599, + "noteOrder": 4572, + "time": 0.7520610311307985, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4989,18 +5725,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 4331, - "time": 0.7126861080349451, + "noteOrder": 4596, + "time": 0.7559985234403839, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5012,18 +5748,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 185, "indexInLine": 2, "isSliding": false, - "noteOrder": 4403, - "time": 0.7244985849637012, + "noteOrder": 4620, + "time": 0.7599360157499692, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5035,18 +5771,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4403, - "time": 0.7244985849637012, + "noteOrder": 4620, + "time": 0.7599360157499692, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5063,13 +5799,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4451, - "time": 0.7323735695828719, + "noteOrder": 4644, + "time": 0.7638735080595545, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5081,18 +5817,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4547, - "time": 0.7481235388212133, + "noteOrder": 4644, + "time": 0.7638735080595545, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5104,18 +5840,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 4570, - "time": 0.7520610311307986, + "noteOrder": 4644, + "time": 0.7638735080595545, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5132,13 +5868,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4547, - "time": 0.7481235388212133, + "noteOrder": 4668, + "time": 0.7678110003691399, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5150,16 +5886,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4570, - "time": 0.7520610311307986, + "noteOrder": 4668, + "time": 0.7678110003691399, "position": { "x": 6, "y": 0 @@ -5173,18 +5909,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4594, - "time": 0.7559985234403839, + "noteOrder": 4692, + "time": 0.7717484926787251, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5196,18 +5932,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 186, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4642, - "time": 0.7638735080595546, + "noteOrder": 4692, + "time": 0.7717484926787251, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5225,10 +5961,10 @@ }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4690, - "time": 0.7717484926787253, + "noteOrder": 4692, + "time": 0.7717484926787251, "position": { "x": 7, "y": 0 @@ -5248,9 +5984,9 @@ }, { "lineGroupId": 187, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.7756859849883105, "position": { "x": 7, @@ -5271,10 +6007,10 @@ }, { "lineGroupId": 187, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4786, - "time": 0.7874984619170666, + "noteOrder": 4788, + "time": 0.7874984619170665, "position": { "x": 4, "y": 0 @@ -5294,10 +6030,33 @@ }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4788, + "time": 0.7874984619170665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4786, - "time": 0.7874984619170666, + "noteOrder": 4812, + "time": 0.7914359542266518, "position": { "x": 3, "y": 0 @@ -5315,11 +6074,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4812, + "time": 0.7914359542266518, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 192, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4834, + "noteOrder": 4836, "time": 0.7953734465362372, "position": { "x": 7, @@ -5338,11 +6120,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 192, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4860, + "time": 0.7993109388458225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 192, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4860, + "time": 0.7993109388458225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4953, + "noteOrder": 4956, "time": 0.8150609080841639, "position": { "x": 3, @@ -5363,10 +6191,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4977, - "time": 0.8189984003937493, + "noteOrder": 4979, + "time": 0.8189984003937492, "position": { "x": 3, "y": 0 @@ -5386,9 +6214,9 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4953, + "noteOrder": 4956, "time": 0.8150609080841639, "position": { "x": 7, @@ -5409,10 +6237,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4977, - "time": 0.8189984003937493, + "noteOrder": 4979, + "time": 0.8189984003937492, "position": { "x": 7, "y": 0 @@ -5432,9 +6260,9 @@ }, { "lineGroupId": 202, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5073, + "noteOrder": 5075, "time": 0.8347483696320905, "position": { "x": 3, @@ -5455,10 +6283,10 @@ }, { "lineGroupId": 202, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5097, - "time": 0.8386858619416759, + "noteOrder": 5099, + "time": 0.8386858619416758, "position": { "x": 3, "y": 0 @@ -5478,10 +6306,10 @@ }, { "lineGroupId": 204, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5121, - "time": 0.8426233542512612, + "noteOrder": 5123, + "time": 0.8426233542512611, "position": { "x": 7, "y": 0 @@ -5501,9 +6329,9 @@ }, { "lineGroupId": 204, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5145, + "noteOrder": 5147, "time": 0.8465608465608465, "position": { "x": 7, @@ -5524,9 +6352,9 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5264, + "noteOrder": 5267, "time": 0.8662483081087732, "position": { "x": 7, @@ -5547,9 +6375,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5288, + "noteOrder": 5291, "time": 0.8701858004183585, "position": { "x": 7, @@ -5570,9 +6398,9 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5456, + "noteOrder": 5458, "time": 0.8977482465854558, "position": { "x": 7, @@ -5593,10 +6421,10 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5480, - "time": 0.9016857388950412, + "noteOrder": 5482, + "time": 0.9016857388950411, "position": { "x": 7, "y": 0 @@ -5616,9 +6444,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5504, + "noteOrder": 5506, "time": 0.9056232312046265, "position": { "x": 3, @@ -5639,10 +6467,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5528, - "time": 0.9095607235142119, + "noteOrder": 5530, + "time": 0.9095607235142118, "position": { "x": 3, "y": 0 @@ -5662,9 +6490,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.9213732004429678, "position": { "x": 6, @@ -5685,10 +6513,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5623, - "time": 0.9253106927525533, + "noteOrder": 5626, + "time": 0.9253106927525532, "position": { "x": 6, "y": 0 @@ -5708,9 +6536,9 @@ }, { "lineGroupId": 230, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.9213732004429678, "position": { "x": 4, @@ -5731,10 +6559,10 @@ }, { "lineGroupId": 230, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5623, - "time": 0.9253106927525533, + "noteOrder": 5626, + "time": 0.9253106927525532, "position": { "x": 4, "y": 0 @@ -5754,10 +6582,10 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5647, - "time": 0.9292481850621386, + "noteOrder": 5650, + "time": 0.9292481850621385, "position": { "x": 3, "y": 0 @@ -5777,9 +6605,9 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.9410606619908944, "position": { "x": 3, @@ -5800,10 +6628,10 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5647, - "time": 0.9292481850621386, + "noteOrder": 5650, + "time": 0.9292481850621385, "position": { "x": 7, "y": 0 @@ -5823,9 +6651,9 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5719, + "noteOrder": 5722, "time": 0.9410606619908944, "position": { "x": 7, @@ -5846,10 +6674,10 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5791, - "time": 0.9528731389196505, + "noteOrder": 5793, + "time": 0.9528731389196504, "position": { "x": 7, "y": 0 @@ -5869,9 +6697,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5817, "time": 0.9568106312292358, "position": { "x": 7, @@ -5892,10 +6720,10 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5791, - "time": 0.9528731389196505, + "noteOrder": 5793, + "time": 0.9528731389196504, "position": { "x": 3, "y": 0 @@ -5915,9 +6743,9 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5817, "time": 0.9568106312292358, "position": { "x": 3, @@ -5938,10 +6766,10 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5839, - "time": 0.9607481235388212, + "noteOrder": 5841, + "time": 0.9607481235388211, "position": { "x": 4, "y": 0 @@ -5961,9 +6789,9 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, + "noteOrder": 5865, "time": 0.9646856158484065, "position": { "x": 4, @@ -5984,10 +6812,10 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5839, - "time": 0.9607481235388212, + "noteOrder": 5841, + "time": 0.9607481235388211, "position": { "x": 6, "y": 0 @@ -6007,9 +6835,9 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, + "noteOrder": 5865, "time": 0.9646856158484065, "position": { "x": 6, diff --git a/tracks/You You You/337_difficulty_1b.json b/tracks/You You You/337_difficulty_1b.json index 44c29097..571e7bf6 100644 --- a/tracks/You You You/337_difficulty_1b.json +++ b/tracks/You You You/337_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 335, - "time": 0.05512489233419466, + "time": 0.05512489233419465, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 479, - "time": 0.07874984619170666, + "time": 0.07874984619170665, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 479, - "time": 0.07874984619170666, + "time": 0.07874984619170665, "position": { "x": 3, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 526, + "noteOrder": 527, "time": 0.08662483081087731, "position": { "x": 4, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 526, + "noteOrder": 527, "time": 0.08662483081087731, "position": { "x": 6, @@ -174,7 +174,7 @@ }, { "noteOrder": 622, - "time": 0.10237480004921866, + "time": 0.10237480004921864, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 909, - "time": 0.14962470776424266, + "noteOrder": 910, + "time": 0.14962470776424264, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 933, - "time": 0.15356220007382798, + "noteOrder": 934, + "time": 0.15356220007382795, "position": { "x": 3, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1029, - "time": 0.16931216931216933, + "time": 0.1693121693121693, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1101, - "time": 0.1811246462409253, + "time": 0.18112464624092528, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1292, + "noteOrder": 1293, "time": 0.21262458471760795, "position": { "x": 3, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1316, + "noteOrder": 1317, "time": 0.2165620770271933, "position": { "x": 7, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1340, - "time": 0.22049956933677864, + "noteOrder": 1341, + "time": 0.2204995693367786, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1364, + "noteOrder": 1365, "time": 0.22443706164636396, "position": { "x": 6, @@ -474,7 +474,7 @@ }, { "noteOrder": 1460, - "time": 0.2401870308847053, + "time": 0.24018703088470528, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1508, - "time": 0.24806201550387597, + "time": 0.24806201550387594, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1531, + "noteOrder": 1532, "time": 0.2519995078134613, "position": { "x": 6, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1555, - "time": 0.25593700012304665, + "noteOrder": 1556, + "time": 0.2559370001230466, "position": { "x": 4, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1627, - "time": 0.26774947705180263, + "noteOrder": 1628, + "time": 0.2677494770518026, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1651, - "time": 0.271686969361388, + "noteOrder": 1652, + "time": 0.2716869693613879, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1675, + "noteOrder": 1676, "time": 0.27562446167097326, "position": { "x": 7, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1699, + "noteOrder": 1700, "time": 0.2795619539805586, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1771, - "time": 0.29137443090931464, + "noteOrder": 1772, + "time": 0.2913744309093146, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1866, - "time": 0.30712440014765596, + "noteOrder": 1867, + "time": 0.3071244001476559, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.33862433862433866, + "noteOrder": 2059, + "time": 0.3386243386243386, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2082, - "time": 0.34256183093392395, + "noteOrder": 2083, + "time": 0.3425618309339239, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2154, + "noteOrder": 2155, "time": 0.3543743078626799, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2249, + "noteOrder": 2250, "time": 0.37012427710102125, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2441, - "time": 0.40162421557770395, + "noteOrder": 2442, + "time": 0.4016242155777039, "position": { "x": 5, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2465, - "time": 0.4055617078872893, + "noteOrder": 2466, + "time": 0.40556170788728924, "position": { "x": 4, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2632, + "noteOrder": 2633, "time": 0.4331241540543866, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2656, + "noteOrder": 2657, "time": 0.43706164636397193, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2824, - "time": 0.4646240925310693, + "noteOrder": 2825, + "time": 0.46462409253106923, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4685615848406546, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2873, "time": 0.4724990771502399, "position": { "x": 4, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2919, - "time": 0.4803740617694106, + "noteOrder": 2921, + "time": 0.48037406176941055, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2967, + "noteOrder": 2969, "time": 0.48824904638858124, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2967, + "noteOrder": 2969, "time": 0.48824904638858124, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3015, - "time": 0.49612403100775193, + "noteOrder": 3016, + "time": 0.4961240310077519, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3015, - "time": 0.49612403100775193, + "noteOrder": 3016, + "time": 0.4961240310077519, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3063, + "noteOrder": 3064, "time": 0.5039990156269226, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3159, - "time": 0.519748984865264, + "noteOrder": 3160, + "time": 0.5197489848652639, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3254, - "time": 0.5354989541036053, + "noteOrder": 3256, + "time": 0.5354989541036052, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3254, - "time": 0.5354989541036053, + "noteOrder": 3256, + "time": 0.5354989541036052, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3302, - "time": 0.543373938722776, + "noteOrder": 3304, + "time": 0.5433739387227758, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3302, - "time": 0.543373938722776, + "noteOrder": 3304, + "time": 0.5433739387227758, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3398, + "noteOrder": 3399, "time": 0.5591239079611172, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3422, + "noteOrder": 3423, "time": 0.5630614002707025, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3541, - "time": 0.5827488618186293, + "noteOrder": 3543, + "time": 0.5827488618186292, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3589, - "time": 0.5906238464378, + "noteOrder": 3591, + "time": 0.5906238464377999, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3733, - "time": 0.6142488002953119, + "noteOrder": 3735, + "time": 0.6142488002953118, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 3759, "time": 0.6181862926048972, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3781, - "time": 0.6221237849144825, + "noteOrder": 3782, + "time": 0.6221237849144826, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3805, + "noteOrder": 3806, "time": 0.6260612772240678, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3924, - "time": 0.6457487387719946, + "noteOrder": 3926, + "time": 0.6457487387719945, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3972, - "time": 0.6536237233911653, + "noteOrder": 3974, + "time": 0.6536237233911651, "position": { "x": 5, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.6772486772486773, + "noteOrder": 4118, + "time": 0.6772486772486772, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4142, "time": 0.6811861695582626, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4164, - "time": 0.6851236618678479, + "noteOrder": 4165, + "time": 0.6851236618678478, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4189, "time": 0.6890611541774332, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4307, + "noteOrder": 4309, "time": 0.7087486157253599, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4331, + "noteOrder": 4333, "time": 0.7126861080349451, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4355, + "noteOrder": 4357, "time": 0.7166236003445305, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4379, + "noteOrder": 4381, "time": 0.7205610926541159, "position": { "x": 6, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4403, - "time": 0.7244985849637012, + "noteOrder": 4405, + "time": 0.7244985849637011, "position": { "x": 3, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4427, + "noteOrder": 4429, "time": 0.7284360772732865, "position": { "x": 3, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4451, - "time": 0.7323735695828719, + "noteOrder": 4453, + "time": 0.7323735695828718, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4475, + "noteOrder": 4477, "time": 0.7363110618924572, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4690, - "time": 0.7717484926787253, + "noteOrder": 4692, + "time": 0.7717484926787251, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4714, + "noteOrder": 4716, "time": 0.7756859849883105, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4738, + "noteOrder": 4740, "time": 0.7796234772978958, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4762, + "noteOrder": 4764, "time": 0.7835609696074811, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4786, - "time": 0.7874984619170666, + "noteOrder": 4788, + "time": 0.7874984619170665, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4810, - "time": 0.7914359542266519, + "noteOrder": 4812, + "time": 0.7914359542266518, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4834, + "noteOrder": 4836, "time": 0.7953734465362372, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4858, + "noteOrder": 4860, "time": 0.7993109388458225, "position": { "x": 3, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.8268733850129198, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5073, + "noteOrder": 5075, "time": 0.8347483696320905, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5097, - "time": 0.8386858619416759, + "noteOrder": 5099, + "time": 0.8386858619416758, "position": { "x": 3, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5121, - "time": 0.8426233542512612, + "noteOrder": 5123, + "time": 0.8426233542512611, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5145, + "noteOrder": 5147, "time": 0.8465608465608465, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5217, - "time": 0.8583733234896026, + "noteOrder": 5219, + "time": 0.8583733234896025, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5264, + "noteOrder": 5267, "time": 0.8662483081087732, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5288, + "noteOrder": 5291, "time": 0.8701858004183585, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5315, "time": 0.8741232927279439, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.8780607850375293, + "noteOrder": 5339, + "time": 0.8780607850375292, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5360, - "time": 0.8819982773471146, + "noteOrder": 5362, + "time": 0.8819982773471144, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.8859357696566998, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5458, "time": 0.8977482465854558, "position": { "x": 3, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5480, - "time": 0.9016857388950412, + "noteOrder": 5482, + "time": 0.9016857388950411, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5504, + "noteOrder": 5506, "time": 0.9056232312046265, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5528, - "time": 0.9095607235142119, + "noteOrder": 5530, + "time": 0.9095607235142118, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.9213732004429678, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.9371231696813092, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5839, - "time": 0.9607481235388212, + "noteOrder": 5841, + "time": 0.9607481235388211, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5863, + "noteOrder": 5865, "time": 0.9646856158484065, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5887, - "time": 0.9686231081579919, + "noteOrder": 5889, + "time": 0.9686231081579918, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5887, - "time": 0.9686231081579919, + "noteOrder": 5889, + "time": 0.9686231081579918, "position": { "x": 4, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5910, - "time": 0.9725606004675772, + "noteOrder": 5913, + "time": 0.9725606004675771, "position": { "x": 3, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5910, - "time": 0.9725606004675772, + "noteOrder": 5913, + "time": 0.9725606004675771, "position": { "x": 7, "y": 0 @@ -2216,9 +2216,9 @@ "lineNodes": [ { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 574, + "noteOrder": 575, "time": 0.09449981543004798, "position": { "x": 3, @@ -2239,7 +2239,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 646, "time": 0.10631229235880398, @@ -2262,10 +2262,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 670, - "time": 0.11024978466838932, + "time": 0.1102497846683893, "position": { "x": 7, "y": 0 @@ -2285,7 +2285,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 742, "time": 0.12206226159714531, @@ -2308,7 +2308,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 766, "time": 0.12599975390673065, @@ -2331,7 +2331,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 838, "time": 0.13781223083548663, @@ -2354,10 +2354,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 814, - "time": 0.13387473852590132, + "time": 0.1338747385259013, "position": { "x": 7, "y": 0 @@ -2377,7 +2377,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 838, "time": 0.13781223083548663, @@ -2400,9 +2400,9 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 861, + "noteOrder": 862, "time": 0.14174972314507198, "position": { "x": 6, @@ -2423,10 +2423,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 885, - "time": 0.14568721545465732, + "noteOrder": 886, + "time": 0.1456872154546573, "position": { "x": 6, "y": 0 @@ -2446,9 +2446,9 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 861, + "noteOrder": 862, "time": 0.14174972314507198, "position": { "x": 4, @@ -2469,10 +2469,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 885, - "time": 0.14568721545465732, + "noteOrder": 886, + "time": 0.1456872154546573, "position": { "x": 4, "y": 0 @@ -2492,10 +2492,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 957, - "time": 0.15749969238341333, + "noteOrder": 958, + "time": 0.1574996923834133, "position": { "x": 7, "y": 0 @@ -2515,10 +2515,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1029, - "time": 0.16931216931216933, + "time": 0.1693121693121693, "position": { "x": 7, "y": 0 @@ -2538,7 +2538,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1053, "time": 0.17324966162175462, @@ -2561,7 +2561,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1125, "time": 0.18506213855051062, @@ -2584,7 +2584,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1149, "time": 0.18899963086009597, @@ -2607,10 +2607,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, - "time": 0.20081210778885197, + "noteOrder": 1221, + "time": 0.20081210778885195, "position": { "x": 7, "y": 0 @@ -2630,10 +2630,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1196, - "time": 0.19687461547926666, + "noteOrder": 1197, + "time": 0.19687461547926663, "position": { "x": 3, "y": 0 @@ -2653,10 +2653,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, - "time": 0.20081210778885197, + "noteOrder": 1221, + "time": 0.20081210778885195, "position": { "x": 3, "y": 0 @@ -2676,10 +2676,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1244, - "time": 0.20474960009843732, + "noteOrder": 1245, + "time": 0.2047496000984373, "position": { "x": 6, "y": 0 @@ -2699,9 +2699,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1268, + "noteOrder": 1269, "time": 0.20868709240802263, "position": { "x": 6, @@ -2722,10 +2722,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1244, - "time": 0.20474960009843732, + "noteOrder": 1245, + "time": 0.2047496000984373, "position": { "x": 4, "y": 0 @@ -2745,9 +2745,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1268, + "noteOrder": 1269, "time": 0.20868709240802263, "position": { "x": 4, @@ -2768,10 +2768,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1388, - "time": 0.2283745539559493, + "time": 0.22837455395594927, "position": { "x": 3, "y": 0 @@ -2791,10 +2791,10 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1412, - "time": 0.23231204626553464, + "time": 0.23231204626553462, "position": { "x": 3, "y": 0 @@ -2814,10 +2814,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1579, - "time": 0.259874492432632, + "noteOrder": 1580, + "time": 0.25987449243263194, "position": { "x": 7, "y": 0 @@ -2837,9 +2837,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1603, + "noteOrder": 1604, "time": 0.2638119847422173, "position": { "x": 7, @@ -2860,9 +2860,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1723, + "noteOrder": 1724, "time": 0.28349944629014395, "position": { "x": 3, @@ -2883,10 +2883,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1771, - "time": 0.29137443090931464, + "noteOrder": 1772, + "time": 0.2913744309093146, "position": { "x": 3, "y": 0 @@ -2906,10 +2906,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1819, - "time": 0.29924941552848533, + "time": 0.2992494155284853, "position": { "x": 7, "y": 0 @@ -2929,10 +2929,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1866, - "time": 0.30712440014765596, + "noteOrder": 1867, + "time": 0.3071244001476559, "position": { "x": 7, "y": 0 @@ -2952,10 +2952,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1914, - "time": 0.31499938476682665, + "noteOrder": 1915, + "time": 0.3149993847668266, "position": { "x": 3, "y": 0 @@ -2975,9 +2975,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1938, + "noteOrder": 1939, "time": 0.31893687707641194, "position": { "x": 3, @@ -2998,10 +2998,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1962, - "time": 0.3228743693859973, + "noteOrder": 1963, + "time": 0.32287436938599723, "position": { "x": 7, "y": 0 @@ -3021,10 +3021,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1986, - "time": 0.32681186169558263, + "noteOrder": 1987, + "time": 0.3268118616955826, "position": { "x": 7, "y": 0 @@ -3044,9 +3044,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2010, + "noteOrder": 2011, "time": 0.330749354005168, "position": { "x": 3, @@ -3067,10 +3067,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2082, - "time": 0.34256183093392395, + "noteOrder": 2083, + "time": 0.3425618309339239, "position": { "x": 3, "y": 0 @@ -3090,9 +3090,9 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.34649932324350924, "position": { "x": 7, @@ -3113,9 +3113,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2154, + "noteOrder": 2155, "time": 0.3543743078626799, "position": { "x": 7, @@ -3136,10 +3136,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2201, - "time": 0.3622492924818506, + "noteOrder": 2202, + "time": 0.36224929248185056, "position": { "x": 3, "y": 0 @@ -3159,9 +3159,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2249, + "noteOrder": 2250, "time": 0.37012427710102125, "position": { "x": 3, @@ -3182,9 +3182,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2297, + "noteOrder": 2298, "time": 0.37799926172019194, "position": { "x": 7, @@ -3205,10 +3205,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2321, - "time": 0.3819367540297773, + "noteOrder": 2322, + "time": 0.3819367540297772, "position": { "x": 7, "y": 0 @@ -3228,10 +3228,10 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2345, - "time": 0.3858742463393626, + "noteOrder": 2346, + "time": 0.38587424633936257, "position": { "x": 3, "y": 0 @@ -3251,9 +3251,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.3898117386489479, "position": { "x": 3, @@ -3274,10 +3274,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2393, - "time": 0.3937492309585333, + "noteOrder": 2394, + "time": 0.39374923095853326, "position": { "x": 7, "y": 0 @@ -3297,10 +3297,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2465, - "time": 0.4055617078872893, + "noteOrder": 2466, + "time": 0.40556170788728924, "position": { "x": 7, "y": 0 @@ -3320,10 +3320,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2489, - "time": 0.40949920019687464, + "noteOrder": 2490, + "time": 0.4094992001968746, "position": { "x": 3, "y": 0 @@ -3343,9 +3343,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2536, + "noteOrder": 2538, "time": 0.41737418481604527, "position": { "x": 3, @@ -3366,9 +3366,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2536, + "noteOrder": 2538, "time": 0.41737418481604527, "position": { "x": 7, @@ -3389,9 +3389,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2584, + "noteOrder": 2585, "time": 0.4252491694352159, "position": { "x": 7, @@ -3412,9 +3412,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2584, + "noteOrder": 2585, "time": 0.4252491694352159, "position": { "x": 3, @@ -3435,9 +3435,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2656, + "noteOrder": 2657, "time": 0.43706164636397193, "position": { "x": 3, @@ -3458,10 +3458,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2680, - "time": 0.4409991386735573, + "noteOrder": 2681, + "time": 0.4409991386735572, "position": { "x": 7, "y": 0 @@ -3481,9 +3481,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.4488741232927279, "position": { "x": 7, @@ -3504,9 +3504,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2728, + "noteOrder": 2729, "time": 0.4488741232927279, "position": { "x": 3, @@ -3527,10 +3527,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2776, - "time": 0.4567491079118986, + "noteOrder": 2777, + "time": 0.45674910791189854, "position": { "x": 3, "y": 0 @@ -3550,10 +3550,10 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2776, - "time": 0.4567491079118986, + "noteOrder": 2777, + "time": 0.45674910791189854, "position": { "x": 7, "y": 0 @@ -3573,9 +3573,9 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2848, + "noteOrder": 2849, "time": 0.4685615848406546, "position": { "x": 7, @@ -3596,9 +3596,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3446, + "noteOrder": 3447, "time": 0.5669988925802879, "position": { "x": 3, @@ -3619,10 +3619,10 @@ }, { "lineGroupId": 93, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3637, - "time": 0.5984988310569707, + "noteOrder": 3639, + "time": 0.5984988310569705, "position": { "x": 3, "y": 0 @@ -3642,10 +3642,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3637, - "time": 0.5984988310569707, + "noteOrder": 3639, + "time": 0.5984988310569705, "position": { "x": 7, "y": 0 @@ -3665,10 +3665,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3661, - "time": 0.6024363233665558, + "noteOrder": 3663, + "time": 0.602436323366556, "position": { "x": 7, "y": 0 @@ -3688,10 +3688,10 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3685, - "time": 0.6063738156761413, + "noteOrder": 3687, + "time": 0.6063738156761411, "position": { "x": 3, "y": 0 @@ -3711,10 +3711,10 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3709, - "time": 0.6103113079857266, + "noteOrder": 3711, + "time": 0.6103113079857265, "position": { "x": 3, "y": 0 @@ -3734,10 +3734,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3829, - "time": 0.6299987695336533, + "noteOrder": 3830, + "time": 0.6299987695336532, "position": { "x": 7, "y": 0 @@ -3757,9 +3757,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4020, + "noteOrder": 4022, "time": 0.661498708010336, "position": { "x": 7, @@ -3780,9 +3780,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4020, + "noteOrder": 4022, "time": 0.661498708010336, "position": { "x": 3, @@ -3803,10 +3803,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4044, - "time": 0.6654362003199212, + "noteOrder": 4046, + "time": 0.6654362003199211, "position": { "x": 3, "y": 0 @@ -3826,9 +3826,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4068, + "noteOrder": 4070, "time": 0.6693736926295065, "position": { "x": 7, @@ -3849,10 +3849,10 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4092, - "time": 0.6733111849390919, + "noteOrder": 4094, + "time": 0.6733111849390918, "position": { "x": 7, "y": 0 @@ -3872,9 +3872,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4211, + "noteOrder": 4213, "time": 0.6929986464870185, "position": { "x": 3, @@ -3895,10 +3895,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4235, - "time": 0.696936138796604, + "noteOrder": 4237, + "time": 0.6969361387966039, "position": { "x": 3, "y": 0 @@ -3918,9 +3918,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4259, + "noteOrder": 4261, "time": 0.7008736311061893, "position": { "x": 7, @@ -3941,10 +3941,10 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4283, - "time": 0.7048111234157746, + "noteOrder": 4285, + "time": 0.7048111234157745, "position": { "x": 7, "y": 0 @@ -3964,9 +3964,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4499, + "noteOrder": 4501, "time": 0.7402485542020425, "position": { "x": 4, @@ -3987,10 +3987,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4523, - "time": 0.7441860465116279, + "noteOrder": 4525, + "time": 0.7441860465116278, "position": { "x": 4, "y": 0 @@ -4010,9 +4010,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4499, + "noteOrder": 4501, "time": 0.7402485542020425, "position": { "x": 6, @@ -4033,10 +4033,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4523, - "time": 0.7441860465116279, + "noteOrder": 4525, + "time": 0.7441860465116278, "position": { "x": 6, "y": 0 @@ -4056,10 +4056,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4547, - "time": 0.7481235388212133, + "noteOrder": 4549, + "time": 0.7481235388212132, "position": { "x": 7, "y": 0 @@ -4079,10 +4079,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4570, - "time": 0.7520610311307986, + "noteOrder": 4572, + "time": 0.7520610311307985, "position": { "x": 7, "y": 0 @@ -4102,10 +4102,10 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4547, - "time": 0.7481235388212133, + "noteOrder": 4549, + "time": 0.7481235388212132, "position": { "x": 3, "y": 0 @@ -4125,10 +4125,10 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4570, - "time": 0.7520610311307986, + "noteOrder": 4572, + "time": 0.7520610311307985, "position": { "x": 3, "y": 0 @@ -4148,9 +4148,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4594, + "noteOrder": 4596, "time": 0.7559985234403839, "position": { "x": 7, @@ -4171,9 +4171,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4618, + "noteOrder": 4620, "time": 0.7599360157499692, "position": { "x": 7, @@ -4194,10 +4194,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4642, - "time": 0.7638735080595546, + "noteOrder": 4644, + "time": 0.7638735080595545, "position": { "x": 3, "y": 0 @@ -4217,10 +4217,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4666, - "time": 0.76781100036914, + "noteOrder": 4668, + "time": 0.7678110003691399, "position": { "x": 3, "y": 0 @@ -4240,10 +4240,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4882, - "time": 0.8032484311554079, + "noteOrder": 4884, + "time": 0.8032484311554078, "position": { "x": 4, "y": 0 @@ -4263,9 +4263,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.8071859234649932, "position": { "x": 4, @@ -4286,10 +4286,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4882, - "time": 0.8032484311554079, + "noteOrder": 4884, + "time": 0.8032484311554078, "position": { "x": 6, "y": 0 @@ -4309,9 +4309,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4905, + "noteOrder": 4908, "time": 0.8071859234649932, "position": { "x": 6, @@ -4332,10 +4332,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4929, - "time": 0.8111234157745786, + "noteOrder": 4932, + "time": 0.8111234157745785, "position": { "x": 3, "y": 0 @@ -4355,9 +4355,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4953, + "noteOrder": 4956, "time": 0.8150609080841639, "position": { "x": 3, @@ -4378,10 +4378,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4929, - "time": 0.8111234157745786, + "noteOrder": 4932, + "time": 0.8111234157745785, "position": { "x": 7, "y": 0 @@ -4401,9 +4401,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4953, + "noteOrder": 4956, "time": 0.8150609080841639, "position": { "x": 7, @@ -4424,10 +4424,10 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4977, - "time": 0.8189984003937493, + "noteOrder": 4979, + "time": 0.8189984003937492, "position": { "x": 3, "y": 0 @@ -4447,9 +4447,9 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5025, + "noteOrder": 5027, "time": 0.8268733850129198, "position": { "x": 3, @@ -4470,9 +4470,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5169, + "noteOrder": 5171, "time": 0.8504983388704318, "position": { "x": 7, @@ -4493,10 +4493,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5217, - "time": 0.8583733234896026, + "noteOrder": 5219, + "time": 0.8583733234896025, "position": { "x": 7, "y": 0 @@ -4516,10 +4516,10 @@ }, { "lineGroupId": 153, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5408, - "time": 0.8898732619662852, + "noteOrder": 5410, + "time": 0.8898732619662851, "position": { "x": 6, "y": 0 @@ -4539,10 +4539,10 @@ }, { "lineGroupId": 153, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5432, - "time": 0.8938107542758705, + "noteOrder": 5434, + "time": 0.8938107542758704, "position": { "x": 6, "y": 0 @@ -4562,10 +4562,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5408, - "time": 0.8898732619662852, + "noteOrder": 5410, + "time": 0.8898732619662851, "position": { "x": 4, "y": 0 @@ -4585,10 +4585,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5432, - "time": 0.8938107542758705, + "noteOrder": 5434, + "time": 0.8938107542758704, "position": { "x": 4, "y": 0 @@ -4608,10 +4608,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5552, - "time": 0.9134982158237972, + "noteOrder": 5554, + "time": 0.9134982158237971, "position": { "x": 3, "y": 0 @@ -4631,9 +4631,9 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5599, + "noteOrder": 5602, "time": 0.9213732004429678, "position": { "x": 3, @@ -4654,10 +4654,10 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5647, - "time": 0.9292481850621386, + "noteOrder": 5650, + "time": 0.9292481850621385, "position": { "x": 7, "y": 0 @@ -4677,9 +4677,9 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5695, + "noteOrder": 5698, "time": 0.9371231696813092, "position": { "x": 7, @@ -4700,9 +4700,9 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.9449981543004798, "position": { "x": 3, @@ -4723,10 +4723,10 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5767, - "time": 0.9489356466100652, + "noteOrder": 5769, + "time": 0.9489356466100651, "position": { "x": 3, "y": 0 @@ -4746,9 +4746,9 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5743, + "noteOrder": 5746, "time": 0.9449981543004798, "position": { "x": 7, @@ -4769,10 +4769,10 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5767, - "time": 0.9489356466100652, + "noteOrder": 5769, + "time": 0.9489356466100651, "position": { "x": 7, "y": 0 @@ -4792,10 +4792,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5791, - "time": 0.9528731389196505, + "noteOrder": 5793, + "time": 0.9528731389196504, "position": { "x": 6, "y": 0 @@ -4815,9 +4815,9 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5817, "time": 0.9568106312292358, "position": { "x": 6, @@ -4838,10 +4838,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5791, - "time": 0.9528731389196505, + "noteOrder": 5793, + "time": 0.9528731389196504, "position": { "x": 4, "y": 0 @@ -4861,9 +4861,9 @@ }, { "lineGroupId": 166, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5815, + "noteOrder": 5817, "time": 0.9568106312292358, "position": { "x": 4, diff --git a/tracks/You You You/info.json b/tracks/You You You/info.json index 43dd2d42..3080ef07 100644 --- a/tracks/You You You/info.json +++ b/tracks/You You You/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "You You You", - "SongLength": "116.244898", + "SongLength": "106.292245", "SongAuthorName": "D.watt feat. \u7d21\u97f3\u308c\u3044", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/[E]/318_difficulty_1a.json b/tracks/[E]/318_difficulty_1a.json index 2cb244e5..9220eb72 100644 --- a/tracks/[E]/318_difficulty_1a.json +++ b/tracks/[E]/318_difficulty_1a.json @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 108, + "noteOrder": 109, "time": 0.014619883040935673, "position": { "x": 5, @@ -74,7 +74,7 @@ }, { "noteOrder": 145, - "time": 0.01949317738791423, + "time": 0.019493177387914232, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 157, - "time": 0.021117608836907085, + "time": 0.02111760883690708, "position": { "x": 5, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 313, - "time": 0.04223521767381417, + "noteOrder": 314, + "time": 0.04223521767381416, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 362, - "time": 0.04873294346978558, + "time": 0.04873294346978557, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 410, - "time": 0.05523066926575699, + "time": 0.05523066926575698, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 627, - "time": 0.08447043534762834, + "time": 0.08447043534762833, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 796, - "time": 0.10721247563352827, + "time": 0.10721247563352826, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 820, - "time": 0.11046133853151398, + "time": 0.11046133853151396, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 892, - "time": 0.12020792722547109, + "time": 0.12020792722547108, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 964, + "noteOrder": 965, "time": 0.1299545159194282, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 988, + "noteOrder": 989, "time": 0.1332033788174139, "position": { "x": 5, @@ -534,7 +534,7 @@ }, { "noteOrder": 1037, - "time": 0.13970110461338534, + "time": 0.1397011046133853, "position": { "x": 7, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1157, - "time": 0.15594541910331383, + "noteOrder": 1158, + "time": 0.15594541910331386, "position": { "x": 8, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1181, + "noteOrder": 1182, "time": 0.15919428200129954, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1205, + "noteOrder": 1206, "time": 0.16244314489928524, "position": { "x": 6, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1217, + "noteOrder": 1218, "time": 0.1640675763482781, "position": { "x": 3, @@ -634,7 +634,7 @@ }, { "noteOrder": 1230, - "time": 0.16569200779727097, + "time": 0.16569200779727095, "position": { "x": 5, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1350, + "noteOrder": 1351, "time": 0.1819363222871995, "position": { "x": 2, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1374, - "time": 0.1851851851851852, + "noteOrder": 1375, + "time": 0.18518518518518517, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1398, + "noteOrder": 1399, "time": 0.18843404808317088, "position": { "x": 7, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1410, - "time": 0.19005847953216376, + "noteOrder": 1411, + "time": 0.19005847953216373, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1422, + "noteOrder": 1423, "time": 0.1916829109811566, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1663, + "noteOrder": 1664, "time": 0.22417153996101366, "position": { "x": 5, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1760, - "time": 0.23716699155295648, + "noteOrder": 1761, + "time": 0.23716699155295645, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1784, - "time": 0.24041585445094218, + "noteOrder": 1785, + "time": 0.24041585445094216, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 1796, - "time": 0.24204028589993504, + "noteOrder": 1797, + "time": 0.242040285899935, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1808, + "noteOrder": 1809, "time": 0.2436647173489279, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1832, + "noteOrder": 1833, "time": 0.24691358024691357, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1856, + "noteOrder": 1857, "time": 0.25016244314489927, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1880, + "noteOrder": 1881, "time": 0.253411306042885, "position": { "x": 6, @@ -1054,7 +1054,7 @@ }, { "noteOrder": 1905, - "time": 0.25666016894087074, + "time": 0.2566601689408707, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1953, - "time": 0.26315789473684215, + "noteOrder": 1954, + "time": 0.2631578947368421, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1977, + "noteOrder": 1978, "time": 0.2664067576348278, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1989, - "time": 0.2680311890838207, + "noteOrder": 1990, + "time": 0.2680311890838206, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2002, "time": 0.2696556205328135, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2026, "time": 0.27290448343079926, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2049, + "noteOrder": 2050, "time": 0.2761533463287849, "position": { "x": 3, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2073, - "time": 0.27940220922677067, + "noteOrder": 2074, + "time": 0.2794022092267706, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2085, + "noteOrder": 2086, "time": 0.2810266406757635, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2097, - "time": 0.2826510721247563, + "noteOrder": 2098, + "time": 0.2826510721247564, "position": { "x": 6, "y": 0 @@ -1294,7 +1294,7 @@ }, { "noteOrder": 2146, - "time": 0.2891487979207278, + "time": 0.28914879792072773, "position": { "x": 3, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2170, - "time": 0.29239766081871343, + "noteOrder": 2171, + "time": 0.2923976608187135, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2182, + "noteOrder": 2183, "time": 0.2940220922677063, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2194, - "time": 0.2956465237166992, + "noteOrder": 2195, + "time": 0.29564652371669914, "position": { "x": 5, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.2988953866146849, + "noteOrder": 2219, + "time": 0.29889538661468484, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2242, - "time": 0.30214424951267055, + "noteOrder": 2243, + "time": 0.3021442495126706, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2266, - "time": 0.3053931124106563, + "noteOrder": 2267, + "time": 0.30539311241065625, "position": { "x": 5, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2278, + "noteOrder": 2279, "time": 0.30701754385964913, "position": { "x": 2, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2290, + "noteOrder": 2291, "time": 0.30864197530864196, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2314, - "time": 0.31189083820662766, + "noteOrder": 2315, + "time": 0.3118908382066277, "position": { "x": 5, "y": 0 @@ -1494,7 +1494,7 @@ }, { "noteOrder": 2339, - "time": 0.3151397011046134, + "time": 0.31513970110461337, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3183885640025991, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2375, - "time": 0.32001299545159195, + "noteOrder": 2376, + "time": 0.3200129954515919, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2387, - "time": 0.32163742690058483, + "noteOrder": 2388, + "time": 0.3216374269005848, "position": { "x": 7, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2531, - "time": 0.34113060428849906, + "noteOrder": 2532, + "time": 0.341130604288499, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.3443794671864847, + "noteOrder": 2556, + "time": 0.34437946718648477, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2580, - "time": 0.34762833008447047, + "noteOrder": 2581, + "time": 0.3476283300844704, "position": { "x": 5, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2628, + "noteOrder": 2629, "time": 0.3541260558804419, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2652, - "time": 0.3573749187784276, + "noteOrder": 2653, + "time": 0.35737491877842753, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2676, + "noteOrder": 2677, "time": 0.36062378167641324, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.36712150747238464, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2748, - "time": 0.3703703703703704, + "noteOrder": 2749, + "time": 0.37037037037037035, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2772, + "noteOrder": 2774, "time": 0.3736192332683561, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2821, - "time": 0.3801169590643275, + "noteOrder": 2822, + "time": 0.38011695906432746, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2845, + "noteOrder": 2846, "time": 0.3833658219623132, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2869, - "time": 0.3866146848602989, + "noteOrder": 2870, + "time": 0.38661468486029893, "position": { "x": 5, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2917, + "noteOrder": 2918, "time": 0.3931124106562703, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.39636127355425604, "position": { "x": 8, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2965, - "time": 0.39961013645224175, + "noteOrder": 2966, + "time": 0.3996101364522417, "position": { "x": 7, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3015, "time": 0.40610786224821316, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3038, + "noteOrder": 3039, "time": 0.4093567251461988, "position": { "x": 2, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3062, - "time": 0.41260558804418457, + "noteOrder": 3063, + "time": 0.4126055880441845, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3110, + "noteOrder": 3111, "time": 0.4191033138401559, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.4223521767381417, + "noteOrder": 3135, + "time": 0.4223521767381416, "position": { "x": 8, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3158, + "noteOrder": 3159, "time": 0.4256010396361274, "position": { "x": 7, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3231, - "time": 0.43534762833008445, + "noteOrder": 3232, + "time": 0.4353476283300845, "position": { "x": 5, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3231, - "time": 0.43534762833008445, + "noteOrder": 3232, + "time": 0.4353476283300845, "position": { "x": 8, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3279, - "time": 0.4418453541260559, + "noteOrder": 3280, + "time": 0.44184535412605586, "position": { "x": 7, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3315, - "time": 0.4467186484730345, + "noteOrder": 3316, + "time": 0.44671864847303444, "position": { "x": 5, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.4483430799220273, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3472, + "noteOrder": 3473, "time": 0.46783625730994155, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3509, "time": 0.4727095516569201, "position": { "x": 5, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3520, - "time": 0.47433398310591296, + "noteOrder": 3521, + "time": 0.4743339831059129, "position": { "x": 3, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3568, - "time": 0.48083170890188437, + "noteOrder": 3569, + "time": 0.4808317089018843, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.4840805717998701, + "noteOrder": 3594, + "time": 0.48408057179987, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3618, "time": 0.4873294346978558, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3640, - "time": 0.4905782975958415, + "noteOrder": 3642, + "time": 0.49057829759584143, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3689, + "noteOrder": 3690, "time": 0.4970760233918129, "position": { "x": 5, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3713, + "noteOrder": 3714, "time": 0.5003248862897985, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3737, + "noteOrder": 3738, "time": 0.5035737491877843, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3785, + "noteOrder": 3786, "time": 0.5100714749837557, "position": { "x": 5, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3809, - "time": 0.5133203378817415, + "noteOrder": 3811, + "time": 0.5133203378817414, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.5165692007797271, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3881, + "noteOrder": 3883, "time": 0.5230669265756985, "position": { "x": 5, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3906, - "time": 0.5263157894736843, + "noteOrder": 3907, + "time": 0.5263157894736842, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3930, + "noteOrder": 3931, "time": 0.5295646523716699, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3954, + "noteOrder": 3955, "time": 0.5328135152696556, "position": { "x": 2, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4004, "time": 0.539311241065627, "position": { "x": 2, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4074, + "noteOrder": 4076, "time": 0.5490578297595842, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4098, + "noteOrder": 4100, "time": 0.5523066926575698, "position": { "x": 6, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4123, + "noteOrder": 4124, "time": 0.5555555555555556, "position": { "x": 7, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4171, + "noteOrder": 4172, "time": 0.562053281351527, "position": { "x": 5, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4195, - "time": 0.5653021442495126, + "noteOrder": 4196, + "time": 0.5653021442495128, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4219, + "noteOrder": 4221, "time": 0.5685510071474984, "position": { "x": 3, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4267, + "noteOrder": 4269, "time": 0.5750487329434698, "position": { "x": 5, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.5782975958414556, + "noteOrder": 4293, + "time": 0.5782975958414555, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4315, - "time": 0.5815464587394412, + "noteOrder": 4317, + "time": 0.5815464587394411, "position": { "x": 7, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4340, - "time": 0.5847953216374269, + "noteOrder": 4341, + "time": 0.584795321637427, "position": { "x": 8, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4364, + "noteOrder": 4365, "time": 0.5880441845354126, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4388, - "time": 0.5912930474333984, + "noteOrder": 4389, + "time": 0.5912930474333983, "position": { "x": 8, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4412, + "noteOrder": 4414, "time": 0.594541910331384, "position": { "x": 5, @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4460, - "time": 0.6010396361273554, + "noteOrder": 4462, + "time": 0.6010396361273553, "position": { "x": 8, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4484, - "time": 0.6042884990253411, + "noteOrder": 4486, + "time": 0.6042884990253412, "position": { "x": 7, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4508, - "time": 0.607537361923327, + "noteOrder": 4510, + "time": 0.6075373619233269, "position": { "x": 6, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4556, + "noteOrder": 4558, "time": 0.6140350877192983, "position": { "x": 2, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4581, + "noteOrder": 4582, "time": 0.6172839506172839, "position": { "x": 3, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4605, - "time": 0.6205328135152697, + "noteOrder": 4606, + "time": 0.6205328135152696, "position": { "x": 4, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4653, + "noteOrder": 4655, "time": 0.6270305393112411, "position": { "x": 8, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4677, - "time": 0.6302794022092268, + "noteOrder": 4679, + "time": 0.6302794022092267, "position": { "x": 7, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4703, "time": 0.6335282651072125, "position": { "x": 6, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 4727, "time": 0.6367771280051981, "position": { "x": 2, @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4749, - "time": 0.6400259909031839, + "noteOrder": 4751, + "time": 0.6400259909031838, "position": { "x": 5, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4773, - "time": 0.6432748538011697, + "noteOrder": 4775, + "time": 0.6432748538011696, "position": { "x": 2, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4798, + "noteOrder": 4799, "time": 0.6465237166991553, "position": { "x": 5, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4846, + "noteOrder": 4848, "time": 0.6530214424951267, "position": { "x": 5, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4870, + "noteOrder": 4872, "time": 0.6562703053931124, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4894, - "time": 0.6595191682910981, + "noteOrder": 4896, + "time": 0.659519168291098, "position": { "x": 3, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4942, + "noteOrder": 4944, "time": 0.6660168940870695, "position": { "x": 5, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4966, - "time": 0.6692657569850552, + "noteOrder": 4968, + "time": 0.6692657569850553, "position": { "x": 6, "y": 0 @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4990, + "noteOrder": 4992, "time": 0.672514619883041, "position": { "x": 7, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5039, + "noteOrder": 5041, "time": 0.6790123456790124, "position": { "x": 5, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5063, - "time": 0.6822612085769981, + "noteOrder": 5065, + "time": 0.682261208576998, "position": { "x": 4, "y": 0 @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5087, + "noteOrder": 5089, "time": 0.6855100714749838, "position": { "x": 3, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5111, - "time": 0.6887589343729694, + "noteOrder": 5113, + "time": 0.6887589343729695, "position": { "x": 2, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5135, + "noteOrder": 5137, "time": 0.6920077972709552, "position": { "x": 5, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.6952566601689409, + "noteOrder": 5161, + "time": 0.6952566601689408, "position": { "x": 2, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5183, + "noteOrder": 5185, "time": 0.6985055230669266, "position": { "x": 5, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 5330, "time": 0.7179987004548408, "position": { "x": 4, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5354, "time": 0.7212475633528265, "position": { "x": 5, @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5376, - "time": 0.7244964262508123, + "noteOrder": 5378, + "time": 0.7244964262508121, "position": { "x": 6, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5497, - "time": 0.7407407407407408, + "noteOrder": 5499, + "time": 0.7407407407407407, "position": { "x": 8, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5521, - "time": 0.7439896036387265, + "noteOrder": 5523, + "time": 0.7439896036387263, "position": { "x": 5, "y": 0 @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5545, + "noteOrder": 5547, "time": 0.7472384665367122, "position": { "x": 8, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5569, + "noteOrder": 5571, "time": 0.7504873294346979, "position": { "x": 5, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5714, + "noteOrder": 5716, "time": 0.7699805068226121, "position": { "x": 6, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5738, - "time": 0.7732293697205977, + "noteOrder": 5740, + "time": 0.7732293697205979, "position": { "x": 5, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5762, + "noteOrder": 5764, "time": 0.7764782326185835, "position": { "x": 4, @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5882, + "noteOrder": 5885, "time": 0.7927225471085121, "position": { "x": 2, @@ -3453,7 +3453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5907, + "noteOrder": 5909, "time": 0.7959714100064977, "position": { "x": 5, @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5931, - "time": 0.7992202729044835, + "noteOrder": 5933, + "time": 0.7992202729044834, "position": { "x": 2, "y": 0 @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5955, + "noteOrder": 5957, "time": 0.8024691358024691, "position": { "x": 5, @@ -3513,7 +3513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6198, "time": 0.8349577647823262, "position": { "x": 5, @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6220, + "noteOrder": 6222, "time": 0.8382066276803118, "position": { "x": 7, @@ -3553,8 +3553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6244, - "time": 0.8414554905782977, + "noteOrder": 6247, + "time": 0.8414554905782976, "position": { "x": 5, "y": 0 @@ -3573,8 +3573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6268, - "time": 0.8447043534762834, + "noteOrder": 6271, + "time": 0.8447043534762833, "position": { "x": 4, "y": 0 @@ -3593,7 +3593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6292, + "noteOrder": 6295, "time": 0.847953216374269, "position": { "x": 5, @@ -3613,7 +3613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6316, + "noteOrder": 6319, "time": 0.8512020792722548, "position": { "x": 5, @@ -3633,7 +3633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6341, + "noteOrder": 6343, "time": 0.8544509421702404, "position": { "x": 6, @@ -3653,8 +3653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6582, - "time": 0.8869395711500975, + "noteOrder": 6584, + "time": 0.8869395711500974, "position": { "x": 5, "y": 0 @@ -3673,7 +3673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6606, + "noteOrder": 6608, "time": 0.8901884340480832, "position": { "x": 3, @@ -3693,8 +3693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6630, - "time": 0.893437296946069, + "noteOrder": 6632, + "time": 0.8934372969460689, "position": { "x": 5, "y": 0 @@ -3713,7 +3713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6654, + "noteOrder": 6657, "time": 0.8966861598440546, "position": { "x": 6, @@ -3733,7 +3733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6678, + "noteOrder": 6681, "time": 0.8999350227420403, "position": { "x": 5, @@ -3753,7 +3753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6702, + "noteOrder": 6705, "time": 0.9031838856400259, "position": { "x": 4, @@ -3773,7 +3773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6726, + "noteOrder": 6729, "time": 0.9064327485380117, "position": { "x": 3, @@ -3793,7 +3793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6750, + "noteOrder": 6753, "time": 0.9096816114359975, "position": { "x": 2, @@ -3813,7 +3813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6774, + "noteOrder": 6777, "time": 0.9129304743339831, "position": { "x": 6, @@ -3833,7 +3833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6799, + "noteOrder": 6801, "time": 0.9161793372319689, "position": { "x": 3, @@ -3853,8 +3853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6871, - "time": 0.925925925925926, + "noteOrder": 6874, + "time": 0.9259259259259259, "position": { "x": 6, "y": 0 @@ -3873,8 +3873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6871, - "time": 0.925925925925926, + "noteOrder": 6874, + "time": 0.9259259259259259, "position": { "x": 4, "y": 0 @@ -3893,8 +3893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6895, - "time": 0.9291747888239117, + "noteOrder": 6898, + "time": 0.9291747888239116, "position": { "x": 5, "y": 0 @@ -3913,7 +3913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6907, + "noteOrder": 6910, "time": 0.9307992202729045, "position": { "x": 7, @@ -3933,7 +3933,7 @@ "isPlayAudio": false }, { - "noteOrder": 6919, + "noteOrder": 6922, "time": 0.9324236517218973, "position": { "x": 4, @@ -3953,7 +3953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6943, + "noteOrder": 6946, "time": 0.9356725146198831, "position": { "x": 7, @@ -3973,7 +3973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6967, + "noteOrder": 6970, "time": 0.9389213775178687, "position": { "x": 4, @@ -3993,7 +3993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7016, + "noteOrder": 7018, "time": 0.9454191033138402, "position": { "x": 6, @@ -4013,7 +4013,7 @@ "isPlayAudio": false }, { - "noteOrder": 7028, + "noteOrder": 7030, "time": 0.947043534762833, "position": { "x": 4, @@ -4036,7 +4036,7 @@ "lineNodes": [ { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.025990903183885642, @@ -4059,7 +4059,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, "time": 0.03248862897985705, @@ -4082,10 +4082,10 @@ }, { "lineGroupId": 7, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 289, - "time": 0.03898635477582846, + "time": 0.038986354775828465, "position": { "x": 7, "y": 0 @@ -4105,10 +4105,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 289, - "time": 0.03898635477582846, + "time": 0.038986354775828465, "position": { "x": 6, "y": 0 @@ -4128,10 +4128,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, - "time": 0.04873294346978558, + "time": 0.04873294346978557, "position": { "x": 3, "y": 0 @@ -4151,7 +4151,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.051981806367771284, @@ -4174,7 +4174,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.06172839506172839, @@ -4197,7 +4197,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.0649772579597141, @@ -4219,11 +4219,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 506, - "time": 0.06822612085769982, + "noteOrder": 494, + "time": 0.06660168940870695, "position": { "x": 7, "y": 0 @@ -4237,18 +4237,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 530, - "time": 0.0714749837556855, + "noteOrder": 494, + "time": 0.06660168940870695, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4265,13 +4265,13 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 4, "isSliding": false, - "noteOrder": 554, - "time": 0.07472384665367122, + "noteOrder": 506, + "time": 0.06822612085769982, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4283,18 +4283,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 5, "isSliding": false, - "noteOrder": 579, - "time": 0.07797270955165692, + "noteOrder": 506, + "time": 0.06822612085769982, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4311,13 +4311,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.09096816114359975, + "noteOrder": 506, + "time": 0.06822612085769982, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4329,18 +4329,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 675, - "time": 0.09096816114359975, + "noteOrder": 519, + "time": 0.06985055230669265, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4357,13 +4357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 699, - "time": 0.09421702404158544, + "noteOrder": 519, + "time": 0.06985055230669265, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4375,18 +4375,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 4, "isSliding": false, - "noteOrder": 723, - "time": 0.09746588693957116, + "noteOrder": 531, + "time": 0.0714749837556855, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4403,13 +4403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 5, "isSliding": false, - "noteOrder": 747, - "time": 0.10071474983755685, + "noteOrder": 531, + "time": 0.0714749837556855, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4421,18 +4421,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 771, - "time": 0.10396361273554257, + "noteOrder": 531, + "time": 0.0714749837556855, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4444,18 +4444,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 844, - "time": 0.11371020142949968, + "noteOrder": 543, + "time": 0.07309941520467837, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4467,18 +4467,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1061, - "time": 0.142949967511371, + "noteOrder": 543, + "time": 0.07309941520467837, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4495,13 +4495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1085, - "time": 0.14619883040935672, + "noteOrder": 555, + "time": 0.07472384665367121, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4513,18 +4513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1109, - "time": 0.14944769330734245, + "noteOrder": 555, + "time": 0.07472384665367121, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4541,11 +4541,11 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1133, - "time": 0.15269655620532815, + "noteOrder": 555, + "time": 0.07472384665367121, "position": { "x": 7, "y": 0 @@ -4564,13 +4564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1254, - "time": 0.16894087069525668, + "noteOrder": 567, + "time": 0.07634827810266406, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4587,13 +4587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1278, - "time": 0.17218973359324236, + "noteOrder": 567, + "time": 0.07634827810266406, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4605,18 +4605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1302, - "time": 0.17543859649122806, + "noteOrder": 579, + "time": 0.07797270955165693, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4633,13 +4633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1326, - "time": 0.1786874593892138, + "noteOrder": 579, + "time": 0.07797270955165693, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4651,18 +4651,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1447, - "time": 0.19493177387914232, + "noteOrder": 579, + "time": 0.07797270955165693, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4674,18 +4674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1543, - "time": 0.20792722547108514, + "noteOrder": 675, + "time": 0.09096816114359975, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4697,18 +4697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1543, - "time": 0.20792722547108514, + "noteOrder": 675, + "time": 0.09096816114359975, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4720,18 +4720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1567, - "time": 0.21117608836907084, + "noteOrder": 687, + "time": 0.09259259259259259, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4748,13 +4748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1591, - "time": 0.21442495126705655, + "noteOrder": 687, + "time": 0.09259259259259259, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4766,18 +4766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1615, - "time": 0.21767381416504222, + "noteOrder": 699, + "time": 0.09421702404158544, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4794,13 +4794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 27, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1639, - "time": 0.22092267706302796, + "noteOrder": 699, + "time": 0.09421702404158544, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4812,18 +4812,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 28, "indexInLine": 1, "isSliding": false, - "noteOrder": 1688, - "time": 0.22742040285899937, + "noteOrder": 699, + "time": 0.09421702404158544, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4840,13 +4840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 28, "indexInLine": 2, "isSliding": false, - "noteOrder": 1712, - "time": 0.23066926575698504, + "noteOrder": 711, + "time": 0.0958414554905783, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4863,13 +4863,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2435, - "time": 0.3281351526965562, + "noteOrder": 711, + "time": 0.0958414554905783, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4886,13 +4886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2483, - "time": 0.3346328784925276, + "noteOrder": 724, + "time": 0.09746588693957114, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4909,13 +4909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2435, - "time": 0.3281351526965562, + "noteOrder": 724, + "time": 0.09746588693957114, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4927,16 +4927,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 2483, - "time": 0.3346328784925276, + "noteOrder": 724, + "time": 0.09746588693957114, "position": { "x": 3, "y": 0 @@ -4955,13 +4955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2507, - "time": 0.33788174139051336, + "noteOrder": 736, + "time": 0.09909031838856401, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4978,13 +4978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2604, - "time": 0.3508771929824561, + "noteOrder": 736, + "time": 0.09909031838856401, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -5001,13 +5001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2604, - "time": 0.3508771929824561, + "noteOrder": 748, + "time": 0.10071474983755685, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5019,18 +5019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2700, - "time": 0.363872644574399, + "noteOrder": 748, + "time": 0.10071474983755685, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5042,18 +5042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2700, - "time": 0.363872644574399, + "noteOrder": 748, + "time": 0.10071474983755685, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5065,18 +5065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2797, - "time": 0.37686809616634176, + "noteOrder": 760, + "time": 0.1023391812865497, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5088,18 +5088,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2797, - "time": 0.37686809616634176, + "noteOrder": 760, + "time": 0.1023391812865497, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5116,13 +5116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 1, + "lineGroupId": 30, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2893, - "time": 0.38986354775828463, + "noteOrder": 772, + "time": 0.10396361273554257, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -5139,11 +5139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2893, - "time": 0.38986354775828463, + "noteOrder": 772, + "time": 0.10396361273554257, "position": { "x": 6, "y": 0 @@ -5157,18 +5157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 2917, - "time": 0.3931124106562703, + "noteOrder": 772, + "time": 0.10396361273554257, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -5185,11 +5185,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 31, "indexInLine": 2, "isSliding": false, - "noteOrder": 2941, - "time": 0.39636127355425604, + "noteOrder": 844, + "time": 0.11371020142949968, "position": { "x": 6, "y": 0 @@ -5208,13 +5208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 3, + "lineGroupId": 44, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2989, - "time": 0.4028589993502274, + "noteOrder": 1061, + "time": 0.142949967511371, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5226,18 +5226,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2989, - "time": 0.4028589993502274, + "noteOrder": 1073, + "time": 0.14457439896036386, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5254,13 +5254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3014, - "time": 0.40610786224821316, + "noteOrder": 1073, + "time": 0.14457439896036386, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5277,13 +5277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 2, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3038, - "time": 0.4093567251461988, + "noteOrder": 1085, + "time": 0.14619883040935674, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5300,13 +5300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 3, + "lineGroupId": 44, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3086, - "time": 0.4158544509421703, + "noteOrder": 1085, + "time": 0.14619883040935674, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5323,13 +5323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3086, - "time": 0.4158544509421703, + "noteOrder": 1085, + "time": 0.14619883040935674, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5346,13 +5346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3110, - "time": 0.4191033138401559, + "noteOrder": 1097, + "time": 0.14782326185834957, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5369,11 +5369,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 2, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3134, - "time": 0.4223521767381417, + "noteOrder": 1097, + "time": 0.14782326185834957, "position": { "x": 6, "y": 0 @@ -5392,13 +5392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 3, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3158, - "time": 0.4256010396361274, + "noteOrder": 1109, + "time": 0.14944769330734242, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5415,13 +5415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 4, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3182, - "time": 0.4288499025341131, + "noteOrder": 1109, + "time": 0.14944769330734242, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5438,11 +5438,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3664, - "time": 0.49382716049382713, + "noteOrder": 1109, + "time": 0.14944769330734242, "position": { "x": 7, "y": 0 @@ -5461,13 +5461,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3761, - "time": 0.50682261208577, + "noteOrder": 1121, + "time": 0.1510721247563353, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5484,13 +5484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3761, - "time": 0.50682261208577, + "noteOrder": 1121, + "time": 0.1510721247563353, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5502,16 +5502,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3857, - "time": 0.5198180636777128, + "noteOrder": 1134, + "time": 0.15269655620532813, "position": { "x": 6, "y": 0 @@ -5525,18 +5525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3857, - "time": 0.5198180636777128, + "noteOrder": 1134, + "time": 0.15269655620532813, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5553,13 +5553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3954, - "time": 0.5328135152696556, + "noteOrder": 1134, + "time": 0.15269655620532813, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5571,18 +5571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4050, - "time": 0.5458089668615985, + "noteOrder": 1146, + "time": 0.15432098765432098, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5599,11 +5599,11 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4147, - "time": 0.5588044184535413, + "noteOrder": 1146, + "time": 0.15432098765432098, "position": { "x": 6, "y": 0 @@ -5622,13 +5622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4147, - "time": 0.5588044184535413, + "noteOrder": 1158, + "time": 0.15594541910331386, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5640,16 +5640,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4243, - "time": 0.571799870045484, + "noteOrder": 1158, + "time": 0.15594541910331386, "position": { "x": 4, "y": 0 @@ -5663,16 +5663,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4243, - "time": 0.571799870045484, + "noteOrder": 1254, + "time": 0.16894087069525665, "position": { "x": 3, "y": 0 @@ -5691,13 +5691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4340, - "time": 0.5847953216374269, + "noteOrder": 1266, + "time": 0.1705653021442495, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5714,13 +5714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4436, - "time": 0.5977907732293698, + "noteOrder": 1266, + "time": 0.1705653021442495, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5732,16 +5732,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4532, - "time": 0.6107862248213126, + "noteOrder": 1278, + "time": 0.17218973359324238, "position": { "x": 4, "y": 0 @@ -5755,18 +5755,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4532, - "time": 0.6107862248213126, + "noteOrder": 1278, + "time": 0.17218973359324238, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5783,13 +5783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.6237816764132553, + "noteOrder": 1278, + "time": 0.17218973359324238, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5801,18 +5801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4629, - "time": 0.6237816764132553, + "noteOrder": 1290, + "time": 0.1738141650422352, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5829,11 +5829,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4725, - "time": 0.6367771280051981, + "noteOrder": 1290, + "time": 0.1738141650422352, "position": { "x": 4, "y": 0 @@ -5852,13 +5852,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4822, - "time": 0.649772579597141, + "noteOrder": 1302, + "time": 0.17543859649122806, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5875,13 +5875,4567 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1302, + "time": 0.17543859649122806, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1302, + "time": 0.17543859649122806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1314, + "time": 0.17706302794022094, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1314, + "time": 0.17706302794022094, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1326, + "time": 0.17868745938921377, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1326, + "time": 0.17868745938921377, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1326, + "time": 0.17868745938921377, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1339, + "time": 0.18031189083820662, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1339, + "time": 0.18031189083820662, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1351, + "time": 0.1819363222871995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1351, + "time": 0.1819363222871995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1447, + "time": 0.1949317738791423, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1544, + "time": 0.20792722547108514, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1544, + "time": 0.20792722547108514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1556, + "time": 0.20955165692007796, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1556, + "time": 0.20955165692007796, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1568, + "time": 0.2111760883690708, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1568, + "time": 0.2111760883690708, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1568, + "time": 0.2111760883690708, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2128005198180637, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1580, + "time": 0.2128005198180637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1592, + "time": 0.21442495126705652, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1592, + "time": 0.21442495126705652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1592, + "time": 0.21442495126705652, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1604, + "time": 0.21604938271604937, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1604, + "time": 0.21604938271604937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1616, + "time": 0.21767381416504225, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1616, + "time": 0.21767381416504225, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1616, + "time": 0.21767381416504225, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1628, + "time": 0.21929824561403508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1628, + "time": 0.21929824561403508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1640, + "time": 0.22092267706302793, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1640, + "time": 0.22092267706302793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1640, + "time": 0.22092267706302793, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1688, + "time": 0.22742040285899937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1712, + "time": 0.23066926575698504, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2436, + "time": 0.3281351526965562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2484, + "time": 0.33463287849252765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2436, + "time": 0.3281351526965562, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2484, + "time": 0.33463287849252765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2508, + "time": 0.3378817413905133, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2605, + "time": 0.3508771929824561, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2605, + "time": 0.3508771929824561, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2701, + "time": 0.363872644574399, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2701, + "time": 0.363872644574399, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2798, + "time": 0.37686809616634176, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2798, + "time": 0.37686809616634176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2894, + "time": 0.3898635477582846, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2894, + "time": 0.3898635477582846, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2918, + "time": 0.3931124106562703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2942, + "time": 0.39636127355425604, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2991, + "time": 0.4028589993502274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2991, + "time": 0.4028589993502274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3015, + "time": 0.40610786224821316, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3039, + "time": 0.4093567251461988, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3087, + "time": 0.4158544509421703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3087, + "time": 0.4158544509421703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3111, + "time": 0.4191033138401559, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3135, + "time": 0.4223521767381416, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3159, + "time": 0.4256010396361274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3184, + "time": 0.42884990253411304, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3666, + "time": 0.49382716049382713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3762, + "time": 0.50682261208577, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3762, + "time": 0.50682261208577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3859, + "time": 0.5198180636777128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3859, + "time": 0.5198180636777128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3955, + "time": 0.5328135152696556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4052, + "time": 0.5458089668615985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4148, + "time": 0.5588044184535412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4148, + "time": 0.5588044184535412, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4245, + "time": 0.571799870045484, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4245, + "time": 0.571799870045484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4341, + "time": 0.584795321637427, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4438, + "time": 0.5977907732293697, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4534, + "time": 0.6107862248213125, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4534, + "time": 0.6107862248213125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4631, + "time": 0.6237816764132554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4631, + "time": 0.6237816764132554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4727, + "time": 0.6367771280051981, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4824, + "time": 0.649772579597141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6627680311890838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4920, + "time": 0.6627680311890838, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5017, + "time": 0.6757634827810266, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5017, + "time": 0.6757634827810266, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5113, + "time": 0.6887589343729695, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5209, + "time": 0.7017543859649122, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7033788174139052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7033788174139052, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5234, + "time": 0.705003248862898, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 226, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5234, + "time": 0.705003248862898, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5234, + "time": 0.705003248862898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5246, + "time": 0.7066276803118908, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5246, + "time": 0.7066276803118908, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5258, + "time": 0.7082521117608838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 227, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5258, + "time": 0.7082521117608838, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5258, + "time": 0.7082521117608838, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5270, + "time": 0.7098765432098765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5270, + "time": 0.7098765432098765, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7115009746588694, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 228, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7115009746588694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5282, + "time": 0.7115009746588694, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5294, + "time": 0.7131254061078622, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5294, + "time": 0.7131254061078622, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5306, + "time": 0.7147498375568551, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 229, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5306, + "time": 0.7147498375568551, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5306, + "time": 0.7147498375568551, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 230, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5402, + "time": 0.727745289148798, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5402, + "time": 0.727745289148798, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5414, + "time": 0.7293697205977907, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5414, + "time": 0.7293697205977907, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5427, + "time": 0.7309941520467836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 234, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5427, + "time": 0.7309941520467836, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5427, + "time": 0.7309941520467836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5439, + "time": 0.7326185834957765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5439, + "time": 0.7326185834957765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5451, + "time": 0.7342430149447693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 235, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5451, + "time": 0.7342430149447693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5451, + "time": 0.7342430149447693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5463, + "time": 0.7358674463937622, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5463, + "time": 0.7358674463937622, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5475, + "time": 0.737491877842755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 236, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5475, + "time": 0.737491877842755, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5475, + "time": 0.737491877842755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5487, + "time": 0.7391163092917479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5487, + "time": 0.7391163092917479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5499, + "time": 0.7407407407407407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 237, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5499, + "time": 0.7407407407407407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5595, + "time": 0.7537361923326835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5607, + "time": 0.7553606237816763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5607, + "time": 0.7553606237816763, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5619, + "time": 0.7569850552306693, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 244, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5619, + "time": 0.7569850552306693, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5619, + "time": 0.7569850552306693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5632, + "time": 0.7586094866796621, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5632, + "time": 0.7586094866796621, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5644, + "time": 0.7602339181286549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 245, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5644, + "time": 0.7602339181286549, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5644, + "time": 0.7602339181286549, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5656, + "time": 0.7618583495776479, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5656, + "time": 0.7618583495776479, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5668, + "time": 0.7634827810266406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 246, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5668, + "time": 0.7634827810266406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5668, + "time": 0.7634827810266406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5680, + "time": 0.7651072124756335, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5680, + "time": 0.7651072124756335, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5692, + "time": 0.7667316439246264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5692, + "time": 0.7667316439246264, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5692, + "time": 0.7667316439246264, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 248, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5788, + "time": 0.7797270955165692, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5788, + "time": 0.7797270955165692, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5800, + "time": 0.7813515269655621, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5800, + "time": 0.7813515269655621, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5812, + "time": 0.7829759584145549, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 252, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5812, + "time": 0.7829759584145549, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5812, + "time": 0.7829759584145549, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5824, + "time": 0.7846003898635477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5824, + "time": 0.7846003898635477, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5837, + "time": 0.7862248213125406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 253, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5837, + "time": 0.7862248213125406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5837, + "time": 0.7862248213125406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5849, + "time": 0.7878492527615335, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5849, + "time": 0.7878492527615335, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5861, + "time": 0.7894736842105263, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 254, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5861, + "time": 0.7894736842105263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5861, + "time": 0.7894736842105263, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5873, + "time": 0.7910981156595192, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5873, + "time": 0.7910981156595192, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5885, + "time": 0.7927225471085121, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 255, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5885, + "time": 0.7927225471085121, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5981, + "time": 0.8057179987004548, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5993, + "time": 0.8073424301494477, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5993, + "time": 0.8073424301494477, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6005, + "time": 0.8089668615984406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 262, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6005, + "time": 0.8089668615984406, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6005, + "time": 0.8089668615984406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6017, + "time": 0.8105912930474334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6017, + "time": 0.8105912930474334, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6029, + "time": 0.8122157244964263, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 263, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6029, + "time": 0.8122157244964263, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6029, + "time": 0.8122157244964263, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6042, + "time": 0.813840155945419, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6042, + "time": 0.813840155945419, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6054, + "time": 0.815464587394412, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 264, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6054, + "time": 0.815464587394412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6054, + "time": 0.815464587394412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6066, + "time": 0.8170890188434048, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6066, + "time": 0.8170890188434048, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6078, + "time": 0.8187134502923976, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 265, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6078, + "time": 0.8187134502923976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6078, + "time": 0.8187134502923976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6090, + "time": 0.8203378817413906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6090, + "time": 0.8203378817413906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6102, + "time": 0.8219623131903834, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 266, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6102, + "time": 0.8219623131903834, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6102, + "time": 0.8219623131903834, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6114, + "time": 0.8235867446393762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6114, + "time": 0.8235867446393762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6126, + "time": 0.825211176088369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 267, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4918, - "time": 0.6627680311890839, + "noteOrder": 6126, + "time": 0.825211176088369, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5898,11 +10452,11 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 268, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4918, - "time": 0.6627680311890839, + "noteOrder": 6126, + "time": 0.825211176088369, "position": { "x": 3, "y": 0 @@ -5921,11 +10475,80 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 268, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6138, + "time": 0.826835607537362, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6138, + "time": 0.826835607537362, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6150, + "time": 0.8284600389863548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 268, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5015, - "time": 0.6757634827810267, + "noteOrder": 6150, + "time": 0.8284600389863548, "position": { "x": 6, "y": 0 @@ -5944,13 +10567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 269, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5015, - "time": 0.6757634827810267, + "noteOrder": 6150, + "time": 0.8284600389863548, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5967,11 +10590,34 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 1, + "lineGroupId": 269, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6162, + "time": 0.8300844704353476, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5111, - "time": 0.6887589343729694, + "noteOrder": 6162, + "time": 0.8300844704353476, "position": { "x": 4, "y": 0 @@ -5990,13 +10636,59 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 269, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5207, - "time": 0.7017543859649122, + "noteOrder": 6174, + "time": 0.8317089018843405, "position": { - "x": 3, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 269, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6174, + "time": 0.8317089018843405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6174, + "time": 0.8317089018843405, + "position": { + "x": 2, "y": 0 }, "position2D": { @@ -6013,13 +10705,82 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5232, - "time": 0.705003248862898, + "noteOrder": 6222, + "time": 0.8382066276803118, "position": { - "x": 3, + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6271, + "time": 0.8447043534762833, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 270, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6367, + "time": 0.8576998050682261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6367, + "time": 0.8576998050682261, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -6036,13 +10797,36 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6379, + "time": 0.859324236517219, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 278, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5256, - "time": 0.7082521117608838, + "noteOrder": 6379, + "time": 0.859324236517219, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6054,18 +10838,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5280, - "time": 0.7115009746588694, + "noteOrder": 6391, + "time": 0.8609486679662118, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6082,13 +10866,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5304, - "time": 0.7147498375568552, + "noteOrder": 6391, + "time": 0.8609486679662118, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -6100,18 +10884,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, + "lineGroupId": 279, "indexInLine": 1, "isSliding": false, - "noteOrder": 5400, - "time": 0.727745289148798, + "noteOrder": 6391, + "time": 0.8609486679662118, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6128,11 +10912,11 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5400, - "time": 0.727745289148798, + "noteOrder": 6403, + "time": 0.8625730994152047, "position": { "x": 7, "y": 0 @@ -6146,18 +10930,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5424, - "time": 0.7309941520467836, + "noteOrder": 6403, + "time": 0.8625730994152047, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6174,13 +10958,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5449, - "time": 0.7342430149447693, + "noteOrder": 6415, + "time": 0.8641975308641975, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6192,18 +10976,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 279, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5473, - "time": 0.737491877842755, + "noteOrder": 6415, + "time": 0.8641975308641975, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6220,11 +11004,11 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5593, - "time": 0.7537361923326835, + "noteOrder": 6415, + "time": 0.8641975308641975, "position": { "x": 7, "y": 0 @@ -6243,11 +11027,11 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5617, - "time": 0.7569850552306694, + "noteOrder": 6427, + "time": 0.8658219623131904, "position": { "x": 7, "y": 0 @@ -6261,18 +11045,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5641, - "time": 0.760233918128655, + "noteOrder": 6427, + "time": 0.8658219623131904, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6289,13 +11073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5665, - "time": 0.7634827810266407, + "noteOrder": 6439, + "time": 0.8674463937621831, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6307,18 +11091,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 280, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5690, - "time": 0.7667316439246264, + "noteOrder": 6439, + "time": 0.8674463937621831, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -6335,13 +11119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 248, + "lineGroupId": 281, "indexInLine": 1, "isSliding": false, - "noteOrder": 5786, - "time": 0.7797270955165693, + "noteOrder": 6439, + "time": 0.8674463937621831, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6353,18 +11137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5786, - "time": 0.7797270955165693, + "noteOrder": 6452, + "time": 0.8690708252111761, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6381,13 +11165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5810, - "time": 0.7829759584145549, + "noteOrder": 6452, + "time": 0.8690708252111761, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6399,18 +11183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5834, - "time": 0.7862248213125406, + "noteOrder": 6464, + "time": 0.870695256660169, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6427,13 +11211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5858, - "time": 0.7894736842105263, + "noteOrder": 6464, + "time": 0.870695256660169, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6445,18 +11229,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5979, - "time": 0.8057179987004548, + "noteOrder": 6464, + "time": 0.870695256660169, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6468,18 +11252,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6003, - "time": 0.8089668615984407, + "noteOrder": 6476, + "time": 0.8723196881091617, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6496,13 +11280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 264, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6027, - "time": 0.8122157244964263, + "noteOrder": 6476, + "time": 0.8723196881091617, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6514,18 +11298,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 265, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6051, - "time": 0.815464587394412, + "noteOrder": 6488, + "time": 0.8739441195581547, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6542,13 +11326,13 @@ "isPlayAudio": false }, { - "lineGroupId": 266, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6075, - "time": 0.8187134502923976, + "noteOrder": 6488, + "time": 0.8739441195581547, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6560,18 +11344,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6099, - "time": 0.8219623131903834, + "noteOrder": 6488, + "time": 0.8739441195581547, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6583,18 +11367,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 268, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6124, - "time": 0.8252111760883691, + "noteOrder": 6500, + "time": 0.8755685510071475, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6611,13 +11395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 269, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6148, - "time": 0.8284600389863548, + "noteOrder": 6500, + "time": 0.8755685510071475, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6629,18 +11413,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 283, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6172, - "time": 0.8317089018843405, + "noteOrder": 6512, + "time": 0.8771929824561403, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -6657,13 +11441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 1, + "lineGroupId": 283, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6220, - "time": 0.8382066276803118, + "noteOrder": 6512, + "time": 0.8771929824561403, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6680,13 +11464,13 @@ "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 2, + "lineGroupId": 284, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6268, - "time": 0.8447043534762834, + "noteOrder": 6512, + "time": 0.8771929824561403, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6698,18 +11482,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 3, + "lineGroupId": 284, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6365, - "time": 0.8576998050682262, + "noteOrder": 6524, + "time": 0.8788174139051332, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6721,18 +11505,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 278, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6365, - "time": 0.8576998050682262, + "noteOrder": 6524, + "time": 0.8788174139051332, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6749,13 +11533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 279, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6389, - "time": 0.8609486679662118, + "noteOrder": 6536, + "time": 0.8804418453541261, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6767,18 +11551,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 280, - "indexInLine": 0, + "lineGroupId": 284, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6413, - "time": 0.8641975308641976, + "noteOrder": 6536, + "time": 0.8804418453541261, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6795,11 +11579,11 @@ "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6437, - "time": 0.8674463937621832, + "noteOrder": 6536, + "time": 0.8804418453541261, "position": { "x": 7, "y": 0 @@ -6818,11 +11602,11 @@ "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6461, - "time": 0.8706952566601689, + "noteOrder": 6548, + "time": 0.8820662768031189, "position": { "x": 7, "y": 0 @@ -6836,18 +11620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 283, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6485, - "time": 0.8739441195581548, + "noteOrder": 6548, + "time": 0.8820662768031189, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6864,13 +11648,13 @@ "isPlayAudio": false }, { - "lineGroupId": 284, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6509, - "time": 0.8771929824561404, + "noteOrder": 6560, + "time": 0.8836907082521117, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6882,18 +11666,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 285, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6533, - "time": 0.8804418453541261, + "noteOrder": 6560, + "time": 0.8836907082521117, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6911,10 +11695,10 @@ }, { "lineGroupId": 286, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6557, - "time": 0.8836907082521118, + "noteOrder": 6560, + "time": 0.8836907082521117, "position": { "x": 8, "y": 0 @@ -6934,9 +11718,9 @@ }, { "lineGroupId": 286, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6606, + "noteOrder": 6608, "time": 0.8901884340480832, "position": { "x": 5, @@ -6957,9 +11741,9 @@ }, { "lineGroupId": 286, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6654, + "noteOrder": 6657, "time": 0.8966861598440546, "position": { "x": 8, @@ -6980,9 +11764,9 @@ }, { "lineGroupId": 286, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6750, + "noteOrder": 6753, "time": 0.9096816114359975, "position": { "x": 4, @@ -7003,10 +11787,10 @@ }, { "lineGroupId": 310, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7040, - "time": 0.9486679662118259, + "noteOrder": 7042, + "time": 0.9486679662118258, "position": { "x": 5, "y": 0 @@ -7026,9 +11810,9 @@ }, { "lineGroupId": 310, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7160, + "noteOrder": 7163, "time": 0.9649122807017544, "position": { "x": 5, @@ -7049,9 +11833,9 @@ }, { "lineGroupId": 310, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7208, + "noteOrder": 7211, "time": 0.9714100064977258, "position": { "x": 7, @@ -7072,9 +11856,9 @@ }, { "lineGroupId": 310, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7233, + "noteOrder": 7235, "time": 0.9746588693957116, "position": { "x": 7, @@ -7095,9 +11879,9 @@ }, { "lineGroupId": 311, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7064, + "noteOrder": 7067, "time": 0.9519168291098116, "position": { "x": 8, @@ -7118,10 +11902,10 @@ }, { "lineGroupId": 311, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7088, - "time": 0.9551656920077972, + "noteOrder": 7091, + "time": 0.9551656920077973, "position": { "x": 8, "y": 0 @@ -7141,10 +11925,10 @@ }, { "lineGroupId": 311, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7136, - "time": 0.9616634178037687, + "noteOrder": 7139, + "time": 0.9616634178037686, "position": { "x": 3, "y": 0 @@ -7164,9 +11948,9 @@ }, { "lineGroupId": 311, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7208, + "noteOrder": 7211, "time": 0.9714100064977258, "position": { "x": 3, @@ -7187,9 +11971,9 @@ }, { "lineGroupId": 311, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7233, + "noteOrder": 7235, "time": 0.9746588693957116, "position": { "x": 5, diff --git a/tracks/[E]/318_difficulty_1b.json b/tracks/[E]/318_difficulty_1b.json index 359d6350..1b43972c 100644 --- a/tracks/[E]/318_difficulty_1b.json +++ b/tracks/[E]/318_difficulty_1b.json @@ -54,7 +54,7 @@ }, { "noteOrder": 145, - "time": 0.01949317738791423, + "time": 0.019493177387914232, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 289, - "time": 0.03898635477582846, + "time": 0.038986354775828465, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 313, - "time": 0.04223521767381417, + "noteOrder": 314, + "time": 0.04223521767381416, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 410, - "time": 0.05523066926575699, + "time": 0.05523066926575698, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 531, "time": 0.0714749837556855, "position": { "x": 5, @@ -334,7 +334,7 @@ }, { "noteOrder": 579, - "time": 0.07797270955165692, + "time": 0.07797270955165693, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 627, - "time": 0.08447043534762834, + "time": 0.08447043534762833, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 723, - "time": 0.09746588693957116, + "noteOrder": 724, + "time": 0.09746588693957114, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 771, + "noteOrder": 772, "time": 0.10396361273554257, "position": { "x": 6, @@ -474,7 +474,7 @@ }, { "noteOrder": 796, - "time": 0.10721247563352827, + "time": 0.10721247563352826, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 820, - "time": 0.11046133853151398, + "time": 0.11046133853151396, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1109, - "time": 0.14944769330734245, + "time": 0.14944769330734242, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1205, + "noteOrder": 1206, "time": 0.16244314489928524, "position": { "x": 4, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1591, - "time": 0.21442495126705655, + "noteOrder": 1592, + "time": 0.21442495126705652, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1953, - "time": 0.26315789473684215, + "noteOrder": 1954, + "time": 0.2631578947368421, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1977, + "noteOrder": 1978, "time": 0.2664067576348278, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2026, "time": 0.27290448343079926, "position": { "x": 3, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2049, + "noteOrder": 2050, "time": 0.2761533463287849, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2073, - "time": 0.27940220922677067, + "noteOrder": 2074, + "time": 0.2794022092267706, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2266, - "time": 0.3053931124106563, + "noteOrder": 2267, + "time": 0.30539311241065625, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2363, + "noteOrder": 2364, "time": 0.3183885640025991, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2507, - "time": 0.33788174139051336, + "noteOrder": 2508, + "time": 0.3378817413905133, "position": { "x": 3, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2531, - "time": 0.34113060428849906, + "noteOrder": 2532, + "time": 0.341130604288499, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.3443794671864847, + "noteOrder": 2556, + "time": 0.34437946718648477, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2701, "time": 0.363872644574399, "position": { "x": 7, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 2725, "time": 0.36712150747238464, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2748, - "time": 0.3703703703703704, + "noteOrder": 2749, + "time": 0.37037037037037035, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2941, + "noteOrder": 2942, "time": 0.39636127355425604, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3038, + "noteOrder": 3039, "time": 0.4093567251461988, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3134, - "time": 0.4223521767381417, + "noteOrder": 3135, + "time": 0.4223521767381416, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3327, + "noteOrder": 3328, "time": 0.4483430799220273, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3351, + "noteOrder": 3352, "time": 0.45159194282001297, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3472, + "noteOrder": 3473, "time": 0.46783625730994155, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3496, - "time": 0.47108512020792725, + "noteOrder": 3497, + "time": 0.4710851202079272, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3520, - "time": 0.47433398310591296, + "noteOrder": 3521, + "time": 0.4743339831059129, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3568, - "time": 0.48083170890188437, + "noteOrder": 3569, + "time": 0.4808317089018843, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3592, - "time": 0.4840805717998701, + "noteOrder": 3594, + "time": 0.48408057179987, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3616, + "noteOrder": 3618, "time": 0.4873294346978558, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3906, - "time": 0.5263157894736843, + "noteOrder": 3907, + "time": 0.5263157894736842, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4002, + "noteOrder": 4004, "time": 0.539311241065627, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4291, - "time": 0.5782975958414556, + "noteOrder": 4293, + "time": 0.5782975958414555, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4388, - "time": 0.5912930474333984, + "noteOrder": 4389, + "time": 0.5912930474333983, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4484, - "time": 0.6042884990253411, + "noteOrder": 4486, + "time": 0.6042884990253412, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4677, - "time": 0.6302794022092268, + "noteOrder": 4679, + "time": 0.6302794022092267, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 4727, "time": 0.6367771280051981, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4749, - "time": 0.6400259909031839, + "noteOrder": 4751, + "time": 0.6400259909031838, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4773, - "time": 0.6432748538011697, + "noteOrder": 4775, + "time": 0.6432748538011696, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4798, + "noteOrder": 4799, "time": 0.6465237166991553, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4870, + "noteOrder": 4872, "time": 0.6562703053931124, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4918, - "time": 0.6627680311890839, + "noteOrder": 4920, + "time": 0.6627680311890838, "position": { "x": 4, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4942, + "noteOrder": 4944, "time": 0.6660168940870695, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4966, - "time": 0.6692657569850552, + "noteOrder": 4968, + "time": 0.6692657569850553, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5015, - "time": 0.6757634827810267, + "noteOrder": 5017, + "time": 0.6757634827810266, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5039, + "noteOrder": 5041, "time": 0.6790123456790124, "position": { "x": 4, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5063, - "time": 0.6822612085769981, + "noteOrder": 5065, + "time": 0.682261208576998, "position": { "x": 6, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.6952566601689409, + "noteOrder": 5161, + "time": 0.6952566601689408, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5159, - "time": 0.6952566601689409, + "noteOrder": 5161, + "time": 0.6952566601689408, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5258, "time": 0.7082521117608838, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5354, "time": 0.7212475633528265, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5641, - "time": 0.760233918128655, + "noteOrder": 5644, + "time": 0.7602339181286549, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5738, - "time": 0.7732293697205977, + "noteOrder": 5740, + "time": 0.7732293697205979, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5834, + "noteOrder": 5837, "time": 0.7862248213125406, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6027, + "noteOrder": 6029, "time": 0.8122157244964263, "position": { "x": 6, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6124, - "time": 0.8252111760883691, + "noteOrder": 6126, + "time": 0.825211176088369, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6413, - "time": 0.8641975308641976, + "noteOrder": 6415, + "time": 0.8641975308641975, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 6509, - "time": 0.8771929824561404, + "noteOrder": 6512, + "time": 0.8771929824561403, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6654, + "noteOrder": 6657, "time": 0.8966861598440546, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6678, + "noteOrder": 6681, "time": 0.8999350227420403, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6702, + "noteOrder": 6705, "time": 0.9031838856400259, "position": { "x": 4, @@ -1796,9 +1796,9 @@ "lineNodes": [ { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 964, + "noteOrder": 965, "time": 0.1299545159194282, "position": { "x": 3, @@ -1819,7 +1819,7 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1013, "time": 0.13645224171539963, @@ -1842,10 +1842,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1157, - "time": 0.15594541910331383, + "noteOrder": 1158, + "time": 0.15594541910331386, "position": { "x": 7, "y": 0 @@ -1865,9 +1865,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1205, + "noteOrder": 1206, "time": 0.16244314489928524, "position": { "x": 4, @@ -1888,10 +1888,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1254, - "time": 0.16894087069525668, + "time": 0.16894087069525665, "position": { "x": 3, "y": 0 @@ -1911,7 +1911,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1302, "time": 0.17543859649122806, @@ -1934,9 +1934,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1350, + "noteOrder": 1351, "time": 0.1819363222871995, "position": { "x": 7, @@ -1956,11 +1956,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1398, - "time": 0.18843404808317088, + "noteOrder": 1375, + "time": 0.18518518518518517, "position": { "x": 7, "y": 0 @@ -1974,18 +1974,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.19493177387914232, + "noteOrder": 1375, + "time": 0.18518518518518517, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2002,11 +2002,11 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1495, - "time": 0.2014294996751137, + "noteOrder": 1399, + "time": 0.18843404808317088, "position": { "x": 7, "y": 0 @@ -2025,11 +2025,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1543, - "time": 0.20792722547108514, + "noteOrder": 1423, + "time": 0.1916829109811566, "position": { "x": 7, "y": 0 @@ -2043,18 +2043,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1423, + "time": 0.1916829109811566, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, "indexInLine": 1, "isSliding": false, - "noteOrder": 1591, - "time": 0.21442495126705655, + "noteOrder": 1447, + "time": 0.1949317738791423, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2071,13 +2094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1736, - "time": 0.23391812865497078, + "noteOrder": 1471, + "time": 0.19818063677712802, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2089,18 +2112,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1784, - "time": 0.24041585445094218, + "noteOrder": 1471, + "time": 0.19818063677712802, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2117,13 +2140,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1832, - "time": 0.24691358024691357, + "noteOrder": 1495, + "time": 0.2014294996751137, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2140,13 +2163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1880, - "time": 0.253411306042885, + "noteOrder": 1519, + "time": 0.2046783625730994, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2158,18 +2181,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2122, - "time": 0.285899935022742, + "noteOrder": 1519, + "time": 0.2046783625730994, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2186,13 +2209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2170, - "time": 0.29239766081871343, + "noteOrder": 1544, + "time": 0.20792722547108514, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2209,13 +2232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2218, - "time": 0.2988953866146849, + "noteOrder": 1592, + "time": 0.21442495126705652, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2227,18 +2250,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 2266, - "time": 0.3053931124106563, + "noteOrder": 1736, + "time": 0.23391812865497078, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2255,13 +2278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2314, - "time": 0.31189083820662766, + "noteOrder": 1761, + "time": 0.23716699155295645, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2273,16 +2296,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2363, - "time": 0.3183885640025991, + "noteOrder": 1761, + "time": 0.23716699155295645, "position": { "x": 4, "y": 0 @@ -2296,18 +2319,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2604, - "time": 0.3508771929824561, + "noteOrder": 1785, + "time": 0.24041585445094216, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2324,13 +2347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2652, - "time": 0.3573749187784276, + "noteOrder": 1809, + "time": 0.2436647173489279, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2342,18 +2365,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2797, - "time": 0.37686809616634176, + "noteOrder": 1809, + "time": 0.2436647173489279, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2370,13 +2393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2845, - "time": 0.3833658219623132, + "noteOrder": 1833, + "time": 0.24691358024691357, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2393,13 +2416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2893, - "time": 0.38986354775828463, + "noteOrder": 1857, + "time": 0.25016244314489927, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2411,16 +2434,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2941, - "time": 0.39636127355425604, + "noteOrder": 1857, + "time": 0.25016244314489927, "position": { "x": 4, "y": 0 @@ -2434,16 +2457,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2989, - "time": 0.4028589993502274, + "noteOrder": 1881, + "time": 0.253411306042885, "position": { "x": 3, "y": 0 @@ -2457,18 +2480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3038, - "time": 0.4093567251461988, + "noteOrder": 1905, + "time": 0.2566601689408707, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2480,18 +2503,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3086, - "time": 0.4158544509421703, + "noteOrder": 1905, + "time": 0.2566601689408707, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2508,13 +2531,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 54, "indexInLine": 1, "isSliding": false, - "noteOrder": 3134, - "time": 0.4223521767381417, + "noteOrder": 2122, + "time": 0.285899935022742, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2526,16 +2549,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3664, - "time": 0.49382716049382713, + "noteOrder": 2146, + "time": 0.28914879792072773, "position": { "x": 3, "y": 0 @@ -2554,11 +2577,34 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3713, - "time": 0.5003248862897985, + "noteOrder": 2146, + "time": 0.28914879792072773, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2171, + "time": 0.2923976608187135, "position": { "x": 3, "y": 0 @@ -2577,11 +2623,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3761, - "time": 0.50682261208577, + "noteOrder": 2195, + "time": 0.29564652371669914, "position": { "x": 3, "y": 0 @@ -2595,18 +2641,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3809, - "time": 0.5133203378817415, + "noteOrder": 2195, + "time": 0.29564652371669914, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2623,11 +2669,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3857, - "time": 0.5198180636777128, + "noteOrder": 2219, + "time": 0.29889538661468484, "position": { "x": 3, "y": 0 @@ -2646,11 +2692,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3906, - "time": 0.5263157894736843, + "noteOrder": 2267, + "time": 0.30539311241065625, "position": { "x": 6, "y": 0 @@ -2669,11 +2715,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3954, - "time": 0.5328135152696556, + "noteOrder": 2315, + "time": 0.3118908382066277, "position": { "x": 7, "y": 0 @@ -2692,11 +2738,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4002, - "time": 0.539311241065627, + "noteOrder": 2364, + "time": 0.3183885640025991, "position": { "x": 4, "y": 0 @@ -2715,13 +2761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4050, - "time": 0.5458089668615985, + "noteOrder": 2605, + "time": 0.3508771929824561, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2733,18 +2779,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4098, - "time": 0.5523066926575698, + "noteOrder": 2629, + "time": 0.3541260558804419, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2761,13 +2807,1623 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2629, + "time": 0.3541260558804419, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2653, + "time": 0.35737491877842753, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2677, + "time": 0.36062378167641324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2677, + "time": 0.36062378167641324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2798, + "time": 0.37686809616634176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2822, + "time": 0.38011695906432746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2822, + "time": 0.38011695906432746, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2846, + "time": 0.3833658219623132, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.38661468486029893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2870, + "time": 0.38661468486029893, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2894, + "time": 0.3898635477582846, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2942, + "time": 0.39636127355425604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2991, + "time": 0.4028589993502274, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3039, + "time": 0.4093567251461988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3087, + "time": 0.4158544509421703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3135, + "time": 0.4223521767381416, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3666, + "time": 0.49382716049382713, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3690, + "time": 0.4970760233918129, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3690, + "time": 0.4970760233918129, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3714, + "time": 0.5003248862897985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3738, + "time": 0.5035737491877843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3738, + "time": 0.5035737491877843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3762, + "time": 0.50682261208577, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3786, + "time": 0.5100714749837557, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3786, + "time": 0.5100714749837557, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3811, + "time": 0.5133203378817414, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3835, + "time": 0.5165692007797271, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3835, + "time": 0.5165692007797271, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3859, + "time": 0.5198180636777128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3907, + "time": 0.5263157894736842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3955, + "time": 0.5328135152696556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4004, + "time": 0.539311241065627, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4052, + "time": 0.5458089668615985, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4076, + "time": 0.5490578297595842, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4076, + "time": 0.5490578297595842, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4100, + "time": 0.5523066926575698, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4124, + "time": 0.5555555555555556, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4124, + "time": 0.5555555555555556, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4148, + "time": 0.5588044184535412, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4172, + "time": 0.562053281351527, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4172, + "time": 0.562053281351527, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4196, + "time": 0.5653021442495128, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4221, + "time": 0.5685510071474984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4221, + "time": 0.5685510071474984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4245, + "time": 0.571799870045484, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4293, + "time": 0.5782975958414555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4341, + "time": 0.584795321637427, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4389, + "time": 0.5912930474333983, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4438, + "time": 0.5977907732293697, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4486, + "time": 0.6042884990253412, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4534, + "time": 0.6107862248213125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4558, + "time": 0.6140350877192983, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4558, + "time": 0.6140350877192983, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4582, + "time": 0.6172839506172839, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4606, + "time": 0.6205328135152696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4606, + "time": 0.6205328135152696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4631, + "time": 0.6237816764132554, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4679, + "time": 0.6302794022092267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4824, + "time": 0.649772579597141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4872, + "time": 0.6562703053931124, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5209, + "time": 0.7017543859649122, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5258, + "time": 0.7082521117608838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5306, + "time": 0.7147498375568551, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5354, + "time": 0.7212475633528265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5402, + "time": 0.727745289148798, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5427, + "time": 0.7309941520467836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5427, + "time": 0.7309941520467836, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5451, + "time": 0.7342430149447693, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5475, + "time": 0.737491877842755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5475, + "time": 0.737491877842755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4147, - "time": 0.5588044184535413, + "noteOrder": 5499, + "time": 0.7407407407407407, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2779,18 +4435,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4195, - "time": 0.5653021442495126, + "noteOrder": 5523, + "time": 0.7439896036387263, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2807,13 +4463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4243, - "time": 0.571799870045484, + "noteOrder": 5523, + "time": 0.7439896036387263, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2825,18 +4481,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 134, "indexInLine": 1, "isSliding": false, - "noteOrder": 4291, - "time": 0.5782975958414556, + "noteOrder": 5547, + "time": 0.7472384665367122, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2853,11 +4509,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4340, - "time": 0.5847953216374269, + "noteOrder": 5571, + "time": 0.7504873294346979, "position": { "x": 7, "y": 0 @@ -2871,18 +4527,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4388, - "time": 0.5912930474333984, + "noteOrder": 5571, + "time": 0.7504873294346979, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2894,18 +4550,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4436, - "time": 0.5977907732293698, + "noteOrder": 5595, + "time": 0.7537361923326835, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2917,18 +4573,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4484, - "time": 0.6042884990253411, + "noteOrder": 5644, + "time": 0.7602339181286549, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2940,18 +4596,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4532, - "time": 0.6107862248213126, + "noteOrder": 5692, + "time": 0.7667316439246264, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2963,18 +4619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4581, - "time": 0.6172839506172839, + "noteOrder": 5740, + "time": 0.7732293697205979, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2991,11 +4647,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4629, - "time": 0.6237816764132553, + "noteOrder": 5788, + "time": 0.7797270955165692, "position": { "x": 7, "y": 0 @@ -3014,11 +4670,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4677, - "time": 0.6302794022092268, + "noteOrder": 5837, + "time": 0.7862248213125406, "position": { "x": 4, "y": 0 @@ -3037,13 +4693,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4822, - "time": 0.649772579597141, + "noteOrder": 5885, + "time": 0.7927225471085121, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3055,18 +4711,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4870, - "time": 0.6562703053931124, + "noteOrder": 5909, + "time": 0.7959714100064977, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3078,18 +4734,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5207, - "time": 0.7017543859649122, + "noteOrder": 5909, + "time": 0.7959714100064977, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3101,18 +4757,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 5256, - "time": 0.7082521117608838, + "noteOrder": 5933, + "time": 0.7992202729044834, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3129,11 +4785,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5304, - "time": 0.7147498375568552, + "noteOrder": 5957, + "time": 0.8024691358024691, "position": { "x": 3, "y": 0 @@ -3147,18 +4803,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5352, - "time": 0.7212475633528265, + "noteOrder": 5957, + "time": 0.8024691358024691, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3170,18 +4826,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5400, - "time": 0.727745289148798, + "noteOrder": 5981, + "time": 0.8057179987004548, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3193,18 +4849,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5449, - "time": 0.7342430149447693, + "noteOrder": 6029, + "time": 0.8122157244964263, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3221,11 +4877,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5497, - "time": 0.7407407407407408, + "noteOrder": 6078, + "time": 0.8187134502923976, "position": { "x": 7, "y": 0 @@ -3244,13 +4900,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5545, - "time": 0.7472384665367122, + "noteOrder": 6126, + "time": 0.825211176088369, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3262,18 +4918,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5593, - "time": 0.7537361923326835, + "noteOrder": 6174, + "time": 0.8317089018843405, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3285,18 +4941,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5641, - "time": 0.760233918128655, + "noteOrder": 6198, + "time": 0.8349577647823262, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3308,18 +4964,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5690, - "time": 0.7667316439246264, + "noteOrder": 6198, + "time": 0.8349577647823262, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3336,13 +4992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 148, "indexInLine": 1, "isSliding": false, - "noteOrder": 5738, - "time": 0.7732293697205977, + "noteOrder": 6222, + "time": 0.8382066276803118, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3354,18 +5010,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5786, - "time": 0.7797270955165693, + "noteOrder": 6247, + "time": 0.8414554905782976, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3382,11 +5038,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5834, - "time": 0.7862248213125406, + "noteOrder": 6247, + "time": 0.8414554905782976, "position": { "x": 4, "y": 0 @@ -3405,11 +5061,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5882, - "time": 0.7927225471085121, + "noteOrder": 6271, + "time": 0.8447043534762833, "position": { "x": 3, "y": 0 @@ -3428,11 +5084,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5931, - "time": 0.7992202729044835, + "noteOrder": 6295, + "time": 0.847953216374269, "position": { "x": 3, "y": 0 @@ -3446,18 +5102,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5979, - "time": 0.8057179987004548, + "noteOrder": 6295, + "time": 0.847953216374269, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3474,13 +5130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 6027, - "time": 0.8122157244964263, + "noteOrder": 6319, + "time": 0.8512020792722548, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3492,18 +5148,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6075, - "time": 0.8187134502923976, + "noteOrder": 6343, + "time": 0.8544509421702404, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3520,11 +5176,11 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 150, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6124, - "time": 0.8252111760883691, + "noteOrder": 6343, + "time": 0.8544509421702404, "position": { "x": 4, "y": 0 @@ -3543,11 +5199,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6172, - "time": 0.8317089018843405, + "noteOrder": 6367, + "time": 0.8576998050682261, "position": { "x": 3, "y": 0 @@ -3566,13 +5222,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6220, - "time": 0.8382066276803118, + "noteOrder": 6415, + "time": 0.8641975308641975, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3584,18 +5240,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6268, - "time": 0.8447043534762834, + "noteOrder": 6464, + "time": 0.870695256660169, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3607,18 +5263,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6316, - "time": 0.8512020792722548, + "noteOrder": 6512, + "time": 0.8771929824561403, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3635,11 +5291,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6365, - "time": 0.8576998050682262, + "noteOrder": 6560, + "time": 0.8836907082521117, "position": { "x": 3, "y": 0 @@ -3658,13 +5314,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6413, - "time": 0.8641975308641976, + "noteOrder": 6584, + "time": 0.8869395711500974, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3681,13 +5337,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6461, - "time": 0.8706952566601689, + "noteOrder": 6584, + "time": 0.8869395711500974, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3699,18 +5355,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 156, "indexInLine": 1, "isSliding": false, - "noteOrder": 6509, - "time": 0.8771929824561404, + "noteOrder": 6608, + "time": 0.8901884340480832, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3727,11 +5383,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6557, - "time": 0.8836907082521118, + "noteOrder": 6632, + "time": 0.8934372969460689, "position": { "x": 3, "y": 0 @@ -3745,18 +5401,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6606, - "time": 0.8901884340480832, + "noteOrder": 6632, + "time": 0.8934372969460689, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3774,9 +5430,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6799, + "noteOrder": 6801, "time": 0.9161793372319689, "position": { "x": 6, @@ -3797,9 +5453,9 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6847, + "noteOrder": 6849, "time": 0.9226770630279402, "position": { "x": 6, @@ -3820,10 +5476,10 @@ }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6895, - "time": 0.9291747888239117, + "noteOrder": 6898, + "time": 0.9291747888239116, "position": { "x": 4, "y": 0 @@ -3843,9 +5499,9 @@ }, { "lineGroupId": 163, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6943, + "noteOrder": 6946, "time": 0.9356725146198831, "position": { "x": 4, @@ -3866,10 +5522,10 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6991, - "time": 0.9421702404158545, + "noteOrder": 6994, + "time": 0.9421702404158544, "position": { "x": 6, "y": 0 @@ -3889,10 +5545,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7040, - "time": 0.9486679662118259, + "noteOrder": 7042, + "time": 0.9486679662118258, "position": { "x": 6, "y": 0 @@ -3912,10 +5568,10 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7088, - "time": 0.9551656920077972, + "noteOrder": 7091, + "time": 0.9551656920077973, "position": { "x": 4, "y": 0 @@ -3935,10 +5591,10 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7136, - "time": 0.9616634178037687, + "noteOrder": 7139, + "time": 0.9616634178037686, "position": { "x": 4, "y": 0 diff --git a/tracks/[E]/info.json b/tracks/[E]/info.json index d9722784..235fcbf5 100644 --- a/tracks/[E]/info.json +++ b/tracks/[E]/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "[E]", - "SongLength": "132.048980", + "SongLength": "122.096327", "SongAuthorName": "dj MAX STEROID", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/gigadelic (STARDOM Remix)/271_difficulty_1a.json b/tracks/gigadelic (STARDOM Remix)/271_difficulty_1a.json index 4916c340..d8c156d4 100644 --- a/tracks/gigadelic (STARDOM Remix)/271_difficulty_1a.json +++ b/tracks/gigadelic (STARDOM Remix)/271_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 264, - "time": 0.03989120580235721, + "time": 0.0398912058023572, "position": { "x": 6, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 384, - "time": 0.05802357207615594, + "noteOrder": 385, + "time": 0.05802357207615593, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 553, - "time": 0.08340888485947416, + "time": 0.08340888485947415, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 697, - "time": 0.10516772438803264, + "time": 0.10516772438803262, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 721, - "time": 0.10879419764279238, + "time": 0.10879419764279237, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 817, - "time": 0.12330009066183137, + "time": 0.12330009066183135, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 937, + "noteOrder": 938, "time": 0.14143245693563009, "position": { "x": 2, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.14505893019038985, "position": { "x": 5, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.14868540344514958, "position": { "x": 4, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1009, + "noteOrder": 1010, "time": 0.15231187669990934, "position": { "x": 7, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1033, + "noteOrder": 1034, "time": 0.15593834995466907, "position": { "x": 5, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1105, - "time": 0.16681776971894832, + "noteOrder": 1106, + "time": 0.1668177697189483, "position": { "x": 8, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.17044424297370805, "position": { "x": 4, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1153, + "noteOrder": 1154, "time": 0.17407071622846781, "position": { "x": 8, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.17769718948322755, "position": { "x": 5, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.1813236627379873, + "noteOrder": 1202, + "time": 0.18132366273798728, "position": { "x": 8, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1298, - "time": 0.1958295557570263, + "time": 0.19582955575702626, "position": { "x": 4, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1394, - "time": 0.21033544877606528, + "time": 0.21033544877606525, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.228467815049864, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.25022665457842247, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1682, + "noteOrder": 1683, "time": 0.2538531278331822, "position": { "x": 4, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.257479601087942, + "noteOrder": 1707, + "time": 0.25747960108794193, "position": { "x": 3, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2683590208522212, "position": { "x": 2, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1802, - "time": 0.271985494106981, + "noteOrder": 1803, + "time": 0.2719854941069809, "position": { "x": 5, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1850, + "noteOrder": 1851, "time": 0.27923844061650044, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.28286491387126017, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1898, - "time": 0.28649138712601996, + "noteOrder": 1899, + "time": 0.2864913871260199, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.29737080689029916, "position": { "x": 8, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1994, - "time": 0.30099728014505894, + "noteOrder": 1995, + "time": 0.3009972801450589, "position": { "x": 8, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 2091, - "time": 0.3155031731640979, + "time": 0.31550317316409787, "position": { "x": 8, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3263825929283771, "position": { "x": 8, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.3372620126926564, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.3408884859474161, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.3445149592021759, + "noteOrder": 2284, + "time": 0.34451495920217584, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3699002719854941, + "noteOrder": 2452, + "time": 0.369900271985494, "position": { "x": 2, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2475, - "time": 0.37352674524025387, + "noteOrder": 2476, + "time": 0.3735267452402538, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2499, + "noteOrder": 2500, "time": 0.3771532184950136, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2523, - "time": 0.38077969174977333, + "noteOrder": 2524, + "time": 0.3807796917497733, "position": { "x": 7, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2547, + "noteOrder": 2548, "time": 0.38440616500453306, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2571, + "noteOrder": 2572, "time": 0.38803263825929285, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.39891205802357205, "position": { "x": 8, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2667, - "time": 0.40253853127833183, + "noteOrder": 2668, + "time": 0.4025385312783318, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2691, + "noteOrder": 2692, "time": 0.40616500453309157, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2715, + "noteOrder": 2717, "time": 0.4097914777878513, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2741, "time": 0.41341795104261103, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2763, - "time": 0.4170444242973708, + "noteOrder": 2765, + "time": 0.41704442429737076, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2813, "time": 0.4242973708068903, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2837, "time": 0.42792384406165, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4315503173164098, + "noteOrder": 2861, + "time": 0.43155031731640975, "position": { "x": 7, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.43517679057116954, + "noteOrder": 2885, + "time": 0.4351767905711695, "position": { "x": 8, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 2909, "time": 0.43880326382592927, "position": { "x": 4, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.442429737080689, + "noteOrder": 2933, + "time": 0.44242973708068895, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.4460562103354488, + "noteOrder": 2957, + "time": 0.44605621033544873, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.45330915684496825, + "noteOrder": 3005, + "time": 0.4533091568449682, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.456935630099728, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3053, "time": 0.4605621033544878, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.4641885766092475, + "noteOrder": 3077, + "time": 0.46418857660924745, "position": { "x": 2, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.46781504986400724, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.47144152311876697, + "noteOrder": 3125, + "time": 0.4714415231187669, "position": { "x": 3, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.47506799637352676, + "noteOrder": 3149, + "time": 0.4750679963735267, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3196, - "time": 0.4823209428830462, + "noteOrder": 3197, + "time": 0.48232094288304617, "position": { "x": 5, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.48594741613780595, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.48957388939256574, + "noteOrder": 3245, + "time": 0.4895738893925657, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4932003626473255, + "noteOrder": 3269, + "time": 0.4932003626473254, "position": { "x": 8, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 3293, "time": 0.4968268359020852, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.5004533091568449, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3342, "time": 0.5040797824116047, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3366, "time": 0.5077062556663644, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3388, - "time": 0.5113327289211242, + "noteOrder": 3390, + "time": 0.5113327289211241, "position": { "x": 2, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.514959202175884, + "noteOrder": 3414, + "time": 0.5149592021758839, "position": { "x": 6, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3436, + "noteOrder": 3438, "time": 0.5185856754306437, "position": { "x": 4, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3460, - "time": 0.5222121486854034, + "noteOrder": 3462, + "time": 0.5222121486854033, "position": { "x": 7, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3484, + "noteOrder": 3486, "time": 0.5258386219401632, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.5294650951949229, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3534, "time": 0.5330915684496826, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.5403445149592022, + "noteOrder": 3582, + "time": 0.5403445149592021, "position": { "x": 5, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3604, - "time": 0.543970988213962, + "noteOrder": 3606, + "time": 0.5439709882139618, "position": { "x": 4, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3630, "time": 0.5475974614687217, "position": { "x": 3, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3654, "time": 0.5512239347234814, "position": { "x": 2, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5548504079782411, "position": { "x": 3, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5584768812330009, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3726, "time": 0.5621033544877606, "position": { "x": 5, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3749, + "noteOrder": 3750, "time": 0.5657298277425203, "position": { "x": 6, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3773, - "time": 0.5693563009972802, + "noteOrder": 3774, + "time": 0.5693563009972801, "position": { "x": 5, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3797, - "time": 0.5729827742520399, + "noteOrder": 3798, + "time": 0.5729827742520398, "position": { "x": 4, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3821, - "time": 0.5766092475067996, + "noteOrder": 3822, + "time": 0.5766092475067995, "position": { "x": 7, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4517, + "noteOrder": 4519, "time": 0.6817769718948322, "position": { "x": 8, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.7289211242067088, + "noteOrder": 4832, + "time": 0.728921124206709, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.7325475974614687, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.7361740707162284, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5022, - "time": 0.7579329102447868, + "noteOrder": 5024, + "time": 0.7579329102447869, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5046, - "time": 0.7615593834995467, + "noteOrder": 5048, + "time": 0.7615593834995465, "position": { "x": 5, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5070, + "noteOrder": 5072, "time": 0.7651858567543064, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5118, + "noteOrder": 5120, "time": 0.7724388032638259, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5142, + "noteOrder": 5145, "time": 0.7760652765185857, "position": { "x": 5, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5166, + "noteOrder": 5169, "time": 0.7796917497733453, "position": { "x": 5, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5190, - "time": 0.7833182230281052, + "noteOrder": 5193, + "time": 0.783318223028105, "position": { "x": 5, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5214, + "noteOrder": 5217, "time": 0.7869446962828648, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 5241, "time": 0.7905711695376246, "position": { "x": 4, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5262, + "noteOrder": 5265, "time": 0.7941976427923844, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5310, + "noteOrder": 5313, "time": 0.8014505893019038, "position": { "x": 5, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5334, - "time": 0.8050770625566637, + "noteOrder": 5337, + "time": 0.8050770625566636, "position": { "x": 5, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5359, + "noteOrder": 5361, "time": 0.8087035358114233, "position": { "x": 5, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.8123300090661831, "position": { "x": 5, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5407, - "time": 0.8159564823209428, + "noteOrder": 5409, + "time": 0.8159564823209429, "position": { "x": 5, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5431, + "noteOrder": 5433, "time": 0.8195829555757026, "position": { "x": 6, @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5455, - "time": 0.8232094288304623, + "noteOrder": 5457, + "time": 0.8232094288304622, "position": { "x": 7, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5503, + "noteOrder": 5505, "time": 0.8304623753399818, "position": { "x": 5, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5527, - "time": 0.8340888485947416, + "noteOrder": 5529, + "time": 0.8340888485947415, "position": { "x": 3, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.8377153218495013, + "noteOrder": 5553, + "time": 0.8377153218495014, "position": { "x": 5, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5599, + "noteOrder": 5601, "time": 0.8449682683590207, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5625, "time": 0.8485947416137806, "position": { "x": 6, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5647, + "noteOrder": 5649, "time": 0.8522212148685403, "position": { "x": 5, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5791, - "time": 0.8739800543970987, + "noteOrder": 5794, + "time": 0.8739800543970988, "position": { "x": 3, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8776065276518585, "position": { "x": 4, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5839, - "time": 0.8812330009066183, + "noteOrder": 5842, + "time": 0.8812330009066182, "position": { "x": 5, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5890, "time": 0.8884859474161377, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.8921124206708976, + "noteOrder": 5914, + "time": 0.8921124206708975, "position": { "x": 5, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5935, - "time": 0.8957388939256572, + "noteOrder": 5938, + "time": 0.8957388939256573, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6151, - "time": 0.928377153218495, + "noteOrder": 6154, + "time": 0.9283771532184949, "position": { "x": 7, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6176, + "noteOrder": 6178, "time": 0.9320036264732546, "position": { "x": 3, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.9356300997280145, "position": { "x": 6, @@ -2676,10 +2676,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.014505893019038985, + "time": 0.014505893019038983, "position": { "x": 5, "y": 0 @@ -2699,7 +2699,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.021758839528558477, @@ -2722,10 +2722,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02901178603807797, + "time": 0.029011786038077966, "position": { "x": 5, "y": 0 @@ -2745,7 +2745,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, "time": 0.03626473254759746, @@ -2768,7 +2768,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.043517679057116954, @@ -2791,10 +2791,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, - "time": 0.05802357207615594, + "noteOrder": 385, + "time": 0.05802357207615593, "position": { "x": 8, "y": 0 @@ -2814,10 +2814,10 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 433, - "time": 0.06527651858567543, + "time": 0.06527651858567542, "position": { "x": 5, "y": 0 @@ -2837,7 +2837,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.07252946509519492, @@ -2860,10 +2860,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 529, - "time": 0.07978241160471441, + "time": 0.0797824116047144, "position": { "x": 4, "y": 0 @@ -2883,7 +2883,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.08703535811423391, @@ -2906,7 +2906,7 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.10154125113327289, @@ -2929,7 +2929,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.1269265639165911, @@ -2951,11 +2951,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 865, - "time": 0.13055303717135086, + "noteOrder": 853, + "time": 0.12873980054397097, "position": { "x": 2, "y": 0 @@ -2969,18 +2969,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 889, - "time": 0.1341795104261106, + "noteOrder": 853, + "time": 0.12873980054397097, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2997,11 +2997,11 @@ "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 1, "isSliding": false, - "noteOrder": 913, - "time": 0.13780598368087035, + "noteOrder": 865, + "time": 0.13055303717135083, "position": { "x": 2, "y": 0 @@ -3020,13 +3020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.15956482320942883, + "noteOrder": 877, + "time": 0.13236627379873073, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3043,13 +3043,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1081, - "time": 0.16319129646418856, + "noteOrder": 877, + "time": 0.13236627379873073, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3061,18 +3061,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.1885766092475068, + "noteOrder": 889, + "time": 0.1341795104261106, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3084,18 +3084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1346, - "time": 0.20308250226654578, + "noteOrder": 901, + "time": 0.13599274705349046, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3107,18 +3107,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1346, - "time": 0.20308250226654578, + "noteOrder": 901, + "time": 0.13599274705349046, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3135,13 +3135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, + "lineGroupId": 22, "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.21758839528558477, + "noteOrder": 914, + "time": 0.13780598368087035, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3153,18 +3153,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.21758839528558477, + "noteOrder": 926, + "time": 0.13961922030825022, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3181,13 +3181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1466, - "time": 0.2212148685403445, + "noteOrder": 926, + "time": 0.13961922030825022, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3199,16 +3199,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1538, - "time": 0.23209428830462375, + "noteOrder": 1058, + "time": 0.1595648232094288, "position": { "x": 8, "y": 0 @@ -3227,13 +3227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1562, - "time": 0.23572076155938348, + "noteOrder": 1070, + "time": 0.1613780598368087, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3250,13 +3250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1586, - "time": 0.23934723481414324, + "noteOrder": 1070, + "time": 0.1613780598368087, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3273,13 +3273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1610, - "time": 0.24297370806890298, + "noteOrder": 1082, + "time": 0.16319129646418856, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3291,16 +3291,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.24660018132366274, + "noteOrder": 1094, + "time": 0.16500453309156843, "position": { "x": 8, "y": 0 @@ -3314,18 +3314,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1730, - "time": 0.2611060743427017, + "noteOrder": 1094, + "time": 0.16500453309156843, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3337,18 +3337,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1730, - "time": 0.2611060743427017, + "noteOrder": 1250, + "time": 0.1885766092475068, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3360,18 +3360,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1754, - "time": 0.26473254759746145, + "noteOrder": 1346, + "time": 0.20308250226654578, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3388,11 +3388,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2756119673617407, + "noteOrder": 1346, + "time": 0.20308250226654578, "position": { "x": 2, "y": 0 @@ -3411,11 +3411,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1922, - "time": 0.2901178603807797, + "noteOrder": 1442, + "time": 0.21758839528558474, "position": { "x": 6, "y": 0 @@ -3434,11 +3434,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1922, - "time": 0.2901178603807797, + "noteOrder": 1442, + "time": 0.21758839528558474, "position": { "x": 8, "y": 0 @@ -3457,11 +3457,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1946, - "time": 0.2937443336355394, + "noteOrder": 1454, + "time": 0.21940163191296463, "position": { "x": 8, "y": 0 @@ -3475,18 +3475,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2018, - "time": 0.3046237533998187, + "noteOrder": 1454, + "time": 0.21940163191296463, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3503,11 +3503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2042, - "time": 0.3082502266545784, + "noteOrder": 1466, + "time": 0.22121486854034447, "position": { "x": 8, "y": 0 @@ -3526,11 +3526,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.31912964641885766, + "noteOrder": 1478, + "time": 0.22302810516772437, "position": { "x": 8, "y": 0 @@ -3544,18 +3544,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2139, - "time": 0.3227561196736174, + "noteOrder": 1478, + "time": 0.22302810516772437, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3572,13 +3572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2211, - "time": 0.33363553943789664, + "noteOrder": 1490, + "time": 0.22484134179510426, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3590,18 +3590,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2307, - "time": 0.34814143245693563, + "noteOrder": 1490, + "time": 0.22484134179510426, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3613,18 +3613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2307, - "time": 0.34814143245693563, + "noteOrder": 1502, + "time": 0.2266545784224841, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3641,13 +3641,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2343, - "time": 0.3535811423390752, + "noteOrder": 1502, + "time": 0.2266545784224841, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3664,13 +3664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 2, + "lineGroupId": 46, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2379, - "time": 0.3590208522212149, + "noteOrder": 1515, + "time": 0.228467815049864, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3687,13 +3687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 9, "isSliding": false, - "noteOrder": 2403, - "time": 0.3626473254759746, + "noteOrder": 1515, + "time": 0.228467815049864, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -3710,13 +3710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2427, - "time": 0.36627379873073435, + "noteOrder": 1539, + "time": 0.23209428830462372, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3733,13 +3733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2595, - "time": 0.3916591115140526, + "noteOrder": 1563, + "time": 0.23572076155938346, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3756,11 +3756,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2619, - "time": 0.3952855847688123, + "noteOrder": 1587, + "time": 0.23934723481414324, "position": { "x": 8, "y": 0 @@ -3774,18 +3774,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2787, - "time": 0.42067089755213055, + "noteOrder": 1611, + "time": 0.24297370806890298, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3797,18 +3797,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.43517679057116954, + "noteOrder": 1635, + "time": 0.2466001813236627, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -3820,18 +3820,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2980, - "time": 0.4496826835902085, + "noteOrder": 1731, + "time": 0.26110607434270167, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3848,13 +3848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 3076, - "time": 0.4641885766092475, + "noteOrder": 1731, + "time": 0.26110607434270167, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3866,16 +3866,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.4786944696282865, + "noteOrder": 1743, + "time": 0.2629193109700816, "position": { "x": 2, "y": 0 @@ -3894,13 +3894,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 55, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3268, - "time": 0.4932003626473255, + "noteOrder": 1743, + "time": 0.2629193109700816, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3917,11 +3917,34 @@ "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26473254759746145, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.5077062556663644, + "noteOrder": 1767, + "time": 0.2665457842248413, "position": { "x": 2, "y": 0 @@ -3935,18 +3958,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3556, - "time": 0.5367180417044424, + "noteOrder": 1767, + "time": 0.2665457842248413, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3963,13 +3986,59 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 3652, - "time": 0.5512239347234814, + "noteOrder": 1827, + "time": 0.2756119673617407, "position": { - "x": 4, + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1923, + "time": 0.2901178603807797, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1923, + "time": 0.2901178603807797, + "position": { + "x": 8, "y": 0 }, "position2D": { @@ -3986,11 +4055,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 63, "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.5657298277425203, + "noteOrder": 1935, + "time": 0.29193109700815956, "position": { "x": 8, "y": 0 @@ -4009,11 +4078,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 63, "indexInLine": 3, "isSliding": false, - "noteOrder": 3797, - "time": 0.5729827742520399, + "noteOrder": 1935, + "time": 0.29193109700815956, "position": { "x": 6, "y": 0 @@ -4032,13 +4101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3845, - "time": 0.5802357207615594, + "noteOrder": 1947, + "time": 0.2937443336355394, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4055,11 +4124,11 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3869, - "time": 0.5838621940163191, + "noteOrder": 1959, + "time": 0.2955575702629193, "position": { "x": 8, "y": 0 @@ -4073,18 +4142,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 64, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3893, - "time": 0.5874886672710788, + "noteOrder": 1959, + "time": 0.2955575702629193, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4101,11 +4170,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3917, - "time": 0.5911151405258386, + "noteOrder": 2019, + "time": 0.3046237533998187, "position": { "x": 8, "y": 0 @@ -4124,13 +4193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, - "time": 0.5947416137805983, + "noteOrder": 2031, + "time": 0.30643699002719854, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4142,18 +4211,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2031, + "time": 0.30643699002719854, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, "indexInLine": 1, "isSliding": false, - "noteOrder": 4037, - "time": 0.6092475067996374, + "noteOrder": 2043, + "time": 0.3082502266545784, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4170,13 +4262,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 68, "indexInLine": 2, "isSliding": false, - "noteOrder": 4109, - "time": 0.6201269265639165, + "noteOrder": 2055, + "time": 0.3100634632819582, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4193,13 +4285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4133, - "time": 0.6237533998186763, + "noteOrder": 2055, + "time": 0.3100634632819582, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4211,18 +4303,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 71, "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.6382592928377153, + "noteOrder": 2116, + "time": 0.3191296464188576, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4239,13 +4331,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 71, "indexInLine": 2, "isSliding": false, - "noteOrder": 4301, - "time": 0.6491387126019945, + "noteOrder": 2128, + "time": 0.32094288304623747, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4262,13 +4354,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 71, "indexInLine": 3, "isSliding": false, - "noteOrder": 4325, - "time": 0.6527651858567542, + "noteOrder": 2128, + "time": 0.32094288304623747, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4285,13 +4377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4325, - "time": 0.6527651858567542, + "noteOrder": 2140, + "time": 0.3227561196736174, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4308,13 +4400,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4421, - "time": 0.6672710788757933, + "noteOrder": 2152, + "time": 0.32456935630099726, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4331,13 +4423,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 2, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4493, - "time": 0.6781504986400725, + "noteOrder": 2152, + "time": 0.32456935630099726, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4354,13 +4446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 3, + "lineGroupId": 74, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.6817769718948322, + "noteOrder": 2212, + "time": 0.3336355394378966, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4372,18 +4464,2732 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2308, + "time": 0.34814143245693563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.34814143245693563, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.3535811423390752, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2380, + "time": 0.3590208522212149, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2404, + "time": 0.36264732547597456, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3644605621033545, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2416, + "time": 0.3644605621033545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2428, + "time": 0.36627379873073435, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3680870353581142, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2440, + "time": 0.3680870353581142, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2596, + "time": 0.3916591115140525, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2608, + "time": 0.3934723481414324, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2608, + "time": 0.3934723481414324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2620, + "time": 0.3952855847688123, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2632, + "time": 0.3970988213961922, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2632, + "time": 0.3970988213961922, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2789, + "time": 0.4206708975521305, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2885, + "time": 0.4351767905711695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2981, + "time": 0.4496826835902085, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3077, + "time": 0.46418857660924745, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.4786944696282865, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3269, + "time": 0.4932003626473254, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5077062556663644, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5367180417044424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3654, + "time": 0.5512239347234814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5657298277425203, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3798, + "time": 0.5729827742520398, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3846, + "time": 0.5802357207615594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3858, + "time": 0.5820489573889392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3858, + "time": 0.5820489573889392, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5838621940163191, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3882, + "time": 0.585675430643699, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3882, + "time": 0.585675430643699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5874886672710788, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3906, + "time": 0.5893019038984587, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3906, + "time": 0.5893019038984587, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3918, + "time": 0.5911151405258386, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3931, + "time": 0.5929283771532184, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3931, + "time": 0.5929283771532184, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.5947416137805983, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6092475067996374, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4111, + "time": 0.6201269265639164, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4135, + "time": 0.6237533998186763, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4231, + "time": 0.6382592928377152, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4303, + "time": 0.6491387126019945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6527651858567542, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6527651858567542, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4423, + "time": 0.6672710788757932, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4495, + "time": 0.6781504986400725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6817769718948322, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4712, + "time": 0.7107887579329102, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4724, + "time": 0.71260199456029, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4724, + "time": 0.71260199456029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4736, + "time": 0.7144152311876699, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4748, + "time": 0.7162284678150498, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4748, + "time": 0.7162284678150498, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4760, + "time": 0.7180417044424298, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4772, + "time": 0.7198549410698095, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4772, + "time": 0.7198549410698095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4784, + "time": 0.7216681776971894, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4796, + "time": 0.7234814143245694, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4796, + "time": 0.7234814143245694, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4808, + "time": 0.7252946509519491, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4904, + "time": 0.739800543970988, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4904, + "time": 0.739800543970988, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4916, + "time": 0.741613780598368, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4916, + "time": 0.741613780598368, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4928, + "time": 0.7434270172257479, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4940, + "time": 0.7452402538531279, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4940, + "time": 0.7452402538531279, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4952, + "time": 0.7470534904805076, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4964, + "time": 0.7488667271078876, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4964, + "time": 0.7488667271078876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4976, + "time": 0.7506799637352674, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4988, + "time": 0.7524932003626472, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4988, + "time": 0.7524932003626472, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5000, + "time": 0.7543064369900272, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5096, + "time": 0.7688123300090661, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5096, + "time": 0.7688123300090661, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5108, + "time": 0.7706255666364459, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5108, + "time": 0.7706255666364459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7724388032638259, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7724388032638259, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5133, + "time": 0.7742520398912057, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5133, + "time": 0.7742520398912057, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5145, + "time": 0.7760652765185857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5145, + "time": 0.7760652765185857, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5157, + "time": 0.7778785131459655, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5157, + "time": 0.7778785131459655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5169, + "time": 0.7796917497733453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5169, + "time": 0.7796917497733453, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 5181, + "time": 0.7815049864007252, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 15, + "isSliding": false, + "noteOrder": 5181, + "time": 0.7815049864007252, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 16, + "isSliding": false, + "noteOrder": 5193, + "time": 0.783318223028105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 17, + "isSliding": false, + "noteOrder": 5193, + "time": 0.783318223028105, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 18, + "isSliding": false, + "noteOrder": 5289, + "time": 0.7978241160471441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5289, + "time": 0.7978241160471441, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5301, + "time": 0.799637352674524, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5301, + "time": 0.799637352674524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5313, + "time": 0.8014505893019038, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5325, + "time": 0.8032638259292837, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5325, + "time": 0.8032638259292837, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 5337, + "time": 0.8050770625566636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 5349, + "time": 0.8068902991840435, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 5349, + "time": 0.8068902991840435, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 10, + "isSliding": false, + "noteOrder": 5361, + "time": 0.8087035358114233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 11, + "isSliding": false, + "noteOrder": 5373, + "time": 0.8105167724388032, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 12, + "isSliding": false, + "noteOrder": 5373, + "time": 0.8105167724388032, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 13, + "isSliding": false, + "noteOrder": 5385, + "time": 0.8123300090661831, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 14, + "isSliding": false, + "noteOrder": 5481, + "time": 0.8268359020852221, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5481, + "time": 0.8268359020852221, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5529, + "time": 0.8340888485947415, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5577, + "time": 0.841341795104261, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5577, + "time": 0.841341795104261, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5673, + "time": 0.8558476881233, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5673, + "time": 0.8558476881233, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5685, + "time": 0.8576609247506799, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5685, + "time": 0.8576609247506799, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4710, - "time": 0.7107887579329102, + "noteOrder": 5697, + "time": 0.8594741613780599, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4395,18 +7201,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4734, - "time": 0.7144152311876699, + "noteOrder": 5709, + "time": 0.8612873980054396, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4423,13 +7229,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4758, - "time": 0.7180417044424298, + "noteOrder": 5709, + "time": 0.8612873980054396, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -4441,18 +7247,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4782, - "time": 0.7216681776971894, + "noteOrder": 5721, + "time": 0.8631006346328195, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4464,18 +7270,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.7252946509519492, + "noteOrder": 5734, + "time": 0.8649138712601994, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4492,11 +7298,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4902, - "time": 0.7398005439709882, + "noteOrder": 5734, + "time": 0.8649138712601994, "position": { "x": 5, "y": 0 @@ -4515,13 +7321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, - "time": 0.7398005439709882, + "noteOrder": 5746, + "time": 0.8667271078875792, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4538,13 +7344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4926, - "time": 0.7434270172257479, + "noteOrder": 5758, + "time": 0.8685403445149592, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -4556,18 +7362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4950, - "time": 0.7470534904805077, + "noteOrder": 5758, + "time": 0.8685403445149592, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -4584,13 +7390,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4974, - "time": 0.7506799637352674, + "noteOrder": 5770, + "time": 0.870353581142339, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4607,13 +7413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4998, - "time": 0.7543064369900272, + "noteOrder": 5866, + "time": 0.8848594741613779, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4625,18 +7431,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 5094, - "time": 0.7688123300090661, + "noteOrder": 5866, + "time": 0.8848594741613779, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4653,13 +7459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, - "time": 0.7688123300090661, + "noteOrder": 5914, + "time": 0.8921124206708975, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4671,18 +7477,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 9, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5286, - "time": 0.7978241160471441, + "noteOrder": 5962, + "time": 0.899365367180417, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4694,18 +7500,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, - "time": 0.7978241160471441, + "noteOrder": 5962, + "time": 0.899365367180417, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4717,18 +7523,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 9, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5479, - "time": 0.8268359020852221, + "noteOrder": 5974, + "time": 0.9011786038077968, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -4740,18 +7546,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5479, - "time": 0.8268359020852221, + "noteOrder": 5974, + "time": 0.9011786038077968, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4768,13 +7574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 204, "indexInLine": 1, "isSliding": false, - "noteOrder": 5527, - "time": 0.8340888485947416, + "noteOrder": 5986, + "time": 0.9029918404351767, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4786,16 +7592,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 204, "indexInLine": 2, "isSliding": false, - "noteOrder": 5575, - "time": 0.8413417951042611, + "noteOrder": 5998, + "time": 0.9048050770625566, "position": { "x": 8, "y": 0 @@ -4809,16 +7615,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5575, - "time": 0.8413417951042611, + "noteOrder": 5998, + "time": 0.9048050770625566, "position": { "x": 6, "y": 0 @@ -4837,13 +7643,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, - "time": 0.8558476881233, + "noteOrder": 6010, + "time": 0.9066183136899364, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4855,18 +7661,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5671, - "time": 0.8558476881233, + "noteOrder": 6022, + "time": 0.9084315503173164, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4883,13 +7689,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5695, - "time": 0.8594741613780598, + "noteOrder": 6022, + "time": 0.9084315503173164, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4901,18 +7707,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5719, - "time": 0.8631006346328196, + "noteOrder": 6034, + "time": 0.9102447869446962, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4924,18 +7730,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5743, - "time": 0.8667271078875792, + "noteOrder": 6046, + "time": 0.912058023572076, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -4952,13 +7758,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5767, - "time": 0.8703535811423391, + "noteOrder": 6046, + "time": 0.912058023572076, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4970,18 +7776,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.884859474161378, + "noteOrder": 6058, + "time": 0.913871260199456, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4998,13 +7804,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, - "time": 0.884859474161378, + "noteOrder": 6070, + "time": 0.9156844968268358, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -5016,18 +7822,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5911, - "time": 0.8921124206708976, + "noteOrder": 6070, + "time": 0.9156844968268358, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5039,18 +7845,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5959, - "time": 0.899365367180417, + "noteOrder": 6082, + "time": 0.9174977334542157, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5067,13 +7873,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5959, - "time": 0.899365367180417, + "noteOrder": 6094, + "time": 0.9193109700815956, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5085,18 +7891,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5983, - "time": 0.9029918404351767, + "noteOrder": 6094, + "time": 0.9193109700815956, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5113,11 +7919,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6007, - "time": 0.9066183136899365, + "noteOrder": 6106, + "time": 0.9211242067089755, "position": { "x": 8, "y": 0 @@ -5136,11 +7942,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6031, - "time": 0.9102447869446962, + "noteOrder": 6118, + "time": 0.9229374433363553, "position": { "x": 8, "y": 0 @@ -5154,18 +7960,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6055, - "time": 0.913871260199456, + "noteOrder": 6118, + "time": 0.9229374433363553, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -5182,11 +7988,11 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, - "time": 0.9174977334542157, + "noteOrder": 6130, + "time": 0.9247506799637352, "position": { "x": 3, "y": 0 @@ -5205,13 +8011,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, - "time": 0.9211242067089755, + "noteOrder": 6142, + "time": 0.9265639165911151, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5223,18 +8029,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 210, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6127, - "time": 0.9247506799637352, + "noteOrder": 6142, + "time": 0.9265639165911151, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5252,10 +8058,10 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6248, - "time": 0.9428830462375339, + "noteOrder": 6250, + "time": 0.9428830462375338, "position": { "x": 3, "y": 0 @@ -5275,9 +8081,9 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6440, + "noteOrder": 6443, "time": 0.9718948322756119, "position": { "x": 3, @@ -5298,10 +8104,10 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6248, - "time": 0.9428830462375339, + "noteOrder": 6250, + "time": 0.9428830462375338, "position": { "x": 7, "y": 0 @@ -5321,9 +8127,9 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6440, + "noteOrder": 6443, "time": 0.9718948322756119, "position": { "x": 7, diff --git a/tracks/gigadelic (STARDOM Remix)/271_difficulty_1b.json b/tracks/gigadelic (STARDOM Remix)/271_difficulty_1b.json index 02eb021e..511bf097 100644 --- a/tracks/gigadelic (STARDOM Remix)/271_difficulty_1b.json +++ b/tracks/gigadelic (STARDOM Remix)/271_difficulty_1b.json @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 769, - "time": 0.11604714415231188, + "time": 0.11604714415231186, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 817, - "time": 0.12330009066183137, + "time": 0.12330009066183135, "position": { "x": 6, "y": 0 @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1082, "time": 0.16319129646418856, "position": { "x": 6, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 1129, + "noteOrder": 1130, "time": 0.17044424297370805, "position": { "x": 6, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1177, + "noteOrder": 1178, "time": 0.17769718948322755, "position": { "x": 8, @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1201, - "time": 0.1813236627379873, + "noteOrder": 1202, + "time": 0.18132366273798728, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1442, - "time": 0.21758839528558477, + "time": 0.21758839528558474, "position": { "x": 8, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 1466, - "time": 0.2212148685403445, + "time": 0.22121486854034447, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.228467815049864, "position": { "x": 4, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.23934723481414324, "position": { "x": 8, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1778, + "noteOrder": 1779, "time": 0.2683590208522212, "position": { "x": 8, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1874, + "noteOrder": 1875, "time": 0.28286491387126017, "position": { "x": 4, @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1922, + "noteOrder": 1923, "time": 0.2901178603807797, "position": { "x": 4, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1970, + "noteOrder": 1971, "time": 0.29737080689029916, "position": { "x": 2, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1994, - "time": 0.30099728014505894, + "noteOrder": 1995, + "time": 0.3009972801450589, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2211, - "time": 0.33363553943789664, + "noteOrder": 2212, + "time": 0.3336355394378966, "position": { "x": 2, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.3372620126926564, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2260, "time": 0.3408884859474161, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.3445149592021759, + "noteOrder": 2284, + "time": 0.34451495920217584, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2403, - "time": 0.3626473254759746, + "noteOrder": 2404, + "time": 0.36264732547597456, "position": { "x": 8, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2427, + "noteOrder": 2428, "time": 0.36627379873073435, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2451, - "time": 0.3699002719854941, + "noteOrder": 2452, + "time": 0.369900271985494, "position": { "x": 8, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2595, - "time": 0.3916591115140526, + "noteOrder": 2596, + "time": 0.3916591115140525, "position": { "x": 6, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2619, + "noteOrder": 2620, "time": 0.3952855847688123, "position": { "x": 8, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2643, + "noteOrder": 2644, "time": 0.39891205802357205, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2787, - "time": 0.42067089755213055, + "noteOrder": 2789, + "time": 0.4206708975521305, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2811, + "noteOrder": 2813, "time": 0.4242973708068903, "position": { "x": 8, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 2837, "time": 0.42792384406165, "position": { "x": 5, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2859, - "time": 0.4315503173164098, + "noteOrder": 2861, + "time": 0.43155031731640975, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.43517679057116954, + "noteOrder": 2885, + "time": 0.4351767905711695, "position": { "x": 6, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 2909, "time": 0.43880326382592927, "position": { "x": 4, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2932, - "time": 0.442429737080689, + "noteOrder": 2933, + "time": 0.44242973708068895, "position": { "x": 6, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2956, - "time": 0.4460562103354488, + "noteOrder": 2957, + "time": 0.44605621033544873, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2980, + "noteOrder": 2981, "time": 0.4496826835902085, "position": { "x": 5, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3004, - "time": 0.45330915684496825, + "noteOrder": 3005, + "time": 0.4533091568449682, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3028, + "noteOrder": 3029, "time": 0.456935630099728, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3052, + "noteOrder": 3053, "time": 0.4605621033544878, "position": { "x": 4, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3076, - "time": 0.4641885766092475, + "noteOrder": 3077, + "time": 0.46418857660924745, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.46781504986400724, "position": { "x": 8, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3124, - "time": 0.47144152311876697, + "noteOrder": 3125, + "time": 0.4714415231187669, "position": { "x": 5, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3148, - "time": 0.47506799637352676, + "noteOrder": 3149, + "time": 0.4750679963735267, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3221, "time": 0.48594741613780595, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3268, - "time": 0.4932003626473255, + "noteOrder": 3269, + "time": 0.4932003626473254, "position": { "x": 4, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.5004533091568449, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3412, - "time": 0.514959202175884, + "noteOrder": 3414, + "time": 0.5149592021758839, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3460, - "time": 0.5222121486854034, + "noteOrder": 3462, + "time": 0.5222121486854033, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3508, + "noteOrder": 3510, "time": 0.5294650951949229, "position": { "x": 6, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3580, - "time": 0.5403445149592022, + "noteOrder": 3582, + "time": 0.5403445149592021, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3604, - "time": 0.543970988213962, + "noteOrder": 3606, + "time": 0.5439709882139618, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3628, + "noteOrder": 3630, "time": 0.5475974614687217, "position": { "x": 5, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3652, + "noteOrder": 3654, "time": 0.5512239347234814, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3676, + "noteOrder": 3678, "time": 0.5548504079782411, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3700, + "noteOrder": 3702, "time": 0.5584768812330009, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3725, + "noteOrder": 3726, "time": 0.5621033544877606, "position": { "x": 3, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3773, - "time": 0.5693563009972802, + "noteOrder": 3774, + "time": 0.5693563009972801, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3797, - "time": 0.5729827742520399, + "noteOrder": 3798, + "time": 0.5729827742520398, "position": { "x": 4, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3821, - "time": 0.5766092475067996, + "noteOrder": 3822, + "time": 0.5766092475067995, "position": { "x": 5, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3845, + "noteOrder": 3846, "time": 0.5802357207615594, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3869, + "noteOrder": 3870, "time": 0.5838621940163191, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3893, + "noteOrder": 3894, "time": 0.5874886672710788, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3917, + "noteOrder": 3918, "time": 0.5911151405258386, "position": { "x": 7, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.7035358114233907, + "noteOrder": 4664, + "time": 0.7035358114233906, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4950, - "time": 0.7470534904805077, + "noteOrder": 4952, + "time": 0.7470534904805076, "position": { "x": 6, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4998, + "noteOrder": 5000, "time": 0.7543064369900272, "position": { "x": 4, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5046, - "time": 0.7615593834995467, + "noteOrder": 5048, + "time": 0.7615593834995465, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5334, - "time": 0.8050770625566637, + "noteOrder": 5337, + "time": 0.8050770625566636, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5385, "time": 0.8123300090661831, "position": { "x": 6, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5431, + "noteOrder": 5433, "time": 0.8195829555757026, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5527, - "time": 0.8340888485947416, + "noteOrder": 5529, + "time": 0.8340888485947415, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5575, - "time": 0.8413417951042611, + "noteOrder": 5577, + "time": 0.841341795104261, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 5625, "time": 0.8485947416137806, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5719, - "time": 0.8631006346328196, + "noteOrder": 5721, + "time": 0.8631006346328195, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5767, - "time": 0.8703535811423391, + "noteOrder": 5770, + "time": 0.870353581142339, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5815, + "noteOrder": 5818, "time": 0.8776065276518585, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5890, "time": 0.8884859474161377, "position": { "x": 6, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5911, - "time": 0.8921124206708976, + "noteOrder": 5914, + "time": 0.8921124206708975, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5935, - "time": 0.8957388939256572, + "noteOrder": 5938, + "time": 0.8957388939256573, "position": { "x": 5, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5959, + "noteOrder": 5962, "time": 0.899365367180417, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5983, + "noteOrder": 5986, "time": 0.9029918404351767, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6007, - "time": 0.9066183136899365, + "noteOrder": 6010, + "time": 0.9066183136899364, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6031, + "noteOrder": 6034, "time": 0.9102447869446962, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6079, + "noteOrder": 6082, "time": 0.9174977334542157, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6103, + "noteOrder": 6106, "time": 0.9211242067089755, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6127, + "noteOrder": 6130, "time": 0.9247506799637352, "position": { "x": 5, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6151, - "time": 0.928377153218495, + "noteOrder": 6154, + "time": 0.9283771532184949, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6176, + "noteOrder": 6178, "time": 0.9320036264732546, "position": { "x": 6, @@ -1776,10 +1776,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.014505893019038985, + "time": 0.014505893019038983, "position": { "x": 3, "y": 0 @@ -1799,7 +1799,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.025385312783318223, @@ -1822,10 +1822,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.014505893019038985, + "time": 0.014505893019038983, "position": { "x": 7, "y": 0 @@ -1845,7 +1845,7 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.025385312783318223, @@ -1868,10 +1868,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.02901178603807797, + "time": 0.029011786038077966, "position": { "x": 6, "y": 0 @@ -1891,7 +1891,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 288, "time": 0.043517679057116954, @@ -1914,7 +1914,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.043517679057116954, @@ -1937,10 +1937,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 384, - "time": 0.05802357207615594, + "noteOrder": 385, + "time": 0.05802357207615593, "position": { "x": 3, "y": 0 @@ -1960,10 +1960,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 384, - "time": 0.05802357207615594, + "noteOrder": 385, + "time": 0.05802357207615593, "position": { "x": 7, "y": 0 @@ -1983,7 +1983,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 481, "time": 0.07252946509519492, @@ -2006,7 +2006,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.07252946509519492, @@ -2029,7 +2029,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 577, "time": 0.08703535811423391, @@ -2052,7 +2052,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, "time": 0.08703535811423391, @@ -2075,7 +2075,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.10154125113327289, @@ -2098,7 +2098,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.10154125113327289, @@ -2121,10 +2121,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 769, - "time": 0.11604714415231188, + "time": 0.11604714415231186, "position": { "x": 3, "y": 0 @@ -2144,7 +2144,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 841, "time": 0.1269265639165911, @@ -2166,11 +2166,11 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 2, "isSliding": false, - "noteOrder": 889, - "time": 0.1341795104261106, + "noteOrder": 865, + "time": 0.13055303717135083, "position": { "x": 2, "y": 0 @@ -2184,18 +2184,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 12, + "indexInLine": 3, "isSliding": false, - "noteOrder": 937, - "time": 0.14143245693563009, + "noteOrder": 865, + "time": 0.13055303717135083, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -2212,11 +2212,11 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.14868540344514958, + "noteOrder": 889, + "time": 0.1341795104261106, "position": { "x": 2, "y": 0 @@ -2235,11 +2235,11 @@ "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1033, - "time": 0.15593834995466907, + "noteOrder": 914, + "time": 0.13780598368087035, "position": { "x": 2, "y": 0 @@ -2253,18 +2253,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 16, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1177, - "time": 0.17769718948322755, + "noteOrder": 914, + "time": 0.13780598368087035, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2276,18 +2276,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.1885766092475068, + "noteOrder": 938, + "time": 0.14143245693563009, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2299,18 +2299,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.1958295557570263, + "noteOrder": 962, + "time": 0.14505893019038985, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2327,13 +2327,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1346, - "time": 0.20308250226654578, + "noteOrder": 962, + "time": 0.14505893019038985, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2345,18 +2345,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 24, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, - "time": 0.21033544877606528, + "noteOrder": 986, + "time": 0.14868540344514958, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2368,18 +2368,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.23209428830462375, + "noteOrder": 1010, + "time": 0.15231187669990934, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2396,13 +2396,13 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1634, - "time": 0.24660018132366274, + "noteOrder": 1010, + "time": 0.15231187669990934, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -2414,18 +2414,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1682, - "time": 0.2538531278331822, + "noteOrder": 1034, + "time": 0.15593834995466907, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -2437,18 +2437,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 16, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1730, - "time": 0.2611060743427017, + "noteOrder": 1178, + "time": 0.17769718948322755, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2465,11 +2465,11 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.2756119673617407, + "noteOrder": 1250, + "time": 0.1885766092475068, "position": { "x": 8, "y": 0 @@ -2488,13 +2488,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1970, - "time": 0.29737080689029916, + "noteOrder": 1274, + "time": 0.19220308250226653, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2511,13 +2511,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2018, - "time": 0.3046237533998187, + "noteOrder": 1274, + "time": 0.19220308250226653, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2529,18 +2529,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2067, - "time": 0.31187669990933814, + "noteOrder": 1298, + "time": 0.19582955575702626, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2552,18 +2552,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.31912964641885766, + "noteOrder": 1322, + "time": 0.19945602901178602, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2580,13 +2580,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2163, - "time": 0.3263825929283771, + "noteOrder": 1322, + "time": 0.19945602901178602, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2598,18 +2598,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.34814143245693563, + "noteOrder": 1346, + "time": 0.20308250226654578, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2621,18 +2621,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 48, - "indexInLine": 1, + "lineGroupId": 23, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2403, - "time": 0.3626473254759746, + "noteOrder": 1370, + "time": 0.20670897552130552, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2644,18 +2644,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 23, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3172, - "time": 0.4786944696282865, + "noteOrder": 1370, + "time": 0.20670897552130552, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2672,13 +2672,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 24, "indexInLine": 1, "isSliding": false, - "noteOrder": 3364, - "time": 0.5077062556663644, + "noteOrder": 1394, + "time": 0.21033544877606525, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2690,18 +2690,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3364, - "time": 0.5077062556663644, + "noteOrder": 1418, + "time": 0.213961922030825, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -2718,11 +2718,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3556, - "time": 0.5367180417044424, + "noteOrder": 1418, + "time": 0.213961922030825, "position": { "x": 6, "y": 0 @@ -2741,11 +2741,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3556, - "time": 0.5367180417044424, + "noteOrder": 1539, + "time": 0.23209428830462372, "position": { "x": 8, "y": 0 @@ -2764,13 +2764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3749, - "time": 0.5657298277425203, + "noteOrder": 1563, + "time": 0.23572076155938346, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2787,13 +2787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3749, - "time": 0.5657298277425203, + "noteOrder": 1563, + "time": 0.23572076155938346, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -2805,18 +2805,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 31, "indexInLine": 1, "isSliding": false, - "noteOrder": 3941, - "time": 0.5947416137805983, + "noteOrder": 1635, + "time": 0.2466001813236627, "position": { - "x": 6, + "x": 8, "y": 0 }, "position2D": { @@ -2833,11 +2833,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3941, - "time": 0.5947416137805983, + "noteOrder": 1659, + "time": 0.25022665457842247, "position": { "x": 8, "y": 0 @@ -2851,18 +2851,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4037, - "time": 0.6092475067996374, + "noteOrder": 1659, + "time": 0.25022665457842247, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2874,18 +2874,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 2, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4133, - "time": 0.6237533998186763, + "noteOrder": 1683, + "time": 0.2538531278331822, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2902,11 +2902,931 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 3, + "lineGroupId": 32, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1707, + "time": 0.25747960108794193, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 32, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1707, + "time": 0.25747960108794193, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1731, + "time": 0.26110607434270167, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26473254759746145, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1755, + "time": 0.26473254759746145, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1827, + "time": 0.2756119673617407, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1971, + "time": 0.29737080689029916, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2019, + "time": 0.3046237533998187, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2043, + "time": 0.3082502266545784, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 40, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2043, + "time": 0.3082502266545784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.31187669990933814, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2091, + "time": 0.31550317316409787, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2091, + "time": 0.31550317316409787, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3191296464188576, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3227561196736174, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2140, + "time": 0.3227561196736174, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3263825929283771, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2188, + "time": 0.33000906618313686, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2188, + "time": 0.33000906618313686, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.34814143245693563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 48, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2404, + "time": 0.36264732547597456, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3173, + "time": 0.4786944696282865, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5077062556663644, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.5077062556663644, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5367180417044424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5367180417044424, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5657298277425203, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3750, + "time": 0.5657298277425203, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3943, + "time": 0.5947416137805983, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3943, + "time": 0.5947416137805983, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4039, + "time": 0.6092475067996374, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4135, + "time": 0.6237533998186763, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4231, + "time": 0.6382592928377152, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4327, + "time": 0.6527651858567542, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 4423, + "time": 0.6672710788757932, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 4519, + "time": 0.6817769718948322, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 4616, + "time": 0.6962828649138713, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4712, + "time": 0.7107887579329102, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4736, + "time": 0.7144152311876699, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4736, + "time": 0.7144152311876699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4229, - "time": 0.6382592928377153, + "noteOrder": 4760, + "time": 0.7180417044424298, "position": { "x": 8, "y": 0 @@ -2920,18 +3840,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 4, + "lineGroupId": 102, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4325, - "time": 0.6527651858567542, + "noteOrder": 4784, + "time": 0.7216681776971894, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2943,18 +3863,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 5, + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4421, - "time": 0.6672710788757933, + "noteOrder": 4784, + "time": 0.7216681776971894, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2966,18 +3886,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 6, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4517, - "time": 0.6817769718948322, + "noteOrder": 4808, + "time": 0.7252946509519491, "position": { - "x": 4, + "x": 8, "y": 0 }, "position2D": { @@ -2994,11 +3914,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 7, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4614, - "time": 0.6962828649138713, + "noteOrder": 4832, + "time": 0.728921124206709, "position": { "x": 8, "y": 0 @@ -3017,13 +3937,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4710, - "time": 0.7107887579329102, + "noteOrder": 4832, + "time": 0.728921124206709, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3040,11 +3960,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4758, - "time": 0.7180417044424298, + "noteOrder": 4856, + "time": 0.7325475974614687, "position": { "x": 8, "y": 0 @@ -3063,11 +3983,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.7252946509519492, + "noteOrder": 4880, + "time": 0.7361740707162284, "position": { "x": 8, "y": 0 @@ -3081,18 +4001,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4854, - "time": 0.7325475974614687, + "noteOrder": 4880, + "time": 0.7361740707162284, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3110,10 +4030,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4902, - "time": 0.7398005439709882, + "noteOrder": 4904, + "time": 0.739800543970988, "position": { "x": 8, "y": 0 @@ -3133,9 +4053,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5094, + "noteOrder": 5096, "time": 0.7688123300090661, "position": { "x": 4, @@ -3156,9 +4076,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5094, + "noteOrder": 5096, "time": 0.7688123300090661, "position": { "x": 2, @@ -3177,11 +4097,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7724388032638259, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5120, + "time": 0.7724388032638259, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5142, + "noteOrder": 5145, "time": 0.7760652765185857, "position": { "x": 2, @@ -3200,12 +4166,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5169, + "time": 0.7796917497733453, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5169, + "time": 0.7796917497733453, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5193, + "time": 0.783318223028105, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5190, - "time": 0.7833182230281052, + "noteOrder": 5217, + "time": 0.7869446962828648, "position": { "x": 2, "y": 0 @@ -3223,11 +4258,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5217, + "time": 0.7869446962828648, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5238, + "noteOrder": 5241, "time": 0.7905711695376246, "position": { "x": 2, @@ -3246,11 +4304,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5265, + "time": 0.7941976427923844, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5265, + "time": 0.7941976427923844, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5286, + "noteOrder": 5289, "time": 0.7978241160471441, "position": { "x": 2, @@ -3271,9 +4375,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8268359020852221, "position": { "x": 6, @@ -3294,9 +4398,9 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8268359020852221, "position": { "x": 8, @@ -3317,9 +4421,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5671, + "noteOrder": 5673, "time": 0.8558476881233, "position": { "x": 4, @@ -3340,9 +4444,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5671, + "noteOrder": 5673, "time": 0.8558476881233, "position": { "x": 2, @@ -3363,10 +4467,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5863, - "time": 0.884859474161378, + "noteOrder": 5866, + "time": 0.8848594741613779, "position": { "x": 6, "y": 0 @@ -3386,10 +4490,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5863, - "time": 0.884859474161378, + "noteOrder": 5866, + "time": 0.8848594741613779, "position": { "x": 8, "y": 0 @@ -3409,9 +4513,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6055, + "noteOrder": 6058, "time": 0.913871260199456, "position": { "x": 4, @@ -3432,9 +4536,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6055, + "noteOrder": 6058, "time": 0.913871260199456, "position": { "x": 2, @@ -3455,9 +4559,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.9356300997280145, "position": { "x": 6, @@ -3478,9 +4582,9 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6200, + "noteOrder": 6202, "time": 0.9356300997280145, "position": { "x": 8, @@ -3501,10 +4605,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6248, - "time": 0.9428830462375339, + "noteOrder": 6250, + "time": 0.9428830462375338, "position": { "x": 8, "y": 0 diff --git a/tracks/gigadelic (STARDOM Remix)/info.json b/tracks/gigadelic (STARDOM Remix)/info.json index b2aa916a..ebcff560 100644 --- a/tracks/gigadelic (STARDOM Remix)/info.json +++ b/tracks/gigadelic (STARDOM Remix)/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "gigadelic (STARDOM Remix)", - "SongLength": "116.871837", + "SongLength": "106.919184", "SongAuthorName": "BEMANI Sound Team \"Dustup\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git a/tracks/melody H4CKER/306_difficulty_1a.json b/tracks/melody H4CKER/306_difficulty_1a.json index 255368b7..9ec55a54 100644 --- a/tracks/melody H4CKER/306_difficulty_1a.json +++ b/tracks/melody H4CKER/306_difficulty_1a.json @@ -34,7 +34,7 @@ }, { "noteOrder": 169, - "time": 0.026143790849673207, + "time": 0.026143790849673203, "position": { "x": 4, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 362, - "time": 0.05602240896358544, + "time": 0.056022408963585436, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 628, "time": 0.09710550887021475, "position": { "x": 6, @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 651, + "noteOrder": 652, "time": 0.1008403361344538, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 868, + "noteOrder": 869, "time": 0.13445378151260506, "position": { "x": 6, @@ -334,7 +334,7 @@ }, { "noteOrder": 965, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 7, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 990, "time": 0.1531279178338002, "position": { "x": 3, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 4, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 6, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1037, + "noteOrder": 1038, "time": 0.16059757236227826, "position": { "x": 3, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1037, + "noteOrder": 1038, "time": 0.16059757236227826, "position": { "x": 7, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.1643323996265173, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1183, "time": 0.18300653594771243, "position": { "x": 7, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.18674136321195148, "position": { "x": 6, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.18674136321195148, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.19047619047619047, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.19047619047619047, "position": { "x": 7, @@ -694,7 +694,7 @@ }, { "noteOrder": 1327, - "time": 0.2054154995331466, + "time": 0.20541549953314658, "position": { "x": 3, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.21288515406162467, "position": { "x": 4, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2166199813258637, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1423, + "noteOrder": 1424, "time": 0.22035480859010273, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1447, - "time": 0.22408963585434177, + "noteOrder": 1448, + "time": 0.22408963585434175, "position": { "x": 7, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 1472, - "time": 0.2278244631185808, + "time": 0.22782446311858076, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.23529411764705885, "position": { "x": 4, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1544, - "time": 0.23902894491129786, + "noteOrder": 1545, + "time": 0.2390289449112979, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1568, - "time": 0.2427637721755369, + "noteOrder": 1569, + "time": 0.24276377217553688, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.24649859943977595, + "noteOrder": 1593, + "time": 0.24649859943977592, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.24649859943977595, + "noteOrder": 1593, + "time": 0.24649859943977592, "position": { "x": 4, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1616, + "noteOrder": 1617, "time": 0.25023342670401494, "position": { "x": 3, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1616, + "noteOrder": 1617, "time": 0.25023342670401494, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.26517273576097106, "position": { "x": 2, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.2950513538748833, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1930, - "time": 0.29878618113912236, + "noteOrder": 1931, + "time": 0.2987861811391223, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1955, "time": 0.3025210084033614, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.32492997198879553, "position": { "x": 8, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2244, - "time": 0.3473389355742297, + "noteOrder": 2245, + "time": 0.34733893557422973, "position": { "x": 4, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2292, - "time": 0.35480859010270777, + "noteOrder": 2293, + "time": 0.3548085901027078, "position": { "x": 6, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2317, "time": 0.3585434173669468, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.36227824463118585, + "noteOrder": 2341, + "time": 0.3622782446311858, "position": { "x": 7, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.37721755368814197, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2461, + "noteOrder": 2462, "time": 0.38095238095238093, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2485, + "noteOrder": 2486, "time": 0.38468720821662, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.388422035480859, "position": { "x": 8, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.3921568627450981, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2558, "time": 0.3958916900093371, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2581, + "noteOrder": 2582, "time": 0.3996265172735761, "position": { "x": 5, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2605, + "noteOrder": 2607, "time": 0.4033613445378152, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2630, - "time": 0.4070961718020542, + "noteOrder": 2631, + "time": 0.40709617180205415, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2654, - "time": 0.4108309990662932, + "noteOrder": 2655, + "time": 0.41083099906629317, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2678, - "time": 0.4145658263305323, + "noteOrder": 2679, + "time": 0.41456582633053224, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2678, - "time": 0.4145658263305323, + "noteOrder": 2679, + "time": 0.41456582633053224, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2702, - "time": 0.4183006535947713, + "noteOrder": 2703, + "time": 0.41830065359477125, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2726, - "time": 0.42203548085901027, + "noteOrder": 2727, + "time": 0.4220354808590103, "position": { "x": 5, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2750, + "noteOrder": 2751, "time": 0.42577030812324934, "position": { "x": 3, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2774, - "time": 0.42950513538748836, + "noteOrder": 2776, + "time": 0.4295051353874883, "position": { "x": 4, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2774, - "time": 0.42950513538748836, + "noteOrder": 2776, + "time": 0.4295051353874883, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2823, - "time": 0.43697478991596644, + "noteOrder": 2824, + "time": 0.4369747899159664, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2848, "time": 0.44070961718020546, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.4444444444444445, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.44817927170868355, + "noteOrder": 2896, + "time": 0.4481792717086835, "position": { "x": 2, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2920, "time": 0.45191409897292256, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2943, - "time": 0.4556489262371616, + "noteOrder": 2944, + "time": 0.4556489262371615, "position": { "x": 4, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2967, - "time": 0.45938375350140065, + "noteOrder": 2969, + "time": 0.4593837535014006, "position": { "x": 5, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2993, "time": 0.4631185807656396, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3017, "time": 0.4668534080298786, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.4705882352941177, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.4743230625583567, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.4743230625583567, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.4780578898225957, + "noteOrder": 3089, + "time": 0.4780578898225958, "position": { "x": 7, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.4780578898225957, + "noteOrder": 3089, + "time": 0.4780578898225958, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3209, + "noteOrder": 3210, "time": 0.4967320261437909, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.5004668534080299, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3257, - "time": 0.504201680672269, + "noteOrder": 3258, + "time": 0.5042016806722689, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3282, "time": 0.507936507936508, "position": { "x": 3, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3305, + "noteOrder": 3307, "time": 0.511671335200747, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.515406162464986, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3353, + "noteOrder": 3355, "time": 0.5191409897292251, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3402, + "noteOrder": 3403, "time": 0.5266106442577031, "position": { "x": 4, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.5340802987861811, + "noteOrder": 3451, + "time": 0.5340802987861812, "position": { "x": 6, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3475, "time": 0.5378151260504203, "position": { "x": 5, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3498, - "time": 0.5415499533146593, + "noteOrder": 3500, + "time": 0.5415499533146592, "position": { "x": 3, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3524, "time": 0.5452847805788983, "position": { "x": 5, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3548, "time": 0.5490196078431373, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3594, + "noteOrder": 3596, "time": 0.5564892623716153, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5602240896358545, + "noteOrder": 3620, + "time": 0.5602240896358543, "position": { "x": 6, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3643, - "time": 0.5639589169000934, + "noteOrder": 3644, + "time": 0.5639589169000935, "position": { "x": 4, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3669, "time": 0.5676937441643324, "position": { "x": 7, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3691, - "time": 0.5714285714285715, + "noteOrder": 3693, + "time": 0.5714285714285714, "position": { "x": 6, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3717, "time": 0.5751633986928105, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3739, + "noteOrder": 3741, "time": 0.5788982259570495, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3787, + "noteOrder": 3789, "time": 0.5863678804855276, "position": { "x": 6, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3836, - "time": 0.5938375350140057, + "noteOrder": 3837, + "time": 0.5938375350140056, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3860, - "time": 0.5975723622782447, + "noteOrder": 3862, + "time": 0.5975723622782446, "position": { "x": 7, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3884, - "time": 0.6013071895424836, + "noteOrder": 3886, + "time": 0.6013071895424837, "position": { "x": 3, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4224, + "time": 0.6535947712418302, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { "x": 6, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4366, + "noteOrder": 4368, "time": 0.6760037348272643, "position": { "x": 6, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4391, - "time": 0.6797385620915034, + "noteOrder": 4393, + "time": 0.6797385620915033, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4415, + "noteOrder": 4417, "time": 0.6834733893557423, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4463, + "noteOrder": 4465, "time": 0.6909430438842205, "position": { "x": 4, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4487, - "time": 0.6946778711484594, + "noteOrder": 4489, + "time": 0.6946778711484595, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4511, + "noteOrder": 4513, "time": 0.6984126984126985, "position": { "x": 7, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4559, + "noteOrder": 4562, "time": 0.7058823529411765, "position": { "x": 6, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4610, "time": 0.7133520074696547, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4634, "time": 0.7170868347338936, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4656, + "noteOrder": 4658, "time": 0.7208216619981326, "position": { "x": 3, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4680, - "time": 0.7245564892623717, + "noteOrder": 4682, + "time": 0.7245564892623716, "position": { "x": 4, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4680, - "time": 0.7245564892623717, + "noteOrder": 4682, + "time": 0.7245564892623716, "position": { "x": 6, "y": 0 @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4704, - "time": 0.7282913165266106, + "noteOrder": 4706, + "time": 0.7282913165266107, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4704, - "time": 0.7282913165266106, + "noteOrder": 4706, + "time": 0.7282913165266107, "position": { "x": 3, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4849, - "time": 0.7507002801120448, + "noteOrder": 4851, + "time": 0.7507002801120449, "position": { "x": 5, "y": 0 @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4873, + "noteOrder": 4875, "time": 0.7544351073762839, "position": { "x": 2, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4897, + "noteOrder": 4899, "time": 0.758169934640523, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5042, - "time": 0.7805788982259572, + "noteOrder": 5044, + "time": 0.780578898225957, "position": { "x": 5, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5066, + "noteOrder": 5068, "time": 0.7843137254901962, "position": { "x": 8, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5090, + "noteOrder": 5093, "time": 0.7880485527544352, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5138, - "time": 0.7955182072829133, + "noteOrder": 5141, + "time": 0.7955182072829132, "position": { "x": 5, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.7992530345471522, "position": { "x": 2, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5187, + "noteOrder": 5189, "time": 0.8029878618113914, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.8067226890756304, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8104575163398693, "position": { "x": 3, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.8141923436041084, + "noteOrder": 5261, + "time": 0.8141923436041083, "position": { "x": 8, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5283, - "time": 0.8179271708683474, + "noteOrder": 5286, + "time": 0.8179271708683473, "position": { "x": 4, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5331, + "noteOrder": 5334, "time": 0.8253968253968255, "position": { "x": 8, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 5382, "time": 0.8328664799253035, "position": { "x": 2, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5404, - "time": 0.8366013071895426, + "noteOrder": 5406, + "time": 0.8366013071895425, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5428, - "time": 0.8403361344537816, + "noteOrder": 5430, + "time": 0.8403361344537815, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5452, - "time": 0.8440709617180205, + "noteOrder": 5455, + "time": 0.8440709617180207, "position": { "x": 6, "y": 0 @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5452, - "time": 0.8440709617180205, + "noteOrder": 5455, + "time": 0.8440709617180207, "position": { "x": 4, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5476, + "noteOrder": 5479, "time": 0.8478057889822597, "position": { "x": 3, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5476, + "noteOrder": 5479, "time": 0.8478057889822597, "position": { "x": 7, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5524, - "time": 0.8552754435107377, + "noteOrder": 5527, + "time": 0.8552754435107376, "position": { "x": 6, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5549, - "time": 0.8590102707749767, + "noteOrder": 5551, + "time": 0.8590102707749766, "position": { "x": 2, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5573, - "time": 0.8627450980392158, + "noteOrder": 5575, + "time": 0.8627450980392157, "position": { "x": 2, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5597, + "noteOrder": 5599, "time": 0.8664799253034547, "position": { "x": 6, @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5621, - "time": 0.8702147525676939, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { "x": 3, "y": 0 @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5645, - "time": 0.8739495798319329, + "noteOrder": 5648, + "time": 0.8739495798319328, "position": { "x": 3, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5669, + "noteOrder": 5672, "time": 0.8776844070961718, "position": { "x": 7, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5717, - "time": 0.88515406162465, + "noteOrder": 5720, + "time": 0.8851540616246499, "position": { "x": 8, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5742, + "noteOrder": 5744, "time": 0.888888888888889, "position": { "x": 3, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5766, + "noteOrder": 5768, "time": 0.892623716153128, "position": { "x": 7, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5814, - "time": 0.900093370681606, + "noteOrder": 5817, + "time": 0.9000933706816061, "position": { "x": 6, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5841, "time": 0.9038281979458451, "position": { "x": 2, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5862, - "time": 0.9075630252100841, + "noteOrder": 5865, + "time": 0.907563025210084, "position": { "x": 2, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5910, - "time": 0.9150326797385622, + "noteOrder": 5913, + "time": 0.9150326797385621, "position": { "x": 4, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5935, - "time": 0.9187675070028013, + "noteOrder": 5937, + "time": 0.9187675070028012, "position": { "x": 8, "y": 0 @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5959, + "noteOrder": 5961, "time": 0.9225023342670402, "position": { "x": 8, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5983, + "noteOrder": 5986, "time": 0.9262371615312792, "position": { "x": 4, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6007, - "time": 0.9299719887955183, + "noteOrder": 6010, + "time": 0.9299719887955182, "position": { "x": 7, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6031, + "noteOrder": 6034, "time": 0.9337068160597572, "position": { "x": 7, @@ -3433,7 +3433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6055, + "noteOrder": 6058, "time": 0.9374416433239964, "position": { "x": 3, @@ -3453,7 +3453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6103, + "noteOrder": 6106, "time": 0.9449112978524744, "position": { "x": 2, @@ -3473,7 +3473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6128, + "noteOrder": 6130, "time": 0.9486461251167134, "position": { "x": 7, @@ -3493,8 +3493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6152, - "time": 0.9523809523809526, + "noteOrder": 6154, + "time": 0.9523809523809523, "position": { "x": 3, "y": 0 @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6200, - "time": 0.9598506069094306, + "noteOrder": 6203, + "time": 0.9598506069094305, "position": { "x": 8, "y": 0 @@ -3533,8 +3533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6224, - "time": 0.9635854341736696, + "noteOrder": 6227, + "time": 0.9635854341736695, "position": { "x": 8, "y": 0 @@ -3553,7 +3553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9673202614379085, "position": { "x": 4, @@ -3576,10 +3576,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.014939309056956116, + "noteOrder": 97, + "time": 0.014939309056956118, "position": { "x": 7, "y": 0 @@ -3599,7 +3599,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.022408963585434174, @@ -3622,10 +3622,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.029878618113912233, + "time": 0.029878618113912236, "position": { "x": 3, "y": 0 @@ -3645,10 +3645,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 3, "y": 0 @@ -3668,9 +3668,9 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 7, @@ -3691,7 +3691,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 314, "time": 0.04855275443510738, @@ -3714,10 +3714,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 3, "y": 0 @@ -3737,10 +3737,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 362, - "time": 0.05602240896358544, + "time": 0.056022408963585436, "position": { "x": 3, "y": 0 @@ -3760,10 +3760,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, - "time": 0.059757236227824466, + "time": 0.05975723622782447, "position": { "x": 7, "y": 0 @@ -3783,9 +3783,9 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 458, + "noteOrder": 459, "time": 0.07096171802054155, "position": { "x": 7, @@ -3806,7 +3806,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 410, "time": 0.0634920634920635, @@ -3829,9 +3829,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 458, + "noteOrder": 459, "time": 0.07096171802054155, "position": { "x": 3, @@ -3852,10 +3852,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, - "time": 0.07469654528478059, + "noteOrder": 483, + "time": 0.07469654528478058, "position": { "x": 3, "y": 0 @@ -3875,7 +3875,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.08216619981325865, @@ -3898,7 +3898,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.0896358543417367, @@ -3921,9 +3921,9 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 627, + "noteOrder": 628, "time": 0.09710550887021475, "position": { "x": 7, @@ -3944,10 +3944,10 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10457516339869283, + "noteOrder": 676, + "time": 0.10457516339869281, "position": { "x": 3, "y": 0 @@ -3967,7 +3967,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 700, "time": 0.10830999066293184, @@ -3990,10 +3990,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 724, - "time": 0.11204481792717089, + "time": 0.11204481792717087, "position": { "x": 7, "y": 0 @@ -4013,7 +4013,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 748, "time": 0.1157796451914099, @@ -4036,10 +4036,10 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 772, - "time": 0.11951447245564893, + "time": 0.11951447245564895, "position": { "x": 3, "y": 0 @@ -4059,9 +4059,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 844, + "noteOrder": 845, "time": 0.13071895424836602, "position": { "x": 3, @@ -4082,10 +4082,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 796, - "time": 0.12324929971988798, + "time": 0.12324929971988796, "position": { "x": 7, "y": 0 @@ -4105,9 +4105,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 844, + "noteOrder": 845, "time": 0.13071895424836602, "position": { "x": 7, @@ -4128,9 +4128,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.1942110177404295, "position": { "x": 7, @@ -4151,7 +4151,7 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1279, "time": 0.19794584500466855, @@ -4174,10 +4174,10 @@ }, { "lineGroupId": 49, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1351, - "time": 0.20915032679738566, + "noteOrder": 1352, + "time": 0.20915032679738563, "position": { "x": 4, "y": 0 @@ -4197,10 +4197,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.20915032679738566, + "noteOrder": 1352, + "time": 0.20915032679738563, "position": { "x": 3, "y": 0 @@ -4220,9 +4220,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.21288515406162467, "position": { "x": 3, @@ -4243,10 +4243,10 @@ }, { "lineGroupId": 53, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1447, - "time": 0.22408963585434177, + "noteOrder": 1448, + "time": 0.22408963585434175, "position": { "x": 6, "y": 0 @@ -4266,9 +4266,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1640, + "noteOrder": 1641, "time": 0.253968253968254, "position": { "x": 7, @@ -4289,7 +4289,7 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1665, "time": 0.257703081232493, @@ -4312,7 +4312,7 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1689, "time": 0.26143790849673204, @@ -4335,9 +4335,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.26517273576097106, "position": { "x": 3, @@ -4358,9 +4358,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.26890756302521013, "position": { "x": 7, @@ -4380,13 +4380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1761, - "time": 0.27264239028944914, + "noteOrder": 1750, + "time": 0.2707749766573296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4398,18 +4398,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1785, - "time": 0.27637721755368816, + "noteOrder": 1750, + "time": 0.2707749766573296, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4426,11 +4426,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1809, - "time": 0.28011204481792723, + "noteOrder": 1762, + "time": 0.27264239028944914, "position": { "x": 3, "y": 0 @@ -4449,13 +4449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1833, - "time": 0.2838468720821662, + "noteOrder": 1774, + "time": 0.27450980392156865, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4467,18 +4467,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1858, - "time": 0.28758169934640526, + "noteOrder": 1774, + "time": 0.27450980392156865, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4490,18 +4490,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1882, - "time": 0.2913165266106443, + "noteOrder": 1786, + "time": 0.27637721755368816, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4513,18 +4513,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, - "time": 0.2950513538748833, + "noteOrder": 1798, + "time": 0.27824463118580767, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4536,18 +4536,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1978, - "time": 0.3062558356676004, + "noteOrder": 1798, + "time": 0.27824463118580767, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4559,18 +4559,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2002, - "time": 0.3099906629318394, + "noteOrder": 1810, + "time": 0.2801120448179272, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4587,13 +4587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1978, - "time": 0.3062558356676004, + "noteOrder": 1822, + "time": 0.28197945845004674, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4605,18 +4605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2002, - "time": 0.3099906629318394, + "noteOrder": 1822, + "time": 0.28197945845004674, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4628,18 +4628,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2026, - "time": 0.3137254901960784, + "noteOrder": 1834, + "time": 0.2838468720821662, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4651,18 +4651,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2051, - "time": 0.3174603174603175, + "noteOrder": 1858, + "time": 0.28758169934640526, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4674,18 +4674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2075, - "time": 0.3211951447245565, + "noteOrder": 1883, + "time": 0.2913165266106443, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4697,18 +4697,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2099, - "time": 0.32492997198879553, + "noteOrder": 1907, + "time": 0.2950513538748833, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4720,18 +4720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2123, - "time": 0.3286647992530346, + "noteOrder": 1979, + "time": 0.3062558356676004, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4748,13 +4748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2147, - "time": 0.3323996265172736, + "noteOrder": 2003, + "time": 0.3099906629318394, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4766,18 +4766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2171, - "time": 0.33613445378151263, + "noteOrder": 1979, + "time": 0.3062558356676004, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4789,18 +4789,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2195, - "time": 0.3398692810457517, + "noteOrder": 2003, + "time": 0.3099906629318394, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4817,11 +4817,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, - "time": 0.34360410830999066, + "noteOrder": 2027, + "time": 0.3137254901960784, "position": { "x": 3, "y": 0 @@ -4840,11 +4840,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2244, - "time": 0.3473389355742297, + "noteOrder": 2051, + "time": 0.3174603174603175, "position": { "x": 3, "y": 0 @@ -4863,11 +4863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2268, - "time": 0.35107376283846875, + "noteOrder": 2076, + "time": 0.3211951447245565, "position": { "x": 7, "y": 0 @@ -4886,11 +4886,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2292, - "time": 0.35480859010270777, + "noteOrder": 2100, + "time": 0.32492997198879553, "position": { "x": 7, "y": 0 @@ -4909,13 +4909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2364, - "time": 0.36601307189542487, + "noteOrder": 2124, + "time": 0.3286647992530346, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4932,13 +4932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2388, - "time": 0.3697478991596639, + "noteOrder": 2136, + "time": 0.3305322128851541, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4955,13 +4955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2364, - "time": 0.36601307189542487, + "noteOrder": 2136, + "time": 0.3305322128851541, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4973,18 +4973,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 2388, - "time": 0.3697478991596639, + "noteOrder": 2148, + "time": 0.33239962651727356, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5001,11 +5001,862 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2160, + "time": 0.33426704014939307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2160, + "time": 0.33426704014939307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2172, + "time": 0.33613445378151263, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2184, + "time": 0.33800186741363214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2184, + "time": 0.33800186741363214, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2196, + "time": 0.33986928104575165, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2208, + "time": 0.34173669467787116, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2208, + "time": 0.34173669467787116, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2220, + "time": 0.34360410830999066, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2245, + "time": 0.34733893557422973, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2269, + "time": 0.35107376283846875, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2293, + "time": 0.3548085901027078, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2365, + "time": 0.36601307189542487, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2389, + "time": 0.3697478991596639, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2365, + "time": 0.36601307189542487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2389, + "time": 0.3697478991596639, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2414, + "time": 0.37348272642390296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2438, + "time": 0.37721755368814197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2510, + "time": 0.388422035480859, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2534, + "time": 0.3921568627450981, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2582, + "time": 0.3996265172735761, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2800, + "time": 0.4332399626517274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2824, + "time": 0.4369747899159664, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2896, + "time": 0.4481792717086835, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2920, + "time": 0.45191409897292256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2969, + "time": 0.4593837535014006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3113, + "time": 0.48179271708683474, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3125, + "time": 0.48366013071895425, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3150, + "time": 0.4873949579831933, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3162, + "time": 0.48926237161531283, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3113, + "time": 0.48179271708683474, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3125, + "time": 0.48366013071895425, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3150, + "time": 0.4873949579831933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3162, + "time": 0.48926237161531283, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3186, + "time": 0.49299719887955185, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3282, + "time": 0.507936507936508, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3379, + "time": 0.5228758169934641, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2412, - "time": 0.37348272642390296, + "noteOrder": 3403, + "time": 0.5266106442577031, "position": { "x": 3, "y": 0 @@ -5024,11 +5875,57 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 2437, - "time": 0.37721755368814197, + "noteOrder": 3427, + "time": 0.5303454715219421, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3451, + "time": 0.5340802987861812, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3572, + "time": 0.5527544351073763, "position": { "x": 3, "y": 0 @@ -5047,13 +5944,220 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3669, + "time": 0.5676937441643324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3765, + "time": 0.5826330532212886, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3789, + "time": 0.5863678804855276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3813, + "time": 0.5901027077497666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3837, + "time": 0.5938375350140056, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3910, + "time": 0.6050420168067228, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3934, + "time": 0.6087768440709618, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3910, + "time": 0.6050420168067228, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, "indexInLine": 2, "isSliding": false, - "noteOrder": 2509, - "time": 0.388422035480859, + "noteOrder": 3934, + "time": 0.6087768440709618, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3958, + "time": 0.6125116713352008, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5065,18 +6169,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 3, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2533, - "time": 0.3921568627450981, + "noteOrder": 4031, + "time": 0.6237161531279178, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5088,16 +6192,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 4, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2581, - "time": 0.3996265172735761, + "noteOrder": 4055, + "time": 0.6274509803921569, "position": { "x": 3, "y": 0 @@ -5116,13 +6220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2798, - "time": 0.4332399626517274, + "noteOrder": 4127, + "time": 0.638655462184874, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5134,16 +6238,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 2823, - "time": 0.43697478991596644, + "noteOrder": 4151, + "time": 0.642390289449113, "position": { "x": 7, "y": 0 @@ -5162,13 +6266,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 171, "indexInLine": 2, "isSliding": false, - "noteOrder": 2895, - "time": 0.44817927170868355, + "noteOrder": 4200, + "time": 0.6498599439775911, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5185,13 +6289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 171, "indexInLine": 3, "isSliding": false, - "noteOrder": 2919, - "time": 0.45191409897292256, + "noteOrder": 4224, + "time": 0.6535947712418302, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5208,13 +6312,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 4, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2967, - "time": 0.45938375350140065, + "noteOrder": 4248, + "time": 0.6573295985060692, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5226,18 +6330,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3112, - "time": 0.4817927170868348, + "noteOrder": 4296, + "time": 0.6647992530345471, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5249,18 +6353,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3124, - "time": 0.48366013071895425, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5272,16 +6376,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 2, + "lineGroupId": 175, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3148, - "time": 0.4873949579831933, + "noteOrder": 4344, + "time": 0.6722689075630253, "position": { "x": 7, "y": 0 @@ -5300,11 +6404,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 3, + "lineGroupId": 175, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3160, - "time": 0.48926237161531283, + "noteOrder": 4368, + "time": 0.6760037348272643, "position": { "x": 7, "y": 0 @@ -5323,13 +6427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 175, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3112, - "time": 0.4817927170868348, + "noteOrder": 4441, + "time": 0.6872082166199813, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5341,18 +6445,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, - "time": 0.48366013071895425, + "noteOrder": 4441, + "time": 0.6872082166199813, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5369,11 +6473,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 179, "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, - "time": 0.4873949579831933, + "noteOrder": 4465, + "time": 0.6909430438842205, "position": { "x": 3, "y": 0 @@ -5392,13 +6496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 179, "indexInLine": 3, "isSliding": false, - "noteOrder": 3160, - "time": 0.48926237161531283, + "noteOrder": 4537, + "time": 0.7021475256769375, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5415,11 +6519,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.4929971988795519, + "noteOrder": 4537, + "time": 0.7021475256769375, "position": { "x": 7, "y": 0 @@ -5438,11 +6542,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3281, - "time": 0.507936507936508, + "noteOrder": 4562, + "time": 0.7058823529411765, "position": { "x": 7, "y": 0 @@ -5461,11 +6565,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3377, - "time": 0.5228758169934641, + "noteOrder": 4586, + "time": 0.7096171802054156, "position": { "x": 3, "y": 0 @@ -5484,11 +6588,11 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3402, - "time": 0.5266106442577031, + "noteOrder": 4610, + "time": 0.7133520074696547, "position": { "x": 3, "y": 0 @@ -5507,13 +6611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3426, - "time": 0.5303454715219421, + "noteOrder": 4730, + "time": 0.7320261437908497, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5525,18 +6629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3450, - "time": 0.5340802987861811, + "noteOrder": 4743, + "time": 0.7338935574229692, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5548,18 +6652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3570, - "time": 0.5527544351073763, + "noteOrder": 4743, + "time": 0.7338935574229692, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5576,13 +6680,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3667, - "time": 0.5676937441643324, + "noteOrder": 4755, + "time": 0.7357609710550888, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5599,13 +6703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3763, - "time": 0.5826330532212886, + "noteOrder": 4755, + "time": 0.7357609710550888, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5617,18 +6721,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 196, "indexInLine": 1, "isSliding": false, - "noteOrder": 3787, - "time": 0.5863678804855276, + "noteOrder": 4755, + "time": 0.7357609710550888, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5645,11 +6749,11 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3812, - "time": 0.5901027077497666, + "noteOrder": 4767, + "time": 0.7376283846872083, "position": { "x": 3, "y": 0 @@ -5663,18 +6767,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3836, - "time": 0.5938375350140057, + "noteOrder": 4767, + "time": 0.7376283846872083, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5686,16 +6790,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3908, - "time": 0.6050420168067228, + "noteOrder": 4779, + "time": 0.7394957983193278, "position": { "x": 4, "y": 0 @@ -5709,18 +6813,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 196, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3932, - "time": 0.6087768440709618, + "noteOrder": 4779, + "time": 0.7394957983193278, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5732,18 +6836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3908, - "time": 0.6050420168067228, + "noteOrder": 4779, + "time": 0.7394957983193278, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5755,18 +6859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3932, - "time": 0.6087768440709618, + "noteOrder": 4791, + "time": 0.7413632119514473, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5778,18 +6882,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3956, - "time": 0.6125116713352008, + "noteOrder": 4791, + "time": 0.7413632119514473, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5801,18 +6905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4029, - "time": 0.623716153127918, + "noteOrder": 4803, + "time": 0.7432306255835668, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5824,18 +6928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4053, - "time": 0.6274509803921569, + "noteOrder": 4803, + "time": 0.7432306255835668, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5852,13 +6956,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 4125, - "time": 0.6386554621848739, + "noteOrder": 4803, + "time": 0.7432306255835668, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5870,18 +6974,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4149, - "time": 0.642390289449113, + "noteOrder": 4815, + "time": 0.7450980392156863, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5898,13 +7002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4198, - "time": 0.6498599439775911, + "noteOrder": 4815, + "time": 0.7450980392156863, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5921,13 +7025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5944,13 +7048,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4246, - "time": 0.6573295985060692, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5962,18 +7066,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 199, "indexInLine": 1, "isSliding": false, - "noteOrder": 4294, - "time": 0.6647992530345472, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5990,13 +7094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 199, "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4851, + "time": 0.7507002801120449, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6013,13 +7117,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4342, - "time": 0.6722689075630253, + "noteOrder": 4924, + "time": 0.7619047619047619, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6031,16 +7135,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 203, "indexInLine": 1, "isSliding": false, - "noteOrder": 4366, - "time": 0.6760037348272643, + "noteOrder": 4924, + "time": 0.7619047619047619, "position": { "x": 7, "y": 0 @@ -6059,13 +7163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 203, "indexInLine": 2, "isSliding": false, - "noteOrder": 4439, - "time": 0.6872082166199813, + "noteOrder": 4936, + "time": 0.7637721755368814, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6082,13 +7186,13 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4439, - "time": 0.6872082166199813, + "noteOrder": 4936, + "time": 0.7637721755368814, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6100,18 +7204,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4463, - "time": 0.6909430438842205, + "noteOrder": 4948, + "time": 0.765639589169001, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6123,18 +7227,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 2, + "lineGroupId": 203, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4535, - "time": 0.7021475256769375, + "noteOrder": 4948, + "time": 0.765639589169001, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6146,16 +7250,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, - "time": 0.7021475256769375, + "noteOrder": 4948, + "time": 0.765639589169001, "position": { "x": 7, "y": 0 @@ -6169,16 +7273,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4559, - "time": 0.7058823529411765, + "noteOrder": 4960, + "time": 0.7675070028011205, "position": { "x": 7, "y": 0 @@ -6192,18 +7296,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4584, - "time": 0.7096171802054155, + "noteOrder": 4960, + "time": 0.7675070028011205, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6220,13 +7324,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4608, - "time": 0.7133520074696547, + "noteOrder": 4972, + "time": 0.76937441643324, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6243,13 +7347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4728, - "time": 0.7320261437908497, + "noteOrder": 4972, + "time": 0.76937441643324, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6266,13 +7370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4752, - "time": 0.7357609710550888, + "noteOrder": 4972, + "time": 0.76937441643324, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6289,13 +7393,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4777, - "time": 0.7394957983193278, + "noteOrder": 4984, + "time": 0.7712418300653595, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6307,18 +7411,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4801, - "time": 0.7432306255835668, + "noteOrder": 4984, + "time": 0.7712418300653595, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6335,13 +7439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4825, - "time": 0.7469654528478059, + "noteOrder": 4996, + "time": 0.773109243697479, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6353,18 +7457,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4849, - "time": 0.7507002801120448, + "noteOrder": 4996, + "time": 0.773109243697479, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6376,18 +7480,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4921, - "time": 0.7619047619047619, + "noteOrder": 4996, + "time": 0.773109243697479, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6404,11 +7508,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4921, - "time": 0.7619047619047619, + "noteOrder": 5008, + "time": 0.7749766573295985, "position": { "x": 7, "y": 0 @@ -6422,18 +7526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4945, - "time": 0.765639589169001, + "noteOrder": 5008, + "time": 0.7749766573295985, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6450,13 +7554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4970, - "time": 0.76937441643324, + "noteOrder": 5020, + "time": 0.776844070961718, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6468,18 +7572,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4994, - "time": 0.773109243697479, + "noteOrder": 5020, + "time": 0.776844070961718, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6497,9 +7601,9 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5018, + "noteOrder": 5020, "time": 0.776844070961718, "position": { "x": 7, @@ -6520,10 +7624,10 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5042, - "time": 0.7805788982259572, + "noteOrder": 5044, + "time": 0.780578898225957, "position": { "x": 7, "y": 0 @@ -6543,9 +7647,9 @@ }, { "lineGroupId": 207, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5114, + "noteOrder": 5117, "time": 0.7917833800186742, "position": { "x": 4, @@ -6566,9 +7670,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5114, + "noteOrder": 5117, "time": 0.7917833800186742, "position": { "x": 3, @@ -6589,10 +7693,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5138, - "time": 0.7955182072829133, + "noteOrder": 5141, + "time": 0.7955182072829132, "position": { "x": 4, "y": 0 @@ -6612,9 +7716,9 @@ }, { "lineGroupId": 211, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5163, + "noteOrder": 5165, "time": 0.7992530345471522, "position": { "x": 4, @@ -6635,9 +7739,9 @@ }, { "lineGroupId": 211, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5187, + "noteOrder": 5189, "time": 0.8029878618113914, "position": { "x": 5, @@ -6658,9 +7762,9 @@ }, { "lineGroupId": 211, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8104575163398693, "position": { "x": 5, @@ -6681,10 +7785,10 @@ }, { "lineGroupId": 211, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5259, - "time": 0.8141923436041084, + "noteOrder": 5261, + "time": 0.8141923436041083, "position": { "x": 6, "y": 0 @@ -6704,10 +7808,10 @@ }, { "lineGroupId": 211, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5283, - "time": 0.8179271708683474, + "noteOrder": 5286, + "time": 0.8179271708683473, "position": { "x": 6, "y": 0 @@ -6727,10 +7831,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5307, - "time": 0.8216619981325864, + "noteOrder": 5310, + "time": 0.8216619981325863, "position": { "x": 7, "y": 0 @@ -6750,9 +7854,9 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5331, + "noteOrder": 5334, "time": 0.8253968253968255, "position": { "x": 7, @@ -6773,10 +7877,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5356, - "time": 0.8291316526610646, + "noteOrder": 5358, + "time": 0.8291316526610645, "position": { "x": 3, "y": 0 @@ -6796,9 +7900,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5380, + "noteOrder": 5382, "time": 0.8328664799253035, "position": { "x": 3, @@ -6819,9 +7923,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5500, + "noteOrder": 5503, "time": 0.8515406162464987, "position": { "x": 3, @@ -6842,10 +7946,10 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5524, - "time": 0.8552754435107377, + "noteOrder": 5527, + "time": 0.8552754435107376, "position": { "x": 4, "y": 0 @@ -6865,10 +7969,10 @@ }, { "lineGroupId": 229, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5573, - "time": 0.8627450980392158, + "noteOrder": 5575, + "time": 0.8627450980392157, "position": { "x": 4, "y": 0 @@ -6888,9 +7992,9 @@ }, { "lineGroupId": 229, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5597, + "noteOrder": 5599, "time": 0.8664799253034547, "position": { "x": 5, @@ -6911,10 +8015,10 @@ }, { "lineGroupId": 229, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5621, - "time": 0.8702147525676939, + "noteOrder": 5623, + "time": 0.8702147525676938, "position": { "x": 5, "y": 0 @@ -6934,10 +8038,10 @@ }, { "lineGroupId": 229, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5645, - "time": 0.8739495798319329, + "noteOrder": 5648, + "time": 0.8739495798319328, "position": { "x": 5, "y": 0 @@ -6957,9 +8061,9 @@ }, { "lineGroupId": 229, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5669, + "noteOrder": 5672, "time": 0.8776844070961718, "position": { "x": 6, @@ -6980,9 +8084,9 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5693, + "noteOrder": 5696, "time": 0.8814192343604109, "position": { "x": 6, @@ -7003,10 +8107,10 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5717, - "time": 0.88515406162465, + "noteOrder": 5720, + "time": 0.8851540616246499, "position": { "x": 6, "y": 0 @@ -7026,9 +8130,9 @@ }, { "lineGroupId": 237, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5742, + "noteOrder": 5744, "time": 0.888888888888889, "position": { "x": 5, @@ -7049,9 +8153,9 @@ }, { "lineGroupId": 237, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5766, + "noteOrder": 5768, "time": 0.892623716153128, "position": { "x": 5, @@ -7072,10 +8176,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5790, - "time": 0.8963585434173671, + "noteOrder": 5792, + "time": 0.896358543417367, "position": { "x": 3, "y": 0 @@ -7095,10 +8199,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5814, - "time": 0.900093370681606, + "noteOrder": 5817, + "time": 0.9000933706816061, "position": { "x": 4, "y": 0 @@ -7118,10 +8222,10 @@ }, { "lineGroupId": 241, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5862, - "time": 0.9075630252100841, + "noteOrder": 5865, + "time": 0.907563025210084, "position": { "x": 4, "y": 0 @@ -7141,10 +8245,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5886, - "time": 0.9112978524743232, + "noteOrder": 5889, + "time": 0.911297852474323, "position": { "x": 7, "y": 0 @@ -7164,10 +8268,10 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5910, - "time": 0.9150326797385622, + "noteOrder": 5913, + "time": 0.9150326797385621, "position": { "x": 6, "y": 0 @@ -7187,9 +8291,9 @@ }, { "lineGroupId": 245, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5959, + "noteOrder": 5961, "time": 0.9225023342670402, "position": { "x": 6, @@ -7210,9 +8314,9 @@ }, { "lineGroupId": 245, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5983, + "noteOrder": 5986, "time": 0.9262371615312792, "position": { "x": 5, @@ -7233,10 +8337,10 @@ }, { "lineGroupId": 245, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6007, - "time": 0.9299719887955183, + "noteOrder": 6010, + "time": 0.9299719887955182, "position": { "x": 5, "y": 0 @@ -7256,9 +8360,9 @@ }, { "lineGroupId": 245, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6031, + "noteOrder": 6034, "time": 0.9337068160597572, "position": { "x": 5, @@ -7279,9 +8383,9 @@ }, { "lineGroupId": 245, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 6055, + "noteOrder": 6058, "time": 0.9374416433239964, "position": { "x": 4, @@ -7302,9 +8406,9 @@ }, { "lineGroupId": 253, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6079, + "noteOrder": 6082, "time": 0.9411764705882354, "position": { "x": 4, @@ -7325,9 +8429,9 @@ }, { "lineGroupId": 253, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6103, + "noteOrder": 6106, "time": 0.9449112978524744, "position": { "x": 4, @@ -7348,9 +8452,9 @@ }, { "lineGroupId": 253, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6128, + "noteOrder": 6130, "time": 0.9486461251167134, "position": { "x": 5, @@ -7371,10 +8475,10 @@ }, { "lineGroupId": 253, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6152, - "time": 0.9523809523809526, + "noteOrder": 6154, + "time": 0.9523809523809523, "position": { "x": 5, "y": 0 @@ -7394,10 +8498,10 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6176, - "time": 0.9561157796451915, + "noteOrder": 6179, + "time": 0.9561157796451916, "position": { "x": 6, "y": 0 @@ -7417,10 +8521,10 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6224, - "time": 0.9635854341736696, + "noteOrder": 6227, + "time": 0.9635854341736695, "position": { "x": 6, "y": 0 @@ -7440,9 +8544,9 @@ }, { "lineGroupId": 257, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9673202614379085, "position": { "x": 5, diff --git a/tracks/melody H4CKER/306_difficulty_1b.json b/tracks/melody H4CKER/306_difficulty_1b.json index 9dcbda58..bc75f249 100644 --- a/tracks/melody H4CKER/306_difficulty_1b.json +++ b/tracks/melody H4CKER/306_difficulty_1b.json @@ -34,7 +34,7 @@ }, { "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 6, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 7, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 362, - "time": 0.05602240896358544, + "time": 0.056022408963585436, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 386, - "time": 0.059757236227824466, + "time": 0.05975723622782447, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 628, "time": 0.09710550887021475, "position": { "x": 4, @@ -174,7 +174,7 @@ }, { "noteOrder": 724, - "time": 0.11204481792717089, + "time": 0.11204481792717087, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 772, - "time": 0.11951447245564893, + "time": 0.11951447245564895, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 796, - "time": 0.12324929971988798, + "time": 0.12324929971988796, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1327, - "time": 0.2054154995331466, + "time": 0.20541549953314658, "position": { "x": 6, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1400, "time": 0.2166199813258637, "position": { "x": 5, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1423, + "noteOrder": 1424, "time": 0.22035480859010273, "position": { "x": 4, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1447, - "time": 0.22408963585434177, + "noteOrder": 1448, + "time": 0.22408963585434175, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1472, - "time": 0.2278244631185808, + "time": 0.22782446311858076, "position": { "x": 7, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1520, + "noteOrder": 1521, "time": 0.23529411764705885, "position": { "x": 6, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1592, - "time": 0.24649859943977595, + "noteOrder": 1593, + "time": 0.24649859943977592, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1616, + "noteOrder": 1617, "time": 0.25023342670401494, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1640, + "noteOrder": 1641, "time": 0.253968253968254, "position": { "x": 7, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1713, + "noteOrder": 1714, "time": 0.26517273576097106, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1738, "time": 0.26890756302521013, "position": { "x": 7, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1761, + "noteOrder": 1762, "time": 0.27264239028944914, "position": { "x": 3, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.27637721755368816, "position": { "x": 4, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1786, "time": 0.27637721755368816, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1809, - "time": 0.28011204481792723, + "noteOrder": 1810, + "time": 0.2801120448179272, "position": { "x": 4, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1809, - "time": 0.28011204481792723, + "noteOrder": 1810, + "time": 0.2801120448179272, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1883, "time": 0.2913165266106443, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.2950513538748833, "position": { "x": 6, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 1979, "time": 0.3062558356676004, "position": { "x": 5, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2003, "time": 0.3099906629318394, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.3137254901960784, "position": { "x": 3, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2075, + "noteOrder": 2076, "time": 0.3211951447245565, "position": { "x": 7, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.32492997198879553, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.3286647992530346, "position": { "x": 3, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2147, - "time": 0.3323996265172736, + "noteOrder": 2148, + "time": 0.33239962651727356, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.33613445378151263, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.33613445378151263, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2195, - "time": 0.3398692810457517, + "noteOrder": 2196, + "time": 0.33986928104575165, "position": { "x": 4, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2195, - "time": 0.3398692810457517, + "noteOrder": 2196, + "time": 0.33986928104575165, "position": { "x": 6, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2268, + "noteOrder": 2269, "time": 0.35107376283846875, "position": { "x": 5, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2292, - "time": 0.35480859010270777, + "noteOrder": 2293, + "time": 0.3548085901027078, "position": { "x": 4, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2317, "time": 0.3585434173669468, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.36227824463118585, + "noteOrder": 2341, + "time": 0.3622782446311858, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36601307189542487, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.36601307189542487, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2412, + "noteOrder": 2414, "time": 0.37348272642390296, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 2438, "time": 0.37721755368814197, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2461, + "noteOrder": 2462, "time": 0.38095238095238093, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2485, + "noteOrder": 2486, "time": 0.38468720821662, "position": { "x": 7, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2510, "time": 0.388422035480859, "position": { "x": 7, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2533, + "noteOrder": 2534, "time": 0.3921568627450981, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2557, + "noteOrder": 2558, "time": 0.3958916900093371, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2581, + "noteOrder": 2582, "time": 0.3996265172735761, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2654, - "time": 0.4108309990662932, + "noteOrder": 2655, + "time": 0.41083099906629317, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2750, + "noteOrder": 2751, "time": 0.42577030812324934, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2798, + "noteOrder": 2800, "time": 0.4332399626517274, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2823, - "time": 0.43697478991596644, + "noteOrder": 2824, + "time": 0.4369747899159664, "position": { "x": 5, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2848, "time": 0.44070961718020546, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2871, + "noteOrder": 2872, "time": 0.4444444444444445, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2895, - "time": 0.44817927170868355, + "noteOrder": 2896, + "time": 0.4481792717086835, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2919, + "noteOrder": 2920, "time": 0.45191409897292256, "position": { "x": 5, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2943, - "time": 0.4556489262371616, + "noteOrder": 2944, + "time": 0.4556489262371615, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2967, - "time": 0.45938375350140065, + "noteOrder": 2969, + "time": 0.4593837535014006, "position": { "x": 5, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2991, + "noteOrder": 2993, "time": 0.4631185807656396, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3017, "time": 0.4668534080298786, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.4705882352941177, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3041, "time": 0.4705882352941177, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.4743230625583567, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3064, + "noteOrder": 3065, "time": 0.4743230625583567, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3088, - "time": 0.4780578898225957, + "noteOrder": 3089, + "time": 0.4780578898225958, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3112, - "time": 0.4817927170868348, + "noteOrder": 3113, + "time": 0.48179271708683474, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.5004668534080299, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.515406162464986, "position": { "x": 4, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3427, "time": 0.5303454715219421, "position": { "x": 5, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.5340802987861811, + "noteOrder": 3451, + "time": 0.5340802987861812, "position": { "x": 6, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3524, "time": 0.5452847805788983, "position": { "x": 5, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3548, "time": 0.5490196078431373, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3619, - "time": 0.5602240896358545, + "noteOrder": 3620, + "time": 0.5602240896358543, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3715, + "noteOrder": 3717, "time": 0.5751633986928105, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3813, "time": 0.5901027077497666, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3836, - "time": 0.5938375350140057, + "noteOrder": 3837, + "time": 0.5938375350140056, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4391, - "time": 0.6797385620915034, + "noteOrder": 4393, + "time": 0.6797385620915033, "position": { "x": 6, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4487, - "time": 0.6946778711484594, + "noteOrder": 4489, + "time": 0.6946778711484595, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4972, "time": 0.76937441643324, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5066, + "noteOrder": 5068, "time": 0.7843137254901962, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5211, + "noteOrder": 5213, "time": 0.8067226890756304, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5235, + "noteOrder": 5237, "time": 0.8104575163398693, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5259, - "time": 0.8141923436041084, + "noteOrder": 5261, + "time": 0.8141923436041083, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5283, - "time": 0.8179271708683474, + "noteOrder": 5286, + "time": 0.8179271708683473, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5404, - "time": 0.8366013071895426, + "noteOrder": 5406, + "time": 0.8366013071895425, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5428, - "time": 0.8403361344537816, + "noteOrder": 5430, + "time": 0.8403361344537815, "position": { "x": 7, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5742, + "noteOrder": 5744, "time": 0.888888888888889, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5838, + "noteOrder": 5841, "time": 0.9038281979458451, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5983, + "noteOrder": 5986, "time": 0.9262371615312792, "position": { "x": 3, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6007, - "time": 0.9299719887955183, + "noteOrder": 6010, + "time": 0.9299719887955182, "position": { "x": 5, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6031, + "noteOrder": 6034, "time": 0.9337068160597572, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6055, + "noteOrder": 6058, "time": 0.9374416433239964, "position": { "x": 7, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6176, - "time": 0.9561157796451915, + "noteOrder": 6179, + "time": 0.9561157796451916, "position": { "x": 7, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6200, - "time": 0.9598506069094306, + "noteOrder": 6203, + "time": 0.9598506069094305, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6224, - "time": 0.9635854341736696, + "noteOrder": 6227, + "time": 0.9635854341736695, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6224, - "time": 0.9635854341736696, + "noteOrder": 6227, + "time": 0.9635854341736695, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9673202614379085, "position": { "x": 7, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6248, + "noteOrder": 6251, "time": 0.9673202614379085, "position": { "x": 3, @@ -2256,10 +2256,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 96, - "time": 0.014939309056956116, + "noteOrder": 97, + "time": 0.014939309056956118, "position": { "x": 3, "y": 0 @@ -2279,7 +2279,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, "time": 0.022408963585434174, @@ -2302,10 +2302,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, - "time": 0.029878618113912233, + "time": 0.029878618113912236, "position": { "x": 7, "y": 0 @@ -2325,10 +2325,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 241, - "time": 0.037348272642390296, + "time": 0.03734827264239029, "position": { "x": 7, "y": 0 @@ -2348,9 +2348,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 289, + "noteOrder": 290, "time": 0.04481792717086835, "position": { "x": 3, @@ -2371,10 +2371,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, - "time": 0.052287581699346414, + "time": 0.05228758169934641, "position": { "x": 3, "y": 0 @@ -2394,10 +2394,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 482, - "time": 0.07469654528478059, + "noteOrder": 483, + "time": 0.07469654528478058, "position": { "x": 7, "y": 0 @@ -2417,7 +2417,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 531, "time": 0.08216619981325865, @@ -2440,7 +2440,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 579, "time": 0.0896358543417367, @@ -2463,9 +2463,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 627, + "noteOrder": 628, "time": 0.09710550887021475, "position": { "x": 3, @@ -2486,10 +2486,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10457516339869283, + "noteOrder": 676, + "time": 0.10457516339869281, "position": { "x": 7, "y": 0 @@ -2509,10 +2509,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 724, - "time": 0.11204481792717089, + "time": 0.11204481792717087, "position": { "x": 7, "y": 0 @@ -2532,9 +2532,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 868, + "noteOrder": 869, "time": 0.13445378151260506, "position": { "x": 3, @@ -2555,7 +2555,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 917, "time": 0.1419234360410831, @@ -2578,10 +2578,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 965, - "time": 0.14939309056956118, + "time": 0.14939309056956115, "position": { "x": 7, "y": 0 @@ -2601,9 +2601,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 989, + "noteOrder": 990, "time": 0.1531279178338002, "position": { "x": 7, @@ -2624,9 +2624,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1013, + "noteOrder": 1014, "time": 0.1568627450980392, "position": { "x": 3, @@ -2647,9 +2647,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1037, + "noteOrder": 1038, "time": 0.16059757236227826, "position": { "x": 3, @@ -2670,9 +2670,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1061, + "noteOrder": 1062, "time": 0.1643323996265173, "position": { "x": 7, @@ -2693,7 +2693,7 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1110, "time": 0.17180205415499533, @@ -2716,7 +2716,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1158, "time": 0.1792717086834734, @@ -2739,9 +2739,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1182, + "noteOrder": 1183, "time": 0.18300653594771243, "position": { "x": 3, @@ -2762,9 +2762,9 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1206, + "noteOrder": 1207, "time": 0.18674136321195148, "position": { "x": 7, @@ -2785,9 +2785,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1230, + "noteOrder": 1231, "time": 0.19047619047619047, "position": { "x": 7, @@ -2808,9 +2808,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1254, + "noteOrder": 1255, "time": 0.1942110177404295, "position": { "x": 3, @@ -2831,10 +2831,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1327, - "time": 0.2054154995331466, + "time": 0.20541549953314658, "position": { "x": 3, "y": 0 @@ -2854,10 +2854,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1351, - "time": 0.20915032679738566, + "noteOrder": 1352, + "time": 0.20915032679738563, "position": { "x": 7, "y": 0 @@ -2877,9 +2877,9 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1423, + "noteOrder": 1424, "time": 0.22035480859010273, "position": { "x": 7, @@ -2900,10 +2900,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, - "time": 0.23902894491129786, + "noteOrder": 1545, + "time": 0.2390289449112979, "position": { "x": 3, "y": 0 @@ -2923,10 +2923,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1568, - "time": 0.2427637721755369, + "noteOrder": 1569, + "time": 0.24276377217553688, "position": { "x": 3, "y": 0 @@ -2946,10 +2946,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, - "time": 0.23902894491129786, + "noteOrder": 1545, + "time": 0.2390289449112979, "position": { "x": 7, "y": 0 @@ -2969,10 +2969,10 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1568, - "time": 0.2427637721755369, + "noteOrder": 1569, + "time": 0.24276377217553688, "position": { "x": 7, "y": 0 @@ -2992,9 +2992,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1833, + "noteOrder": 1834, "time": 0.2838468720821662, "position": { "x": 3, @@ -3015,9 +3015,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1906, + "noteOrder": 1907, "time": 0.2950513538748833, "position": { "x": 3, @@ -3038,10 +3038,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1930, - "time": 0.29878618113912236, + "noteOrder": 1931, + "time": 0.2987861811391223, "position": { "x": 7, "y": 0 @@ -3061,9 +3061,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2002, + "noteOrder": 2003, "time": 0.3099906629318394, "position": { "x": 7, @@ -3084,9 +3084,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2219, + "noteOrder": 2220, "time": 0.34360410830999066, "position": { "x": 7, @@ -3107,10 +3107,10 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2292, - "time": 0.35480859010270777, + "noteOrder": 2293, + "time": 0.3548085901027078, "position": { "x": 7, "y": 0 @@ -3130,9 +3130,9 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2605, + "noteOrder": 2607, "time": 0.4033613445378152, "position": { "x": 7, @@ -3153,10 +3153,10 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2654, - "time": 0.4108309990662932, + "noteOrder": 2655, + "time": 0.41083099906629317, "position": { "x": 7, "y": 0 @@ -3176,10 +3176,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2702, - "time": 0.4183006535947713, + "noteOrder": 2703, + "time": 0.41830065359477125, "position": { "x": 3, "y": 0 @@ -3199,9 +3199,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2750, + "noteOrder": 2751, "time": 0.42577030812324934, "position": { "x": 3, @@ -3222,10 +3222,10 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.4929971988795519, + "noteOrder": 3186, + "time": 0.49299719887955185, "position": { "x": 7, "y": 0 @@ -3245,9 +3245,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3233, + "noteOrder": 3234, "time": 0.5004668534080299, "position": { "x": 7, @@ -3268,9 +3268,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3281, + "noteOrder": 3282, "time": 0.507936507936508, "position": { "x": 3, @@ -3291,9 +3291,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.515406162464986, "position": { "x": 3, @@ -3314,9 +3314,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3377, + "noteOrder": 3379, "time": 0.5228758169934641, "position": { "x": 7, @@ -3337,10 +3337,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3450, - "time": 0.5340802987861811, + "noteOrder": 3451, + "time": 0.5340802987861812, "position": { "x": 7, "y": 0 @@ -3360,9 +3360,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3474, + "noteOrder": 3475, "time": 0.5378151260504203, "position": { "x": 3, @@ -3383,9 +3383,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3546, + "noteOrder": 3548, "time": 0.5490196078431373, "position": { "x": 3, @@ -3406,9 +3406,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3570, + "noteOrder": 3572, "time": 0.5527544351073763, "position": { "x": 7, @@ -3429,10 +3429,10 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3619, - "time": 0.5602240896358545, + "noteOrder": 3620, + "time": 0.5602240896358543, "position": { "x": 7, "y": 0 @@ -3452,9 +3452,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3667, + "noteOrder": 3669, "time": 0.5676937441643324, "position": { "x": 3, @@ -3475,9 +3475,9 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3715, + "noteOrder": 3717, "time": 0.5751633986928105, "position": { "x": 3, @@ -3498,9 +3498,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3763, + "noteOrder": 3765, "time": 0.5826330532212886, "position": { "x": 7, @@ -3521,10 +3521,10 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3836, - "time": 0.5938375350140057, + "noteOrder": 3837, + "time": 0.5938375350140056, "position": { "x": 7, "y": 0 @@ -3544,10 +3544,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3860, - "time": 0.5975723622782447, + "noteOrder": 3862, + "time": 0.5975723622782446, "position": { "x": 3, "y": 0 @@ -3567,9 +3567,9 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3932, + "noteOrder": 3934, "time": 0.6087768440709618, "position": { "x": 3, @@ -3590,9 +3590,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3908, + "noteOrder": 3910, "time": 0.6050420168067228, "position": { "x": 7, @@ -3613,9 +3613,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3932, + "noteOrder": 3934, "time": 0.6087768440709618, "position": { "x": 7, @@ -3636,9 +3636,9 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3956, + "noteOrder": 3958, "time": 0.6125116713352008, "position": { "x": 7, @@ -3659,10 +3659,10 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4029, - "time": 0.623716153127918, + "noteOrder": 4031, + "time": 0.6237161531279178, "position": { "x": 7, "y": 0 @@ -3682,9 +3682,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4053, + "noteOrder": 4055, "time": 0.6274509803921569, "position": { "x": 3, @@ -3705,10 +3705,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4125, - "time": 0.6386554621848739, + "noteOrder": 4127, + "time": 0.638655462184874, "position": { "x": 3, "y": 0 @@ -3728,9 +3728,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4149, + "noteOrder": 4151, "time": 0.642390289449113, "position": { "x": 6, @@ -3751,10 +3751,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4224, + "time": 0.6535947712418302, "position": { "x": 6, "y": 0 @@ -3774,9 +3774,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4149, + "noteOrder": 4151, "time": 0.642390289449113, "position": { "x": 4, @@ -3797,10 +3797,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4222, - "time": 0.6535947712418301, + "noteOrder": 4224, + "time": 0.6535947712418302, "position": { "x": 4, "y": 0 @@ -3820,9 +3820,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4246, + "noteOrder": 4248, "time": 0.6573295985060692, "position": { "x": 3, @@ -3843,10 +3843,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { "x": 3, "y": 0 @@ -3866,9 +3866,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4246, + "noteOrder": 4248, "time": 0.6573295985060692, "position": { "x": 7, @@ -3889,10 +3889,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.6685340802987862, + "noteOrder": 4320, + "time": 0.6685340802987861, "position": { "x": 7, "y": 0 @@ -3912,9 +3912,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4342, + "noteOrder": 4344, "time": 0.6722689075630253, "position": { "x": 7, @@ -3935,10 +3935,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4391, - "time": 0.6797385620915034, + "noteOrder": 4393, + "time": 0.6797385620915033, "position": { "x": 7, "y": 0 @@ -3958,9 +3958,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4439, + "noteOrder": 4441, "time": 0.6872082166199813, "position": { "x": 3, @@ -3981,10 +3981,10 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4487, - "time": 0.6946778711484594, + "noteOrder": 4489, + "time": 0.6946778711484595, "position": { "x": 3, "y": 0 @@ -4004,9 +4004,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, + "noteOrder": 4537, "time": 0.7021475256769375, "position": { "x": 3, @@ -4027,10 +4027,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4584, - "time": 0.7096171802054155, + "noteOrder": 4586, + "time": 0.7096171802054156, "position": { "x": 3, "y": 0 @@ -4050,9 +4050,9 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4535, + "noteOrder": 4537, "time": 0.7021475256769375, "position": { "x": 7, @@ -4073,10 +4073,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4584, - "time": 0.7096171802054155, + "noteOrder": 4586, + "time": 0.7096171802054156, "position": { "x": 7, "y": 0 @@ -4096,9 +4096,9 @@ }, { "lineGroupId": 139, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4632, + "noteOrder": 4634, "time": 0.7170868347338936, "position": { "x": 4, @@ -4119,10 +4119,10 @@ }, { "lineGroupId": 139, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4704, - "time": 0.7282913165266106, + "noteOrder": 4706, + "time": 0.7282913165266107, "position": { "x": 4, "y": 0 @@ -4142,9 +4142,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4632, + "noteOrder": 4634, "time": 0.7170868347338936, "position": { "x": 6, @@ -4165,10 +4165,10 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4704, - "time": 0.7282913165266106, + "noteOrder": 4706, + "time": 0.7282913165266107, "position": { "x": 6, "y": 0 @@ -4188,9 +4188,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4728, + "noteOrder": 4730, "time": 0.7320261437908497, "position": { "x": 7, @@ -4210,11 +4210,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4825, - "time": 0.7469654528478059, + "noteOrder": 4779, + "time": 0.7394957983193278, "position": { "x": 7, "y": 0 @@ -4228,18 +4228,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4921, - "time": 0.7619047619047619, + "noteOrder": 4779, + "time": 0.7394957983193278, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4256,11 +4256,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4970, - "time": 0.76937441643324, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { "x": 6, "y": 0 @@ -4279,13 +4279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5018, - "time": 0.776844070961718, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4297,18 +4297,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 5066, - "time": 0.7843137254901962, + "noteOrder": 4827, + "time": 0.7469654528478059, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4325,11 +4325,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5114, - "time": 0.7917833800186742, + "noteOrder": 4875, + "time": 0.7544351073762839, "position": { "x": 7, "y": 0 @@ -4343,18 +4343,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5163, - "time": 0.7992530345471522, + "noteOrder": 4875, + "time": 0.7544351073762839, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4371,13 +4371,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5307, - "time": 0.8216619981325864, + "noteOrder": 4924, + "time": 0.7619047619047619, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4394,11 +4394,34 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4924, + "time": 0.7619047619047619, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5356, - "time": 0.8291316526610646, + "noteOrder": 4924, + "time": 0.7619047619047619, "position": { "x": 7, "y": 0 @@ -4417,11 +4440,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5452, - "time": 0.8440709617180205, + "noteOrder": 4972, + "time": 0.76937441643324, "position": { "x": 6, "y": 0 @@ -4440,13 +4463,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 145, "indexInLine": 1, "isSliding": false, - "noteOrder": 5476, - "time": 0.8478057889822597, + "noteOrder": 5020, + "time": 0.776844070961718, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4458,16 +4481,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5452, - "time": 0.8440709617180205, + "noteOrder": 5068, + "time": 0.7843137254901962, "position": { "x": 4, "y": 0 @@ -4486,13 +4509,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 5476, - "time": 0.8478057889822597, + "noteOrder": 5117, + "time": 0.7917833800186742, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4504,18 +4527,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5500, - "time": 0.8515406162464987, + "noteOrder": 5141, + "time": 0.7955182072829132, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4527,18 +4550,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5597, - "time": 0.8664799253034547, + "noteOrder": 5141, + "time": 0.7955182072829132, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4555,11 +4578,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5693, - "time": 0.8814192343604109, + "noteOrder": 5165, + "time": 0.7992530345471522, "position": { "x": 3, "y": 0 @@ -4578,13 +4601,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5742, - "time": 0.888888888888889, + "noteOrder": 5189, + "time": 0.8029878618113914, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4601,13 +4624,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5790, - "time": 0.8963585434173671, + "noteOrder": 5189, + "time": 0.8029878618113914, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4619,18 +4642,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, + "lineGroupId": 153, "indexInLine": 1, "isSliding": false, - "noteOrder": 5838, - "time": 0.9038281979458451, + "noteOrder": 5310, + "time": 0.8216619981325863, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4642,16 +4665,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5886, - "time": 0.9112978524743232, + "noteOrder": 5334, + "time": 0.8253968253968255, "position": { "x": 3, "y": 0 @@ -4670,11 +4693,34 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5334, + "time": 0.8253968253968255, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5935, - "time": 0.9187675070028013, + "noteOrder": 5358, + "time": 0.8291316526610645, "position": { "x": 7, "y": 0 @@ -4693,11 +4739,11 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6079, - "time": 0.9411764705882354, + "noteOrder": 5382, + "time": 0.8328664799253035, "position": { "x": 7, "y": 0 @@ -4716,13 +4762,703 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6128, - "time": 0.9486461251167134, + "noteOrder": 5382, + "time": 0.8328664799253035, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5455, + "time": 0.8440709617180207, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5479, + "time": 0.8478057889822597, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5455, + "time": 0.8440709617180207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5479, + "time": 0.8478057889822597, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5503, + "time": 0.8515406162464987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5551, + "time": 0.8590102707749766, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5551, + "time": 0.8590102707749766, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5599, + "time": 0.8664799253034547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5599, + "time": 0.8664799253034547, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5599, + "time": 0.8664799253034547, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5648, + "time": 0.8739495798319328, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5648, + "time": 0.8739495798319328, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5696, + "time": 0.8814192343604109, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5696, + "time": 0.8814192343604109, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5696, + "time": 0.8814192343604109, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5744, + "time": 0.888888888888889, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5792, + "time": 0.896358543417367, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5841, + "time": 0.9038281979458451, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5889, + "time": 0.911297852474323, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5913, + "time": 0.9150326797385621, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5913, + "time": 0.9150326797385621, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5937, + "time": 0.9187675070028012, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5961, + "time": 0.9225023342670402, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5961, + "time": 0.9225023342670402, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6082, + "time": 0.9411764705882354, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6106, + "time": 0.9449112978524744, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6106, + "time": 0.9449112978524744, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6130, + "time": 0.9486461251167134, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6154, + "time": 0.9523809523809523, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6154, + "time": 0.9523809523809523, + "position": { + "x": 4, "y": 0 }, "position2D": { diff --git a/tracks/melody H4CKER/info.json b/tracks/melody H4CKER/info.json index a14c3bc6..cd34143b 100644 --- a/tracks/melody H4CKER/info.json +++ b/tracks/melody H4CKER/info.json @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "melody H4CKER", - "SongLength": "114.181224", + "SongLength": "104.228571", "SongAuthorName": "Moe Shop", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1a.json" "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1a.json" index ef9207e2..fbc18eea 100644 --- "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1a.json" +++ "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.014653692043503148, + "time": 0.014653692043503147, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 121, - "time": 0.018317115054378937, + "time": 0.018317115054378934, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 170, - "time": 0.02564396107613051, + "time": 0.025643961076130508, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 170, - "time": 0.02564396107613051, + "time": 0.025643961076130508, "position": { "x": 4, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 218, + "noteOrder": 219, "time": 0.03297080709788208, "position": { "x": 5, @@ -134,7 +134,7 @@ }, { "noteOrder": 243, - "time": 0.036634230108757875, + "time": 0.03663423010875787, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 243, - "time": 0.036634230108757875, + "time": 0.03663423010875787, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 267, - "time": 0.04029765311963365, + "time": 0.04029765311963366, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 267, - "time": 0.04029765311963365, + "time": 0.04029765311963366, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 340, - "time": 0.05128792215226102, + "time": 0.051287922152261016, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 340, - "time": 0.05128792215226102, + "time": 0.051287922152261016, "position": { "x": 7, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 388, - "time": 0.058614768174012594, + "noteOrder": 389, + "time": 0.05861476817401259, "position": { "x": 3, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 413, - "time": 0.06227819118488838, + "time": 0.062278191184888386, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 486, - "time": 0.07326846021751575, + "time": 0.07326846021751574, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 510, - "time": 0.07693188322839153, + "time": 0.07693188322839152, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 534, - "time": 0.0805953062392673, + "time": 0.08059530623926732, "position": { "x": 4, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 534, - "time": 0.0805953062392673, + "time": 0.08059530623926732, "position": { "x": 6, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.08425872925014309, + "noteOrder": 559, + "time": 0.0842587292501431, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.08425872925014309, + "noteOrder": 559, + "time": 0.0842587292501431, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 607, - "time": 0.09158557527189468, + "time": 0.09158557527189466, "position": { "x": 5, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.09891242129364625, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.09891242129364625, "position": { "x": 4, @@ -594,7 +594,7 @@ }, { "noteOrder": 704, - "time": 0.10623926731539783, + "time": 0.10623926731539782, "position": { "x": 5, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.10990269032627362, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.10990269032627362, "position": { "x": 7, @@ -654,7 +654,7 @@ }, { "noteOrder": 753, - "time": 0.11356611333714939, + "time": 0.1135661133371494, "position": { "x": 6, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 753, - "time": 0.11356611333714939, + "time": 0.1135661133371494, "position": { "x": 4, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 777, - "time": 0.11722953634802519, + "time": 0.11722953634802517, "position": { "x": 7, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 886, - "time": 0.13371493989696623, + "time": 0.1337149398969662, "position": { "x": 5, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 898, - "time": 0.13554665140240413, + "time": 0.1355466514024041, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1432, + "noteOrder": 1433, "time": 0.21614195764167143, "position": { "x": 5, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1530, "time": 0.23079564968517458, "position": { "x": 5, @@ -874,7 +874,7 @@ }, { "noteOrder": 1651, - "time": 0.24911276473955352, + "time": 0.24911276473955354, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1675, - "time": 0.25277618775042926, + "noteOrder": 1676, + "time": 0.2527761877504293, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1675, - "time": 0.25277618775042926, + "noteOrder": 1676, + "time": 0.2527761877504293, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1869, + "noteOrder": 1870, "time": 0.2820835718374356, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1893, - "time": 0.2857469948483114, + "noteOrder": 1894, + "time": 0.28574699484831134, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 1966, + "noteOrder": 1967, "time": 0.29673726388093874, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2016, "time": 0.30406410990269034, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2039, - "time": 0.30772753291356614, + "noteOrder": 2040, + "time": 0.3077275329135661, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2064, "time": 0.3113909559244419, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 2113, "time": 0.3187178019461935, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 2113, "time": 0.3187178019461935, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.34436176302232396, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2306, + "noteOrder": 2307, "time": 0.34802518603319976, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.35535203205495136, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.36267887807670296, "position": { "x": 4, @@ -1254,7 +1254,7 @@ }, { "noteOrder": 2428, - "time": 0.3663423010875787, + "time": 0.36634230108757865, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.3700057240984545, + "noteOrder": 2453, + "time": 0.37000572409845445, "position": { "x": 3, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.37366914710933025, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.37366914710933025, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.37733257012020605, "position": { "x": 7, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2500, + "noteOrder": 2501, "time": 0.37733257012020605, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2538, "time": 0.3828277046365197, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.3846594161419576, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.38649112764739557, + "noteOrder": 2562, + "time": 0.3864911276473955, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.3919862621637092, "position": { "x": 6, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2646, + "noteOrder": 2647, "time": 0.3993131081854608, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2670, + "noteOrder": 2671, "time": 0.4029765311963366, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2719, - "time": 0.4103033772180882, + "noteOrder": 2720, + "time": 0.41030337721808813, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2731, + "noteOrder": 2732, "time": 0.41213508872352606, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2743, + "noteOrder": 2744, "time": 0.4139668002289639, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2755, + "noteOrder": 2756, "time": 0.4157985117344018, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.4212936462507155, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.43228391528334287, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.43594733829421867, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.43594733829421867, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2913, + "noteOrder": 2914, "time": 0.43961076130509447, "position": { "x": 3, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 2926, "time": 0.44144247281053234, "position": { "x": 7, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2937, + "noteOrder": 2938, "time": 0.4432741843159702, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2949, + "noteOrder": 2950, "time": 0.44510589582140814, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2986, + "noteOrder": 2987, "time": 0.4506010303377218, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.4579278763594734, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3059, + "noteOrder": 3060, "time": 0.46159129937034915, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3059, + "noteOrder": 3060, "time": 0.46159129937034915, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.46525472238122495, "position": { "x": 3, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.46525472238122495, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3107, - "time": 0.46891814539210075, + "noteOrder": 3108, + "time": 0.4689181453921007, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3119, - "time": 0.4707498568975387, + "noteOrder": 3120, + "time": 0.4707498568975386, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3131, - "time": 0.47258156840297655, + "noteOrder": 3133, + "time": 0.4725815684029765, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3144, - "time": 0.4744132799084144, + "noteOrder": 3145, + "time": 0.47441327990841436, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.4799084144247281, + "noteOrder": 3181, + "time": 0.47990841442472815, "position": { "x": 6, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.4908986834573555, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3277, + "noteOrder": 3278, "time": 0.4945621064682313, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3277, + "noteOrder": 3278, "time": 0.4945621064682313, "position": { "x": 4, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3374, - "time": 0.5092157985117344, + "noteOrder": 3375, + "time": 0.5092157985117345, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.5238694905552376, + "noteOrder": 3473, + "time": 0.5238694905552375, "position": { "x": 5, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3763, + "noteOrder": 3764, "time": 0.5678305666857469, "position": { "x": 5, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3860, + "noteOrder": 3861, "time": 0.5824842587292501, "position": { "x": 5, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3981, + "noteOrder": 3983, "time": 0.6008013737836291, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.6044647967945048, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.6044647967945048, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.6337721808815112, + "noteOrder": 4201, + "time": 0.6337721808815111, "position": { "x": 4, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4225, "time": 0.637435603892387, "position": { "x": 6, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4250, "time": 0.6410990269032627, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 4298, "time": 0.6484258729250143, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4345, + "noteOrder": 4347, "time": 0.6557527189467659, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4371, "time": 0.6594161419576416, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4395, "time": 0.6630795649685175, "position": { "x": 3, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.6667429879793932, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.6667429879793932, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4442, + "noteOrder": 4444, "time": 0.670406410990269, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4442, + "noteOrder": 4444, "time": 0.670406410990269, "position": { "x": 3, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4588, - "time": 0.6923869490555237, + "noteOrder": 4590, + "time": 0.6923869490555238, "position": { "x": 6, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 4614, "time": 0.6960503720663995, "position": { "x": 4, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4637, - "time": 0.6997137950772753, + "noteOrder": 4638, + "time": 0.6997137950772754, "position": { "x": 3, "y": 0 @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.7070406410990269, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4734, + "noteOrder": 4735, "time": 0.7143674871207785, "position": { "x": 6, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4758, - "time": 0.7180309101316542, + "noteOrder": 4760, + "time": 0.7180309101316543, "position": { "x": 3, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4782, - "time": 0.72169433314253, + "noteOrder": 4784, + "time": 0.7216943331425301, "position": { "x": 7, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7253577561534059, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7253577561534059, "position": { "x": 6, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.7290211791642817, + "noteOrder": 4832, + "time": 0.7290211791642816, "position": { "x": 7, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.7290211791642817, + "noteOrder": 4832, + "time": 0.7290211791642816, "position": { "x": 3, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4928, + "noteOrder": 4930, "time": 0.7436748712077847, "position": { "x": 7, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.7510017172295363, + "noteOrder": 4978, + "time": 0.7510017172295362, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5002, "time": 0.7546651402404121, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.758328563251288, + "noteOrder": 5027, + "time": 0.7583285632512878, "position": { "x": 3, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5073, + "noteOrder": 5075, "time": 0.7656554092730394, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.7729822552947911, + "noteOrder": 5124, + "time": 0.772982255294791, "position": { "x": 7, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.7766456783056669, + "noteOrder": 5148, + "time": 0.7766456783056668, "position": { "x": 6, "y": 0 @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.7766456783056669, + "noteOrder": 5148, + "time": 0.7766456783056668, "position": { "x": 4, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5172, "time": 0.7803091013165426, "position": { "x": 7, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5195, + "noteOrder": 5197, "time": 0.7839725243274184, "position": { "x": 3, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5219, - "time": 0.7876359473382942, + "noteOrder": 5221, + "time": 0.7876359473382941, "position": { "x": 6, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5219, - "time": 0.7876359473382942, + "noteOrder": 5221, + "time": 0.7876359473382941, "position": { "x": 4, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5316, - "time": 0.8022896393817974, + "noteOrder": 5318, + "time": 0.8022896393817973, "position": { "x": 3, "y": 0 @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5365, + "noteOrder": 5367, "time": 0.8096164854035489, "position": { "x": 7, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5389, + "noteOrder": 5391, "time": 0.8132799084144247, "position": { "x": 3, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.8169433314253005, "position": { "x": 7, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5462, + "noteOrder": 5464, "time": 0.8242701774470521, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5510, + "noteOrder": 5512, "time": 0.8315970234688036, "position": { "x": 3, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.8352604464796795, "position": { "x": 6, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.8352604464796795, "position": { "x": 4, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 5561, "time": 0.8389238694905552, "position": { "x": 3, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5583, + "noteOrder": 5585, "time": 0.842587292501431, "position": { "x": 7, @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5608, + "noteOrder": 5610, "time": 0.8462507155123068, "position": { "x": 6, @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5608, + "noteOrder": 5610, "time": 0.8462507155123068, "position": { "x": 4, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5705, - "time": 0.8609044075558099, + "noteOrder": 5707, + "time": 0.86090440755581, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5753, - "time": 0.8682312535775616, + "noteOrder": 5755, + "time": 0.8682312535775615, "position": { "x": 5, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5777, + "noteOrder": 5779, "time": 0.8718946765884373, "position": { "x": 8, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5802, + "noteOrder": 5804, "time": 0.8755580995993131, "position": { "x": 3, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5850, + "noteOrder": 5852, "time": 0.8828849456210647, "position": { "x": 5, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5875, + "noteOrder": 5877, "time": 0.8865483686319404, "position": { "x": 2, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5899, + "noteOrder": 5901, "time": 0.8902117916428163, "position": { "x": 7, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6093, + "noteOrder": 6095, "time": 0.9195191757298226, "position": { "x": 3, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6142, + "noteOrder": 6144, "time": 0.9268460217515742, "position": { "x": 5, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6166, + "noteOrder": 6168, "time": 0.9305094447624499, "position": { "x": 2, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6190, - "time": 0.9341728677733256, + "noteOrder": 6192, + "time": 0.9341728677733258, "position": { "x": 7, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6239, - "time": 0.9414997137950774, + "noteOrder": 6241, + "time": 0.9414997137950772, "position": { "x": 5, "y": 0 @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6263, - "time": 0.9451631368059531, + "noteOrder": 6265, + "time": 0.945163136805953, "position": { "x": 8, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6287, - "time": 0.9488265598168288, + "noteOrder": 6289, + "time": 0.9488265598168287, "position": { "x": 3, "y": 0 @@ -3396,10 +3396,10 @@ "lineNodes": [ { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.029307384087006297, + "time": 0.029307384087006293, "position": { "x": 5, "y": 0 @@ -3419,9 +3419,9 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 218, + "noteOrder": 219, "time": 0.03297080709788208, "position": { "x": 5, @@ -3442,7 +3442,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, "time": 0.043961076130509445, @@ -3465,7 +3465,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 316, "time": 0.04762449914138523, @@ -3488,7 +3488,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 437, "time": 0.06594161419576416, @@ -3509,9 +3509,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 449, + "time": 0.06777332570120205, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 449, + "time": 0.06777332570120205, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 461, "time": 0.06960503720663995, @@ -3532,9 +3578,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 474, + "time": 0.07143674871207784, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 474, + "time": 0.07143674871207784, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.08792215226101889, @@ -3557,10 +3649,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 607, - "time": 0.09158557527189468, + "time": 0.09158557527189466, "position": { "x": 5, "y": 0 @@ -3580,10 +3672,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.10257584430452205, + "time": 0.10257584430452203, "position": { "x": 5, "y": 0 @@ -3603,10 +3695,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 704, - "time": 0.10623926731539783, + "time": 0.10623926731539782, "position": { "x": 5, "y": 0 @@ -3626,10 +3718,33 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 826, + "time": 0.12455638236977677, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 825, - "time": 0.12455638236977676, + "noteOrder": 838, + "time": 0.12638809387521466, "position": { "x": 7, "y": 0 @@ -3647,9 +3762,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 838, + "time": 0.12638809387521466, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 850, "time": 0.12821980538065256, @@ -3670,11 +3808,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 862, + "time": 0.13005151688609043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 862, + "time": 0.13005151688609043, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 922, + "noteOrder": 923, "time": 0.1392100744132799, "position": { "x": 4, @@ -3695,10 +3879,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 947, - "time": 0.1428734974241557, + "time": 0.14287349742415567, "position": { "x": 4, "y": 0 @@ -3718,9 +3902,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 922, + "noteOrder": 923, "time": 0.1392100744132799, "position": { "x": 6, @@ -3741,10 +3925,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 947, - "time": 0.1428734974241557, + "time": 0.14287349742415567, "position": { "x": 6, "y": 0 @@ -3764,10 +3948,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 971, - "time": 0.1465369204350315, + "time": 0.14653692043503147, "position": { "x": 5, "y": 0 @@ -3787,9 +3971,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 995, + "noteOrder": 996, "time": 0.15020034344590727, "position": { "x": 5, @@ -3810,9 +3994,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 995, + "noteOrder": 996, "time": 0.15020034344590727, "position": { "x": 5, @@ -3833,10 +4017,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1020, - "time": 0.15386376645678307, + "time": 0.15386376645678304, "position": { "x": 5, "y": 0 @@ -3856,10 +4040,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1020, - "time": 0.15386376645678307, + "time": 0.15386376645678304, "position": { "x": 5, "y": 0 @@ -3879,7 +4063,7 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, "time": 0.15752718946765884, @@ -3902,10 +4086,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1068, - "time": 0.1611906124785346, + "time": 0.16119061247853464, "position": { "x": 5, "y": 0 @@ -3925,9 +4109,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1092, + "noteOrder": 1093, "time": 0.1648540354894104, "position": { "x": 5, @@ -3948,9 +4132,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1092, + "noteOrder": 1093, "time": 0.1648540354894104, "position": { "x": 5, @@ -3971,10 +4155,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1117, - "time": 0.16851745850028618, + "time": 0.1685174585002862, "position": { "x": 5, "y": 0 @@ -3994,10 +4178,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1117, - "time": 0.16851745850028618, + "time": 0.1685174585002862, "position": { "x": 5, "y": 0 @@ -4017,7 +4201,7 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1141, "time": 0.17218088151116198, @@ -4040,9 +4224,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1165, + "noteOrder": 1166, "time": 0.17584430452203778, "position": { "x": 3, @@ -4063,10 +4247,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1214, - "time": 0.18317115054378935, + "time": 0.18317115054378932, "position": { "x": 3, "y": 0 @@ -4086,10 +4270,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1214, - "time": 0.18317115054378935, + "time": 0.18317115054378932, "position": { "x": 7, "y": 0 @@ -4108,13 +4292,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1238, - "time": 0.18683457355466512, + "noteOrder": 1226, + "time": 0.18500286204922722, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4126,18 +4310,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1262, - "time": 0.19049799656554092, + "noteOrder": 1226, + "time": 0.18500286204922722, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4154,11 +4338,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1287, - "time": 0.19416141957641672, + "noteOrder": 1238, + "time": 0.18683457355466512, "position": { "x": 3, "y": 0 @@ -4177,11 +4361,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 3, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1335, - "time": 0.2014882655981683, + "noteOrder": 1251, + "time": 0.18866628506010302, "position": { "x": 3, "y": 0 @@ -4200,13 +4384,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1311, - "time": 0.1978248425872925, + "noteOrder": 1251, + "time": 0.18866628506010302, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4218,16 +4402,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 1335, - "time": 0.2014882655981683, + "noteOrder": 1263, + "time": 0.19049799656554092, "position": { "x": 7, "y": 0 @@ -4246,13 +4430,3118 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1359, - "time": 0.2051516886090441, + "noteOrder": 1275, + "time": 0.1923297080709788, "position": { - "x": 5, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1275, + "time": 0.1923297080709788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1287, + "time": 0.1941614195764167, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1299, + "time": 0.1959931310818546, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1299, + "time": 0.1959931310818546, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1311, + "time": 0.1978248425872925, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1311, + "time": 0.1978248425872925, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1336, + "time": 0.2014882655981683, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1311, + "time": 0.1978248425872925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1336, + "time": 0.2014882655981683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1360, + "time": 0.20515168860904406, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1384, + "time": 0.20881511161991986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1384, + "time": 0.20881511161991986, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1408, + "time": 0.21247853463079563, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1408, + "time": 0.21247853463079563, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1433, + "time": 0.21614195764167143, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1457, + "time": 0.21980538065254723, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1481, + "time": 0.223468803663423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1481, + "time": 0.223468803663423, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1506, + "time": 0.2271322266742988, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1506, + "time": 0.2271322266742988, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1530, + "time": 0.23079564968517458, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1554, + "time": 0.23445907269605035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1603, + "time": 0.24178591871780195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1603, + "time": 0.24178591871780195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1615, + "time": 0.24361763022323984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1615, + "time": 0.24361763022323984, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1627, + "time": 0.24544934172867774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1639, + "time": 0.24728105323411564, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1639, + "time": 0.24728105323411564, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1700, + "time": 0.2564396107613051, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1724, + "time": 0.26010303377218086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1700, + "time": 0.2564396107613051, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1724, + "time": 0.26010303377218086, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1748, + "time": 0.26376645678305666, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1761, + "time": 0.26559816828849453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1761, + "time": 0.26559816828849453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1773, + "time": 0.2674298797939324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1773, + "time": 0.2674298797939324, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1773, + "time": 0.2674298797939324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1785, + "time": 0.26926159129937033, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1785, + "time": 0.26926159129937033, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1797, + "time": 0.2710933028048082, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1797, + "time": 0.2710933028048082, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1797, + "time": 0.2710933028048082, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1809, + "time": 0.27292501431024613, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1809, + "time": 0.27292501431024613, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1821, + "time": 0.274756725815684, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1821, + "time": 0.274756725815684, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1821, + "time": 0.274756725815684, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1833, + "time": 0.27658843732112187, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1833, + "time": 0.27658843732112187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1846, + "time": 0.2784201488265598, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1846, + "time": 0.2784201488265598, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1846, + "time": 0.2784201488265598, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1870, + "time": 0.2820835718374356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1943, + "time": 0.29307384087006294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1943, + "time": 0.29307384087006294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1967, + "time": 0.29673726388093874, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1991, + "time": 0.30040068689181454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2016, + "time": 0.30406410990269034, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3223812249570693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2149, + "time": 0.32421293646250715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2149, + "time": 0.32421293646250715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2161, + "time": 0.326044647967945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2161, + "time": 0.326044647967945, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2161, + "time": 0.326044647967945, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2173, + "time": 0.32787635947338295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2173, + "time": 0.32787635947338295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3297080709788208, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3297080709788208, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2186, + "time": 0.3297080709788208, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2198, + "time": 0.33153978248425875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2198, + "time": 0.33153978248425875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3333714939896966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3333714939896966, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.3333714939896966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3352032054951345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2222, + "time": 0.3352032054951345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3370349170005724, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3370349170005724, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3370349170005724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3406983400114482, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2331, + "time": 0.35168860904407556, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2331, + "time": 0.35168860904407556, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2356, + "time": 0.35535203205495136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2380, + "time": 0.35901545506582716, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2404, + "time": 0.36267887807670296, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2574, + "time": 0.3883228391528334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2598, + "time": 0.3919862621637092, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2623, + "time": 0.395649685174585, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2647, + "time": 0.3993131081854608, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2768, + "time": 0.4176302232398397, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2793, + "time": 0.4212936462507155, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2817, + "time": 0.42495706926159127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2829, + "time": 0.4267887807670292, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2829, + "time": 0.4267887807670292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2841, + "time": 0.42862049227246707, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2853, + "time": 0.430452203777905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2853, + "time": 0.430452203777905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2865, + "time": 0.43228391528334287, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2865, + "time": 0.43228391528334287, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2963, + "time": 0.446937607326846, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2987, + "time": 0.4506010303377218, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3011, + "time": 0.4542644533485976, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3035, + "time": 0.4579278763594734, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3157, + "time": 0.4762449914138523, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3181, + "time": 0.47990841442472815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3205, + "time": 0.4835718374356039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3218, + "time": 0.4854035489410418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3218, + "time": 0.4854035489410418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3230, + "time": 0.4872352604464797, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3242, + "time": 0.4890669719519176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3242, + "time": 0.4890669719519176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3254, + "time": 0.4908986834573555, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3254, + "time": 0.4908986834573555, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3303, + "time": 0.4982255294791071, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3327, + "time": 0.5018889524899829, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3327, + "time": 0.5018889524899829, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5055523755008586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3351, + "time": 0.5055523755008586, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3375, + "time": 0.5092157985117345, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3400, + "time": 0.5128792215226102, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3424, + "time": 0.516542644533486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3424, + "time": 0.516542644533486, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3448, + "time": 0.5202060675443617, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3448, + "time": 0.5202060675443617, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3473, + "time": 0.5238694905552375, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3497, + "time": 0.5275329135661133, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3545, + "time": 0.5348597595878648, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3545, + "time": 0.5348597595878648, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5366914710933027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3558, + "time": 0.5366914710933027, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3570, + "time": 0.5385231825987407, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5403548941041786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3582, + "time": 0.5403548941041786, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4269,13 +7558,36 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3594, + "time": 0.5421866056096164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1384, - "time": 0.20881511161991986, + "noteOrder": 3606, + "time": 0.5440183171150543, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4287,18 +7599,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1384, - "time": 0.20881511161991986, + "noteOrder": 3606, + "time": 0.5440183171150543, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4315,13 +7627,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 1408, - "time": 0.21247853463079566, + "noteOrder": 3618, + "time": 0.5458500286204923, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4333,18 +7645,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1408, - "time": 0.21247853463079566, + "noteOrder": 3630, + "time": 0.5476817401259301, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4361,13 +7673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1432, - "time": 0.21614195764167143, + "noteOrder": 3630, + "time": 0.5476817401259301, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4384,13 +7696,82 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1457, - "time": 0.21980538065254723, + "noteOrder": 3643, + "time": 0.549513451631368, "position": { - "x": 5, + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3643, + "time": 0.549513451631368, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3667, + "time": 0.5531768746422437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3643, + "time": 0.549513451631368, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4407,11 +7788,34 @@ "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3667, + "time": 0.5531768746422437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 1481, - "time": 0.223468803663423, + "noteOrder": 3691, + "time": 0.5568402976531196, "position": { "x": 5, "y": 0 @@ -4425,16 +7829,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1481, - "time": 0.223468803663423, + "noteOrder": 3715, + "time": 0.5605037206639953, "position": { "x": 5, "y": 0 @@ -4453,11 +7857,11 @@ "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 1505, - "time": 0.22713222667429878, + "noteOrder": 3715, + "time": 0.5605037206639953, "position": { "x": 5, "y": 0 @@ -4471,16 +7875,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1505, - "time": 0.22713222667429878, + "noteOrder": 3740, + "time": 0.5641671436748712, "position": { "x": 5, "y": 0 @@ -4499,11 +7903,11 @@ "isPlayAudio": false }, { - "lineGroupId": 72, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 1529, - "time": 0.23079564968517458, + "noteOrder": 3740, + "time": 0.5641671436748712, "position": { "x": 5, "y": 0 @@ -4517,18 +7921,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1554, - "time": 0.23445907269605037, + "noteOrder": 3764, + "time": 0.5678305666857469, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4545,13 +7949,13 @@ "isPlayAudio": false }, { - "lineGroupId": 74, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 1602, - "time": 0.24178591871780195, + "noteOrder": 3788, + "time": 0.5714939896966227, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4563,18 +7967,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1602, - "time": 0.24178591871780195, + "noteOrder": 3813, + "time": 0.5751574127074985, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4591,13 +7995,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1626, - "time": 0.24544934172867774, + "noteOrder": 3813, + "time": 0.5751574127074985, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4614,13 +8018,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.2564396107613051, + "noteOrder": 3837, + "time": 0.5788208357183743, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4632,18 +8036,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 1724, - "time": 0.26010303377218086, + "noteOrder": 3837, + "time": 0.5788208357183743, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4660,11 +8064,34 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1699, - "time": 0.2564396107613051, + "noteOrder": 3861, + "time": 0.5824842587292501, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3885, + "time": 0.5861476817401259, "position": { "x": 3, "y": 0 @@ -4683,11 +8110,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1724, - "time": 0.26010303377218086, + "noteOrder": 3934, + "time": 0.5934745277618775, "position": { "x": 3, "y": 0 @@ -4706,11 +8133,11 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1748, - "time": 0.26376645678305666, + "noteOrder": 3934, + "time": 0.5934745277618775, "position": { "x": 7, "y": 0 @@ -4729,11 +8156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1772, - "time": 0.26742987979393246, + "noteOrder": 3946, + "time": 0.5953062392673154, "position": { "x": 7, "y": 0 @@ -4747,18 +8174,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1796, - "time": 0.27109330280480826, + "noteOrder": 3946, + "time": 0.5953062392673154, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4775,13 +8202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1821, - "time": 0.274756725815684, + "noteOrder": 3958, + "time": 0.5971379507727532, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4798,13 +8225,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1845, - "time": 0.2784201488265598, + "noteOrder": 3970, + "time": 0.5989696622781912, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4816,18 +8243,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1869, - "time": 0.2820835718374356, + "noteOrder": 3970, + "time": 0.5989696622781912, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4839,18 +8266,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 2, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1942, - "time": 0.293073840870063, + "noteOrder": 4031, + "time": 0.6081282198053807, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4867,13 +8294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1942, - "time": 0.293073840870063, + "noteOrder": 4055, + "time": 0.6117916428162564, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4885,16 +8312,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 1966, - "time": 0.29673726388093874, + "noteOrder": 4031, + "time": 0.6081282198053807, "position": { "x": 3, "y": 0 @@ -4913,13 +8340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1991, - "time": 0.30040068689181454, + "noteOrder": 4055, + "time": 0.6117916428162564, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4931,18 +8358,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, + "lineGroupId": 197, "indexInLine": 1, "isSliding": false, - "noteOrder": 2015, - "time": 0.30406410990269034, + "noteOrder": 4080, + "time": 0.6154550658271322, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4954,16 +8381,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2136, - "time": 0.3223812249570692, + "noteOrder": 4092, + "time": 0.6172867773325701, "position": { "x": 3, "y": 0 @@ -4982,13 +8409,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2160, - "time": 0.326044647967945, + "noteOrder": 4092, + "time": 0.6172867773325701, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5000,18 +8427,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2185, - "time": 0.3297080709788208, + "noteOrder": 4104, + "time": 0.619118488838008, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5028,13 +8455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2209, - "time": 0.3333714939896966, + "noteOrder": 4104, + "time": 0.619118488838008, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5046,16 +8473,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2233, - "time": 0.33703491700057236, + "noteOrder": 4104, + "time": 0.619118488838008, "position": { "x": 3, "y": 0 @@ -5069,16 +8496,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2258, - "time": 0.3406983400114482, + "noteOrder": 4116, + "time": 0.6209502003434458, "position": { "x": 3, "y": 0 @@ -5092,18 +8519,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 2, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2330, - "time": 0.35168860904407556, + "noteOrder": 4116, + "time": 0.6209502003434458, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5115,18 +8542,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2330, - "time": 0.35168860904407556, + "noteOrder": 4128, + "time": 0.6227819118488838, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5143,13 +8570,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2355, - "time": 0.35535203205495136, + "noteOrder": 4128, + "time": 0.6227819118488838, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5166,11 +8593,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2379, - "time": 0.3590154550658271, + "noteOrder": 4128, + "time": 0.6227819118488838, "position": { "x": 3, "y": 0 @@ -5189,11 +8616,11 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2403, - "time": 0.36267887807670296, + "noteOrder": 4140, + "time": 0.6246136233543217, "position": { "x": 3, "y": 0 @@ -5212,13 +8639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2573, - "time": 0.38832283915283344, + "noteOrder": 4140, + "time": 0.6246136233543217, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5230,18 +8657,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2597, - "time": 0.3919862621637092, + "noteOrder": 4152, + "time": 0.6264453348597596, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5253,18 +8680,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2622, - "time": 0.395649685174585, + "noteOrder": 4152, + "time": 0.6264453348597596, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5281,11 +8708,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 2646, - "time": 0.3993131081854608, + "noteOrder": 4152, + "time": 0.6264453348597596, "position": { "x": 3, "y": 0 @@ -5299,16 +8726,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2767, - "time": 0.4176302232398397, + "noteOrder": 4165, + "time": 0.6282770463651974, "position": { "x": 3, "y": 0 @@ -5322,18 +8749,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2792, - "time": 0.4212936462507155, + "noteOrder": 4165, + "time": 0.6282770463651974, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5345,18 +8772,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2816, - "time": 0.4249570692615913, + "noteOrder": 4177, + "time": 0.6301087578706354, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5373,13 +8800,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2840, - "time": 0.42862049227246707, + "noteOrder": 4177, + "time": 0.6301087578706354, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5391,16 +8818,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2962, - "time": 0.446937607326846, + "noteOrder": 4177, + "time": 0.6301087578706354, "position": { "x": 3, "y": 0 @@ -5419,11 +8846,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2986, - "time": 0.4506010303377218, + "noteOrder": 4201, + "time": 0.6337721808815111, "position": { "x": 3, "y": 0 @@ -5442,13 +8869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3010, - "time": 0.45426445334859755, + "noteOrder": 4274, + "time": 0.6447624499141386, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5460,16 +8887,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 3034, - "time": 0.4579278763594734, + "noteOrder": 4274, + "time": 0.6447624499141386, "position": { "x": 7, "y": 0 @@ -5488,11 +8915,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3156, - "time": 0.4762449914138523, + "noteOrder": 4298, + "time": 0.6484258729250143, "position": { "x": 7, "y": 0 @@ -5511,13 +8938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 3180, - "time": 0.4799084144247281, + "noteOrder": 4322, + "time": 0.65208929593589, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5529,16 +8956,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3204, - "time": 0.4835718374356039, + "noteOrder": 4347, + "time": 0.6557527189467659, "position": { "x": 3, "y": 0 @@ -5557,11 +8984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3229, - "time": 0.48723526044647963, + "noteOrder": 4468, + "time": 0.6740698340011448, "position": { "x": 7, "y": 0 @@ -5580,13 +9007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3301, - "time": 0.49822552947910703, + "noteOrder": 4480, + "time": 0.6759015455065828, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5603,13 +9030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3326, - "time": 0.5018889524899828, + "noteOrder": 4480, + "time": 0.6759015455065828, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5626,13 +9053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3326, - "time": 0.5018889524899828, + "noteOrder": 4492, + "time": 0.6777332570120206, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5644,16 +9071,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3350, - "time": 0.5055523755008585, + "noteOrder": 4492, + "time": 0.6777332570120206, "position": { "x": 5, "y": 0 @@ -5667,18 +9094,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3350, - "time": 0.5055523755008585, + "noteOrder": 4492, + "time": 0.6777332570120206, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5690,18 +9117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3374, - "time": 0.5092157985117344, + "noteOrder": 4505, + "time": 0.6795649685174585, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5713,18 +9140,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3399, - "time": 0.5128792215226102, + "noteOrder": 4505, + "time": 0.6795649685174585, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5741,13 +9168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 216, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3423, - "time": 0.516542644533486, + "noteOrder": 4517, + "time": 0.6813966800228964, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5764,11 +9191,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3423, - "time": 0.516542644533486, + "noteOrder": 4517, + "time": 0.6813966800228964, "position": { "x": 5, "y": 0 @@ -5782,18 +9209,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 217, "indexInLine": 1, "isSliding": false, - "noteOrder": 3447, - "time": 0.5202060675443617, + "noteOrder": 4517, + "time": 0.6813966800228964, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5810,13 +9237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3447, - "time": 0.5202060675443617, + "noteOrder": 4529, + "time": 0.6832283915283343, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5828,18 +9255,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3471, - "time": 0.5238694905552376, + "noteOrder": 4529, + "time": 0.6832283915283343, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5851,18 +9278,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3496, - "time": 0.5275329135661133, + "noteOrder": 4541, + "time": 0.6850601030337722, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5874,18 +9301,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 217, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3544, - "time": 0.5348597595878649, + "noteOrder": 4541, + "time": 0.6850601030337722, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5897,16 +9324,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3544, - "time": 0.5348597595878649, + "noteOrder": 4541, + "time": 0.6850601030337722, "position": { "x": 7, "y": 0 @@ -5920,18 +9347,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3568, - "time": 0.5385231825987408, + "noteOrder": 4553, + "time": 0.6868918145392101, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5948,13 +9375,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3593, - "time": 0.5421866056096165, + "noteOrder": 4553, + "time": 0.6868918145392101, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5966,18 +9393,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3617, - "time": 0.5458500286204923, + "noteOrder": 4565, + "time": 0.6887235260446479, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5994,13 +9421,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 3, + "lineGroupId": 218, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3666, - "time": 0.5531768746422439, + "noteOrder": 4565, + "time": 0.6887235260446479, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6017,11 +9444,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3641, - "time": 0.549513451631368, + "noteOrder": 4565, + "time": 0.6887235260446479, "position": { "x": 7, "y": 0 @@ -6040,11 +9467,11 @@ "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3666, - "time": 0.5531768746422439, + "noteOrder": 4590, + "time": 0.6923869490555238, "position": { "x": 7, "y": 0 @@ -6063,13 +9490,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3690, - "time": 0.5568402976531196, + "noteOrder": 4662, + "time": 0.7033772180881511, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6081,18 +9508,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 3714, - "time": 0.5605037206639955, + "noteOrder": 4662, + "time": 0.7033772180881511, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6109,13 +9536,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, - "time": 0.5605037206639955, + "noteOrder": 4687, + "time": 0.7070406410990269, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6127,18 +9554,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 225, "indexInLine": 1, "isSliding": false, - "noteOrder": 3738, - "time": 0.5641671436748712, + "noteOrder": 4711, + "time": 0.7107040641099027, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6155,13 +9582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3738, - "time": 0.5641671436748712, + "noteOrder": 4735, + "time": 0.7143674871207785, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6173,18 +9600,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 233, "indexInLine": 1, "isSliding": false, - "noteOrder": 3763, - "time": 0.5678305666857469, + "noteOrder": 4857, + "time": 0.7326846021751573, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6196,18 +9623,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3787, - "time": 0.5714939896966228, + "noteOrder": 4869, + "time": 0.7345163136805952, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6224,13 +9651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3811, - "time": 0.5751574127074985, + "noteOrder": 4881, + "time": 0.7363480251860332, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6247,13 +9674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3811, - "time": 0.5751574127074985, + "noteOrder": 4881, + "time": 0.7363480251860332, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6270,13 +9697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3835, - "time": 0.5788208357183743, + "noteOrder": 4893, + "time": 0.738179736691471, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6293,13 +9720,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3835, - "time": 0.5788208357183743, + "noteOrder": 4905, + "time": 0.7400114481969089, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6311,18 +9738,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 235, "indexInLine": 1, "isSliding": false, - "noteOrder": 3860, - "time": 0.5824842587292501, + "noteOrder": 4905, + "time": 0.7400114481969089, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6339,13 +9766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3884, - "time": 0.586147681740126, + "noteOrder": 4917, + "time": 0.7418431597023468, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6357,18 +9784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3933, - "time": 0.5934745277618775, + "noteOrder": 4930, + "time": 0.7436748712077847, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6380,16 +9807,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3933, - "time": 0.5934745277618775, + "noteOrder": 4954, + "time": 0.7473382942186605, "position": { "x": 7, "y": 0 @@ -6403,18 +9830,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3957, - "time": 0.5971379507727532, + "noteOrder": 4966, + "time": 0.7491700057240984, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6431,13 +9858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4030, - "time": 0.6081282198053807, + "noteOrder": 4978, + "time": 0.7510017172295362, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6449,16 +9876,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4054, - "time": 0.6117916428162564, + "noteOrder": 5051, + "time": 0.7619919862621637, "position": { "x": 7, "y": 0 @@ -6477,13 +9904,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4030, - "time": 0.6081282198053807, + "noteOrder": 5075, + "time": 0.7656554092730394, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6495,39 +9922,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 4054, - "time": 0.6117916428162564, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 197, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4078, - "time": 0.6154550658271323, + "noteOrder": 5100, + "time": 0.7693188322839152, "position": { "x": 3, "y": 0 @@ -6546,13 +9950,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4102, - "time": 0.619118488838008, + "noteOrder": 5124, + "time": 0.772982255294791, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6564,18 +9968,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4127, - "time": 0.6227819118488838, + "noteOrder": 5245, + "time": 0.79129937034917, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6592,13 +9996,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4151, - "time": 0.6264453348597595, + "noteOrder": 5257, + "time": 0.7931310818546079, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6610,18 +10014,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4175, - "time": 0.6301087578706354, + "noteOrder": 5270, + "time": 0.7949627933600457, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6638,11 +10042,11 @@ "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 254, "indexInLine": 1, "isSliding": false, - "noteOrder": 4200, - "time": 0.6337721808815112, + "noteOrder": 5270, + "time": 0.7949627933600457, "position": { "x": 3, "y": 0 @@ -6656,18 +10060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 254, "indexInLine": 2, "isSliding": false, - "noteOrder": 4272, - "time": 0.6447624499141384, + "noteOrder": 5282, + "time": 0.7967945048654836, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6679,18 +10083,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4272, - "time": 0.6447624499141384, + "noteOrder": 5294, + "time": 0.7986262163709216, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6707,11 +10111,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 255, "indexInLine": 1, "isSliding": false, - "noteOrder": 4297, - "time": 0.6484258729250143, + "noteOrder": 5294, + "time": 0.7986262163709216, "position": { "x": 7, "y": 0 @@ -6725,18 +10129,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4321, - "time": 0.65208929593589, + "noteOrder": 5306, + "time": 0.8004579278763594, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6753,13 +10157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 255, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4345, - "time": 0.6557527189467659, + "noteOrder": 5318, + "time": 0.8022896393817973, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6776,13 +10180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4467, - "time": 0.6740698340011447, + "noteOrder": 5342, + "time": 0.8059530623926732, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6799,13 +10203,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4491, - "time": 0.6777332570120207, + "noteOrder": 5355, + "time": 0.807784773898111, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6817,18 +10221,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4515, - "time": 0.6813966800228964, + "noteOrder": 5367, + "time": 0.8096164854035489, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6845,13 +10249,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4539, - "time": 0.6850601030337722, + "noteOrder": 5440, + "time": 0.8206067544361763, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6868,13 +10272,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4564, - "time": 0.6887235260446479, + "noteOrder": 5464, + "time": 0.8242701774470521, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6886,16 +10290,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 263, "indexInLine": 1, "isSliding": false, - "noteOrder": 4588, - "time": 0.6923869490555237, + "noteOrder": 5488, + "time": 0.8279336004579279, "position": { "x": 7, "y": 0 @@ -6914,13 +10318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, + "lineGroupId": 263, "indexInLine": 2, "isSliding": false, - "noteOrder": 4661, - "time": 0.7033772180881511, + "noteOrder": 5512, + "time": 0.8315970234688036, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6937,11 +10341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4661, - "time": 0.7033772180881511, + "noteOrder": 5634, + "time": 0.8499141385231825, "position": { "x": 3, "y": 0 @@ -6960,11 +10364,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 1, + "lineGroupId": 273, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4685, - "time": 0.7070406410990269, + "noteOrder": 5646, + "time": 0.8517458500286205, "position": { "x": 3, "y": 0 @@ -6983,13 +10387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4709, - "time": 0.7107040641099027, + "noteOrder": 5646, + "time": 0.8517458500286205, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7001,18 +10405,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 1, + "lineGroupId": 273, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4734, - "time": 0.7143674871207785, + "noteOrder": 5658, + "time": 0.8535775615340584, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7024,18 +10428,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 273, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4855, - "time": 0.7326846021751574, + "noteOrder": 5658, + "time": 0.8535775615340584, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7047,18 +10451,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 274, "indexInLine": 1, "isSliding": false, - "noteOrder": 4867, - "time": 0.7345163136805953, + "noteOrder": 5658, + "time": 0.8535775615340584, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7075,13 +10479,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, + "lineGroupId": 274, "indexInLine": 2, "isSliding": false, - "noteOrder": 4879, - "time": 0.7363480251860332, + "noteOrder": 5670, + "time": 0.8554092730394962, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7098,13 +10502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4879, - "time": 0.7363480251860332, + "noteOrder": 5670, + "time": 0.8554092730394962, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7116,18 +10520,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 1, + "lineGroupId": 274, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4891, - "time": 0.7381797366914711, + "noteOrder": 5682, + "time": 0.8572409845449341, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7139,18 +10543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 2, + "lineGroupId": 274, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4904, - "time": 0.740011448196909, + "noteOrder": 5682, + "time": 0.8572409845449341, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7162,16 +10566,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4904, - "time": 0.740011448196909, + "noteOrder": 5682, + "time": 0.8572409845449341, "position": { "x": 3, "y": 0 @@ -7185,18 +10589,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 1, + "lineGroupId": 275, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4916, - "time": 0.7418431597023468, + "noteOrder": 5695, + "time": 0.8590726960503721, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7208,16 +10612,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 2, + "lineGroupId": 275, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4928, - "time": 0.7436748712077847, + "noteOrder": 5695, + "time": 0.8590726960503721, "position": { "x": 4, "y": 0 @@ -7231,18 +10635,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4952, - "time": 0.7473382942186605, + "noteOrder": 5707, + "time": 0.86090440755581, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7259,13 +10663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 1, + "lineGroupId": 275, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4964, - "time": 0.7491700057240985, + "noteOrder": 5707, + "time": 0.86090440755581, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7282,13 +10686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 2, + "lineGroupId": 277, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4976, - "time": 0.7510017172295363, + "noteOrder": 5731, + "time": 0.8645678305666857, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7300,16 +10704,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5049, - "time": 0.7619919862621637, + "noteOrder": 5755, + "time": 0.8682312535775615, "position": { "x": 7, "y": 0 @@ -7328,13 +10732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 1, + "lineGroupId": 277, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5073, - "time": 0.7656554092730394, + "noteOrder": 5828, + "time": 0.8792215226101889, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7351,11 +10755,11 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5098, - "time": 0.7693188322839152, + "noteOrder": 5828, + "time": 0.8792215226101889, "position": { "x": 3, "y": 0 @@ -7374,13 +10778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 1, + "lineGroupId": 281, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5122, - "time": 0.7729822552947911, + "noteOrder": 5852, + "time": 0.8828849456210647, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7397,13 +10801,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 281, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5243, - "time": 0.79129937034917, + "noteOrder": 5925, + "time": 0.893875214653692, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7420,13 +10824,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, + "lineGroupId": 285, "indexInLine": 1, "isSliding": false, - "noteOrder": 5256, - "time": 0.7931310818546078, + "noteOrder": 5925, + "time": 0.893875214653692, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7438,18 +10842,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, + "lineGroupId": 285, "indexInLine": 2, "isSliding": false, - "noteOrder": 5268, - "time": 0.7949627933600457, + "noteOrder": 5937, + "time": 0.89570692615913, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7461,18 +10865,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, + "lineGroupId": 285, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5268, - "time": 0.7949627933600457, + "noteOrder": 5937, + "time": 0.89570692615913, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7489,13 +10893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, + "lineGroupId": 286, "indexInLine": 1, "isSliding": false, - "noteOrder": 5280, - "time": 0.7967945048654838, + "noteOrder": 5949, + "time": 0.8975386376645679, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7507,18 +10911,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 254, + "lineGroupId": 286, "indexInLine": 2, "isSliding": false, - "noteOrder": 5292, - "time": 0.7986262163709216, + "noteOrder": 5962, + "time": 0.8993703491700057, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7530,18 +10934,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5292, - "time": 0.7986262163709216, + "noteOrder": 5962, + "time": 0.8993703491700057, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7558,13 +10962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 1, + "lineGroupId": 286, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5304, - "time": 0.8004579278763595, + "noteOrder": 5974, + "time": 0.9012020606754436, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7581,13 +10985,13 @@ "isPlayAudio": false }, { - "lineGroupId": 255, - "indexInLine": 2, + "lineGroupId": 286, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5316, - "time": 0.8022896393817974, + "noteOrder": 5974, + "time": 0.9012020606754436, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7604,11 +11008,11 @@ "isPlayAudio": false }, { - "lineGroupId": 257, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5341, - "time": 0.8059530623926732, + "noteOrder": 5998, + "time": 0.9048654836863194, "position": { "x": 3, "y": 0 @@ -7622,18 +11026,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 257, + "lineGroupId": 287, "indexInLine": 1, "isSliding": false, - "noteOrder": 5353, - "time": 0.807784773898111, + "noteOrder": 5974, + "time": 0.9012020606754436, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7650,13 +11054,13 @@ "isPlayAudio": false }, { - "lineGroupId": 257, + "lineGroupId": 287, "indexInLine": 2, "isSliding": false, - "noteOrder": 5365, - "time": 0.8096164854035489, + "noteOrder": 5998, + "time": 0.9048654836863194, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7673,13 +11077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5438, - "time": 0.8206067544361764, + "noteOrder": 6022, + "time": 0.9085289066971952, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7691,18 +11095,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 1, + "lineGroupId": 289, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5462, - "time": 0.8242701774470521, + "noteOrder": 6034, + "time": 0.9103606182026331, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7714,18 +11118,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5486, - "time": 0.8279336004579279, + "noteOrder": 6034, + "time": 0.9103606182026331, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7742,11 +11146,11 @@ "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 1, + "lineGroupId": 289, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5510, - "time": 0.8315970234688036, + "noteOrder": 6047, + "time": 0.912192329708071, "position": { "x": 6, "y": 0 @@ -7765,13 +11169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 273, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5632, - "time": 0.8499141385231826, + "noteOrder": 6047, + "time": 0.912192329708071, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7783,18 +11187,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5656, - "time": 0.8535775615340584, + "noteOrder": 6047, + "time": 0.912192329708071, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7806,18 +11210,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5680, - "time": 0.8572409845449341, + "noteOrder": 6059, + "time": 0.9140240412135089, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7834,13 +11238,13 @@ "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 290, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5729, - "time": 0.8645678305666857, + "noteOrder": 6059, + "time": 0.9140240412135089, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7852,18 +11256,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 1, + "lineGroupId": 290, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5753, - "time": 0.8682312535775616, + "noteOrder": 6071, + "time": 0.9158557527189468, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7875,18 +11279,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 2, + "lineGroupId": 290, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5826, - "time": 0.8792215226101889, + "noteOrder": 6071, + "time": 0.9158557527189468, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7898,18 +11302,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5826, - "time": 0.8792215226101889, + "noteOrder": 6071, + "time": 0.9158557527189468, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7921,18 +11325,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 1, + "lineGroupId": 291, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5850, - "time": 0.8828849456210647, + "noteOrder": 6083, + "time": 0.9176874642243846, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7944,16 +11348,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 281, - "indexInLine": 2, + "lineGroupId": 291, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5923, - "time": 0.893875214653692, + "noteOrder": 6083, + "time": 0.9176874642243846, "position": { "x": 6, "y": 0 @@ -7967,18 +11371,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 285, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5923, - "time": 0.893875214653692, + "noteOrder": 6095, + "time": 0.9195191757298226, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7995,13 +11399,13 @@ "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5947, - "time": 0.8975386376645679, + "noteOrder": 6095, + "time": 0.9195191757298226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -8013,16 +11417,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 3, + "lineGroupId": 293, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5996, - "time": 0.9048654836863194, + "noteOrder": 6119, + "time": 0.9231825987406983, "position": { "x": 3, "y": 0 @@ -8041,13 +11445,13 @@ "isPlayAudio": false }, { - "lineGroupId": 287, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5972, - "time": 0.9012020606754436, + "noteOrder": 6144, + "time": 0.9268460217515742, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -8059,18 +11463,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 287, - "indexInLine": 1, + "lineGroupId": 293, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5996, - "time": 0.9048654836863194, + "noteOrder": 6217, + "time": 0.9378362907842014, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8082,16 +11486,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6020, - "time": 0.9085289066971951, + "noteOrder": 6217, + "time": 0.9378362907842014, "position": { "x": 7, "y": 0 @@ -8110,11 +11514,11 @@ "isPlayAudio": false }, { - "lineGroupId": 290, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6044, - "time": 0.912192329708071, + "noteOrder": 6241, + "time": 0.9414997137950772, "position": { "x": 7, "y": 0 @@ -8128,18 +11532,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6069, - "time": 0.9158557527189468, + "noteOrder": 6314, + "time": 0.9524899828277046, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -8156,11 +11560,11 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6117, - "time": 0.9231825987406983, + "noteOrder": 6314, + "time": 0.9524899828277046, "position": { "x": 3, "y": 0 @@ -8179,11 +11583,11 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 1, + "lineGroupId": 301, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6142, - "time": 0.9268460217515742, + "noteOrder": 6326, + "time": 0.9543216943331424, "position": { "x": 3, "y": 0 @@ -8202,13 +11606,13 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 2, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6214, - "time": 0.9378362907842015, + "noteOrder": 6326, + "time": 0.9543216943331424, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -8225,11 +11629,11 @@ "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6214, - "time": 0.9378362907842015, + "noteOrder": 6338, + "time": 0.9561534058385803, "position": { "x": 7, "y": 0 @@ -8248,11 +11652,11 @@ "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 1, + "lineGroupId": 302, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6239, - "time": 0.9414997137950774, + "noteOrder": 6350, + "time": 0.9579851173440184, "position": { "x": 7, "y": 0 @@ -8271,13 +11675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 2, + "lineGroupId": 302, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6312, - "time": 0.9524899828277046, + "noteOrder": 6350, + "time": 0.9579851173440184, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -8294,13 +11698,13 @@ "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6312, - "time": 0.9524899828277046, + "noteOrder": 6362, + "time": 0.9598168288494563, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -8312,16 +11716,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 302, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6336, - "time": 0.9561534058385803, + "noteOrder": 6362, + "time": 0.9598168288494563, "position": { "x": 7, "y": 0 @@ -8341,10 +11745,10 @@ }, { "lineGroupId": 302, - "indexInLine": 3, + "indexInLine": 6, "isSliding": false, - "noteOrder": 6384, - "time": 0.9634802518603319, + "noteOrder": 6387, + "time": 0.963480251860332, "position": { "x": 7, "y": 0 @@ -8364,10 +11768,10 @@ }, { "lineGroupId": 303, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6360, - "time": 0.9598168288494562, + "noteOrder": 6362, + "time": 0.9598168288494563, "position": { "x": 3, "y": 0 @@ -8387,10 +11791,10 @@ }, { "lineGroupId": 303, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6384, - "time": 0.9634802518603319, + "noteOrder": 6387, + "time": 0.963480251860332, "position": { "x": 3, "y": 0 diff --git "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1b.json" "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1b.json" index 5a855e48..af7b3df7 100644 --- "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1b.json" +++ "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/323_difficulty_1b.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 170, - "time": 0.02564396107613051, + "time": 0.025643961076130508, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 170, - "time": 0.02564396107613051, + "time": 0.025643961076130508, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 243, - "time": 0.036634230108757875, + "time": 0.03663423010875787, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 267, - "time": 0.04029765311963365, + "time": 0.04029765311963366, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 340, - "time": 0.05128792215226102, + "time": 0.051287922152261016, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 486, - "time": 0.07326846021751575, + "time": 0.07326846021751574, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 510, - "time": 0.07693188322839153, + "time": 0.07693188322839152, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 534, - "time": 0.0805953062392673, + "time": 0.08059530623926732, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 534, - "time": 0.0805953062392673, + "time": 0.08059530623926732, "position": { "x": 4, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.08425872925014309, + "noteOrder": 559, + "time": 0.0842587292501431, "position": { "x": 3, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 558, - "time": 0.08425872925014309, + "noteOrder": 559, + "time": 0.0842587292501431, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.09891242129364625, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 728, + "noteOrder": 729, "time": 0.10990269032627362, "position": { "x": 7, @@ -354,7 +354,7 @@ }, { "noteOrder": 753, - "time": 0.11356611333714939, + "time": 0.1135661133371494, "position": { "x": 3, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 898, - "time": 0.13554665140240413, + "time": 0.1355466514024041, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 922, + "noteOrder": 923, "time": 0.1392100744132799, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 922, + "noteOrder": 923, "time": 0.1392100744132799, "position": { "x": 4, @@ -454,7 +454,7 @@ }, { "noteOrder": 947, - "time": 0.1428734974241557, + "time": 0.14287349742415567, "position": { "x": 7, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 947, - "time": 0.1428734974241557, + "time": 0.14287349742415567, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1117, - "time": 0.16851745850028618, + "time": 0.1685174585002862, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1165, + "noteOrder": 1166, "time": 0.17584430452203778, "position": { "x": 3, @@ -554,7 +554,7 @@ }, { "noteOrder": 1214, - "time": 0.18317115054378935, + "time": 0.18317115054378932, "position": { "x": 6, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1262, + "noteOrder": 1263, "time": 0.19049799656554092, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1505, - "time": 0.22713222667429878, + "noteOrder": 1506, + "time": 0.2271322266742988, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1530, "time": 0.23079564968517458, "position": { "x": 6, @@ -674,7 +674,7 @@ }, { "noteOrder": 1554, - "time": 0.23445907269605037, + "time": 0.23445907269605035, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1602, + "noteOrder": 1603, "time": 0.24178591871780195, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1626, + "noteOrder": 1627, "time": 0.24544934172867774, "position": { "x": 4, @@ -734,7 +734,7 @@ }, { "noteOrder": 1651, - "time": 0.24911276473955352, + "time": 0.24911276473955354, "position": { "x": 7, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1699, + "noteOrder": 1700, "time": 0.2564396107613051, "position": { "x": 3, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1796, - "time": 0.27109330280480826, + "noteOrder": 1797, + "time": 0.2710933028048082, "position": { "x": 3, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1893, - "time": 0.2857469948483114, + "noteOrder": 1894, + "time": 0.28574699484831134, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2016, "time": 0.30406410990269034, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2039, - "time": 0.30772753291356614, + "noteOrder": 2040, + "time": 0.3077275329135661, "position": { "x": 7, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2064, "time": 0.3113909559244419, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2185, + "noteOrder": 2186, "time": 0.3297080709788208, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2282, + "noteOrder": 2283, "time": 0.34436176302232396, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2379, - "time": 0.3590154550658271, + "noteOrder": 2380, + "time": 0.35901545506582716, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.36267887807670296, "position": { "x": 5, @@ -1014,7 +1014,7 @@ }, { "noteOrder": 2428, - "time": 0.3663423010875787, + "time": 0.36634230108757865, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.3700057240984545, + "noteOrder": 2453, + "time": 0.37000572409845445, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.37366914710933025, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2476, + "noteOrder": 2477, "time": 0.37366914710933025, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2549, + "noteOrder": 2550, "time": 0.3846594161419576, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2573, - "time": 0.38832283915283344, + "noteOrder": 2574, + "time": 0.3883228391528334, "position": { "x": 4, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2597, + "noteOrder": 2598, "time": 0.3919862621637092, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2622, + "noteOrder": 2623, "time": 0.395649685174585, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2646, + "noteOrder": 2647, "time": 0.3993131081854608, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2670, + "noteOrder": 2671, "time": 0.4029765311963366, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2670, + "noteOrder": 2671, "time": 0.4029765311963366, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2719, - "time": 0.4103033772180882, + "noteOrder": 2720, + "time": 0.41030337721808813, "position": { "x": 7, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2743, + "noteOrder": 2744, "time": 0.4139668002289639, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2767, + "noteOrder": 2768, "time": 0.4176302232398397, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2793, "time": 0.4212936462507155, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2816, - "time": 0.4249570692615913, + "noteOrder": 2817, + "time": 0.42495706926159127, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2816, - "time": 0.4249570692615913, + "noteOrder": 2817, + "time": 0.42495706926159127, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2841, "time": 0.42862049227246707, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2841, "time": 0.42862049227246707, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2913, + "noteOrder": 2914, "time": 0.43961076130509447, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2937, + "noteOrder": 2938, "time": 0.4432741843159702, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 2963, "time": 0.446937607326846, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2986, + "noteOrder": 2987, "time": 0.4506010303377218, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3010, - "time": 0.45426445334859755, + "noteOrder": 3011, + "time": 0.4542644533485976, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3034, + "noteOrder": 3035, "time": 0.4579278763594734, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3059, + "noteOrder": 3060, "time": 0.46159129937034915, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3059, + "noteOrder": 3060, "time": 0.46159129937034915, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.46525472238122495, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3083, + "noteOrder": 3084, "time": 0.46525472238122495, "position": { "x": 3, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3107, - "time": 0.46891814539210075, + "noteOrder": 3108, + "time": 0.4689181453921007, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3131, - "time": 0.47258156840297655, + "noteOrder": 3133, + "time": 0.4725815684029765, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3156, + "noteOrder": 3157, "time": 0.4762449914138523, "position": { "x": 7, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3180, - "time": 0.4799084144247281, + "noteOrder": 3181, + "time": 0.47990841442472815, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3205, "time": 0.4835718374356039, "position": { "x": 3, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3204, + "noteOrder": 3205, "time": 0.4835718374356039, "position": { "x": 7, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3229, - "time": 0.48723526044647963, + "noteOrder": 3230, + "time": 0.4872352604464797, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3229, - "time": 0.48723526044647963, + "noteOrder": 3230, + "time": 0.4872352604464797, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3447, + "noteOrder": 3448, "time": 0.5202060675443617, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3471, - "time": 0.5238694905552376, + "noteOrder": 3473, + "time": 0.5238694905552375, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3544, - "time": 0.5348597595878649, + "noteOrder": 3545, + "time": 0.5348597595878648, "position": { "x": 6, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3568, - "time": 0.5385231825987408, + "noteOrder": 3570, + "time": 0.5385231825987407, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3593, - "time": 0.5421866056096165, + "noteOrder": 3594, + "time": 0.5421866056096164, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3618, "time": 0.5458500286204923, "position": { "x": 6, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3617, + "noteOrder": 3618, "time": 0.5458500286204923, "position": { "x": 4, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3835, + "noteOrder": 3837, "time": 0.5788208357183743, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3860, + "noteOrder": 3861, "time": 0.5824842587292501, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3933, + "noteOrder": 3934, "time": 0.5934745277618775, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3958, "time": 0.5971379507727532, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3981, + "noteOrder": 3983, "time": 0.6008013737836291, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.6044647967945048, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 4007, "time": 0.6044647967945048, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4127, + "noteOrder": 4128, "time": 0.6227819118488838, "position": { "x": 3, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4225, "time": 0.637435603892387, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4321, + "noteOrder": 4322, "time": 0.65208929593589, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4345, + "noteOrder": 4347, "time": 0.6557527189467659, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4370, + "noteOrder": 4371, "time": 0.6594161419576416, "position": { "x": 7, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4395, "time": 0.6630795649685175, "position": { "x": 3, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.6667429879793932, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4420, "time": 0.6667429879793932, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4515, + "noteOrder": 4517, "time": 0.6813966800228964, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 4614, "time": 0.6960503720663995, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4709, + "noteOrder": 4711, "time": 0.7107040641099027, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4734, + "noteOrder": 4735, "time": 0.7143674871207785, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4758, - "time": 0.7180309101316542, + "noteOrder": 4760, + "time": 0.7180309101316543, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4782, - "time": 0.72169433314253, + "noteOrder": 4784, + "time": 0.7216943331425301, "position": { "x": 7, "y": 0 @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7253577561534059, "position": { "x": 4, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.7253577561534059, "position": { "x": 6, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4855, - "time": 0.7326846021751574, + "noteOrder": 4857, + "time": 0.7326846021751573, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.7363480251860332, "position": { "x": 7, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5002, "time": 0.7546651402404121, "position": { "x": 4, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5002, "time": 0.7546651402404121, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.758328563251288, + "noteOrder": 5027, + "time": 0.7583285632512878, "position": { "x": 7, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.758328563251288, + "noteOrder": 5027, + "time": 0.7583285632512878, "position": { "x": 3, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5049, + "noteOrder": 5051, "time": 0.7619919862621637, "position": { "x": 3, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5073, + "noteOrder": 5075, "time": 0.7656554092730394, "position": { "x": 5, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5098, + "noteOrder": 5100, "time": 0.7693188322839152, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.7729822552947911, + "noteOrder": 5124, + "time": 0.772982255294791, "position": { "x": 4, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5122, - "time": 0.7729822552947911, + "noteOrder": 5124, + "time": 0.772982255294791, "position": { "x": 6, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.7766456783056669, + "noteOrder": 5148, + "time": 0.7766456783056668, "position": { "x": 7, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5146, - "time": 0.7766456783056669, + "noteOrder": 5148, + "time": 0.7766456783056668, "position": { "x": 3, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5172, "time": 0.7803091013165426, "position": { "x": 6, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5172, "time": 0.7803091013165426, "position": { "x": 4, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5243, + "noteOrder": 5245, "time": 0.79129937034917, "position": { "x": 7, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5268, + "noteOrder": 5270, "time": 0.7949627933600457, "position": { "x": 3, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5389, + "noteOrder": 5391, "time": 0.8132799084144247, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5389, + "noteOrder": 5391, "time": 0.8132799084144247, "position": { "x": 4, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.8169433314253005, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5413, + "noteOrder": 5415, "time": 0.8169433314253005, "position": { "x": 7, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5438, - "time": 0.8206067544361764, + "noteOrder": 5440, + "time": 0.8206067544361763, "position": { "x": 7, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5462, + "noteOrder": 5464, "time": 0.8242701774470521, "position": { "x": 5, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5486, + "noteOrder": 5488, "time": 0.8279336004579279, "position": { "x": 3, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5510, + "noteOrder": 5512, "time": 0.8315970234688036, "position": { "x": 6, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5510, + "noteOrder": 5512, "time": 0.8315970234688036, "position": { "x": 4, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.8352604464796795, "position": { "x": 3, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5535, + "noteOrder": 5537, "time": 0.8352604464796795, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 5561, "time": 0.8389238694905552, "position": { "x": 6, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 5561, "time": 0.8389238694905552, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5632, - "time": 0.8499141385231826, + "noteOrder": 5634, + "time": 0.8499141385231825, "position": { "x": 4, "y": 0 @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5656, + "noteOrder": 5658, "time": 0.8535775615340584, "position": { "x": 6, @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5680, + "noteOrder": 5682, "time": 0.8572409845449341, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5705, - "time": 0.8609044075558099, + "noteOrder": 5707, + "time": 0.86090440755581, "position": { "x": 7, "y": 0 @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5753, - "time": 0.8682312535775616, + "noteOrder": 5755, + "time": 0.8682312535775615, "position": { "x": 4, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5802, + "noteOrder": 5804, "time": 0.8755580995993131, "position": { "x": 6, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5826, + "noteOrder": 5828, "time": 0.8792215226101889, "position": { "x": 3, @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5850, + "noteOrder": 5852, "time": 0.8828849456210647, "position": { "x": 7, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5875, + "noteOrder": 5877, "time": 0.8865483686319404, "position": { "x": 4, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5899, + "noteOrder": 5901, "time": 0.8902117916428163, "position": { "x": 6, @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5923, + "noteOrder": 5925, "time": 0.893875214653692, "position": { "x": 3, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5923, + "noteOrder": 5925, "time": 0.893875214653692, "position": { "x": 7, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5947, + "noteOrder": 5949, "time": 0.8975386376645679, "position": { "x": 6, @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5947, + "noteOrder": 5949, "time": 0.8975386376645679, "position": { "x": 4, @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6020, - "time": 0.9085289066971951, + "noteOrder": 6022, + "time": 0.9085289066971952, "position": { "x": 6, "y": 0 @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6044, + "noteOrder": 6047, "time": 0.912192329708071, "position": { "x": 4, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6069, + "noteOrder": 6071, "time": 0.9158557527189468, "position": { "x": 7, @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6093, + "noteOrder": 6095, "time": 0.9195191757298226, "position": { "x": 3, @@ -3373,7 +3373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6142, + "noteOrder": 6144, "time": 0.9268460217515742, "position": { "x": 6, @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6190, - "time": 0.9341728677733256, + "noteOrder": 6192, + "time": 0.9341728677733258, "position": { "x": 4, "y": 0 @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6214, - "time": 0.9378362907842015, + "noteOrder": 6217, + "time": 0.9378362907842014, "position": { "x": 7, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6239, - "time": 0.9414997137950774, + "noteOrder": 6241, + "time": 0.9414997137950772, "position": { "x": 3, "y": 0 @@ -3453,8 +3453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6263, - "time": 0.9451631368059531, + "noteOrder": 6265, + "time": 0.945163136805953, "position": { "x": 6, "y": 0 @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6287, - "time": 0.9488265598168288, + "noteOrder": 6289, + "time": 0.9488265598168287, "position": { "x": 4, "y": 0 @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6312, + "noteOrder": 6314, "time": 0.9524899828277046, "position": { "x": 7, @@ -3513,7 +3513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6312, + "noteOrder": 6314, "time": 0.9524899828277046, "position": { "x": 3, @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 6338, "time": 0.9561534058385803, "position": { "x": 6, @@ -3553,7 +3553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 6338, "time": 0.9561534058385803, "position": { "x": 4, @@ -3576,10 +3576,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.014653692043503148, + "time": 0.014653692043503147, "position": { "x": 7, "y": 0 @@ -3599,10 +3599,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, - "time": 0.018317115054378937, + "time": 0.018317115054378934, "position": { "x": 7, "y": 0 @@ -3622,10 +3622,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.014653692043503148, + "time": 0.014653692043503147, "position": { "x": 3, "y": 0 @@ -3645,10 +3645,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, - "time": 0.018317115054378937, + "time": 0.018317115054378934, "position": { "x": 3, "y": 0 @@ -3668,10 +3668,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.029307384087006297, + "time": 0.029307384087006293, "position": { "x": 3, "y": 0 @@ -3691,10 +3691,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, - "time": 0.036634230108757875, + "time": 0.03663423010875787, "position": { "x": 3, "y": 0 @@ -3714,7 +3714,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, "time": 0.043961076130509445, @@ -3737,10 +3737,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.05128792215226102, + "time": 0.051287922152261016, "position": { "x": 7, "y": 0 @@ -3760,10 +3760,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 388, - "time": 0.058614768174012594, + "noteOrder": 389, + "time": 0.05861476817401259, "position": { "x": 3, "y": 0 @@ -3783,7 +3783,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 437, "time": 0.06594161419576416, @@ -3806,7 +3806,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 437, "time": 0.06594161419576416, @@ -3829,10 +3829,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 486, - "time": 0.07326846021751575, + "time": 0.07326846021751574, "position": { "x": 7, "y": 0 @@ -3852,7 +3852,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.08792215226101889, @@ -3875,7 +3875,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 631, "time": 0.09524899828277046, @@ -3898,10 +3898,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, - "time": 0.10257584430452205, + "time": 0.10257584430452203, "position": { "x": 3, "y": 0 @@ -3921,9 +3921,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 728, + "noteOrder": 729, "time": 0.10990269032627362, "position": { "x": 3, @@ -3944,10 +3944,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 777, - "time": 0.11722953634802519, + "time": 0.11722953634802517, "position": { "x": 7, "y": 0 @@ -3967,10 +3967,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 825, - "time": 0.12455638236977676, + "noteOrder": 826, + "time": 0.12455638236977677, "position": { "x": 7, "y": 0 @@ -3990,10 +3990,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 825, - "time": 0.12455638236977676, + "noteOrder": 826, + "time": 0.12455638236977677, "position": { "x": 3, "y": 0 @@ -4013,7 +4013,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 874, "time": 0.13188322839152833, @@ -4036,10 +4036,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 971, - "time": 0.1465369204350315, + "time": 0.14653692043503147, "position": { "x": 6, "y": 0 @@ -4059,9 +4059,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 995, + "noteOrder": 996, "time": 0.15020034344590727, "position": { "x": 6, @@ -4082,10 +4082,10 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1020, - "time": 0.15386376645678307, + "time": 0.15386376645678304, "position": { "x": 4, "y": 0 @@ -4105,7 +4105,7 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, "time": 0.15752718946765884, @@ -4128,10 +4128,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1068, - "time": 0.1611906124785346, + "time": 0.16119061247853464, "position": { "x": 6, "y": 0 @@ -4151,10 +4151,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1117, - "time": 0.16851745850028618, + "time": 0.1685174585002862, "position": { "x": 6, "y": 0 @@ -4174,10 +4174,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1359, - "time": 0.2051516886090441, + "noteOrder": 1360, + "time": 0.20515168860904406, "position": { "x": 6, "y": 0 @@ -4197,7 +4197,7 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1384, "time": 0.20881511161991986, @@ -4220,10 +4220,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1408, - "time": 0.21247853463079566, + "time": 0.21247853463079563, "position": { "x": 4, "y": 0 @@ -4243,9 +4243,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1432, + "noteOrder": 1433, "time": 0.21614195764167143, "position": { "x": 4, @@ -4266,7 +4266,7 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1457, "time": 0.21980538065254723, @@ -4289,10 +4289,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1505, - "time": 0.22713222667429878, + "noteOrder": 1506, + "time": 0.2271322266742988, "position": { "x": 6, "y": 0 @@ -4312,7 +4312,7 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1748, "time": 0.26376645678305666, @@ -4333,11 +4333,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1773, + "time": 0.2674298797939324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1773, + "time": 0.2674298797939324, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1845, + "noteOrder": 1846, "time": 0.2784201488265598, "position": { "x": 3, @@ -4357,11 +4403,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1942, - "time": 0.293073840870063, + "noteOrder": 1870, + "time": 0.2820835718374356, "position": { "x": 3, "y": 0 @@ -4379,11 +4425,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1870, + "time": 0.2820835718374356, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2015, + "noteOrder": 1943, + "time": 0.29307384087006294, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2016, "time": 0.30406410990269034, "position": { "x": 3, @@ -4404,10 +4496,33 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2137, + "time": 0.3223812249570693, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2136, - "time": 0.3223812249570692, + "noteOrder": 2161, + "time": 0.326044647967945, "position": { "x": 3, "y": 0 @@ -4425,12 +4540,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2161, + "time": 0.326044647967945, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2234, + "time": 0.3370349170005724, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.33703491700057236, + "noteOrder": 2258, + "time": 0.3406983400114482, "position": { "x": 7, "y": 0 @@ -4448,11 +4609,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2258, + "time": 0.3406983400114482, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2330, + "noteOrder": 2331, "time": 0.35168860904407556, "position": { "x": 7, @@ -4473,9 +4657,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2403, + "noteOrder": 2404, "time": 0.36267887807670296, "position": { "x": 7, @@ -4496,9 +4680,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.43228391528334287, "position": { "x": 3, @@ -4519,9 +4703,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.43594733829421867, "position": { "x": 3, @@ -4542,9 +4726,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2864, + "noteOrder": 2865, "time": 0.43228391528334287, "position": { "x": 7, @@ -4565,9 +4749,9 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2889, + "noteOrder": 2890, "time": 0.43594733829421867, "position": { "x": 7, @@ -4588,9 +4772,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.4908986834573555, "position": { "x": 7, @@ -4611,9 +4795,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3277, + "noteOrder": 3278, "time": 0.4945621064682313, "position": { "x": 7, @@ -4634,9 +4818,9 @@ }, { "lineGroupId": 116, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3253, + "noteOrder": 3254, "time": 0.4908986834573555, "position": { "x": 3, @@ -4657,9 +4841,9 @@ }, { "lineGroupId": 116, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3277, + "noteOrder": 3278, "time": 0.4945621064682313, "position": { "x": 3, @@ -4680,10 +4864,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3301, - "time": 0.49822552947910703, + "noteOrder": 3303, + "time": 0.4982255294791071, "position": { "x": 6, "y": 0 @@ -4703,10 +4887,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3326, - "time": 0.5018889524899828, + "noteOrder": 3327, + "time": 0.5018889524899829, "position": { "x": 6, "y": 0 @@ -4726,10 +4910,10 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3350, - "time": 0.5055523755008585, + "noteOrder": 3351, + "time": 0.5055523755008586, "position": { "x": 4, "y": 0 @@ -4749,10 +4933,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3374, - "time": 0.5092157985117344, + "noteOrder": 3375, + "time": 0.5092157985117345, "position": { "x": 4, "y": 0 @@ -4772,9 +4956,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3399, + "noteOrder": 3400, "time": 0.5128792215226102, "position": { "x": 6, @@ -4795,9 +4979,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3447, + "noteOrder": 3448, "time": 0.5202060675443617, "position": { "x": 6, @@ -4818,9 +5002,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3496, + "noteOrder": 3497, "time": 0.5275329135661133, "position": { "x": 3, @@ -4841,10 +5025,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3544, - "time": 0.5348597595878649, + "noteOrder": 3545, + "time": 0.5348597595878648, "position": { "x": 3, "y": 0 @@ -4864,9 +5048,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3641, + "noteOrder": 3643, "time": 0.549513451631368, "position": { "x": 3, @@ -4887,10 +5071,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3666, - "time": 0.5531768746422439, + "noteOrder": 3667, + "time": 0.5531768746422437, "position": { "x": 3, "y": 0 @@ -4910,9 +5094,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3641, + "noteOrder": 3643, "time": 0.549513451631368, "position": { "x": 7, @@ -4933,10 +5117,10 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3666, - "time": 0.5531768746422439, + "noteOrder": 3667, + "time": 0.5531768746422437, "position": { "x": 7, "y": 0 @@ -4956,9 +5140,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3690, + "noteOrder": 3691, "time": 0.5568402976531196, "position": { "x": 4, @@ -4979,10 +5163,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3714, - "time": 0.5605037206639955, + "noteOrder": 3715, + "time": 0.5605037206639953, "position": { "x": 4, "y": 0 @@ -5002,9 +5186,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3738, + "noteOrder": 3740, "time": 0.5641671436748712, "position": { "x": 6, @@ -5025,9 +5209,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3763, + "noteOrder": 3764, "time": 0.5678305666857469, "position": { "x": 6, @@ -5048,10 +5232,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3787, - "time": 0.5714939896966228, + "noteOrder": 3788, + "time": 0.5714939896966227, "position": { "x": 4, "y": 0 @@ -5071,9 +5255,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3835, + "noteOrder": 3837, "time": 0.5788208357183743, "position": { "x": 4, @@ -5094,10 +5278,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3884, - "time": 0.586147681740126, + "noteOrder": 3885, + "time": 0.5861476817401259, "position": { "x": 7, "y": 0 @@ -5117,9 +5301,9 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3933, + "noteOrder": 3934, "time": 0.5934745277618775, "position": { "x": 7, @@ -5140,9 +5324,9 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4030, + "noteOrder": 4031, "time": 0.6081282198053807, "position": { "x": 3, @@ -5163,9 +5347,9 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4054, + "noteOrder": 4055, "time": 0.6117916428162564, "position": { "x": 3, @@ -5186,9 +5370,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4030, + "noteOrder": 4031, "time": 0.6081282198053807, "position": { "x": 7, @@ -5209,9 +5393,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4054, + "noteOrder": 4055, "time": 0.6117916428162564, "position": { "x": 7, @@ -5232,10 +5416,10 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4078, - "time": 0.6154550658271323, + "noteOrder": 4080, + "time": 0.6154550658271322, "position": { "x": 7, "y": 0 @@ -5253,11 +5437,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4104, + "time": 0.619118488838008, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4104, + "time": 0.619118488838008, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4175, + "noteOrder": 4177, "time": 0.6301087578706354, "position": { "x": 3, @@ -5277,11 +5507,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4272, - "time": 0.6447624499141384, + "noteOrder": 4201, + "time": 0.6337721808815111, "position": { "x": 3, "y": 0 @@ -5299,11 +5529,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4201, + "time": 0.6337721808815111, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 4345, + "noteOrder": 4274, + "time": 0.6447624499141386, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4347, "time": 0.6557527189467659, "position": { "x": 3, @@ -5324,10 +5600,33 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4468, + "time": 0.6740698340011448, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4467, - "time": 0.6740698340011447, + "noteOrder": 4492, + "time": 0.6777332570120206, "position": { "x": 3, "y": 0 @@ -5345,11 +5644,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4492, + "time": 0.6777332570120206, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4565, "time": 0.6887235260446479, "position": { "x": 7, @@ -5368,11 +5690,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4590, + "time": 0.6923869490555238, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4590, + "time": 0.6923869490555238, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4661, + "noteOrder": 4662, "time": 0.7033772180881511, "position": { "x": 7, @@ -5393,9 +5761,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4734, + "noteOrder": 4735, "time": 0.7143674871207785, "position": { "x": 7, @@ -5416,10 +5784,10 @@ }, { "lineGroupId": 167, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4904, - "time": 0.740011448196909, + "noteOrder": 4905, + "time": 0.7400114481969089, "position": { "x": 4, "y": 0 @@ -5439,9 +5807,9 @@ }, { "lineGroupId": 167, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4928, + "noteOrder": 4930, "time": 0.7436748712077847, "position": { "x": 4, @@ -5462,10 +5830,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4904, - "time": 0.740011448196909, + "noteOrder": 4905, + "time": 0.7400114481969089, "position": { "x": 6, "y": 0 @@ -5485,9 +5853,9 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4928, + "noteOrder": 4930, "time": 0.7436748712077847, "position": { "x": 6, @@ -5508,9 +5876,9 @@ }, { "lineGroupId": 169, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, + "noteOrder": 4954, "time": 0.7473382942186605, "position": { "x": 3, @@ -5531,10 +5899,10 @@ }, { "lineGroupId": 169, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4976, - "time": 0.7510017172295363, + "noteOrder": 4978, + "time": 0.7510017172295362, "position": { "x": 3, "y": 0 @@ -5554,9 +5922,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, + "noteOrder": 4954, "time": 0.7473382942186605, "position": { "x": 7, @@ -5577,10 +5945,10 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4976, - "time": 0.7510017172295363, + "noteOrder": 4978, + "time": 0.7510017172295362, "position": { "x": 7, "y": 0 @@ -5600,9 +5968,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5195, + "noteOrder": 5197, "time": 0.7839725243274184, "position": { "x": 7, @@ -5623,10 +5991,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5219, - "time": 0.7876359473382942, + "noteOrder": 5221, + "time": 0.7876359473382941, "position": { "x": 7, "y": 0 @@ -5646,9 +6014,9 @@ }, { "lineGroupId": 185, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5195, + "noteOrder": 5197, "time": 0.7839725243274184, "position": { "x": 3, @@ -5669,10 +6037,10 @@ }, { "lineGroupId": 185, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5219, - "time": 0.7876359473382942, + "noteOrder": 5221, + "time": 0.7876359473382941, "position": { "x": 3, "y": 0 @@ -5692,9 +6060,9 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.7986262163709216, "position": { "x": 4, @@ -5715,10 +6083,10 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.8022896393817974, + "noteOrder": 5318, + "time": 0.8022896393817973, "position": { "x": 4, "y": 0 @@ -5738,9 +6106,9 @@ }, { "lineGroupId": 189, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5292, + "noteOrder": 5294, "time": 0.7986262163709216, "position": { "x": 6, @@ -5761,10 +6129,10 @@ }, { "lineGroupId": 189, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5316, - "time": 0.8022896393817974, + "noteOrder": 5318, + "time": 0.8022896393817973, "position": { "x": 6, "y": 0 @@ -5784,9 +6152,9 @@ }, { "lineGroupId": 190, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5341, + "noteOrder": 5342, "time": 0.8059530623926732, "position": { "x": 3, @@ -5807,9 +6175,9 @@ }, { "lineGroupId": 190, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5365, + "noteOrder": 5367, "time": 0.8096164854035489, "position": { "x": 3, @@ -5830,9 +6198,9 @@ }, { "lineGroupId": 191, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5341, + "noteOrder": 5342, "time": 0.8059530623926732, "position": { "x": 7, @@ -5853,9 +6221,9 @@ }, { "lineGroupId": 191, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5365, + "noteOrder": 5367, "time": 0.8096164854035489, "position": { "x": 7, @@ -5876,9 +6244,9 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5583, + "noteOrder": 5585, "time": 0.842587292501431, "position": { "x": 3, @@ -5899,9 +6267,9 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5608, + "noteOrder": 5610, "time": 0.8462507155123068, "position": { "x": 3, @@ -5922,9 +6290,9 @@ }, { "lineGroupId": 206, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5583, + "noteOrder": 5585, "time": 0.842587292501431, "position": { "x": 7, @@ -5945,9 +6313,9 @@ }, { "lineGroupId": 206, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5608, + "noteOrder": 5610, "time": 0.8462507155123068, "position": { "x": 7, @@ -5968,9 +6336,9 @@ }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5729, + "noteOrder": 5731, "time": 0.8645678305666857, "position": { "x": 3, @@ -5991,10 +6359,10 @@ }, { "lineGroupId": 211, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5753, - "time": 0.8682312535775616, + "noteOrder": 5755, + "time": 0.8682312535775615, "position": { "x": 3, "y": 0 @@ -6014,9 +6382,9 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5777, + "noteOrder": 5779, "time": 0.8718946765884373, "position": { "x": 7, @@ -6037,9 +6405,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5802, + "noteOrder": 5804, "time": 0.8755580995993131, "position": { "x": 7, @@ -6060,9 +6428,9 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9012020606754436, "position": { "x": 7, @@ -6083,9 +6451,9 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.9048654836863194, "position": { "x": 7, @@ -6106,9 +6474,9 @@ }, { "lineGroupId": 224, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5972, + "noteOrder": 5974, "time": 0.9012020606754436, "position": { "x": 3, @@ -6129,9 +6497,9 @@ }, { "lineGroupId": 224, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5996, + "noteOrder": 5998, "time": 0.9048654836863194, "position": { "x": 3, @@ -6152,9 +6520,9 @@ }, { "lineGroupId": 229, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6117, + "noteOrder": 6119, "time": 0.9231825987406983, "position": { "x": 7, @@ -6175,9 +6543,9 @@ }, { "lineGroupId": 229, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6142, + "noteOrder": 6144, "time": 0.9268460217515742, "position": { "x": 7, @@ -6198,9 +6566,9 @@ }, { "lineGroupId": 231, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6166, + "noteOrder": 6168, "time": 0.9305094447624499, "position": { "x": 3, @@ -6221,10 +6589,10 @@ }, { "lineGroupId": 231, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6190, - "time": 0.9341728677733256, + "noteOrder": 6192, + "time": 0.9341728677733258, "position": { "x": 3, "y": 0 @@ -6244,10 +6612,10 @@ }, { "lineGroupId": 241, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6360, - "time": 0.9598168288494562, + "noteOrder": 6362, + "time": 0.9598168288494563, "position": { "x": 7, "y": 0 @@ -6267,10 +6635,10 @@ }, { "lineGroupId": 241, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6384, - "time": 0.9634802518603319, + "noteOrder": 6387, + "time": 0.963480251860332, "position": { "x": 7, "y": 0 @@ -6290,10 +6658,10 @@ }, { "lineGroupId": 242, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6360, - "time": 0.9598168288494562, + "noteOrder": 6362, + "time": 0.9598168288494563, "position": { "x": 3, "y": 0 @@ -6313,10 +6681,10 @@ }, { "lineGroupId": 242, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6384, - "time": 0.9634802518603319, + "noteOrder": 6387, + "time": 0.963480251860332, "position": { "x": 3, "y": 0 diff --git "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/info.json" "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/info.json" index 46e7129e..77918fe3 100644 --- "a/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/info.json" +++ "b/tracks/\342\206\221\342\206\221\342\206\223\342\206\223\342\206\220\342\206\222\342\206\220\342\206\222BA/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u2191\u2191\u2193\u2193\u2190\u2192\u2190\u2192BA", - "SongLength": "143.595102", + "SongLength": "133.642449", "SongAuthorName": "meiyo", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1a.json" "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1a.json" index eb99fd23..2bab09ea 100644 --- "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1a.json" +++ "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1a.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 120, - "time": 0.012507817385866166, + "time": 0.012507817385866168, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.0225140712945591, + "time": 0.022514071294559103, "position": { "x": 2, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 288, - "time": 0.0300187617260788, + "time": 0.030018761726078803, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 396, - "time": 0.04127579737335835, + "noteOrder": 397, + "time": 0.041275797373358354, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 408, - "time": 0.04252657911194496, + "noteOrder": 409, + "time": 0.04252657911194497, "position": { "x": 7, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 420, - "time": 0.04377736085053158, + "noteOrder": 421, + "time": 0.043777360850531584, "position": { "x": 4, "y": 0 @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 432, - "time": 0.0450281425891182, + "noteOrder": 433, + "time": 0.045028142589118206, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 817, - "time": 0.08505315822388992, + "time": 0.08505315822388994, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1009, - "time": 0.10506566604127579, + "time": 0.1050656660412758, "position": { "x": 3, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.13008130081300812, "position": { "x": 7, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1273, + "noteOrder": 1274, "time": 0.13258286429018137, "position": { "x": 6, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.13508442776735458, + "noteOrder": 1298, + "time": 0.1350844277673546, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 1321, + "noteOrder": 1322, "time": 0.13758599124452783, "position": { "x": 3, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.14008755472170106, "position": { "x": 7, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1369, + "noteOrder": 1370, "time": 0.1425891181988743, "position": { "x": 4, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.14509068167604755, + "noteOrder": 1394, + "time": 0.14509068167604752, "position": { "x": 7, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1465, - "time": 0.1525953721075672, + "noteOrder": 1466, + "time": 0.15259537210756724, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.1575984990619137, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.16010006253908693, "position": { "x": 3, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.16010006253908693, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.16260162601626016, + "noteOrder": 1562, + "time": 0.1626016260162602, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.16260162601626016, + "noteOrder": 1562, + "time": 0.1626016260162602, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1586, - "time": 0.1651031894934334, + "time": 0.16510318949343342, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1586, - "time": 0.1651031894934334, + "time": 0.16510318949343342, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1634, - "time": 0.17010631644777985, + "time": 0.17010631644777988, "position": { "x": 4, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1682, - "time": 0.1751094434021263, + "time": 0.17510944340212634, "position": { "x": 7, "y": 0 @@ -674,7 +674,7 @@ }, { "noteOrder": 1730, - "time": 0.1801125703564728, + "time": 0.18011257035647282, "position": { "x": 7, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1754, - "time": 0.18261413383364603, + "time": 0.18261413383364605, "position": { "x": 5, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1874, - "time": 0.1951219512195122, + "time": 0.19512195121951223, "position": { "x": 6, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1922, - "time": 0.20012507817385866, + "time": 0.2001250781738587, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.2026266416510319, + "noteOrder": 1947, + "time": 0.20262664165103192, "position": { "x": 7, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2018, - "time": 0.21013133208255158, + "noteOrder": 2019, + "time": 0.2101313320825516, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2042, + "noteOrder": 2043, "time": 0.21263289555972484, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.22013758599124453, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2139, "time": 0.22263914946841776, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.2401500938086304, + "noteOrder": 2307, + "time": 0.24015009380863042, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2330, - "time": 0.24265165728580362, + "noteOrder": 2331, + "time": 0.24265165728580365, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.24515322076297688, + "noteOrder": 2355, + "time": 0.24515322076297685, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.24515322076297688, + "noteOrder": 2355, + "time": 0.24515322076297685, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.2501563477173233, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2426, - "time": 0.25265791119449654, + "noteOrder": 2427, + "time": 0.2526579111944966, "position": { "x": 5, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2450, - "time": 0.25515947467166983, + "noteOrder": 2451, + "time": 0.2551594746716698, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2474, + "noteOrder": 2475, "time": 0.25766103814884306, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2499, "time": 0.26016260162601623, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2522, - "time": 0.26266416510318946, + "noteOrder": 2523, + "time": 0.2626641651031895, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.26516572858036275, "position": { "x": 3, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2570, + "noteOrder": 2571, "time": 0.267667292057536, "position": { "x": 5, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2594, - "time": 0.27016885553470915, + "noteOrder": 2595, + "time": 0.2701688555347092, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2618, + "noteOrder": 2619, "time": 0.27267041901188244, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2715, - "time": 0.28267667292057536, + "noteOrder": 2716, + "time": 0.2826766729205754, "position": { "x": 6, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2739, + "noteOrder": 2740, "time": 0.2851782363977486, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2763, - "time": 0.2876797998749218, + "noteOrder": 2764, + "time": 0.28767979987492187, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2835, - "time": 0.2951844903064415, + "noteOrder": 2836, + "time": 0.29518449030644156, "position": { "x": 2, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2931, - "time": 0.3051907442151344, + "noteOrder": 2932, + "time": 0.3051907442151345, "position": { "x": 8, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.4052532833020638, + "noteOrder": 3893, + "time": 0.40525328330206384, "position": { "x": 7, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3940, + "noteOrder": 3941, "time": 0.41025641025641024, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.41275797373358347, + "noteOrder": 3965, + "time": 0.4127579737335835, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3988, - "time": 0.41525953721075676, + "noteOrder": 3989, + "time": 0.4152595372107567, "position": { "x": 5, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4013, "time": 0.41776110068793, "position": { "x": 7, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4036, - "time": 0.42026266416510316, + "noteOrder": 4037, + "time": 0.4202626641651032, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4036, - "time": 0.42026266416510316, + "noteOrder": 4037, + "time": 0.4202626641651032, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.4227642276422764, + "noteOrder": 4061, + "time": 0.42276422764227645, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.4227642276422764, + "noteOrder": 4061, + "time": 0.42276422764227645, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.4452782989368355, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.45028142589118203, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.45278298936835526, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.45528455284552843, + "noteOrder": 4374, + "time": 0.4552845528455285, "position": { "x": 5, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4396, - "time": 0.45778611632270166, + "noteOrder": 4398, + "time": 0.4577861163227017, "position": { "x": 3, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.46028767979987495, "position": { "x": 7, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4564, - "time": 0.4752970606629143, + "noteOrder": 4566, + "time": 0.47529706066291433, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.48530331457160725, + "noteOrder": 4662, + "time": 0.4853033145716073, "position": { "x": 6, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4805, + "noteOrder": 4806, "time": 0.5003126954346466, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4829, + "noteOrder": 4830, "time": 0.50281425891182, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4853, - "time": 0.5053158223889931, + "noteOrder": 4854, + "time": 0.5053158223889932, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.5253283302063789, + "noteOrder": 5047, + "time": 0.525328330206379, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.5303314571607255, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5117, - "time": 0.5328330206378986, + "noteOrder": 5119, + "time": 0.5328330206378987, "position": { "x": 3, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.535334584115072, "position": { "x": 5, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5165, + "noteOrder": 5167, "time": 0.5378361475922452, "position": { "x": 7, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.5403377110694183, + "noteOrder": 5191, + "time": 0.5403377110694184, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5237, + "noteOrder": 5239, "time": 0.5453408380237649, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5429, - "time": 0.5653533458411507, + "noteOrder": 5431, + "time": 0.5653533458411508, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5621, - "time": 0.5853658536585366, + "noteOrder": 5623, + "time": 0.5853658536585367, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5765, + "noteOrder": 5767, "time": 0.600375234521576, "position": { "x": 7, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5789, - "time": 0.6028767979987492, + "noteOrder": 5792, + "time": 0.6028767979987493, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.6053783614759225, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5862, - "time": 0.6103814884302688, + "noteOrder": 5864, + "time": 0.610381488430269, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5886, + "noteOrder": 5888, "time": 0.6128830519074422, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5910, + "noteOrder": 5912, "time": 0.6153846153846154, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5958, + "noteOrder": 5960, "time": 0.6203877423389619, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5982, - "time": 0.622889305816135, + "noteOrder": 5984, + "time": 0.6228893058161351, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 6006, - "time": 0.6253908692933083, + "noteOrder": 6008, + "time": 0.6253908692933084, "position": { "x": 6, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.6303939962476548, "position": { "x": 3, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6078, + "noteOrder": 6080, "time": 0.632895559724828, "position": { "x": 7, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6102, - "time": 0.6353971232020013, + "noteOrder": 6104, + "time": 0.6353971232020014, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6294, + "noteOrder": 6296, "time": 0.6554096310193871, "position": { "x": 7, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6342, - "time": 0.6604127579737336, + "noteOrder": 6344, + "time": 0.6604127579737337, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6366, - "time": 0.6629143214509069, + "noteOrder": 6368, + "time": 0.6629143214509068, "position": { "x": 4, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6390, + "noteOrder": 6392, "time": 0.66541588492808, "position": { "x": 6, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6414, - "time": 0.6679174484052532, + "noteOrder": 6416, + "time": 0.6679174484052534, "position": { "x": 4, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6438, + "noteOrder": 6440, "time": 0.6704190118824266, "position": { "x": 6, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6462, - "time": 0.6729205753595997, + "noteOrder": 6464, + "time": 0.6729205753595998, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6486, - "time": 0.675422138836773, + "noteOrder": 6488, + "time": 0.6754221388367729, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 6510, + "noteOrder": 6512, "time": 0.6779237023139463, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6678, + "noteOrder": 6681, "time": 0.6954346466541589, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6726, - "time": 0.7004377736085052, + "noteOrder": 6729, + "time": 0.7004377736085053, "position": { "x": 7, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6750, + "noteOrder": 6753, "time": 0.7029393370856786, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6774, + "noteOrder": 6777, "time": 0.7054409005628518, "position": { "x": 6, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6798, - "time": 0.707942464040025, + "noteOrder": 6801, + "time": 0.7079424640400251, "position": { "x": 3, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6822, + "noteOrder": 6825, "time": 0.7104440275171983, "position": { "x": 7, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6846, + "noteOrder": 6849, "time": 0.7129455909943715, "position": { "x": 6, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6846, + "noteOrder": 6849, "time": 0.7129455909943715, "position": { "x": 4, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6871, + "noteOrder": 6873, "time": 0.7154471544715447, "position": { "x": 3, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6871, + "noteOrder": 6873, "time": 0.7154471544715447, "position": { "x": 7, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 7015, - "time": 0.7304565353345841, + "noteOrder": 7017, + "time": 0.7304565353345842, "position": { "x": 7, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 7039, + "noteOrder": 7041, "time": 0.7329580988117574, "position": { "x": 3, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 7063, + "noteOrder": 7065, "time": 0.7354596622889306, "position": { "x": 5, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 7111, + "noteOrder": 7113, "time": 0.7404627892432771, "position": { "x": 5, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 7135, - "time": 0.7429643527204502, + "noteOrder": 7137, + "time": 0.7429643527204504, "position": { "x": 7, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 7159, + "noteOrder": 7161, "time": 0.7454659161976236, "position": { "x": 4, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 7183, + "noteOrder": 7185, "time": 0.7479674796747967, "position": { "x": 3, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 7207, - "time": 0.7504690431519699, + "noteOrder": 7209, + "time": 0.75046904315197, "position": { "x": 6, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 7207, - "time": 0.7504690431519699, + "noteOrder": 7209, + "time": 0.75046904315197, "position": { "x": 4, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 7231, + "noteOrder": 7233, "time": 0.7529706066291433, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 7231, + "noteOrder": 7233, "time": 0.7529706066291433, "position": { "x": 3, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 7327, - "time": 0.7629768605378361, + "noteOrder": 7330, + "time": 0.7629768605378362, "position": { "x": 7, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 7375, + "noteOrder": 7378, "time": 0.7679799874921827, "position": { "x": 3, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 7399, - "time": 0.7704815509693558, + "noteOrder": 7402, + "time": 0.7704815509693559, "position": { "x": 7, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 7423, + "noteOrder": 7426, "time": 0.7729831144465291, "position": { "x": 5, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 7447, + "noteOrder": 7450, "time": 0.7754846779237023, "position": { "x": 7, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7591, - "time": 0.7904940587867417, + "noteOrder": 7594, + "time": 0.7904940587867418, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 7687, - "time": 0.8005003126954346, + "noteOrder": 7690, + "time": 0.8005003126954348, "position": { "x": 6, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7711, + "noteOrder": 7714, "time": 0.803001876172608, "position": { "x": 5, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7735, - "time": 0.8055034396497811, + "noteOrder": 7738, + "time": 0.8055034396497812, "position": { "x": 7, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7759, + "noteOrder": 7762, "time": 0.8080050031269543, "position": { "x": 6, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7783, - "time": 0.8105065666041276, + "noteOrder": 7786, + "time": 0.8105065666041277, "position": { "x": 4, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 7807, - "time": 0.8130081300813008, + "noteOrder": 7810, + "time": 0.8130081300813009, "position": { "x": 5, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 7831, - "time": 0.815509693558474, + "noteOrder": 7834, + "time": 0.8155096935584741, "position": { "x": 3, "y": 0 @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7855, + "noteOrder": 7858, "time": 0.8180112570356473, "position": { "x": 4, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 7879, + "noteOrder": 7882, "time": 0.8205128205128205, "position": { "x": 7, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 7903, + "noteOrder": 7906, "time": 0.8230143839899938, "position": { "x": 3, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 7928, - "time": 0.8255159474671669, + "noteOrder": 7930, + "time": 0.825515947467167, "position": { "x": 7, "y": 0 @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 7952, - "time": 0.8280175109443402, + "noteOrder": 7954, + "time": 0.8280175109443403, "position": { "x": 3, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 8216, + "noteOrder": 8219, "time": 0.8555347091932458, "position": { "x": 7, @@ -3113,8 +3113,8 @@ "isPlayAudio": false }, { - "noteOrder": 8264, - "time": 0.8605378361475922, + "noteOrder": 8267, + "time": 0.8605378361475923, "position": { "x": 7, "y": 0 @@ -3133,8 +3133,8 @@ "isPlayAudio": false }, { - "noteOrder": 8288, - "time": 0.8630393996247655, + "noteOrder": 8291, + "time": 0.8630393996247656, "position": { "x": 5, "y": 0 @@ -3153,7 +3153,7 @@ "isPlayAudio": false }, { - "noteOrder": 8312, + "noteOrder": 8315, "time": 0.8655409631019387, "position": { "x": 3, @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 8336, + "noteOrder": 8339, "time": 0.868042526579112, "position": { "x": 7, @@ -3193,7 +3193,7 @@ "isPlayAudio": false }, { - "noteOrder": 8360, + "noteOrder": 8363, "time": 0.8705440900562852, "position": { "x": 4, @@ -3213,8 +3213,8 @@ "isPlayAudio": false }, { - "noteOrder": 8408, - "time": 0.8755472170106317, + "noteOrder": 8411, + "time": 0.8755472170106318, "position": { "x": 6, "y": 0 @@ -3233,8 +3233,8 @@ "isPlayAudio": false }, { - "noteOrder": 8504, - "time": 0.8855534709193246, + "noteOrder": 8507, + "time": 0.8855534709193247, "position": { "x": 4, "y": 0 @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 8600, - "time": 0.8955597248280175, + "noteOrder": 8603, + "time": 0.8955597248280176, "position": { "x": 7, "y": 0 @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 8792, - "time": 0.9155722326454033, + "noteOrder": 8795, + "time": 0.9155722326454034, "position": { "x": 4, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 8985, - "time": 0.9355847404627893, + "noteOrder": 8988, + "time": 0.9355847404627894, "position": { "x": 3, "y": 0 @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 9081, - "time": 0.9455909943714822, + "noteOrder": 9084, + "time": 0.9455909943714823, "position": { "x": 7, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 9177, - "time": 0.9555972482801752, + "noteOrder": 9180, + "time": 0.9555972482801751, "position": { "x": 3, "y": 0 @@ -3356,10 +3356,33 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 481, + "time": 0.05003126954346467, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 480, - "time": 0.050031269543464665, + "noteOrder": 505, + "time": 0.0525328330206379, "position": { "x": 7, "y": 0 @@ -3377,9 +3400,78 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 505, + "time": 0.0525328330206379, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 529, + "time": 0.05503439649781113, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 529, + "time": 0.05503439649781113, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, "time": 0.05503439649781113, @@ -3400,12 +3492,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 16, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 553, + "time": 0.05753595997498437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 553, + "time": 0.05753595997498437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 577, + "time": 0.060037523452157605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 577, + "time": 0.060037523452157605, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.0600375234521576, + "time": 0.060037523452157605, "position": { "x": 7, "y": 0 @@ -3425,7 +3609,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.07004377736085053, @@ -3448,7 +3632,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 673, "time": 0.07004377736085053, @@ -3470,11 +3654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 20, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 721, - "time": 0.075046904315197, + "noteOrder": 697, + "time": 0.07254534083802376, "position": { "x": 3, "y": 0 @@ -3488,18 +3672,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 769, - "time": 0.08005003126954346, + "noteOrder": 697, + "time": 0.07254534083802376, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3516,13 +3700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 19, + "indexInLine": 4, "isSliding": false, - "noteOrder": 865, - "time": 0.0900562851782364, + "noteOrder": 721, + "time": 0.075046904315197, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3539,13 +3723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 23, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 5, "isSliding": false, - "noteOrder": 865, - "time": 0.0900562851782364, + "noteOrder": 721, + "time": 0.075046904315197, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3557,18 +3741,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 23, + "lineGroupId": 20, "indexInLine": 1, "isSliding": false, - "noteOrder": 961, - "time": 0.10006253908692933, + "noteOrder": 721, + "time": 0.075046904315197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3585,11 +3769,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 2, "isSliding": false, - "noteOrder": 961, - "time": 0.10006253908692933, + "noteOrder": 745, + "time": 0.07754846779237023, "position": { "x": 3, "y": 0 @@ -3603,18 +3787,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 1, + "lineGroupId": 20, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1057, - "time": 0.11006879299562226, + "noteOrder": 745, + "time": 0.07754846779237023, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3626,18 +3810,3537 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 27, - "indexInLine": 0, + "lineGroupId": 20, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 769, + "time": 0.08005003126954346, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 769, + "time": 0.08005003126954346, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 769, + "time": 0.08005003126954346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 865, + "time": 0.09005628517823641, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 865, + "time": 0.09005628517823641, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 961, + "time": 0.10006253908692934, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 961, + "time": 0.10006253908692934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 25, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1057, + "time": 0.11006879299562226, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1057, + "time": 0.11006879299562226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1081, + "time": 0.11257035647279551, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1081, + "time": 0.11257035647279551, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1105, + "time": 0.11507191994996874, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1105, + "time": 0.11507191994996874, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1105, + "time": 0.11507191994996874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1129, + "time": 0.11757348342714197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1129, + "time": 0.11757348342714197, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1153, + "time": 0.12007504690431521, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 28, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1153, + "time": 0.12007504690431521, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1153, + "time": 0.12007504690431521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1178, + "time": 0.12257661038148843, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1178, + "time": 0.12257661038148843, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1202, + "time": 0.12507817385866166, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 29, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1202, + "time": 0.12507817385866166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1202, + "time": 0.12507817385866166, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1226, + "time": 0.1275797373358349, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1226, + "time": 0.1275797373358349, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1250, + "time": 0.13008130081300812, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 30, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1250, + "time": 0.13008130081300812, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.19011882426516574, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1874, + "time": 0.19512195121951223, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2067, + "time": 0.21513445903689807, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2091, + "time": 0.2176360225140713, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2163, + "time": 0.22514071294559101, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2187, + "time": 0.22764227642276424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2211, + "time": 0.23014383989993747, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2235, + "time": 0.2326454033771107, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2259, + "time": 0.23514696685428393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2283, + "time": 0.23764853033145716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2788, + "time": 0.29018136335209505, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2836, + "time": 0.29518449030644156, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2884, + "time": 0.300187617260788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2932, + "time": 0.3051907442151345, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2980, + "time": 0.31019387116948094, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3028, + "time": 0.3151969981238274, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3076, + "time": 0.32020012507817386, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3124, + "time": 0.3252032520325204, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3172, + "time": 0.33020637898686683, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3220, + "time": 0.3352095059412133, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3268, + "time": 0.34021263289555975, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3316, + "time": 0.3452157598499062, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.35021888680425267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.3527204502814259, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3364, + "time": 0.35021888680425267, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3388, + "time": 0.3527204502814259, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3412, + "time": 0.35522201375859913, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.35772357723577236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3412, + "time": 0.35522201375859913, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3436, + "time": 0.35772357723577236, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3749, + "time": 0.39024390243902446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3773, + "time": 0.39274546591619763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3773, + "time": 0.39274546591619763, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3797, + "time": 0.3952470293933709, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3797, + "time": 0.3952470293933709, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3797, + "time": 0.3952470293933709, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3821, + "time": 0.3977485928705441, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3821, + "time": 0.3977485928705441, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3845, + "time": 0.4002501563477174, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3845, + "time": 0.4002501563477174, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3845, + "time": 0.4002501563477174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3869, + "time": 0.4027517198248906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3869, + "time": 0.4027517198248906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3893, + "time": 0.40525328330206384, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3893, + "time": 0.40525328330206384, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4133, + "time": 0.43026891807379614, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4157, + "time": 0.43277048155096937, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4157, + "time": 0.43277048155096937, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4181, + "time": 0.4352720450281426, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4181, + "time": 0.4352720450281426, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4181, + "time": 0.4352720450281426, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4205, + "time": 0.4377736085053159, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4205, + "time": 0.4377736085053159, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4229, + "time": 0.44027517198248906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4229, + "time": 0.44027517198248906, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4229, + "time": 0.44027517198248906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4254, + "time": 0.44277673545966234, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4254, + "time": 0.44277673545966234, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4278, + "time": 0.4452782989368355, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4278, + "time": 0.4452782989368355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4518, + "time": 0.47029393370856787, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4566, + "time": 0.47529706066291433, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4614, + "time": 0.48030018761726084, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4662, + "time": 0.4853033145716073, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4710, + "time": 0.4903064415259537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4734, + "time": 0.492808005003127, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4734, + "time": 0.492808005003127, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4758, + "time": 0.4953095684803002, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4782, + "time": 0.49781113195747345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4782, + "time": 0.49781113195747345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4902, + "time": 0.5103189493433395, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4926, + "time": 0.5128205128205129, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4926, + "time": 0.5128205128205129, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4950, + "time": 0.5153220762976861, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4950, + "time": 0.5153220762976861, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4950, + "time": 0.5153220762976861, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4974, + "time": 0.5178236397748593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4974, + "time": 0.5178236397748593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4998, + "time": 0.5203252032520325, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4998, + "time": 0.5203252032520325, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4998, + "time": 0.5203252032520325, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5023, + "time": 0.5228267667292058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5023, + "time": 0.5228267667292058, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5047, + "time": 0.525328330206379, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5047, + "time": 0.525328330206379, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5383, + "time": 0.5603502188868043, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5479, + "time": 0.5703564727954972, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5479, + "time": 0.5703564727954972, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5503, + "time": 0.5728580362726704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5503, + "time": 0.5728580362726704, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5527, + "time": 0.5753595997498437, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5527, + "time": 0.5753595997498437, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5527, + "time": 0.5753595997498437, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5551, + "time": 0.577861163227017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5551, + "time": 0.577861163227017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5575, + "time": 0.5803627267041901, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5575, + "time": 0.5803627267041901, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5575, + "time": 0.5803627267041901, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5671, + "time": 0.5903689806128831, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5671, + "time": 0.5903689806128831, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5695, + "time": 0.5928705440900562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5695, + "time": 0.5928705440900562, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5719, + "time": 0.5953721075672296, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5719, + "time": 0.5953721075672296, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5719, + "time": 0.5953721075672296, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5743, + "time": 0.5978736710444028, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5743, + "time": 0.5978736710444028, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5767, + "time": 0.600375234521576, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5767, + "time": 0.600375234521576, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6152, + "time": 0.6404002501563477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6176, + "time": 0.642901813633521, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6176, + "time": 0.642901813633521, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6200, + "time": 0.6454033771106943, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6200, + "time": 0.6454033771106943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6200, + "time": 0.6454033771106943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6224, + "time": 0.6479049405878675, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6224, + "time": 0.6479049405878675, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6248, + "time": 0.6504065040650407, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6248, + "time": 0.6504065040650407, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6248, + "time": 0.6504065040650407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6272, + "time": 0.6529080675422139, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6272, + "time": 0.6529080675422139, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6296, + "time": 0.6554096310193871, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6296, + "time": 0.6554096310193871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6536, + "time": 0.6804252657911195, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1057, - "time": 0.11006879299562226, + "noteOrder": 6561, + "time": 0.6829268292682927, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3649,18 +7352,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1105, - "time": 0.11507191994996874, + "noteOrder": 6561, + "time": 0.6829268292682927, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3677,13 +7380,13 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1153, - "time": 0.1200750469043152, + "noteOrder": 6585, + "time": 0.685428392745466, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3695,18 +7398,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1201, - "time": 0.12507817385866166, + "noteOrder": 6585, + "time": 0.685428392745466, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3723,13 +7426,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1826, - "time": 0.19011882426516574, + "noteOrder": 6585, + "time": 0.685428392745466, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3746,13 +7449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1874, - "time": 0.1951219512195122, + "noteOrder": 6609, + "time": 0.6879299562226392, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3769,13 +7472,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2066, - "time": 0.21513445903689804, + "noteOrder": 6609, + "time": 0.6879299562226392, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3792,13 +7495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 1, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2090, - "time": 0.2176360225140713, + "noteOrder": 6633, + "time": 0.6904315196998124, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3815,13 +7518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2162, - "time": 0.22514071294559101, + "noteOrder": 6633, + "time": 0.6904315196998124, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3833,16 +7536,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 2186, - "time": 0.22764227642276422, + "noteOrder": 6633, + "time": 0.6904315196998124, "position": { "x": 3, "y": 0 @@ -3861,13 +7564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2210, - "time": 0.23014383989993747, + "noteOrder": 6657, + "time": 0.6929330831769857, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3879,18 +7582,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2234, - "time": 0.23264540337711068, + "noteOrder": 6657, + "time": 0.6929330831769857, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3902,16 +7605,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2258, - "time": 0.23514696685428393, + "noteOrder": 6681, + "time": 0.6954346466541589, "position": { "x": 4, "y": 0 @@ -3930,13 +7633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2282, - "time": 0.23764853033145714, + "noteOrder": 6681, + "time": 0.6954346466541589, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3953,13 +7656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.2901813633520951, + "noteOrder": 6921, + "time": 0.7204502814258913, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3971,18 +7674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2835, - "time": 0.2951844903064415, + "noteOrder": 6945, + "time": 0.7229518449030644, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3994,16 +7697,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2883, - "time": 0.300187617260788, + "noteOrder": 6945, + "time": 0.7229518449030644, "position": { "x": 6, "y": 0 @@ -4022,11 +7725,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2931, - "time": 0.3051907442151344, + "noteOrder": 6969, + "time": 0.7254534083802376, "position": { "x": 6, "y": 0 @@ -4045,11 +7748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2979, - "time": 0.31019387116948094, + "noteOrder": 6969, + "time": 0.7254534083802376, "position": { "x": 4, "y": 0 @@ -4063,18 +7766,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 198, "indexInLine": 1, "isSliding": false, - "noteOrder": 3027, - "time": 0.3151969981238274, + "noteOrder": 6969, + "time": 0.7254534083802376, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4091,13 +7794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, - "time": 0.32020012507817386, + "noteOrder": 6993, + "time": 0.727954971857411, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4109,16 +7812,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3123, - "time": 0.3252032520325203, + "noteOrder": 6993, + "time": 0.727954971857411, "position": { "x": 6, "y": 0 @@ -4132,18 +7835,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3171, - "time": 0.3302063789868668, + "noteOrder": 7017, + "time": 0.7304565353345842, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4155,18 +7858,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3219, - "time": 0.3352095059412133, + "noteOrder": 7017, + "time": 0.7304565353345842, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4178,18 +7881,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.3402126328955597, + "noteOrder": 7305, + "time": 0.760475297060663, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4201,18 +7904,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, - "time": 0.3452157598499062, + "noteOrder": 7354, + "time": 0.7654784240150094, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4224,18 +7927,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, - "time": 0.3502188868042526, + "noteOrder": 7354, + "time": 0.7654784240150094, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4252,13 +7955,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3387, - "time": 0.3527204502814259, + "noteOrder": 7402, + "time": 0.7704815509693559, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4275,13 +7978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, - "time": 0.3502188868042526, + "noteOrder": 7498, + "time": 0.7804878048780489, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4293,18 +7996,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3387, - "time": 0.3527204502814259, + "noteOrder": 7522, + "time": 0.782989368355222, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4316,18 +8019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3411, - "time": 0.35522201375859913, + "noteOrder": 7522, + "time": 0.782989368355222, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4344,13 +8047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 219, "indexInLine": 1, "isSliding": false, - "noteOrder": 3435, - "time": 0.35772357723577236, + "noteOrder": 7546, + "time": 0.7854909318323953, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4362,16 +8065,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3411, - "time": 0.35522201375859913, + "noteOrder": 7570, + "time": 0.7879924953095685, "position": { "x": 7, "y": 0 @@ -4390,13 +8093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3435, - "time": 0.35772357723577236, + "noteOrder": 7570, + "time": 0.7879924953095685, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4413,11 +8116,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3748, - "time": 0.3902439024390244, + "noteOrder": 8074, + "time": 0.8405253283302064, "position": { "x": 7, "y": 0 @@ -4436,11 +8139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3796, - "time": 0.39524702939337086, + "noteOrder": 8099, + "time": 0.8430268918073797, "position": { "x": 7, "y": 0 @@ -4454,18 +8157,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3844, - "time": 0.4002501563477173, + "noteOrder": 8099, + "time": 0.8430268918073797, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4482,13 +8185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4132, - "time": 0.4302689180737961, + "noteOrder": 8123, + "time": 0.8455284552845529, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4500,18 +8203,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4180, - "time": 0.4352720450281426, + "noteOrder": 8123, + "time": 0.8455284552845529, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4528,13 +8231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, - "time": 0.44027517198248906, + "noteOrder": 8123, + "time": 0.8455284552845529, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4551,11 +8254,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4516, - "time": 0.47029393370856787, + "noteOrder": 8147, + "time": 0.8480300187617261, "position": { "x": 7, "y": 0 @@ -4569,18 +8272,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4564, - "time": 0.4752970606629143, + "noteOrder": 8147, + "time": 0.8480300187617261, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4592,18 +8295,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4612, - "time": 0.4803001876172608, + "noteOrder": 8171, + "time": 0.8505315822388994, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4620,13 +8323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4660, - "time": 0.48530331457160725, + "noteOrder": 8171, + "time": 0.8505315822388994, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4643,11 +8346,11 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4708, - "time": 0.49030644152595376, + "noteOrder": 8171, + "time": 0.8505315822388994, "position": { "x": 7, "y": 0 @@ -4666,13 +8369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4757, - "time": 0.49530956848030017, + "noteOrder": 8195, + "time": 0.8530331457160727, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4684,18 +8387,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4901, - "time": 0.5103189493433397, + "noteOrder": 8195, + "time": 0.8530331457160727, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4712,13 +8415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4949, - "time": 0.5153220762976861, + "noteOrder": 8219, + "time": 0.8555347091932458, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4730,18 +8433,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4997, - "time": 0.5203252032520325, + "noteOrder": 8219, + "time": 0.8555347091932458, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4758,11 +8461,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5381, - "time": 0.5603502188868043, + "noteOrder": 8651, + "time": 0.9005628517823641, "position": { "x": 7, "y": 0 @@ -4781,13 +8484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 250, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5477, - "time": 0.5703564727954972, + "noteOrder": 8675, + "time": 0.9030644152595372, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4804,13 +8507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5477, - "time": 0.5703564727954972, + "noteOrder": 8675, + "time": 0.9030644152595372, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4822,18 +8525,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5525, - "time": 0.5753595997498436, + "noteOrder": 8699, + "time": 0.9055659787367105, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4850,13 +8553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 250, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5573, - "time": 0.5803627267041902, + "noteOrder": 8699, + "time": 0.9055659787367105, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4868,18 +8571,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 251, "indexInLine": 1, "isSliding": false, - "noteOrder": 5669, - "time": 0.590368980612883, + "noteOrder": 8699, + "time": 0.9055659787367105, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4896,11 +8599,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5669, - "time": 0.590368980612883, + "noteOrder": 8723, + "time": 0.9080675422138837, "position": { "x": 7, "y": 0 @@ -4914,18 +8617,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5717, - "time": 0.5953721075672295, + "noteOrder": 8723, + "time": 0.9080675422138837, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4942,13 +8645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6150, - "time": 0.6404002501563477, + "noteOrder": 8747, + "time": 0.910569105691057, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4960,18 +8663,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 251, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6198, - "time": 0.6454033771106942, + "noteOrder": 8747, + "time": 0.910569105691057, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4988,11 +8691,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6246, - "time": 0.6504065040650406, + "noteOrder": 8747, + "time": 0.910569105691057, "position": { "x": 7, "y": 0 @@ -5011,13 +8714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6534, - "time": 0.6804252657911194, + "noteOrder": 8843, + "time": 0.9205753595997499, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5029,16 +8732,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6582, - "time": 0.6854283927454659, + "noteOrder": 8843, + "time": 0.9205753595997499, "position": { "x": 3, "y": 0 @@ -5052,16 +8755,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6630, - "time": 0.6904315196998124, + "noteOrder": 8868, + "time": 0.9230769230769231, "position": { "x": 3, "y": 0 @@ -5080,13 +8783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6919, - "time": 0.7204502814258912, + "noteOrder": 8868, + "time": 0.9230769230769231, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5098,18 +8801,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6967, - "time": 0.7254534083802376, + "noteOrder": 8892, + "time": 0.9255784865540964, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5126,11 +8829,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 254, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7303, - "time": 0.760475297060663, + "noteOrder": 8892, + "time": 0.9255784865540964, "position": { "x": 6, "y": 0 @@ -5144,18 +8847,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 255, "indexInLine": 1, "isSliding": false, - "noteOrder": 7351, - "time": 0.7654784240150094, + "noteOrder": 8892, + "time": 0.9255784865540964, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5172,13 +8875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7351, - "time": 0.7654784240150094, + "noteOrder": 8916, + "time": 0.9280800500312696, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5190,16 +8893,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 1, + "lineGroupId": 255, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7399, - "time": 0.7704815509693558, + "noteOrder": 8916, + "time": 0.9280800500312696, "position": { "x": 4, "y": 0 @@ -5213,18 +8916,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7495, - "time": 0.7804878048780488, + "noteOrder": 8940, + "time": 0.9305816135084428, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5236,18 +8939,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 255, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7543, - "time": 0.7854909318323953, + "noteOrder": 8940, + "time": 0.9305816135084428, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5264,13 +8967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8072, - "time": 0.8405253283302063, + "noteOrder": 8940, + "time": 0.9305816135084428, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5282,18 +8985,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8120, - "time": 0.8455284552845528, + "noteOrder": 9036, + "time": 0.9405878674171357, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5310,11 +9013,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8168, - "time": 0.8505315822388994, + "noteOrder": 9036, + "time": 0.9405878674171357, "position": { "x": 7, "y": 0 @@ -5333,13 +9036,13 @@ "isPlayAudio": false }, { - "lineGroupId": 250, - "indexInLine": 0, + "lineGroupId": 258, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8648, - "time": 0.9005628517823641, + "noteOrder": 9132, + "time": 0.9505941213258287, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5356,13 +9059,13 @@ "isPlayAudio": false }, { - "lineGroupId": 251, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8696, - "time": 0.9055659787367105, + "noteOrder": 9132, + "time": 0.9505941213258287, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5379,13 +9082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 260, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8744, - "time": 0.9105691056910569, + "noteOrder": 9228, + "time": 0.9606003752345217, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5397,18 +9100,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, + "lineGroupId": 262, "indexInLine": 1, "isSliding": false, - "noteOrder": 8840, - "time": 0.9205753595997499, + "noteOrder": 9228, + "time": 0.9606003752345217, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5425,36 +9128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 254, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 8840, - "time": 0.9205753595997499, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 255, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8888, - "time": 0.9255784865540964, + "noteOrder": 9252, + "time": 0.9631019387116948, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5471,13 +9151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8936, - "time": 0.9305816135084427, + "noteOrder": 9252, + "time": 0.9631019387116948, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5489,16 +9169,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 4, "isSliding": false, - "noteOrder": 9033, - "time": 0.9405878674171357, + "noteOrder": 9276, + "time": 0.9656035021888681, "position": { "x": 6, "y": 0 @@ -5512,18 +9192,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 258, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 5, "isSliding": false, - "noteOrder": 9033, - "time": 0.9405878674171357, + "noteOrder": 9276, + "time": 0.9656035021888681, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5540,13 +9220,13 @@ "isPlayAudio": false }, { - "lineGroupId": 258, + "lineGroupId": 263, "indexInLine": 1, "isSliding": false, - "noteOrder": 9129, - "time": 0.9505941213258285, + "noteOrder": 9276, + "time": 0.9656035021888681, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5558,18 +9238,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9129, - "time": 0.9505941213258285, + "noteOrder": 9300, + "time": 0.9681050656660413, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5586,11 +9266,11 @@ "isPlayAudio": false }, { - "lineGroupId": 260, - "indexInLine": 1, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9225, - "time": 0.9606003752345216, + "noteOrder": 9300, + "time": 0.9681050656660413, "position": { "x": 6, "y": 0 @@ -5609,13 +9289,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 4, "isSliding": false, - "noteOrder": 9225, - "time": 0.9606003752345216, + "noteOrder": 9324, + "time": 0.9706066291432146, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5627,18 +9307,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 263, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 9273, - "time": 0.9656035021888679, + "noteOrder": 9324, + "time": 0.9706066291432146, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5656,10 +9336,10 @@ }, { "lineGroupId": 264, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9321, - "time": 0.9706066291432145, + "noteOrder": 9324, + "time": 0.9706066291432146, "position": { "x": 7, "y": 0 @@ -5679,9 +9359,9 @@ }, { "lineGroupId": 264, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9369, + "noteOrder": 9372, "time": 0.975609756097561, "position": { "x": 7, diff --git "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1b.json" "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1b.json" index 19a5a1b2..cce91144 100644 --- "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1b.json" +++ "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/302_difficulty_1b.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 288, - "time": 0.0300187617260788, + "time": 0.030018761726078803, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 288, - "time": 0.0300187617260788, + "time": 0.030018761726078803, "position": { "x": 4, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 480, - "time": 0.050031269543464665, + "noteOrder": 481, + "time": 0.05003126954346467, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 577, - "time": 0.0600375234521576, + "time": 0.060037523452157605, "position": { "x": 4, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 817, - "time": 0.08505315822388992, + "time": 0.08505315822388994, "position": { "x": 7, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 865, - "time": 0.0900562851782364, + "time": 0.09005628517823641, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 937, - "time": 0.0975609756097561, + "time": 0.09756097560975611, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1249, + "noteOrder": 1250, "time": 0.13008130081300812, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1297, - "time": 0.13508442776735458, + "noteOrder": 1298, + "time": 0.1350844277673546, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1345, + "noteOrder": 1346, "time": 0.14008755472170106, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1393, - "time": 0.14509068167604755, + "noteOrder": 1394, + "time": 0.14509068167604752, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1441, + "noteOrder": 1442, "time": 0.150093808630394, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1490, "time": 0.15509693558474047, "position": { "x": 4, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1537, + "noteOrder": 1538, "time": 0.16010006253908693, "position": { "x": 6, @@ -594,7 +594,7 @@ }, { "noteOrder": 1586, - "time": 0.1651031894934334, + "time": 0.16510318949343342, "position": { "x": 4, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1634, - "time": 0.17010631644777985, + "time": 0.17010631644777988, "position": { "x": 6, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1682, - "time": 0.1751094434021263, + "time": 0.17510944340212634, "position": { "x": 6, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1730, - "time": 0.1801125703564728, + "time": 0.18011257035647282, "position": { "x": 4, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1850, - "time": 0.19262038774233894, + "time": 0.19262038774233897, "position": { "x": 4, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1874, - "time": 0.1951219512195122, + "time": 0.19512195121951223, "position": { "x": 6, "y": 0 @@ -754,7 +754,7 @@ }, { "noteOrder": 1922, - "time": 0.20012507817385866, + "time": 0.2001250781738587, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1946, - "time": 0.2026266416510319, + "noteOrder": 1947, + "time": 0.20262664165103192, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2018, - "time": 0.21013133208255158, + "noteOrder": 2019, + "time": 0.2101313320825516, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2066, - "time": 0.21513445903689804, + "noteOrder": 2067, + "time": 0.21513445903689807, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2114, + "noteOrder": 2115, "time": 0.22013758599124453, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2162, + "noteOrder": 2163, "time": 0.22514071294559101, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2211, "time": 0.23014383989993747, "position": { "x": 3, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2258, + "noteOrder": 2259, "time": 0.23514696685428393, "position": { "x": 5, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2306, - "time": 0.2401500938086304, + "noteOrder": 2307, + "time": 0.24015009380863042, "position": { "x": 6, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2354, - "time": 0.24515322076297688, + "noteOrder": 2355, + "time": 0.24515322076297685, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3651, + "noteOrder": 3653, "time": 0.3802376485303315, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3700, - "time": 0.3852407754846779, + "noteOrder": 3701, + "time": 0.38524077548467794, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3748, - "time": 0.3902439024390244, + "noteOrder": 3749, + "time": 0.39024390243902446, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3772, + "noteOrder": 3773, "time": 0.39274546591619763, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3796, - "time": 0.39524702939337086, + "noteOrder": 3797, + "time": 0.3952470293933709, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.3977485928705441, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3844, - "time": 0.4002501563477173, + "noteOrder": 3845, + "time": 0.4002501563477174, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3868, - "time": 0.40275171982489055, + "noteOrder": 3869, + "time": 0.4027517198248906, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3892, - "time": 0.4052532833020638, + "noteOrder": 3893, + "time": 0.40525328330206384, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3940, + "noteOrder": 3941, "time": 0.41025641025641024, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3964, - "time": 0.41275797373358347, + "noteOrder": 3965, + "time": 0.4127579737335835, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3988, - "time": 0.41525953721075676, + "noteOrder": 3989, + "time": 0.4152595372107567, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4036, - "time": 0.42026266416510316, + "noteOrder": 4037, + "time": 0.4202626641651032, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4060, - "time": 0.4227642276422764, + "noteOrder": 4061, + "time": 0.42276422764227645, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4084, + "noteOrder": 4085, "time": 0.4252657911194497, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4132, - "time": 0.4302689180737961, + "noteOrder": 4133, + "time": 0.43026891807379614, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4157, "time": 0.43277048155096937, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4181, "time": 0.4352720450281426, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4204, - "time": 0.4377736085053158, + "noteOrder": 4205, + "time": 0.4377736085053159, "position": { "x": 6, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4228, + "noteOrder": 4229, "time": 0.44027517198248906, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4252, - "time": 0.4427767354596623, + "noteOrder": 4254, + "time": 0.44277673545966234, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 4278, "time": 0.4452782989368355, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 4326, "time": 0.45028142589118203, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4350, "time": 0.45278298936835526, "position": { "x": 4, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4372, - "time": 0.45528455284552843, + "noteOrder": 4374, + "time": 0.4552845528455285, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.46529080675422135, + "noteOrder": 4470, + "time": 0.4652908067542214, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4468, - "time": 0.46529080675422135, + "noteOrder": 4470, + "time": 0.4652908067542214, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.47029393370856787, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4564, - "time": 0.4752970606629143, + "noteOrder": 4566, + "time": 0.47529706066291433, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4612, - "time": 0.4803001876172608, + "noteOrder": 4614, + "time": 0.48030018761726084, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4660, - "time": 0.48530331457160725, + "noteOrder": 4662, + "time": 0.4853033145716073, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4708, - "time": 0.49030644152595376, + "noteOrder": 4710, + "time": 0.4903064415259537, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4757, - "time": 0.49530956848030017, + "noteOrder": 4758, + "time": 0.4953095684803002, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4805, + "noteOrder": 4806, "time": 0.5003126954346466, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4853, - "time": 0.5053158223889931, + "noteOrder": 4854, + "time": 0.5053158223889932, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4901, - "time": 0.5103189493433397, + "noteOrder": 4902, + "time": 0.5103189493433395, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4925, - "time": 0.5128205128205128, + "noteOrder": 4926, + "time": 0.5128205128205129, "position": { "x": 4, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4949, + "noteOrder": 4950, "time": 0.5153220762976861, "position": { "x": 7, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.5178236397748593, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4997, + "noteOrder": 4998, "time": 0.5203252032520325, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.5228267667292058, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5045, - "time": 0.5253283302063789, + "noteOrder": 5047, + "time": 0.525328330206379, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5093, + "noteOrder": 5095, "time": 0.5303314571607255, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5117, - "time": 0.5328330206378986, + "noteOrder": 5119, + "time": 0.5328330206378987, "position": { "x": 6, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5141, + "noteOrder": 5143, "time": 0.535334584115072, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5189, - "time": 0.5403377110694183, + "noteOrder": 5191, + "time": 0.5403377110694184, "position": { "x": 7, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5237, + "noteOrder": 5239, "time": 0.5453408380237649, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5285, + "noteOrder": 5287, "time": 0.5503439649781113, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5333, + "noteOrder": 5335, "time": 0.5553470919324578, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5381, + "noteOrder": 5383, "time": 0.5603502188868043, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5405, - "time": 0.5628517823639775, + "noteOrder": 5407, + "time": 0.5628517823639776, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5429, - "time": 0.5653533458411507, + "noteOrder": 5431, + "time": 0.5653533458411508, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5453, + "noteOrder": 5455, "time": 0.5678549093183239, "position": { "x": 4, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5573, - "time": 0.5803627267041902, + "noteOrder": 5575, + "time": 0.5803627267041901, "position": { "x": 3, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5597, + "noteOrder": 5599, "time": 0.5828642901813633, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5621, - "time": 0.5853658536585366, + "noteOrder": 5623, + "time": 0.5853658536585367, "position": { "x": 3, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5645, - "time": 0.5878674171357098, + "noteOrder": 5647, + "time": 0.5878674171357099, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.6053783614759225, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5862, - "time": 0.6103814884302688, + "noteOrder": 5864, + "time": 0.610381488430269, "position": { "x": 4, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5910, + "noteOrder": 5912, "time": 0.6153846153846154, "position": { "x": 6, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 6006, - "time": 0.6253908692933083, + "noteOrder": 6008, + "time": 0.6253908692933084, "position": { "x": 6, "y": 0 @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6054, + "noteOrder": 6056, "time": 0.6303939962476548, "position": { "x": 6, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6102, - "time": 0.6353971232020013, + "noteOrder": 6104, + "time": 0.6353971232020014, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6342, - "time": 0.6604127579737336, + "noteOrder": 6344, + "time": 0.6604127579737337, "position": { "x": 5, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6390, + "noteOrder": 6392, "time": 0.66541588492808, "position": { "x": 5, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6438, + "noteOrder": 6440, "time": 0.6704190118824266, "position": { "x": 5, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6486, - "time": 0.675422138836773, + "noteOrder": 6488, + "time": 0.6754221388367729, "position": { "x": 5, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6726, - "time": 0.7004377736085052, + "noteOrder": 6729, + "time": 0.7004377736085053, "position": { "x": 4, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6774, + "noteOrder": 6777, "time": 0.7054409005628518, "position": { "x": 6, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6919, - "time": 0.7204502814258912, + "noteOrder": 6921, + "time": 0.7204502814258913, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 6943, + "noteOrder": 6945, "time": 0.7229518449030644, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6967, + "noteOrder": 6969, "time": 0.7254534083802376, "position": { "x": 3, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6991, - "time": 0.7279549718574109, + "noteOrder": 6993, + "time": 0.727954971857411, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 7015, - "time": 0.7304565353345841, + "noteOrder": 7017, + "time": 0.7304565353345842, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 7039, + "noteOrder": 7041, "time": 0.7329580988117574, "position": { "x": 4, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 7063, + "noteOrder": 7065, "time": 0.7354596622889306, "position": { "x": 3, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 7111, + "noteOrder": 7113, "time": 0.7404627892432771, "position": { "x": 6, @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 7135, - "time": 0.7429643527204502, + "noteOrder": 7137, + "time": 0.7429643527204504, "position": { "x": 4, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 7159, + "noteOrder": 7161, "time": 0.7454659161976236, "position": { "x": 6, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 7207, - "time": 0.7504690431519699, + "noteOrder": 7209, + "time": 0.75046904315197, "position": { "x": 4, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 7231, + "noteOrder": 7233, "time": 0.7529706066291433, "position": { "x": 6, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 7255, - "time": 0.7554721701063164, + "noteOrder": 7257, + "time": 0.7554721701063165, "position": { "x": 4, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 7303, + "noteOrder": 7305, "time": 0.760475297060663, "position": { "x": 7, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 7327, - "time": 0.7629768605378361, + "noteOrder": 7330, + "time": 0.7629768605378362, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 7351, + "noteOrder": 7354, "time": 0.7654784240150094, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 7375, + "noteOrder": 7378, "time": 0.7679799874921827, "position": { "x": 4, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 7399, - "time": 0.7704815509693558, + "noteOrder": 7402, + "time": 0.7704815509693559, "position": { "x": 7, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 7423, + "noteOrder": 7426, "time": 0.7729831144465291, "position": { "x": 6, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 7447, + "noteOrder": 7450, "time": 0.7754846779237023, "position": { "x": 7, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 7495, - "time": 0.7804878048780488, + "noteOrder": 7498, + "time": 0.7804878048780489, "position": { "x": 4, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 7543, + "noteOrder": 7546, "time": 0.7854909318323953, "position": { "x": 6, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 7591, - "time": 0.7904940587867417, + "noteOrder": 7594, + "time": 0.7904940587867418, "position": { "x": 4, "y": 0 @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 7687, - "time": 0.8005003126954346, + "noteOrder": 7690, + "time": 0.8005003126954348, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 7735, - "time": 0.8055034396497811, + "noteOrder": 7738, + "time": 0.8055034396497812, "position": { "x": 6, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7783, - "time": 0.8105065666041276, + "noteOrder": 7786, + "time": 0.8105065666041277, "position": { "x": 4, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 7831, - "time": 0.815509693558474, + "noteOrder": 7834, + "time": 0.8155096935584741, "position": { "x": 4, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7879, + "noteOrder": 7882, "time": 0.8205128205128205, "position": { "x": 6, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7928, - "time": 0.8255159474671669, + "noteOrder": 7930, + "time": 0.825515947467167, "position": { "x": 6, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 7976, - "time": 0.8305190744215135, + "noteOrder": 7978, + "time": 0.8305190744215134, "position": { "x": 4, "y": 0 @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 8024, + "noteOrder": 8026, "time": 0.83552220137586, "position": { "x": 4, @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 8072, - "time": 0.8405253283302063, + "noteOrder": 8074, + "time": 0.8405253283302064, "position": { "x": 3, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 8096, + "noteOrder": 8099, "time": 0.8430268918073797, "position": { "x": 6, @@ -2993,8 +2993,8 @@ "isPlayAudio": false }, { - "noteOrder": 8120, - "time": 0.8455284552845528, + "noteOrder": 8123, + "time": 0.8455284552845529, "position": { "x": 3, "y": 0 @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 8144, + "noteOrder": 8147, "time": 0.8480300187617261, "position": { "x": 6, @@ -3033,7 +3033,7 @@ "isPlayAudio": false }, { - "noteOrder": 8168, + "noteOrder": 8171, "time": 0.8505315822388994, "position": { "x": 3, @@ -3053,8 +3053,8 @@ "isPlayAudio": false }, { - "noteOrder": 8192, - "time": 0.8530331457160725, + "noteOrder": 8195, + "time": 0.8530331457160727, "position": { "x": 4, "y": 0 @@ -3073,7 +3073,7 @@ "isPlayAudio": false }, { - "noteOrder": 8216, + "noteOrder": 8219, "time": 0.8555347091932458, "position": { "x": 3, @@ -3093,8 +3093,8 @@ "isPlayAudio": false }, { - "noteOrder": 8264, - "time": 0.8605378361475922, + "noteOrder": 8267, + "time": 0.8605378361475923, "position": { "x": 6, "y": 0 @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 8312, + "noteOrder": 8315, "time": 0.8655409631019387, "position": { "x": 4, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 8360, + "noteOrder": 8363, "time": 0.8705440900562852, "position": { "x": 6, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 8408, - "time": 0.8755472170106317, + "noteOrder": 8411, + "time": 0.8755472170106318, "position": { "x": 5, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 8456, + "noteOrder": 8459, "time": 0.8805503439649781, "position": { "x": 5, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 8504, - "time": 0.8855534709193246, + "noteOrder": 8507, + "time": 0.8855534709193247, "position": { "x": 4, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 8552, + "noteOrder": 8555, "time": 0.890556597873671, "position": { "x": 6, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 8648, + "noteOrder": 8651, "time": 0.9005628517823641, "position": { "x": 7, @@ -3253,7 +3253,7 @@ "isPlayAudio": false }, { - "noteOrder": 8696, + "noteOrder": 8699, "time": 0.9055659787367105, "position": { "x": 5, @@ -3273,8 +3273,8 @@ "isPlayAudio": false }, { - "noteOrder": 8744, - "time": 0.9105691056910569, + "noteOrder": 8747, + "time": 0.910569105691057, "position": { "x": 4, "y": 0 @@ -3293,8 +3293,8 @@ "isPlayAudio": false }, { - "noteOrder": 8792, - "time": 0.9155722326454033, + "noteOrder": 8795, + "time": 0.9155722326454034, "position": { "x": 3, "y": 0 @@ -3313,7 +3313,7 @@ "isPlayAudio": false }, { - "noteOrder": 8840, + "noteOrder": 8843, "time": 0.9205753595997499, "position": { "x": 3, @@ -3333,7 +3333,7 @@ "isPlayAudio": false }, { - "noteOrder": 8888, + "noteOrder": 8892, "time": 0.9255784865540964, "position": { "x": 5, @@ -3353,8 +3353,8 @@ "isPlayAudio": false }, { - "noteOrder": 8936, - "time": 0.9305816135084427, + "noteOrder": 8940, + "time": 0.9305816135084428, "position": { "x": 6, "y": 0 @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 8985, - "time": 0.9355847404627893, + "noteOrder": 8988, + "time": 0.9355847404627894, "position": { "x": 7, "y": 0 @@ -3393,7 +3393,7 @@ "isPlayAudio": false }, { - "noteOrder": 9033, + "noteOrder": 9036, "time": 0.9405878674171357, "position": { "x": 7, @@ -3413,8 +3413,8 @@ "isPlayAudio": false }, { - "noteOrder": 9081, - "time": 0.9455909943714822, + "noteOrder": 9084, + "time": 0.9455909943714823, "position": { "x": 5, "y": 0 @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 9129, - "time": 0.9505941213258285, + "noteOrder": 9132, + "time": 0.9505941213258287, "position": { "x": 4, "y": 0 @@ -3453,8 +3453,8 @@ "isPlayAudio": false }, { - "noteOrder": 9177, - "time": 0.9555972482801752, + "noteOrder": 9180, + "time": 0.9555972482801751, "position": { "x": 3, "y": 0 @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 9225, - "time": 0.9606003752345216, + "noteOrder": 9228, + "time": 0.9606003752345217, "position": { "x": 3, "y": 0 @@ -3493,8 +3493,8 @@ "isPlayAudio": false }, { - "noteOrder": 9273, - "time": 0.9656035021888679, + "noteOrder": 9276, + "time": 0.9656035021888681, "position": { "x": 5, "y": 0 @@ -3513,8 +3513,8 @@ "isPlayAudio": false }, { - "noteOrder": 9321, - "time": 0.9706066291432145, + "noteOrder": 9324, + "time": 0.9706066291432146, "position": { "x": 6, "y": 0 @@ -3533,7 +3533,7 @@ "isPlayAudio": false }, { - "noteOrder": 9369, + "noteOrder": 9372, "time": 0.975609756097561, "position": { "x": 7, @@ -3556,10 +3556,10 @@ "lineNodes": [ { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 961, - "time": 0.10006253908692933, + "time": 0.10006253908692934, "position": { "x": 6, "y": 0 @@ -3579,10 +3579,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1009, - "time": 0.10506566604127579, + "time": 0.1050656660412758, "position": { "x": 6, "y": 0 @@ -3602,10 +3602,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1153, - "time": 0.1200750469043152, + "time": 0.12007504690431521, "position": { "x": 4, "y": 0 @@ -3625,9 +3625,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1201, + "noteOrder": 1202, "time": 0.12507817385866166, "position": { "x": 4, @@ -3648,9 +3648,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.2501563477173233, "position": { "x": 6, @@ -3671,10 +3671,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2450, - "time": 0.25515947467166983, + "noteOrder": 2451, + "time": 0.2551594746716698, "position": { "x": 6, "y": 0 @@ -3694,9 +3694,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2498, + "noteOrder": 2499, "time": 0.26016260162601623, "position": { "x": 4, @@ -3717,9 +3717,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2546, + "noteOrder": 2547, "time": 0.26516572858036275, "position": { "x": 4, @@ -3740,10 +3740,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.27016885553470915, + "noteOrder": 2595, + "time": 0.2701688555347092, "position": { "x": 3, "y": 0 @@ -3763,7 +3763,7 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2691, "time": 0.2801751094434021, @@ -3786,10 +3786,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2594, - "time": 0.27016885553470915, + "noteOrder": 2595, + "time": 0.2701688555347092, "position": { "x": 7, "y": 0 @@ -3809,7 +3809,7 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2691, "time": 0.2801751094434021, @@ -3832,10 +3832,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2787, - "time": 0.2901813633520951, + "noteOrder": 2788, + "time": 0.29018136335209505, "position": { "x": 7, "y": 0 @@ -3855,10 +3855,10 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2835, - "time": 0.2951844903064415, + "noteOrder": 2836, + "time": 0.29518449030644156, "position": { "x": 6, "y": 0 @@ -3878,9 +3878,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2883, + "noteOrder": 2884, "time": 0.300187617260788, "position": { "x": 3, @@ -3901,10 +3901,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2931, - "time": 0.3051907442151344, + "noteOrder": 2932, + "time": 0.3051907442151345, "position": { "x": 4, "y": 0 @@ -3924,9 +3924,9 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2979, + "noteOrder": 2980, "time": 0.31019387116948094, "position": { "x": 6, @@ -3947,9 +3947,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3027, + "noteOrder": 3028, "time": 0.3151969981238274, "position": { "x": 7, @@ -3970,9 +3970,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3075, + "noteOrder": 3076, "time": 0.32020012507817386, "position": { "x": 4, @@ -3993,10 +3993,10 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, - "time": 0.3252032520325203, + "noteOrder": 3124, + "time": 0.3252032520325204, "position": { "x": 3, "y": 0 @@ -4016,10 +4016,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, - "time": 0.3302063789868668, + "noteOrder": 3172, + "time": 0.33020637898686683, "position": { "x": 7, "y": 0 @@ -4039,9 +4039,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3219, + "noteOrder": 3220, "time": 0.3352095059412133, "position": { "x": 6, @@ -4062,10 +4062,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.3402126328955597, + "noteOrder": 3268, + "time": 0.34021263289555975, "position": { "x": 3, "y": 0 @@ -4085,9 +4085,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3315, + "noteOrder": 3316, "time": 0.3452157598499062, "position": { "x": 4, @@ -4108,10 +4108,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3363, - "time": 0.3502188868042526, + "noteOrder": 3364, + "time": 0.35021888680425267, "position": { "x": 7, "y": 0 @@ -4131,10 +4131,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3459, - "time": 0.3602251407129456, + "noteOrder": 3460, + "time": 0.36022514071294565, "position": { "x": 7, "y": 0 @@ -4154,9 +4154,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3411, + "noteOrder": 3412, "time": 0.35522201375859913, "position": { "x": 3, @@ -4177,10 +4177,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3459, - "time": 0.3602251407129456, + "noteOrder": 3460, + "time": 0.36022514071294565, "position": { "x": 3, "y": 0 @@ -4200,9 +4200,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5477, + "noteOrder": 5479, "time": 0.5703564727954972, "position": { "x": 6, @@ -4223,10 +4223,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5525, - "time": 0.5753595997498436, + "noteOrder": 5527, + "time": 0.5753595997498437, "position": { "x": 6, "y": 0 @@ -4246,10 +4246,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5669, - "time": 0.590368980612883, + "noteOrder": 5671, + "time": 0.5903689806128831, "position": { "x": 4, "y": 0 @@ -4269,10 +4269,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5717, - "time": 0.5953721075672295, + "noteOrder": 5719, + "time": 0.5953721075672296, "position": { "x": 4, "y": 0 @@ -4292,9 +4292,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5765, + "noteOrder": 5767, "time": 0.600375234521576, "position": { "x": 7, @@ -4315,9 +4315,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5814, + "noteOrder": 5816, "time": 0.6053783614759225, "position": { "x": 7, @@ -4338,9 +4338,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5958, + "noteOrder": 5960, "time": 0.6203877423389619, "position": { "x": 3, @@ -4361,10 +4361,10 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6006, - "time": 0.6253908692933083, + "noteOrder": 6008, + "time": 0.6253908692933084, "position": { "x": 3, "y": 0 @@ -4384,9 +4384,9 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6822, + "noteOrder": 6825, "time": 0.7104440275171983, "position": { "x": 6, @@ -4407,9 +4407,9 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6871, + "noteOrder": 6873, "time": 0.7154471544715447, "position": { "x": 6, @@ -4430,9 +4430,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6822, + "noteOrder": 6825, "time": 0.7104440275171983, "position": { "x": 4, @@ -4453,9 +4453,9 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6871, + "noteOrder": 6873, "time": 0.7154471544715447, "position": { "x": 4, diff --git "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/info.json" "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/info.json" index 42bfadb6..e5432ff2 100644 --- "a/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/info.json" +++ "b/tracks/\343\201\206\343\201\243\343\201\233\343\201\207\343\202\217/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u3046\u3063\u305b\u3047\u308f", - "SongLength": "144.875102", + "SongLength": "134.922449", "SongAuthorName": "Ado", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1a.json" "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1a.json" index 368a7fd6..54d0a57f 100644 --- "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1a.json" +++ "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1a.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 216, - "time": 0.038834951456310676, + "time": 0.03883495145631068, "position": { "x": 6, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 264, - "time": 0.04746494066882416, + "noteOrder": 265, + "time": 0.04746494066882417, "position": { "x": 4, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.05609492988133765, "position": { "x": 6, @@ -114,7 +114,7 @@ }, { "noteOrder": 361, - "time": 0.06472491909385113, + "time": 0.06472491909385114, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 649, - "time": 0.11650485436893203, + "time": 0.11650485436893204, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 721, - "time": 0.12944983818770225, + "time": 0.12944983818770228, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.1423948220064725, "position": { "x": 5, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.14670981661272922, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.15102481121898598, "position": { "x": 6, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 841, + "noteOrder": 842, "time": 0.15102481121898598, "position": { "x": 4, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 865, - "time": 0.1553398058252427, + "noteOrder": 866, + "time": 0.15533980582524273, "position": { "x": 7, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 889, + "noteOrder": 890, "time": 0.15965480043149946, "position": { "x": 5, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 913, + "noteOrder": 914, "time": 0.16396979503775622, "position": { "x": 3, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 937, - "time": 0.16828478964401294, + "noteOrder": 938, + "time": 0.16828478964401297, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 937, - "time": 0.16828478964401294, + "noteOrder": 938, + "time": 0.16828478964401297, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1130, - "time": 0.20280474649406688, + "time": 0.2028047464940669, "position": { "x": 3, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1202, - "time": 0.2157497303128371, + "time": 0.21574973031283712, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.2373247033441208, + "noteOrder": 1323, + "time": 0.23732470334412084, "position": { "x": 2, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1515, "time": 0.27184466019417475, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.284789644012945, "position": { "x": 3, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1599, "time": 0.28694714131607335, "position": { "x": 5, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2977346278317152, "position": { "x": 2, @@ -754,7 +754,7 @@ }, { "noteOrder": 1731, - "time": 0.3106796116504854, + "time": 0.31067961165048547, "position": { "x": 7, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1731, - "time": 0.3106796116504854, + "time": 0.31067961165048547, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.34088457389428267, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1911, + "noteOrder": 1912, "time": 0.34304207119741104, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3754045307443366, + "noteOrder": 2092, + "time": 0.37540453074433655, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2164, "time": 0.3883495145631068, "position": { "x": 3, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2175, + "noteOrder": 2176, "time": 0.39050701186623515, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3926645091693635, + "noteOrder": 2188, + "time": 0.3926645091693636, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3926645091693635, + "noteOrder": 2188, + "time": 0.3926645091693636, "position": { "x": 3, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.4099244875943905, + "noteOrder": 2284, + "time": 0.40992448759439054, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2295, - "time": 0.41208198489751885, + "noteOrder": 2296, + "time": 0.4120819848975189, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.43581445523193096, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.4444444444444444, + "noteOrder": 2477, + "time": 0.4444444444444445, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.45738942826321466, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2560, + "noteOrder": 2561, "time": 0.459546925566343, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.46170442286947144, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.46170442286947144, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.4703344120819849, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.47896440129449835, + "noteOrder": 2669, + "time": 0.4789644012944984, "position": { "x": 5, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.48759439050701187, + "noteOrder": 2717, + "time": 0.4875943905070119, "position": { "x": 3, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.4962243797195253, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2788, + "noteOrder": 2789, "time": 0.5005393743257821, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.5048543689320388, "position": { "x": 8, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.5091693635382956, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.5091693635382956, "position": { "x": 6, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.5134843581445523, + "noteOrder": 2861, + "time": 0.5134843581445524, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.5134843581445523, + "noteOrder": 2861, + "time": 0.5134843581445524, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2884, - "time": 0.517799352750809, + "noteOrder": 2886, + "time": 0.5177993527508091, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2896, + "noteOrder": 2898, "time": 0.5199568500539374, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2908, - "time": 0.5221143473570657, + "noteOrder": 2910, + "time": 0.5221143473570659, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2920, + "noteOrder": 2922, "time": 0.5242718446601942, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2932, + "noteOrder": 2934, "time": 0.5264293419633226, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2946, "time": 0.5285868392664509, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 2958, "time": 0.5307443365695793, "position": { "x": 7, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.5480043149946062, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.5480043149946062, "position": { "x": 7, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5738942826321467, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5782092772384034, "position": { "x": 8, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.5825242718446602, + "noteOrder": 3246, + "time": 0.5825242718446603, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3342, "time": 0.5997842502696871, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3461, - "time": 0.6213592233009708, + "noteOrder": 3463, + "time": 0.6213592233009709, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 3473, - "time": 0.6235167206040992, + "noteOrder": 3475, + "time": 0.6235167206040994, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3581, - "time": 0.6429341963322545, + "noteOrder": 3583, + "time": 0.6429341963322546, "position": { "x": 2, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3631, "time": 0.651564185544768, "position": { "x": 8, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3679, "time": 0.6601941747572816, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3726, - "time": 0.6688241639697949, + "noteOrder": 3727, + "time": 0.668824163969795, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.7119741100323624, + "noteOrder": 3968, + "time": 0.7119741100323626, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.7162891046386192, "position": { "x": 2, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.7206040992448759, + "noteOrder": 4016, + "time": 0.720604099244876, "position": { "x": 7, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4110, + "noteOrder": 4112, "time": 0.7378640776699029, "position": { "x": 5, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4230, - "time": 0.7594390507011866, + "noteOrder": 4232, + "time": 0.7594390507011867, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4242, + "noteOrder": 4244, "time": 0.7615965480043151, "position": { "x": 5, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4352, "time": 0.7810140237324703, "position": { "x": 8, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7896440129449839, + "noteOrder": 4400, + "time": 0.7896440129449838, "position": { "x": 2, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4687, - "time": 0.8414239482200646, + "noteOrder": 4689, + "time": 0.8414239482200647, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.854368932038835, + "noteOrder": 4761, + "time": 0.8543689320388349, "position": { "x": 7, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4771, + "noteOrder": 4773, "time": 0.8565264293419633, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.8673139158576051, + "noteOrder": 4833, + "time": 0.8673139158576052, "position": { "x": 8, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.8759439050701187, + "noteOrder": 4881, + "time": 0.8759439050701188, "position": { "x": 2, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5072, - "time": 0.9104638619201726, + "noteOrder": 5074, + "time": 0.9104638619201727, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.9234088457389429, "position": { "x": 3, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5156, - "time": 0.9255663430420712, + "noteOrder": 5158, + "time": 0.9255663430420713, "position": { "x": 5, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.9363538295577131, "position": { "x": 2, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5264, + "noteOrder": 5266, "time": 0.9449838187702265, "position": { "x": 8, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5288, - "time": 0.9492988133764833, + "noteOrder": 5290, + "time": 0.9492988133764834, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5288, - "time": 0.9492988133764833, + "noteOrder": 5290, + "time": 0.9492988133764834, "position": { "x": 7, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.95361380798274, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.95361380798274, "position": { "x": 6, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5336, - "time": 0.9579288025889967, + "noteOrder": 5338, + "time": 0.9579288025889968, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5348, - "time": 0.960086299892125, + "noteOrder": 5350, + "time": 0.9600862998921251, "position": { "x": 5, "y": 0 @@ -2196,7 +2196,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.017259978425026967, @@ -2219,7 +2219,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.02157497303128371, @@ -2242,10 +2242,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 144, - "time": 0.025889967637540454, + "time": 0.02588996763754045, "position": { "x": 7, "y": 0 @@ -2265,7 +2265,7 @@ }, { "lineGroupId": 1, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 168, "time": 0.030204962243797196, @@ -2288,7 +2288,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.034519956850053934, @@ -2311,10 +2311,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 216, - "time": 0.038834951456310676, + "time": 0.03883495145631068, "position": { "x": 4, "y": 0 @@ -2334,7 +2334,7 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 240, "time": 0.04314994606256742, @@ -2357,10 +2357,10 @@ }, { "lineGroupId": 5, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 264, - "time": 0.04746494066882416, + "noteOrder": 265, + "time": 0.04746494066882417, "position": { "x": 3, "y": 0 @@ -2380,10 +2380,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.05177993527508091, + "noteOrder": 289, + "time": 0.0517799352750809, "position": { "x": 7, "y": 0 @@ -2403,9 +2403,9 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 312, + "noteOrder": 313, "time": 0.05609492988133765, "position": { "x": 7, @@ -2426,7 +2426,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 337, "time": 0.06040992448759439, @@ -2449,10 +2449,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, - "time": 0.06472491909385113, + "time": 0.06472491909385114, "position": { "x": 3, "y": 0 @@ -2472,7 +2472,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.06903991370010787, @@ -2495,7 +2495,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 421, "time": 0.07551240560949299, @@ -2518,10 +2518,10 @@ }, { "lineGroupId": 12, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 433, - "time": 0.07766990291262135, + "time": 0.07766990291262137, "position": { "x": 6, "y": 0 @@ -2541,7 +2541,7 @@ }, { "lineGroupId": 12, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 445, "time": 0.07982740021574973, @@ -2564,7 +2564,7 @@ }, { "lineGroupId": 12, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 457, "time": 0.08198489751887811, @@ -2587,7 +2587,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.07335490830636461, @@ -2610,7 +2610,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 421, "time": 0.07551240560949299, @@ -2633,10 +2633,10 @@ }, { "lineGroupId": 13, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 433, - "time": 0.07766990291262135, + "time": 0.07766990291262137, "position": { "x": 3, "y": 0 @@ -2656,7 +2656,7 @@ }, { "lineGroupId": 13, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 445, "time": 0.07982740021574973, @@ -2679,7 +2679,7 @@ }, { "lineGroupId": 13, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 457, "time": 0.08198489751887811, @@ -2702,7 +2702,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.08629989212513484, @@ -2725,7 +2725,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 505, "time": 0.09061488673139159, @@ -2748,10 +2748,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, - "time": 0.09492988133764832, + "time": 0.09492988133764833, "position": { "x": 6, "y": 0 @@ -2771,7 +2771,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 553, "time": 0.09924487594390508, @@ -2794,10 +2794,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 577, - "time": 0.10355987055016182, + "time": 0.1035598705501618, "position": { "x": 3, "y": 0 @@ -2817,10 +2817,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 721, - "time": 0.12944983818770225, + "time": 0.12944983818770228, "position": { "x": 3, "y": 0 @@ -2840,7 +2840,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 613, "time": 0.11003236245954692, @@ -2863,7 +2863,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 637, "time": 0.11434735706580366, @@ -2886,9 +2886,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 961, + "noteOrder": 962, "time": 0.17259978425026967, "position": { "x": 7, @@ -2908,13 +2908,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 985, - "time": 0.17691477885652643, + "noteOrder": 974, + "time": 0.17475728155339806, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2926,18 +2926,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1058, - "time": 0.18985976267529664, + "noteOrder": 974, + "time": 0.17475728155339806, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2954,13 +2954,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1082, - "time": 0.1941747572815534, + "noteOrder": 986, + "time": 0.17691477885652643, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2977,13 +2977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1106, - "time": 0.19848975188781015, + "noteOrder": 998, + "time": 0.1790722761596548, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2995,18 +2995,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1154, - "time": 0.20711974110032363, + "noteOrder": 998, + "time": 0.1790722761596548, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3023,13 +3023,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1178, - "time": 0.21143473570658036, + "noteOrder": 1010, + "time": 0.18122977346278318, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3041,16 +3041,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1226, - "time": 0.22006472491909385, + "noteOrder": 1010, + "time": 0.18122977346278318, "position": { "x": 3, "y": 0 @@ -3069,11 +3069,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.2243797195253506, + "noteOrder": 1058, + "time": 0.18985976267529667, "position": { "x": 7, "y": 0 @@ -3092,11 +3092,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, - "time": 0.22869471413160733, + "noteOrder": 1070, + "time": 0.19201725997842503, "position": { "x": 7, "y": 0 @@ -3115,13 +3115,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1298, - "time": 0.23300970873786406, + "noteOrder": 1070, + "time": 0.19201725997842503, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3133,18 +3133,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1322, - "time": 0.2373247033441208, + "noteOrder": 1082, + "time": 0.1941747572815534, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3156,18 +3156,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1346, - "time": 0.24163969795037757, + "noteOrder": 1082, + "time": 0.1941747572815534, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3179,18 +3179,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 1358, - "time": 0.24379719525350593, + "noteOrder": 1082, + "time": 0.1941747572815534, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3207,13 +3207,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 46, "indexInLine": 2, "isSliding": false, - "noteOrder": 1370, - "time": 0.2459546925566343, + "noteOrder": 1094, + "time": 0.1963322545846818, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3230,13 +3230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 46, "indexInLine": 3, "isSliding": false, - "noteOrder": 1382, - "time": 0.24811218985976266, + "noteOrder": 1094, + "time": 0.1963322545846818, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3253,13 +3253,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 46, "indexInLine": 4, "isSliding": false, - "noteOrder": 1394, - "time": 0.25026968716289105, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3276,13 +3276,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, + "lineGroupId": 46, "indexInLine": 5, "isSliding": false, - "noteOrder": 1406, - "time": 0.2524271844660194, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3299,13 +3299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 6, + "lineGroupId": 47, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1418, - "time": 0.2545846817691478, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3317,18 +3317,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1346, - "time": 0.24163969795037757, + "noteOrder": 1118, + "time": 0.20064724919093851, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3345,11 +3345,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 47, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1358, - "time": 0.24379719525350593, + "noteOrder": 1118, + "time": 0.20064724919093851, "position": { "x": 6, "y": 0 @@ -3368,13 +3368,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 2, + "lineGroupId": 47, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1370, - "time": 0.2459546925566343, + "noteOrder": 1130, + "time": 0.2028047464940669, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3391,11 +3391,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 3, + "lineGroupId": 47, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1382, - "time": 0.24811218985976266, + "noteOrder": 1130, + "time": 0.2028047464940669, "position": { "x": 7, "y": 0 @@ -3414,13 +3414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 4, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1394, - "time": 0.25026968716289105, + "noteOrder": 1154, + "time": 0.2071197411003236, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3432,18 +3432,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 5, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1406, - "time": 0.2524271844660194, + "noteOrder": 1166, + "time": 0.20927723840345203, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3455,18 +3455,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 6, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1418, - "time": 0.2545846817691478, + "noteOrder": 1166, + "time": 0.20927723840345203, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3478,18 +3478,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2588996763754045, + "noteOrder": 1178, + "time": 0.21143473570658036, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3501,18 +3501,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, - "time": 0.2632146709816613, + "noteOrder": 1190, + "time": 0.21359223300970873, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3529,11 +3529,34 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1490, - "time": 0.267529665587918, + "noteOrder": 1190, + "time": 0.21359223300970873, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1226, + "time": 0.22006472491909385, "position": { "x": 3, "y": 0 @@ -3552,13 +3575,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1538, - "time": 0.2761596548004315, + "noteOrder": 1238, + "time": 0.22222222222222224, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3570,18 +3593,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1562, - "time": 0.28047464940668826, + "noteOrder": 1238, + "time": 0.22222222222222224, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3598,11 +3621,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1610, - "time": 0.2891046386192017, + "noteOrder": 1250, + "time": 0.2243797195253506, "position": { "x": 7, "y": 0 @@ -3621,13 +3644,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.29341963322545844, + "noteOrder": 1274, + "time": 0.22869471413160733, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3639,16 +3662,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 1658, - "time": 0.2977346278317152, + "noteOrder": 1298, + "time": 0.23300970873786409, "position": { "x": 3, "y": 0 @@ -3667,13 +3690,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.30204962243797195, + "noteOrder": 1323, + "time": 0.23732470334412084, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3685,18 +3708,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 1707, - "time": 0.3063646170442287, + "noteOrder": 1347, + "time": 0.24163969795037757, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3708,16 +3731,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3193096008629989, + "noteOrder": 1359, + "time": 0.24379719525350596, "position": { "x": 4, "y": 0 @@ -3736,11 +3759,11 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1803, - "time": 0.32362459546925565, + "noteOrder": 1371, + "time": 0.24595469255663432, "position": { "x": 4, "y": 0 @@ -3759,11 +3782,103 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1779, - "time": 0.3193096008629989, + "noteOrder": 1383, + "time": 0.24811218985976266, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1395, + "time": 0.25026968716289105, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1407, + "time": 0.2524271844660194, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2545846817691478, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1347, + "time": 0.24163969795037757, "position": { "x": 6, "y": 0 @@ -3782,11 +3897,11 @@ "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, - "time": 0.32362459546925565, + "noteOrder": 1359, + "time": 0.24379719525350596, "position": { "x": 6, "y": 0 @@ -3805,13 +3920,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1827, - "time": 0.32793959007551243, + "noteOrder": 1371, + "time": 0.24595469255663432, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3823,18 +3938,4181 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1851, - "time": 0.33225458468176916, + "noteOrder": 1383, + "time": 0.24811218985976266, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1395, + "time": 0.25026968716289105, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 1407, + "time": 0.2524271844660194, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 1419, + "time": 0.2545846817691478, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1443, + "time": 0.25889967637540456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1455, + "time": 0.26105717367853293, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1455, + "time": 0.26105717367853293, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2632146709816613, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2632146709816613, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1467, + "time": 0.2632146709816613, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1479, + "time": 0.26537216828478966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1479, + "time": 0.26537216828478966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1491, + "time": 0.267529665587918, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1491, + "time": 0.267529665587918, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1491, + "time": 0.267529665587918, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2696871628910464, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1503, + "time": 0.2696871628910464, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1515, + "time": 0.27184466019417475, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1515, + "time": 0.27184466019417475, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1539, + "time": 0.2761596548004315, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1551, + "time": 0.2783171521035599, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1551, + "time": 0.2783171521035599, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1563, + "time": 0.28047464940668826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1575, + "time": 0.2826321467098166, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1575, + "time": 0.2826321467098166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1611, + "time": 0.2891046386192017, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1623, + "time": 0.29126213592233013, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1623, + "time": 0.29126213592233013, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1635, + "time": 0.29341963322545844, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1659, + "time": 0.2977346278317152, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.30204962243797195, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1707, + "time": 0.3063646170442287, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.3193096008629989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1803, + "time": 0.3236245954692557, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1779, + "time": 0.3193096008629989, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1803, + "time": 0.3236245954692557, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1828, + "time": 0.32793959007551243, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1840, + "time": 0.3300970873786408, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1840, + "time": 0.3300970873786408, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1852, + "time": 0.33225458468176916, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1852, + "time": 0.33225458468176916, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1852, + "time": 0.33225458468176916, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1864, + "time": 0.3344120819848975, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1864, + "time": 0.3344120819848975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1876, + "time": 0.33656957928802594, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1876, + "time": 0.33656957928802594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1876, + "time": 0.33656957928802594, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1888, + "time": 0.33872707659115425, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1888, + "time": 0.33872707659115425, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1924, + "time": 0.34519956850053934, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1936, + "time": 0.34735706580366776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1936, + "time": 0.34735706580366776, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1948, + "time": 0.34951456310679613, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1948, + "time": 0.34951456310679613, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1948, + "time": 0.34951456310679613, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1960, + "time": 0.3516720604099245, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1960, + "time": 0.3516720604099245, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1972, + "time": 0.35382955771305286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1972, + "time": 0.35382955771305286, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1972, + "time": 0.35382955771305286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3559870550161813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1984, + "time": 0.3559870550161813, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3581445523193096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2008, + "time": 0.360302049622438, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2008, + "time": 0.360302049622438, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2020, + "time": 0.36245954692556637, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2044, + "time": 0.3667745415318231, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2044, + "time": 0.3667745415318231, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3710895361380798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2068, + "time": 0.3710895361380798, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2092, + "time": 0.37540453074433655, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.37971952535059333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2128, + "time": 0.38187702265372164, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2128, + "time": 0.38187702265372164, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2140, + "time": 0.38403451995685006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3861920172599784, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2152, + "time": 0.3861920172599784, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2212, + "time": 0.3969795037756203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2224, + "time": 0.39913700107874867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2224, + "time": 0.39913700107874867, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2236, + "time": 0.40129449838187703, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2236, + "time": 0.40129449838187703, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2236, + "time": 0.40129449838187703, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2248, + "time": 0.4034519956850054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2248, + "time": 0.4034519956850054, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2260, + "time": 0.4056094929881338, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2260, + "time": 0.4056094929881338, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2260, + "time": 0.4056094929881338, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2272, + "time": 0.4077669902912621, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2272, + "time": 0.4077669902912621, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.4142394822006472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2320, + "time": 0.41639697950377563, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2320, + "time": 0.41639697950377563, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2332, + "time": 0.41855447680690405, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2332, + "time": 0.41855447680690405, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2332, + "time": 0.41855447680690405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2344, + "time": 0.42071197411003236, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2344, + "time": 0.42071197411003236, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2357, + "time": 0.4228694714131607, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2357, + "time": 0.4228694714131607, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.4228694714131607, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2369, + "time": 0.42502696871628914, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2369, + "time": 0.42502696871628914, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2381, + "time": 0.42718446601941745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2393, + "time": 0.42934196332254587, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2393, + "time": 0.42934196332254587, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2405, + "time": 0.43149946062567424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2429, + "time": 0.43581445523193096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2453, + "time": 0.4401294498381877, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2477, + "time": 0.4444444444444445, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4487594390507012, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2513, + "time": 0.4509169363538295, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2513, + "time": 0.4509169363538295, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2525, + "time": 0.45307443365695793, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2537, + "time": 0.45523193096008635, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2537, + "time": 0.45523193096008635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.46601941747572817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2693, + "time": 0.48327939590075514, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.48327939590075514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2789, + "time": 0.5005393743257821, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.535059331175836, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2994, + "time": 0.5372168284789645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5415318230852212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5436893203883495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2982, + "time": 0.535059331175836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2994, + "time": 0.5372168284789645, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3018, + "time": 0.5415318230852212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3030, + "time": 0.5436893203883495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.552319309600863, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5544768069039914, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3090, + "time": 0.5544768069039914, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5566343042071198, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5566343042071198, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5566343042071198, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3114, + "time": 0.5587918015102481, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3114, + "time": 0.5587918015102481, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5631067961165049, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3138, + "time": 0.5631067961165049, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5652642934196332, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5652642934196332, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5652642934196332, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5674217907227617, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3162, + "time": 0.5674217907227617, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3174, + "time": 0.56957928802589, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3174, + "time": 0.56957928802589, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3174, + "time": 0.56957928802589, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3198, + "time": 0.5738942826321467, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3246, + "time": 0.5825242718446603, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5868392664509169, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5911542610571737, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5911542610571737, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5954692556634305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5954692556634305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5997842502696871, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.6040992448759439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.6062567421790723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3391, + "time": 0.6084142394822007, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3403, + "time": 0.6105717367853291, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6127292340884574, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3427, + "time": 0.6148867313915858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3439, + "time": 0.6170442286947141, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3366, + "time": 0.6040992448759439, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3378, + "time": 0.6062567421790723, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3391, + "time": 0.6084142394822007, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3403, + "time": 0.6105717367853291, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6127292340884574, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3427, + "time": 0.6148867313915858, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3439, + "time": 0.6170442286947141, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3487, + "time": 0.6256742179072275, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3499, + "time": 0.627831715210356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3499, + "time": 0.627831715210356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6299892125134844, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6299892125134844, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3511, + "time": 0.6299892125134844, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6321467098166128, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3523, + "time": 0.6321467098166128, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6343042071197411, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6343042071197411, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3535, + "time": 0.6343042071197411, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3851,13 +8129,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1875, - "time": 0.3365695792880259, + "noteOrder": 3547, + "time": 0.6364617044228695, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3869,18 +8147,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1923, - "time": 0.34519956850053934, + "noteOrder": 3547, + "time": 0.6364617044228695, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3897,13 +8175,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1947, - "time": 0.34951456310679613, + "noteOrder": 3559, + "time": 0.6386192017259978, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3920,13 +8198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1971, - "time": 0.35382955771305286, + "noteOrder": 3583, + "time": 0.6429341963322546, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3938,18 +8216,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1995, - "time": 0.3581445523193096, + "noteOrder": 3607, + "time": 0.6472491909385114, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3961,18 +8239,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2019, - "time": 0.36245954692556637, + "noteOrder": 3631, + "time": 0.651564185544768, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3989,13 +8267,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 2043, - "time": 0.36677454153182304, + "noteOrder": 3655, + "time": 0.6558791801510249, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4007,18 +8285,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2043, - "time": 0.36677454153182304, + "noteOrder": 3679, + "time": 0.6601941747572816, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4035,13 +8313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 2067, - "time": 0.3710895361380798, + "noteOrder": 3703, + "time": 0.6645091693635383, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4053,18 +8331,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, - "time": 0.3710895361380798, + "noteOrder": 3727, + "time": 0.668824163969795, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4081,13 +8359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 2091, - "time": 0.3754045307443366, + "noteOrder": 3751, + "time": 0.6731391585760519, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4099,18 +8377,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2115, - "time": 0.3797195253505933, + "noteOrder": 3763, + "time": 0.6752966558791801, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4122,18 +8400,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2139, - "time": 0.38403451995685006, + "noteOrder": 3763, + "time": 0.6752966558791801, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4150,11 +8428,11 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2211, - "time": 0.3969795037756203, + "noteOrder": 3775, + "time": 0.6774541531823085, "position": { "x": 7, "y": 0 @@ -4173,11 +8451,11 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2235, - "time": 0.40129449838187703, + "noteOrder": 3787, + "time": 0.6796116504854369, "position": { "x": 7, "y": 0 @@ -4191,18 +8469,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 178, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2259, - "time": 0.40560949298813376, + "noteOrder": 3787, + "time": 0.6796116504854369, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4219,13 +8497,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2307, - "time": 0.41423948220064727, + "noteOrder": 3799, + "time": 0.6817691477885653, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4242,13 +8520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2331, - "time": 0.418554476806904, + "noteOrder": 3823, + "time": 0.6860841423948221, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4260,18 +8538,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2356, - "time": 0.4228694714131607, + "noteOrder": 3799, + "time": 0.6817691477885653, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4283,18 +8561,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.4271844660194175, + "noteOrder": 3823, + "time": 0.6860841423948221, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4311,11 +8589,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, - "time": 0.4314994606256742, + "noteOrder": 3847, + "time": 0.6903991370010787, "position": { "x": 3, "y": 0 @@ -4334,11 +8612,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2428, - "time": 0.43581445523193096, + "noteOrder": 3859, + "time": 0.6925566343042071, "position": { "x": 3, "y": 0 @@ -4357,13 +8635,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2452, - "time": 0.4401294498381877, + "noteOrder": 3859, + "time": 0.6925566343042071, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4375,18 +8653,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2476, - "time": 0.4444444444444444, + "noteOrder": 3871, + "time": 0.6947141316073355, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4398,18 +8676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2500, - "time": 0.4487594390507012, + "noteOrder": 3871, + "time": 0.6947141316073355, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4426,13 +8704,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2524, - "time": 0.4530744336569579, + "noteOrder": 3871, + "time": 0.6947141316073355, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4449,11 +8727,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.4660194174757281, + "noteOrder": 3883, + "time": 0.696871628910464, "position": { "x": 3, "y": 0 @@ -4467,18 +8745,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2692, - "time": 0.48327939590075514, + "noteOrder": 3883, + "time": 0.696871628910464, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4490,18 +8768,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2692, - "time": 0.48327939590075514, + "noteOrder": 3895, + "time": 0.6990291262135923, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4518,13 +8796,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2788, - "time": 0.5005393743257821, + "noteOrder": 3895, + "time": 0.6990291262135923, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4541,13 +8819,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2980, - "time": 0.535059331175836, + "noteOrder": 3895, + "time": 0.6990291262135923, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4564,13 +8842,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2992, - "time": 0.5372168284789645, + "noteOrder": 3907, + "time": 0.7011866235167206, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4587,13 +8865,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 2, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3017, - "time": 0.5415318230852211, + "noteOrder": 3907, + "time": 0.7011866235167206, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4610,13 +8888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 3, + "lineGroupId": 184, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3029, - "time": 0.5436893203883495, + "noteOrder": 3920, + "time": 0.703344120819849, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4633,13 +8911,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2980, - "time": 0.535059331175836, + "noteOrder": 3920, + "time": 0.703344120819849, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4651,16 +8929,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 2992, - "time": 0.5372168284789645, + "noteOrder": 3920, + "time": 0.703344120819849, "position": { "x": 3, "y": 0 @@ -4679,13 +8957,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 185, "indexInLine": 2, "isSliding": false, - "noteOrder": 3017, - "time": 0.5415318230852211, + "noteOrder": 3932, + "time": 0.7055016181229774, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4702,13 +8980,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 185, "indexInLine": 3, "isSliding": false, - "noteOrder": 3029, - "time": 0.5436893203883495, + "noteOrder": 3932, + "time": 0.7055016181229774, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4725,13 +9003,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3077, - "time": 0.552319309600863, + "noteOrder": 3944, + "time": 0.7076591154261057, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4748,13 +9026,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3101, - "time": 0.5566343042071198, + "noteOrder": 3944, + "time": 0.7076591154261057, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4766,18 +9044,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3125, - "time": 0.5609492988133765, + "noteOrder": 3944, + "time": 0.7076591154261057, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4789,18 +9067,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, - "time": 0.5652642934196332, + "noteOrder": 3968, + "time": 0.7119741100323626, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4817,13 +9095,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3173, - "time": 0.56957928802589, + "noteOrder": 4016, + "time": 0.720604099244876, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4835,18 +9113,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 190, "indexInLine": 1, "isSliding": false, - "noteOrder": 3197, - "time": 0.5738942826321467, + "noteOrder": 4040, + "time": 0.7249190938511327, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4863,11 +9141,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 190, "indexInLine": 2, "isSliding": false, - "noteOrder": 3245, - "time": 0.5825242718446602, + "noteOrder": 4064, + "time": 0.7292340884573895, "position": { "x": 5, "y": 0 @@ -4886,11 +9164,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, - "time": 0.5868392664509169, + "noteOrder": 4064, + "time": 0.7292340884573895, "position": { "x": 5, "y": 0 @@ -4909,11 +9187,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3293, - "time": 0.5911542610571737, + "noteOrder": 4088, + "time": 0.7335490830636462, "position": { "x": 5, "y": 0 @@ -4932,11 +9210,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3293, - "time": 0.5911542610571737, + "noteOrder": 4088, + "time": 0.7335490830636462, "position": { "x": 5, "y": 0 @@ -4955,11 +9233,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3317, - "time": 0.5954692556634305, + "noteOrder": 4112, + "time": 0.7378640776699029, "position": { "x": 5, "y": 0 @@ -4978,13 +9256,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.5954692556634305, + "noteOrder": 4136, + "time": 0.7421790722761596, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5001,13 +9279,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3341, - "time": 0.5997842502696871, + "noteOrder": 4148, + "time": 0.7443365695792881, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5024,13 +9302,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3365, - "time": 0.6040992448759439, + "noteOrder": 4160, + "time": 0.7464940668824165, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5047,13 +9325,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3377, - "time": 0.6062567421790723, + "noteOrder": 4172, + "time": 0.7486515641855448, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5070,11 +9348,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 2, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3389, - "time": 0.6084142394822006, + "noteOrder": 4184, + "time": 0.7508090614886731, "position": { "x": 4, "y": 0 @@ -5093,11 +9371,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 3, + "lineGroupId": 194, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3401, - "time": 0.610571736785329, + "noteOrder": 4196, + "time": 0.7529665587918015, "position": { "x": 4, "y": 0 @@ -5116,13 +9394,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 4, + "lineGroupId": 194, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3413, - "time": 0.6127292340884574, + "noteOrder": 4208, + "time": 0.7551240560949299, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5139,13 +9417,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 5, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3425, - "time": 0.6148867313915857, + "noteOrder": 4136, + "time": 0.7421790722761596, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5157,18 +9435,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 6, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3437, - "time": 0.6170442286947142, + "noteOrder": 4148, + "time": 0.7443365695792881, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5180,16 +9458,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3365, - "time": 0.6040992448759439, + "noteOrder": 4160, + "time": 0.7464940668824165, "position": { "x": 6, "y": 0 @@ -5208,11 +9486,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3377, - "time": 0.6062567421790723, + "noteOrder": 4172, + "time": 0.7486515641855448, "position": { "x": 6, "y": 0 @@ -5231,13 +9509,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 2, + "lineGroupId": 195, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3389, - "time": 0.6084142394822006, + "noteOrder": 4184, + "time": 0.7508090614886731, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5254,13 +9532,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 3, + "lineGroupId": 195, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3401, - "time": 0.610571736785329, + "noteOrder": 4196, + "time": 0.7529665587918015, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5277,11 +9555,11 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 4, + "lineGroupId": 195, + "indexInLine": 7, "isSliding": false, - "noteOrder": 3413, - "time": 0.6127292340884574, + "noteOrder": 4208, + "time": 0.7551240560949299, "position": { "x": 6, "y": 0 @@ -5300,13 +9578,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 5, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3425, - "time": 0.6148867313915857, + "noteOrder": 4256, + "time": 0.7637540453074433, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5318,18 +9596,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 6, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3437, - "time": 0.6170442286947142, + "noteOrder": 4268, + "time": 0.7659115426105717, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5341,18 +9619,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3485, - "time": 0.6256742179072275, + "noteOrder": 4268, + "time": 0.7659115426105717, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5364,18 +9642,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3509, - "time": 0.6299892125134844, + "noteOrder": 4280, + "time": 0.7680690399137001, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5392,13 +9670,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3533, - "time": 0.6343042071197411, + "noteOrder": 4280, + "time": 0.7680690399137001, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5410,18 +9688,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3557, - "time": 0.6386192017259978, + "noteOrder": 4280, + "time": 0.7680690399137001, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5433,18 +9711,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3581, - "time": 0.6429341963322545, + "noteOrder": 4292, + "time": 0.7702265372168285, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5456,18 +9734,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3605, - "time": 0.6472491909385113, + "noteOrder": 4292, + "time": 0.7702265372168285, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5484,13 +9762,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3629, - "time": 0.651564185544768, + "noteOrder": 4304, + "time": 0.7723840345199569, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5507,13 +9785,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3653, - "time": 0.6558791801510249, + "noteOrder": 4304, + "time": 0.7723840345199569, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5525,16 +9803,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, + "lineGroupId": 200, "indexInLine": 1, "isSliding": false, - "noteOrder": 3678, - "time": 0.6601941747572816, + "noteOrder": 4304, + "time": 0.7723840345199569, "position": { "x": 3, "y": 0 @@ -5553,13 +9831,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 200, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3702, - "time": 0.6645091693635383, + "noteOrder": 4316, + "time": 0.7745415318230853, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5571,18 +9849,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 200, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3726, - "time": 0.6688241639697949, + "noteOrder": 4316, + "time": 0.7745415318230853, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5594,18 +9872,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3750, - "time": 0.6731391585760518, + "noteOrder": 4328, + "time": 0.7766990291262136, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5617,18 +9895,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 178, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3774, - "time": 0.6774541531823085, + "noteOrder": 4352, + "time": 0.7810140237324703, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5645,11 +9923,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6817691477885653, + "noteOrder": 4376, + "time": 0.7853290183387271, "position": { "x": 4, "y": 0 @@ -5668,11 +9946,11 @@ "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3822, - "time": 0.6860841423948221, + "noteOrder": 4400, + "time": 0.7896440129449838, "position": { "x": 4, "y": 0 @@ -5691,13 +9969,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3798, - "time": 0.6817691477885653, + "noteOrder": 4424, + "time": 0.7939590075512406, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5714,13 +9992,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3822, - "time": 0.6860841423948221, + "noteOrder": 4449, + "time": 0.7982740021574973, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5737,11 +10015,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3846, - "time": 0.6903991370010787, + "noteOrder": 4449, + "time": 0.7982740021574973, "position": { "x": 3, "y": 0 @@ -5760,11 +10038,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3870, - "time": 0.6947141316073354, + "noteOrder": 4473, + "time": 0.8025889967637541, "position": { "x": 3, "y": 0 @@ -5778,18 +10056,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.6990291262135923, + "noteOrder": 4473, + "time": 0.8025889967637541, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5801,18 +10079,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3918, - "time": 0.703344120819849, + "noteOrder": 4497, + "time": 0.8069039913700108, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5829,13 +10107,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3942, - "time": 0.7076591154261057, + "noteOrder": 4497, + "time": 0.8069039913700108, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5852,13 +10130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3966, - "time": 0.7119741100323624, + "noteOrder": 4521, + "time": 0.8112189859762676, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5875,13 +10153,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 2, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4014, - "time": 0.7206040992448759, + "noteOrder": 4521, + "time": 0.8112189859762676, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5893,18 +10171,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.7249190938511327, + "noteOrder": 4545, + "time": 0.8155339805825242, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5921,13 +10199,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 211, "indexInLine": 1, "isSliding": false, - "noteOrder": 4062, - "time": 0.7292340884573895, + "noteOrder": 4569, + "time": 0.8198489751887811, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5939,18 +10217,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4062, - "time": 0.7292340884573895, + "noteOrder": 4593, + "time": 0.8241639697950378, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5967,13 +10245,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 213, "indexInLine": 1, "isSliding": false, - "noteOrder": 4086, - "time": 0.7335490830636461, + "noteOrder": 4617, + "time": 0.8284789644012944, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5985,18 +10263,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4086, - "time": 0.7335490830636461, + "noteOrder": 4629, + "time": 0.8306364617044228, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6013,13 +10291,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4110, - "time": 0.7378640776699029, + "noteOrder": 4629, + "time": 0.8306364617044228, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6036,13 +10314,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4134, - "time": 0.7421790722761596, + "noteOrder": 4641, + "time": 0.8327939590075513, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6054,18 +10332,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4146, - "time": 0.744336569579288, + "noteOrder": 4641, + "time": 0.8327939590075513, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6077,18 +10355,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 2, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, - "time": 0.7464940668824164, + "noteOrder": 4641, + "time": 0.8327939590075513, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6105,13 +10383,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 3, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4170, - "time": 0.7486515641855447, + "noteOrder": 4653, + "time": 0.8349514563106797, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6128,13 +10406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 4, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4182, - "time": 0.7508090614886732, + "noteOrder": 4653, + "time": 0.8349514563106797, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6151,13 +10429,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 5, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4194, - "time": 0.7529665587918015, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6174,13 +10452,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 6, + "lineGroupId": 214, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4206, - "time": 0.7551240560949298, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6197,13 +10475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4134, - "time": 0.7421790722761596, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6220,13 +10498,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4146, - "time": 0.744336569579288, + "noteOrder": 4677, + "time": 0.8392664509169363, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6243,11 +10521,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4158, - "time": 0.7464940668824164, + "noteOrder": 4677, + "time": 0.8392664509169363, "position": { "x": 6, "y": 0 @@ -6266,11 +10544,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 3, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4170, - "time": 0.7486515641855447, + "noteOrder": 4689, + "time": 0.8414239482200647, "position": { "x": 6, "y": 0 @@ -6289,13 +10567,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 4, + "lineGroupId": 215, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4182, - "time": 0.7508090614886732, + "noteOrder": 4689, + "time": 0.8414239482200647, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6312,13 +10590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 5, + "lineGroupId": 217, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4194, - "time": 0.7529665587918015, + "noteOrder": 4713, + "time": 0.8457389428263214, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6330,18 +10608,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 6, + "lineGroupId": 217, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.7551240560949298, + "noteOrder": 4725, + "time": 0.8478964401294499, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6353,18 +10631,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 217, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4254, - "time": 0.7637540453074434, + "noteOrder": 4725, + "time": 0.8478964401294499, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6381,13 +10659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4278, - "time": 0.7680690399137001, + "noteOrder": 4737, + "time": 0.8500539374325783, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6404,13 +10682,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4302, - "time": 0.7723840345199569, + "noteOrder": 4749, + "time": 0.8522114347357066, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6422,16 +10700,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4326, - "time": 0.7766990291262136, + "noteOrder": 4749, + "time": 0.8522114347357066, "position": { "x": 6, "y": 0 @@ -6450,13 +10728,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 4351, - "time": 0.7810140237324703, + "noteOrder": 4785, + "time": 0.8586839266450917, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6468,18 +10746,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4375, - "time": 0.785329018338727, + "noteOrder": 4797, + "time": 0.8608414239482202, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6496,11 +10774,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4399, - "time": 0.7896440129449839, + "noteOrder": 4797, + "time": 0.8608414239482202, "position": { "x": 4, "y": 0 @@ -6519,11 +10797,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7939590075512406, + "noteOrder": 4809, + "time": 0.8629989212513485, "position": { "x": 7, "y": 0 @@ -6542,11 +10820,11 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4447, - "time": 0.7982740021574972, + "noteOrder": 4833, + "time": 0.8673139158576052, "position": { "x": 7, "y": 0 @@ -6565,11 +10843,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4447, - "time": 0.7982740021574972, + "noteOrder": 4857, + "time": 0.8716289104638619, "position": { "x": 3, "y": 0 @@ -6588,11 +10866,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.8025889967637541, + "noteOrder": 4881, + "time": 0.8759439050701188, "position": { "x": 3, "y": 0 @@ -6611,11 +10889,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4471, - "time": 0.8025889967637541, + "noteOrder": 4905, + "time": 0.8802588996763754, "position": { "x": 6, "y": 0 @@ -6634,11 +10912,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4495, - "time": 0.8069039913700108, + "noteOrder": 4917, + "time": 0.8824163969795038, "position": { "x": 6, "y": 0 @@ -6657,13 +10935,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4495, - "time": 0.8069039913700108, + "noteOrder": 4929, + "time": 0.8845738942826322, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6675,18 +10953,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4519, - "time": 0.8112189859762675, + "noteOrder": 4941, + "time": 0.8867313915857605, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6698,18 +10976,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4519, - "time": 0.8112189859762675, + "noteOrder": 4954, + "time": 0.888888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6726,11 +11004,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4543, - "time": 0.8155339805825244, + "noteOrder": 4966, + "time": 0.8910463861920173, "position": { "x": 6, "y": 0 @@ -6749,13 +11027,13 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4567, - "time": 0.819848975188781, + "noteOrder": 4978, + "time": 0.8932038834951457, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6767,16 +11045,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 211, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 4591, - "time": 0.8241639697950377, + "noteOrder": 4905, + "time": 0.8802588996763754, "position": { "x": 4, "y": 0 @@ -6795,13 +11073,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4615, - "time": 0.8284789644012945, + "noteOrder": 4917, + "time": 0.8824163969795038, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6813,18 +11091,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4639, - "time": 0.8327939590075513, + "noteOrder": 4929, + "time": 0.8845738942826322, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6841,13 +11119,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4663, - "time": 0.837108953613808, + "noteOrder": 4941, + "time": 0.8867313915857605, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6859,18 +11137,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4711, - "time": 0.8457389428263214, + "noteOrder": 4954, + "time": 0.888888888888889, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6887,13 +11165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4735, - "time": 0.8500539374325782, + "noteOrder": 4966, + "time": 0.8910463861920173, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6905,18 +11183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4783, - "time": 0.8586839266450917, + "noteOrder": 4978, + "time": 0.8932038834951457, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6933,13 +11211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4807, - "time": 0.8629989212513484, + "noteOrder": 5002, + "time": 0.8975188781014024, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6951,18 +11229,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4831, - "time": 0.8673139158576051, + "noteOrder": 5014, + "time": 0.8996763754045308, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6974,18 +11252,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4855, - "time": 0.8716289104638619, + "noteOrder": 5014, + "time": 0.8996763754045308, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7002,13 +11280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4879, - "time": 0.8759439050701187, + "noteOrder": 5026, + "time": 0.901833872707659, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7025,13 +11303,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4903, - "time": 0.8802588996763754, + "noteOrder": 5026, + "time": 0.901833872707659, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7043,18 +11321,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 229, "indexInLine": 1, "isSliding": false, - "noteOrder": 4915, - "time": 0.8824163969795038, + "noteOrder": 5026, + "time": 0.901833872707659, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7071,13 +11349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 229, "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.8845738942826321, + "noteOrder": 5038, + "time": 0.9039913700107874, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7094,13 +11372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 229, "indexInLine": 3, "isSliding": false, - "noteOrder": 4939, - "time": 0.8867313915857605, + "noteOrder": 5038, + "time": 0.9039913700107874, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7117,13 +11395,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 229, "indexInLine": 4, "isSliding": false, - "noteOrder": 4951, - "time": 0.8888888888888888, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -7140,13 +11418,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, + "lineGroupId": 229, "indexInLine": 5, "isSliding": false, - "noteOrder": 4963, - "time": 0.8910463861920173, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -7163,13 +11441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 6, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4975, - "time": 0.8932038834951456, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7181,18 +11459,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.8802588996763754, + "noteOrder": 5062, + "time": 0.9083063646170443, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7209,11 +11487,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4915, - "time": 0.8824163969795038, + "noteOrder": 5062, + "time": 0.9083063646170443, "position": { "x": 4, "y": 0 @@ -7232,11 +11510,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 2, + "lineGroupId": 230, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4927, - "time": 0.8845738942826321, + "noteOrder": 5074, + "time": 0.9104638619201727, "position": { "x": 4, "y": 0 @@ -7255,13 +11533,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 3, + "lineGroupId": 230, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4939, - "time": 0.8867313915857605, + "noteOrder": 5074, + "time": 0.9104638619201727, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -7278,13 +11556,13 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 4, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.8888888888888888, + "noteOrder": 5098, + "time": 0.9147788565264293, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7296,18 +11574,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 5, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4963, - "time": 0.8910463861920173, + "noteOrder": 5110, + "time": 0.9169363538295577, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -7319,18 +11597,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 6, + "lineGroupId": 232, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4975, - "time": 0.8932038834951456, + "noteOrder": 5110, + "time": 0.9169363538295577, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -7342,16 +11620,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4999, - "time": 0.8975188781014024, + "noteOrder": 5122, + "time": 0.919093851132686, "position": { "x": 3, "y": 0 @@ -7370,11 +11648,11 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5024, - "time": 0.9018338727076591, + "noteOrder": 5134, + "time": 0.9212513484358145, "position": { "x": 3, "y": 0 @@ -7388,18 +11666,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5048, - "time": 0.9061488673139158, + "noteOrder": 5134, + "time": 0.9212513484358145, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7416,11 +11694,11 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, - "time": 0.9147788565264293, + "noteOrder": 5170, + "time": 0.9277238403451995, "position": { "x": 7, "y": 0 @@ -7439,13 +11717,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5120, - "time": 0.919093851132686, + "noteOrder": 5182, + "time": 0.9298813376483279, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7457,18 +11735,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 236, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5168, - "time": 0.9277238403451995, + "noteOrder": 5182, + "time": 0.9298813376483279, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7486,10 +11764,10 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9320388349514562, + "noteOrder": 5194, + "time": 0.9320388349514563, "position": { "x": 3, "y": 0 @@ -7509,9 +11787,9 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.9363538295577131, "position": { "x": 3, @@ -7532,9 +11810,9 @@ }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.9406688241639698, "position": { "x": 7, @@ -7555,9 +11833,9 @@ }, { "lineGroupId": 239, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, + "noteOrder": 5266, "time": 0.9449838187702265, "position": { "x": 7, @@ -7578,9 +11856,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.9622437971952535, "position": { "x": 3, @@ -7601,9 +11879,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.9665587918015103, "position": { "x": 3, @@ -7624,9 +11902,9 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5360, + "noteOrder": 5362, "time": 0.9622437971952535, "position": { "x": 7, @@ -7647,9 +11925,9 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.9665587918015103, "position": { "x": 7, diff --git "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1b.json" "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1b.json" index f911cb2c..a70979b9 100644 --- "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1b.json" +++ "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/267_difficulty_1b.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 144, - "time": 0.025889967637540454, + "time": 0.02588996763754045, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 216, - "time": 0.038834951456310676, + "time": 0.03883495145631068, "position": { "x": 4, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 264, - "time": 0.04746494066882416, + "noteOrder": 265, + "time": 0.04746494066882417, "position": { "x": 4, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 288, - "time": 0.05177993527508091, + "noteOrder": 289, + "time": 0.0517799352750809, "position": { "x": 7, "y": 0 @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 313, "time": 0.05609492988133765, "position": { "x": 5, @@ -194,7 +194,7 @@ }, { "noteOrder": 361, - "time": 0.06472491909385113, + "time": 0.06472491909385114, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 529, - "time": 0.09492988133764832, + "time": 0.09492988133764833, "position": { "x": 7, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 721, - "time": 0.12944983818770225, + "time": 0.12944983818770228, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.1423948220064725, "position": { "x": 3, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 961, + "noteOrder": 962, "time": 0.17259978425026967, "position": { "x": 7, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 985, + "noteOrder": 986, "time": 0.17691477885652643, "position": { "x": 3, @@ -514,7 +514,7 @@ }, { "noteOrder": 1202, - "time": 0.2157497303128371, + "time": 0.21574973031283712, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.2373247033441208, + "noteOrder": 1323, + "time": 0.23732470334412084, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.24163969795037757, "position": { "x": 7, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1370, - "time": 0.2459546925566343, + "noteOrder": 1371, + "time": 0.24595469255663432, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.284789644012945, "position": { "x": 3, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1610, + "noteOrder": 1611, "time": 0.2891046386192017, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1659, "time": 0.2977346278317152, "position": { "x": 4, @@ -714,7 +714,7 @@ }, { "noteOrder": 1731, - "time": 0.3106796116504854, + "time": 0.31067961165048547, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.32793959007551243, "position": { "x": 5, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1851, + "noteOrder": 1852, "time": 0.33225458468176916, "position": { "x": 5, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1875, - "time": 0.3365695792880259, + "noteOrder": 1876, + "time": 0.33656957928802594, "position": { "x": 5, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 1900, "time": 0.34088457389428267, "position": { "x": 5, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.36245954692556637, "position": { "x": 5, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2043, - "time": 0.36677454153182304, + "noteOrder": 2044, + "time": 0.3667745415318231, "position": { "x": 5, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.3710895361380798, "position": { "x": 5, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2091, - "time": 0.3754045307443366, + "noteOrder": 2092, + "time": 0.37540453074433655, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3926645091693635, + "noteOrder": 2188, + "time": 0.3926645091693636, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2187, - "time": 0.3926645091693635, + "noteOrder": 2188, + "time": 0.3926645091693636, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.3969795037756203, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2236, "time": 0.40129449838187703, "position": { "x": 5, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2259, - "time": 0.40560949298813376, + "noteOrder": 2260, + "time": 0.4056094929881338, "position": { "x": 5, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2283, - "time": 0.4099244875943905, + "noteOrder": 2284, + "time": 0.40992448759439054, "position": { "x": 5, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2404, - "time": 0.4314994606256742, + "noteOrder": 2405, + "time": 0.43149946062567424, "position": { "x": 5, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2428, + "noteOrder": 2429, "time": 0.43581445523193096, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2453, "time": 0.4401294498381877, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.4444444444444444, + "noteOrder": 2477, + "time": 0.4444444444444445, "position": { "x": 5, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.46170442286947144, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.46170442286947144, "position": { "x": 6, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2621, "time": 0.4703344120819849, "position": { "x": 5, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2668, - "time": 0.47896440129449835, + "noteOrder": 2669, + "time": 0.4789644012944984, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2716, - "time": 0.48759439050701187, + "noteOrder": 2717, + "time": 0.4875943905070119, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2764, + "noteOrder": 2765, "time": 0.4962243797195253, "position": { "x": 5, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2788, + "noteOrder": 2789, "time": 0.5005393743257821, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 2813, "time": 0.5048543689320388, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.5091693635382956, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2836, + "noteOrder": 2837, "time": 0.5091693635382956, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.5134843581445523, + "noteOrder": 2861, + "time": 0.5134843581445524, "position": { "x": 3, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2860, - "time": 0.5134843581445523, + "noteOrder": 2861, + "time": 0.5134843581445524, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2980, + "noteOrder": 2982, "time": 0.535059331175836, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3005, + "noteOrder": 3006, "time": 0.5393743257820928, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3029, + "noteOrder": 3030, "time": 0.5436893203883495, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.5480043149946062, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.5480043149946062, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.56957928802589, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3198, "time": 0.5738942826321467, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3221, + "noteOrder": 3222, "time": 0.5782092772384034, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3245, - "time": 0.5825242718446602, + "noteOrder": 3246, + "time": 0.5825242718446603, "position": { "x": 7, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3366, "time": 0.6040992448759439, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3389, - "time": 0.6084142394822006, + "noteOrder": 3391, + "time": 0.6084142394822007, "position": { "x": 3, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3487, "time": 0.6256742179072275, "position": { "x": 5, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3511, "time": 0.6299892125134844, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3533, + "noteOrder": 3535, "time": 0.6343042071197411, "position": { "x": 5, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3581, - "time": 0.6429341963322545, + "noteOrder": 3583, + "time": 0.6429341963322546, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3605, - "time": 0.6472491909385113, + "noteOrder": 3607, + "time": 0.6472491909385114, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3631, "time": 0.651564185544768, "position": { "x": 5, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3678, + "noteOrder": 3679, "time": 0.6601941747572816, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3726, - "time": 0.6688241639697949, + "noteOrder": 3727, + "time": 0.668824163969795, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3750, - "time": 0.6731391585760518, + "noteOrder": 3751, + "time": 0.6731391585760519, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3774, + "noteOrder": 3775, "time": 0.6774541531823085, "position": { "x": 5, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 3799, "time": 0.6817691477885653, "position": { "x": 7, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3823, "time": 0.6860841423948221, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 3823, "time": 0.6860841423948221, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 3944, "time": 0.7076591154261057, "position": { "x": 7, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3966, - "time": 0.7119741100323624, + "noteOrder": 3968, + "time": 0.7119741100323626, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 3992, "time": 0.7162891046386192, "position": { "x": 4, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4014, - "time": 0.7206040992448759, + "noteOrder": 4016, + "time": 0.720604099244876, "position": { "x": 3, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4134, + "noteOrder": 4136, "time": 0.7421790722761596, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.7464940668824164, + "noteOrder": 4160, + "time": 0.7464940668824165, "position": { "x": 7, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4254, - "time": 0.7637540453074434, + "noteOrder": 4256, + "time": 0.7637540453074433, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4280, "time": 0.7680690399137001, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4304, "time": 0.7723840345199569, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4352, "time": 0.7810140237324703, "position": { "x": 5, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.785329018338727, + "noteOrder": 4376, + "time": 0.7853290183387271, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4399, - "time": 0.7896440129449839, + "noteOrder": 4400, + "time": 0.7896440129449838, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4447, - "time": 0.7982740021574972, + "noteOrder": 4449, + "time": 0.7982740021574973, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4497, "time": 0.8069039913700108, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4519, - "time": 0.8112189859762675, + "noteOrder": 4521, + "time": 0.8112189859762676, "position": { "x": 7, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4543, - "time": 0.8155339805825244, + "noteOrder": 4545, + "time": 0.8155339805825242, "position": { "x": 5, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4567, - "time": 0.819848975188781, + "noteOrder": 4569, + "time": 0.8198489751887811, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.8241639697950377, + "noteOrder": 4593, + "time": 0.8241639697950378, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4591, - "time": 0.8241639697950377, + "noteOrder": 4593, + "time": 0.8241639697950378, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4759, - "time": 0.854368932038835, + "noteOrder": 4761, + "time": 0.8543689320388349, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 4785, "time": 0.8586839266450917, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4831, - "time": 0.8673139158576051, + "noteOrder": 4833, + "time": 0.8673139158576052, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 4879, - "time": 0.8759439050701187, + "noteOrder": 4881, + "time": 0.8759439050701188, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4903, + "noteOrder": 4905, "time": 0.8802588996763754, "position": { "x": 3, @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.8845738942826321, + "noteOrder": 4929, + "time": 0.8845738942826322, "position": { "x": 7, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5146, "time": 0.9234088457389429, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5170, "time": 0.9277238403451995, "position": { "x": 3, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.9363538295577131, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5264, + "noteOrder": 5266, "time": 0.9449838187702265, "position": { "x": 4, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5288, - "time": 0.9492988133764833, + "noteOrder": 5290, + "time": 0.9492988133764834, "position": { "x": 7, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5312, + "noteOrder": 5314, "time": 0.95361380798274, "position": { "x": 3, @@ -2456,7 +2456,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.017259978425026967, @@ -2479,7 +2479,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.030204962243797196, @@ -2502,7 +2502,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, "time": 0.034519956850053934, @@ -2525,10 +2525,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 264, - "time": 0.04746494066882416, + "noteOrder": 265, + "time": 0.04746494066882417, "position": { "x": 3, "y": 0 @@ -2548,7 +2548,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 385, "time": 0.06903991370010787, @@ -2571,10 +2571,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, - "time": 0.07766990291262135, + "time": 0.07766990291262137, "position": { "x": 6, "y": 0 @@ -2594,7 +2594,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 409, "time": 0.07335490830636461, @@ -2617,10 +2617,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 433, - "time": 0.07766990291262135, + "time": 0.07766990291262137, "position": { "x": 4, "y": 0 @@ -2640,7 +2640,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 637, "time": 0.11434735706580366, @@ -2663,7 +2663,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.12081984897518878, @@ -2686,10 +2686,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 661, - "time": 0.1186623516720604, + "time": 0.11866235167206042, "position": { "x": 3, "y": 0 @@ -2709,7 +2709,7 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 745, "time": 0.133764832793959, @@ -2732,9 +2732,9 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.14670981661272922, "position": { "x": 6, @@ -2755,9 +2755,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.15102481121898598, "position": { "x": 6, @@ -2778,9 +2778,9 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 817, + "noteOrder": 818, "time": 0.14670981661272922, "position": { "x": 4, @@ -2801,9 +2801,9 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 841, + "noteOrder": 842, "time": 0.15102481121898598, "position": { "x": 4, @@ -2824,10 +2824,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.1553398058252427, + "noteOrder": 866, + "time": 0.15533980582524273, "position": { "x": 7, "y": 0 @@ -2847,10 +2847,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16828478964401294, + "noteOrder": 938, + "time": 0.16828478964401297, "position": { "x": 7, "y": 0 @@ -2870,10 +2870,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, - "time": 0.1553398058252427, + "noteOrder": 866, + "time": 0.15533980582524273, "position": { "x": 3, "y": 0 @@ -2893,10 +2893,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 937, - "time": 0.16828478964401294, + "noteOrder": 938, + "time": 0.16828478964401297, "position": { "x": 3, "y": 0 @@ -2916,10 +2916,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1058, - "time": 0.18985976267529664, + "time": 0.18985976267529667, "position": { "x": 7, "y": 0 @@ -2938,11 +2938,11 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1106, - "time": 0.19848975188781015, + "noteOrder": 1082, + "time": 0.1941747572815534, "position": { "x": 7, "y": 0 @@ -2956,18 +2956,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1154, - "time": 0.20711974110032363, + "noteOrder": 1082, + "time": 0.1941747572815534, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2984,13 +2984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1178, - "time": 0.21143473570658036, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3002,18 +3002,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1250, - "time": 0.2243797195253506, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3030,11 +3030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 49, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 1274, - "time": 0.22869471413160733, + "noteOrder": 1106, + "time": 0.19848975188781015, "position": { "x": 7, "y": 0 @@ -3048,18 +3048,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1298, - "time": 0.23300970873786406, + "noteOrder": 1130, + "time": 0.2028047464940669, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3076,13 +3076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 1, + "lineGroupId": 44, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1322, - "time": 0.2373247033441208, + "noteOrder": 1130, + "time": 0.2028047464940669, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3099,11 +3099,11 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1394, - "time": 0.25026968716289105, + "noteOrder": 1154, + "time": 0.2071197411003236, "position": { "x": 6, "y": 0 @@ -3117,18 +3117,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1154, + "time": 0.2071197411003236, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, "indexInLine": 1, "isSliding": false, - "noteOrder": 1418, - "time": 0.2545846817691478, + "noteOrder": 1154, + "time": 0.2071197411003236, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3145,13 +3168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1394, - "time": 0.25026968716289105, + "noteOrder": 1166, + "time": 0.20927723840345203, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3163,18 +3186,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 1, + "lineGroupId": 45, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1418, - "time": 0.2545846817691478, + "noteOrder": 1166, + "time": 0.20927723840345203, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3186,18 +3209,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, - "time": 0.2588996763754045, + "noteOrder": 1178, + "time": 0.21143473570658036, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3214,13 +3237,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1490, - "time": 0.267529665587918, + "noteOrder": 1190, + "time": 0.21359223300970873, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3232,18 +3255,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1538, - "time": 0.2761596548004315, + "noteOrder": 1190, + "time": 0.21359223300970873, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3260,13 +3283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1562, - "time": 0.28047464940668826, + "noteOrder": 1250, + "time": 0.2243797195253506, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3283,13 +3306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1634, - "time": 0.29341963322545844, + "noteOrder": 1274, + "time": 0.22869471413160733, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3301,16 +3324,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 51, "indexInLine": 1, "isSliding": false, - "noteOrder": 1658, - "time": 0.2977346278317152, + "noteOrder": 1298, + "time": 0.23300970873786409, "position": { "x": 3, "y": 0 @@ -3329,13 +3352,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1683, - "time": 0.30204962243797195, + "noteOrder": 1323, + "time": 0.23732470334412084, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3347,18 +3370,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 1707, - "time": 0.3063646170442287, + "noteOrder": 1395, + "time": 0.25026968716289105, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3375,13 +3398,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3193096008629989, + "noteOrder": 1419, + "time": 0.2545846817691478, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3393,16 +3416,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 56, "indexInLine": 1, "isSliding": false, - "noteOrder": 1803, - "time": 0.32362459546925565, + "noteOrder": 1395, + "time": 0.25026968716289105, "position": { "x": 4, "y": 0 @@ -3421,13 +3444,13 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.3193096008629989, + "noteOrder": 1419, + "time": 0.2545846817691478, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3439,18 +3462,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 1803, - "time": 0.32362459546925565, + "noteOrder": 1443, + "time": 0.25889967637540456, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3462,18 +3485,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1923, - "time": 0.34519956850053934, + "noteOrder": 1467, + "time": 0.2632146709816613, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3485,18 +3508,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1971, - "time": 0.35382955771305286, + "noteOrder": 1467, + "time": 0.2632146709816613, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3513,11 +3536,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2115, - "time": 0.3797195253505933, + "noteOrder": 1491, + "time": 0.267529665587918, "position": { "x": 4, "y": 0 @@ -3536,11 +3559,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2163, - "time": 0.3883495145631068, + "noteOrder": 1491, + "time": 0.267529665587918, "position": { "x": 5, "y": 0 @@ -3559,13 +3582,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2115, - "time": 0.3797195253505933, + "noteOrder": 1491, + "time": 0.267529665587918, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3582,13 +3605,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2163, - "time": 0.3883495145631068, + "noteOrder": 1515, + "time": 0.27184466019417475, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3605,13 +3628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2307, - "time": 0.41423948220064727, + "noteOrder": 1515, + "time": 0.27184466019417475, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3623,18 +3646,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2356, - "time": 0.4228694714131607, + "noteOrder": 1539, + "time": 0.2761596548004315, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3651,13 +3674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2500, - "time": 0.4487594390507012, + "noteOrder": 1539, + "time": 0.2761596548004315, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3674,13 +3697,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.45738942826321466, + "noteOrder": 1539, + "time": 0.2761596548004315, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3692,16 +3715,39 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2500, - "time": 0.4487594390507012, + "noteOrder": 1551, + "time": 0.2783171521035599, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1551, + "time": 0.2783171521035599, "position": { "x": 4, "y": 0 @@ -3720,11 +3766,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, + "lineGroupId": 60, "indexInLine": 1, "isSliding": false, - "noteOrder": 2548, - "time": 0.45738942826321466, + "noteOrder": 1563, + "time": 0.28047464940668826, "position": { "x": 3, "y": 0 @@ -3738,16 +3784,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2596, - "time": 0.4660194174757281, + "noteOrder": 1575, + "time": 0.2826321467098166, "position": { "x": 3, "y": 0 @@ -3761,16 +3807,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1575, + "time": 0.2826321467098166, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, "indexInLine": 1, "isSliding": false, - "noteOrder": 2668, - "time": 0.47896440129449835, + "noteOrder": 1635, + "time": 0.29341963322545844, "position": { "x": 3, "y": 0 @@ -3789,11 +3858,34 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2692, - "time": 0.48327939590075514, + "noteOrder": 1659, + "time": 0.2977346278317152, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1683, + "time": 0.30204962243797195, "position": { "x": 7, "y": 0 @@ -3812,11 +3904,11 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2764, - "time": 0.4962243797195253, + "noteOrder": 1707, + "time": 0.3063646170442287, "position": { "x": 7, "y": 0 @@ -3835,11 +3927,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.517799352750809, + "noteOrder": 1779, + "time": 0.3193096008629989, "position": { "x": 4, "y": 0 @@ -3858,11 +3950,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2956, - "time": 0.5307443365695793, + "noteOrder": 1803, + "time": 0.3236245954692557, "position": { "x": 4, "y": 0 @@ -3881,11 +3973,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2884, - "time": 0.517799352750809, + "noteOrder": 1779, + "time": 0.3193096008629989, "position": { "x": 6, "y": 0 @@ -3904,11 +3996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2956, - "time": 0.5307443365695793, + "noteOrder": 1803, + "time": 0.3236245954692557, "position": { "x": 6, "y": 0 @@ -3927,13 +4019,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3077, - "time": 0.552319309600863, + "noteOrder": 1924, + "time": 0.34519956850053934, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3945,18 +4037,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3125, - "time": 0.5609492988133765, + "noteOrder": 1948, + "time": 0.34951456310679613, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3973,13 +4065,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3269, - "time": 0.5868392664509169, + "noteOrder": 1948, + "time": 0.34951456310679613, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3996,11 +4088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3317, - "time": 0.5954692556634305, + "noteOrder": 1972, + "time": 0.35382955771305286, "position": { "x": 3, "y": 0 @@ -4019,11 +4111,34 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3413, - "time": 0.6127292340884574, + "noteOrder": 1996, + "time": 0.3581445523193096, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1996, + "time": 0.3581445523193096, "position": { "x": 4, "y": 0 @@ -4042,13 +4157,1761 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.37971952535059333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3883495145631068, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2116, + "time": 0.37971952535059333, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2164, + "time": 0.3883495145631068, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2308, + "time": 0.4142394822006472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2332, + "time": 0.41855447680690405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2332, + "time": 0.41855447680690405, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2357, + "time": 0.4228694714131607, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2381, + "time": 0.42718446601941745, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2381, + "time": 0.42718446601941745, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4487594390507012, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2549, + "time": 0.45738942826321466, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2501, + "time": 0.4487594390507012, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2549, + "time": 0.45738942826321466, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2597, + "time": 0.46601941747572817, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2669, + "time": 0.4789644012944984, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2693, + "time": 0.48327939590075514, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2765, + "time": 0.4962243797195253, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5177993527508091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5307443365695793, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2886, + "time": 0.5177993527508091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2958, + "time": 0.5307443365695793, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3078, + "time": 0.552319309600863, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5566343042071198, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3102, + "time": 0.5566343042071198, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3126, + "time": 0.5609492988133765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5652642934196332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3150, + "time": 0.5652642934196332, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3174, + "time": 0.56957928802589, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3174, + "time": 0.56957928802589, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3270, + "time": 0.5868392664509169, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5911542610571737, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3294, + "time": 0.5911542610571737, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3318, + "time": 0.5954692556634305, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5997842502696871, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3342, + "time": 0.5997842502696871, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6127292340884574, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3439, + "time": 0.6170442286947141, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3415, + "time": 0.6127292340884574, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3439, + "time": 0.6170442286947141, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3463, + "time": 0.6213592233009709, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6386192017259978, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3559, + "time": 0.6386192017259978, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6558791801510249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3655, + "time": 0.6558791801510249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3679, + "time": 0.6601941747572816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3703, + "time": 0.6645091693635383, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3727, + "time": 0.668824163969795, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3847, + "time": 0.6903991370010787, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3871, + "time": 0.6947141316073355, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3871, + "time": 0.6947141316073355, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6990291262135923, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6990291262135923, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3895, + "time": 0.6990291262135923, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3920, + "time": 0.703344120819849, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3920, + "time": 0.703344120819849, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7076591154261057, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3944, + "time": 0.7076591154261057, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4040, + "time": 0.7249190938511327, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7292340884573895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4064, + "time": 0.7292340884573895, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4088, + "time": 0.7335490830636462, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7378640776699029, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4112, + "time": 0.7378640776699029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7508090614886731, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.7551240560949299, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4184, + "time": 0.7508090614886731, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4208, + "time": 0.7551240560949299, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4232, + "time": 0.7594390507011867, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7766990291262136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4328, + "time": 0.7766990291262136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4424, + "time": 0.7939590075512406, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4424, + "time": 0.7939590075512406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 170, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4449, + "time": 0.7982740021574973, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3437, - "time": 0.6170442286947142, + "noteOrder": 4473, + "time": 0.8025889967637541, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4065,13 +5928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3413, - "time": 0.6127292340884574, + "noteOrder": 4497, + "time": 0.8069039913700108, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4083,18 +5946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3437, - "time": 0.6170442286947142, + "noteOrder": 4617, + "time": 0.8284789644012944, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4106,16 +5969,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3461, - "time": 0.6213592233009708, + "noteOrder": 4641, + "time": 0.8327939590075513, "position": { "x": 3, "y": 0 @@ -4134,13 +5997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3557, - "time": 0.6386192017259978, + "noteOrder": 4641, + "time": 0.8327939590075513, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4157,13 +6020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3557, - "time": 0.6386192017259978, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4175,18 +6038,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 179, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3653, - "time": 0.6558791801510249, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4198,16 +6061,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3653, - "time": 0.6558791801510249, + "noteOrder": 4665, + "time": 0.8371089536138081, "position": { "x": 3, "y": 0 @@ -4221,16 +6084,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3678, - "time": 0.6601941747572816, + "noteOrder": 4689, + "time": 0.8414239482200647, "position": { "x": 3, "y": 0 @@ -4244,18 +6107,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3702, - "time": 0.6645091693635383, + "noteOrder": 4689, + "time": 0.8414239482200647, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4272,13 +6135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3726, - "time": 0.6688241639697949, + "noteOrder": 4713, + "time": 0.8457389428263214, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4295,13 +6158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3846, - "time": 0.6903991370010787, + "noteOrder": 4713, + "time": 0.8457389428263214, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4318,13 +6181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3894, - "time": 0.6990291262135923, + "noteOrder": 4713, + "time": 0.8457389428263214, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4341,11 +6204,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4038, - "time": 0.7249190938511327, + "noteOrder": 4725, + "time": 0.8478964401294499, "position": { "x": 3, "y": 0 @@ -4364,13 +6227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4086, - "time": 0.7335490830636461, + "noteOrder": 4725, + "time": 0.8478964401294499, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4382,18 +6245,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4182, - "time": 0.7508090614886732, + "noteOrder": 4737, + "time": 0.8500539374325783, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4410,13 +6273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4206, - "time": 0.7551240560949298, + "noteOrder": 4749, + "time": 0.8522114347357066, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4433,11 +6296,11 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4182, - "time": 0.7508090614886732, + "noteOrder": 4749, + "time": 0.8522114347357066, "position": { "x": 4, "y": 0 @@ -4451,18 +6314,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 4206, - "time": 0.7551240560949298, + "noteOrder": 4809, + "time": 0.8629989212513485, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4479,13 +6342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4230, - "time": 0.7594390507011866, + "noteOrder": 4833, + "time": 0.8673139158576052, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4497,16 +6360,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 4326, - "time": 0.7766990291262136, + "noteOrder": 4857, + "time": 0.8716289104638619, "position": { "x": 7, "y": 0 @@ -4525,13 +6388,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4326, - "time": 0.7766990291262136, + "noteOrder": 4881, + "time": 0.8759439050701188, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4543,18 +6406,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, + "lineGroupId": 191, "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.7939590075512406, + "noteOrder": 4954, + "time": 0.888888888888889, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4571,13 +6434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4423, - "time": 0.7939590075512406, + "noteOrder": 4978, + "time": 0.8932038834951457, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4589,18 +6452,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 4447, - "time": 0.7982740021574972, + "noteOrder": 4954, + "time": 0.888888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4617,13 +6480,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.8025889967637541, + "noteOrder": 4978, + "time": 0.8932038834951457, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4635,41 +6498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 4495, - "time": 0.8069039913700108, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 179, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4615, - "time": 0.8284789644012945, + "noteOrder": 5002, + "time": 0.8975188781014024, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4681,18 +6521,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4663, - "time": 0.837108953613808, + "noteOrder": 5026, + "time": 0.901833872707659, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4709,13 +6549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4711, - "time": 0.8457389428263214, + "noteOrder": 5026, + "time": 0.901833872707659, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4727,18 +6567,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4735, - "time": 0.8500539374325782, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4755,13 +6595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4807, - "time": 0.8629989212513484, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4773,18 +6613,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 4831, - "time": 0.8673139158576051, + "noteOrder": 5050, + "time": 0.9061488673139159, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4801,11 +6641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4855, - "time": 0.8716289104638619, + "noteOrder": 5074, + "time": 0.9104638619201727, "position": { "x": 7, "y": 0 @@ -4819,18 +6659,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4879, - "time": 0.8759439050701187, + "noteOrder": 5074, + "time": 0.9104638619201727, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4842,18 +6682,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4951, - "time": 0.8888888888888888, + "noteOrder": 5098, + "time": 0.9147788565264293, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4870,13 +6710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4975, - "time": 0.8932038834951456, + "noteOrder": 5098, + "time": 0.9147788565264293, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4893,13 +6733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, - "time": 0.8888888888888888, + "noteOrder": 5098, + "time": 0.9147788565264293, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4916,13 +6756,13 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4975, - "time": 0.8932038834951456, + "noteOrder": 5110, + "time": 0.9169363538295577, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4939,13 +6779,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4999, - "time": 0.8975188781014024, + "noteOrder": 5110, + "time": 0.9169363538295577, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4962,11 +6802,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5048, - "time": 0.9061488673139158, + "noteOrder": 5122, + "time": 0.919093851132686, "position": { "x": 7, "y": 0 @@ -4985,11 +6825,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 196, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5096, - "time": 0.9147788565264293, + "noteOrder": 5134, + "time": 0.9212513484358145, "position": { "x": 7, "y": 0 @@ -5003,18 +6843,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5120, - "time": 0.919093851132686, + "noteOrder": 5134, + "time": 0.9212513484358145, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5032,10 +6872,10 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5192, - "time": 0.9320388349514562, + "noteOrder": 5194, + "time": 0.9320388349514563, "position": { "x": 7, "y": 0 @@ -5055,9 +6895,9 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.9363538295577131, "position": { "x": 7, @@ -5078,9 +6918,9 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, + "noteOrder": 5242, "time": 0.9406688241639698, "position": { "x": 3, @@ -5101,9 +6941,9 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5264, + "noteOrder": 5266, "time": 0.9449838187702265, "position": { "x": 3, @@ -5124,10 +6964,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5336, - "time": 0.9579288025889967, + "noteOrder": 5338, + "time": 0.9579288025889968, "position": { "x": 6, "y": 0 @@ -5147,9 +6987,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.9665587918015103, "position": { "x": 6, @@ -5170,10 +7010,10 @@ }, { "lineGroupId": 208, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5336, - "time": 0.9579288025889967, + "noteOrder": 5338, + "time": 0.9579288025889968, "position": { "x": 4, "y": 0 @@ -5193,9 +7033,9 @@ }, { "lineGroupId": 208, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5384, + "noteOrder": 5386, "time": 0.9665587918015103, "position": { "x": 4, diff --git "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/info.json" "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/info.json" index 5425821f..c9eb044f 100644 --- "a/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/info.json" +++ "b/tracks/\343\202\252\343\203\215\343\202\254\343\202\244\343\203\273\343\203\207\343\202\243\343\202\271\343\202\263\343\203\273\343\203\237\343\203\245\343\203\274\343\202\270\343\203\203\343\202\257/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af", - "SongLength": "122.305306", + "SongLength": "112.352653", "SongAuthorName": "\u661f\u91ce\u594f\u5b50 Prod by.uno", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1a.json" "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1a.json" index be28bb4a..e506c551 100644 --- "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1a.json" +++ "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1a.json" @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 509, - "time": 0.05360561582641991, + "noteOrder": 510, + "time": 0.053605615826419914, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 582, - "time": 0.0612635609444799, + "time": 0.06126356094447989, "position": { "x": 6, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 679, + "noteOrder": 680, "time": 0.07147415443522655, "position": { "x": 3, @@ -174,7 +174,7 @@ }, { "noteOrder": 728, - "time": 0.07657945118059988, + "time": 0.07657945118059986, "position": { "x": 5, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 776, + "noteOrder": 777, "time": 0.0816847479259732, "position": { "x": 4, @@ -214,7 +214,7 @@ }, { "noteOrder": 801, - "time": 0.08423739629865987, + "time": 0.08423739629865985, "position": { "x": 3, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 873, + "noteOrder": 874, "time": 0.09189534141671984, "position": { "x": 5, @@ -294,7 +294,7 @@ }, { "noteOrder": 922, - "time": 0.09700063816209317, + "time": 0.09700063816209316, "position": { "x": 6, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 946, + "noteOrder": 947, "time": 0.09955328653477984, "position": { "x": 5, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 970, + "noteOrder": 971, "time": 0.1021059349074665, "position": { "x": 8, @@ -354,7 +354,7 @@ }, { "noteOrder": 995, - "time": 0.10465858328015316, + "time": 0.10465858328015315, "position": { "x": 6, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1019, - "time": 0.10721123165283981, + "time": 0.10721123165283983, "position": { "x": 7, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1043, + "noteOrder": 1044, "time": 0.10976388002552648, "position": { "x": 3, @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.11231652839821314, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1141, "time": 0.11997447351627313, "position": { "x": 3, @@ -494,7 +494,7 @@ }, { "noteOrder": 1165, - "time": 0.1225271218889598, + "time": 0.12252712188895978, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1237, + "noteOrder": 1238, "time": 0.1301850670070198, "position": { "x": 6, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1844, - "time": 0.19400127632418634, + "noteOrder": 1845, + "time": 0.19400127632418632, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1868, - "time": 0.196553924696873, + "noteOrder": 1869, + "time": 0.19655392469687302, "position": { "x": 4, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1893, "time": 0.19910657306955967, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1942, "time": 0.204211869814933, "position": { "x": 7, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1965, + "noteOrder": 1966, "time": 0.20676451818761965, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1989, - "time": 0.20931716656030633, + "noteOrder": 1990, + "time": 0.2093171665603063, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2232, + "noteOrder": 2233, "time": 0.23484365028717294, "position": { "x": 3, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2256, - "time": 0.2373962986598596, + "noteOrder": 2257, + "time": 0.23739629865985962, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.24250159540523292, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2329, - "time": 0.2450542437779196, + "noteOrder": 2330, + "time": 0.24505424377791957, "position": { "x": 3, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.24760689215060624, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2402, + "noteOrder": 2403, "time": 0.2527121888959796, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2475, + "noteOrder": 2476, "time": 0.2603701340140396, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.2654754307594129, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.2705807275047862, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2863, + "noteOrder": 2864, "time": 0.30121250797702614, "position": { "x": 5, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2911, - "time": 0.3063178047223995, + "noteOrder": 2912, + "time": 0.30631780472239944, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.3114231014677728, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3008, + "noteOrder": 3009, "time": 0.31652839821314616, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3034, "time": 0.3190810465858328, "position": { "x": 4, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3057, + "noteOrder": 3058, "time": 0.32163369495851946, "position": { "x": 7, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3107, "time": 0.3267389917038928, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3130, - "time": 0.32929164007657946, + "noteOrder": 3131, + "time": 0.3292916400765794, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3154, + "noteOrder": 3155, "time": 0.3318442884492661, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3251, + "noteOrder": 3252, "time": 0.34205488194001277, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3348, + "noteOrder": 3349, "time": 0.35226547543075937, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3445, - "time": 0.362476068921506, + "noteOrder": 3446, + "time": 0.3624760689215061, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3542, + "noteOrder": 3543, "time": 0.3726866624122527, "position": { "x": 6, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3639, + "noteOrder": 3640, "time": 0.38289725590299933, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3736, - "time": 0.393107849393746, + "noteOrder": 3738, + "time": 0.39310784939374604, "position": { "x": 7, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.40331844288449265, "position": { "x": 3, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3930, + "noteOrder": 3932, "time": 0.4135290363752393, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4221, - "time": 0.4441608168474792, + "noteOrder": 4223, + "time": 0.44416081684747927, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4272, "time": 0.44926611359285257, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4318, + "noteOrder": 4320, "time": 0.45437141033822587, "position": { "x": 3, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4611, "time": 0.48500319081046583, "position": { "x": 5, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.4901084875558392, + "noteOrder": 4660, + "time": 0.49010848755583913, "position": { "x": 6, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4707, + "noteOrder": 4708, "time": 0.4952137843012125, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5143, + "noteOrder": 5145, "time": 0.5411614550095724, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5169, "time": 0.5437141033822591, "position": { "x": 6, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.5462667517549457, + "noteOrder": 5194, + "time": 0.5462667517549458, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5240, - "time": 0.551372048500319, + "noteOrder": 5242, + "time": 0.5513720485003191, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5267, "time": 0.5539246968730057, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5291, "time": 0.5564773452456924, "position": { "x": 5, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5337, - "time": 0.5615826419910657, + "noteOrder": 5339, + "time": 0.5615826419910658, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5362, - "time": 0.5641352903637524, + "noteOrder": 5364, + "time": 0.5641352903637523, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5386, - "time": 0.566687938736439, + "noteOrder": 5388, + "time": 0.5666879387364391, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5410, + "noteOrder": 5412, "time": 0.5692405871091257, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5774, - "time": 0.6075303126994256, + "noteOrder": 5776, + "time": 0.6075303126994257, "position": { "x": 6, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5823, - "time": 0.612635609444799, + "noteOrder": 5825, + "time": 0.6126356094447989, "position": { "x": 2, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5871, + "noteOrder": 5873, "time": 0.6177409061901723, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5920, + "noteOrder": 5922, "time": 0.6228462029355456, "position": { "x": 2, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5968, + "noteOrder": 5970, "time": 0.6279514996809189, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6017, + "noteOrder": 6019, "time": 0.6330567964262923, "position": { "x": 2, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6065, + "noteOrder": 6067, "time": 0.6381620931716656, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6162, + "noteOrder": 6165, "time": 0.6483726866624122, "position": { "x": 4, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6211, + "noteOrder": 6213, "time": 0.6534779834077856, "position": { "x": 8, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6259, - "time": 0.6585832801531589, + "noteOrder": 6262, + "time": 0.6585832801531588, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 6308, + "noteOrder": 6310, "time": 0.6636885768985322, "position": { "x": 8, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6356, + "noteOrder": 6359, "time": 0.6687938736439055, "position": { "x": 4, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6405, - "time": 0.6738991703892789, + "noteOrder": 6407, + "time": 0.6738991703892788, "position": { "x": 8, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 6453, + "noteOrder": 6456, "time": 0.6790044671346522, "position": { "x": 4, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 6550, + "noteOrder": 6553, "time": 0.6892150606253988, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 6599, + "noteOrder": 6601, "time": 0.6943203573707721, "position": { "x": 4, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6647, - "time": 0.6994256541161454, + "noteOrder": 6650, + "time": 0.6994256541161455, "position": { "x": 5, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 6939, + "noteOrder": 6941, "time": 0.7300574345883853, "position": { "x": 5, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6987, + "noteOrder": 6990, "time": 0.7351627313337588, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7036, + "noteOrder": 7038, "time": 0.7402680280791321, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 7084, + "noteOrder": 7087, "time": 0.7453733248245054, "position": { "x": 3, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 7108, + "noteOrder": 7111, "time": 0.7479259731971921, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 7133, - "time": 0.7504786215698787, + "noteOrder": 7135, + "time": 0.7504786215698788, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 7181, + "noteOrder": 7184, "time": 0.7555839183152521, "position": { "x": 5, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 7205, + "noteOrder": 7208, "time": 0.7581365666879387, "position": { "x": 3, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 7375, - "time": 0.7760051052967454, + "noteOrder": 7378, + "time": 0.7760051052967453, "position": { "x": 5, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 7400, - "time": 0.7785577536694319, + "noteOrder": 7402, + "time": 0.778557753669432, "position": { "x": 7, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 7424, + "noteOrder": 7427, "time": 0.7811104020421187, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 7448, + "noteOrder": 7451, "time": 0.7836630504148053, "position": { "x": 5, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 7472, - "time": 0.786215698787492, + "noteOrder": 7475, + "time": 0.7862156987874921, "position": { "x": 2, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 7497, + "noteOrder": 7499, "time": 0.7887683471601786, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 7521, + "noteOrder": 7524, "time": 0.7913209955328653, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 7545, - "time": 0.7938736439055519, + "noteOrder": 7548, + "time": 0.793873643905552, "position": { "x": 7, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 7569, + "noteOrder": 7572, "time": 0.7964262922782387, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 7594, + "noteOrder": 7596, "time": 0.7989789406509252, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 7618, + "noteOrder": 7621, "time": 0.801531589023612, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 7642, + "noteOrder": 7645, "time": 0.8040842373962986, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 7666, + "noteOrder": 7669, "time": 0.8066368857689853, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 7691, - "time": 0.8091895341416719, + "noteOrder": 7694, + "time": 0.809189534141672, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 7715, + "noteOrder": 7718, "time": 0.8117421825143586, "position": { "x": 3, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 8491, - "time": 0.8934269304403318, + "noteOrder": 8494, + "time": 0.8934269304403317, "position": { "x": 5, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 8685, + "noteOrder": 8689, "time": 0.9138481174218251, "position": { "x": 5, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 8734, + "noteOrder": 8737, "time": 0.9189534141671984, "position": { "x": 5, @@ -2473,7 +2473,7 @@ "isPlayAudio": false }, { - "noteOrder": 8758, + "noteOrder": 8761, "time": 0.9215060625398851, "position": { "x": 4, @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 8782, + "noteOrder": 8786, "time": 0.9240587109125717, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 8831, + "noteOrder": 8834, "time": 0.929164007657945, "position": { "x": 4, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 8855, + "noteOrder": 8859, "time": 0.9317166560306317, "position": { "x": 5, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 8879, + "noteOrder": 8883, "time": 0.9342693044033185, "position": { "x": 6, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 8928, + "noteOrder": 8931, "time": 0.9393746011486918, "position": { "x": 7, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 8952, - "time": 0.9419272495213783, + "noteOrder": 8956, + "time": 0.9419272495213784, "position": { "x": 6, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 8977, + "noteOrder": 8980, "time": 0.9444798978940651, "position": { "x": 5, @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 9025, - "time": 0.9495851946394384, + "noteOrder": 9028, + "time": 0.9495851946394385, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 9049, - "time": 0.952137843012125, + "noteOrder": 9053, + "time": 0.9521378430121251, "position": { "x": 7, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 9074, - "time": 0.9546904913848118, + "noteOrder": 9077, + "time": 0.9546904913848117, "position": { "x": 8, "y": 0 @@ -2696,7 +2696,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01021059349074665, @@ -2719,10 +2719,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.015315890236119975, + "time": 0.015315890236119973, "position": { "x": 6, "y": 0 @@ -2742,7 +2742,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.0204211869814933, @@ -2765,7 +2765,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, "time": 0.025526483726866625, @@ -2788,10 +2788,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.03063178047223995, + "time": 0.030631780472239946, "position": { "x": 8, "y": 0 @@ -2811,7 +2811,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, "time": 0.035737077217613274, @@ -2834,7 +2834,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 388, "time": 0.0408423739629866, @@ -2857,7 +2857,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 437, "time": 0.04594767070835992, @@ -2880,7 +2880,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1262, "time": 0.13273771537970644, @@ -2903,7 +2903,7 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1359, "time": 0.1429483088704531, @@ -2926,9 +2926,9 @@ }, { "lineGroupId": 37, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.14805360561582642, "position": { "x": 6, @@ -2949,10 +2949,10 @@ }, { "lineGroupId": 37, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1456, - "time": 0.15315890236119975, + "time": 0.15315890236119972, "position": { "x": 6, "y": 0 @@ -2972,9 +2972,9 @@ }, { "lineGroupId": 37, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1504, + "noteOrder": 1505, "time": 0.15826419910657308, "position": { "x": 5, @@ -2995,7 +2995,7 @@ }, { "lineGroupId": 37, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1553, "time": 0.1633694958519464, @@ -3018,10 +3018,10 @@ }, { "lineGroupId": 37, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1601, - "time": 0.16847479259731973, + "noteOrder": 1602, + "time": 0.1684747925973197, "position": { "x": 6, "y": 0 @@ -3041,10 +3041,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1310, - "time": 0.13784301212507974, + "noteOrder": 1311, + "time": 0.13784301212507977, "position": { "x": 4, "y": 0 @@ -3064,9 +3064,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.14805360561582642, "position": { "x": 4, @@ -3087,10 +3087,10 @@ }, { "lineGroupId": 38, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1456, - "time": 0.15315890236119975, + "time": 0.15315890236119972, "position": { "x": 3, "y": 0 @@ -3110,7 +3110,7 @@ }, { "lineGroupId": 38, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 1553, "time": 0.1633694958519464, @@ -3133,10 +3133,10 @@ }, { "lineGroupId": 38, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1601, - "time": 0.16847479259731973, + "noteOrder": 1602, + "time": 0.1684747925973197, "position": { "x": 4, "y": 0 @@ -3156,7 +3156,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1650, "time": 0.17358008934269303, @@ -3178,11 +3178,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1698, - "time": 0.17868538608806636, + "noteOrder": 1675, + "time": 0.17613273771537968, "position": { "x": 7, "y": 0 @@ -3196,18 +3196,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1747, - "time": 0.1837906828334397, + "noteOrder": 1675, + "time": 0.17613273771537968, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3224,13 +3224,13 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1795, - "time": 0.18889597957881302, + "noteOrder": 1699, + "time": 0.17868538608806636, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3242,18 +3242,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2038, - "time": 0.21442246330567963, + "noteOrder": 1699, + "time": 0.17868538608806636, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3265,18 +3265,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2086, - "time": 0.21952776005105296, + "noteOrder": 1699, + "time": 0.17868538608806636, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3288,18 +3288,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2135, - "time": 0.22463305679642628, + "noteOrder": 1723, + "time": 0.18123803446075304, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3316,13 +3316,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2183, - "time": 0.2297383535417996, + "noteOrder": 1723, + "time": 0.18123803446075304, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3334,18 +3334,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2426, - "time": 0.2552648372686662, + "noteOrder": 1747, + "time": 0.1837906828334397, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3362,11 +3362,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2523, - "time": 0.2654754307594129, + "noteOrder": 1747, + "time": 0.1837906828334397, "position": { "x": 5, "y": 0 @@ -3385,13 +3385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.2756860242501595, + "noteOrder": 1747, + "time": 0.1837906828334397, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3403,18 +3403,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.2756860242501595, + "noteOrder": 1772, + "time": 0.18634333120612634, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3431,11 +3431,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2669, - "time": 0.28079132099553283, + "noteOrder": 1772, + "time": 0.18634333120612634, "position": { "x": 6, "y": 0 @@ -3454,13 +3454,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2717, - "time": 0.2858966177409062, + "noteOrder": 1796, + "time": 0.18889597957881302, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3472,18 +3472,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 1, + "lineGroupId": 41, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2766, - "time": 0.2910019144862795, + "noteOrder": 1796, + "time": 0.18889597957881302, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3495,18 +3495,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2814, - "time": 0.29610721123165284, + "noteOrder": 1796, + "time": 0.18889597957881302, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3523,13 +3523,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2960, - "time": 0.3114231014677728, + "noteOrder": 1820, + "time": 0.19144862795149967, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3546,13 +3546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3202, - "time": 0.33694958519463947, + "noteOrder": 1820, + "time": 0.19144862795149967, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3564,18 +3564,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 42, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3251, - "time": 0.34205488194001277, + "noteOrder": 1845, + "time": 0.19400127632418632, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3587,18 +3587,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 2, + "lineGroupId": 42, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3299, - "time": 0.34716017868538607, + "noteOrder": 1845, + "time": 0.19400127632418632, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3610,16 +3610,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3299, - "time": 0.34716017868538607, + "noteOrder": 2039, + "time": 0.21442246330567966, "position": { "x": 3, "y": 0 @@ -3638,13 +3638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3348, - "time": 0.35226547543075937, + "noteOrder": 2063, + "time": 0.2169751116783663, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3661,13 +3661,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3397, - "time": 0.3573707721761327, + "noteOrder": 2063, + "time": 0.2169751116783663, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3684,13 +3684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3397, - "time": 0.3573707721761327, + "noteOrder": 2087, + "time": 0.21952776005105296, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3702,16 +3702,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3445, - "time": 0.362476068921506, + "noteOrder": 2087, + "time": 0.21952776005105296, "position": { "x": 5, "y": 0 @@ -3725,18 +3725,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 2, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3494, - "time": 0.3675813656668794, + "noteOrder": 2087, + "time": 0.21952776005105296, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3753,11 +3753,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3494, - "time": 0.3675813656668794, + "noteOrder": 2111, + "time": 0.22208040842373963, "position": { "x": 3, "y": 0 @@ -3771,18 +3771,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3542, - "time": 0.3726866624122527, + "noteOrder": 2111, + "time": 0.22208040842373963, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3794,18 +3794,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 2, + "lineGroupId": 52, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3591, - "time": 0.37779195915762603, + "noteOrder": 2136, + "time": 0.22463305679642628, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3817,18 +3817,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3591, - "time": 0.37779195915762603, + "noteOrder": 2136, + "time": 0.22463305679642628, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3845,13 +3845,13 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 3639, - "time": 0.38289725590299933, + "noteOrder": 2136, + "time": 0.22463305679642628, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3863,18 +3863,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 53, "indexInLine": 2, "isSliding": false, - "noteOrder": 3688, - "time": 0.3880025526483727, + "noteOrder": 2160, + "time": 0.22718570516911293, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3886,16 +3886,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3688, - "time": 0.3880025526483727, + "noteOrder": 2160, + "time": 0.22718570516911293, "position": { "x": 4, "y": 0 @@ -3914,13 +3914,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3736, - "time": 0.393107849393746, + "noteOrder": 2184, + "time": 0.2297383535417996, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3937,13 +3937,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 2, + "lineGroupId": 53, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3785, - "time": 0.39821314613911934, + "noteOrder": 2184, + "time": 0.2297383535417996, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3960,13 +3960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3785, - "time": 0.39821314613911934, + "noteOrder": 2184, + "time": 0.2297383535417996, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3983,13 +3983,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3833, - "time": 0.40331844288449265, + "noteOrder": 2209, + "time": 0.23229100191448626, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4006,13 +4006,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 2, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3882, - "time": 0.408423739629866, + "noteOrder": 2209, + "time": 0.23229100191448626, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4029,11 +4029,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3882, - "time": 0.408423739629866, + "noteOrder": 2233, + "time": 0.23484365028717294, "position": { "x": 4, "y": 0 @@ -4047,18 +4047,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 54, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3930, - "time": 0.4135290363752393, + "noteOrder": 2233, + "time": 0.23484365028717294, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4070,18 +4070,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3979, - "time": 0.41863433312061266, + "noteOrder": 2427, + "time": 0.2552648372686662, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4093,18 +4093,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4027, - "time": 0.4237396298659859, + "noteOrder": 2524, + "time": 0.2654754307594129, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4121,13 +4121,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 63, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4076, - "time": 0.42884492661135926, + "noteOrder": 2621, + "time": 0.27568602425015953, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4139,18 +4139,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4124, - "time": 0.43395022335673256, + "noteOrder": 2621, + "time": 0.27568602425015953, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4162,18 +4162,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4173, - "time": 0.4390555201021059, + "noteOrder": 2670, + "time": 0.2807913209955329, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4190,13 +4190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, + "lineGroupId": 69, "indexInLine": 1, "isSliding": false, - "noteOrder": 4318, - "time": 0.45437141033822587, + "noteOrder": 2718, + "time": 0.2858966177409062, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4208,16 +4208,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4367, - "time": 0.4594767070835992, + "noteOrder": 2767, + "time": 0.2910019144862795, "position": { "x": 3, "y": 0 @@ -4236,11 +4236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4415, - "time": 0.4645820038289725, + "noteOrder": 2815, + "time": 0.29610721123165284, "position": { "x": 3, "y": 0 @@ -4254,18 +4254,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4464, - "time": 0.4696873005743459, + "noteOrder": 2961, + "time": 0.3114231014677728, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4282,13 +4282,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4513, - "time": 0.4747925973197192, + "noteOrder": 3204, + "time": 0.3369495851946394, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4305,13 +4305,13 @@ "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4561, - "time": 0.47989789406509253, + "noteOrder": 3252, + "time": 0.34205488194001277, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4323,18 +4323,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4707, - "time": 0.4952137843012125, + "noteOrder": 3301, + "time": 0.34716017868538607, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4346,18 +4346,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4755, - "time": 0.5003190810465858, + "noteOrder": 3301, + "time": 0.34716017868538607, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4369,18 +4369,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4804, - "time": 0.5054243777919591, + "noteOrder": 3349, + "time": 0.35226547543075937, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4392,18 +4392,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4852, - "time": 0.5105296745373324, + "noteOrder": 3398, + "time": 0.3573707721761327, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4420,13 +4420,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 4901, - "time": 0.5156349712827059, + "noteOrder": 3398, + "time": 0.3573707721761327, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4438,18 +4438,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4949, - "time": 0.5207402680280792, + "noteOrder": 3446, + "time": 0.3624760689215061, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4466,13 +4466,13 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4998, - "time": 0.5258455647734525, + "noteOrder": 3495, + "time": 0.3675813656668794, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4489,11 +4489,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5046, - "time": 0.5309508615188258, + "noteOrder": 3495, + "time": 0.3675813656668794, "position": { "x": 3, "y": 0 @@ -4512,13 +4512,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5095, - "time": 0.5360561582641992, + "noteOrder": 3543, + "time": 0.3726866624122527, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4535,11 +4535,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5434, - "time": 0.5717932354818124, + "noteOrder": 3592, + "time": 0.37779195915762603, "position": { "x": 3, "y": 0 @@ -4558,13 +4558,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 5629, - "time": 0.5922144224633057, + "noteOrder": 3592, + "time": 0.37779195915762603, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4576,18 +4576,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5726, - "time": 0.6024250159540523, + "noteOrder": 3640, + "time": 0.38289725590299933, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4599,18 +4599,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 89, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5774, - "time": 0.6075303126994256, + "noteOrder": 3689, + "time": 0.38800255264837263, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4622,18 +4622,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 2, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5823, - "time": 0.612635609444799, + "noteOrder": 3689, + "time": 0.38800255264837263, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4650,13 +4650,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 3, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5871, - "time": 0.6177409061901723, + "noteOrder": 3738, + "time": 0.39310784939374604, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4673,13 +4673,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 4, + "lineGroupId": 91, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5920, - "time": 0.6228462029355456, + "noteOrder": 3786, + "time": 0.39821314613911934, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4696,11 +4696,218 @@ "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3786, + "time": 0.39821314613911934, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3835, + "time": 0.40331844288449265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3883, + "time": 0.408423739629866, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3883, + "time": 0.408423739629866, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3932, + "time": 0.4135290363752393, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3980, + "time": 0.4186343331206126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4005, + "time": 0.4211869814932993, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4005, + "time": 0.4211869814932993, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4029, + "time": 0.4237396298659859, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, "indexInLine": 5, "isSliding": false, - "noteOrder": 5968, - "time": 0.6279514996809189, + "noteOrder": 4029, + "time": 0.4237396298659859, "position": { "x": 5, "y": 0 @@ -4714,18 +4921,41 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4029, + "time": 0.4237396298659859, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 6, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6017, - "time": 0.6330567964262923, + "noteOrder": 4053, + "time": 0.4262922782386726, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4742,13 +4972,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 7, + "lineGroupId": 98, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6065, - "time": 0.6381620931716656, + "noteOrder": 4053, + "time": 0.4262922782386726, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4765,13 +4995,1623 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6114, - "time": 0.6432673899170389, + "noteOrder": 4077, + "time": 0.4288449266113593, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4077, + "time": 0.4288449266113593, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4077, + "time": 0.4288449266113593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4102, + "time": 0.4313975749840459, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4102, + "time": 0.4313975749840459, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4126, + "time": 0.4339502233567326, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4126, + "time": 0.4339502233567326, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4126, + "time": 0.4339502233567326, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4150, + "time": 0.43650287172941926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4150, + "time": 0.43650287172941926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4174, + "time": 0.4390555201021059, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4174, + "time": 0.4390555201021059, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4174, + "time": 0.4390555201021059, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4320, + "time": 0.45437141033822587, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4369, + "time": 0.4594767070835992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4393, + "time": 0.4620293554562859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4393, + "time": 0.4620293554562859, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4417, + "time": 0.4645820038289725, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4417, + "time": 0.4645820038289725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4417, + "time": 0.4645820038289725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4441, + "time": 0.46713465220165923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4441, + "time": 0.46713465220165923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4466, + "time": 0.4696873005743459, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4466, + "time": 0.4696873005743459, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4466, + "time": 0.4696873005743459, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4490, + "time": 0.47223994894703253, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4490, + "time": 0.47223994894703253, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4514, + "time": 0.47479259731971923, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4514, + "time": 0.47479259731971923, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4514, + "time": 0.47479259731971923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4538, + "time": 0.47734524569240583, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4538, + "time": 0.47734524569240583, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4563, + "time": 0.47989789406509253, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4563, + "time": 0.47989789406509253, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4563, + "time": 0.47989789406509253, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4708, + "time": 0.4952137843012125, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4757, + "time": 0.5003190810465858, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4805, + "time": 0.5054243777919591, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4854, + "time": 0.5105296745373324, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4903, + "time": 0.5156349712827057, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4951, + "time": 0.5207402680280792, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5000, + "time": 0.5258455647734525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5048, + "time": 0.5309508615188258, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5097, + "time": 0.5360561582641992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5436, + "time": 0.5717932354818124, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5631, + "time": 0.5922144224633057, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5728, + "time": 0.6024250159540523, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5776, + "time": 0.6075303126994257, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5825, + "time": 0.6126356094447989, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5873, + "time": 0.6177409061901723, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5922, + "time": 0.6228462029355456, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5970, + "time": 0.6279514996809189, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 6019, + "time": 0.6330567964262923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 6067, + "time": 0.6381620931716656, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6116, + "time": 0.6432673899170389, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6165, + "time": 0.6483726866624122, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6213, + "time": 0.6534779834077856, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6262, + "time": 0.6585832801531588, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6310, + "time": 0.6636885768985322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 6359, + "time": 0.6687938736439055, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 6407, + "time": 0.6738991703892788, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 6456, + "time": 0.6790044671346522, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6504, + "time": 0.6841097638800255, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6601, + "time": 0.6943203573707721, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6698, + "time": 0.7045309508615187, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6698, + "time": 0.7045309508615187, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6747, + "time": 0.7096362476068921, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6796, + "time": 0.7147415443522654, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6844, + "time": 0.7198468410976387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6893, + "time": 0.7249521378430122, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7038, + "time": 0.7402680280791321, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4788,13 +6628,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 6162, - "time": 0.6483726866624122, + "noteOrder": 7232, + "time": 0.7606892150606254, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4811,13 +6651,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, + "lineGroupId": 169, "indexInLine": 2, "isSliding": false, - "noteOrder": 6211, - "time": 0.6534779834077856, + "noteOrder": 7281, + "time": 0.7657945118059987, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4834,13 +6674,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 3, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6259, - "time": 0.6585832801531589, + "noteOrder": 7766, + "time": 0.816847479259732, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4852,18 +6692,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 4, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6308, - "time": 0.6636885768985322, + "noteOrder": 7815, + "time": 0.8219527760051053, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4875,18 +6715,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 5, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6356, - "time": 0.6687938736439055, + "noteOrder": 7863, + "time": 0.8270580727504786, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4903,13 +6743,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 6, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6405, - "time": 0.6738991703892789, + "noteOrder": 7912, + "time": 0.832163369495852, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4926,13 +6766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 7, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6453, - "time": 0.6790044671346522, + "noteOrder": 7961, + "time": 0.8372686662412252, "position": { - "x": 5, + "x": 2, "y": 0 }, "position2D": { @@ -4944,18 +6784,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6502, - "time": 0.6841097638800255, + "noteOrder": 8009, + "time": 0.8423739629865986, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4967,18 +6807,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 189, "indexInLine": 1, "isSliding": false, - "noteOrder": 6599, - "time": 0.6943203573707721, + "noteOrder": 8058, + "time": 0.8474792597319718, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4995,13 +6835,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, + "lineGroupId": 189, "indexInLine": 2, "isSliding": false, - "noteOrder": 6696, - "time": 0.7045309508615187, + "noteOrder": 8106, + "time": 0.8525845564773452, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5018,13 +6858,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6696, - "time": 0.7045309508615187, + "noteOrder": 8155, + "time": 0.8576898532227186, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5036,18 +6876,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6745, - "time": 0.709636247606892, + "noteOrder": 8252, + "time": 0.8679004467134652, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5059,18 +6899,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6793, - "time": 0.7147415443522654, + "noteOrder": 8155, + "time": 0.8576898532227186, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5082,18 +6922,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6842, - "time": 0.7198468410976387, + "noteOrder": 8252, + "time": 0.8679004467134652, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5105,16 +6945,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6890, - "time": 0.724952137843012, + "noteOrder": 8349, + "time": 0.8781110402042118, "position": { "x": 7, "y": 0 @@ -5133,13 +6973,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7036, - "time": 0.7402680280791321, + "noteOrder": 8373, + "time": 0.8806636885768986, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5156,11 +6996,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7230, - "time": 0.7606892150606254, + "noteOrder": 8373, + "time": 0.8806636885768986, "position": { "x": 6, "y": 0 @@ -5179,11 +7019,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7278, - "time": 0.7657945118059987, + "noteOrder": 8397, + "time": 0.8832163369495851, "position": { "x": 6, "y": 0 @@ -5202,13 +7042,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 5, "isSliding": false, - "noteOrder": 7763, - "time": 0.816847479259732, + "noteOrder": 8397, + "time": 0.8832163369495851, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5220,18 +7060,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 7812, - "time": 0.8219527760051053, + "noteOrder": 8397, + "time": 0.8832163369495851, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5248,11 +7088,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7861, - "time": 0.8270580727504786, + "noteOrder": 8422, + "time": 0.8857689853222718, "position": { "x": 7, "y": 0 @@ -5266,16 +7106,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7909, - "time": 0.832163369495852, + "noteOrder": 8422, + "time": 0.8857689853222718, "position": { "x": 6, "y": 0 @@ -5289,18 +7129,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 4, "isSliding": false, - "noteOrder": 7958, - "time": 0.8372686662412253, + "noteOrder": 8446, + "time": 0.8883216336949585, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -5317,13 +7157,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 194, + "indexInLine": 5, "isSliding": false, - "noteOrder": 8006, - "time": 0.8423739629865986, + "noteOrder": 8446, + "time": 0.8883216336949585, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5340,13 +7180,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8055, - "time": 0.8474792597319718, + "noteOrder": 8446, + "time": 0.8883216336949585, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5363,11 +7203,11 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8103, - "time": 0.8525845564773452, + "noteOrder": 8494, + "time": 0.8934269304403317, "position": { "x": 6, "y": 0 @@ -5386,13 +7226,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8152, - "time": 0.8576898532227185, + "noteOrder": 8543, + "time": 0.8985322271857051, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5404,18 +7244,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8249, - "time": 0.8679004467134651, + "noteOrder": 8567, + "time": 0.9010848755583918, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5427,18 +7267,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8152, - "time": 0.8576898532227185, + "noteOrder": 8567, + "time": 0.9010848755583918, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5455,13 +7295,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8249, - "time": 0.8679004467134651, + "noteOrder": 8592, + "time": 0.9036375239310785, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5478,13 +7318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 5, "isSliding": false, - "noteOrder": 8346, - "time": 0.8781110402042118, + "noteOrder": 8592, + "time": 0.9036375239310785, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5496,18 +7336,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8394, - "time": 0.8832163369495851, + "noteOrder": 8592, + "time": 0.9036375239310785, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5519,18 +7359,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8443, - "time": 0.8883216336949584, + "noteOrder": 8616, + "time": 0.9061901723037651, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5547,13 +7387,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8491, - "time": 0.8934269304403318, + "noteOrder": 8616, + "time": 0.9061901723037651, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5570,13 +7410,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 8540, - "time": 0.8985322271857051, + "noteOrder": 8640, + "time": 0.9087428206764517, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5588,18 +7428,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 8588, - "time": 0.9036375239310784, + "noteOrder": 8640, + "time": 0.9087428206764517, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5617,9 +7457,9 @@ }, { "lineGroupId": 199, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8637, + "noteOrder": 8640, "time": 0.9087428206764517, "position": { "x": 3, @@ -5640,9 +7480,9 @@ }, { "lineGroupId": 199, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8685, + "noteOrder": 8689, "time": 0.9138481174218251, "position": { "x": 4, @@ -5663,10 +7503,10 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9171, - "time": 0.9649010848755584, + "noteOrder": 9174, + "time": 0.9649010848755583, "position": { "x": 7, "y": 0 @@ -5686,9 +7526,9 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9292, + "noteOrder": 9295, "time": 0.9776643267389916, "position": { "x": 6, diff --git "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1b.json" "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1b.json" index a2fd6922..4bb5b14b 100644 --- "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1b.json" +++ "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/294_difficulty_1b.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 582, - "time": 0.0612635609444799, + "time": 0.06126356094447989, "position": { "x": 5, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 679, + "noteOrder": 680, "time": 0.07147415443522655, "position": { "x": 7, @@ -114,7 +114,7 @@ }, { "noteOrder": 728, - "time": 0.07657945118059988, + "time": 0.07657945118059986, "position": { "x": 7, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 776, + "noteOrder": 777, "time": 0.0816847479259732, "position": { "x": 4, @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 873, + "noteOrder": 874, "time": 0.09189534141671984, "position": { "x": 6, @@ -214,7 +214,7 @@ }, { "noteOrder": 922, - "time": 0.09700063816209317, + "time": 0.09700063816209316, "position": { "x": 5, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 946, + "noteOrder": 947, "time": 0.09955328653477984, "position": { "x": 3, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 970, + "noteOrder": 971, "time": 0.1021059349074665, "position": { "x": 6, @@ -274,7 +274,7 @@ }, { "noteOrder": 995, - "time": 0.10465858328015316, + "time": 0.10465858328015315, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1019, - "time": 0.10721123165283981, + "time": 0.10721123165283983, "position": { "x": 6, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1043, + "noteOrder": 1044, "time": 0.10976388002552648, "position": { "x": 4, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1067, + "noteOrder": 1068, "time": 0.11231652839821314, "position": { "x": 6, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1141, "time": 0.11997447351627313, "position": { "x": 4, @@ -414,7 +414,7 @@ }, { "noteOrder": 1165, - "time": 0.1225271218889598, + "time": 0.12252712188895978, "position": { "x": 6, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1237, + "noteOrder": 1238, "time": 0.1301850670070198, "position": { "x": 5, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1310, - "time": 0.13784301212507974, + "noteOrder": 1311, + "time": 0.13784301212507977, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1407, + "noteOrder": 1408, "time": 0.14805360561582642, "position": { "x": 6, @@ -554,7 +554,7 @@ }, { "noteOrder": 1456, - "time": 0.15315890236119975, + "time": 0.15315890236119972, "position": { "x": 6, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1504, + "noteOrder": 1505, "time": 0.15826419910657308, "position": { "x": 3, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1601, - "time": 0.16847479259731973, + "noteOrder": 1602, + "time": 0.1684747925973197, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1698, + "noteOrder": 1699, "time": 0.17868538608806636, "position": { "x": 4, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1795, + "noteOrder": 1796, "time": 0.18889597957881302, "position": { "x": 6, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1893, "time": 0.19910657306955967, "position": { "x": 6, @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1942, "time": 0.204211869814933, "position": { "x": 4, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1989, - "time": 0.20931716656030633, + "noteOrder": 1990, + "time": 0.2093171665603063, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2183, + "noteOrder": 2184, "time": 0.2297383535417996, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2814, + "noteOrder": 2815, "time": 0.29610721123165284, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2839, + "noteOrder": 2840, "time": 0.2986598596043395, "position": { "x": 8, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2863, + "noteOrder": 2864, "time": 0.30121250797702614, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2911, - "time": 0.3063178047223995, + "noteOrder": 2912, + "time": 0.30631780472239944, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2937, "time": 0.30887045309508615, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2961, "time": 0.3114231014677728, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3008, + "noteOrder": 3009, "time": 0.31652839821314616, "position": { "x": 2, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3034, "time": 0.3190810465858328, "position": { "x": 5, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3057, + "noteOrder": 3058, "time": 0.32163369495851946, "position": { "x": 3, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3202, - "time": 0.33694958519463947, + "noteOrder": 3204, + "time": 0.3369495851946394, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3251, + "noteOrder": 3252, "time": 0.34205488194001277, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3299, + "noteOrder": 3301, "time": 0.34716017868538607, "position": { "x": 3, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3348, + "noteOrder": 3349, "time": 0.35226547543075937, "position": { "x": 7, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3398, "time": 0.3573707721761327, "position": { "x": 3, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3445, - "time": 0.362476068921506, + "noteOrder": 3446, + "time": 0.3624760689215061, "position": { "x": 7, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3495, "time": 0.3675813656668794, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3518, + "noteOrder": 3519, "time": 0.37013401403956603, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3542, + "noteOrder": 3543, "time": 0.3726866624122527, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3639, + "noteOrder": 3640, "time": 0.38289725590299933, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3736, - "time": 0.393107849393746, + "noteOrder": 3738, + "time": 0.39310784939374604, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.40331844288449265, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3930, + "noteOrder": 3932, "time": 0.4135290363752393, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3979, - "time": 0.41863433312061266, + "noteOrder": 3980, + "time": 0.4186343331206126, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3979, - "time": 0.41863433312061266, + "noteOrder": 3980, + "time": 0.4186343331206126, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4027, + "noteOrder": 4029, "time": 0.4237396298659859, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4076, - "time": 0.42884492661135926, + "noteOrder": 4077, + "time": 0.4288449266113593, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4076, - "time": 0.42884492661135926, + "noteOrder": 4077, + "time": 0.4288449266113593, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4124, - "time": 0.43395022335673256, + "noteOrder": 4126, + "time": 0.4339502233567326, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4173, + "noteOrder": 4174, "time": 0.4390555201021059, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4173, + "noteOrder": 4174, "time": 0.4390555201021059, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4221, - "time": 0.4441608168474792, + "noteOrder": 4223, + "time": 0.44416081684747927, "position": { "x": 5, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4272, "time": 0.44926611359285257, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4270, + "noteOrder": 4272, "time": 0.44926611359285257, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4318, + "noteOrder": 4320, "time": 0.45437141033822587, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4561, + "noteOrder": 4563, "time": 0.47989789406509253, "position": { "x": 7, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4561, + "noteOrder": 4563, "time": 0.47989789406509253, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4611, "time": 0.48500319081046583, "position": { "x": 3, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4610, + "noteOrder": 4611, "time": 0.48500319081046583, "position": { "x": 7, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.4901084875558392, + "noteOrder": 4660, + "time": 0.49010848755583913, "position": { "x": 3, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4658, - "time": 0.4901084875558392, + "noteOrder": 4660, + "time": 0.49010848755583913, "position": { "x": 7, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4804, + "noteOrder": 4805, "time": 0.5054243777919591, "position": { "x": 6, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4852, + "noteOrder": 4854, "time": 0.5105296745373324, "position": { "x": 4, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4901, - "time": 0.5156349712827059, + "noteOrder": 4903, + "time": 0.5156349712827057, "position": { "x": 4, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4998, + "noteOrder": 5000, "time": 0.5258455647734525, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5046, + "noteOrder": 5048, "time": 0.5309508615188258, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5095, + "noteOrder": 5097, "time": 0.5360561582641992, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5192, - "time": 0.5462667517549457, + "noteOrder": 5194, + "time": 0.5462667517549458, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5291, "time": 0.5564773452456924, "position": { "x": 5, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5871, + "noteOrder": 5873, "time": 0.6177409061901723, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 6065, + "noteOrder": 6067, "time": 0.6381620931716656, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 6259, - "time": 0.6585832801531589, + "noteOrder": 6262, + "time": 0.6585832801531588, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6647, - "time": 0.6994256541161454, + "noteOrder": 6650, + "time": 0.6994256541161455, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 6842, + "noteOrder": 6844, "time": 0.7198468410976387, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 7424, + "noteOrder": 7427, "time": 0.7811104020421187, "position": { "x": 7, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7521, + "noteOrder": 7524, "time": 0.7913209955328653, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 7618, + "noteOrder": 7621, "time": 0.801531589023612, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7715, + "noteOrder": 7718, "time": 0.8117421825143586, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 7812, + "noteOrder": 7815, "time": 0.8219527760051053, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 7909, + "noteOrder": 7912, "time": 0.832163369495852, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 8006, + "noteOrder": 8009, "time": 0.8423739629865986, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 8103, + "noteOrder": 8106, "time": 0.8525845564773452, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 8394, + "noteOrder": 8397, "time": 0.8832163369495851, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 8443, - "time": 0.8883216336949584, + "noteOrder": 8446, + "time": 0.8883216336949585, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 8491, - "time": 0.8934269304403318, + "noteOrder": 8494, + "time": 0.8934269304403317, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 8588, - "time": 0.9036375239310784, + "noteOrder": 8592, + "time": 0.9036375239310785, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 8637, + "noteOrder": 8640, "time": 0.9087428206764517, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 8685, + "noteOrder": 8689, "time": 0.9138481174218251, "position": { "x": 4, @@ -2136,7 +2136,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.0204211869814933, @@ -2159,10 +2159,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 291, - "time": 0.03063178047223995, + "time": 0.030631780472239946, "position": { "x": 4, "y": 0 @@ -2182,10 +2182,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.03063178047223995, + "time": 0.030631780472239946, "position": { "x": 6, "y": 0 @@ -2205,7 +2205,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 388, "time": 0.0408423739629866, @@ -2228,7 +2228,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 388, "time": 0.0408423739629866, @@ -2251,7 +2251,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 485, "time": 0.05105296745373325, @@ -2274,7 +2274,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1650, "time": 0.17358008934269303, @@ -2297,9 +2297,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1795, + "noteOrder": 1796, "time": 0.18889597957881302, "position": { "x": 5, @@ -2320,10 +2320,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1844, - "time": 0.19400127632418634, + "noteOrder": 1845, + "time": 0.19400127632418632, "position": { "x": 8, "y": 0 @@ -2343,10 +2343,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1989, - "time": 0.20931716656030633, + "noteOrder": 1990, + "time": 0.2093171665603063, "position": { "x": 5, "y": 0 @@ -2366,10 +2366,33 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2039, + "time": 0.21442246330567966, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2038, - "time": 0.21442246330567963, + "noteOrder": 2063, + "time": 0.2169751116783663, "position": { "x": 2, "y": 0 @@ -2387,11 +2410,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2063, + "time": 0.2169751116783663, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2086, + "noteOrder": 2087, "time": 0.21952776005105296, "position": { "x": 2, @@ -2410,11 +2456,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2111, + "time": 0.22208040842373963, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2111, + "time": 0.22208040842373963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2135, + "noteOrder": 2136, "time": 0.22463305679642628, "position": { "x": 2, @@ -2435,9 +2527,9 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2183, + "noteOrder": 2184, "time": 0.2297383535417996, "position": { "x": 4, @@ -2458,9 +2550,9 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2232, + "noteOrder": 2233, "time": 0.23484365028717294, "position": { "x": 8, @@ -2479,9 +2571,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2257, + "time": 0.23739629865985962, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2257, + "time": 0.23739629865985962, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2281, "time": 0.23994894703254627, @@ -2502,12 +2640,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2306, + "time": 0.24250159540523292, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2306, + "time": 0.24250159540523292, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2329, - "time": 0.2450542437779196, + "noteOrder": 2330, + "time": 0.24505424377791957, "position": { "x": 8, "y": 0 @@ -2527,7 +2711,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2378, "time": 0.2501595405232929, @@ -2550,9 +2734,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2426, + "noteOrder": 2427, "time": 0.2552648372686662, "position": { "x": 3, @@ -2573,9 +2757,9 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.2654754307594129, "position": { "x": 3, @@ -2596,9 +2780,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2523, + "noteOrder": 2524, "time": 0.2654754307594129, "position": { "x": 4, @@ -2619,10 +2803,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2620, - "time": 0.2756860242501595, + "noteOrder": 2621, + "time": 0.27568602425015953, "position": { "x": 4, "y": 0 @@ -2642,10 +2826,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2620, - "time": 0.2756860242501595, + "noteOrder": 2621, + "time": 0.27568602425015953, "position": { "x": 6, "y": 0 @@ -2665,9 +2849,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2717, + "noteOrder": 2718, "time": 0.2858966177409062, "position": { "x": 6, @@ -2688,9 +2872,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2717, + "noteOrder": 2718, "time": 0.2858966177409062, "position": { "x": 8, @@ -2711,9 +2895,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2814, + "noteOrder": 2815, "time": 0.29610721123165284, "position": { "x": 8, @@ -2734,9 +2918,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3591, + "noteOrder": 3592, "time": 0.37779195915762603, "position": { "x": 7, @@ -2757,9 +2941,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3639, + "noteOrder": 3640, "time": 0.38289725590299933, "position": { "x": 7, @@ -2780,10 +2964,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3688, - "time": 0.3880025526483727, + "noteOrder": 3689, + "time": 0.38800255264837263, "position": { "x": 3, "y": 0 @@ -2803,10 +2987,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3736, - "time": 0.393107849393746, + "noteOrder": 3738, + "time": 0.39310784939374604, "position": { "x": 3, "y": 0 @@ -2826,9 +3010,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3785, + "noteOrder": 3786, "time": 0.39821314613911934, "position": { "x": 7, @@ -2849,9 +3033,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3833, + "noteOrder": 3835, "time": 0.40331844288449265, "position": { "x": 7, @@ -2872,9 +3056,9 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3882, + "noteOrder": 3883, "time": 0.408423739629866, "position": { "x": 3, @@ -2895,9 +3079,9 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3930, + "noteOrder": 3932, "time": 0.4135290363752393, "position": { "x": 3, @@ -2918,9 +3102,9 @@ }, { "lineGroupId": 97, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4367, + "noteOrder": 4369, "time": 0.4594767070835992, "position": { "x": 3, @@ -2941,9 +3125,9 @@ }, { "lineGroupId": 97, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4415, + "noteOrder": 4417, "time": 0.4645820038289725, "position": { "x": 4, @@ -2964,9 +3148,9 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4464, + "noteOrder": 4466, "time": 0.4696873005743459, "position": { "x": 7, @@ -2987,10 +3171,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4513, - "time": 0.4747925973197192, + "noteOrder": 4514, + "time": 0.47479259731971923, "position": { "x": 6, "y": 0 @@ -3010,9 +3194,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4755, + "noteOrder": 4757, "time": 0.5003190810465858, "position": { "x": 8, @@ -3033,10 +3217,10 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4901, - "time": 0.5156349712827059, + "noteOrder": 4903, + "time": 0.5156349712827057, "position": { "x": 5, "y": 0 @@ -3056,9 +3240,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4949, + "noteOrder": 4951, "time": 0.5207402680280792, "position": { "x": 2, @@ -3079,9 +3263,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5095, + "noteOrder": 5097, "time": 0.5360561582641992, "position": { "x": 5, @@ -3102,9 +3286,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5143, + "noteOrder": 5145, "time": 0.5411614550095724, "position": { "x": 7, @@ -3125,10 +3309,10 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5192, - "time": 0.5462667517549457, + "noteOrder": 5194, + "time": 0.5462667517549458, "position": { "x": 7, "y": 0 @@ -3148,10 +3332,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5240, - "time": 0.551372048500319, + "noteOrder": 5242, + "time": 0.5513720485003191, "position": { "x": 3, "y": 0 @@ -3171,9 +3355,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5289, + "noteOrder": 5291, "time": 0.5564773452456924, "position": { "x": 3, @@ -3194,9 +3378,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5726, + "noteOrder": 5728, "time": 0.6024250159540523, "position": { "x": 2, @@ -3216,11 +3400,11 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5774, - "time": 0.6075303126994256, + "noteOrder": 5752, + "time": 0.6049776643267389, "position": { "x": 2, "y": 0 @@ -3234,18 +3418,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5823, - "time": 0.612635609444799, + "noteOrder": 5752, + "time": 0.6049776643267389, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3262,13 +3446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 122, "indexInLine": 1, "isSliding": false, - "noteOrder": 5871, - "time": 0.6177409061901723, + "noteOrder": 5776, + "time": 0.6075303126994257, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -3280,18 +3464,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5920, - "time": 0.6228462029355456, + "noteOrder": 5801, + "time": 0.6100829610721122, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3308,10 +3492,148 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5968, + "noteOrder": 5801, + "time": 0.6100829610721122, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5825, + "time": 0.6126356094447989, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5873, + "time": 0.6177409061901723, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5922, + "time": 0.6228462029355456, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6253988513082323, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6253988513082323, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5970, "time": 0.6279514996809189, "position": { "x": 8, @@ -3330,11 +3652,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6305041480536057, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6305041480536057, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6017, + "noteOrder": 6019, "time": 0.6330567964262923, "position": { "x": 8, @@ -3355,9 +3723,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6065, + "noteOrder": 6067, "time": 0.6381620931716656, "position": { "x": 6, @@ -3378,9 +3746,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6114, + "noteOrder": 6116, "time": 0.6432673899170389, "position": { "x": 2, @@ -3399,11 +3767,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6140, + "time": 0.6458200382897256, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6140, + "time": 0.6458200382897256, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6162, + "noteOrder": 6165, "time": 0.6483726866624122, "position": { "x": 2, @@ -3423,11 +3837,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6211, - "time": 0.6534779834077856, + "noteOrder": 6189, + "time": 0.6509253350350989, "position": { "x": 2, "y": 0 @@ -3441,16 +3855,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6259, - "time": 0.6585832801531589, + "noteOrder": 6189, + "time": 0.6509253350350989, "position": { "x": 4, "y": 0 @@ -3464,18 +3878,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6308, - "time": 0.6636885768985322, + "noteOrder": 6213, + "time": 0.6534779834077856, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3487,18 +3901,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6356, - "time": 0.6687938736439055, + "noteOrder": 6262, + "time": 0.6585832801531588, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3515,13 +3929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6405, - "time": 0.6738991703892789, + "noteOrder": 6310, + "time": 0.6636885768985322, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3538,13 +3952,887 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6453, - "time": 0.6790044671346522, + "noteOrder": 6334, + "time": 0.6662412252712189, "position": { - "x": 6, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6334, + "time": 0.6662412252712189, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6359, + "time": 0.6687938736439055, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6383, + "time": 0.6713465220165922, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6383, + "time": 0.6713465220165922, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6407, + "time": 0.6738991703892788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6456, + "time": 0.6790044671346522, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6504, + "time": 0.6841097638800255, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6529, + "time": 0.6866624122527122, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6529, + "time": 0.6866624122527122, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6553, + "time": 0.6892150606253988, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6577, + "time": 0.6917677089980856, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6577, + "time": 0.6917677089980856, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6601, + "time": 0.6943203573707721, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6650, + "time": 0.6994256541161455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6698, + "time": 0.7045309508615187, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6723, + "time": 0.7070835992342054, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6723, + "time": 0.7070835992342054, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6747, + "time": 0.7096362476068921, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6771, + "time": 0.7121888959795788, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6771, + "time": 0.7121888959795788, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6796, + "time": 0.7147415443522654, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6844, + "time": 0.7198468410976387, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6893, + "time": 0.7249521378430122, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6917, + "time": 0.7275047862156988, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6917, + "time": 0.7275047862156988, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6941, + "time": 0.7300574345883853, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6965, + "time": 0.7326100829610721, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6965, + "time": 0.7326100829610721, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6990, + "time": 0.7351627313337588, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7014, + "time": 0.7377153797064454, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7014, + "time": 0.7377153797064454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7038, + "time": 0.7402680280791321, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7063, + "time": 0.7428206764518187, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7063, + "time": 0.7428206764518187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7087, + "time": 0.7453733248245054, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7135, + "time": 0.7504786215698788, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7184, + "time": 0.7555839183152521, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7232, + "time": 0.7606892150606254, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3556,18 +4844,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6502, - "time": 0.6841097638800255, + "noteOrder": 7378, + "time": 0.7760051052967453, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3584,13 +4872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6550, - "time": 0.6892150606253988, + "noteOrder": 7475, + "time": 0.7862156987874921, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3602,18 +4890,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6599, - "time": 0.6943203573707721, + "noteOrder": 7475, + "time": 0.7862156987874921, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -3625,18 +4913,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6647, - "time": 0.6994256541161454, + "noteOrder": 7572, + "time": 0.7964262922782387, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3648,18 +4936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6696, - "time": 0.7045309508615187, + "noteOrder": 7572, + "time": 0.7964262922782387, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3671,18 +4959,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6745, - "time": 0.709636247606892, + "noteOrder": 7669, + "time": 0.8066368857689853, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3699,13 +4987,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6793, - "time": 0.7147415443522654, + "noteOrder": 7669, + "time": 0.8066368857689853, "position": { - "x": 2, + "x": 4, "y": 0 }, "position2D": { @@ -3722,11 +5010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6842, - "time": 0.7198468410976387, + "noteOrder": 7766, + "time": 0.816847479259732, "position": { "x": 4, "y": 0 @@ -3745,13 +5033,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6890, - "time": 0.724952137843012, + "noteOrder": 8203, + "time": 0.8627951499680918, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3768,13 +5056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6939, - "time": 0.7300574345883853, + "noteOrder": 8252, + "time": 0.8679004467134652, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3786,18 +5074,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6987, - "time": 0.7351627313337588, + "noteOrder": 8349, + "time": 0.8781110402042118, "position": { - "x": 8, + "x": 2, "y": 0 }, "position2D": { @@ -3809,18 +5097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7036, - "time": 0.7402680280791321, + "noteOrder": 8494, + "time": 0.8934269304403317, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3837,13 +5125,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 176, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7084, - "time": 0.7453733248245054, + "noteOrder": 8543, + "time": 0.8985322271857051, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -3860,13 +5148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 176, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7133, - "time": 0.7504786215698787, + "noteOrder": 8689, + "time": 0.9138481174218251, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3883,13 +5171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7181, - "time": 0.7555839183152521, + "noteOrder": 8737, + "time": 0.9189534141671984, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3906,13 +5194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7230, - "time": 0.7606892150606254, + "noteOrder": 8761, + "time": 0.9215060625398851, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3929,13 +5217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7375, - "time": 0.7760051052967454, + "noteOrder": 8761, + "time": 0.9215060625398851, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3947,18 +5235,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, + "lineGroupId": 181, "indexInLine": 1, "isSliding": false, - "noteOrder": 7472, - "time": 0.786215698787492, + "noteOrder": 8786, + "time": 0.9240587109125717, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3975,13 +5263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 181, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7472, - "time": 0.786215698787492, + "noteOrder": 8810, + "time": 0.9266113592852585, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3993,18 +5281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 181, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7569, - "time": 0.7964262922782387, + "noteOrder": 8810, + "time": 0.9266113592852585, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4016,18 +5304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7569, - "time": 0.7964262922782387, + "noteOrder": 8834, + "time": 0.929164007657945, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4039,18 +5327,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 1, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7666, - "time": 0.8066368857689853, + "noteOrder": 8859, + "time": 0.9317166560306317, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4062,16 +5350,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7666, - "time": 0.8066368857689853, + "noteOrder": 8859, + "time": 0.9317166560306317, "position": { "x": 4, "y": 0 @@ -4090,13 +5378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, + "lineGroupId": 183, "indexInLine": 1, "isSliding": false, - "noteOrder": 7763, - "time": 0.816847479259732, + "noteOrder": 8883, + "time": 0.9342693044033185, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4108,18 +5396,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 183, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8200, - "time": 0.8627951499680918, + "noteOrder": 8907, + "time": 0.9368219527760051, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4136,11 +5424,11 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 1, + "lineGroupId": 183, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8249, - "time": 0.8679004467134651, + "noteOrder": 8907, + "time": 0.9368219527760051, "position": { "x": 6, "y": 0 @@ -4159,13 +5447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8346, - "time": 0.8781110402042118, + "noteOrder": 8931, + "time": 0.9393746011486918, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -4182,13 +5470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8491, - "time": 0.8934269304403318, + "noteOrder": 8956, + "time": 0.9419272495213784, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4205,13 +5493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8540, - "time": 0.8985322271857051, + "noteOrder": 8956, + "time": 0.9419272495213784, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4223,18 +5511,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 8685, - "time": 0.9138481174218251, + "noteOrder": 8980, + "time": 0.9444798978940651, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4251,13 +5539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8734, - "time": 0.9189534141671984, + "noteOrder": 9004, + "time": 0.9470325462667517, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4269,18 +5557,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8782, - "time": 0.9240587109125717, + "noteOrder": 9004, + "time": 0.9470325462667517, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4297,11 +5585,11 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8831, - "time": 0.929164007657945, + "noteOrder": 9028, + "time": 0.9495851946394385, "position": { "x": 3, "y": 0 @@ -4320,13 +5608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8879, - "time": 0.9342693044033185, + "noteOrder": 9053, + "time": 0.9521378430121251, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4338,18 +5626,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8928, - "time": 0.9393746011486918, + "noteOrder": 9053, + "time": 0.9521378430121251, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4366,11 +5654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8977, - "time": 0.9444798978940651, + "noteOrder": 9077, + "time": 0.9546904913848117, "position": { "x": 7, "y": 0 @@ -4389,13 +5677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9025, - "time": 0.9495851946394384, + "noteOrder": 9101, + "time": 0.9572431397574984, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4407,18 +5695,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 187, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9074, - "time": 0.9546904913848118, + "noteOrder": 9101, + "time": 0.9572431397574984, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4436,10 +5724,10 @@ }, { "lineGroupId": 188, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 9171, - "time": 0.9649010848755584, + "noteOrder": 9174, + "time": 0.9649010848755583, "position": { "x": 2, "y": 0 @@ -4459,9 +5747,9 @@ }, { "lineGroupId": 188, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 9292, + "noteOrder": 9295, "time": 0.9776643267389916, "position": { "x": 4, @@ -4482,10 +5770,10 @@ }, { "lineGroupId": 188, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 9316, - "time": 0.9802169751116784, + "noteOrder": 9320, + "time": 0.9802169751116783, "position": { "x": 4, "y": 0 diff --git "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/info.json" "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/info.json" index c0009807..96d6a24a 100644 --- "a/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/info.json" +++ "b/tracks/\343\202\271\343\203\274\343\203\221\343\203\274\346\210\246\346\271\257\343\203\220\343\203\220\343\203\263\343\203\220\343\203\274\343\203\263/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3", - "SongLength": "136.385306", + "SongLength": "126.432653", "SongAuthorName": "\u3059\u308f\u3072\u3067\u304a,\u79cb\u6210,\u304b\u307c\u3061\u3083,\u85cd\u6708\u306a\u304f\u308b,NU-KO by BEMANI Sound Team \"\u516b\u6238\u4e80\u751f\u7f85\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1a.json" "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1a.json" index db079c40..813261a6 100644 --- "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1a.json" +++ "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 171, - "time": 0.027370478983382213, + "time": 0.027370478983382206, "position": { "x": 4, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 268, - "time": 0.043010752688172046, + "noteOrder": 269, + "time": 0.04301075268817204, "position": { "x": 6, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 561, + "noteOrder": 562, "time": 0.08993157380254155, "position": { "x": 4, @@ -174,7 +174,7 @@ }, { "noteOrder": 635, - "time": 0.10166177908113391, + "time": 0.10166177908113393, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 635, - "time": 0.10166177908113391, + "time": 0.10166177908113393, "position": { "x": 6, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 659, - "time": 0.1055718475073314, + "time": 0.10557184750733137, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 659, - "time": 0.1055718475073314, + "time": 0.10557184750733137, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 708, - "time": 0.1133919843597263, + "time": 0.11339198435972629, "position": { "x": 4, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 805, + "noteOrder": 806, "time": 0.12903225806451613, "position": { "x": 7, @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 854, + "noteOrder": 855, "time": 0.13685239491691104, "position": { "x": 7, @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 854, + "noteOrder": 855, "time": 0.13685239491691104, "position": { "x": 3, @@ -414,7 +414,7 @@ }, { "noteOrder": 903, - "time": 0.14467253176930597, + "time": 0.14467253176930595, "position": { "x": 4, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 976, - "time": 0.15640273704789834, + "noteOrder": 977, + "time": 0.1564027370478983, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1049, + "noteOrder": 1050, "time": 0.16813294232649073, "position": { "x": 5, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1098, + "noteOrder": 1099, "time": 0.17595307917888564, "position": { "x": 6, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1147, - "time": 0.18377321603128055, + "noteOrder": 1148, + "time": 0.18377321603128052, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1220, + "noteOrder": 1221, "time": 0.19550342130987292, "position": { "x": 7, @@ -594,7 +594,7 @@ }, { "noteOrder": 1245, - "time": 0.1994134897360704, + "time": 0.19941348973607037, "position": { "x": 5, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1269, - "time": 0.20332355816226783, + "noteOrder": 1270, + "time": 0.20332355816226785, "position": { "x": 7, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 1294, - "time": 0.2072336265884653, + "time": 0.20723362658846528, "position": { "x": 7, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1318, - "time": 0.2111436950146628, + "time": 0.21114369501466274, "position": { "x": 3, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1342, + "noteOrder": 1343, "time": 0.21505376344086022, "position": { "x": 3, @@ -714,7 +714,7 @@ }, { "noteOrder": 1538, - "time": 0.2463343108504399, + "time": 0.24633431085043986, "position": { "x": 8, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.25024437927663734, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.25024437927663734, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.2541544477028348, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1587, "time": 0.2541544477028348, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1684, + "noteOrder": 1685, "time": 0.2697947214076246, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1708, + "noteOrder": 1709, "time": 0.27370478983382207, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1733, - "time": 0.2776148582600196, + "noteOrder": 1734, + "time": 0.2776148582600195, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1758, "time": 0.28152492668621704, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1806, - "time": 0.28934506353861195, + "noteOrder": 1807, + "time": 0.2893450635386119, "position": { "x": 7, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1830, + "noteOrder": 1831, "time": 0.2932551319648094, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1928, + "noteOrder": 1929, "time": 0.3088954056695992, "position": { "x": 3, @@ -994,7 +994,7 @@ }, { "noteOrder": 1953, - "time": 0.3128054740957967, + "time": 0.3128054740957966, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1977, - "time": 0.3167155425219942, + "noteOrder": 1978, + "time": 0.31671554252199413, "position": { "x": 7, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2002, "time": 0.3206256109481916, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.32453567937438904, "position": { "x": 7, @@ -1094,7 +1094,7 @@ }, { "noteOrder": 2075, - "time": 0.332355816226784, + "time": 0.33235581622678395, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.34017595307917886, "position": { "x": 6, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2148, - "time": 0.34408602150537637, + "noteOrder": 2149, + "time": 0.3440860215053763, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2173, "time": 0.3479960899315738, "position": { "x": 7, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2221, + "noteOrder": 2222, "time": 0.3558162267839687, "position": { "x": 3, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2221, + "noteOrder": 2222, "time": 0.3558162267839687, "position": { "x": 7, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2294, - "time": 0.3675464320625611, + "noteOrder": 2295, + "time": 0.36754643206256105, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2319, - "time": 0.3714565004887586, + "noteOrder": 2320, + "time": 0.37145650048875856, "position": { "x": 7, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2343, + "noteOrder": 2344, "time": 0.375366568914956, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2355, + "noteOrder": 2356, "time": 0.37732160312805474, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2367, + "noteOrder": 2368, "time": 0.37927663734115347, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2392, - "time": 0.383186705767351, + "noteOrder": 2393, + "time": 0.3831867057673509, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2416, - "time": 0.38709677419354843, + "noteOrder": 2417, + "time": 0.3870967741935484, "position": { "x": 3, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2465, + "noteOrder": 2466, "time": 0.3949169110459433, "position": { "x": 6, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2514, - "time": 0.40273704789833825, + "noteOrder": 2515, + "time": 0.4027370478983382, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 2538, - "time": 0.40664711632453565, + "noteOrder": 2539, + "time": 0.4066471163245357, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2563, - "time": 0.41055718475073316, + "noteOrder": 2564, + "time": 0.4105571847507331, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2587, - "time": 0.4144672531769306, + "noteOrder": 2588, + "time": 0.41446725317693056, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2587, - "time": 0.4144672531769306, + "noteOrder": 2588, + "time": 0.41446725317693056, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2611, + "noteOrder": 2613, "time": 0.41837732160312807, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 2611, + "noteOrder": 2613, "time": 0.41837732160312807, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2709, + "noteOrder": 2710, "time": 0.4340175953079179, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2758, + "noteOrder": 2759, "time": 0.4418377321603128, "position": { "x": 8, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2807, - "time": 0.44965786901270777, + "noteOrder": 2808, + "time": 0.44965786901270766, "position": { "x": 2, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2929, - "time": 0.46920821114369504, + "noteOrder": 2930, + "time": 0.469208211143695, "position": { "x": 3, "y": 0 @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2947, + "noteOrder": 2948, "time": 0.47214076246334313, "position": { "x": 5, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.4809384164222874, + "noteOrder": 3003, + "time": 0.48093841642228735, "position": { "x": 3, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3028, "time": 0.48484848484848486, "position": { "x": 7, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3051, + "noteOrder": 3052, "time": 0.4887585532746823, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3075, - "time": 0.4926686217008798, + "noteOrder": 3076, + "time": 0.4926686217008797, "position": { "x": 6, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.4965786901270772, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3637, - "time": 0.5826001955034213, + "noteOrder": 3638, + "time": 0.5826001955034212, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3685, - "time": 0.5904203323558163, + "noteOrder": 3687, + "time": 0.5904203323558161, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3711, "time": 0.5943304007820137, "position": { "x": 7, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3734, + "noteOrder": 3736, "time": 0.5982404692082112, "position": { "x": 3, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3832, - "time": 0.613880742913001, + "noteOrder": 3833, + "time": 0.6138807429130009, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3881, + "noteOrder": 3882, "time": 0.6217008797653959, "position": { "x": 6, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3905, - "time": 0.6256109481915934, + "noteOrder": 3907, + "time": 0.6256109481915932, "position": { "x": 3, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.6295210166177908, "position": { "x": 7, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4125, + "noteOrder": 4126, "time": 0.6608015640273706, "position": { "x": 4, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4149, - "time": 0.664711632453568, + "noteOrder": 4151, + "time": 0.6647116324535679, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4174, - "time": 0.6686217008797655, + "noteOrder": 4175, + "time": 0.6686217008797654, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4200, "time": 0.6725317693059629, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.6764418377321603, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4248, "time": 0.6803519061583577, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4271, - "time": 0.6842619745845552, + "noteOrder": 4273, + "time": 0.6842619745845553, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4296, - "time": 0.6881720430107527, + "noteOrder": 4297, + "time": 0.6881720430107526, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4314, + "noteOrder": 4316, "time": 0.6911045943304007, "position": { "x": 5, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4369, - "time": 0.6999022482893451, + "noteOrder": 4370, + "time": 0.699902248289345, "position": { "x": 3, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4419, "time": 0.70772238514174, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4442, + "noteOrder": 4444, "time": 0.7116324535679374, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4466, + "noteOrder": 4468, "time": 0.7155425219941349, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.7194525904203324, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4515, - "time": 0.7233626588465298, + "noteOrder": 4517, + "time": 0.7233626588465297, "position": { "x": 7, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 4541, "time": 0.7272727272727273, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 4541, "time": 0.7272727272727273, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.7311827956989247, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.7311827956989247, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4613, - "time": 0.7390029325513198, + "noteOrder": 4615, + "time": 0.7390029325513197, "position": { "x": 4, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4662, - "time": 0.7468230694037146, + "noteOrder": 4663, + "time": 0.7468230694037145, "position": { "x": 6, "y": 0 @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.7546432062561095, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.7624633431085044, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4808, - "time": 0.7702834799608994, + "noteOrder": 4810, + "time": 0.7702834799608993, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4857, - "time": 0.7781036168132943, + "noteOrder": 4859, + "time": 0.7781036168132942, "position": { "x": 4, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4881, + "noteOrder": 4883, "time": 0.7820136852394917, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 4908, "time": 0.7859237536656891, "position": { "x": 4, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7898338220918866, "position": { "x": 7, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4955, - "time": 0.7937438905180841, + "noteOrder": 4956, + "time": 0.793743890518084, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.8250244379276638, "position": { "x": 3, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5345, + "noteOrder": 5347, "time": 0.8563049853372434, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5369, + "noteOrder": 5372, "time": 0.8602150537634409, "position": { "x": 7, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5394, - "time": 0.8641251221896383, + "noteOrder": 5396, + "time": 0.8641251221896382, "position": { "x": 5, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5418, + "noteOrder": 5420, "time": 0.8680351906158358, "position": { "x": 3, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 5443, - "time": 0.8719452590420333, + "noteOrder": 5445, + "time": 0.8719452590420332, "position": { "x": 6, "y": 0 @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 5443, - "time": 0.8719452590420333, + "noteOrder": 5445, + "time": 0.8719452590420332, "position": { "x": 4, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5565, + "noteOrder": 5567, "time": 0.8914956011730205, "position": { "x": 3, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 5589, + "noteOrder": 5591, "time": 0.895405669599218, "position": { "x": 5, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5613, - "time": 0.8993157380254155, + "noteOrder": 5616, + "time": 0.8993157380254153, "position": { "x": 7, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5638, - "time": 0.903225806451613, + "noteOrder": 5640, + "time": 0.9032258064516129, "position": { "x": 6, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5638, - "time": 0.903225806451613, + "noteOrder": 5640, + "time": 0.9032258064516129, "position": { "x": 4, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5662, - "time": 0.9071358748778104, + "noteOrder": 5665, + "time": 0.9071358748778103, "position": { "x": 3, "y": 0 @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5662, - "time": 0.9071358748778104, + "noteOrder": 5665, + "time": 0.9071358748778103, "position": { "x": 7, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 5738, "time": 0.9188660801564027, "position": { "x": 7, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 5738, "time": 0.9188660801564027, "position": { "x": 3, @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9345063538611926, "position": { "x": 4, @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5919, - "time": 0.9481915933528837, + "noteOrder": 5921, + "time": 0.9481915933528836, "position": { "x": 3, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5931, - "time": 0.9501466275659824, + "noteOrder": 5933, + "time": 0.9501466275659823, "position": { "x": 5, "y": 0 @@ -2876,7 +2876,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.015640273704789834, @@ -2899,7 +2899,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, "time": 0.02346041055718475, @@ -2922,10 +2922,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 171, - "time": 0.027370478983382213, + "time": 0.027370478983382206, "position": { "x": 6, "y": 0 @@ -2945,7 +2945,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, "time": 0.03128054740957967, @@ -2968,10 +2968,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 244, - "time": 0.039100684261974585, + "time": 0.03910068426197458, "position": { "x": 4, "y": 0 @@ -2991,10 +2991,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 268, - "time": 0.043010752688172046, + "noteOrder": 269, + "time": 0.04301075268817204, "position": { "x": 4, "y": 0 @@ -3014,7 +3014,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, "time": 0.0469208211143695, @@ -3037,10 +3037,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 317, - "time": 0.050830889540566956, + "time": 0.05083088954056696, "position": { "x": 7, "y": 0 @@ -3060,10 +3060,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 342, - "time": 0.054740957966764425, + "time": 0.05474095796676441, "position": { "x": 3, "y": 0 @@ -3083,10 +3083,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 366, - "time": 0.05865102639296188, + "time": 0.05865102639296187, "position": { "x": 3, "y": 0 @@ -3106,7 +3106,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 391, "time": 0.06256109481915934, @@ -3129,7 +3129,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 439, "time": 0.07038123167155426, @@ -3152,7 +3152,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 391, "time": 0.06256109481915934, @@ -3175,7 +3175,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 439, "time": 0.07038123167155426, @@ -3198,10 +3198,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.07820136852394917, + "time": 0.07820136852394916, "position": { "x": 7, "y": 0 @@ -3221,7 +3221,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 513, "time": 0.08211143695014662, @@ -3244,10 +3244,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 537, - "time": 0.08602150537634409, + "time": 0.08602150537634408, "position": { "x": 3, "y": 0 @@ -3267,9 +3267,9 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 561, + "noteOrder": 562, "time": 0.08993157380254155, "position": { "x": 3, @@ -3290,10 +3290,10 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 683, - "time": 0.10948191593352885, + "noteOrder": 684, + "time": 0.10948191593352882, "position": { "x": 3, "y": 0 @@ -3313,10 +3313,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 708, - "time": 0.1133919843597263, + "time": 0.11339198435972629, "position": { "x": 3, "y": 0 @@ -3336,10 +3336,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 732, - "time": 0.11730205278592376, + "time": 0.11730205278592375, "position": { "x": 7, "y": 0 @@ -3359,7 +3359,7 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 757, "time": 0.12121212121212122, @@ -3382,7 +3382,7 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 879, "time": 0.14076246334310852, @@ -3405,10 +3405,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 903, - "time": 0.14467253176930597, + "time": 0.14467253176930595, "position": { "x": 6, "y": 0 @@ -3428,9 +3428,9 @@ }, { "lineGroupId": 32, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 927, + "noteOrder": 928, "time": 0.14858260019550343, "position": { "x": 7, @@ -3451,7 +3451,7 @@ }, { "lineGroupId": 32, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, "noteOrder": 952, "time": 0.15249266862170088, @@ -3474,7 +3474,7 @@ }, { "lineGroupId": 36, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1001, "time": 0.1603128054740958, @@ -3497,9 +3497,9 @@ }, { "lineGroupId": 36, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1049, + "noteOrder": 1050, "time": 0.16813294232649073, "position": { "x": 7, @@ -3520,10 +3520,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1074, - "time": 0.17204301075268819, + "time": 0.17204301075268816, "position": { "x": 4, "y": 0 @@ -3543,9 +3543,9 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1098, + "noteOrder": 1099, "time": 0.17595307917888564, "position": { "x": 4, @@ -3566,7 +3566,7 @@ }, { "lineGroupId": 39, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1123, "time": 0.1798631476050831, @@ -3589,10 +3589,10 @@ }, { "lineGroupId": 39, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1147, - "time": 0.18377321603128055, + "noteOrder": 1148, + "time": 0.18377321603128052, "position": { "x": 3, "y": 0 @@ -3612,10 +3612,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1196, - "time": 0.1915933528836755, + "time": 0.19159335288367546, "position": { "x": 3, "y": 0 @@ -3635,10 +3635,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1245, - "time": 0.1994134897360704, + "time": 0.19941348973607037, "position": { "x": 3, "y": 0 @@ -3658,10 +3658,10 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1367, - "time": 0.2189638318670577, + "time": 0.21896383186705765, "position": { "x": 6, "y": 0 @@ -3681,9 +3681,9 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1379, + "noteOrder": 1380, "time": 0.2209188660801564, "position": { "x": 6, @@ -3704,9 +3704,9 @@ }, { "lineGroupId": 50, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1391, + "noteOrder": 1392, "time": 0.22287390029325513, "position": { "x": 7, @@ -3727,10 +3727,10 @@ }, { "lineGroupId": 50, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1403, - "time": 0.22482893450635388, + "noteOrder": 1404, + "time": 0.22482893450635383, "position": { "x": 7, "y": 0 @@ -3750,10 +3750,10 @@ }, { "lineGroupId": 50, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1416, - "time": 0.2267839687194526, + "time": 0.22678396871945258, "position": { "x": 6, "y": 0 @@ -3773,10 +3773,10 @@ }, { "lineGroupId": 50, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1428, - "time": 0.22873900293255134, + "time": 0.2287390029325513, "position": { "x": 6, "y": 0 @@ -3796,9 +3796,9 @@ }, { "lineGroupId": 50, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1440, + "noteOrder": 1441, "time": 0.23069403714565004, "position": { "x": 7, @@ -3819,10 +3819,10 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1367, - "time": 0.2189638318670577, + "time": 0.21896383186705765, "position": { "x": 4, "y": 0 @@ -3842,9 +3842,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1379, + "noteOrder": 1380, "time": 0.2209188660801564, "position": { "x": 4, @@ -3865,9 +3865,9 @@ }, { "lineGroupId": 51, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1391, + "noteOrder": 1392, "time": 0.22287390029325513, "position": { "x": 4, @@ -3888,10 +3888,10 @@ }, { "lineGroupId": 51, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1403, - "time": 0.22482893450635388, + "noteOrder": 1404, + "time": 0.22482893450635383, "position": { "x": 4, "y": 0 @@ -3911,10 +3911,10 @@ }, { "lineGroupId": 51, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, "noteOrder": 1416, - "time": 0.2267839687194526, + "time": 0.22678396871945258, "position": { "x": 4, "y": 0 @@ -3934,10 +3934,10 @@ }, { "lineGroupId": 51, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, "noteOrder": 1428, - "time": 0.22873900293255134, + "time": 0.2287390029325513, "position": { "x": 4, "y": 0 @@ -3957,9 +3957,9 @@ }, { "lineGroupId": 51, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 1440, + "noteOrder": 1441, "time": 0.23069403714565004, "position": { "x": 4, @@ -3980,10 +3980,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1464, - "time": 0.23460410557184752, + "noteOrder": 1465, + "time": 0.2346041055718475, "position": { "x": 3, "y": 0 @@ -4003,7 +4003,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1489, "time": 0.23851417399804498, @@ -4026,9 +4026,9 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.24242424242424243, "position": { "x": 7, @@ -4049,10 +4049,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1538, - "time": 0.2463343108504399, + "time": 0.24633431085043986, "position": { "x": 7, "y": 0 @@ -4072,7 +4072,7 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1611, "time": 0.25806451612903225, @@ -4095,10 +4095,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.26197458455522976, + "noteOrder": 1636, + "time": 0.2619745845552297, "position": { "x": 7, "y": 0 @@ -4118,7 +4118,7 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1611, "time": 0.25806451612903225, @@ -4141,10 +4141,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1635, - "time": 0.26197458455522976, + "noteOrder": 1636, + "time": 0.2619745845552297, "position": { "x": 3, "y": 0 @@ -4164,7 +4164,7 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1660, "time": 0.26588465298142716, @@ -4187,10 +4187,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1806, - "time": 0.28934506353861195, + "noteOrder": 1807, + "time": 0.2893450635386119, "position": { "x": 3, "y": 0 @@ -4210,9 +4210,9 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1855, + "noteOrder": 1856, "time": 0.29716520039100686, "position": { "x": 4, @@ -4233,10 +4233,10 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1879, - "time": 0.3010752688172043, + "noteOrder": 1880, + "time": 0.30107526881720426, "position": { "x": 4, "y": 0 @@ -4256,9 +4256,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1855, + "noteOrder": 1856, "time": 0.29716520039100686, "position": { "x": 6, @@ -4279,10 +4279,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1879, - "time": 0.3010752688172043, + "noteOrder": 1880, + "time": 0.30107526881720426, "position": { "x": 6, "y": 0 @@ -4302,9 +4302,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2050, + "noteOrder": 2051, "time": 0.3284457478005865, "position": { "x": 3, @@ -4325,10 +4325,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2075, - "time": 0.332355816226784, + "time": 0.33235581622678395, "position": { "x": 3, "y": 0 @@ -4348,9 +4348,9 @@ }, { "lineGroupId": 82, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.33626588465298146, "position": { "x": 7, @@ -4371,9 +4371,9 @@ }, { "lineGroupId": 82, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2123, + "noteOrder": 2124, "time": 0.34017595307917886, "position": { "x": 7, @@ -4394,9 +4394,9 @@ }, { "lineGroupId": 90, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2245, + "noteOrder": 2246, "time": 0.3597262952101662, "position": { "x": 4, @@ -4417,9 +4417,9 @@ }, { "lineGroupId": 90, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2270, + "noteOrder": 2271, "time": 0.36363636363636365, "position": { "x": 4, @@ -4440,9 +4440,9 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2245, + "noteOrder": 2246, "time": 0.3597262952101662, "position": { "x": 6, @@ -4463,9 +4463,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2270, + "noteOrder": 2271, "time": 0.36363636363636365, "position": { "x": 6, @@ -4486,9 +4486,9 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.39100684261974583, "position": { "x": 7, @@ -4509,9 +4509,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2465, + "noteOrder": 2466, "time": 0.3949169110459433, "position": { "x": 7, @@ -4532,10 +4532,10 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2489, - "time": 0.3988269794721408, + "noteOrder": 2490, + "time": 0.39882697947214074, "position": { "x": 3, "y": 0 @@ -4555,10 +4555,10 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2514, - "time": 0.40273704789833825, + "noteOrder": 2515, + "time": 0.4027370478983382, "position": { "x": 3, "y": 0 @@ -4578,10 +4578,10 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2636, - "time": 0.4222873900293256, + "noteOrder": 2637, + "time": 0.42228739002932547, "position": { "x": 5, "y": 0 @@ -4601,10 +4601,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2660, - "time": 0.426197458455523, + "noteOrder": 2661, + "time": 0.4261974584555229, "position": { "x": 5, "y": 0 @@ -4624,10 +4624,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2660, - "time": 0.426197458455523, + "noteOrder": 2661, + "time": 0.4261974584555229, "position": { "x": 5, "y": 0 @@ -4647,9 +4647,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2685, + "noteOrder": 2686, "time": 0.43010752688172044, "position": { "x": 5, @@ -4670,9 +4670,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2685, + "noteOrder": 2686, "time": 0.43010752688172044, "position": { "x": 5, @@ -4693,9 +4693,9 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, + "noteOrder": 2710, "time": 0.4340175953079179, "position": { "x": 5, @@ -4716,10 +4716,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2734, - "time": 0.4379276637341154, + "noteOrder": 2735, + "time": 0.4379276637341153, "position": { "x": 7, "y": 0 @@ -4739,9 +4739,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2758, + "noteOrder": 2759, "time": 0.4418377321603128, "position": { "x": 7, @@ -4762,9 +4762,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2782, + "noteOrder": 2783, "time": 0.44574780058651026, "position": { "x": 3, @@ -4785,10 +4785,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2807, - "time": 0.44965786901270777, + "noteOrder": 2808, + "time": 0.44965786901270766, "position": { "x": 3, "y": 0 @@ -4808,10 +4808,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2831, - "time": 0.4535679374389052, + "noteOrder": 2832, + "time": 0.45356793743890517, "position": { "x": 7, "y": 0 @@ -4831,10 +4831,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2856, - "time": 0.4574780058651027, + "noteOrder": 2857, + "time": 0.4574780058651026, "position": { "x": 6, "y": 0 @@ -4854,9 +4854,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2880, + "noteOrder": 2881, "time": 0.4613880742913001, "position": { "x": 3, @@ -4877,10 +4877,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2904, - "time": 0.4652981427174976, + "noteOrder": 2906, + "time": 0.46529814271749753, "position": { "x": 4, "y": 0 @@ -4900,10 +4900,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2965, - "time": 0.4750733137829912, + "noteOrder": 2967, + "time": 0.47507331378299117, "position": { "x": 7, "y": 0 @@ -4923,10 +4923,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3002, - "time": 0.4809384164222874, + "noteOrder": 3003, + "time": 0.48093841642228735, "position": { "x": 7, "y": 0 @@ -4946,9 +4946,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.5004887585532747, "position": { "x": 3, @@ -4969,9 +4969,9 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, + "noteOrder": 3150, "time": 0.5043988269794721, "position": { "x": 3, @@ -4992,9 +4992,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.5004887585532747, "position": { "x": 7, @@ -5015,9 +5015,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, + "noteOrder": 3150, "time": 0.5043988269794721, "position": { "x": 7, @@ -5038,9 +5038,9 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5083088954056696, "position": { "x": 4, @@ -5061,9 +5061,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3197, + "noteOrder": 3199, "time": 0.512218963831867, "position": { "x": 4, @@ -5084,9 +5084,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5083088954056696, "position": { "x": 6, @@ -5107,9 +5107,9 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3197, + "noteOrder": 3199, "time": 0.512218963831867, "position": { "x": 6, @@ -5130,9 +5130,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3222, + "noteOrder": 3223, "time": 0.5161290322580645, "position": { "x": 3, @@ -5152,11 +5152,11 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3270, - "time": 0.5239491691104595, + "noteOrder": 3247, + "time": 0.520039100684262, "position": { "x": 3, "y": 0 @@ -5170,18 +5170,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3319, - "time": 0.5317693059628543, + "noteOrder": 3247, + "time": 0.520039100684262, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5198,13 +5198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3344, - "time": 0.5356793743890519, + "noteOrder": 3272, + "time": 0.5239491691104594, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5216,18 +5216,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 2, + "lineGroupId": 132, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3392, - "time": 0.5434995112414467, + "noteOrder": 3272, + "time": 0.5239491691104594, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5239,16 +5239,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3368, - "time": 0.5395894428152492, + "noteOrder": 3272, + "time": 0.5239491691104594, "position": { "x": 3, "y": 0 @@ -5262,18 +5262,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3392, - "time": 0.5434995112414467, + "noteOrder": 3296, + "time": 0.5278592375366569, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5285,18 +5285,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3417, - "time": 0.5474095796676441, + "noteOrder": 3296, + "time": 0.5278592375366569, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5313,13 +5313,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3466, - "time": 0.5552297165200392, + "noteOrder": 3321, + "time": 0.5317693059628543, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5331,18 +5331,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3515, - "time": 0.5630498533724341, + "noteOrder": 3321, + "time": 0.5317693059628543, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5359,13 +5359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3539, - "time": 0.5669599217986315, + "noteOrder": 3321, + "time": 0.5317693059628543, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5382,13 +5382,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, + "lineGroupId": 134, "indexInLine": 2, "isSliding": false, - "noteOrder": 3588, - "time": 0.5747800586510263, + "noteOrder": 3333, + "time": 0.533724340175953, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5405,13 +5405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3563, - "time": 0.5708699902248289, + "noteOrder": 3333, + "time": 0.533724340175953, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5423,18 +5423,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3588, - "time": 0.5747800586510263, + "noteOrder": 3345, + "time": 0.5356793743890518, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5446,18 +5446,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3612, - "time": 0.5786901270772239, + "noteOrder": 3345, + "time": 0.5356793743890518, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5474,13 +5474,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 135, "indexInLine": 1, "isSliding": false, - "noteOrder": 3637, - "time": 0.5826001955034213, + "noteOrder": 3345, + "time": 0.5356793743890518, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5492,16 +5492,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 135, "indexInLine": 2, "isSliding": false, - "noteOrder": 3661, - "time": 0.5865102639296188, + "noteOrder": 3357, + "time": 0.5376344086021505, "position": { "x": 3, "y": 0 @@ -5515,16 +5515,62 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 135, "indexInLine": 3, "isSliding": false, - "noteOrder": 3685, - "time": 0.5904203323558163, + "noteOrder": 3357, + "time": 0.5376344086021505, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3394, + "time": 0.5434995112414467, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3369, + "time": 0.5395894428152492, "position": { "x": 3, "y": 0 @@ -5543,11 +5589,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3759, - "time": 0.6021505376344086, + "noteOrder": 3394, + "time": 0.5434995112414467, "position": { "x": 4, "y": 0 @@ -5566,13 +5612,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 137, "indexInLine": 1, "isSliding": false, - "noteOrder": 3783, - "time": 0.6060606060606061, + "noteOrder": 3418, + "time": 0.5474095796676441, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5584,18 +5630,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3759, - "time": 0.6021505376344086, + "noteOrder": 3443, + "time": 0.5513196480938417, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5612,11 +5658,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3783, - "time": 0.6060606060606061, + "noteOrder": 3443, + "time": 0.5513196480938417, "position": { "x": 6, "y": 0 @@ -5635,11 +5681,11 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3807, - "time": 0.6099706744868035, + "noteOrder": 3467, + "time": 0.555229716520039, "position": { "x": 6, "y": 0 @@ -5658,11 +5704,103 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3467, + "time": 0.555229716520039, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, "indexInLine": 1, "isSliding": false, - "noteOrder": 3832, - "time": 0.613880742913001, + "noteOrder": 3467, + "time": 0.555229716520039, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3492, + "time": 0.5591397849462365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3492, + "time": 0.5591397849462365, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3516, + "time": 0.5630498533724341, "position": { "x": 6, "y": 0 @@ -5676,16 +5814,62 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3516, + "time": 0.5630498533724341, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3516, + "time": 0.5630498533724341, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 139, "indexInLine": 2, "isSliding": false, - "noteOrder": 3856, - "time": 0.6177908113391984, + "noteOrder": 3528, + "time": 0.5650048875855328, "position": { "x": 7, "y": 0 @@ -5704,13 +5888,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 139, "indexInLine": 3, "isSliding": false, - "noteOrder": 3881, - "time": 0.6217008797653959, + "noteOrder": 3528, + "time": 0.5650048875855328, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5727,13 +5911,1048 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3954, - "time": 0.6334310850439884, + "noteOrder": 3540, + "time": 0.5669599217986314, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3540, + "time": 0.5669599217986314, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3540, + "time": 0.5669599217986314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3553, + "time": 0.5689149560117301, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3553, + "time": 0.5689149560117301, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3589, + "time": 0.5747800586510264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3565, + "time": 0.5708699902248289, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3589, + "time": 0.5747800586510264, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3614, + "time": 0.5786901270772238, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3638, + "time": 0.5826001955034212, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3662, + "time": 0.5865102639296188, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3687, + "time": 0.5904203323558161, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3760, + "time": 0.6021505376344085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.6060606060606061, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3760, + "time": 0.6021505376344085, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.6060606060606061, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3809, + "time": 0.6099706744868035, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3833, + "time": 0.6138807429130009, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3858, + "time": 0.6177908113391984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3882, + "time": 0.6217008797653959, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3955, + "time": 0.6334310850439883, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3980, + "time": 0.6373411534701856, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3955, + "time": 0.6334310850439883, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3980, + "time": 0.6373411534701856, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4004, + "time": 0.6412512218963832, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4029, + "time": 0.6451612903225806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4053, + "time": 0.6490713587487781, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4077, + "time": 0.6529814271749755, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4102, + "time": 0.656891495601173, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4200, + "time": 0.6725317693059629, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4334, + "time": 0.6940371456500489, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 172, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4370, + "time": 0.699902248289345, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4395, + "time": 0.7038123167155426, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4493, + "time": 0.7194525904203324, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4590, + "time": 0.7350928641251221, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4615, + "time": 0.7390029325513197, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4639, + "time": 0.7429130009775171, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4663, + "time": 0.7468230694037145, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4688, + "time": 0.750733137829912, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4712, + "time": 0.7546432062561095, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4737, + "time": 0.7585532746823069, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4761, + "time": 0.7624633431085044, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4786, + "time": 0.7663734115347018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4810, + "time": 0.7702834799608993, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4834, + "time": 0.7741935483870968, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4859, + "time": 0.7781036168132942, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -5750,13 +6969,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 201, "indexInLine": 1, "isSliding": false, - "noteOrder": 3978, - "time": 0.6373411534701858, + "noteOrder": 4981, + "time": 0.7976539589442815, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5768,18 +6987,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3954, - "time": 0.6334310850439884, + "noteOrder": 5005, + "time": 0.801564027370479, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5796,11 +7015,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3978, - "time": 0.6373411534701858, + "noteOrder": 5005, + "time": 0.801564027370479, "position": { "x": 6, "y": 0 @@ -5819,11 +7038,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4003, - "time": 0.6412512218963832, + "noteOrder": 5030, + "time": 0.8054740957966764, "position": { "x": 3, "y": 0 @@ -5842,11 +7061,11 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4027, - "time": 0.6451612903225806, + "noteOrder": 5054, + "time": 0.8093841642228738, "position": { "x": 3, "y": 0 @@ -5865,13 +7084,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4051, - "time": 0.6490713587487781, + "noteOrder": 5054, + "time": 0.8093841642228738, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5883,16 +7102,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, + "lineGroupId": 203, "indexInLine": 1, "isSliding": false, - "noteOrder": 4076, - "time": 0.6529814271749755, + "noteOrder": 5079, + "time": 0.8132942326490714, "position": { "x": 7, "y": 0 @@ -5911,13 +7130,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 203, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4100, - "time": 0.656891495601173, + "noteOrder": 5091, + "time": 0.8152492668621701, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5929,18 +7148,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 1, + "lineGroupId": 203, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4198, - "time": 0.6725317693059629, + "noteOrder": 5091, + "time": 0.8152492668621701, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5952,18 +7171,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4332, - "time": 0.6940371456500488, + "noteOrder": 5103, + "time": 0.8172043010752688, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5975,18 +7194,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4369, - "time": 0.6999022482893451, + "noteOrder": 5115, + "time": 0.8191593352883675, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5998,18 +7217,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4393, - "time": 0.7038123167155426, + "noteOrder": 5115, + "time": 0.8191593352883675, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6021,16 +7240,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, + "lineGroupId": 205, "indexInLine": 1, "isSliding": false, - "noteOrder": 4491, - "time": 0.7194525904203324, + "noteOrder": 5127, + "time": 0.8211143695014662, "position": { "x": 7, "y": 0 @@ -6049,13 +7268,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4588, - "time": 0.7350928641251222, + "noteOrder": 5140, + "time": 0.8230694037145649, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6067,18 +7286,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4613, - "time": 0.7390029325513198, + "noteOrder": 5140, + "time": 0.8230694037145649, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6090,18 +7309,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 205, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4637, - "time": 0.7429130009775172, + "noteOrder": 5152, + "time": 0.8250244379276638, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6118,11 +7337,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 205, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4662, - "time": 0.7468230694037146, + "noteOrder": 5152, + "time": 0.8250244379276638, "position": { "x": 7, "y": 0 @@ -6141,36 +7360,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4686, - "time": 0.750733137829912, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 190, + "lineGroupId": 207, "indexInLine": 1, "isSliding": false, - "noteOrder": 4710, - "time": 0.7546432062561095, + "noteOrder": 5176, + "time": 0.8289345063538611, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6187,11 +7383,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 207, "indexInLine": 2, "isSliding": false, - "noteOrder": 4735, - "time": 0.7585532746823069, + "noteOrder": 5201, + "time": 0.8328445747800586, "position": { "x": 3, "y": 0 @@ -6210,13 +7406,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 207, "indexInLine": 3, "isSliding": false, - "noteOrder": 4759, - "time": 0.7624633431085044, + "noteOrder": 5201, + "time": 0.8328445747800586, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6233,11 +7429,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4784, - "time": 0.766373411534702, + "noteOrder": 5225, + "time": 0.8367546432062561, "position": { "x": 7, "y": 0 @@ -6256,11 +7452,11 @@ "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4808, - "time": 0.7702834799608994, + "noteOrder": 5249, + "time": 0.8406647116324535, "position": { "x": 7, "y": 0 @@ -6279,13 +7475,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4832, - "time": 0.7741935483870969, + "noteOrder": 5249, + "time": 0.8406647116324535, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6297,16 +7493,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 4857, - "time": 0.7781036168132943, + "noteOrder": 5274, + "time": 0.8445747800586509, "position": { "x": 3, "y": 0 @@ -6325,13 +7521,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4979, - "time": 0.7976539589442816, + "noteOrder": 5286, + "time": 0.8465298142717498, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6343,18 +7539,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5028, - "time": 0.8054740957966765, + "noteOrder": 5286, + "time": 0.8465298142717498, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6371,11 +7567,11 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5077, - "time": 0.8132942326490713, + "noteOrder": 5298, + "time": 0.8484848484848485, "position": { "x": 7, "y": 0 @@ -6394,13 +7590,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5101, - "time": 0.8172043010752688, + "noteOrder": 5310, + "time": 0.8504398826979472, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6412,18 +7608,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5125, - "time": 0.8211143695014663, + "noteOrder": 5310, + "time": 0.8504398826979472, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6440,11 +7636,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5174, - "time": 0.8289345063538612, + "noteOrder": 5323, + "time": 0.8523949169110459, "position": { "x": 3, "y": 0 @@ -6463,13 +7659,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5223, - "time": 0.8367546432062561, + "noteOrder": 5335, + "time": 0.8543499511241446, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6481,18 +7677,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5272, - "time": 0.8445747800586512, + "noteOrder": 5335, + "time": 0.8543499511241446, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6509,13 +7705,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5296, - "time": 0.8484848484848485, + "noteOrder": 5347, + "time": 0.8563049853372434, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6527,16 +7723,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5321, - "time": 0.852394916911046, + "noteOrder": 5347, + "time": 0.8563049853372434, "position": { "x": 3, "y": 0 @@ -6556,10 +7752,10 @@ }, { "lineGroupId": 218, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5467, - "time": 0.8758553274682308, + "noteOrder": 5469, + "time": 0.8758553274682306, "position": { "x": 6, "y": 0 @@ -6579,9 +7775,9 @@ }, { "lineGroupId": 218, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8778103616813294, "position": { "x": 6, @@ -6602,10 +7798,10 @@ }, { "lineGroupId": 218, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5491, - "time": 0.8797653958944283, + "noteOrder": 5494, + "time": 0.8797653958944281, "position": { "x": 7, "y": 0 @@ -6625,9 +7821,9 @@ }, { "lineGroupId": 218, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5504, + "noteOrder": 5506, "time": 0.8817204301075269, "position": { "x": 7, @@ -6648,9 +7844,9 @@ }, { "lineGroupId": 218, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5516, + "noteOrder": 5518, "time": 0.8836754643206256, "position": { "x": 6, @@ -6671,10 +7867,10 @@ }, { "lineGroupId": 218, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5528, - "time": 0.8856304985337244, + "noteOrder": 5530, + "time": 0.8856304985337243, "position": { "x": 6, "y": 0 @@ -6694,10 +7890,10 @@ }, { "lineGroupId": 218, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5540, - "time": 0.8875855327468231, + "noteOrder": 5542, + "time": 0.887585532746823, "position": { "x": 7, "y": 0 @@ -6717,10 +7913,10 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5467, - "time": 0.8758553274682308, + "noteOrder": 5469, + "time": 0.8758553274682306, "position": { "x": 4, "y": 0 @@ -6740,9 +7936,9 @@ }, { "lineGroupId": 219, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5479, + "noteOrder": 5481, "time": 0.8778103616813294, "position": { "x": 4, @@ -6763,10 +7959,10 @@ }, { "lineGroupId": 219, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5491, - "time": 0.8797653958944283, + "noteOrder": 5494, + "time": 0.8797653958944281, "position": { "x": 4, "y": 0 @@ -6786,9 +7982,9 @@ }, { "lineGroupId": 219, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5504, + "noteOrder": 5506, "time": 0.8817204301075269, "position": { "x": 4, @@ -6809,9 +8005,9 @@ }, { "lineGroupId": 219, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5516, + "noteOrder": 5518, "time": 0.8836754643206256, "position": { "x": 4, @@ -6832,10 +8028,10 @@ }, { "lineGroupId": 219, - "indexInLine": 5, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5528, - "time": 0.8856304985337244, + "noteOrder": 5530, + "time": 0.8856304985337243, "position": { "x": 4, "y": 0 @@ -6855,10 +8051,10 @@ }, { "lineGroupId": 219, - "indexInLine": 6, + "indexInLine": 7, "isSliding": false, - "noteOrder": 5540, - "time": 0.8875855327468231, + "noteOrder": 5542, + "time": 0.887585532746823, "position": { "x": 4, "y": 0 @@ -6878,10 +8074,10 @@ }, { "lineGroupId": 227, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5687, - "time": 0.9110459433040079, + "noteOrder": 5689, + "time": 0.9110459433040078, "position": { "x": 6, "y": 0 @@ -6901,10 +8097,10 @@ }, { "lineGroupId": 227, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5711, - "time": 0.9149560117302054, + "noteOrder": 5713, + "time": 0.9149560117302052, "position": { "x": 6, "y": 0 @@ -6924,10 +8120,10 @@ }, { "lineGroupId": 228, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5687, - "time": 0.9110459433040079, + "noteOrder": 5689, + "time": 0.9110459433040078, "position": { "x": 4, "y": 0 @@ -6947,10 +8143,10 @@ }, { "lineGroupId": 228, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5711, - "time": 0.9149560117302054, + "noteOrder": 5713, + "time": 0.9149560117302052, "position": { "x": 4, "y": 0 @@ -6970,9 +8166,9 @@ }, { "lineGroupId": 232, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5760, + "noteOrder": 5762, "time": 0.9227761485826002, "position": { "x": 7, @@ -6993,10 +8189,10 @@ }, { "lineGroupId": 232, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5809, - "time": 0.9305962854349952, + "noteOrder": 5811, + "time": 0.9305962854349951, "position": { "x": 6, "y": 0 @@ -7016,9 +8212,9 @@ }, { "lineGroupId": 232, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9345063538611926, "position": { "x": 6, @@ -7039,10 +8235,10 @@ }, { "lineGroupId": 234, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5858, - "time": 0.9384164222873901, + "noteOrder": 5860, + "time": 0.93841642228739, "position": { "x": 3, "y": 0 @@ -7062,9 +8258,9 @@ }, { "lineGroupId": 234, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5906, + "noteOrder": 5909, "time": 0.946236559139785, "position": { "x": 4, @@ -7085,10 +8281,10 @@ }, { "lineGroupId": 237, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5943, - "time": 0.9521016617790812, + "noteOrder": 5945, + "time": 0.9521016617790811, "position": { "x": 7, "y": 0 @@ -7108,10 +8304,10 @@ }, { "lineGroupId": 237, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, - "time": 0.9853372434017597, + "noteOrder": 6153, + "time": 0.9853372434017594, "position": { "x": 7, "y": 0 @@ -7131,9 +8327,9 @@ }, { "lineGroupId": 238, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5955, + "noteOrder": 5958, "time": 0.9540566959921799, "position": { "x": 3, @@ -7154,10 +8350,10 @@ }, { "lineGroupId": 238, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, - "time": 0.9853372434017597, + "noteOrder": 6153, + "time": 0.9853372434017594, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1b.json" "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1b.json" index 62dc7126..14ca84b8 100644 --- "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1b.json" +++ "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/290_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 342, - "time": 0.054740957966764425, + "time": 0.05474095796676441, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 537, - "time": 0.08602150537634409, + "time": 0.08602150537634408, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 732, - "time": 0.11730205278592376, + "time": 0.11730205278592375, "position": { "x": 4, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 805, + "noteOrder": 806, "time": 0.12903225806451613, "position": { "x": 3, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 976, - "time": 0.15640273704789834, + "noteOrder": 977, + "time": 0.1564027370478983, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1049, + "noteOrder": 1050, "time": 0.16813294232649073, "position": { "x": 3, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1269, - "time": 0.20332355816226783, + "noteOrder": 1270, + "time": 0.20332355816226785, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1318, - "time": 0.2111436950146628, + "time": 0.21114369501466274, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1367, - "time": 0.2189638318670577, + "time": 0.21896383186705765, "position": { "x": 6, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1391, + "noteOrder": 1392, "time": 0.22287390029325513, "position": { "x": 4, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1464, - "time": 0.23460410557184752, + "noteOrder": 1465, + "time": 0.2346041055718475, "position": { "x": 3, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.24242424242424243, "position": { "x": 7, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1684, + "noteOrder": 1685, "time": 0.2697947214076246, "position": { "x": 5, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1733, - "time": 0.2776148582600196, + "noteOrder": 1734, + "time": 0.2776148582600195, "position": { "x": 5, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 1830, + "noteOrder": 1831, "time": 0.2932551319648094, "position": { "x": 5, @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1879, - "time": 0.3010752688172043, + "noteOrder": 1880, + "time": 0.30107526881720426, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1928, + "noteOrder": 1929, "time": 0.3088954056695992, "position": { "x": 5, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1977, - "time": 0.3167155425219942, + "noteOrder": 1978, + "time": 0.31671554252199413, "position": { "x": 5, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.32453567937438904, "position": { "x": 5, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.33626588465298146, "position": { "x": 4, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2270, + "noteOrder": 2271, "time": 0.36363636363636365, "position": { "x": 5, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2319, - "time": 0.3714565004887586, + "noteOrder": 2320, + "time": 0.37145650048875856, "position": { "x": 5, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2367, + "noteOrder": 2368, "time": 0.37927663734115347, "position": { "x": 5, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2416, - "time": 0.38709677419354843, + "noteOrder": 2417, + "time": 0.3870967741935484, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2465, + "noteOrder": 2466, "time": 0.3949169110459433, "position": { "x": 5, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2514, - "time": 0.40273704789833825, + "noteOrder": 2515, + "time": 0.4027370478983382, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2563, - "time": 0.41055718475073316, + "noteOrder": 2564, + "time": 0.4105571847507331, "position": { "x": 5, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2611, + "noteOrder": 2613, "time": 0.41837732160312807, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2734, - "time": 0.4379276637341154, + "noteOrder": 2735, + "time": 0.4379276637341153, "position": { "x": 3, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2758, + "noteOrder": 2759, "time": 0.4418377321603128, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2782, + "noteOrder": 2783, "time": 0.44574780058651026, "position": { "x": 7, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2807, - "time": 0.44965786901270777, + "noteOrder": 2808, + "time": 0.44965786901270766, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2831, - "time": 0.4535679374389052, + "noteOrder": 2832, + "time": 0.45356793743890517, "position": { "x": 4, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2856, - "time": 0.4574780058651027, + "noteOrder": 2857, + "time": 0.4574780058651026, "position": { "x": 6, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 2881, "time": 0.4613880742913001, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2904, - "time": 0.4652981427174976, + "noteOrder": 2906, + "time": 0.46529814271749753, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3270, - "time": 0.5239491691104595, + "noteOrder": 3272, + "time": 0.5239491691104594, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3321, "time": 0.5317693059628543, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3344, - "time": 0.5356793743890519, + "noteOrder": 3345, + "time": 0.5356793743890518, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3466, - "time": 0.5552297165200392, + "noteOrder": 3467, + "time": 0.555229716520039, "position": { "x": 4, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3515, + "noteOrder": 3516, "time": 0.5630498533724341, "position": { "x": 7, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3539, - "time": 0.5669599217986315, + "noteOrder": 3540, + "time": 0.5669599217986314, "position": { "x": 3, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3563, + "noteOrder": 3565, "time": 0.5708699902248289, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3588, - "time": 0.5747800586510263, + "noteOrder": 3589, + "time": 0.5747800586510264, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3661, + "noteOrder": 3662, "time": 0.5865102639296188, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3711, "time": 0.5943304007820137, "position": { "x": 3, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3734, + "noteOrder": 3736, "time": 0.5982404692082112, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3856, + "noteOrder": 3858, "time": 0.6177908113391984, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3905, - "time": 0.6256109481915934, + "noteOrder": 3907, + "time": 0.6256109481915932, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3929, + "noteOrder": 3931, "time": 0.6295210166177908, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3954, - "time": 0.6334310850439884, + "noteOrder": 3955, + "time": 0.6334310850439883, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3978, - "time": 0.6373411534701858, + "noteOrder": 3980, + "time": 0.6373411534701856, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4125, + "noteOrder": 4126, "time": 0.6608015640273706, "position": { "x": 5, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4149, - "time": 0.664711632453568, + "noteOrder": 4151, + "time": 0.6647116324535679, "position": { "x": 5, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4174, - "time": 0.6686217008797655, + "noteOrder": 4175, + "time": 0.6686217008797654, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 4320, - "time": 0.6920821114369502, + "noteOrder": 4322, + "time": 0.6920821114369501, "position": { "x": 5, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4346, "time": 0.6959921798631477, "position": { "x": 5, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4369, - "time": 0.6999022482893451, + "noteOrder": 4370, + "time": 0.699902248289345, "position": { "x": 5, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.7194525904203324, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4491, + "noteOrder": 4493, "time": 0.7194525904203324, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 4541, "time": 0.7272727272727273, "position": { "x": 7, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 4541, "time": 0.7272727272727273, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.750733137829912, "position": { "x": 7, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4710, + "noteOrder": 4712, "time": 0.7546432062561095, "position": { "x": 3, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4737, "time": 0.7585532746823069, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 4761, "time": 0.7624633431085044, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4784, - "time": 0.766373411534702, + "noteOrder": 4786, + "time": 0.7663734115347018, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4832, - "time": 0.7741935483870969, + "noteOrder": 4834, + "time": 0.7741935483870968, "position": { "x": 3, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5103, "time": 0.8172043010752688, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.8250244379276638, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 5296, + "noteOrder": 5298, "time": 0.8484848484848485, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 5345, + "noteOrder": 5347, "time": 0.8563049853372434, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5369, + "noteOrder": 5372, "time": 0.8602150537634409, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5418, + "noteOrder": 5420, "time": 0.8680351906158358, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 5467, - "time": 0.8758553274682308, + "noteOrder": 5469, + "time": 0.8758553274682306, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5491, - "time": 0.8797653958944283, + "noteOrder": 5494, + "time": 0.8797653958944281, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5565, + "noteOrder": 5567, "time": 0.8914956011730205, "position": { "x": 3, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5613, - "time": 0.8993157380254155, + "noteOrder": 5616, + "time": 0.8993157380254153, "position": { "x": 7, "y": 0 @@ -1716,7 +1716,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.015640273704789834, @@ -1739,10 +1739,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 171, - "time": 0.027370478983382213, + "time": 0.027370478983382206, "position": { "x": 7, "y": 0 @@ -1762,7 +1762,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 195, "time": 0.03128054740957967, @@ -1785,10 +1785,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 268, - "time": 0.043010752688172046, + "noteOrder": 269, + "time": 0.04301075268817204, "position": { "x": 3, "y": 0 @@ -1808,7 +1808,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, "time": 0.0469208211143695, @@ -1831,10 +1831,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 342, - "time": 0.054740957966764425, + "time": 0.05474095796676441, "position": { "x": 6, "y": 0 @@ -1854,7 +1854,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 391, "time": 0.06256109481915934, @@ -1877,7 +1877,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 439, "time": 0.07038123167155426, @@ -1900,7 +1900,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 391, "time": 0.06256109481915934, @@ -1923,7 +1923,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 439, "time": 0.07038123167155426, @@ -1946,10 +1946,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.07820136852394917, + "time": 0.07820136852394916, "position": { "x": 7, "y": 0 @@ -1969,10 +1969,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 537, - "time": 0.08602150537634409, + "time": 0.08602150537634408, "position": { "x": 7, "y": 0 @@ -1992,10 +1992,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 635, - "time": 0.10166177908113391, + "time": 0.10166177908113393, "position": { "x": 4, "y": 0 @@ -2015,10 +2015,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 659, - "time": 0.1055718475073314, + "time": 0.10557184750733137, "position": { "x": 4, "y": 0 @@ -2038,10 +2038,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 635, - "time": 0.10166177908113391, + "time": 0.10166177908113393, "position": { "x": 6, "y": 0 @@ -2061,10 +2061,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 659, - "time": 0.1055718475073314, + "time": 0.10557184750733137, "position": { "x": 6, "y": 0 @@ -2084,10 +2084,10 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 683, - "time": 0.10948191593352885, + "noteOrder": 684, + "time": 0.10948191593352882, "position": { "x": 3, "y": 0 @@ -2107,10 +2107,10 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 732, - "time": 0.11730205278592376, + "time": 0.11730205278592375, "position": { "x": 3, "y": 0 @@ -2130,7 +2130,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 830, "time": 0.13294232649071358, @@ -2153,9 +2153,9 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 854, + "noteOrder": 855, "time": 0.13685239491691104, "position": { "x": 4, @@ -2176,7 +2176,7 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 830, "time": 0.13294232649071358, @@ -2199,9 +2199,9 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 854, + "noteOrder": 855, "time": 0.13685239491691104, "position": { "x": 6, @@ -2222,7 +2222,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 879, "time": 0.14076246334310852, @@ -2245,10 +2245,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 903, - "time": 0.14467253176930597, + "time": 0.14467253176930595, "position": { "x": 7, "y": 0 @@ -2268,9 +2268,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 927, + "noteOrder": 928, "time": 0.14858260019550343, "position": { "x": 3, @@ -2291,7 +2291,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 952, "time": 0.15249266862170088, @@ -2314,10 +2314,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1074, - "time": 0.17204301075268819, + "time": 0.17204301075268816, "position": { "x": 7, "y": 0 @@ -2337,9 +2337,9 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1098, + "noteOrder": 1099, "time": 0.17595307917888564, "position": { "x": 7, @@ -2360,7 +2360,7 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1123, "time": 0.1798631476050831, @@ -2383,10 +2383,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1147, - "time": 0.18377321603128055, + "noteOrder": 1148, + "time": 0.18377321603128052, "position": { "x": 3, "y": 0 @@ -2406,7 +2406,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1172, "time": 0.187683284457478, @@ -2429,9 +2429,9 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, + "noteOrder": 1221, "time": 0.19550342130987292, "position": { "x": 6, @@ -2452,7 +2452,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1172, "time": 0.187683284457478, @@ -2475,9 +2475,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1220, + "noteOrder": 1221, "time": 0.19550342130987292, "position": { "x": 4, @@ -2498,9 +2498,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.25024437927663734, "position": { "x": 4, @@ -2521,7 +2521,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1611, "time": 0.25806451612903225, @@ -2544,9 +2544,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1562, + "noteOrder": 1563, "time": 0.25024437927663734, "position": { "x": 6, @@ -2567,7 +2567,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1611, "time": 0.25806451612903225, @@ -2590,7 +2590,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1660, "time": 0.26588465298142716, @@ -2613,9 +2613,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1830, + "noteOrder": 1831, "time": 0.2932551319648094, "position": { "x": 3, @@ -2636,9 +2636,9 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1855, + "noteOrder": 1856, "time": 0.29716520039100686, "position": { "x": 7, @@ -2659,9 +2659,9 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2026, + "noteOrder": 2027, "time": 0.32453567937438904, "position": { "x": 7, @@ -2682,9 +2682,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2050, + "noteOrder": 2051, "time": 0.3284457478005865, "position": { "x": 3, @@ -2705,9 +2705,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2099, + "noteOrder": 2100, "time": 0.33626588465298146, "position": { "x": 3, @@ -2728,10 +2728,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2148, - "time": 0.34408602150537637, + "noteOrder": 2149, + "time": 0.3440860215053763, "position": { "x": 7, "y": 0 @@ -2751,7 +2751,7 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2197, "time": 0.3519061583577713, @@ -2774,9 +2774,9 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2245, + "noteOrder": 2246, "time": 0.3597262952101662, "position": { "x": 3, @@ -2797,10 +2797,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2416, - "time": 0.38709677419354843, + "noteOrder": 2417, + "time": 0.3870967741935484, "position": { "x": 3, "y": 0 @@ -2820,9 +2820,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2441, + "noteOrder": 2442, "time": 0.39100684261974583, "position": { "x": 7, @@ -2843,9 +2843,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2611, + "noteOrder": 2613, "time": 0.41837732160312807, "position": { "x": 7, @@ -2866,10 +2866,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2636, - "time": 0.4222873900293256, + "noteOrder": 2637, + "time": 0.42228739002932547, "position": { "x": 3, "y": 0 @@ -2889,10 +2889,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2660, - "time": 0.426197458455523, + "noteOrder": 2661, + "time": 0.4261974584555229, "position": { "x": 3, "y": 0 @@ -2912,9 +2912,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2685, + "noteOrder": 2686, "time": 0.43010752688172044, "position": { "x": 7, @@ -2935,9 +2935,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2709, + "noteOrder": 2710, "time": 0.4340175953079179, "position": { "x": 7, @@ -2958,10 +2958,10 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2929, - "time": 0.46920821114369504, + "noteOrder": 2930, + "time": 0.469208211143695, "position": { "x": 6, "y": 0 @@ -2981,9 +2981,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, + "noteOrder": 2979, "time": 0.47702834799608995, "position": { "x": 6, @@ -3004,10 +3004,10 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2929, - "time": 0.46920821114369504, + "noteOrder": 2930, + "time": 0.469208211143695, "position": { "x": 4, "y": 0 @@ -3027,9 +3027,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, + "noteOrder": 2979, "time": 0.47702834799608995, "position": { "x": 4, @@ -3050,9 +3050,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3026, + "noteOrder": 3028, "time": 0.48484848484848486, "position": { "x": 7, @@ -3073,9 +3073,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3051, + "noteOrder": 3052, "time": 0.4887585532746823, "position": { "x": 7, @@ -3096,10 +3096,10 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3075, - "time": 0.4926686217008798, + "noteOrder": 3076, + "time": 0.4926686217008797, "position": { "x": 3, "y": 0 @@ -3119,9 +3119,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3100, + "noteOrder": 3101, "time": 0.4965786901270772, "position": { "x": 3, @@ -3142,9 +3142,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.5004887585532747, "position": { "x": 4, @@ -3165,9 +3165,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5083088954056696, "position": { "x": 4, @@ -3188,9 +3188,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3124, + "noteOrder": 3125, "time": 0.5004887585532747, "position": { "x": 6, @@ -3211,9 +3211,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.5083088954056696, "position": { "x": 6, @@ -3234,9 +3234,9 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3222, + "noteOrder": 3223, "time": 0.5161290322580645, "position": { "x": 7, @@ -3257,10 +3257,10 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3270, - "time": 0.5239491691104595, + "noteOrder": 3272, + "time": 0.5239491691104594, "position": { "x": 7, "y": 0 @@ -3280,9 +3280,9 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3368, + "noteOrder": 3369, "time": 0.5395894428152492, "position": { "x": 4, @@ -3303,9 +3303,9 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3392, + "noteOrder": 3394, "time": 0.5434995112414467, "position": { "x": 4, @@ -3326,9 +3326,9 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3368, + "noteOrder": 3369, "time": 0.5395894428152492, "position": { "x": 6, @@ -3349,9 +3349,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3392, + "noteOrder": 3394, "time": 0.5434995112414467, "position": { "x": 6, @@ -3372,9 +3372,9 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3417, + "noteOrder": 3418, "time": 0.5474095796676441, "position": { "x": 3, @@ -3395,10 +3395,10 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3466, - "time": 0.5552297165200392, + "noteOrder": 3467, + "time": 0.555229716520039, "position": { "x": 3, "y": 0 @@ -3418,10 +3418,10 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3612, - "time": 0.5786901270772239, + "noteOrder": 3614, + "time": 0.5786901270772238, "position": { "x": 7, "y": 0 @@ -3441,9 +3441,9 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3661, + "noteOrder": 3662, "time": 0.5865102639296188, "position": { "x": 7, @@ -3464,10 +3464,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3759, - "time": 0.6021505376344086, + "noteOrder": 3760, + "time": 0.6021505376344085, "position": { "x": 4, "y": 0 @@ -3487,9 +3487,9 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3783, + "noteOrder": 3784, "time": 0.6060606060606061, "position": { "x": 4, @@ -3510,10 +3510,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3759, - "time": 0.6021505376344086, + "noteOrder": 3760, + "time": 0.6021505376344085, "position": { "x": 6, "y": 0 @@ -3533,9 +3533,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3783, + "noteOrder": 3784, "time": 0.6060606060606061, "position": { "x": 6, @@ -3556,9 +3556,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3807, + "noteOrder": 3809, "time": 0.6099706744868035, "position": { "x": 3, @@ -3579,9 +3579,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3856, + "noteOrder": 3858, "time": 0.6177908113391984, "position": { "x": 3, @@ -3602,9 +3602,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4003, + "noteOrder": 4004, "time": 0.6412512218963832, "position": { "x": 7, @@ -3625,9 +3625,9 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4027, + "noteOrder": 4029, "time": 0.6451612903225806, "position": { "x": 7, @@ -3648,9 +3648,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4051, + "noteOrder": 4053, "time": 0.6490713587487781, "position": { "x": 3, @@ -3671,9 +3671,9 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4076, + "noteOrder": 4077, "time": 0.6529814271749755, "position": { "x": 3, @@ -3694,9 +3694,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4100, + "noteOrder": 4102, "time": 0.656891495601173, "position": { "x": 7, @@ -3717,9 +3717,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4198, + "noteOrder": 4200, "time": 0.6725317693059629, "position": { "x": 7, @@ -3740,9 +3740,9 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4198, + "noteOrder": 4200, "time": 0.6725317693059629, "position": { "x": 3, @@ -3763,9 +3763,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4222, + "noteOrder": 4224, "time": 0.6764418377321603, "position": { "x": 3, @@ -3786,9 +3786,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4247, + "noteOrder": 4248, "time": 0.6803519061583577, "position": { "x": 7, @@ -3809,10 +3809,10 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4271, - "time": 0.6842619745845552, + "noteOrder": 4273, + "time": 0.6842619745845553, "position": { "x": 7, "y": 0 @@ -3832,10 +3832,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4296, - "time": 0.6881720430107527, + "noteOrder": 4297, + "time": 0.6881720430107526, "position": { "x": 3, "y": 0 @@ -3855,9 +3855,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4393, + "noteOrder": 4395, "time": 0.7038123167155426, "position": { "x": 3, @@ -3878,9 +3878,9 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4393, + "noteOrder": 4395, "time": 0.7038123167155426, "position": { "x": 7, @@ -3901,9 +3901,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, + "noteOrder": 4419, "time": 0.70772238514174, "position": { "x": 7, @@ -3924,9 +3924,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4442, + "noteOrder": 4444, "time": 0.7116324535679374, "position": { "x": 3, @@ -3947,9 +3947,9 @@ }, { "lineGroupId": 120, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4466, + "noteOrder": 4468, "time": 0.7155425219941349, "position": { "x": 3, @@ -3970,10 +3970,10 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4588, - "time": 0.7350928641251222, + "noteOrder": 4590, + "time": 0.7350928641251221, "position": { "x": 6, "y": 0 @@ -3993,10 +3993,10 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4637, - "time": 0.7429130009775172, + "noteOrder": 4639, + "time": 0.7429130009775171, "position": { "x": 6, "y": 0 @@ -4016,10 +4016,10 @@ }, { "lineGroupId": 126, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4637, - "time": 0.7429130009775172, + "noteOrder": 4639, + "time": 0.7429130009775171, "position": { "x": 4, "y": 0 @@ -4039,9 +4039,9 @@ }, { "lineGroupId": 126, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4686, + "noteOrder": 4688, "time": 0.750733137829912, "position": { "x": 4, @@ -4062,9 +4062,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4881, + "noteOrder": 4883, "time": 0.7820136852394917, "position": { "x": 4, @@ -4085,9 +4085,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7898338220918866, "position": { "x": 4, @@ -4108,9 +4108,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4881, + "noteOrder": 4883, "time": 0.7820136852394917, "position": { "x": 6, @@ -4131,9 +4131,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7898338220918866, "position": { "x": 6, @@ -4154,10 +4154,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4979, - "time": 0.7976539589442816, + "noteOrder": 4981, + "time": 0.7976539589442815, "position": { "x": 7, "y": 0 @@ -4177,9 +4177,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5003, + "noteOrder": 5005, "time": 0.801564027370479, "position": { "x": 7, @@ -4200,10 +4200,10 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5028, - "time": 0.8054740957966765, + "noteOrder": 5030, + "time": 0.8054740957966764, "position": { "x": 3, "y": 0 @@ -4223,10 +4223,10 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5052, - "time": 0.809384164222874, + "noteOrder": 5054, + "time": 0.8093841642228738, "position": { "x": 3, "y": 0 @@ -4246,10 +4246,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5077, - "time": 0.8132942326490713, + "noteOrder": 5079, + "time": 0.8132942326490714, "position": { "x": 6, "y": 0 @@ -4269,9 +4269,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5101, + "noteOrder": 5103, "time": 0.8172043010752688, "position": { "x": 6, @@ -4292,10 +4292,10 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5125, - "time": 0.8211143695014663, + "noteOrder": 5127, + "time": 0.8211143695014662, "position": { "x": 7, "y": 0 @@ -4315,9 +4315,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5150, + "noteOrder": 5152, "time": 0.8250244379276638, "position": { "x": 7, @@ -4338,10 +4338,10 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5174, - "time": 0.8289345063538612, + "noteOrder": 5176, + "time": 0.8289345063538611, "position": { "x": 3, "y": 0 @@ -4361,10 +4361,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5199, - "time": 0.8328445747800587, + "noteOrder": 5201, + "time": 0.8328445747800586, "position": { "x": 3, "y": 0 @@ -4384,9 +4384,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5223, + "noteOrder": 5225, "time": 0.8367546432062561, "position": { "x": 7, @@ -4407,10 +4407,10 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5247, - "time": 0.8406647116324536, + "noteOrder": 5249, + "time": 0.8406647116324535, "position": { "x": 7, "y": 0 @@ -4430,10 +4430,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5272, - "time": 0.8445747800586512, + "noteOrder": 5274, + "time": 0.8445747800586509, "position": { "x": 4, "y": 0 @@ -4453,9 +4453,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5296, + "noteOrder": 5298, "time": 0.8484848484848485, "position": { "x": 4, @@ -4476,10 +4476,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5321, - "time": 0.852394916911046, + "noteOrder": 5323, + "time": 0.8523949169110459, "position": { "x": 3, "y": 0 @@ -4499,9 +4499,9 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5345, + "noteOrder": 5347, "time": 0.8563049853372434, "position": { "x": 3, @@ -4522,10 +4522,10 @@ }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5662, - "time": 0.9071358748778104, + "noteOrder": 5665, + "time": 0.9071358748778103, "position": { "x": 4, "y": 0 @@ -4545,10 +4545,10 @@ }, { "lineGroupId": 156, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5711, - "time": 0.9149560117302054, + "noteOrder": 5713, + "time": 0.9149560117302052, "position": { "x": 4, "y": 0 @@ -4568,10 +4568,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5662, - "time": 0.9071358748778104, + "noteOrder": 5665, + "time": 0.9071358748778103, "position": { "x": 6, "y": 0 @@ -4591,10 +4591,10 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5711, - "time": 0.9149560117302054, + "noteOrder": 5713, + "time": 0.9149560117302052, "position": { "x": 6, "y": 0 @@ -4614,9 +4614,9 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5760, + "noteOrder": 5762, "time": 0.9227761485826002, "position": { "x": 3, @@ -4637,9 +4637,9 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5833, + "noteOrder": 5835, "time": 0.9345063538611926, "position": { "x": 3, @@ -4660,10 +4660,10 @@ }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5858, - "time": 0.9384164222873901, + "noteOrder": 5860, + "time": 0.93841642228739, "position": { "x": 7, "y": 0 @@ -4683,10 +4683,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5931, - "time": 0.9501466275659824, + "noteOrder": 5933, + "time": 0.9501466275659823, "position": { "x": 7, "y": 0 @@ -4706,9 +4706,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5955, + "noteOrder": 5958, "time": 0.9540566959921799, "position": { "x": 4, @@ -4729,10 +4729,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, - "time": 0.9853372434017597, + "noteOrder": 6153, + "time": 0.9853372434017594, "position": { "x": 4, "y": 0 @@ -4752,9 +4752,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5955, + "noteOrder": 5958, "time": 0.9540566959921799, "position": { "x": 6, @@ -4775,10 +4775,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6150, - "time": 0.9853372434017597, + "noteOrder": 6153, + "time": 0.9853372434017594, "position": { "x": 6, "y": 0 diff --git "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/info.json" "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/info.json" index 93dd490a..fc511e3f 100644 --- "a/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/info.json" +++ "b/tracks/\343\203\201\343\203\245\343\203\203\343\203\201\343\203\245\342\231\252\343\203\236\343\203\201\343\203\245\343\203\224\343\203\201\343\203\245/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30c1\u30e5\u30c3\u30c1\u30e5\u266a\u30de\u30c1\u30e5\u30d4\u30c1\u30e5", - "SongLength": "130.037551", + "SongLength": "120.084898", "SongAuthorName": "\u306a\u306a\u3072\u3089,Nana Takahashi,\u732b\u4f53\u8cea by BEMANI Sound Team \"\u5287\u30c0\u30f3\u30b5\u30fc\u30ec\u30b3\u30fc\u30c9\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1a.json" "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1a.json" index ecec0f0a..aa905ed2 100644 --- "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1a.json" +++ "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1a.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 362, - "time": 0.068259385665529, + "time": 0.06825938566552901, "position": { "x": 5, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 532, "time": 0.10011376564277588, "position": { "x": 7, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 555, + "noteOrder": 556, "time": 0.10466439135381114, "position": { "x": 4, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 700, + "noteOrder": 701, "time": 0.13196814562002274, "position": { "x": 6, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 724, - "time": 0.136518771331058, + "noteOrder": 725, + "time": 0.13651877133105803, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 737, - "time": 0.13879408418657563, + "time": 0.13879408418657566, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 749, - "time": 0.1410693970420933, + "time": 0.14106939704209326, "position": { "x": 2, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 991, "time": 0.18657565415244595, "position": { "x": 3, @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1039, "time": 0.19567690557451647, "position": { "x": 7, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1159, - "time": 0.2184300341296928, + "noteOrder": 1160, + "time": 0.21843003412969283, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1183, - "time": 0.2229806598407281, + "noteOrder": 1184, + "time": 0.22298065984072807, "position": { "x": 5, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1207, + "noteOrder": 1208, "time": 0.22753128555176336, "position": { "x": 3, @@ -454,7 +454,7 @@ }, { "noteOrder": 1232, - "time": 0.23208191126279865, + "time": 0.23208191126279862, "position": { "x": 7, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1232, - "time": 0.23208191126279865, + "time": 0.23208191126279862, "position": { "x": 4, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1280, - "time": 0.24118316268486914, + "time": 0.24118316268486917, "position": { "x": 4, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1304, + "noteOrder": 1305, "time": 0.24573378839590443, "position": { "x": 4, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1328, + "noteOrder": 1329, "time": 0.2502844141069397, "position": { "x": 5, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1352, + "noteOrder": 1353, "time": 0.25483503981797495, "position": { "x": 5, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1449, - "time": 0.273037542662116, + "noteOrder": 1450, + "time": 0.27303754266211605, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1473, - "time": 0.27758816837315126, + "noteOrder": 1474, + "time": 0.2775881683731513, "position": { "x": 6, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1497, - "time": 0.2821387940841866, + "noteOrder": 1498, + "time": 0.2821387940841865, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1521, + "noteOrder": 1522, "time": 0.28668941979522183, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1666, + "noteOrder": 1667, "time": 0.31399317406143346, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1690, - "time": 0.31854379977246866, + "noteOrder": 1691, + "time": 0.3185437997724687, "position": { "x": 5, "y": 0 @@ -734,7 +734,7 @@ }, { "noteOrder": 1727, - "time": 0.32536973833902155, + "time": 0.3253697383390216, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1763, + "noteOrder": 1764, "time": 0.3321956769055745, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1787, + "noteOrder": 1788, "time": 0.33674630261660976, "position": { "x": 5, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1932, - "time": 0.3640500568828214, + "noteOrder": 1933, + "time": 0.3640500568828213, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1956, - "time": 0.3686006825938566, + "noteOrder": 1957, + "time": 0.36860068259385664, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1980, + "noteOrder": 1981, "time": 0.3731513083048919, "position": { "x": 3, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2004, + "noteOrder": 2005, "time": 0.37770193401592717, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2053, + "noteOrder": 2054, "time": 0.3868031854379977, "position": { "x": 4, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2077, + "noteOrder": 2078, "time": 0.39135381114903295, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2101, + "noteOrder": 2102, "time": 0.39590443686006827, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2149, - "time": 0.4050056882821388, + "noteOrder": 2150, + "time": 0.40500568828213873, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2173, + "noteOrder": 2174, "time": 0.40955631399317405, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2198, + "noteOrder": 2199, "time": 0.4141069397042093, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2318, - "time": 0.4368600682593856, + "noteOrder": 2319, + "time": 0.43686006825938567, "position": { "x": 7, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2367, - "time": 0.4459613196814562, + "noteOrder": 2368, + "time": 0.44596131968145614, "position": { "x": 3, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.45051194539249145, "position": { "x": 4, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2753, + "noteOrder": 2754, "time": 0.5187713310580204, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2777, + "noteOrder": 2778, "time": 0.5233219567690557, "position": { "x": 4, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.5324232081911263, + "noteOrder": 2827, + "time": 0.5324232081911262, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.5369738339021616, + "noteOrder": 2851, + "time": 0.5369738339021615, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2898, - "time": 0.546075085324232, + "noteOrder": 2899, + "time": 0.5460750853242321, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2922, - "time": 0.5506257110352673, + "noteOrder": 2923, + "time": 0.5506257110352674, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2946, - "time": 0.5551763367463025, + "noteOrder": 2947, + "time": 0.5551763367463026, "position": { "x": 3, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2995, - "time": 0.5642775881683731, + "noteOrder": 2996, + "time": 0.564277588168373, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3019, + "noteOrder": 3020, "time": 0.5688282138794084, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3043, + "noteOrder": 3044, "time": 0.5733788395904437, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3091, + "noteOrder": 3092, "time": 0.5824800910125142, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3115, + "noteOrder": 3117, "time": 0.5870307167235495, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3188, + "noteOrder": 3189, "time": 0.6006825938566552, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3212, + "noteOrder": 3213, "time": 0.6052332195676905, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3236, - "time": 0.6097838452787259, + "noteOrder": 3237, + "time": 0.6097838452787258, "position": { "x": 3, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3260, - "time": 0.6143344709897611, + "noteOrder": 3262, + "time": 0.614334470989761, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3284, - "time": 0.6188850967007964, + "noteOrder": 3286, + "time": 0.6188850967007963, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3309, + "noteOrder": 3310, "time": 0.6234357224118316, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3333, + "noteOrder": 3334, "time": 0.6279863481228669, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 3358, "time": 0.6325369738339022, "position": { "x": 5, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3381, - "time": 0.6370875995449373, + "noteOrder": 3382, + "time": 0.6370875995449374, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3393, + "noteOrder": 3394, "time": 0.6393629124004551, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3405, + "noteOrder": 3406, "time": 0.6416382252559726, "position": { "x": 2, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3417, + "noteOrder": 3419, "time": 0.6439135381114903, "position": { "x": 5, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3429, + "noteOrder": 3431, "time": 0.6461888509670078, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3441, + "noteOrder": 3443, "time": 0.6484641638225256, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3453, - "time": 0.6507394766780431, + "noteOrder": 3455, + "time": 0.6507394766780432, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3466, + "noteOrder": 3467, "time": 0.6530147895335608, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 3672, "time": 0.6916951080773606, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3695, + "noteOrder": 3696, "time": 0.6962457337883958, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3719, - "time": 0.7007963594994312, + "noteOrder": 3721, + "time": 0.7007963594994311, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3743, + "noteOrder": 3745, "time": 0.7053469852104665, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3767, + "noteOrder": 3769, "time": 0.7098976109215017, "position": { "x": 5, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3793, "time": 0.714448236632537, "position": { "x": 3, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3840, - "time": 0.7235494880546075, + "noteOrder": 3841, + "time": 0.7235494880546074, "position": { "x": 6, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3852, + "noteOrder": 3853, "time": 0.7258248009101251, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3864, - "time": 0.7281001137656428, + "noteOrder": 3865, + "time": 0.7281001137656427, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3890, "time": 0.732650739476678, "position": { "x": 5, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3936, - "time": 0.7417519908987484, + "noteOrder": 3938, + "time": 0.7417519908987485, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4009, + "noteOrder": 4010, "time": 0.7554038680318543, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 4107, "time": 0.7736063708759954, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.7918088737201365, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.800910125142207, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.8054607508532423, + "noteOrder": 4276, + "time": 0.8054607508532422, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8100113765642776, + "noteOrder": 4300, + "time": 0.8100113765642775, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.8145620022753128, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.8191126279863481, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4395, + "noteOrder": 4397, "time": 0.8282138794084186, "position": { "x": 3, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.832764505119454, + "noteOrder": 4421, + "time": 0.8327645051194539, "position": { "x": 5, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4469, "time": 0.8418657565415244, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4494, "time": 0.8464163822525597, "position": { "x": 7, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.8509670079635949, "position": { "x": 6, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8555176336746302, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.8646188850967007, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4613, + "noteOrder": 4614, "time": 0.869169510807736, "position": { "x": 5, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.8782707622298066, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8828213879408419, "position": { "x": 3, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.8873720136518771, + "noteOrder": 4711, + "time": 0.887372013651877, "position": { "x": 4, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4758, - "time": 0.8964732650739476, + "noteOrder": 4759, + "time": 0.8964732650739475, "position": { "x": 3, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.9010238907849829, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.9055745164960182, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4830, + "noteOrder": 4832, "time": 0.9101251422070534, "position": { "x": 7, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.9146757679180887, "position": { "x": 3, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4927, - "time": 0.9283276450511946, + "noteOrder": 4929, + "time": 0.9283276450511945, "position": { "x": 3, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4939, + "noteOrder": 4941, "time": 0.9306029579067121, "position": { "x": 5, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 4953, "time": 0.9328782707622297, "position": { "x": 7, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.937428896473265, "position": { "x": 7, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4987, - "time": 0.9397042093287826, + "noteOrder": 4989, + "time": 0.9397042093287827, "position": { "x": 5, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4999, + "noteOrder": 5001, "time": 0.9419795221843003, "position": { "x": 3, @@ -2456,7 +2456,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01820250284414107, @@ -2477,12 +2477,127 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 1, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 109, + "time": 0.020477815699658702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 109, + "time": 0.020477815699658702, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 121, + "time": 0.022753128555176333, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 1, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 121, + "time": 0.022753128555176333, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 121, - "time": 0.022753128555176336, + "time": 0.022753128555176333, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 133, + "time": 0.02502844141069397, "position": { "x": 7, "y": 0 @@ -2500,12 +2615,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 2, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 133, + "time": 0.02502844141069397, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 145, + "time": 0.027303754266211604, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 2, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 145, + "time": 0.027303754266211604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 145, - "time": 0.0273037542662116, + "time": 0.027303754266211604, "position": { "x": 7, "y": 0 @@ -2525,7 +2709,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 169, "time": 0.03185437997724687, @@ -2548,7 +2732,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03640500568828214, @@ -2570,13 +2754,59 @@ "isPlayAudio": false }, { - "lineGroupId": 6, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 205, + "time": 0.03868031854379977, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 205, + "time": 0.03868031854379977, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 4, "isSliding": false, "noteOrder": 217, "time": 0.040955631399317405, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2588,18 +2818,2870 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 7, - "indexInLine": 0, + "lineGroupId": 5, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 217, + "time": 0.040955631399317405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 1, "isSliding": false, - "noteOrder": 241, - "time": 0.04550625711035267, + "noteOrder": 217, + "time": 0.040955631399317405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 230, + "time": 0.043230944254835035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 230, + "time": 0.043230944254835035, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 242, + "time": 0.045506257110352666, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 242, + "time": 0.045506257110352666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 7, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 242, + "time": 0.045506257110352666, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 7, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 266, + "time": 0.05005688282138794, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 290, + "time": 0.05460750853242321, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 9, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 314, + "time": 0.05915813424345847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 314, + "time": 0.05915813424345847, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 338, + "time": 0.06370875995449374, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 338, + "time": 0.06370875995449374, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 362, + "time": 0.06825938566552901, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 387, + "time": 0.07281001137656427, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 399, + "time": 0.0750853242320819, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 399, + "time": 0.0750853242320819, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 411, + "time": 0.07736063708759953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 423, + "time": 0.07963594994311718, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 423, + "time": 0.07963594994311718, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 435, + "time": 0.08191126279863481, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 447, + "time": 0.08418657565415244, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 447, + "time": 0.08418657565415244, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 483, + "time": 0.09101251422070533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 507, + "time": 0.0955631399317406, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 580, + "time": 0.10921501706484642, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 580, + "time": 0.10921501706484642, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 604, + "time": 0.11376564277588168, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 676, + "time": 0.12741751990898748, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 701, + "time": 0.13196814562002274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 870, + "time": 0.16382252559726962, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 33, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 918, + "time": 0.17292377701934014, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 918, + "time": 0.17292377701934014, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 930, + "time": 0.17519908987485777, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 930, + "time": 0.17519908987485777, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 942, + "time": 0.17747440273037543, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 942, + "time": 0.17747440273037543, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 942, + "time": 0.17747440273037543, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 954, + "time": 0.17974971558589306, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 954, + "time": 0.17974971558589306, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 966, + "time": 0.18202502844141066, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 36, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 966, + "time": 0.18202502844141066, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 966, + "time": 0.18202502844141066, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 978, + "time": 0.18430034129692832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 978, + "time": 0.18430034129692832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 991, + "time": 0.18657565415244595, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 37, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 991, + "time": 0.18657565415244595, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1015, + "time": 0.1911262798634812, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1027, + "time": 0.19340159271899884, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1027, + "time": 0.19340159271899884, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1039, + "time": 0.19567690557451647, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1039, + "time": 0.19567690557451647, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1063, + "time": 0.20022753128555176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1111, + "time": 0.20932878270762229, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1111, + "time": 0.20932878270762229, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1123, + "time": 0.21160409556313992, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1123, + "time": 0.21160409556313992, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1135, + "time": 0.21387940841865755, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1135, + "time": 0.21387940841865755, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1135, + "time": 0.21387940841865755, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1148, + "time": 0.21615472127417518, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1148, + "time": 0.21615472127417518, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1160, + "time": 0.21843003412969283, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1160, + "time": 0.21843003412969283, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1256, + "time": 0.23663253697383388, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1329, + "time": 0.2502844141069397, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1353, + "time": 0.25483503981797495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1401, + "time": 0.2639362912400455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1401, + "time": 0.2639362912400455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1413, + "time": 0.2662116040955631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1413, + "time": 0.2662116040955631, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1425, + "time": 0.26848691695108073, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 56, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1425, + "time": 0.26848691695108073, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1425, + "time": 0.26848691695108073, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1437, + "time": 0.2707622298065984, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1437, + "time": 0.2707622298065984, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1450, + "time": 0.27303754266211605, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1450, + "time": 0.27303754266211605, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1546, + "time": 0.2912400455062571, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1558, + "time": 0.2935153583617747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1558, + "time": 0.2935153583617747, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1570, + "time": 0.29579067121729236, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1582, + "time": 0.29806598407281004, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1582, + "time": 0.29806598407281004, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1595, + "time": 0.3003412969283276, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1607, + "time": 0.30261660978384525, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1607, + "time": 0.30261660978384525, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1619, + "time": 0.3048919226393629, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1631, + "time": 0.3071672354948805, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1631, + "time": 0.3071672354948805, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1643, + "time": 0.30944254835039814, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1715, + "time": 0.3230944254835039, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1739, + "time": 0.32764505119453924, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 72, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1812, + "time": 0.341296928327645, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1836, + "time": 0.3458475540386803, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1860, + "time": 0.35039817974971554, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1884, + "time": 0.35494880546075086, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 76, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1909, + "time": 0.3594994311717861, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1836, + "time": 0.3458475540386803, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1860, + "time": 0.35039817974971554, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1884, + "time": 0.35494880546075086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1909, + "time": 0.3594994311717861, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2029, + "time": 0.3822525597269624, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2054, + "time": 0.3868031854379977, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2078, + "time": 0.39135381114903295, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2126, + "time": 0.4004550625711035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.40500568828213873, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2174, + "time": 0.40955631399317405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2223, + "time": 0.41865756541524457, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2235, + "time": 0.4209328782707622, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2235, + "time": 0.4209328782707622, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2247, + "time": 0.42320819112627983, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2259, + "time": 0.42548350398179746, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2259, + "time": 0.42548350398179746, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2271, + "time": 0.4277588168373151, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2283, + "time": 0.4300341296928327, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2283, + "time": 0.4300341296928327, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2295, + "time": 0.43230944254835035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2307, + "time": 0.434584755403868, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2307, + "time": 0.434584755403868, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2513, + "time": 0.47326507394766776, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2561, + "time": 0.48236632536973834, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2609, + "time": 0.49146757679180886, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.5005688282138794, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2706, + "time": 0.5096700796359499, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2611,16 +5693,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 7, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 266, - "time": 0.05005688282138794, + "noteOrder": 2754, + "time": 0.5187713310580204, "position": { "x": 4, "y": 0 @@ -2634,18 +5716,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 290, - "time": 0.0546075085324232, + "noteOrder": 2802, + "time": 0.527872582480091, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2657,18 +5739,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 9, - "indexInLine": 1, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 314, - "time": 0.05915813424345847, + "noteOrder": 2827, + "time": 0.5324232081911262, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2680,16 +5762,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 314, - "time": 0.05915813424345847, + "noteOrder": 2875, + "time": 0.5415244596131968, "position": { "x": 5, "y": 0 @@ -2708,13 +5790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 10, + "lineGroupId": 111, "indexInLine": 1, "isSliding": false, - "noteOrder": 338, - "time": 0.06370875995449374, + "noteOrder": 2875, + "time": 0.5415244596131968, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2726,18 +5808,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 338, - "time": 0.06370875995449374, + "noteOrder": 2887, + "time": 0.5437997724687144, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2754,11 +5836,11 @@ "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 362, - "time": 0.068259385665529, + "noteOrder": 2887, + "time": 0.5437997724687144, "position": { "x": 5, "y": 0 @@ -2777,13 +5859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 4, "isSliding": false, - "noteOrder": 386, - "time": 0.07281001137656427, + "noteOrder": 2899, + "time": 0.5460750853242321, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2800,13 +5882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 5, "isSliding": false, - "noteOrder": 411, - "time": 0.07736063708759955, + "noteOrder": 2899, + "time": 0.5460750853242321, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2818,18 +5900,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 6, "isSliding": false, - "noteOrder": 435, - "time": 0.08191126279863481, + "noteOrder": 2972, + "time": 0.5597269624573378, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2846,13 +5928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 483, - "time": 0.09101251422070535, + "noteOrder": 2972, + "time": 0.5597269624573378, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2869,13 +5951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 507, - "time": 0.0955631399317406, + "noteOrder": 2984, + "time": 0.5620022753128555, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2892,13 +5974,13 @@ "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 2, + "lineGroupId": 115, + "indexInLine": 3, "isSliding": false, - "noteOrder": 580, - "time": 0.1092150170648464, + "noteOrder": 2984, + "time": 0.5620022753128555, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2915,13 +5997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 4, "isSliding": false, - "noteOrder": 580, - "time": 0.1092150170648464, + "noteOrder": 2996, + "time": 0.564277588168373, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2933,18 +6015,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 5, "isSliding": false, - "noteOrder": 604, - "time": 0.11376564277588168, + "noteOrder": 2996, + "time": 0.564277588168373, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2956,18 +6038,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 2, + "lineGroupId": 115, + "indexInLine": 6, "isSliding": false, - "noteOrder": 676, - "time": 0.12741751990898748, + "noteOrder": 3068, + "time": 0.5779294653014789, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2979,18 +6061,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 3, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 700, - "time": 0.13196814562002274, + "noteOrder": 3068, + "time": 0.5779294653014789, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3007,13 +6089,13 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 869, - "time": 0.16382252559726962, + "noteOrder": 3080, + "time": 0.5802047781569966, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3030,11 +6112,11 @@ "isPlayAudio": false }, { - "lineGroupId": 33, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 918, - "time": 0.17292377701934014, + "noteOrder": 3080, + "time": 0.5802047781569966, "position": { "x": 5, "y": 0 @@ -3053,13 +6135,13 @@ "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 4, "isSliding": false, - "noteOrder": 918, - "time": 0.17292377701934014, + "noteOrder": 3092, + "time": 0.5824800910125142, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3071,16 +6153,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 5, "isSliding": false, - "noteOrder": 942, - "time": 0.17747440273037543, + "noteOrder": 3092, + "time": 0.5824800910125142, "position": { "x": 7, "y": 0 @@ -3099,13 +6181,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 6, "isSliding": false, - "noteOrder": 966, - "time": 0.1820250284414107, + "noteOrder": 3141, + "time": 0.5915813424345847, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3117,16 +6199,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1014, - "time": 0.1911262798634812, + "noteOrder": 3576, + "time": 0.6734926052332195, "position": { "x": 7, "y": 0 @@ -3145,13 +6227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1063, - "time": 0.20022753128555176, + "noteOrder": 3588, + "time": 0.6757679180887372, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3163,16 +6245,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1111, - "time": 0.20932878270762229, + "noteOrder": 3588, + "time": 0.6757679180887372, "position": { "x": 5, "y": 0 @@ -3186,18 +6268,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1111, - "time": 0.20932878270762229, + "noteOrder": 3600, + "time": 0.6780432309442549, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3214,13 +6296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1135, - "time": 0.21387940841865755, + "noteOrder": 3600, + "time": 0.6780432309442549, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3232,18 +6314,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1256, - "time": 0.23663253697383388, + "noteOrder": 3600, + "time": 0.6780432309442549, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3255,16 +6337,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1328, - "time": 0.2502844141069397, + "noteOrder": 3612, + "time": 0.6803185437997724, "position": { "x": 7, "y": 0 @@ -3278,18 +6360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 2, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1352, - "time": 0.25483503981797495, + "noteOrder": 3612, + "time": 0.6803185437997724, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3301,16 +6383,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 3, + "lineGroupId": 147, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1401, - "time": 0.2639362912400455, + "noteOrder": 3624, + "time": 0.68259385665529, "position": { "x": 5, "y": 0 @@ -3324,16 +6406,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 56, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1401, - "time": 0.2639362912400455, + "noteOrder": 3624, + "time": 0.68259385665529, "position": { "x": 4, "y": 0 @@ -3352,13 +6434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1425, - "time": 0.2684869169510808, + "noteOrder": 3624, + "time": 0.68259385665529, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3375,13 +6457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1546, - "time": 0.2912400455062571, + "noteOrder": 3636, + "time": 0.6848691695108077, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3393,18 +6475,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1570, - "time": 0.29579067121729236, + "noteOrder": 3636, + "time": 0.6848691695108077, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3421,13 +6503,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1594, - "time": 0.3003412969283276, + "noteOrder": 3648, + "time": 0.6871444823663253, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3439,18 +6521,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 148, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1618, - "time": 0.30489192263936293, + "noteOrder": 3648, + "time": 0.6871444823663253, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3467,13 +6549,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1642, - "time": 0.3094425483503982, + "noteOrder": 3648, + "time": 0.6871444823663253, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3490,13 +6572,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1715, - "time": 0.3230944254835039, + "noteOrder": 3660, + "time": 0.6894197952218429, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3513,13 +6595,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1739, - "time": 0.32764505119453924, + "noteOrder": 3660, + "time": 0.6894197952218429, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3531,18 +6613,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1811, - "time": 0.341296928327645, + "noteOrder": 3672, + "time": 0.6916951080773606, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3554,16 +6636,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1835, - "time": 0.3458475540386803, + "noteOrder": 3672, + "time": 0.6916951080773606, "position": { "x": 4, "y": 0 @@ -3582,13 +6664,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 1860, - "time": 0.3503981797497156, + "noteOrder": 3696, + "time": 0.6962457337883958, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3605,13 +6687,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 152, "indexInLine": 2, "isSliding": false, - "noteOrder": 1884, - "time": 0.35494880546075086, + "noteOrder": 3708, + "time": 0.6985210466439136, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3628,13 +6710,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, + "lineGroupId": 152, "indexInLine": 3, "isSliding": false, - "noteOrder": 1908, - "time": 0.3594994311717861, + "noteOrder": 3708, + "time": 0.6985210466439136, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3651,13 +6733,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1835, - "time": 0.3458475540386803, + "noteOrder": 3721, + "time": 0.7007963594994311, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3669,18 +6751,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 152, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1860, - "time": 0.3503981797497156, + "noteOrder": 3721, + "time": 0.7007963594994311, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3692,18 +6774,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 2, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1884, - "time": 0.35494880546075086, + "noteOrder": 3817, + "time": 0.7189988623435722, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3715,18 +6797,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 3, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1908, - "time": 0.3594994311717861, + "noteOrder": 3841, + "time": 0.7235494880546074, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3738,16 +6820,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2029, - "time": 0.3822525597269624, + "noteOrder": 3914, + "time": 0.7372013651877133, "position": { "x": 7, "y": 0 @@ -3766,13 +6848,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2053, - "time": 0.3868031854379977, + "noteOrder": 3938, + "time": 0.7417519908987485, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3789,13 +6871,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 166, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2077, - "time": 0.39135381114903295, + "noteOrder": 3962, + "time": 0.7463026166097838, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3812,11 +6894,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2125, - "time": 0.4004550625711035, + "noteOrder": 3974, + "time": 0.7485779294653014, "position": { "x": 3, "y": 0 @@ -3830,18 +6912,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 166, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2149, - "time": 0.4050056882821388, + "noteOrder": 3974, + "time": 0.7485779294653014, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3853,18 +6935,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 2, + "lineGroupId": 166, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2173, - "time": 0.40955631399317405, + "noteOrder": 3986, + "time": 0.7508532423208191, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3876,18 +6958,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2222, - "time": 0.41865756541524457, + "noteOrder": 3986, + "time": 0.7508532423208191, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3904,13 +6986,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2246, - "time": 0.42320819112627983, + "noteOrder": 4059, + "time": 0.7645051194539249, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3922,18 +7004,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2270, - "time": 0.4277588168373151, + "noteOrder": 4059, + "time": 0.7645051194539249, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3945,18 +7027,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2294, - "time": 0.43230944254835035, + "noteOrder": 4071, + "time": 0.7667804323094425, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3973,13 +7055,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2512, - "time": 0.47326507394766776, + "noteOrder": 4071, + "time": 0.7667804323094425, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3991,18 +7073,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2560, - "time": 0.4823663253697383, + "noteOrder": 4083, + "time": 0.7690557451649601, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4014,18 +7096,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2608, - "time": 0.49146757679180886, + "noteOrder": 4083, + "time": 0.7690557451649601, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4042,11 +7124,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 170, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2656, - "time": 0.5005688282138794, + "noteOrder": 4155, + "time": 0.7827076222980659, "position": { "x": 5, "y": 0 @@ -4065,13 +7147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2705, - "time": 0.5096700796359499, + "noteOrder": 4155, + "time": 0.7827076222980659, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4088,13 +7170,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2753, - "time": 0.5187713310580204, + "noteOrder": 4167, + "time": 0.7849829351535835, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4111,13 +7193,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2801, - "time": 0.527872582480091, + "noteOrder": 4167, + "time": 0.7849829351535835, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4129,18 +7211,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2826, - "time": 0.5324232081911263, + "noteOrder": 4180, + "time": 0.7872582480091013, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4152,18 +7234,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 108, - "indexInLine": 2, + { + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2874, - "time": 0.5415244596131967, + "noteOrder": 4180, + "time": 0.7872582480091013, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4175,18 +7257,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2874, - "time": 0.5415244596131967, + "noteOrder": 4252, + "time": 0.800910125142207, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4203,13 +7285,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 3, + "lineGroupId": 182, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2970, - "time": 0.5597269624573378, + "noteOrder": 4349, + "time": 0.8191126279863481, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4226,13 +7308,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2970, - "time": 0.5597269624573378, + "noteOrder": 4361, + "time": 0.8213879408418657, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4244,16 +7326,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 182, "indexInLine": 3, "isSliding": false, - "noteOrder": 3067, - "time": 0.5779294653014789, + "noteOrder": 4361, + "time": 0.8213879408418657, "position": { "x": 6, "y": 0 @@ -4267,18 +7349,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3067, - "time": 0.5779294653014789, + "noteOrder": 4373, + "time": 0.8236632536973834, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4295,13 +7377,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 3, + "lineGroupId": 182, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3139, - "time": 0.5915813424345847, + "noteOrder": 4373, + "time": 0.8236632536973834, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4318,11 +7400,11 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3574, - "time": 0.6734926052332195, + "noteOrder": 4397, + "time": 0.8282138794084186, "position": { "x": 7, "y": 0 @@ -4341,11 +7423,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3598, - "time": 0.6780432309442548, + "noteOrder": 4445, + "time": 0.8373151308304891, "position": { "x": 7, "y": 0 @@ -4364,13 +7446,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3622, - "time": 0.68259385665529, + "noteOrder": 4518, + "time": 0.8509670079635949, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4382,18 +7464,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3647, - "time": 0.6871444823663253, + "noteOrder": 4542, + "time": 0.8555176336746302, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4410,13 +7492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3695, - "time": 0.6962457337883958, + "noteOrder": 4554, + "time": 0.8577929465301479, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4433,11 +7515,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3816, - "time": 0.7189988623435722, + "noteOrder": 4554, + "time": 0.8577929465301479, "position": { "x": 4, "y": 0 @@ -4456,11 +7538,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3840, - "time": 0.7235494880546075, + "noteOrder": 4566, + "time": 0.8600682593856654, "position": { "x": 4, "y": 0 @@ -4479,13 +7561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3912, - "time": 0.7372013651877132, + "noteOrder": 4566, + "time": 0.8600682593856654, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4497,18 +7579,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3936, - "time": 0.7417519908987484, + "noteOrder": 4590, + "time": 0.8646188850967007, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4520,16 +7602,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 194, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3961, - "time": 0.7463026166097838, + "noteOrder": 4639, + "time": 0.8737201365187713, "position": { "x": 3, "y": 0 @@ -4548,13 +7630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 3, + "lineGroupId": 194, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4057, - "time": 0.7645051194539249, + "noteOrder": 4711, + "time": 0.887372013651877, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4571,13 +7653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4057, - "time": 0.7645051194539249, + "noteOrder": 4735, + "time": 0.8919226393629123, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4589,18 +7671,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 170, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4154, - "time": 0.7827076222980659, + "noteOrder": 4747, + "time": 0.89419795221843, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4612,18 +7694,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4154, - "time": 0.7827076222980659, + "noteOrder": 4747, + "time": 0.89419795221843, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4640,13 +7722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4250, - "time": 0.800910125142207, + "noteOrder": 4759, + "time": 0.8964732650739475, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4663,13 +7745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4347, - "time": 0.8191126279863481, + "noteOrder": 4759, + "time": 0.8964732650739475, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4686,13 +7768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 3, + "lineGroupId": 198, + "indexInLine": 6, "isSliding": false, - "noteOrder": 4395, - "time": 0.8282138794084186, + "noteOrder": 4784, + "time": 0.9010238907849829, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4709,13 +7791,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 198, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4444, - "time": 0.8373151308304891, + "noteOrder": 4832, + "time": 0.9101251422070534, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4727,18 +7809,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 198, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4516, - "time": 0.8509670079635949, + "noteOrder": 4904, + "time": 0.9237770193401592, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4750,18 +7832,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4540, - "time": 0.8555176336746302, + "noteOrder": 4880, + "time": 0.919226393629124, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4778,11 +7860,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 3, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4588, - "time": 0.8646188850967007, + "noteOrder": 4904, + "time": 0.9237770193401592, "position": { "x": 3, "y": 0 @@ -4801,13 +7883,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4637, - "time": 0.8737201365187712, + "noteOrder": 5025, + "time": 0.9465301478953355, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4824,13 +7906,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4709, - "time": 0.8873720136518771, + "noteOrder": 5037, + "time": 0.9488054607508531, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4847,13 +7929,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4733, - "time": 0.8919226393629124, + "noteOrder": 5037, + "time": 0.9488054607508531, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4870,13 +7952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 3, + "lineGroupId": 214, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4782, - "time": 0.9010238907849829, + "noteOrder": 5049, + "time": 0.9510807736063708, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4888,18 +7970,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 4, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4830, - "time": 0.9101251422070534, + "noteOrder": 5061, + "time": 0.9533560864618884, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4911,16 +7993,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 5, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4902, - "time": 0.9237770193401593, + "noteOrder": 5061, + "time": 0.9533560864618884, "position": { "x": 5, "y": 0 @@ -4934,16 +8016,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4878, - "time": 0.919226393629124, + "noteOrder": 5073, + "time": 0.9556313993174061, "position": { "x": 7, "y": 0 @@ -4957,18 +8039,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4902, - "time": 0.9237770193401593, + "noteOrder": 5086, + "time": 0.9579067121729237, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4980,18 +8062,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5023, - "time": 0.9465301478953355, + "noteOrder": 5086, + "time": 0.9579067121729237, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5008,13 +8090,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5047, - "time": 0.9510807736063708, + "noteOrder": 5098, + "time": 0.9601820250284414, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5026,16 +8108,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5071, - "time": 0.955631399317406, + "noteOrder": 5098, + "time": 0.9601820250284414, "position": { "x": 7, "y": 0 @@ -5055,10 +8137,10 @@ }, { "lineGroupId": 215, - "indexInLine": 3, + "indexInLine": 6, "isSliding": false, - "noteOrder": 5120, - "time": 0.9647326507394766, + "noteOrder": 5122, + "time": 0.9647326507394767, "position": { "x": 7, "y": 0 @@ -5078,10 +8160,10 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, - "time": 0.9601820250284413, + "noteOrder": 5098, + "time": 0.9601820250284414, "position": { "x": 3, "y": 0 @@ -5101,10 +8183,10 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5120, - "time": 0.9647326507394766, + "noteOrder": 5122, + "time": 0.9647326507394767, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1b.json" "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1b.json" index a26d26b8..8f148f42 100644 --- "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1b.json" +++ "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/296_difficulty_1b.json" @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 532, "time": 0.10011376564277588, "position": { "x": 4, @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 555, + "noteOrder": 556, "time": 0.10466439135381114, "position": { "x": 6, @@ -153,7 +153,7 @@ "isPlayAudio": false }, { - "noteOrder": 700, + "noteOrder": 701, "time": 0.13196814562002274, "position": { "x": 3, @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 724, - "time": 0.136518771331058, + "noteOrder": 725, + "time": 0.13651877133105803, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 724, - "time": 0.136518771331058, + "noteOrder": 725, + "time": 0.13651877133105803, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 749, - "time": 0.1410693970420933, + "time": 0.14106939704209326, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 749, - "time": 0.1410693970420933, + "time": 0.14106939704209326, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 991, "time": 0.18657565415244595, "position": { "x": 6, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1039, "time": 0.19567690557451647, "position": { "x": 4, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1159, - "time": 0.2184300341296928, + "noteOrder": 1160, + "time": 0.21843003412969283, "position": { "x": 6, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1183, - "time": 0.2229806598407281, + "noteOrder": 1184, + "time": 0.22298065984072807, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1207, + "noteOrder": 1208, "time": 0.22753128555176336, "position": { "x": 4, @@ -474,7 +474,7 @@ }, { "noteOrder": 1232, - "time": 0.23208191126279865, + "time": 0.23208191126279862, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1280, - "time": 0.24118316268486914, + "time": 0.24118316268486917, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1304, + "noteOrder": 1305, "time": 0.24573378839590443, "position": { "x": 7, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1328, + "noteOrder": 1329, "time": 0.2502844141069397, "position": { "x": 5, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1473, - "time": 0.27758816837315126, + "noteOrder": 1474, + "time": 0.2775881683731513, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1497, - "time": 0.2821387940841866, + "noteOrder": 1498, + "time": 0.2821387940841865, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1521, + "noteOrder": 1522, "time": 0.28668941979522183, "position": { "x": 5, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1594, + "noteOrder": 1595, "time": 0.3003412969283276, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1618, - "time": 0.30489192263936293, + "noteOrder": 1619, + "time": 0.3048919226393629, "position": { "x": 6, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1666, + "noteOrder": 1667, "time": 0.31399317406143346, "position": { "x": 6, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1690, - "time": 0.31854379977246866, + "noteOrder": 1691, + "time": 0.3185437997724687, "position": { "x": 7, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1763, + "noteOrder": 1764, "time": 0.3321956769055745, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1787, + "noteOrder": 1788, "time": 0.33674630261660976, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1811, + "noteOrder": 1812, "time": 0.341296928327645, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1908, + "noteOrder": 1909, "time": 0.3594994311717861, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1932, - "time": 0.3640500568828214, + "noteOrder": 1933, + "time": 0.3640500568828213, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1956, - "time": 0.3686006825938566, + "noteOrder": 1957, + "time": 0.36860068259385664, "position": { "x": 5, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1980, + "noteOrder": 1981, "time": 0.3731513083048919, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2004, + "noteOrder": 2005, "time": 0.37770193401592717, "position": { "x": 6, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2077, + "noteOrder": 2078, "time": 0.39135381114903295, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2101, + "noteOrder": 2102, "time": 0.39590443686006827, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2173, + "noteOrder": 2174, "time": 0.40955631399317405, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2198, + "noteOrder": 2199, "time": 0.4141069397042093, "position": { "x": 4, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2270, + "noteOrder": 2271, "time": 0.4277588168373151, "position": { "x": 7, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2294, + "noteOrder": 2295, "time": 0.43230944254835035, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2318, - "time": 0.4368600682593856, + "noteOrder": 2319, + "time": 0.43686006825938567, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2367, - "time": 0.4459613196814562, + "noteOrder": 2368, + "time": 0.44596131968145614, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2367, - "time": 0.4459613196814562, + "noteOrder": 2368, + "time": 0.44596131968145614, "position": { "x": 6, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.45051194539249145, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2391, + "noteOrder": 2392, "time": 0.45051194539249145, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2512, + "noteOrder": 2513, "time": 0.47326507394766776, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 2609, "time": 0.49146757679180886, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2705, + "noteOrder": 2706, "time": 0.5096700796359499, "position": { "x": 6, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2753, + "noteOrder": 2754, "time": 0.5187713310580204, "position": { "x": 4, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2777, + "noteOrder": 2778, "time": 0.5233219567690557, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2826, - "time": 0.5324232081911263, + "noteOrder": 2827, + "time": 0.5324232081911262, "position": { "x": 5, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2850, - "time": 0.5369738339021616, + "noteOrder": 2851, + "time": 0.5369738339021615, "position": { "x": 6, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2874, - "time": 0.5415244596131967, + "noteOrder": 2875, + "time": 0.5415244596131968, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2922, - "time": 0.5506257110352673, + "noteOrder": 2923, + "time": 0.5506257110352674, "position": { "x": 5, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2946, - "time": 0.5551763367463025, + "noteOrder": 2947, + "time": 0.5551763367463026, "position": { "x": 4, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2970, + "noteOrder": 2972, "time": 0.5597269624573378, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3019, + "noteOrder": 3020, "time": 0.5688282138794084, "position": { "x": 5, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3043, + "noteOrder": 3044, "time": 0.5733788395904437, "position": { "x": 6, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3067, + "noteOrder": 3068, "time": 0.5779294653014789, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3212, + "noteOrder": 3213, "time": 0.6052332195676905, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3260, - "time": 0.6143344709897611, + "noteOrder": 3262, + "time": 0.614334470989761, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3309, + "noteOrder": 3310, "time": 0.6234357224118316, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 3358, "time": 0.6325369738339022, "position": { "x": 6, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3381, - "time": 0.6370875995449373, + "noteOrder": 3382, + "time": 0.6370875995449374, "position": { "x": 5, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3405, + "noteOrder": 3406, "time": 0.6416382252559726, "position": { "x": 5, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3429, + "noteOrder": 3431, "time": 0.6461888509670078, "position": { "x": 5, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3719, - "time": 0.7007963594994312, + "noteOrder": 3721, + "time": 0.7007963594994311, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3767, + "noteOrder": 3769, "time": 0.7098976109215017, "position": { "x": 4, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3793, "time": 0.714448236632537, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3864, - "time": 0.7281001137656428, + "noteOrder": 3865, + "time": 0.7281001137656427, "position": { "x": 6, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3890, "time": 0.732650739476678, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3985, + "noteOrder": 3986, "time": 0.7508532423208191, "position": { "x": 6, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4033, - "time": 0.7599544937428896, + "noteOrder": 4035, + "time": 0.7599544937428897, "position": { "x": 4, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4081, + "noteOrder": 4083, "time": 0.7690557451649601, "position": { "x": 4, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4130, + "noteOrder": 4131, "time": 0.7781569965870306, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.7872582480091012, + "noteOrder": 4180, + "time": 0.7872582480091013, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4226, + "noteOrder": 4228, "time": 0.7963594994311718, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.800910125142207, "position": { "x": 7, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4275, - "time": 0.8054607508532423, + "noteOrder": 4276, + "time": 0.8054607508532422, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4299, - "time": 0.8100113765642776, + "noteOrder": 4300, + "time": 0.8100113765642775, "position": { "x": 4, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4323, + "noteOrder": 4325, "time": 0.8145620022753128, "position": { "x": 6, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.8236632536973834, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4395, + "noteOrder": 4397, "time": 0.8282138794084186, "position": { "x": 6, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4419, - "time": 0.832764505119454, + "noteOrder": 4421, + "time": 0.8327645051194539, "position": { "x": 6, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4469, "time": 0.8418657565415244, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4494, "time": 0.8464163822525597, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.8509670079635949, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8600682593856654, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 4590, "time": 0.8646188850967007, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4613, + "noteOrder": 4614, "time": 0.869169510807736, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.8782707622298066, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4685, + "noteOrder": 4687, "time": 0.8828213879408419, "position": { "x": 4, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4709, - "time": 0.8873720136518771, + "noteOrder": 4711, + "time": 0.887372013651877, "position": { "x": 4, "y": 0 @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4758, - "time": 0.8964732650739476, + "noteOrder": 4759, + "time": 0.8964732650739475, "position": { "x": 3, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4782, + "noteOrder": 4784, "time": 0.9010238907849829, "position": { "x": 4, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 4806, + "noteOrder": 4808, "time": 0.9055745164960182, "position": { "x": 4, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.9146757679180887, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 4878, + "noteOrder": 4880, "time": 0.919226393629124, "position": { "x": 6, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4902, - "time": 0.9237770193401593, + "noteOrder": 4904, + "time": 0.9237770193401592, "position": { "x": 6, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5023, + "noteOrder": 5025, "time": 0.9465301478953355, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5047, + "noteOrder": 5049, "time": 0.9510807736063708, "position": { "x": 3, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.955631399317406, + "noteOrder": 5073, + "time": 0.9556313993174061, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5071, - "time": 0.955631399317406, + "noteOrder": 5073, + "time": 0.9556313993174061, "position": { "x": 4, "y": 0 @@ -2336,7 +2336,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01820250284414107, @@ -2359,10 +2359,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, - "time": 0.0273037542662116, + "time": 0.027303754266211604, "position": { "x": 4, "y": 0 @@ -2382,7 +2382,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 169, "time": 0.03185437997724687, @@ -2405,7 +2405,7 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.03640500568828214, @@ -2428,10 +2428,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 241, - "time": 0.04550625711035267, + "noteOrder": 242, + "time": 0.045506257110352666, "position": { "x": 6, "y": 0 @@ -2451,7 +2451,7 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 266, "time": 0.05005688282138794, @@ -2474,10 +2474,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 290, - "time": 0.0546075085324232, + "time": 0.05460750853242321, "position": { "x": 4, "y": 0 @@ -2497,7 +2497,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 338, "time": 0.06370875995449374, @@ -2520,10 +2520,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 362, - "time": 0.068259385665529, + "time": 0.06825938566552901, "position": { "x": 4, "y": 0 @@ -2543,9 +2543,9 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 386, + "noteOrder": 387, "time": 0.07281001137656427, "position": { "x": 3, @@ -2566,10 +2566,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 411, - "time": 0.07736063708759955, + "time": 0.07736063708759953, "position": { "x": 4, "y": 0 @@ -2589,7 +2589,7 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 459, "time": 0.08646188850967007, @@ -2612,9 +2612,9 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 386, + "noteOrder": 387, "time": 0.07281001137656427, "position": { "x": 7, @@ -2635,10 +2635,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 411, - "time": 0.07736063708759955, + "time": 0.07736063708759953, "position": { "x": 6, "y": 0 @@ -2658,7 +2658,7 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 459, "time": 0.08646188850967007, @@ -2681,10 +2681,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 483, - "time": 0.09101251422070535, + "time": 0.09101251422070533, "position": { "x": 7, "y": 0 @@ -2704,7 +2704,7 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 507, "time": 0.0955631399317406, @@ -2727,10 +2727,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, - "time": 0.1092150170648464, + "time": 0.10921501706484642, "position": { "x": 3, "y": 0 @@ -2750,7 +2750,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 604, "time": 0.11376564277588168, @@ -2773,9 +2773,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 869, + "noteOrder": 870, "time": 0.16382252559726962, "position": { "x": 6, @@ -2796,7 +2796,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 894, "time": 0.16837315130830488, @@ -2819,7 +2819,7 @@ }, { "lineGroupId": 23, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 942, "time": 0.17747440273037543, @@ -2842,10 +2842,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 966, - "time": 0.1820250284414107, + "time": 0.18202502844141066, "position": { "x": 4, "y": 0 @@ -2865,9 +2865,9 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 990, + "noteOrder": 991, "time": 0.18657565415244595, "position": { "x": 4, @@ -2888,9 +2888,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1014, + "noteOrder": 1015, "time": 0.1911262798634812, "position": { "x": 6, @@ -2911,9 +2911,9 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1038, + "noteOrder": 1039, "time": 0.19567690557451647, "position": { "x": 6, @@ -2934,7 +2934,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1063, "time": 0.20022753128555176, @@ -2957,7 +2957,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1087, "time": 0.20477815699658702, @@ -2980,7 +2980,7 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1135, "time": 0.21387940841865755, @@ -3003,7 +3003,7 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1256, "time": 0.23663253697383388, @@ -3024,11 +3024,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 39, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1268, + "time": 0.23890784982935154, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 39, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1268, + "time": 0.23890784982935154, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1352, + "noteOrder": 1353, "time": 0.25483503981797495, "position": { "x": 7, @@ -3047,9 +3093,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1365, + "time": 0.2571103526734926, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1365, + "time": 0.2571103526734926, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1401, "time": 0.2639362912400455, @@ -3072,10 +3164,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1425, - "time": 0.2684869169510808, + "time": 0.26848691695108073, "position": { "x": 6, "y": 0 @@ -3095,10 +3187,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1449, - "time": 0.273037542662116, + "noteOrder": 1450, + "time": 0.27303754266211605, "position": { "x": 3, "y": 0 @@ -3117,11 +3209,34 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1462, + "time": 0.2753128555176337, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1642, - "time": 0.3094425483503982, + "noteOrder": 1462, + "time": 0.2753128555176337, "position": { "x": 4, "y": 0 @@ -3143,6 +3258,29 @@ "lineGroupId": 54, "indexInLine": 1, "isSliding": false, + "noteOrder": 1643, + "time": 0.30944254835039814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, "noteOrder": 1739, "time": 0.32764505119453924, "position": { @@ -3164,7 +3302,7 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1739, "time": 0.32764505119453924, @@ -3187,9 +3325,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1835, + "noteOrder": 1836, "time": 0.3458475540386803, "position": { "x": 6, @@ -3210,10 +3348,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1860, - "time": 0.3503981797497156, + "time": 0.35039817974971554, "position": { "x": 6, "y": 0 @@ -3233,7 +3371,7 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1884, "time": 0.35494880546075086, @@ -3256,7 +3394,7 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1884, "time": 0.35494880546075086, @@ -3279,9 +3417,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1908, + "noteOrder": 1909, "time": 0.3594994311717861, "position": { "x": 4, @@ -3302,7 +3440,7 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2029, "time": 0.3822525597269624, @@ -3325,9 +3463,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2053, + "noteOrder": 2054, "time": 0.3868031854379977, "position": { "x": 4, @@ -3348,9 +3486,9 @@ }, { "lineGroupId": 71, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2101, + "noteOrder": 2102, "time": 0.39590443686006827, "position": { "x": 4, @@ -3371,9 +3509,9 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2125, + "noteOrder": 2126, "time": 0.4004550625711035, "position": { "x": 7, @@ -3394,10 +3532,10 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2149, - "time": 0.4050056882821388, + "noteOrder": 2150, + "time": 0.40500568828213873, "position": { "x": 6, "y": 0 @@ -3417,9 +3555,9 @@ }, { "lineGroupId": 74, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2198, + "noteOrder": 2199, "time": 0.4141069397042093, "position": { "x": 6, @@ -3440,9 +3578,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2222, + "noteOrder": 2223, "time": 0.41865756541524457, "position": { "x": 4, @@ -3463,9 +3601,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2246, + "noteOrder": 2247, "time": 0.42320819112627983, "position": { "x": 6, @@ -3486,9 +3624,9 @@ }, { "lineGroupId": 77, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2294, + "noteOrder": 2295, "time": 0.43230944254835035, "position": { "x": 6, @@ -3509,9 +3647,9 @@ }, { "lineGroupId": 92, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2801, + "noteOrder": 2802, "time": 0.527872582480091, "position": { "x": 3, @@ -3532,10 +3670,10 @@ }, { "lineGroupId": 92, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2826, - "time": 0.5324232081911263, + "noteOrder": 2827, + "time": 0.5324232081911262, "position": { "x": 3, "y": 0 @@ -3555,10 +3693,10 @@ }, { "lineGroupId": 92, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2850, - "time": 0.5369738339021616, + "noteOrder": 2851, + "time": 0.5369738339021615, "position": { "x": 4, "y": 0 @@ -3578,10 +3716,10 @@ }, { "lineGroupId": 92, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2874, - "time": 0.5415244596131967, + "noteOrder": 2875, + "time": 0.5415244596131968, "position": { "x": 4, "y": 0 @@ -3601,10 +3739,10 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2898, - "time": 0.546075085324232, + "noteOrder": 2899, + "time": 0.5460750853242321, "position": { "x": 7, "y": 0 @@ -3624,10 +3762,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2922, - "time": 0.5506257110352673, + "noteOrder": 2923, + "time": 0.5506257110352674, "position": { "x": 7, "y": 0 @@ -3647,10 +3785,10 @@ }, { "lineGroupId": 96, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2946, - "time": 0.5551763367463025, + "noteOrder": 2947, + "time": 0.5551763367463026, "position": { "x": 6, "y": 0 @@ -3670,9 +3808,9 @@ }, { "lineGroupId": 96, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2970, + "noteOrder": 2972, "time": 0.5597269624573378, "position": { "x": 6, @@ -3693,10 +3831,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2995, - "time": 0.5642775881683731, + "noteOrder": 2996, + "time": 0.564277588168373, "position": { "x": 3, "y": 0 @@ -3716,9 +3854,9 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3019, + "noteOrder": 3020, "time": 0.5688282138794084, "position": { "x": 3, @@ -3739,9 +3877,9 @@ }, { "lineGroupId": 100, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3043, + "noteOrder": 3044, "time": 0.5733788395904437, "position": { "x": 4, @@ -3762,9 +3900,9 @@ }, { "lineGroupId": 100, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3067, + "noteOrder": 3068, "time": 0.5779294653014789, "position": { "x": 4, @@ -3785,9 +3923,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3091, + "noteOrder": 3092, "time": 0.5824800910125142, "position": { "x": 7, @@ -3808,9 +3946,9 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3139, + "noteOrder": 3141, "time": 0.5915813424345847, "position": { "x": 7, @@ -3831,9 +3969,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3115, + "noteOrder": 3117, "time": 0.5870307167235495, "position": { "x": 3, @@ -3854,9 +3992,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3139, + "noteOrder": 3141, "time": 0.5915813424345847, "position": { "x": 5, @@ -3877,9 +4015,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3574, + "noteOrder": 3576, "time": 0.6734926052332195, "position": { "x": 6, @@ -3899,11 +4037,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3622, - "time": 0.68259385665529, + "noteOrder": 3600, + "time": 0.6780432309442549, "position": { "x": 6, "y": 0 @@ -3917,16 +4055,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3671, - "time": 0.6916951080773606, + "noteOrder": 3600, + "time": 0.6780432309442549, "position": { "x": 6, "y": 0 @@ -3945,11 +4083,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3695, - "time": 0.6962457337883958, + "noteOrder": 3624, + "time": 0.68259385665529, "position": { "x": 6, "y": 0 @@ -3968,13 +4106,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3816, - "time": 0.7189988623435722, + "noteOrder": 3648, + "time": 0.6871444823663253, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3991,11 +4129,195 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3840, - "time": 0.7235494880546075, + "noteOrder": 3648, + "time": 0.6871444823663253, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3672, + "time": 0.6916951080773606, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3684, + "time": 0.6939704209328783, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3684, + "time": 0.6939704209328783, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3696, + "time": 0.6962457337883958, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6985210466439136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3708, + "time": 0.6985210466439136, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3817, + "time": 0.7189988623435722, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3841, + "time": 0.7235494880546074, "position": { "x": 4, "y": 0 @@ -4015,10 +4337,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3912, - "time": 0.7372013651877132, + "noteOrder": 3914, + "time": 0.7372013651877133, "position": { "x": 7, "y": 0 @@ -4038,10 +4360,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3936, - "time": 0.7417519908987484, + "noteOrder": 3938, + "time": 0.7417519908987485, "position": { "x": 6, "y": 0 @@ -4061,9 +4383,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3961, + "noteOrder": 3962, "time": 0.7463026166097838, "position": { "x": 4, @@ -4084,9 +4406,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3985, + "noteOrder": 3986, "time": 0.7508532423208191, "position": { "x": 4, @@ -4107,9 +4429,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4009, + "noteOrder": 4010, "time": 0.7554038680318543, "position": { "x": 6, @@ -4130,10 +4452,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4033, - "time": 0.7599544937428896, + "noteOrder": 4035, + "time": 0.7599544937428897, "position": { "x": 6, "y": 0 @@ -4153,9 +4475,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4057, + "noteOrder": 4059, "time": 0.7645051194539249, "position": { "x": 5, @@ -4176,9 +4498,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4081, + "noteOrder": 4083, "time": 0.7690557451649601, "position": { "x": 5, @@ -4199,9 +4521,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4105, + "noteOrder": 4107, "time": 0.7736063708759954, "position": { "x": 5, @@ -4222,9 +4544,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, + "noteOrder": 4131, "time": 0.7781569965870306, "position": { "x": 5, @@ -4245,9 +4567,9 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4154, + "noteOrder": 4155, "time": 0.7827076222980659, "position": { "x": 3, @@ -4268,10 +4590,10 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4178, - "time": 0.7872582480091012, + "noteOrder": 4180, + "time": 0.7872582480091013, "position": { "x": 4, "y": 0 @@ -4291,9 +4613,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.7918088737201365, "position": { "x": 7, @@ -4314,9 +4636,9 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4226, + "noteOrder": 4228, "time": 0.7963594994311718, "position": { "x": 6, @@ -4337,9 +4659,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.8191126279863481, "position": { "x": 3, @@ -4360,9 +4682,9 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4371, + "noteOrder": 4373, "time": 0.8236632536973834, "position": { "x": 3, @@ -4383,10 +4705,10 @@ }, { "lineGroupId": 150, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4419, - "time": 0.832764505119454, + "noteOrder": 4421, + "time": 0.8327645051194539, "position": { "x": 4, "y": 0 @@ -4406,9 +4728,9 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4444, + "noteOrder": 4445, "time": 0.8373151308304891, "position": { "x": 7, @@ -4429,9 +4751,9 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4468, + "noteOrder": 4469, "time": 0.8418657565415244, "position": { "x": 7, @@ -4452,9 +4774,9 @@ }, { "lineGroupId": 154, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4516, + "noteOrder": 4518, "time": 0.8509670079635949, "position": { "x": 6, @@ -4475,9 +4797,9 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4540, + "noteOrder": 4542, "time": 0.8555176336746302, "position": { "x": 3, @@ -4498,9 +4820,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4564, + "noteOrder": 4566, "time": 0.8600682593856654, "position": { "x": 3, @@ -4521,9 +4843,9 @@ }, { "lineGroupId": 158, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4613, + "noteOrder": 4614, "time": 0.869169510807736, "position": { "x": 4, @@ -4544,10 +4866,10 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4637, - "time": 0.8737201365187712, + "noteOrder": 4639, + "time": 0.8737201365187713, "position": { "x": 7, "y": 0 @@ -4567,9 +4889,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4661, + "noteOrder": 4663, "time": 0.8782707622298066, "position": { "x": 7, @@ -4590,10 +4912,10 @@ }, { "lineGroupId": 162, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4709, - "time": 0.8873720136518771, + "noteOrder": 4711, + "time": 0.887372013651877, "position": { "x": 6, "y": 0 @@ -4613,10 +4935,10 @@ }, { "lineGroupId": 166, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4733, - "time": 0.8919226393629124, + "noteOrder": 4735, + "time": 0.8919226393629123, "position": { "x": 3, "y": 0 @@ -4634,11 +4956,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4747, + "time": 0.89419795221843, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4747, + "time": 0.89419795221843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4830, + "noteOrder": 4832, "time": 0.9101251422070534, "position": { "x": 7, @@ -4658,11 +5026,11 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 170, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4927, - "time": 0.9283276450511946, + "noteOrder": 4844, + "time": 0.9124004550625711, "position": { "x": 7, "y": 0 @@ -4680,11 +5048,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 170, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4844, + "time": 0.9124004550625711, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 174, "indexInLine": 1, "isSliding": false, - "noteOrder": 4951, + "noteOrder": 4929, + "time": 0.9283276450511945, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4953, "time": 0.9328782707622297, "position": { "x": 6, @@ -4705,9 +5119,9 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4975, + "noteOrder": 4977, "time": 0.937428896473265, "position": { "x": 3, @@ -4728,9 +5142,9 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4999, + "noteOrder": 5001, "time": 0.9419795221843003, "position": { "x": 4, @@ -4751,10 +5165,10 @@ }, { "lineGroupId": 182, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, - "time": 0.9601820250284413, + "noteOrder": 5098, + "time": 0.9601820250284414, "position": { "x": 7, "y": 0 @@ -4774,10 +5188,10 @@ }, { "lineGroupId": 182, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5120, - "time": 0.9647326507394766, + "noteOrder": 5122, + "time": 0.9647326507394767, "position": { "x": 7, "y": 0 @@ -4797,10 +5211,10 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5096, - "time": 0.9601820250284413, + "noteOrder": 5098, + "time": 0.9601820250284414, "position": { "x": 3, "y": 0 @@ -4820,10 +5234,10 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5120, - "time": 0.9647326507394766, + "noteOrder": 5122, + "time": 0.9647326507394767, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/info.json" "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/info.json" index 5decf5bc..fa9f742e 100644 --- "a/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/info.json" +++ "b/tracks/\343\203\211\343\203\274\343\203\221\343\203\237\343\203\263 (STARDOM Remix)/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30c9\u30fc\u30d1\u30df\u30f3 (STARDOM Remix)", - "SongLength": "130.612245", + "SongLength": "120.659592", "SongAuthorName": "ARM (IOSYS)", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1a.json" "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1a.json" index d40d4b88..f346c12a 100644 --- "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1a.json" +++ "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1a.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 122, - "time": 0.013976240391334733, + "time": 0.013976240391334731, "position": { "x": 5, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 293, - "time": 0.03354297693920335, + "time": 0.033542976939203356, "position": { "x": 7, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 317, - "time": 0.0363382250174703, + "time": 0.036338225017470305, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 414, + "noteOrder": 415, "time": 0.047519217330538085, "position": { "x": 5, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 414, + "noteOrder": 415, "time": 0.047519217330538085, "position": { "x": 7, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 609, - "time": 0.06988120195667366, + "noteOrder": 610, + "time": 0.06988120195667365, "position": { "x": 8, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 634, - "time": 0.0726764500349406, + "time": 0.07267645003494061, "position": { "x": 6, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 756, - "time": 0.08665269042627533, + "time": 0.08665269042627534, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 804, + "noteOrder": 805, "time": 0.09224318658280922, "position": { "x": 2, @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1121, + "noteOrder": 1122, "time": 0.12858141160027953, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1121, + "noteOrder": 1122, "time": 0.12858141160027953, "position": { "x": 7, @@ -614,7 +614,7 @@ }, { "noteOrder": 1268, - "time": 0.1453529000698812, + "time": 0.14535290006988122, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1389, - "time": 0.15932914046121593, + "noteOrder": 1390, + "time": 0.15932914046121596, "position": { "x": 5, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1561, "time": 0.17889587700908458, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1585, "time": 0.18169112508735152, "position": { "x": 6, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1706, - "time": 0.19566736547868624, + "noteOrder": 1707, + "time": 0.19566736547868627, "position": { "x": 4, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1828, + "noteOrder": 1829, "time": 0.20964360587002098, "position": { "x": 5, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1901, - "time": 0.2180293501048218, + "noteOrder": 1902, + "time": 0.21802935010482183, "position": { "x": 3, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1926, - "time": 0.22082459818308875, + "time": 0.22082459818308878, "position": { "x": 5, "y": 0 @@ -914,7 +914,7 @@ }, { "noteOrder": 1999, - "time": 0.22921034241788957, + "time": 0.2292103424178896, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2023, - "time": 0.23200559049615652, + "noteOrder": 2024, + "time": 0.23200559049615657, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.2403913347309574, "position": { "x": 3, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2169, - "time": 0.2487770789657582, + "noteOrder": 2170, + "time": 0.24877707896575824, "position": { "x": 4, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.2543675751222921, + "noteOrder": 2219, + "time": 0.25436757512229213, "position": { "x": 5, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.25995807127882603, "position": { "x": 2, @@ -1054,7 +1054,7 @@ }, { "noteOrder": 2316, - "time": 0.26554856743535993, + "time": 0.2655485674353599, "position": { "x": 8, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.29350104821802936, "position": { "x": 6, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 2609, "time": 0.29909154437456326, "position": { "x": 7, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.30468204053109715, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2706, - "time": 0.310272536687631, + "noteOrder": 2707, + "time": 0.31027253668763105, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2949, + "noteOrder": 2950, "time": 0.3382250174703005, "position": { "x": 6, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.34381551362683443, + "noteOrder": 2999, + "time": 0.3438155136268344, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3047, - "time": 0.3494060097833683, + "noteOrder": 3048, + "time": 0.34940600978336833, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3097, "time": 0.3549965059399022, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3292, "time": 0.37735849056603776, "position": { "x": 8, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.3857442348008386, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.3913347309573725, + "noteOrder": 3414, + "time": 0.39133473095737253, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3462, "time": 0.3969252271139064, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.4025157232704403, "position": { "x": 7, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.4053109713487072, + "noteOrder": 3536, + "time": 0.40531097134870725, "position": { "x": 7, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3559, - "time": 0.4081062194269741, + "noteOrder": 3560, + "time": 0.40810621942697417, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3608, + "noteOrder": 3609, "time": 0.41369671558350807, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3632, + "noteOrder": 3633, "time": 0.416491963661775, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3656, + "noteOrder": 3657, "time": 0.41928721174004197, "position": { "x": 5, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3681, - "time": 0.4220824598183089, + "noteOrder": 3682, + "time": 0.42208245981830894, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3754, - "time": 0.4304682040531097, + "noteOrder": 3755, + "time": 0.43046820405310976, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3766, - "time": 0.43186582809224316, + "noteOrder": 3767, + "time": 0.4318658280922432, "position": { "x": 4, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3778, + "noteOrder": 3779, "time": 0.4332634521313767, "position": { "x": 3, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3851, - "time": 0.4416491963661775, + "noteOrder": 3853, + "time": 0.44164919636617755, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3864, - "time": 0.443046820405311, + "noteOrder": 3865, + "time": 0.44304682040531096, "position": { "x": 6, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3876, + "noteOrder": 3877, "time": 0.4444444444444445, "position": { "x": 7, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3900, - "time": 0.44723969252271145, + "noteOrder": 3901, + "time": 0.4472396925227114, "position": { "x": 3, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 3914, "time": 0.4486373165618449, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3924, + "noteOrder": 3926, "time": 0.4500349406009784, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3949, - "time": 0.45283018867924535, + "noteOrder": 3950, + "time": 0.4528301886792453, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3961, - "time": 0.4542278127183787, + "noteOrder": 3962, + "time": 0.4542278127183788, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.4556254367575122, + "noteOrder": 3974, + "time": 0.4556254367575123, "position": { "x": 7, "y": 0 @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4022, + "noteOrder": 4023, "time": 0.4612159329140461, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.46261355695317957, + "noteOrder": 4035, + "time": 0.4626135569531796, "position": { "x": 3, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4071, + "noteOrder": 4072, "time": 0.46680642907058, "position": { "x": 6, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4083, - "time": 0.46820405310971347, + "noteOrder": 4084, + "time": 0.4682040531097135, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4144, - "time": 0.4751921733053809, + "noteOrder": 4145, + "time": 0.4751921733053808, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4217, - "time": 0.4835779175401817, + "noteOrder": 4218, + "time": 0.48357791754018176, "position": { "x": 8, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4241, + "noteOrder": 4243, "time": 0.4863731656184487, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4266, - "time": 0.48916841369671565, + "noteOrder": 4267, + "time": 0.4891684136967156, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4314, - "time": 0.49475890985324944, + "noteOrder": 4316, + "time": 0.4947589098532495, "position": { "x": 2, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4339, - "time": 0.4975541579315164, + "noteOrder": 4340, + "time": 0.49755415793151647, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4363, + "noteOrder": 4365, "time": 0.5003494060097834, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4412, - "time": 0.5059399021663172, + "noteOrder": 4413, + "time": 0.5059399021663173, "position": { "x": 8, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4436, - "time": 0.5087351502445842, + "noteOrder": 4438, + "time": 0.5087351502445843, "position": { "x": 4, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4461, + "noteOrder": 4462, "time": 0.5115303983228512, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4509, + "noteOrder": 4511, "time": 0.517120894479385, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4534, + "noteOrder": 4535, "time": 0.5199161425576521, "position": { "x": 2, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4558, + "noteOrder": 4560, "time": 0.522711390635919, "position": { "x": 5, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4631, - "time": 0.5310971348707199, + "noteOrder": 4633, + "time": 0.5310971348707197, "position": { "x": 6, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4704, - "time": 0.5394828791055206, + "noteOrder": 4706, + "time": 0.5394828791055207, "position": { "x": 8, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4729, + "noteOrder": 4730, "time": 0.5422781271837875, "position": { "x": 4, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4753, + "noteOrder": 4755, "time": 0.5450733752620545, "position": { "x": 7, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4802, + "noteOrder": 4803, "time": 0.5506638714185884, "position": { "x": 2, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.5534591194968553, + "noteOrder": 4828, + "time": 0.5534591194968554, "position": { "x": 6, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4851, - "time": 0.5562543675751223, + "noteOrder": 4852, + "time": 0.5562543675751224, "position": { "x": 3, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.5590496156533893, + "noteOrder": 4877, + "time": 0.5590496156533892, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.5758211041229909, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5119, + "noteOrder": 5120, "time": 0.5870020964360587, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5267, "time": 0.6037735849056605, "position": { "x": 4, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5411, - "time": 0.620545073375262, + "noteOrder": 5413, + "time": 0.6205450733752621, "position": { "x": 4, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5436, + "noteOrder": 5437, "time": 0.623340321453529, "position": { "x": 5, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5484, - "time": 0.6289308176100629, + "noteOrder": 5486, + "time": 0.628930817610063, "position": { "x": 8, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5509, + "noteOrder": 5511, "time": 0.6317260656883299, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5533, + "noteOrder": 5535, "time": 0.6345213137665968, "position": { "x": 7, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5582, + "noteOrder": 5584, "time": 0.6401118099231307, "position": { "x": 2, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5606, + "noteOrder": 5608, "time": 0.6429070580013977, "position": { "x": 3, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5631, + "noteOrder": 5633, "time": 0.6457023060796646, "position": { "x": 3, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.6484975541579315, "position": { "x": 7, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6094, - "time": 0.6988120195667366, + "noteOrder": 6096, + "time": 0.6988120195667367, "position": { "x": 7, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6460, - "time": 0.7407407407407407, + "noteOrder": 6462, + "time": 0.7407407407407408, "position": { "x": 3, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6472, - "time": 0.7421383647798742, + "noteOrder": 6474, + "time": 0.7421383647798743, "position": { "x": 6, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6508, + "noteOrder": 6510, "time": 0.7463312368972747, "position": { "x": 4, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6520, + "noteOrder": 6523, "time": 0.7477288609364081, "position": { "x": 7, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6655, + "noteOrder": 6657, "time": 0.7631027253668764, "position": { "x": 4, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6679, + "noteOrder": 6681, "time": 0.7658979734451433, "position": { "x": 8, @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6703, - "time": 0.7686932215234101, + "noteOrder": 6705, + "time": 0.7686932215234102, "position": { "x": 4, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6752, + "noteOrder": 6754, "time": 0.7742837176799441, "position": { "x": 6, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6776, - "time": 0.777078965758211, + "noteOrder": 6779, + "time": 0.7770789657582111, "position": { "x": 2, "y": 0 @@ -2633,8 +2633,8 @@ "isPlayAudio": false }, { - "noteOrder": 6801, - "time": 0.7798742138364779, + "noteOrder": 6803, + "time": 0.779874213836478, "position": { "x": 6, "y": 0 @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 6825, - "time": 0.782669461914745, + "noteOrder": 6827, + "time": 0.7826694619147451, "position": { "x": 5, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6850, + "noteOrder": 6852, "time": 0.7854647099930119, "position": { "x": 5, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 7069, - "time": 0.8106219426974144, + "noteOrder": 7071, + "time": 0.8106219426974145, "position": { "x": 7, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 7093, - "time": 0.8134171907756813, + "noteOrder": 7096, + "time": 0.8134171907756814, "position": { "x": 5, "y": 0 @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 7166, + "noteOrder": 7169, "time": 0.8218029350104822, "position": { "x": 3, @@ -2753,8 +2753,8 @@ "isPlayAudio": false }, { - "noteOrder": 7191, - "time": 0.8245981830887491, + "noteOrder": 7193, + "time": 0.8245981830887492, "position": { "x": 5, "y": 0 @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 7337, + "noteOrder": 7339, "time": 0.8413696715583509, "position": { "x": 2, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 7361, - "time": 0.8441649196366178, + "noteOrder": 7364, + "time": 0.8441649196366179, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 7386, - "time": 0.8469601677148847, + "noteOrder": 7388, + "time": 0.8469601677148848, "position": { "x": 3, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7435, - "time": 0.8525506638714185, + "noteOrder": 7437, + "time": 0.8525506638714186, "position": { "x": 8, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 7459, + "noteOrder": 7461, "time": 0.8553459119496856, "position": { "x": 4, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7483, + "noteOrder": 7486, "time": 0.8581411600279525, "position": { "x": 7, @@ -2893,7 +2893,7 @@ "isPlayAudio": false }, { - "noteOrder": 8141, + "noteOrder": 8144, "time": 0.93361285814116, "position": { "x": 3, @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 8141, + "noteOrder": 8144, "time": 0.93361285814116, "position": { "x": 7, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 8166, - "time": 0.9364081062194269, + "noteOrder": 8168, + "time": 0.936408106219427, "position": { "x": 4, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 8166, - "time": 0.9364081062194269, + "noteOrder": 8168, + "time": 0.936408106219427, "position": { "x": 6, "y": 0 @@ -2976,10 +2976,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.016771488469601675, + "time": 0.016771488469601678, "position": { "x": 3, "y": 0 @@ -2999,7 +2999,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 171, "time": 0.019566736547868623, @@ -3022,10 +3022,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 244, - "time": 0.027952480782669466, + "time": 0.027952480782669462, "position": { "x": 7, "y": 0 @@ -3045,7 +3045,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 268, "time": 0.03074772886093641, @@ -3068,10 +3068,33 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.05590496156533893, + "time": 0.055904961565338925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 18, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 500, + "time": 0.0573025856044724, "position": { "x": 7, "y": 0 @@ -3089,12 +3112,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 18, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 500, + "time": 0.0573025856044724, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 512, - "time": 0.05870020964360587, + "time": 0.05870020964360588, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 524, + "time": 0.06009783368273935, "position": { "x": 7, "y": 0 @@ -3112,12 +3181,35 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 524, + "time": 0.06009783368273935, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, - "time": 0.0670859538784067, + "time": 0.06708595387840671, "position": { "x": 7, "y": 0 @@ -3137,7 +3229,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 658, "time": 0.07547169811320756, @@ -3160,7 +3252,7 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 683, "time": 0.07826694619147449, @@ -3181,9 +3273,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 26, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 695, + "time": 0.07966457023060798, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 26, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 695, + "time": 0.07966457023060798, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 707, "time": 0.08106219426974144, @@ -3204,9 +3342,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 27, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 719, + "time": 0.08245981830887492, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 27, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 719, + "time": 0.08245981830887492, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 780, "time": 0.08944793850454229, @@ -3229,10 +3413,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 853, - "time": 0.09783368273934312, + "time": 0.09783368273934313, "position": { "x": 3, "y": 0 @@ -3252,10 +3436,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 853, - "time": 0.09783368273934312, + "time": 0.09783368273934313, "position": { "x": 5, "y": 0 @@ -3275,7 +3459,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 878, "time": 0.10062893081761007, @@ -3298,7 +3482,7 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 902, "time": 0.10342417889587702, @@ -3321,9 +3505,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 926, + "noteOrder": 927, "time": 0.10621942697414395, "position": { "x": 7, @@ -3344,10 +3528,10 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 951, - "time": 0.1090146750524109, + "time": 0.10901467505241091, "position": { "x": 5, "y": 0 @@ -3367,10 +3551,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 975, - "time": 0.11180992313067786, + "time": 0.11180992313067785, "position": { "x": 5, "y": 0 @@ -3390,10 +3574,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 999, - "time": 0.11460517120894478, + "noteOrder": 1000, + "time": 0.1146051712089448, "position": { "x": 3, "y": 0 @@ -3413,10 +3597,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1024, - "time": 0.11740041928721175, + "time": 0.11740041928721176, "position": { "x": 3, "y": 0 @@ -3436,10 +3620,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1170, - "time": 0.1341719077568134, + "time": 0.13417190775681342, "position": { "x": 7, "y": 0 @@ -3459,10 +3643,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1219, - "time": 0.13976240391334732, + "time": 0.1397624039133473, "position": { "x": 7, "y": 0 @@ -3482,10 +3666,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1170, - "time": 0.1341719077568134, + "time": 0.13417190775681342, "position": { "x": 3, "y": 0 @@ -3505,10 +3689,10 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1219, - "time": 0.13976240391334732, + "time": 0.1397624039133473, "position": { "x": 3, "y": 0 @@ -3528,9 +3712,9 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1316, + "noteOrder": 1317, "time": 0.15094339622641512, "position": { "x": 3, @@ -3551,10 +3735,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1341, - "time": 0.15373864430468204, + "time": 0.15373864430468206, "position": { "x": 3, "y": 0 @@ -3574,7 +3758,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1414, "time": 0.16212438853948288, @@ -3597,9 +3781,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1438, + "noteOrder": 1439, "time": 0.16491963661774983, "position": { "x": 7, @@ -3620,7 +3804,7 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1463, "time": 0.16771488469601678, @@ -3643,7 +3827,7 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1487, "time": 0.17051013277428373, @@ -3666,10 +3850,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1511, - "time": 0.17330538085255065, + "noteOrder": 1512, + "time": 0.17330538085255068, "position": { "x": 3, "y": 0 @@ -3689,7 +3873,7 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1536, "time": 0.1761006289308176, @@ -3712,7 +3896,7 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1609, "time": 0.18448637316561844, @@ -3735,10 +3919,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1633, - "time": 0.1872816212438854, + "noteOrder": 1634, + "time": 0.18728162124388542, "position": { "x": 6, "y": 0 @@ -3758,7 +3942,7 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1609, "time": 0.18448637316561844, @@ -3781,10 +3965,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1633, - "time": 0.1872816212438854, + "noteOrder": 1634, + "time": 0.18728162124388542, "position": { "x": 4, "y": 0 @@ -3804,9 +3988,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.20125786163522014, "position": { "x": 3, @@ -3826,11 +4010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, - "time": 0.20405310971348706, + "noteOrder": 1768, + "time": 0.20265548567435362, "position": { "x": 3, "y": 0 @@ -3844,18 +4028,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1853, - "time": 0.2124388539482879, + "noteOrder": 1768, + "time": 0.20265548567435362, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3867,18 +4051,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1877, - "time": 0.21523410202655485, + "noteOrder": 1780, + "time": 0.20405310971348709, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3890,16 +4074,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1950, - "time": 0.22361984626135573, + "noteOrder": 1792, + "time": 0.20545073375262055, "position": { "x": 3, "y": 0 @@ -3913,18 +4097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1974, - "time": 0.22641509433962267, + "noteOrder": 1792, + "time": 0.20545073375262055, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3941,11 +4125,11 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2048, - "time": 0.2348008385744235, + "noteOrder": 1853, + "time": 0.2124388539482879, "position": { "x": 7, "y": 0 @@ -3964,11 +4148,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2072, - "time": 0.23759608665269044, + "noteOrder": 1865, + "time": 0.2138364779874214, "position": { "x": 7, "y": 0 @@ -3982,18 +4166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2145, - "time": 0.2459818308874913, + "noteOrder": 1865, + "time": 0.2138364779874214, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4010,13 +4194,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2194, - "time": 0.25157232704402516, + "noteOrder": 1878, + "time": 0.21523410202655488, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4028,16 +4212,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2194, - "time": 0.25157232704402516, + "noteOrder": 1890, + "time": 0.21663172606568834, "position": { "x": 7, "y": 0 @@ -4056,13 +4240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 74, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2243, - "time": 0.25716282320055905, + "noteOrder": 1890, + "time": 0.21663172606568834, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4079,11 +4263,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2243, - "time": 0.25716282320055905, + "noteOrder": 1951, + "time": 0.2236198462613557, "position": { "x": 3, "y": 0 @@ -4097,16 +4281,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2291, - "time": 0.26275331935709295, + "noteOrder": 1963, + "time": 0.2250174703004892, "position": { "x": 3, "y": 0 @@ -4120,18 +4304,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2291, - "time": 0.26275331935709295, + "noteOrder": 1963, + "time": 0.2250174703004892, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4148,13 +4332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 78, "indexInLine": 1, "isSliding": false, - "noteOrder": 2340, - "time": 0.2683438155136268, + "noteOrder": 1975, + "time": 0.22641509433962265, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4166,18 +4350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2340, - "time": 0.2683438155136268, + "noteOrder": 1987, + "time": 0.22781271837875616, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -4194,13 +4378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2364, - "time": 0.27113906359189377, + "noteOrder": 1987, + "time": 0.22781271837875616, "position": { - "x": 8, + "x": 4, "y": 0 }, "position2D": { @@ -4212,18 +4396,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 2, + "lineGroupId": 81, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2413, - "time": 0.27672955974842767, + "noteOrder": 2048, + "time": 0.23480083857442352, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4235,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2389, - "time": 0.27393431167016075, + "noteOrder": 2060, + "time": 0.23619846261355698, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -4263,13 +4447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2413, - "time": 0.27672955974842767, + "noteOrder": 2060, + "time": 0.23619846261355698, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4286,13 +4470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2535, - "time": 0.2907058001397624, + "noteOrder": 2073, + "time": 0.2375960866526904, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4304,18 +4488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2559, - "time": 0.29350104821802936, + "noteOrder": 2085, + "time": 0.23899371069182393, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4327,18 +4511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2584, - "time": 0.2962962962962963, + "noteOrder": 2085, + "time": 0.23899371069182393, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4350,16 +4534,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 85, "indexInLine": 1, "isSliding": false, - "noteOrder": 2608, - "time": 0.29909154437456326, + "noteOrder": 2146, + "time": 0.2459818308874913, "position": { "x": 3, "y": 0 @@ -4378,13 +4562,13 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2633, - "time": 0.30188679245283023, + "noteOrder": 2194, + "time": 0.25157232704402516, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4396,16 +4580,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 2657, - "time": 0.30468204053109715, + "noteOrder": 2194, + "time": 0.25157232704402516, "position": { "x": 7, "y": 0 @@ -4424,11 +4608,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2681, - "time": 0.3074772886093641, + "noteOrder": 2243, + "time": 0.25716282320055905, "position": { "x": 7, "y": 0 @@ -4447,13 +4631,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 89, "indexInLine": 1, "isSliding": false, - "noteOrder": 2706, - "time": 0.310272536687631, + "noteOrder": 2243, + "time": 0.25716282320055905, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4465,16 +4649,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 89, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2730, - "time": 0.31306778476589797, + "noteOrder": 2292, + "time": 0.26275331935709295, "position": { "x": 3, "y": 0 @@ -4493,11 +4677,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2754, - "time": 0.31586303284416495, + "noteOrder": 2292, + "time": 0.26275331935709295, "position": { "x": 7, "y": 0 @@ -4516,13 +4700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2779, - "time": 0.31865828092243187, + "noteOrder": 2341, + "time": 0.26834381551362685, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4534,18 +4718,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2803, - "time": 0.32145352900069885, + "noteOrder": 2341, + "time": 0.26834381551362685, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4557,18 +4741,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2828, - "time": 0.32424877707896577, + "noteOrder": 2353, + "time": 0.26974143955276036, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4585,13 +4769,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2852, - "time": 0.3270440251572327, + "noteOrder": 2353, + "time": 0.26974143955276036, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -4603,18 +4787,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2876, - "time": 0.32983927323549966, + "noteOrder": 2365, + "time": 0.27113906359189377, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -4626,16 +4810,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2901, - "time": 0.3326345213137666, + "noteOrder": 2377, + "time": 0.27253668763102723, "position": { "x": 8, "y": 0 @@ -4654,13 +4838,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2925, - "time": 0.33542976939203356, + "noteOrder": 2377, + "time": 0.27253668763102723, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4672,18 +4856,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2949, - "time": 0.3382250174703005, + "noteOrder": 2414, + "time": 0.2767295597484277, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4695,18 +4879,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 2, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2974, - "time": 0.34102026554856746, + "noteOrder": 2390, + "time": 0.27393431167016075, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -4723,13 +4907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2974, - "time": 0.34102026554856746, + "noteOrder": 2414, + "time": 0.2767295597484277, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4741,18 +4925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 98, "indexInLine": 1, "isSliding": false, - "noteOrder": 2998, - "time": 0.34381551362683443, + "noteOrder": 2536, + "time": 0.29070580013976244, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4764,18 +4948,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, + "lineGroupId": 98, "indexInLine": 2, "isSliding": false, - "noteOrder": 3023, - "time": 0.3466107617051013, + "noteOrder": 2560, + "time": 0.29350104821802936, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4787,16 +4971,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3023, - "time": 0.3466107617051013, + "noteOrder": 2585, + "time": 0.2962962962962963, "position": { "x": 3, "y": 0 @@ -4815,11 +4999,839 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3047, - "time": 0.3494060097833683, + "noteOrder": 2609, + "time": 0.29909154437456326, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2633, + "time": 0.30188679245283023, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2658, + "time": 0.30468204053109715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2682, + "time": 0.30747728860936413, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2707, + "time": 0.31027253668763105, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2731, + "time": 0.31306778476589797, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2743, + "time": 0.3144654088050315, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2743, + "time": 0.3144654088050315, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2755, + "time": 0.31586303284416495, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2767, + "time": 0.3172606568832984, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2767, + "time": 0.3172606568832984, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2780, + "time": 0.3186582809224319, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2792, + "time": 0.32005590496156533, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2792, + "time": 0.32005590496156533, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2804, + "time": 0.32145352900069885, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2816, + "time": 0.3228511530398323, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2816, + "time": 0.3228511530398323, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2828, + "time": 0.32424877707896577, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2841, + "time": 0.3256464011180993, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2841, + "time": 0.3256464011180993, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2853, + "time": 0.32704402515723274, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2865, + "time": 0.3284416491963662, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2865, + "time": 0.3284416491963662, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2877, + "time": 0.32983927323549966, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2889, + "time": 0.3312368972746331, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2889, + "time": 0.3312368972746331, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2902, + "time": 0.33263452131376664, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2914, + "time": 0.3340321453529001, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2914, + "time": 0.3340321453529001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2926, + "time": 0.33542976939203356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2950, + "time": 0.3382250174703005, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2975, + "time": 0.34102026554856746, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2975, + "time": 0.34102026554856746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2999, + "time": 0.3438155136268344, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 116, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3024, + "time": 0.34661076170510136, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3024, + "time": 0.34661076170510136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3048, + "time": 0.34940600978336833, "position": { "x": 3, "y": 0 @@ -4839,10 +5851,2034 @@ }, { "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3072, + "time": 0.3522012578616352, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3072, + "time": 0.3522012578616352, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3097, + "time": 0.3549965059399022, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3121, + "time": 0.35779175401816915, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3121, + "time": 0.35779175401816915, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3133, + "time": 0.3591893780573026, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3139, + "time": 0.35988819007686934, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 122, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3145, + "time": 0.36058700209643607, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3145, + "time": 0.36058700209643607, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3158, + "time": 0.36198462613556953, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3164, + "time": 0.3626834381551363, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3170, + "time": 0.36338225017470305, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3170, + "time": 0.36338225017470305, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3182, + "time": 0.3647798742138365, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3188, + "time": 0.36547868623340324, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3194, + "time": 0.36617749825296997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.36617749825296997, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3206, + "time": 0.3675751222921035, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3212, + "time": 0.3682739343116702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3219, + "time": 0.3689727463312369, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3219, + "time": 0.3689727463312369, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3231, + "time": 0.3703703703703704, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3237, + "time": 0.37106918238993714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3243, + "time": 0.37176799440950387, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.37176799440950387, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3255, + "time": 0.3731656184486373, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3261, + "time": 0.37386443046820406, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3267, + "time": 0.37456324248777084, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3267, + "time": 0.37456324248777084, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3280, + "time": 0.3759608665269043, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3286, + "time": 0.37665967854647103, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3292, + "time": 0.37735849056603776, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3706, + "time": 0.4248777078965758, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3731, + "time": 0.4276729559748428, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3804, + "time": 0.43605870020964366, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3828, + "time": 0.4388539482879106, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3999, + "time": 0.4584206848357792, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4023, + "time": 0.4612159329140461, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4048, + "time": 0.46401118099231314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4072, + "time": 0.46680642907058, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4194, + "time": 0.4807826694619148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4218, + "time": 0.48357791754018176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4291, + "time": 0.4919636617749826, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4291, + "time": 0.4919636617749826, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4316, + "time": 0.4947589098532495, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4389, + "time": 0.5031446540880503, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4389, + "time": 0.5031446540880503, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4413, + "time": 0.5059399021663173, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 171, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4487, + "time": 0.5143256464011181, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4487, + "time": 0.5143256464011181, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4584, + "time": 0.5255066387141859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4682, + "time": 0.5366876310272537, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4706, + "time": 0.5394828791055207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4779, + "time": 0.5478686233403215, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4779, + "time": 0.5478686233403215, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4803, + "time": 0.5506638714185884, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4877, + "time": 0.5590496156533892, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4901, + "time": 0.5618448637316562, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4925, + "time": 0.5646401118099231, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 190, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4950, + "time": 0.5674353598881902, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4901, + "time": 0.5618448637316562, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4925, + "time": 0.5646401118099231, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4950, + "time": 0.5674353598881902, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5169, + "time": 0.5925925925925926, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5181, + "time": 0.5939902166317261, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 196, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5194, + "time": 0.5953878406708596, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5194, + "time": 0.5953878406708596, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5206, + "time": 0.596785464709993, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5218, + "time": 0.5981830887491265, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5218, + "time": 0.5981830887491265, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5230, + "time": 0.59958071278826, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5242, + "time": 0.6009783368273935, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5242, + "time": 0.6009783368273935, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5255, + "time": 0.6023759608665269, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5267, + "time": 0.6037735849056605, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5291, + "time": 0.6065688329839274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 201, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5340, + "time": 0.6121593291404612, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5316, + "time": 0.6093640810621943, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5340, + "time": 0.6121593291404612, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5462, + "time": 0.6261355695317959, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5559, + "time": 0.6373165618448638, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5559, + "time": 0.6373165618448638, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5657, + "time": 0.6484975541579315, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5754, + "time": 0.6596785464709993, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5767, + "time": 0.6610761705101329, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 217, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5767, + "time": 0.6610761705101329, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5779, + "time": 0.6624737945492662, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, "indexInLine": 2, "isSliding": false, - "noteOrder": 3071, - "time": 0.3522012578616352, + "noteOrder": 5791, + "time": 0.6638714185883997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 218, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5791, + "time": 0.6638714185883997, "position": { "x": 5, "y": 0 @@ -4861,11 +7897,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3071, - "time": 0.3522012578616352, + "noteOrder": 5803, + "time": 0.6652690426275333, "position": { "x": 7, "y": 0 @@ -4884,11 +7920,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3096, - "time": 0.3549965059399022, + "noteOrder": 5815, + "time": 0.6666666666666666, "position": { "x": 7, "y": 0 @@ -4907,11 +7943,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3120, - "time": 0.35779175401816915, + "noteOrder": 5815, + "time": 0.6666666666666666, "position": { "x": 5, "y": 0 @@ -4930,13 +7966,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3120, - "time": 0.35779175401816915, + "noteOrder": 5828, + "time": 0.6680642907058002, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4953,13 +7989,128 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 220, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5840, + "time": 0.6694619147449337, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5840, + "time": 0.6694619147449337, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 3132, - "time": 0.3591893780573026, + "noteOrder": 5852, + "time": 0.6708595387840671, "position": { - "x": 3, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5864, + "time": 0.6722571628232006, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5864, + "time": 0.6722571628232006, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 222, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5876, + "time": 0.673654786862334, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -4976,13 +8127,13 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 222, "indexInLine": 2, "isSliding": false, - "noteOrder": 3138, - "time": 0.35988819007686934, + "noteOrder": 5889, + "time": 0.6750524109014676, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4999,11 +8150,11 @@ "isPlayAudio": false }, { - "lineGroupId": 122, + "lineGroupId": 222, "indexInLine": 3, "isSliding": false, - "noteOrder": 3144, - "time": 0.36058700209643607, + "noteOrder": 5889, + "time": 0.6750524109014676, "position": { "x": 5, "y": 0 @@ -5022,13 +8173,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3144, - "time": 0.36058700209643607, + "noteOrder": 5901, + "time": 0.676450034940601, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5045,11 +8196,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3157, - "time": 0.36198462613556953, + "noteOrder": 5913, + "time": 0.6778476589797345, "position": { "x": 7, "y": 0 @@ -5068,11 +8219,103 @@ "isPlayAudio": false }, { - "lineGroupId": 123, + "lineGroupId": 223, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5913, + "time": 0.6778476589797345, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5925, + "time": 0.679245283018868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, "indexInLine": 2, "isSliding": false, - "noteOrder": 3163, - "time": 0.3626834381551363, + "noteOrder": 5937, + "time": 0.6806429070580013, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 224, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5937, + "time": 0.6806429070580013, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 225, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5950, + "time": 0.6820405310971349, "position": { "x": 7, "y": 0 @@ -5091,13 +8334,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 3, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3169, - "time": 0.36338225017470305, + "noteOrder": 5962, + "time": 0.6834381551362684, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5114,13 +8357,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3169, - "time": 0.36338225017470305, + "noteOrder": 5962, + "time": 0.6834381551362684, "position": { - "x": 2, + "x": 5, "y": 0 }, "position2D": { @@ -5132,18 +8375,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 226, "indexInLine": 1, "isSliding": false, - "noteOrder": 3181, - "time": 0.36477987421383645, + "noteOrder": 5974, + "time": 0.684835779175402, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5160,13 +8403,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 226, "indexInLine": 2, "isSliding": false, - "noteOrder": 3187, - "time": 0.3654786862334032, + "noteOrder": 5986, + "time": 0.6862334032145353, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5183,11 +8426,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 226, "indexInLine": 3, "isSliding": false, - "noteOrder": 3193, - "time": 0.3661774982529699, + "noteOrder": 5986, + "time": 0.6862334032145353, "position": { "x": 5, "y": 0 @@ -5206,13 +8449,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3193, - "time": 0.3661774982529699, + "noteOrder": 5998, + "time": 0.6876310272536688, "position": { - "x": 8, + "x": 7, "y": 0 }, "position2D": { @@ -5229,11 +8472,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3205, - "time": 0.36757512229210343, + "noteOrder": 6010, + "time": 0.6890286512928023, "position": { "x": 7, "y": 0 @@ -5252,13 +8495,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3211, - "time": 0.36827393431167016, + "noteOrder": 6010, + "time": 0.6890286512928023, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5275,13 +8518,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 3, + "lineGroupId": 228, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, - "time": 0.3689727463312369, + "noteOrder": 6023, + "time": 0.6904262753319357, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5293,18 +8536,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.3689727463312369, + "noteOrder": 6035, + "time": 0.6918238993710693, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5321,13 +8564,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3230, - "time": 0.37037037037037035, + "noteOrder": 6035, + "time": 0.6918238993710693, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5344,13 +8587,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3236, - "time": 0.3710691823899371, + "noteOrder": 6047, + "time": 0.6932215234102027, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5362,18 +8605,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 3, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, - "time": 0.37176799440950387, + "noteOrder": 6059, + "time": 0.6946191474493362, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5385,18 +8628,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3242, - "time": 0.37176799440950387, + "noteOrder": 6059, + "time": 0.6946191474493362, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -5413,11 +8656,11 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 230, "indexInLine": 1, "isSliding": false, - "noteOrder": 3254, - "time": 0.3731656184486373, + "noteOrder": 6071, + "time": 0.6960167714884696, "position": { "x": 7, "y": 0 @@ -5431,16 +8674,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 230, "indexInLine": 2, "isSliding": false, - "noteOrder": 3260, - "time": 0.37386443046820406, + "noteOrder": 6084, + "time": 0.6974143955276031, "position": { "x": 7, "y": 0 @@ -5454,16 +8697,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 230, "indexInLine": 3, "isSliding": false, - "noteOrder": 3266, - "time": 0.3745632424877708, + "noteOrder": 6084, + "time": 0.6974143955276031, "position": { "x": 5, "y": 0 @@ -5477,18 +8720,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, - "time": 0.3745632424877708, + "noteOrder": 6145, + "time": 0.7044025157232704, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -5505,11 +8748,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3279, - "time": 0.37596086652690425, + "noteOrder": 6157, + "time": 0.705800139762404, "position": { "x": 3, "y": 0 @@ -5528,13 +8771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 2, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3285, - "time": 0.37665967854647103, + "noteOrder": 6157, + "time": 0.705800139762404, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5551,13 +8794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 3, + "lineGroupId": 234, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3291, - "time": 0.37735849056603776, + "noteOrder": 6169, + "time": 0.7071977638015374, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5569,18 +8812,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3705, - "time": 0.4248777078965758, + "noteOrder": 6181, + "time": 0.7085953878406709, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5592,16 +8835,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3729, - "time": 0.4276729559748428, + "noteOrder": 6181, + "time": 0.7085953878406709, "position": { "x": 4, "y": 0 @@ -5615,18 +8858,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3803, - "time": 0.4360587002096436, + "noteOrder": 6193, + "time": 0.7099930118798043, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5638,18 +8881,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3827, - "time": 0.4388539482879106, + "noteOrder": 6206, + "time": 0.7113906359189378, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5661,18 +8904,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3998, - "time": 0.45842068483577914, + "noteOrder": 6206, + "time": 0.7113906359189378, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5689,11 +8932,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 236, "indexInLine": 1, "isSliding": false, - "noteOrder": 4022, - "time": 0.4612159329140461, + "noteOrder": 6218, + "time": 0.7127882599580714, "position": { "x": 3, "y": 0 @@ -5707,18 +8950,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4046, - "time": 0.46401118099231303, + "noteOrder": 6230, + "time": 0.7141858839972047, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5735,13 +8978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4071, - "time": 0.46680642907058, + "noteOrder": 6230, + "time": 0.7141858839972047, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5758,13 +9001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4193, - "time": 0.4807826694619148, + "noteOrder": 6242, + "time": 0.7155835080363383, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5776,18 +9019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4217, - "time": 0.4835779175401817, + "noteOrder": 6254, + "time": 0.7169811320754718, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5799,18 +9042,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 2, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4290, - "time": 0.4919636617749826, + "noteOrder": 6254, + "time": 0.7169811320754718, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5822,16 +9065,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4290, - "time": 0.4919636617749826, + "noteOrder": 6266, + "time": 0.7183787561146052, "position": { "x": 3, "y": 0 @@ -5845,16 +9088,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4314, - "time": 0.49475890985324944, + "noteOrder": 6279, + "time": 0.7197763801537387, "position": { "x": 3, "y": 0 @@ -5868,18 +9111,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 2, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4388, - "time": 0.5031446540880503, + "noteOrder": 6279, + "time": 0.7197763801537387, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5891,18 +9134,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4388, - "time": 0.5031446540880503, + "noteOrder": 6291, + "time": 0.7211740041928721, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5914,18 +9157,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4412, - "time": 0.5059399021663172, + "noteOrder": 6303, + "time": 0.7225716282320057, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5937,18 +9180,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 2, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4485, - "time": 0.5143256464011181, + "noteOrder": 6303, + "time": 0.7225716282320057, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5960,16 +9203,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4485, - "time": 0.5143256464011181, + "noteOrder": 6315, + "time": 0.7239692522711391, "position": { "x": 3, "y": 0 @@ -5983,16 +9226,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4583, - "time": 0.5255066387141859, + "noteOrder": 6327, + "time": 0.7253668763102726, "position": { "x": 3, "y": 0 @@ -6006,18 +9249,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4680, - "time": 0.5366876310272536, + "noteOrder": 6327, + "time": 0.7253668763102726, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6029,18 +9272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 241, "indexInLine": 1, "isSliding": false, - "noteOrder": 4704, - "time": 0.5394828791055206, + "noteOrder": 6340, + "time": 0.7267645003494061, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6057,13 +9300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 241, "indexInLine": 2, "isSliding": false, - "noteOrder": 4778, - "time": 0.5478686233403215, + "noteOrder": 6352, + "time": 0.7281621243885396, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6080,13 +9323,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4778, - "time": 0.5478686233403215, + "noteOrder": 6352, + "time": 0.7281621243885396, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6098,16 +9341,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 242, "indexInLine": 1, "isSliding": false, - "noteOrder": 4802, - "time": 0.5506638714185884, + "noteOrder": 6364, + "time": 0.729559748427673, "position": { "x": 3, "y": 0 @@ -6126,13 +9369,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 242, "indexInLine": 2, "isSliding": false, - "noteOrder": 4875, - "time": 0.5590496156533893, + "noteOrder": 6376, + "time": 0.7309573724668065, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6149,13 +9392,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 242, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.5618448637316562, + "noteOrder": 6376, + "time": 0.7309573724668065, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6167,18 +9410,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 243, "indexInLine": 1, "isSliding": false, - "noteOrder": 4924, - "time": 0.5646401118099231, + "noteOrder": 6388, + "time": 0.7323549965059399, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6195,11 +9438,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 243, "indexInLine": 2, "isSliding": false, - "noteOrder": 4948, - "time": 0.5674353598881902, + "noteOrder": 6401, + "time": 0.7337526205450734, "position": { "x": 3, "y": 0 @@ -6218,13 +9461,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4899, - "time": 0.5618448637316562, + "noteOrder": 6401, + "time": 0.7337526205450734, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6236,18 +9479,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 244, "indexInLine": 1, "isSliding": false, - "noteOrder": 4924, - "time": 0.5646401118099231, + "noteOrder": 6413, + "time": 0.735150244584207, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6264,13 +9507,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 244, "indexInLine": 2, "isSliding": false, - "noteOrder": 4948, - "time": 0.5674353598881902, + "noteOrder": 6425, + "time": 0.7365478686233404, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6287,13 +9530,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5168, - "time": 0.5925925925925926, + "noteOrder": 6425, + "time": 0.7365478686233404, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6310,13 +9553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 196, + "lineGroupId": 245, "indexInLine": 1, "isSliding": false, - "noteOrder": 5180, - "time": 0.5939902166317261, + "noteOrder": 6437, + "time": 0.7379454926624738, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6328,18 +9571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 196, + "lineGroupId": 245, "indexInLine": 2, "isSliding": false, - "noteOrder": 5192, - "time": 0.5953878406708596, + "noteOrder": 6449, + "time": 0.7393431167016074, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6351,18 +9594,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5192, - "time": 0.5953878406708596, + "noteOrder": 6449, + "time": 0.7393431167016074, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6379,13 +9622,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 248, "indexInLine": 1, "isSliding": false, - "noteOrder": 5204, - "time": 0.596785464709993, + "noteOrder": 6486, + "time": 0.7435359888190077, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6397,18 +9640,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, + "lineGroupId": 248, "indexInLine": 2, "isSliding": false, - "noteOrder": 5216, - "time": 0.5981830887491265, + "noteOrder": 6498, + "time": 0.7449336128581412, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6420,18 +9663,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5216, - "time": 0.5981830887491265, + "noteOrder": 6498, + "time": 0.7449336128581412, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6448,13 +9691,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 252, "indexInLine": 1, "isSliding": false, - "noteOrder": 5229, - "time": 0.59958071278826, + "noteOrder": 6632, + "time": 0.7603074772886094, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6471,13 +9714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, + "lineGroupId": 252, "indexInLine": 2, "isSliding": false, - "noteOrder": 5241, - "time": 0.6009783368273934, + "noteOrder": 6657, + "time": 0.7631027253668764, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6494,13 +9737,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 252, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5241, - "time": 0.6009783368273934, + "noteOrder": 6681, + "time": 0.7658979734451433, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -6512,18 +9755,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 252, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5253, - "time": 0.6023759608665269, + "noteOrder": 6705, + "time": 0.7686932215234102, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -6535,18 +9778,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 256, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5265, - "time": 0.6037735849056605, + "noteOrder": 6730, + "time": 0.7714884696016772, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6563,13 +9806,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5289, - "time": 0.6065688329839274, + "noteOrder": 6754, + "time": 0.7742837176799441, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6581,18 +9824,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 1, + "lineGroupId": 256, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5338, - "time": 0.6121593291404612, + "noteOrder": 6779, + "time": 0.7770789657582111, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6604,16 +9847,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 256, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5314, - "time": 0.6093640810621943, + "noteOrder": 6803, + "time": 0.779874213836478, "position": { "x": 4, "y": 0 @@ -6632,13 +9875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, + "lineGroupId": 262, "indexInLine": 1, "isSliding": false, - "noteOrder": 5338, - "time": 0.6121593291404612, + "noteOrder": 6876, + "time": 0.7882599580712788, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6655,11 +9898,11 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5460, - "time": 0.6261355695317959, + "noteOrder": 6888, + "time": 0.7896575821104124, "position": { "x": 7, "y": 0 @@ -6673,39 +9916,16 @@ "y": 1, "z": 1 }, - "noteType": 13, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 206, - "indexInLine": 1, - "isSliding": false, - "noteOrder": 5558, - "time": 0.6373165618448637, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5558, - "time": 0.6373165618448637, + "noteOrder": 6913, + "time": 0.7924528301886793, "position": { "x": 3, "y": 0 @@ -6724,13 +9944,13 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5655, - "time": 0.6484975541579315, + "noteOrder": 6925, + "time": 0.7938504542278128, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6747,13 +9967,13 @@ "isPlayAudio": false }, { - "lineGroupId": 217, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5753, - "time": 0.6596785464709993, + "noteOrder": 6876, + "time": 0.7882599580712788, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6770,13 +9990,13 @@ "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5777, - "time": 0.6624737945492662, + "noteOrder": 6888, + "time": 0.7896575821104124, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6788,16 +10008,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5801, - "time": 0.6652690426275332, + "noteOrder": 6913, + "time": 0.7924528301886793, "position": { "x": 7, "y": 0 @@ -6816,11 +10036,11 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5826, - "time": 0.6680642907058001, + "noteOrder": 6925, + "time": 0.7938504542278128, "position": { "x": 7, "y": 0 @@ -6834,18 +10054,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 266, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5850, - "time": 0.6708595387840671, + "noteOrder": 7022, + "time": 0.8050314465408805, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6862,13 +10082,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 266, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5874, - "time": 0.673654786862334, + "noteOrder": 7035, + "time": 0.8064290705800141, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6880,18 +10100,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 266, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5899, - "time": 0.676450034940601, + "noteOrder": 7035, + "time": 0.8064290705800141, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6908,13 +10128,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5923, - "time": 0.679245283018868, + "noteOrder": 7047, + "time": 0.8078266946191475, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6931,13 +10151,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5948, - "time": 0.6820405310971349, + "noteOrder": 7059, + "time": 0.8092243186582809, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6949,18 +10169,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 267, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5972, - "time": 0.6848357791754018, + "noteOrder": 7059, + "time": 0.8092243186582809, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6977,11 +10197,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5996, - "time": 0.6876310272536689, + "noteOrder": 7120, + "time": 0.8162124388539483, "position": { "x": 7, "y": 0 @@ -6995,16 +10215,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6021, - "time": 0.6904262753319357, + "noteOrder": 7132, + "time": 0.8176100628930818, "position": { "x": 7, "y": 0 @@ -7023,13 +10243,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 270, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6045, - "time": 0.6932215234102026, + "noteOrder": 7132, + "time": 0.8176100628930818, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7041,16 +10261,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6069, - "time": 0.6960167714884696, + "noteOrder": 7144, + "time": 0.8190076869322153, "position": { "x": 7, "y": 0 @@ -7064,18 +10284,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6143, - "time": 0.7044025157232704, + "noteOrder": 7156, + "time": 0.8204053109713488, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7087,18 +10307,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 271, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6167, - "time": 0.7071977638015374, + "noteOrder": 7156, + "time": 0.8204053109713488, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7115,11 +10335,11 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6191, - "time": 0.7099930118798043, + "noteOrder": 7217, + "time": 0.8273934311670161, "position": { "x": 3, "y": 0 @@ -7138,11 +10358,11 @@ "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6216, - "time": 0.7127882599580713, + "noteOrder": 7230, + "time": 0.8287910552061496, "position": { "x": 3, "y": 0 @@ -7156,18 +10376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 274, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6240, - "time": 0.7155835080363383, + "noteOrder": 7230, + "time": 0.8287910552061496, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7184,13 +10404,13 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6265, - "time": 0.7183787561146052, + "noteOrder": 7242, + "time": 0.8301886792452831, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7207,13 +10427,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6289, - "time": 0.7211740041928721, + "noteOrder": 7254, + "time": 0.8315863032844165, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7225,18 +10445,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 275, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6313, - "time": 0.7239692522711391, + "noteOrder": 7254, + "time": 0.8315863032844165, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7253,11 +10473,11 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6338, - "time": 0.7267645003494061, + "noteOrder": 7266, + "time": 0.83298392732355, "position": { "x": 3, "y": 0 @@ -7276,11 +10496,11 @@ "isPlayAudio": false }, { - "lineGroupId": 242, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6362, - "time": 0.7295597484276729, + "noteOrder": 7278, + "time": 0.8343815513626835, "position": { "x": 3, "y": 0 @@ -7294,18 +10514,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 276, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6386, - "time": 0.7323549965059398, + "noteOrder": 7278, + "time": 0.8343815513626835, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7322,13 +10542,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6411, - "time": 0.7351502445842069, + "noteOrder": 7291, + "time": 0.8357791754018169, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7345,13 +10565,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6435, - "time": 0.7379454926624738, + "noteOrder": 7303, + "time": 0.8371767994409505, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7363,18 +10583,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 277, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6484, - "time": 0.7435359888190077, + "noteOrder": 7303, + "time": 0.8371767994409505, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7391,13 +10611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 0, + "lineGroupId": 278, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6630, - "time": 0.7603074772886094, + "noteOrder": 7315, + "time": 0.8385744234800839, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7409,18 +10629,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 1, + "lineGroupId": 278, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6655, - "time": 0.7631027253668764, + "noteOrder": 7339, + "time": 0.8413696715583509, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -7432,18 +10652,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 2, + "lineGroupId": 278, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6679, - "time": 0.7658979734451433, + "noteOrder": 7413, + "time": 0.8497554157931516, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7455,18 +10675,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 252, - "indexInLine": 3, + "lineGroupId": 282, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6703, - "time": 0.7686932215234101, + "noteOrder": 7413, + "time": 0.8497554157931516, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7483,13 +10703,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 0, + "lineGroupId": 282, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6728, - "time": 0.7714884696016772, + "noteOrder": 7437, + "time": 0.8525506638714186, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7501,16 +10721,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 1, + "lineGroupId": 282, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6752, - "time": 0.7742837176799441, + "noteOrder": 7510, + "time": 0.8609364081062195, "position": { "x": 4, "y": 0 @@ -7524,18 +10744,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 2, + "lineGroupId": 286, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6776, - "time": 0.777078965758211, + "noteOrder": 7510, + "time": 0.8609364081062195, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7552,13 +10772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 256, - "indexInLine": 3, + "lineGroupId": 286, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6801, - "time": 0.7798742138364779, + "noteOrder": 7522, + "time": 0.8623340321453529, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7575,13 +10795,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 286, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6874, - "time": 0.7882599580712788, + "noteOrder": 7534, + "time": 0.8637316561844864, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7598,13 +10818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, + "lineGroupId": 287, "indexInLine": 1, "isSliding": false, - "noteOrder": 6886, - "time": 0.7896575821104123, + "noteOrder": 7534, + "time": 0.8637316561844864, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7616,18 +10836,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, + "lineGroupId": 287, "indexInLine": 2, "isSliding": false, - "noteOrder": 6910, - "time": 0.7924528301886793, + "noteOrder": 7547, + "time": 0.8651292802236199, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7639,18 +10859,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 262, + "lineGroupId": 287, "indexInLine": 3, "isSliding": false, - "noteOrder": 6923, - "time": 0.7938504542278128, + "noteOrder": 7559, + "time": 0.8665269042627534, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7662,18 +10882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 0, + "lineGroupId": 288, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6874, - "time": 0.7882599580712788, + "noteOrder": 7559, + "time": 0.8665269042627534, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -7685,18 +10905,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 1, + "lineGroupId": 288, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6886, - "time": 0.7896575821104123, + "noteOrder": 7571, + "time": 0.8679245283018869, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7708,18 +10928,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 2, + "lineGroupId": 288, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6910, - "time": 0.7924528301886793, + "noteOrder": 7583, + "time": 0.8693221523410203, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7731,18 +10951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 263, - "indexInLine": 3, + "lineGroupId": 289, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6923, - "time": 0.7938504542278128, + "noteOrder": 7583, + "time": 0.8693221523410203, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -7759,13 +10979,13 @@ "isPlayAudio": false }, { - "lineGroupId": 266, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7020, - "time": 0.8050314465408805, + "noteOrder": 7595, + "time": 0.8707197763801537, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7782,13 +11002,13 @@ "isPlayAudio": false }, { - "lineGroupId": 267, - "indexInLine": 0, + "lineGroupId": 289, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7045, - "time": 0.8078266946191474, + "noteOrder": 7608, + "time": 0.8721174004192873, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -7800,18 +11020,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 270, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7118, - "time": 0.8162124388539482, + "noteOrder": 7656, + "time": 0.8777078965758212, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7823,18 +11043,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 271, - "indexInLine": 0, + "lineGroupId": 291, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7142, - "time": 0.8190076869322153, + "noteOrder": 7705, + "time": 0.8832983927323551, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -7851,11 +11071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 274, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7215, - "time": 0.8273934311670161, + "noteOrder": 7754, + "time": 0.888888888888889, "position": { "x": 3, "y": 0 @@ -7874,13 +11094,13 @@ "isPlayAudio": false }, { - "lineGroupId": 275, - "indexInLine": 0, + "lineGroupId": 293, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7240, - "time": 0.8301886792452831, + "noteOrder": 7803, + "time": 0.8944793850454228, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7892,18 +11112,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 276, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7264, - "time": 0.83298392732355, + "noteOrder": 7851, + "time": 0.9000698812019567, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7915,16 +11135,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 277, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7288, - "time": 0.8357791754018169, + "noteOrder": 7864, + "time": 0.9014675052410902, "position": { "x": 7, "y": 0 @@ -7943,13 +11163,13 @@ "isPlayAudio": false }, { - "lineGroupId": 278, - "indexInLine": 0, + "lineGroupId": 295, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7313, - "time": 0.8385744234800839, + "noteOrder": 7864, + "time": 0.9014675052410902, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7961,18 +11181,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 278, + "lineGroupId": 296, "indexInLine": 1, "isSliding": false, - "noteOrder": 7337, - "time": 0.8413696715583509, + "noteOrder": 7876, + "time": 0.9028651292802236, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7989,13 +11209,13 @@ "isPlayAudio": false }, { - "lineGroupId": 278, + "lineGroupId": 296, "indexInLine": 2, "isSliding": false, - "noteOrder": 7410, - "time": 0.8497554157931516, + "noteOrder": 7888, + "time": 0.9042627533193572, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -8012,13 +11232,13 @@ "isPlayAudio": false }, { - "lineGroupId": 282, - "indexInLine": 0, + "lineGroupId": 296, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7410, - "time": 0.8497554157931516, + "noteOrder": 7888, + "time": 0.9042627533193572, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -8030,16 +11250,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 282, + "lineGroupId": 297, "indexInLine": 1, "isSliding": false, - "noteOrder": 7435, - "time": 0.8525506638714185, + "noteOrder": 7900, + "time": 0.9056603773584906, "position": { "x": 7, "y": 0 @@ -8058,13 +11278,13 @@ "isPlayAudio": false }, { - "lineGroupId": 282, + "lineGroupId": 297, "indexInLine": 2, "isSliding": false, - "noteOrder": 7508, - "time": 0.8609364081062194, + "noteOrder": 7912, + "time": 0.9070580013976242, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -8081,13 +11301,13 @@ "isPlayAudio": false }, { - "lineGroupId": 286, - "indexInLine": 0, + "lineGroupId": 297, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7508, - "time": 0.8609364081062194, + "noteOrder": 7912, + "time": 0.9070580013976242, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -8099,18 +11319,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 286, + "lineGroupId": 298, "indexInLine": 1, "isSliding": false, - "noteOrder": 7520, - "time": 0.862334032145353, + "noteOrder": 7925, + "time": 0.9084556254367576, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -8127,13 +11347,13 @@ "isPlayAudio": false }, { - "lineGroupId": 286, + "lineGroupId": 298, "indexInLine": 2, "isSliding": false, - "noteOrder": 7532, - "time": 0.8637316561844863, + "noteOrder": 7937, + "time": 0.909853249475891, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -8150,13 +11370,13 @@ "isPlayAudio": false }, { - "lineGroupId": 287, - "indexInLine": 0, + "lineGroupId": 298, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7532, - "time": 0.8637316561844863, + "noteOrder": 7937, + "time": 0.909853249475891, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -8168,18 +11388,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 287, + "lineGroupId": 299, "indexInLine": 1, "isSliding": false, - "noteOrder": 7544, - "time": 0.8651292802236199, + "noteOrder": 7949, + "time": 0.9112508735150247, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -8196,13 +11416,13 @@ "isPlayAudio": false }, { - "lineGroupId": 287, + "lineGroupId": 299, "indexInLine": 2, "isSliding": false, - "noteOrder": 7556, - "time": 0.8665269042627534, + "noteOrder": 7961, + "time": 0.912648497554158, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -8219,13 +11439,13 @@ "isPlayAudio": false }, { - "lineGroupId": 288, - "indexInLine": 0, + "lineGroupId": 299, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7556, - "time": 0.8665269042627534, + "noteOrder": 7961, + "time": 0.912648497554158, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -8237,18 +11457,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 288, + "lineGroupId": 300, "indexInLine": 1, "isSliding": false, - "noteOrder": 7569, - "time": 0.8679245283018867, + "noteOrder": 7973, + "time": 0.9140461215932915, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -8265,13 +11485,13 @@ "isPlayAudio": false }, { - "lineGroupId": 288, + "lineGroupId": 300, "indexInLine": 2, "isSliding": false, - "noteOrder": 7581, - "time": 0.8693221523410203, + "noteOrder": 7986, + "time": 0.915443745632425, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -8288,13 +11508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 289, - "indexInLine": 0, + "lineGroupId": 300, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7581, - "time": 0.8693221523410203, + "noteOrder": 7986, + "time": 0.915443745632425, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -8306,18 +11526,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 289, + "lineGroupId": 301, "indexInLine": 1, "isSliding": false, - "noteOrder": 7593, - "time": 0.8707197763801536, + "noteOrder": 7998, + "time": 0.9168413696715584, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -8334,13 +11554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 289, + "lineGroupId": 301, "indexInLine": 2, "isSliding": false, - "noteOrder": 7605, - "time": 0.8721174004192872, + "noteOrder": 8010, + "time": 0.9182389937106918, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -8357,13 +11577,13 @@ "isPlayAudio": false }, { - "lineGroupId": 291, - "indexInLine": 0, + "lineGroupId": 301, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7654, - "time": 0.8777078965758212, + "noteOrder": 8010, + "time": 0.9182389937106918, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -8380,13 +11600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 291, + "lineGroupId": 302, "indexInLine": 1, "isSliding": false, - "noteOrder": 7703, - "time": 0.883298392732355, + "noteOrder": 8022, + "time": 0.9196366177498254, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -8398,16 +11618,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 0, + "lineGroupId": 302, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7751, - "time": 0.888888888888889, + "noteOrder": 8034, + "time": 0.9210342417889589, "position": { "x": 3, "y": 0 @@ -8426,13 +11646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 293, - "indexInLine": 1, + "lineGroupId": 302, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7800, - "time": 0.8944793850454229, + "noteOrder": 8034, + "time": 0.9210342417889589, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -8449,11 +11669,11 @@ "isPlayAudio": false }, { - "lineGroupId": 295, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7849, - "time": 0.9000698812019567, + "noteOrder": 8046, + "time": 0.9224318658280922, "position": { "x": 7, "y": 0 @@ -8472,11 +11692,11 @@ "isPlayAudio": false }, { - "lineGroupId": 296, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7873, - "time": 0.9028651292802237, + "noteOrder": 8059, + "time": 0.9238294898672258, "position": { "x": 7, "y": 0 @@ -8490,18 +11710,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 297, - "indexInLine": 0, + "lineGroupId": 303, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7898, - "time": 0.9056603773584907, + "noteOrder": 8059, + "time": 0.9238294898672258, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8518,13 +11738,13 @@ "isPlayAudio": false }, { - "lineGroupId": 298, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7922, - "time": 0.9084556254367574, + "noteOrder": 8071, + "time": 0.9252271139063593, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -8541,11 +11761,11 @@ "isPlayAudio": false }, { - "lineGroupId": 299, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7946, - "time": 0.9112508735150244, + "noteOrder": 8083, + "time": 0.9266247379454926, "position": { "x": 3, "y": 0 @@ -8559,18 +11779,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 300, - "indexInLine": 0, + "lineGroupId": 306, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7971, - "time": 0.9140461215932913, + "noteOrder": 8083, + "time": 0.9266247379454926, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -8587,13 +11807,13 @@ "isPlayAudio": false }, { - "lineGroupId": 301, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7995, - "time": 0.9168413696715583, + "noteOrder": 8095, + "time": 0.9280223619846263, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -8610,13 +11830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 302, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8020, - "time": 0.9196366177498252, + "noteOrder": 8107, + "time": 0.9294199860237596, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -8628,18 +11848,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 303, - "indexInLine": 0, + "lineGroupId": 308, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8044, - "time": 0.9224318658280922, + "noteOrder": 8107, + "time": 0.9294199860237596, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -8656,11 +11876,11 @@ "isPlayAudio": false }, { - "lineGroupId": 306, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8068, - "time": 0.9252271139063591, + "noteOrder": 8120, + "time": 0.9308176100628931, "position": { "x": 3, "y": 0 @@ -8679,13 +11899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 308, - "indexInLine": 0, + "lineGroupId": 310, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8093, - "time": 0.9280223619846261, + "noteOrder": 8132, + "time": 0.9322152341020267, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -8697,18 +11917,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 310, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 8117, - "time": 0.9308176100628931, + "noteOrder": 8132, + "time": 0.9322152341020267, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -8726,10 +11946,10 @@ }, { "lineGroupId": 315, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8190, - "time": 0.939203354297694, + "noteOrder": 8193, + "time": 0.9392033542976941, "position": { "x": 7, "y": 0 @@ -8749,10 +11969,10 @@ }, { "lineGroupId": 315, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8336, - "time": 0.9559748427672956, + "noteOrder": 8339, + "time": 0.9559748427672957, "position": { "x": 7, "y": 0 @@ -8772,10 +11992,10 @@ }, { "lineGroupId": 316, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8190, - "time": 0.939203354297694, + "noteOrder": 8193, + "time": 0.9392033542976941, "position": { "x": 3, "y": 0 @@ -8795,10 +12015,10 @@ }, { "lineGroupId": 316, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8336, - "time": 0.9559748427672956, + "noteOrder": 8339, + "time": 0.9559748427672957, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1b.json" "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1b.json" index 92041bc7..39c650d8 100644 --- "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1b.json" +++ "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/265_difficulty_1b.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 146, - "time": 0.016771488469601675, + "time": 0.016771488469601678, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 244, - "time": 0.027952480782669466, + "time": 0.027952480782669462, "position": { "x": 6, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 1121, + "noteOrder": 1122, "time": 0.12858141160027953, "position": { "x": 6, @@ -154,7 +154,7 @@ }, { "noteOrder": 1268, - "time": 0.1453529000698812, + "time": 0.14535290006988122, "position": { "x": 6, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1316, + "noteOrder": 1317, "time": 0.15094339622641512, "position": { "x": 4, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1389, - "time": 0.15932914046121593, + "noteOrder": 1390, + "time": 0.15932914046121596, "position": { "x": 4, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1561, "time": 0.17889587700908458, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1585, "time": 0.18169112508735152, "position": { "x": 6, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.20125786163522014, "position": { "x": 2, @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 1950, - "time": 0.22361984626135573, + "noteOrder": 1951, + "time": 0.2236198462613557, "position": { "x": 2, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 2048, - "time": 0.2348008385744235, + "time": 0.23480083857442352, "position": { "x": 8, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2145, + "noteOrder": 2146, "time": 0.2459818308874913, "position": { "x": 3, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2169, - "time": 0.2487770789657582, + "noteOrder": 2170, + "time": 0.24877707896575824, "position": { "x": 4, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2218, - "time": 0.2543675751222921, + "noteOrder": 2219, + "time": 0.25436757512229213, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2267, + "noteOrder": 2268, "time": 0.25995807127882603, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2291, + "noteOrder": 2292, "time": 0.26275331935709295, "position": { "x": 7, @@ -534,7 +534,7 @@ }, { "noteOrder": 2316, - "time": 0.26554856743535993, + "time": 0.2655485674353599, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2340, - "time": 0.2683438155136268, + "noteOrder": 2341, + "time": 0.26834381551362685, "position": { "x": 3, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 2364, + "noteOrder": 2365, "time": 0.27113906359189377, "position": { "x": 5, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.29350104821802936, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 2609, "time": 0.29909154437456326, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.30468204053109715, "position": { "x": 6, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2706, - "time": 0.310272536687631, + "noteOrder": 2707, + "time": 0.31027253668763105, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2949, + "noteOrder": 2950, "time": 0.3382250174703005, "position": { "x": 2, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.34381551362683443, + "noteOrder": 2999, + "time": 0.3438155136268344, "position": { "x": 8, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3047, - "time": 0.3494060097833683, + "noteOrder": 3048, + "time": 0.34940600978336833, "position": { "x": 2, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3097, "time": 0.3549965059399022, "position": { "x": 8, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3365, "time": 0.3857442348008386, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3413, - "time": 0.3913347309573725, + "noteOrder": 3414, + "time": 0.39133473095737253, "position": { "x": 4, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3462, "time": 0.3969252271139064, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.4025157232704403, "position": { "x": 3, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3534, - "time": 0.4053109713487072, + "noteOrder": 3536, + "time": 0.40531097134870725, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3559, - "time": 0.4081062194269741, + "noteOrder": 3560, + "time": 0.40810621942697417, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3608, + "noteOrder": 3609, "time": 0.41369671558350807, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3632, + "noteOrder": 3633, "time": 0.416491963661775, "position": { "x": 6, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3656, + "noteOrder": 3657, "time": 0.41928721174004197, "position": { "x": 7, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3754, - "time": 0.4304682040531097, + "noteOrder": 3755, + "time": 0.43046820405310976, "position": { "x": 6, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3778, + "noteOrder": 3779, "time": 0.4332634521313767, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3900, - "time": 0.44723969252271145, + "noteOrder": 3901, + "time": 0.4472396925227114, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3924, + "noteOrder": 3926, "time": 0.4500349406009784, "position": { "x": 5, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3949, - "time": 0.45283018867924535, + "noteOrder": 3950, + "time": 0.4528301886792453, "position": { "x": 6, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3973, - "time": 0.4556254367575122, + "noteOrder": 3974, + "time": 0.4556254367575123, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3998, - "time": 0.45842068483577914, + "noteOrder": 3999, + "time": 0.4584206848357792, "position": { "x": 4, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4022, + "noteOrder": 4023, "time": 0.4612159329140461, "position": { "x": 5, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4046, - "time": 0.46401118099231303, + "noteOrder": 4048, + "time": 0.46401118099231314, "position": { "x": 4, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4071, + "noteOrder": 4072, "time": 0.46680642907058, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4241, + "noteOrder": 4243, "time": 0.4863731656184487, "position": { "x": 8, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4266, - "time": 0.48916841369671565, + "noteOrder": 4267, + "time": 0.4891684136967156, "position": { "x": 8, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4339, - "time": 0.4975541579315164, + "noteOrder": 4340, + "time": 0.49755415793151647, "position": { "x": 2, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 4363, + "noteOrder": 4365, "time": 0.5003494060097834, "position": { "x": 2, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4436, - "time": 0.5087351502445842, + "noteOrder": 4438, + "time": 0.5087351502445843, "position": { "x": 8, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 4461, + "noteOrder": 4462, "time": 0.5115303983228512, "position": { "x": 8, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4485, + "noteOrder": 4487, "time": 0.5143256464011181, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4534, + "noteOrder": 4535, "time": 0.5199161425576521, "position": { "x": 4, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4631, - "time": 0.5310971348707199, + "noteOrder": 4633, + "time": 0.5310971348707197, "position": { "x": 2, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4656, - "time": 0.5338923829489867, + "noteOrder": 4657, + "time": 0.5338923829489868, "position": { "x": 2, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 4729, + "noteOrder": 4730, "time": 0.5422781271837875, "position": { "x": 8, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4753, + "noteOrder": 4755, "time": 0.5450733752620545, "position": { "x": 8, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4778, + "noteOrder": 4779, "time": 0.5478686233403215, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.5534591194968553, + "noteOrder": 4828, + "time": 0.5534591194968554, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4826, - "time": 0.5534591194968553, + "noteOrder": 4828, + "time": 0.5534591194968554, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.5590496156533893, + "noteOrder": 4877, + "time": 0.5590496156533892, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4875, - "time": 0.5590496156533893, + "noteOrder": 4877, + "time": 0.5590496156533892, "position": { "x": 4, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.5618448637316562, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4899, + "noteOrder": 4901, "time": 0.5618448637316562, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4924, + "noteOrder": 4925, "time": 0.5646401118099231, "position": { "x": 6, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4924, + "noteOrder": 4925, "time": 0.5646401118099231, "position": { "x": 4, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.5702306079664571, "position": { "x": 6, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 5070, - "time": 0.5814116002795248, + "noteOrder": 5072, + "time": 0.5814116002795249, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5169, "time": 0.5925925925925926, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5194, "time": 0.5953878406708596, "position": { "x": 5, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5218, "time": 0.5981830887491265, "position": { "x": 6, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5241, - "time": 0.6009783368273934, + "noteOrder": 5242, + "time": 0.6009783368273935, "position": { "x": 5, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5267, "time": 0.6037735849056605, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5291, "time": 0.6065688329839274, "position": { "x": 6, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5314, + "noteOrder": 5316, "time": 0.6093640810621943, "position": { "x": 4, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5411, - "time": 0.620545073375262, + "noteOrder": 5413, + "time": 0.6205450733752621, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5509, + "noteOrder": 5511, "time": 0.6317260656883299, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5533, + "noteOrder": 5535, "time": 0.6345213137665968, "position": { "x": 2, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5606, + "noteOrder": 5608, "time": 0.6429070580013977, "position": { "x": 4, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5631, + "noteOrder": 5633, "time": 0.6457023060796646, "position": { "x": 8, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.6484975541579315, "position": { "x": 4, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5753, + "noteOrder": 5754, "time": 0.6596785464709993, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5777, + "noteOrder": 5779, "time": 0.6624737945492662, "position": { "x": 6, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5801, - "time": 0.6652690426275332, + "noteOrder": 5803, + "time": 0.6652690426275333, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5826, - "time": 0.6680642907058001, + "noteOrder": 5828, + "time": 0.6680642907058002, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5850, + "noteOrder": 5852, "time": 0.6708595387840671, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5874, + "noteOrder": 5876, "time": 0.673654786862334, "position": { "x": 6, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5899, + "noteOrder": 5901, "time": 0.676450034940601, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5923, + "noteOrder": 5925, "time": 0.679245283018868, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6143, + "noteOrder": 6145, "time": 0.7044025157232704, "position": { "x": 4, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6167, + "noteOrder": 6169, "time": 0.7071977638015374, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6191, + "noteOrder": 6193, "time": 0.7099930118798043, "position": { "x": 6, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6216, - "time": 0.7127882599580713, + "noteOrder": 6218, + "time": 0.7127882599580714, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6240, + "noteOrder": 6242, "time": 0.7155835080363383, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6265, + "noteOrder": 6266, "time": 0.7183787561146052, "position": { "x": 4, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6289, + "noteOrder": 6291, "time": 0.7211740041928721, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6313, + "noteOrder": 6315, "time": 0.7239692522711391, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6484, + "noteOrder": 6486, "time": 0.7435359888190077, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6508, + "noteOrder": 6510, "time": 0.7463312368972747, "position": { "x": 6, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6679, + "noteOrder": 6681, "time": 0.7658979734451433, "position": { "x": 3, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6776, - "time": 0.777078965758211, + "noteOrder": 6779, + "time": 0.7770789657582111, "position": { "x": 7, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 7435, - "time": 0.8525506638714185, + "noteOrder": 7437, + "time": 0.8525506638714186, "position": { "x": 3, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 7483, + "noteOrder": 7486, "time": 0.8581411600279525, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 7532, - "time": 0.8637316561844863, + "noteOrder": 7534, + "time": 0.8637316561844864, "position": { "x": 8, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 7581, + "noteOrder": 7583, "time": 0.8693221523410203, "position": { "x": 2, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 7995, - "time": 0.9168413696715583, + "noteOrder": 7998, + "time": 0.9168413696715584, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 8020, - "time": 0.9196366177498252, + "noteOrder": 8022, + "time": 0.9196366177498254, "position": { "x": 6, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 8068, - "time": 0.9252271139063591, + "noteOrder": 8071, + "time": 0.9252271139063593, "position": { "x": 6, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 8117, + "noteOrder": 8120, "time": 0.9308176100628931, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 8141, + "noteOrder": 8144, "time": 0.93361285814116, "position": { "x": 6, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 8166, - "time": 0.9364081062194269, + "noteOrder": 8168, + "time": 0.936408106219427, "position": { "x": 4, "y": 0 @@ -2456,10 +2456,10 @@ "lineNodes": [ { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, - "time": 0.03354297693920335, + "time": 0.033542976939203356, "position": { "x": 3, "y": 0 @@ -2479,10 +2479,10 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 317, - "time": 0.0363382250174703, + "time": 0.036338225017470305, "position": { "x": 4, "y": 0 @@ -2502,7 +2502,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 341, "time": 0.039133473095737246, @@ -2525,7 +2525,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 366, "time": 0.041928721174004195, @@ -2548,10 +2548,56 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.05590496156533893, + "time": 0.055904961565338925, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 512, + "time": 0.05870020964360588, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 512, + "time": 0.05870020964360588, "position": { "x": 6, "y": 0 @@ -2571,7 +2617,7 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 536, "time": 0.06149545772187282, @@ -2592,12 +2638,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 561, + "time": 0.06429070580013976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 561, + "time": 0.06429070580013976, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 585, - "time": 0.0670859538784067, + "time": 0.06708595387840671, "position": { "x": 6, "y": 0 @@ -2617,10 +2709,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 634, - "time": 0.0726764500349406, + "time": 0.07267645003494061, "position": { "x": 6, "y": 0 @@ -2640,7 +2732,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 683, "time": 0.07826694619147449, @@ -2661,9 +2753,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 707, + "time": 0.08106219426974144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 707, + "time": 0.08106219426974144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 731, "time": 0.08385744234800839, @@ -2684,9 +2822,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 756, + "time": 0.08665269042627534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 756, + "time": 0.08665269042627534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 780, "time": 0.08944793850454229, @@ -2709,7 +2893,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 829, "time": 0.09503843466107617, @@ -2732,7 +2916,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 878, "time": 0.10062893081761007, @@ -2755,9 +2939,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 926, + "noteOrder": 927, "time": 0.10621942697414395, "position": { "x": 7, @@ -2778,9 +2962,9 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 926, + "noteOrder": 927, "time": 0.10621942697414395, "position": { "x": 4, @@ -2801,10 +2985,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 975, - "time": 0.11180992313067786, + "time": 0.11180992313067785, "position": { "x": 4, "y": 0 @@ -2824,10 +3008,10 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 975, - "time": 0.11180992313067786, + "time": 0.11180992313067785, "position": { "x": 6, "y": 0 @@ -2847,10 +3031,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1024, - "time": 0.11740041928721175, + "time": 0.11740041928721176, "position": { "x": 6, "y": 0 @@ -2870,10 +3054,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1024, - "time": 0.11740041928721175, + "time": 0.11740041928721176, "position": { "x": 4, "y": 0 @@ -2893,7 +3077,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1097, "time": 0.12578616352201258, @@ -2916,7 +3100,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1073, "time": 0.12299091544374564, @@ -2939,7 +3123,7 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1097, "time": 0.12578616352201258, @@ -2962,10 +3146,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1170, - "time": 0.1341719077568134, + "time": 0.13417190775681342, "position": { "x": 4, "y": 0 @@ -2985,10 +3169,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1219, - "time": 0.13976240391334732, + "time": 0.1397624039133473, "position": { "x": 4, "y": 0 @@ -3008,10 +3192,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1170, - "time": 0.1341719077568134, + "time": 0.13417190775681342, "position": { "x": 6, "y": 0 @@ -3031,10 +3215,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1219, - "time": 0.13976240391334732, + "time": 0.1397624039133473, "position": { "x": 6, "y": 0 @@ -3054,7 +3238,7 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1463, "time": 0.16771488469601678, @@ -3077,7 +3261,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1487, "time": 0.17051013277428373, @@ -3100,10 +3284,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1511, - "time": 0.17330538085255065, + "noteOrder": 1512, + "time": 0.17330538085255068, "position": { "x": 7, "y": 0 @@ -3123,7 +3307,7 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1536, "time": 0.1761006289308176, @@ -3146,10 +3330,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1779, - "time": 0.20405310971348706, + "noteOrder": 1780, + "time": 0.20405310971348709, "position": { "x": 2, "y": 0 @@ -3169,7 +3353,7 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1804, "time": 0.20684835779175403, @@ -3192,10 +3376,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1877, - "time": 0.21523410202655485, + "noteOrder": 1878, + "time": 0.21523410202655488, "position": { "x": 8, "y": 0 @@ -3215,10 +3399,10 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1901, - "time": 0.2180293501048218, + "noteOrder": 1902, + "time": 0.21802935010482183, "position": { "x": 4, "y": 0 @@ -3238,10 +3422,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1974, - "time": 0.22641509433962267, + "noteOrder": 1975, + "time": 0.22641509433962265, "position": { "x": 2, "y": 0 @@ -3261,10 +3445,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1999, - "time": 0.22921034241788957, + "time": 0.2292103424178896, "position": { "x": 6, "y": 0 @@ -3284,10 +3468,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2072, - "time": 0.23759608665269044, + "noteOrder": 2073, + "time": 0.2375960866526904, "position": { "x": 8, "y": 0 @@ -3307,9 +3491,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2096, + "noteOrder": 2097, "time": 0.2403913347309574, "position": { "x": 4, @@ -3330,9 +3514,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2389, + "noteOrder": 2390, "time": 0.27393431167016075, "position": { "x": 3, @@ -3353,10 +3537,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2413, - "time": 0.27672955974842767, + "noteOrder": 2414, + "time": 0.2767295597484277, "position": { "x": 6, "y": 0 @@ -3376,10 +3560,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2535, - "time": 0.2907058001397624, + "noteOrder": 2536, + "time": 0.29070580013976244, "position": { "x": 7, "y": 0 @@ -3399,9 +3583,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2559, + "noteOrder": 2560, "time": 0.29350104821802936, "position": { "x": 7, @@ -3422,9 +3606,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2584, + "noteOrder": 2585, "time": 0.2962962962962963, "position": { "x": 7, @@ -3445,9 +3629,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2608, + "noteOrder": 2609, "time": 0.29909154437456326, "position": { "x": 7, @@ -3468,7 +3652,7 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2633, "time": 0.30188679245283023, @@ -3491,9 +3675,9 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2657, + "noteOrder": 2658, "time": 0.30468204053109715, "position": { "x": 3, @@ -3514,10 +3698,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2681, - "time": 0.3074772886093641, + "noteOrder": 2682, + "time": 0.30747728860936413, "position": { "x": 3, "y": 0 @@ -3537,10 +3721,10 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2706, - "time": 0.310272536687631, + "noteOrder": 2707, + "time": 0.31027253668763105, "position": { "x": 3, "y": 0 @@ -3560,9 +3744,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2730, + "noteOrder": 2731, "time": 0.31306778476589797, "position": { "x": 7, @@ -3582,13 +3766,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2779, - "time": 0.31865828092243187, + "noteOrder": 2755, + "time": 0.31586303284416495, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3600,18 +3784,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2828, - "time": 0.32424877707896577, + "noteOrder": 2755, + "time": 0.31586303284416495, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3628,11 +3812,11 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2876, - "time": 0.32983927323549966, + "noteOrder": 2780, + "time": 0.3186582809224319, "position": { "x": 3, "y": 0 @@ -3651,11 +3835,103 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2925, - "time": 0.33542976939203356, + "noteOrder": 2804, + "time": 0.32145352900069885, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2804, + "time": 0.32145352900069885, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2828, + "time": 0.32424877707896577, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2853, + "time": 0.32704402515723274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2853, + "time": 0.32704402515723274, "position": { "x": 6, "y": 0 @@ -3673,11 +3949,103 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2877, + "time": 0.32983927323549966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2902, + "time": 0.33263452131376664, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2902, + "time": 0.33263452131376664, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 70, "indexInLine": 1, "isSliding": false, - "noteOrder": 2974, + "noteOrder": 2926, + "time": 0.33542976939203356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2975, "time": 0.34102026554856746, "position": { "x": 6, @@ -3698,9 +4066,9 @@ }, { "lineGroupId": 72, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2974, + "noteOrder": 2975, "time": 0.34102026554856746, "position": { "x": 4, @@ -3721,10 +4089,10 @@ }, { "lineGroupId": 72, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3023, - "time": 0.3466107617051013, + "noteOrder": 3024, + "time": 0.34661076170510136, "position": { "x": 4, "y": 0 @@ -3744,10 +4112,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3023, - "time": 0.3466107617051013, + "noteOrder": 3024, + "time": 0.34661076170510136, "position": { "x": 6, "y": 0 @@ -3767,9 +4135,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3071, + "noteOrder": 3072, "time": 0.3522012578616352, "position": { "x": 6, @@ -3790,9 +4158,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3071, + "noteOrder": 3072, "time": 0.3522012578616352, "position": { "x": 4, @@ -3813,9 +4181,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.35779175401816915, "position": { "x": 4, @@ -3836,9 +4204,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3120, + "noteOrder": 3121, "time": 0.35779175401816915, "position": { "x": 7, @@ -3859,9 +4227,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.36058700209643607, "position": { "x": 6, @@ -3882,9 +4250,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3169, + "noteOrder": 3170, "time": 0.36338225017470305, "position": { "x": 3, @@ -3905,10 +4273,10 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3193, - "time": 0.3661774982529699, + "noteOrder": 3194, + "time": 0.36617749825296997, "position": { "x": 4, "y": 0 @@ -3928,9 +4296,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.3689727463312369, "position": { "x": 7, @@ -3951,9 +4319,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, + "noteOrder": 3243, "time": 0.37176799440950387, "position": { "x": 6, @@ -3974,10 +4342,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3266, - "time": 0.3745632424877708, + "noteOrder": 3267, + "time": 0.37456324248777084, "position": { "x": 3, "y": 0 @@ -3997,9 +4365,9 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3291, + "noteOrder": 3292, "time": 0.37735849056603776, "position": { "x": 4, @@ -4020,9 +4388,9 @@ }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4193, + "noteOrder": 4194, "time": 0.4807826694619148, "position": { "x": 6, @@ -4043,9 +4411,9 @@ }, { "lineGroupId": 106, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4290, + "noteOrder": 4291, "time": 0.4919636617749826, "position": { "x": 6, @@ -4066,9 +4434,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4290, + "noteOrder": 4291, "time": 0.4919636617749826, "position": { "x": 4, @@ -4089,9 +4457,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4388, + "noteOrder": 4389, "time": 0.5031446540880503, "position": { "x": 4, @@ -4112,9 +4480,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4388, + "noteOrder": 4389, "time": 0.5031446540880503, "position": { "x": 6, @@ -4135,9 +4503,9 @@ }, { "lineGroupId": 112, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4461, + "noteOrder": 4462, "time": 0.5115303983228512, "position": { "x": 6, @@ -4158,9 +4526,9 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4485, + "noteOrder": 4487, "time": 0.5143256464011181, "position": { "x": 7, @@ -4181,9 +4549,9 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4509, + "noteOrder": 4511, "time": 0.517120894479385, "position": { "x": 7, @@ -4204,9 +4572,9 @@ }, { "lineGroupId": 115, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4583, + "noteOrder": 4584, "time": 0.5255066387141859, "position": { "x": 6, @@ -4227,9 +4595,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4583, + "noteOrder": 4584, "time": 0.5255066387141859, "position": { "x": 4, @@ -4250,10 +4618,10 @@ }, { "lineGroupId": 118, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4680, - "time": 0.5366876310272536, + "noteOrder": 4682, + "time": 0.5366876310272537, "position": { "x": 4, "y": 0 @@ -4273,10 +4641,10 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4680, - "time": 0.5366876310272536, + "noteOrder": 4682, + "time": 0.5366876310272537, "position": { "x": 6, "y": 0 @@ -4296,9 +4664,9 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4778, + "noteOrder": 4779, "time": 0.5478686233403215, "position": { "x": 6, @@ -4319,9 +4687,9 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4973, + "noteOrder": 4974, "time": 0.5702306079664571, "position": { "x": 2, @@ -4342,9 +4710,9 @@ }, { "lineGroupId": 133, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5021, + "noteOrder": 5023, "time": 0.5758211041229909, "position": { "x": 4, @@ -4365,10 +4733,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5070, - "time": 0.5814116002795248, + "noteOrder": 5072, + "time": 0.5814116002795249, "position": { "x": 8, "y": 0 @@ -4388,9 +4756,9 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5119, + "noteOrder": 5120, "time": 0.5870020964360587, "position": { "x": 6, @@ -4411,9 +4779,9 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5460, + "noteOrder": 5462, "time": 0.6261355695317959, "position": { "x": 4, @@ -4434,10 +4802,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5558, - "time": 0.6373165618448637, + "noteOrder": 5559, + "time": 0.6373165618448638, "position": { "x": 4, "y": 0 @@ -4457,10 +4825,10 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5558, - "time": 0.6373165618448637, + "noteOrder": 5559, + "time": 0.6373165618448638, "position": { "x": 6, "y": 0 @@ -4480,9 +4848,9 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5655, + "noteOrder": 5657, "time": 0.6484975541579315, "position": { "x": 6, @@ -4503,9 +4871,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5948, + "noteOrder": 5950, "time": 0.6820405310971349, "position": { "x": 7, @@ -4525,11 +4893,701 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5974, + "time": 0.684835779175402, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5996, - "time": 0.6876310272536689, + "noteOrder": 5974, + "time": 0.684835779175402, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5998, + "time": 0.6876310272536688, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6904262753319357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6023, + "time": 0.6904262753319357, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6047, + "time": 0.6932215234102027, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6960167714884696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6071, + "time": 0.6960167714884696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6340, + "time": 0.7267645003494061, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6364, + "time": 0.729559748427673, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6364, + "time": 0.729559748427673, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6388, + "time": 0.7323549965059399, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6413, + "time": 0.735150244584207, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6413, + "time": 0.735150244584207, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6437, + "time": 0.7379454926624738, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6449, + "time": 0.7393431167016074, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6449, + "time": 0.7393431167016074, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6462, + "time": 0.7407407407407408, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6474, + "time": 0.7421383647798743, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6474, + "time": 0.7421383647798743, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6632, + "time": 0.7603074772886094, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6657, + "time": 0.7631027253668764, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6681, + "time": 0.7658979734451433, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6730, + "time": 0.7714884696016772, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6754, + "time": 0.7742837176799441, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6779, + "time": 0.7770789657582111, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6827, + "time": 0.7826694619147451, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6852, + "time": 0.7854647099930119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6876, + "time": 0.7882599580712788, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6827, + "time": 0.7826694619147451, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6852, + "time": 0.7854647099930119, "position": { "x": 7, "y": 0 @@ -4543,18 +5601,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6045, - "time": 0.6932215234102026, + "noteOrder": 6876, + "time": 0.7882599580712788, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4571,13 +5629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6338, - "time": 0.7267645003494061, + "noteOrder": 7022, + "time": 0.8050314465408805, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4589,18 +5647,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.7323549965059398, + "noteOrder": 7047, + "time": 0.8078266946191475, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4617,13 +5675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6435, - "time": 0.7379454926624738, + "noteOrder": 7047, + "time": 0.8078266946191475, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4635,18 +5693,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6460, - "time": 0.7407407407407407, + "noteOrder": 7071, + "time": 0.8106219426974145, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4658,16 +5716,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6630, - "time": 0.7603074772886094, + "noteOrder": 7096, + "time": 0.8134171907756814, "position": { "x": 6, "y": 0 @@ -4681,16 +5739,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 1, + "lineGroupId": 190, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6655, - "time": 0.7631027253668764, + "noteOrder": 7096, + "time": 0.8134171907756814, "position": { "x": 6, "y": 0 @@ -4704,18 +5762,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 2, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6679, - "time": 0.7658979734451433, + "noteOrder": 7120, + "time": 0.8162124388539483, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4732,11 +5790,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6728, - "time": 0.7714884696016772, + "noteOrder": 7169, + "time": 0.8218029350104822, "position": { "x": 4, "y": 0 @@ -4750,16 +5808,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 6752, - "time": 0.7742837176799441, + "noteOrder": 7217, + "time": 0.8273934311670161, "position": { "x": 4, "y": 0 @@ -4778,11 +5836,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, + "lineGroupId": 192, "indexInLine": 2, "isSliding": false, - "noteOrder": 6776, - "time": 0.777078965758211, + "noteOrder": 7242, + "time": 0.8301886792452831, "position": { "x": 4, "y": 0 @@ -4801,13 +5859,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6825, - "time": 0.782669461914745, + "noteOrder": 7242, + "time": 0.8301886792452831, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4824,13 +5882,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 193, "indexInLine": 1, "isSliding": false, - "noteOrder": 6850, - "time": 0.7854647099930119, + "noteOrder": 7266, + "time": 0.83298392732355, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4842,16 +5900,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, + "lineGroupId": 193, "indexInLine": 2, "isSliding": false, - "noteOrder": 6874, - "time": 0.7882599580712788, + "noteOrder": 7291, + "time": 0.8357791754018169, "position": { "x": 4, "y": 0 @@ -4865,18 +5923,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6825, - "time": 0.782669461914745, + "noteOrder": 7291, + "time": 0.8357791754018169, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4893,13 +5951,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 194, "indexInLine": 1, "isSliding": false, - "noteOrder": 6850, - "time": 0.7854647099930119, + "noteOrder": 7315, + "time": 0.8385744234800839, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4911,16 +5969,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 194, "indexInLine": 2, "isSliding": false, - "noteOrder": 6874, - "time": 0.7882599580712788, + "noteOrder": 7364, + "time": 0.8441649196366179, "position": { "x": 6, "y": 0 @@ -4934,16 +5992,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7020, - "time": 0.8050314465408805, + "noteOrder": 7413, + "time": 0.8497554157931516, "position": { "x": 6, "y": 0 @@ -4962,11 +6020,11 @@ "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7069, - "time": 0.8106219426974144, + "noteOrder": 7461, + "time": 0.8553459119496856, "position": { "x": 6, "y": 0 @@ -4980,18 +6038,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7118, - "time": 0.8162124388539482, + "noteOrder": 7461, + "time": 0.8553459119496856, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5003,16 +6061,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7166, - "time": 0.8218029350104822, + "noteOrder": 7510, + "time": 0.8609364081062195, "position": { "x": 4, "y": 0 @@ -5026,18 +6084,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7215, - "time": 0.8273934311670161, + "noteOrder": 7510, + "time": 0.8609364081062195, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5049,18 +6107,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7264, - "time": 0.83298392732355, + "noteOrder": 7559, + "time": 0.8665269042627534, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5077,11 +6135,11 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 201, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7313, - "time": 0.8385744234800839, + "noteOrder": 7559, + "time": 0.8665269042627534, "position": { "x": 4, "y": 0 @@ -5100,13 +6158,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 201, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7361, - "time": 0.8441649196366178, + "noteOrder": 7608, + "time": 0.8721174004192873, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5123,11 +6181,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 204, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7410, - "time": 0.8497554157931516, + "noteOrder": 7656, + "time": 0.8777078965758212, "position": { "x": 6, "y": 0 @@ -5146,11 +6204,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 204, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7459, - "time": 0.8553459119496856, + "noteOrder": 7705, + "time": 0.8832983927323551, "position": { "x": 6, "y": 0 @@ -5169,13 +6227,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 206, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7459, - "time": 0.8553459119496856, + "noteOrder": 7754, + "time": 0.888888888888889, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5192,13 +6250,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 206, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7508, - "time": 0.8609364081062194, + "noteOrder": 7803, + "time": 0.8944793850454228, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5215,13 +6273,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7508, - "time": 0.8609364081062194, + "noteOrder": 7851, + "time": 0.9000698812019567, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5238,13 +6296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7556, - "time": 0.8665269042627534, + "noteOrder": 7876, + "time": 0.9028651292802236, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5261,13 +6319,13 @@ "isPlayAudio": false }, { - "lineGroupId": 201, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7556, - "time": 0.8665269042627534, + "noteOrder": 7876, + "time": 0.9028651292802236, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5279,18 +6337,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 201, + "lineGroupId": 209, "indexInLine": 1, "isSliding": false, - "noteOrder": 7605, - "time": 0.8721174004192872, + "noteOrder": 7900, + "time": 0.9056603773584906, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5307,13 +6365,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7654, - "time": 0.8777078965758212, + "noteOrder": 7925, + "time": 0.9084556254367576, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5325,16 +6383,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7703, - "time": 0.883298392732355, + "noteOrder": 7925, + "time": 0.9084556254367576, "position": { "x": 6, "y": 0 @@ -5348,18 +6406,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7751, - "time": 0.888888888888889, + "noteOrder": 7949, + "time": 0.9112508735150247, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5371,18 +6429,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 210, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7800, - "time": 0.8944793850454229, + "noteOrder": 7961, + "time": 0.912648497554158, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5394,18 +6452,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 210, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7849, - "time": 0.9000698812019567, + "noteOrder": 7961, + "time": 0.912648497554158, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5422,11 +6480,11 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7898, - "time": 0.9056603773584907, + "noteOrder": 7973, + "time": 0.9140461215932915, "position": { "x": 7, "y": 0 @@ -5445,11 +6503,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7946, - "time": 0.9112508735150244, + "noteOrder": 7986, + "time": 0.915443745632425, "position": { "x": 7, "y": 0 @@ -5463,18 +6521,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 211, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7971, - "time": 0.9140461215932913, + "noteOrder": 7986, + "time": 0.915443745632425, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5492,9 +6550,9 @@ }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8044, + "noteOrder": 8046, "time": 0.9224318658280922, "position": { "x": 4, @@ -5515,10 +6573,10 @@ }, { "lineGroupId": 214, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8068, - "time": 0.9252271139063591, + "noteOrder": 8071, + "time": 0.9252271139063593, "position": { "x": 4, "y": 0 @@ -5538,10 +6596,10 @@ }, { "lineGroupId": 216, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8093, - "time": 0.9280223619846261, + "noteOrder": 8095, + "time": 0.9280223619846263, "position": { "x": 6, "y": 0 @@ -5561,9 +6619,9 @@ }, { "lineGroupId": 216, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8117, + "noteOrder": 8120, "time": 0.9308176100628931, "position": { "x": 6, @@ -5584,10 +6642,10 @@ }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8190, - "time": 0.939203354297694, + "noteOrder": 8193, + "time": 0.9392033542976941, "position": { "x": 7, "y": 0 @@ -5607,10 +6665,10 @@ }, { "lineGroupId": 220, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8336, - "time": 0.9559748427672956, + "noteOrder": 8339, + "time": 0.9559748427672957, "position": { "x": 7, "y": 0 @@ -5630,10 +6688,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8190, - "time": 0.939203354297694, + "noteOrder": 8193, + "time": 0.9392033542976941, "position": { "x": 3, "y": 0 @@ -5653,10 +6711,10 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8336, - "time": 0.9559748427672956, + "noteOrder": 8339, + "time": 0.9559748427672957, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/info.json" "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/info.json" index 1a88a453..70c2c674 100644 --- "a/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/info.json" +++ "b/tracks/\343\203\224\343\202\242\343\203\216\344\275\223\346\223\215\347\254\254\344\270\200/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00", - "SongLength": "159.320816", + "SongLength": "149.368163", "SongAuthorName": "\u30ce\u30b9\u30bf\u30eb\u30b8\u30a2\u6f14\u594f\u5354\u4f1a\u266a", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1a.json" "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1a.json" index a8bb0c48..d3fa6ea9 100644 --- "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1a.json" +++ "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1a.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 123, - "time": 0.013458950201884251, + "time": 0.013458950201884255, "position": { "x": 3, "y": 0 @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 196, + "noteOrder": 197, "time": 0.021534320323014805, "position": { "x": 3, @@ -134,7 +134,7 @@ }, { "noteOrder": 246, - "time": 0.026917900403768503, + "time": 0.02691790040376851, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 270, - "time": 0.029609690444145357, + "time": 0.02960969044414536, "position": { "x": 3, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 368, - "time": 0.040376850605652756, + "noteOrder": 369, + "time": 0.04037685060565276, "position": { "x": 5, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 528, - "time": 0.05787348586810229, + "time": 0.057873485868102294, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 639, - "time": 0.06998654104979811, + "time": 0.06998654104979812, "position": { "x": 3, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 639, - "time": 0.06998654104979811, + "time": 0.06998654104979812, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 725, - "time": 0.07940780619111709, + "time": 0.0794078061911171, "position": { "x": 7, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 896, + "noteOrder": 897, "time": 0.09825033647375504, "position": { "x": 3, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1228, - "time": 0.1345895020188425, + "noteOrder": 1229, + "time": 0.13458950201884254, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1425, - "time": 0.15612382234185732, + "time": 0.15612382234185734, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1621, + "noteOrder": 1622, "time": 0.17765814266487215, "position": { "x": 4, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1670, - "time": 0.18304172274562583, + "noteOrder": 1671, + "time": 0.18304172274562586, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1719, - "time": 0.18842530282637954, + "noteOrder": 1720, + "time": 0.18842530282637956, "position": { "x": 4, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1744, + "noteOrder": 1745, "time": 0.1911170928667564, "position": { "x": 3, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1768, + "noteOrder": 1769, "time": 0.19380888290713325, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1793, + "noteOrder": 1794, "time": 0.19650067294751009, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1842, + "noteOrder": 1843, "time": 0.2018842530282638, "position": { "x": 3, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2014, - "time": 0.22072678331090173, + "noteOrder": 2015, + "time": 0.22072678331090176, "position": { "x": 3, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.24226110363391654, + "noteOrder": 2211, + "time": 0.2422611036339166, "position": { "x": 4, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 2309, + "noteOrder": 2310, "time": 0.253028263795424, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.2853297442799461, + "noteOrder": 2605, + "time": 0.2853297442799462, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.2853297442799461, + "noteOrder": 2605, + "time": 0.2853297442799462, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2654, "time": 0.29071332436069985, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2678, "time": 0.29340511440107675, "position": { "x": 3, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2702, - "time": 0.29609690444145353, + "noteOrder": 2703, + "time": 0.2960969044414536, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2726, + "noteOrder": 2727, "time": 0.29878869448183043, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2775, - "time": 0.3041722745625841, + "noteOrder": 2777, + "time": 0.30417227456258417, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2800, - "time": 0.30686406460296095, + "noteOrder": 2801, + "time": 0.306864064602961, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2825, - "time": 0.30955585464333785, + "noteOrder": 2826, + "time": 0.3095558546433378, "position": { "x": 6, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2898, - "time": 0.31763122476446837, + "noteOrder": 2899, + "time": 0.3176312247644684, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2996, - "time": 0.3283983849259758, + "noteOrder": 2998, + "time": 0.32839838492597584, "position": { "x": 6, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3070, + "noteOrder": 3071, "time": 0.33647375504710636, "position": { "x": 4, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 3119, + "noteOrder": 3121, "time": 0.34185733512786004, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3145, "time": 0.3445491251682369, "position": { "x": 3, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 3170, "time": 0.3472409152086138, "position": { "x": 7, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3291, + "noteOrder": 3293, "time": 0.360699865410498, "position": { "x": 6, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3316, + "noteOrder": 3317, "time": 0.3633916554508748, "position": { "x": 4, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3340, - "time": 0.36608344549125166, + "noteOrder": 3342, + "time": 0.3660834454912517, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3365, - "time": 0.3687752355316285, + "noteOrder": 3366, + "time": 0.36877523553162855, "position": { "x": 3, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.3714670255720054, "position": { "x": 4, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.3714670255720054, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.37415881561238223, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.37415881561238223, "position": { "x": 3, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3439, - "time": 0.3768506056527591, + "noteOrder": 3440, + "time": 0.37685060565275913, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3463, - "time": 0.3795423956931359, + "noteOrder": 3465, + "time": 0.37954239569313597, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3488, + "noteOrder": 3489, "time": 0.3822341857335128, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3512, - "time": 0.3849259757738896, + "noteOrder": 3514, + "time": 0.38492597577388965, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3561, - "time": 0.39030955585464333, + "noteOrder": 3563, + "time": 0.3903095558546434, "position": { "x": 4, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3586, + "noteOrder": 3587, "time": 0.39300134589502017, "position": { "x": 6, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3610, - "time": 0.395693135935397, + "noteOrder": 3612, + "time": 0.39569313593539707, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3684, + "noteOrder": 3686, "time": 0.4037685060565276, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3782, + "noteOrder": 3784, "time": 0.414535666218035, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3856, + "noteOrder": 3858, "time": 0.4226110363391655, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3905, + "noteOrder": 3907, "time": 0.42799461641991926, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3930, - "time": 0.43068640646029605, + "noteOrder": 3931, + "time": 0.43068640646029616, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3954, + "noteOrder": 3956, "time": 0.43337819650067294, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3979, - "time": 0.43606998654104984, + "noteOrder": 3981, + "time": 0.4360699865410498, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4003, - "time": 0.4387617765814266, + "noteOrder": 4005, + "time": 0.4387617765814267, "position": { "x": 4, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4028, - "time": 0.44145356662180346, + "noteOrder": 4030, + "time": 0.4414535666218035, "position": { "x": 7, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4053, + "noteOrder": 4054, "time": 0.44414535666218036, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4077, + "noteOrder": 4079, "time": 0.4468371467025572, "position": { "x": 4, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4102, - "time": 0.44952893674293404, + "noteOrder": 4103, + "time": 0.4495289367429341, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4126, - "time": 0.4522207267833109, + "noteOrder": 4128, + "time": 0.45222072678331093, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4151, + "noteOrder": 4153, "time": 0.4549125168236878, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.45760430686406456, + "noteOrder": 4177, + "time": 0.4576043068640646, "position": { "x": 4, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.45760430686406456, + "noteOrder": 4177, + "time": 0.4576043068640646, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.46029609690444145, + "noteOrder": 4202, + "time": 0.4602960969044415, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.46029609690444145, + "noteOrder": 4202, + "time": 0.4602960969044415, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4249, + "noteOrder": 4251, "time": 0.46567967698519513, "position": { "x": 7, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4323, - "time": 0.4737550471063257, + "noteOrder": 4325, + "time": 0.47375504710632577, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4384, - "time": 0.4804845222072678, + "noteOrder": 4386, + "time": 0.48048452220726784, "position": { "x": 4, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4384, - "time": 0.4804845222072678, + "noteOrder": 4386, + "time": 0.48048452220726784, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4642, - "time": 0.5087483176312247, + "noteOrder": 4644, + "time": 0.5087483176312249, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4716, + "noteOrder": 4718, "time": 0.5168236877523553, "position": { "x": 7, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.5235531628532974, "position": { "x": 6, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4777, + "noteOrder": 4779, "time": 0.5235531628532974, "position": { "x": 4, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4912, - "time": 0.53835800807537, + "noteOrder": 4914, + "time": 0.5383580080753702, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4937, - "time": 0.5410497981157469, + "noteOrder": 4939, + "time": 0.541049798115747, "position": { "x": 3, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4961, + "noteOrder": 4963, "time": 0.5437415881561238, "position": { "x": 4, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4961, + "noteOrder": 4963, "time": 0.5437415881561238, "position": { "x": 6, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4986, - "time": 0.5464333781965006, + "noteOrder": 4988, + "time": 0.5464333781965007, "position": { "x": 7, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4986, - "time": 0.5464333781965006, + "noteOrder": 4988, + "time": 0.5464333781965007, "position": { "x": 3, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5035, + "noteOrder": 5037, "time": 0.5518169582772544, "position": { "x": 7, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5109, - "time": 0.5598923283983849, + "noteOrder": 5111, + "time": 0.559892328398385, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5170, - "time": 0.566621803499327, + "noteOrder": 5172, + "time": 0.5666218034993271, "position": { "x": 6, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5170, - "time": 0.566621803499327, + "noteOrder": 5172, + "time": 0.5666218034993271, "position": { "x": 4, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5258, "time": 0.576043068640646, "position": { "x": 4, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5281, - "time": 0.5787348586810228, + "noteOrder": 5283, + "time": 0.5787348586810229, "position": { "x": 6, "y": 0 @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5354, + "noteOrder": 5357, "time": 0.5868102288021535, "position": { "x": 6, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5379, + "noteOrder": 5381, "time": 0.5895020188425303, "position": { "x": 4, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.5921938088829071, + "noteOrder": 5406, + "time": 0.5921938088829072, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5428, - "time": 0.5948855989232841, + "noteOrder": 5430, + "time": 0.594885598923284, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5453, + "noteOrder": 5455, "time": 0.5975773889636609, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5477, + "noteOrder": 5479, "time": 0.6002691790040376, "position": { "x": 3, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5502, + "noteOrder": 5504, "time": 0.6029609690444145, "position": { "x": 3, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5526, + "noteOrder": 5529, "time": 0.6056527590847914, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.6083445491251682, + "noteOrder": 5553, + "time": 0.6083445491251683, "position": { "x": 7, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5575, + "noteOrder": 5578, "time": 0.6110363391655451, "position": { "x": 3, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 5649, - "time": 0.6191117092866757, + "noteOrder": 5651, + "time": 0.6191117092866756, "position": { "x": 6, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5747, + "noteOrder": 5750, "time": 0.629878869448183, "position": { "x": 4, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5796, - "time": 0.6352624495289367, + "noteOrder": 5799, + "time": 0.6352624495289368, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 5821, - "time": 0.6379542395693135, + "noteOrder": 5823, + "time": 0.6379542395693136, "position": { "x": 3, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5846, - "time": 0.6406460296096905, + "noteOrder": 5848, + "time": 0.6406460296096904, "position": { "x": 6, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5870, + "noteOrder": 5873, "time": 0.6433378196500673, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 6091, + "noteOrder": 6094, "time": 0.6675639300134589, "position": { "x": 7, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6116, - "time": 0.6702557200538357, + "noteOrder": 6118, + "time": 0.6702557200538358, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6165, - "time": 0.6756393001345895, + "noteOrder": 6167, + "time": 0.6756393001345896, "position": { "x": 3, "y": 0 @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6189, + "noteOrder": 6192, "time": 0.6783310901749663, "position": { "x": 3, @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6214, + "noteOrder": 6217, "time": 0.6810228802153432, "position": { "x": 4, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6263, - "time": 0.6864064602960969, + "noteOrder": 6266, + "time": 0.686406460296097, "position": { "x": 7, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6337, + "noteOrder": 6339, "time": 0.6944818304172276, "position": { "x": 6, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6435, - "time": 0.7052489905787348, + "noteOrder": 6438, + "time": 0.7052489905787349, "position": { "x": 4, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6484, + "noteOrder": 6487, "time": 0.7106325706594886, "position": { "x": 7, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6509, - "time": 0.7133243606998654, + "noteOrder": 6511, + "time": 0.7133243606998655, "position": { "x": 7, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6533, - "time": 0.7160161507402422, + "noteOrder": 6536, + "time": 0.7160161507402424, "position": { "x": 3, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6558, + "noteOrder": 6561, "time": 0.7187079407806192, "position": { "x": 3, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6582, + "noteOrder": 6585, "time": 0.721399730820996, "position": { "x": 3, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6582, + "noteOrder": 6585, "time": 0.721399730820996, "position": { "x": 7, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6656, + "noteOrder": 6659, "time": 0.7294751009421265, "position": { "x": 3, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6656, + "noteOrder": 6659, "time": 0.7294751009421265, "position": { "x": 7, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 6877, - "time": 0.7537012113055181, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { "x": 3, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6902, + "noteOrder": 6905, "time": 0.756393001345895, "position": { "x": 4, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 6951, + "noteOrder": 6954, "time": 0.7617765814266487, "position": { "x": 7, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6975, + "noteOrder": 6978, "time": 0.7644683714670256, "position": { "x": 7, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 7000, + "noteOrder": 7003, "time": 0.7671601615074024, "position": { "x": 6, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 7049, + "noteOrder": 7052, "time": 0.7725437415881562, "position": { "x": 3, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 7123, - "time": 0.7806191117092867, + "noteOrder": 7126, + "time": 0.7806191117092868, "position": { "x": 4, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 7221, - "time": 0.791386271870794, + "noteOrder": 7224, + "time": 0.7913862718707941, "position": { "x": 6, "y": 0 @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 7270, + "noteOrder": 7273, "time": 0.7967698519515478, "position": { "x": 3, @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 7295, - "time": 0.7994616419919246, + "noteOrder": 7298, + "time": 0.7994616419919247, "position": { "x": 3, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7319, - "time": 0.8021534320323015, + "noteOrder": 7322, + "time": 0.8021534320323016, "position": { "x": 7, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 7347, "time": 0.8048452220726783, "position": { "x": 7, @@ -2933,7 +2933,7 @@ "isPlayAudio": false }, { - "noteOrder": 7368, + "noteOrder": 7371, "time": 0.8075370121130552, "position": { "x": 3, @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 7368, + "noteOrder": 7371, "time": 0.8075370121130552, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 7393, + "noteOrder": 7396, "time": 0.8102288021534321, "position": { "x": 6, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7393, + "noteOrder": 7396, "time": 0.8102288021534321, "position": { "x": 4, @@ -3013,8 +3013,8 @@ "isPlayAudio": false }, { - "noteOrder": 7417, - "time": 0.8129205921938089, + "noteOrder": 7421, + "time": 0.812920592193809, "position": { "x": 3, "y": 0 @@ -3033,8 +3033,8 @@ "isPlayAudio": false }, { - "noteOrder": 7442, - "time": 0.8156123822341856, + "noteOrder": 7445, + "time": 0.8156123822341858, "position": { "x": 7, "y": 0 @@ -3053,7 +3053,7 @@ "isPlayAudio": false }, { - "noteOrder": 7467, + "noteOrder": 7470, "time": 0.8183041722745626, "position": { "x": 3, @@ -3073,8 +3073,8 @@ "isPlayAudio": false }, { - "noteOrder": 7491, - "time": 0.8209959623149394, + "noteOrder": 7494, + "time": 0.8209959623149395, "position": { "x": 4, "y": 0 @@ -3093,7 +3093,7 @@ "isPlayAudio": false }, { - "noteOrder": 7516, + "noteOrder": 7519, "time": 0.8236877523553162, "position": { "x": 6, @@ -3113,7 +3113,7 @@ "isPlayAudio": false }, { - "noteOrder": 7540, + "noteOrder": 7543, "time": 0.8263795423956931, "position": { "x": 7, @@ -3133,7 +3133,7 @@ "isPlayAudio": false }, { - "noteOrder": 7565, + "noteOrder": 7568, "time": 0.82907133243607, "position": { "x": 7, @@ -3153,8 +3153,8 @@ "isPlayAudio": false }, { - "noteOrder": 7589, - "time": 0.8317631224764468, + "noteOrder": 7593, + "time": 0.8317631224764469, "position": { "x": 6, "y": 0 @@ -3173,7 +3173,7 @@ "isPlayAudio": false }, { - "noteOrder": 7614, + "noteOrder": 7617, "time": 0.8344549125168237, "position": { "x": 4, @@ -3193,8 +3193,8 @@ "isPlayAudio": false }, { - "noteOrder": 7638, - "time": 0.8371467025572005, + "noteOrder": 7642, + "time": 0.8371467025572006, "position": { "x": 3, "y": 0 @@ -3213,7 +3213,7 @@ "isPlayAudio": false }, { - "noteOrder": 7712, + "noteOrder": 7715, "time": 0.845222072678331, "position": { "x": 4, @@ -3233,7 +3233,7 @@ "isPlayAudio": false }, { - "noteOrder": 7810, + "noteOrder": 7814, "time": 0.8559892328398385, "position": { "x": 6, @@ -3253,8 +3253,8 @@ "isPlayAudio": false }, { - "noteOrder": 7860, - "time": 0.8613728129205921, + "noteOrder": 7863, + "time": 0.8613728129205923, "position": { "x": 7, "y": 0 @@ -3273,7 +3273,7 @@ "isPlayAudio": false }, { - "noteOrder": 7884, + "noteOrder": 7887, "time": 0.8640646029609691, "position": { "x": 6, @@ -3293,7 +3293,7 @@ "isPlayAudio": false }, { - "noteOrder": 7909, + "noteOrder": 7912, "time": 0.8667563930013459, "position": { "x": 4, @@ -3313,8 +3313,8 @@ "isPlayAudio": false }, { - "noteOrder": 7933, - "time": 0.8694481830417227, + "noteOrder": 7937, + "time": 0.8694481830417228, "position": { "x": 3, "y": 0 @@ -3333,8 +3333,8 @@ "isPlayAudio": false }, { - "noteOrder": 7958, - "time": 0.8721399730820997, + "noteOrder": 7961, + "time": 0.8721399730820996, "position": { "x": 3, "y": 0 @@ -3353,7 +3353,7 @@ "isPlayAudio": false }, { - "noteOrder": 7982, + "noteOrder": 7986, "time": 0.8748317631224765, "position": { "x": 4, @@ -3373,8 +3373,8 @@ "isPlayAudio": false }, { - "noteOrder": 8007, - "time": 0.8775235531628532, + "noteOrder": 8010, + "time": 0.8775235531628534, "position": { "x": 6, "y": 0 @@ -3393,8 +3393,8 @@ "isPlayAudio": false }, { - "noteOrder": 8031, - "time": 0.8802153432032301, + "noteOrder": 8035, + "time": 0.8802153432032302, "position": { "x": 7, "y": 0 @@ -3413,7 +3413,7 @@ "isPlayAudio": false }, { - "noteOrder": 8105, + "noteOrder": 8109, "time": 0.8882907133243607, "position": { "x": 6, @@ -3433,8 +3433,8 @@ "isPlayAudio": false }, { - "noteOrder": 8203, - "time": 0.8990578734858681, + "noteOrder": 8207, + "time": 0.8990578734858682, "position": { "x": 4, "y": 0 @@ -3453,8 +3453,8 @@ "isPlayAudio": false }, { - "noteOrder": 8253, - "time": 0.9044414535666218, + "noteOrder": 8256, + "time": 0.9044414535666219, "position": { "x": 7, "y": 0 @@ -3473,8 +3473,8 @@ "isPlayAudio": false }, { - "noteOrder": 8277, - "time": 0.9071332436069987, + "noteOrder": 8281, + "time": 0.9071332436069988, "position": { "x": 7, "y": 0 @@ -3493,7 +3493,7 @@ "isPlayAudio": false }, { - "noteOrder": 8302, + "noteOrder": 8305, "time": 0.9098250336473755, "position": { "x": 3, @@ -3513,7 +3513,7 @@ "isPlayAudio": false }, { - "noteOrder": 8326, + "noteOrder": 8330, "time": 0.9125168236877523, "position": { "x": 3, @@ -3533,8 +3533,8 @@ "isPlayAudio": false }, { - "noteOrder": 8351, - "time": 0.9152086137281291, + "noteOrder": 8354, + "time": 0.9152086137281292, "position": { "x": 7, "y": 0 @@ -3553,7 +3553,7 @@ "isPlayAudio": false }, { - "noteOrder": 8375, + "noteOrder": 8379, "time": 0.9179004037685061, "position": { "x": 3, @@ -3573,8 +3573,8 @@ "isPlayAudio": false }, { - "noteOrder": 8400, - "time": 0.9205921938088829, + "noteOrder": 8403, + "time": 0.920592193808883, "position": { "x": 6, "y": 0 @@ -3593,8 +3593,8 @@ "isPlayAudio": false }, { - "noteOrder": 8424, - "time": 0.9232839838492597, + "noteOrder": 8428, + "time": 0.9232839838492598, "position": { "x": 4, "y": 0 @@ -3613,8 +3613,8 @@ "isPlayAudio": false }, { - "noteOrder": 8449, - "time": 0.9259757738896366, + "noteOrder": 8453, + "time": 0.9259757738896367, "position": { "x": 7, "y": 0 @@ -3633,8 +3633,8 @@ "isPlayAudio": false }, { - "noteOrder": 8474, - "time": 0.9286675639300135, + "noteOrder": 8477, + "time": 0.9286675639300136, "position": { "x": 7, "y": 0 @@ -3653,7 +3653,7 @@ "isPlayAudio": false }, { - "noteOrder": 8498, + "noteOrder": 8502, "time": 0.9313593539703903, "position": { "x": 3, @@ -3673,7 +3673,7 @@ "isPlayAudio": false }, { - "noteOrder": 8523, + "noteOrder": 8526, "time": 0.9340511440107672, "position": { "x": 3, @@ -3693,8 +3693,8 @@ "isPlayAudio": false }, { - "noteOrder": 8670, - "time": 0.9502018842530283, + "noteOrder": 8674, + "time": 0.9502018842530282, "position": { "x": 6, "y": 0 @@ -3713,7 +3713,7 @@ "isPlayAudio": false }, { - "noteOrder": 8719, + "noteOrder": 8723, "time": 0.955585464333782, "position": { "x": 4, @@ -3733,8 +3733,8 @@ "isPlayAudio": false }, { - "noteOrder": 8744, - "time": 0.9582772543741588, + "noteOrder": 8747, + "time": 0.9582772543741589, "position": { "x": 7, "y": 0 @@ -3753,8 +3753,8 @@ "isPlayAudio": false }, { - "noteOrder": 8768, - "time": 0.9609690444145356, + "noteOrder": 8772, + "time": 0.9609690444145357, "position": { "x": 3, "y": 0 @@ -3773,7 +3773,7 @@ "isPlayAudio": false }, { - "noteOrder": 8793, + "noteOrder": 8797, "time": 0.9636608344549126, "position": { "x": 6, @@ -3793,8 +3793,8 @@ "isPlayAudio": false }, { - "noteOrder": 8817, - "time": 0.9663526244952894, + "noteOrder": 8821, + "time": 0.9663526244952895, "position": { "x": 4, "y": 0 @@ -3813,7 +3813,7 @@ "isPlayAudio": false }, { - "noteOrder": 8867, + "noteOrder": 8870, "time": 0.971736204576043, "position": { "x": 6, @@ -3833,8 +3833,8 @@ "isPlayAudio": false }, { - "noteOrder": 8916, - "time": 0.9771197846567967, + "noteOrder": 8919, + "time": 0.9771197846567968, "position": { "x": 4, "y": 0 @@ -3853,7 +3853,7 @@ "isPlayAudio": false }, { - "noteOrder": 8940, + "noteOrder": 8944, "time": 0.9798115746971736, "position": { "x": 3, @@ -3873,7 +3873,7 @@ "isPlayAudio": false }, { - "noteOrder": 8940, + "noteOrder": 8944, "time": 0.9798115746971736, "position": { "x": 7, @@ -3893,8 +3893,8 @@ "isPlayAudio": false }, { - "noteOrder": 8965, - "time": 0.9825033647375504, + "noteOrder": 8969, + "time": 0.9825033647375505, "position": { "x": 6, "y": 0 @@ -3913,8 +3913,8 @@ "isPlayAudio": false }, { - "noteOrder": 8965, - "time": 0.9825033647375504, + "noteOrder": 8969, + "time": 0.9825033647375505, "position": { "x": 4, "y": 0 @@ -3933,8 +3933,8 @@ "isPlayAudio": false }, { - "noteOrder": 8989, - "time": 0.9851951547779273, + "noteOrder": 8993, + "time": 0.9851951547779274, "position": { "x": 7, "y": 0 @@ -3953,8 +3953,8 @@ "isPlayAudio": false }, { - "noteOrder": 8989, - "time": 0.9851951547779273, + "noteOrder": 8993, + "time": 0.9851951547779274, "position": { "x": 3, "y": 0 @@ -3976,7 +3976,7 @@ "lineNodes": [ { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 295, "time": 0.03230148048452221, @@ -3999,7 +3999,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 344, "time": 0.03768506056527591, @@ -4022,7 +4022,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 393, "time": 0.04306864064602961, @@ -4045,7 +4045,7 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 442, "time": 0.04845222072678331, @@ -4068,10 +4068,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 491, - "time": 0.053835800807537006, + "time": 0.05383580080753702, "position": { "x": 7, "y": 0 @@ -4091,10 +4091,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 528, - "time": 0.05787348586810229, + "time": 0.057873485868102294, "position": { "x": 7, "y": 0 @@ -4114,7 +4114,7 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 565, "time": 0.06191117092866756, @@ -4137,10 +4137,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 614, - "time": 0.06729475100942126, + "time": 0.06729475100942127, "position": { "x": 6, "y": 0 @@ -4160,7 +4160,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 565, "time": 0.06191117092866756, @@ -4183,10 +4183,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 614, - "time": 0.06729475100942126, + "time": 0.06729475100942127, "position": { "x": 4, "y": 0 @@ -4206,7 +4206,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 688, "time": 0.07537012113055182, @@ -4229,10 +4229,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 725, - "time": 0.07940780619111709, + "time": 0.0794078061911171, "position": { "x": 3, "y": 0 @@ -4252,9 +4252,9 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 761, + "noteOrder": 762, "time": 0.08344549125168237, "position": { "x": 4, @@ -4275,10 +4275,10 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 835, - "time": 0.09152086137281291, + "time": 0.09152086137281293, "position": { "x": 4, "y": 0 @@ -4298,9 +4298,9 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 761, + "noteOrder": 762, "time": 0.08344549125168237, "position": { "x": 6, @@ -4321,10 +4321,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 835, - "time": 0.09152086137281291, + "time": 0.09152086137281293, "position": { "x": 6, "y": 0 @@ -4344,9 +4344,9 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 933, + "noteOrder": 934, "time": 0.10228802153432033, "position": { "x": 7, @@ -4367,10 +4367,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 958, - "time": 0.10497981157469717, + "time": 0.10497981157469718, "position": { "x": 7, "y": 0 @@ -4390,10 +4390,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 958, - "time": 0.10497981157469717, + "time": 0.10497981157469718, "position": { "x": 3, "y": 0 @@ -4413,10 +4413,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 982, - "time": 0.10767160161507401, + "noteOrder": 983, + "time": 0.10767160161507404, "position": { "x": 3, "y": 0 @@ -4436,10 +4436,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1007, - "time": 0.11036339165545087, + "time": 0.11036339165545088, "position": { "x": 4, "y": 0 @@ -4459,10 +4459,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, - "time": 0.11440107671601614, + "time": 0.11440107671601615, "position": { "x": 4, "y": 0 @@ -4482,10 +4482,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1007, - "time": 0.11036339165545087, + "time": 0.11036339165545088, "position": { "x": 6, "y": 0 @@ -4505,10 +4505,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1044, - "time": 0.11440107671601614, + "time": 0.11440107671601615, "position": { "x": 6, "y": 0 @@ -4528,10 +4528,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1081, - "time": 0.11843876177658143, + "time": 0.11843876177658144, "position": { "x": 7, "y": 0 @@ -4550,11 +4550,11 @@ "isPlayAudio": false }, { - "lineGroupId": 34, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1130, - "time": 0.12382234185733512, + "noteOrder": 1106, + "time": 0.1211305518169583, "position": { "x": 7, "y": 0 @@ -4568,18 +4568,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 35, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1179, - "time": 0.12920592193808883, + "noteOrder": 1106, + "time": 0.1211305518169583, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4596,13 +4596,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1277, - "time": 0.13997308209959622, + "noteOrder": 1130, + "time": 0.12382234185733512, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4614,18 +4614,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 33, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1326, - "time": 0.14535666218034993, + "noteOrder": 1130, + "time": 0.12382234185733512, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4642,13 +4642,13 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1375, - "time": 0.15074024226110364, + "noteOrder": 1130, + "time": 0.12382234185733512, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4665,11 +4665,11 @@ "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1474, - "time": 0.16150740242261102, + "noteOrder": 1155, + "time": 0.126514131897712, "position": { "x": 7, "y": 0 @@ -4683,18 +4683,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1523, - "time": 0.16689098250336473, + "noteOrder": 1155, + "time": 0.126514131897712, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4706,18 +4706,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 0, + "lineGroupId": 34, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1572, - "time": 0.17227456258411844, + "noteOrder": 1179, + "time": 0.12920592193808883, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4734,13 +4734,13 @@ "isPlayAudio": false }, { - "lineGroupId": 43, - "indexInLine": 1, + "lineGroupId": 34, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1621, - "time": 0.17765814266487215, + "noteOrder": 1179, + "time": 0.12920592193808883, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4757,11 +4757,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1867, - "time": 0.20457604306864066, + "noteOrder": 1179, + "time": 0.12920592193808883, "position": { "x": 7, "y": 0 @@ -4780,11 +4780,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1916, - "time": 0.20995962314939434, + "noteOrder": 1204, + "time": 0.1318977119784657, "position": { "x": 7, "y": 0 @@ -4798,18 +4798,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1965, - "time": 0.21534320323014802, + "noteOrder": 1204, + "time": 0.1318977119784657, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4826,11 +4826,11 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2063, - "time": 0.22611036339165544, + "noteOrder": 1229, + "time": 0.13458950201884254, "position": { "x": 6, "y": 0 @@ -4849,13 +4849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2137, - "time": 0.234185733512786, + "noteOrder": 1229, + "time": 0.13458950201884254, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4872,13 +4872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2063, - "time": 0.22611036339165544, + "noteOrder": 1278, + "time": 0.13997308209959625, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4895,13 +4895,13 @@ "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.234185733512786, + "noteOrder": 1302, + "time": 0.1426648721399731, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4918,13 +4918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.23687752355316286, + "noteOrder": 1302, + "time": 0.1426648721399731, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4941,13 +4941,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 37, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2210, - "time": 0.24226110363391654, + "noteOrder": 1327, + "time": 0.14535666218034993, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4964,13 +4964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2260, - "time": 0.24764468371467024, + "noteOrder": 1327, + "time": 0.14535666218034993, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4982,18 +4982,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 2309, - "time": 0.253028263795424, + "noteOrder": 1327, + "time": 0.14535666218034993, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5010,11 +5010,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2358, - "time": 0.25841184387617766, + "noteOrder": 1351, + "time": 0.1480484522207268, "position": { "x": 3, "y": 0 @@ -5028,18 +5028,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2407, - "time": 0.2637954239569314, + "noteOrder": 1351, + "time": 0.1480484522207268, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5056,13 +5056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2456, - "time": 0.269179004037685, + "noteOrder": 1376, + "time": 0.15074024226110364, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5074,18 +5074,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 3, + "lineGroupId": 38, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2554, - "time": 0.27994616419919244, + "noteOrder": 1376, + "time": 0.15074024226110364, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5097,18 +5097,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2505, - "time": 0.27456258411843876, + "noteOrder": 1376, + "time": 0.15074024226110364, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5120,18 +5120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2554, - "time": 0.27994616419919244, + "noteOrder": 1401, + "time": 0.1534320323014805, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5143,18 +5143,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2751, - "time": 0.30148048452220727, + "noteOrder": 1401, + "time": 0.1534320323014805, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5166,18 +5166,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2849, - "time": 0.31224764468371463, + "noteOrder": 1425, + "time": 0.15612382234185734, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5189,16 +5189,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2849, - "time": 0.31224764468371463, + "noteOrder": 1425, + "time": 0.15612382234185734, "position": { "x": 3, "y": 0 @@ -5217,13 +5217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 41, "indexInLine": 1, "isSliding": false, - "noteOrder": 2898, - "time": 0.31763122476446837, + "noteOrder": 1474, + "time": 0.16150740242261105, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5235,16 +5235,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2947, - "time": 0.32301480484522205, + "noteOrder": 1523, + "time": 0.16689098250336473, "position": { "x": 7, "y": 0 @@ -5263,13 +5263,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 43, "indexInLine": 1, "isSliding": false, - "noteOrder": 2996, - "time": 0.3283983849259758, + "noteOrder": 1573, + "time": 0.17227456258411844, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5281,16 +5281,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 43, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3046, - "time": 0.33378196500672946, + "noteOrder": 1622, + "time": 0.17765814266487215, "position": { "x": 3, "y": 0 @@ -5309,13 +5309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 3070, - "time": 0.33647375504710636, + "noteOrder": 1867, + "time": 0.20457604306864066, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5327,16 +5327,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3095, - "time": 0.33916554508748314, + "noteOrder": 1892, + "time": 0.2072678331090175, "position": { "x": 7, "y": 0 @@ -5355,13 +5355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3119, - "time": 0.34185733512786004, + "noteOrder": 1892, + "time": 0.2072678331090175, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5378,11 +5378,11 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3193, - "time": 0.34993270524899056, + "noteOrder": 1917, + "time": 0.20995962314939437, "position": { "x": 6, "y": 0 @@ -5401,13 +5401,1669 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1917, + "time": 0.20995962314939437, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1917, + "time": 0.20995962314939437, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1941, + "time": 0.2126514131897712, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1941, + "time": 0.2126514131897712, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1966, + "time": 0.21534320323014808, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1966, + "time": 0.21534320323014808, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1966, + "time": 0.21534320323014808, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1990, + "time": 0.2180349932705249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1990, + "time": 0.2180349932705249, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2015, + "time": 0.22072678331090176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2015, + "time": 0.22072678331090176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2064, + "time": 0.22611036339165547, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.23418573351278602, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2064, + "time": 0.22611036339165547, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 58, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2138, + "time": 0.23418573351278602, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.23687752355316288, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2211, + "time": 0.2422611036339166, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2261, + "time": 0.24764468371467024, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2310, + "time": 0.253028263795424, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2359, + "time": 0.25841184387617766, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2383, + "time": 0.2611036339165545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2383, + "time": 0.2611036339165545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2408, + "time": 0.2637954239569314, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2408, + "time": 0.2637954239569314, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2408, + "time": 0.2637954239569314, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2433, + "time": 0.26648721399730824, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2433, + "time": 0.26648721399730824, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2457, + "time": 0.2691790040376851, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2457, + "time": 0.2691790040376851, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2457, + "time": 0.2691790040376851, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2482, + "time": 0.2718707940780619, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2482, + "time": 0.2718707940780619, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2506, + "time": 0.27456258411843876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2506, + "time": 0.27456258411843876, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 2555, + "time": 0.2799461641991925, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2506, + "time": 0.27456258411843876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2555, + "time": 0.2799461641991925, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2752, + "time": 0.30148048452220727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2850, + "time": 0.3122476446837147, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2850, + "time": 0.3122476446837147, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2899, + "time": 0.3176312247644684, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2949, + "time": 0.3230148048452221, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2998, + "time": 0.32839838492597584, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3047, + "time": 0.33378196500672946, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3071, + "time": 0.33647375504710636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3096, + "time": 0.33916554508748314, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3121, + "time": 0.34185733512786004, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.34993270524899056, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.35262449528936746, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3194, + "time": 0.34993270524899056, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.35262449528936746, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.3553162853297443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3268, + "time": 0.3580080753701212, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.3553162853297443, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3268, + "time": 0.3580080753701212, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3538, + "time": 0.3876177658142665, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3637, + "time": 0.3983849259757739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3637, + "time": 0.3983849259757739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3686, + "time": 0.4037685060565276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3735, + "time": 0.4091520861372813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3784, + "time": 0.414535666218035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3833, + "time": 0.41991924629878874, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3858, + "time": 0.4226110363391655, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3882, + "time": 0.4253028263795424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3907, + "time": 0.42799461641991926, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4423, + "time": 0.4845222072678332, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4497, + "time": 0.4925975773889637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4423, + "time": 0.4845222072678332, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4497, + "time": 0.4925975773889637, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4816, + "time": 0.5275908479138628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4841, + "time": 0.5302826379542396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4816, + "time": 0.5275908479138628, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.3526244952893674, + "noteOrder": 4841, + "time": 0.5302826379542396, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5424,11 +7080,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3193, - "time": 0.34993270524899056, + "noteOrder": 4865, + "time": 0.5329744279946165, "position": { "x": 4, "y": 0 @@ -5447,11 +7103,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.3526244952893674, + "noteOrder": 4890, + "time": 0.5356662180349933, "position": { "x": 4, "y": 0 @@ -5470,13 +7126,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 150, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3242, - "time": 0.3553162853297443, + "noteOrder": 4865, + "time": 0.5329744279946165, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5493,11 +7149,34 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4890, + "time": 0.5356662180349933, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.3580080753701211, + "noteOrder": 5209, + "time": 0.5706594885598923, "position": { "x": 7, "y": 0 @@ -5516,13 +7195,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, - "time": 0.3553162853297443, + "noteOrder": 5283, + "time": 0.5787348586810229, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5534,16 +7213,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 3267, - "time": 0.3580080753701211, + "noteOrder": 5307, + "time": 0.5814266487213997, "position": { "x": 3, "y": 0 @@ -5562,11 +7241,11 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3537, - "time": 0.3876177658142665, + "noteOrder": 5381, + "time": 0.5895020188425303, "position": { "x": 3, "y": 0 @@ -5585,13 +7264,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, + "lineGroupId": 177, "indexInLine": 1, "isSliding": false, - "noteOrder": 3635, - "time": 0.3983849259757739, + "noteOrder": 5602, + "time": 0.613728129205922, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5603,16 +7282,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 177, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3635, - "time": 0.3983849259757739, + "noteOrder": 5651, + "time": 0.6191117092866756, "position": { "x": 7, "y": 0 @@ -5631,13 +7310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 179, "indexInLine": 1, "isSliding": false, - "noteOrder": 3684, - "time": 0.4037685060565276, + "noteOrder": 5701, + "time": 0.6244952893674294, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5649,16 +7328,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 179, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3733, - "time": 0.4091520861372813, + "noteOrder": 5750, + "time": 0.629878869448183, "position": { "x": 3, "y": 0 @@ -5677,13 +7356,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 185, "indexInLine": 1, "isSliding": false, - "noteOrder": 3782, - "time": 0.414535666218035, + "noteOrder": 5897, + "time": 0.6460296096904442, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5695,16 +7374,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 185, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3832, - "time": 0.4199192462987887, + "noteOrder": 5922, + "time": 0.648721399730821, "position": { "x": 7, "y": 0 @@ -5723,11 +7402,80 @@ "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5922, + "time": 0.648721399730821, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6514131897711979, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6514131897711979, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 3856, - "time": 0.4226110363391655, + "noteOrder": 5946, + "time": 0.6514131897711979, "position": { "x": 7, "y": 0 @@ -5741,18 +7489,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3881, - "time": 0.4253028263795424, + "noteOrder": 5971, + "time": 0.6541049798115748, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5769,13 +7517,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 186, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3905, - "time": 0.42799461641991926, + "noteOrder": 5971, + "time": 0.6541049798115748, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5792,13 +7540,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 186, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4421, - "time": 0.48452220726783307, + "noteOrder": 5995, + "time": 0.6567967698519517, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5815,13 +7563,105 @@ "isPlayAudio": false }, { - "lineGroupId": 136, + "lineGroupId": 186, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6567967698519517, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 4495, - "time": 0.49259757738896365, + "noteOrder": 5995, + "time": 0.6567967698519517, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6020, + "time": 0.6594885598923284, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6020, + "time": 0.6594885598923284, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6045, + "time": 0.6621803499327052, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5833,18 +7673,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4421, - "time": 0.48452220726783307, + "noteOrder": 6045, + "time": 0.6621803499327052, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5861,11 +7701,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 188, "indexInLine": 1, "isSliding": false, - "noteOrder": 4495, - "time": 0.49259757738896365, + "noteOrder": 6045, + "time": 0.6621803499327052, "position": { "x": 7, "y": 0 @@ -5879,18 +7719,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4814, - "time": 0.5275908479138628, + "noteOrder": 6069, + "time": 0.6648721399730821, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5907,13 +7747,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4839, - "time": 0.5302826379542396, + "noteOrder": 6069, + "time": 0.6648721399730821, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5930,13 +7770,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4814, - "time": 0.5275908479138628, + "noteOrder": 6094, + "time": 0.6675639300134589, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5948,18 +7788,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4839, - "time": 0.5302826379542396, + "noteOrder": 6094, + "time": 0.6675639300134589, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5971,16 +7811,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4863, - "time": 0.5329744279946164, + "noteOrder": 6143, + "time": 0.6729475100942127, "position": { "x": 4, "y": 0 @@ -5994,16 +7834,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4888, - "time": 0.5356662180349933, + "noteOrder": 6167, + "time": 0.6756393001345896, "position": { "x": 4, "y": 0 @@ -6017,16 +7857,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4863, - "time": 0.5329744279946164, + "noteOrder": 6241, + "time": 0.6837146702557201, "position": { "x": 6, "y": 0 @@ -6040,16 +7880,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 1, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4888, - "time": 0.5356662180349933, + "noteOrder": 6266, + "time": 0.686406460296097, "position": { "x": 6, "y": 0 @@ -6063,16 +7903,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 197, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5207, - "time": 0.5706594885598922, + "noteOrder": 6290, + "time": 0.6890982503364738, "position": { "x": 7, "y": 0 @@ -6091,11 +7931,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 197, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5281, - "time": 0.5787348586810228, + "noteOrder": 6339, + "time": 0.6944818304172276, "position": { "x": 7, "y": 0 @@ -6114,11 +7954,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 199, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5305, - "time": 0.5814266487213997, + "noteOrder": 6389, + "time": 0.6998654104979811, "position": { "x": 3, "y": 0 @@ -6137,11 +7977,11 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 199, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5379, - "time": 0.5895020188425303, + "noteOrder": 6438, + "time": 0.7052489905787349, "position": { "x": 3, "y": 0 @@ -6160,13 +8000,13 @@ "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 0, + "lineGroupId": 207, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5600, - "time": 0.6137281292059219, + "noteOrder": 6610, + "time": 0.7240915208613729, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6178,18 +8018,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 177, - "indexInLine": 1, + "lineGroupId": 207, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5649, - "time": 0.6191117092866757, + "noteOrder": 6634, + "time": 0.7267833109017496, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6201,18 +8041,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5698, - "time": 0.6244952893674293, + "noteOrder": 6610, + "time": 0.7240915208613729, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6224,18 +8064,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 179, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5747, - "time": 0.629878869448183, + "noteOrder": 6634, + "time": 0.7267833109017496, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6247,18 +8087,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5895, - "time": 0.6460296096904441, + "noteOrder": 6683, + "time": 0.7321668909825034, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6270,18 +8110,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5944, - "time": 0.6514131897711979, + "noteOrder": 6708, + "time": 0.7348586810228803, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6298,13 +8138,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5993, - "time": 0.6567967698519516, + "noteOrder": 6708, + "time": 0.7348586810228803, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6316,18 +8156,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6042, - "time": 0.6621803499327052, + "noteOrder": 6733, + "time": 0.7375504710632571, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6344,13 +8184,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 211, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6140, - "time": 0.6729475100942127, + "noteOrder": 6733, + "time": 0.7375504710632571, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6362,18 +8202,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 6165, - "time": 0.6756393001345895, + "noteOrder": 6733, + "time": 0.7375504710632571, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6390,13 +8230,13 @@ "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6239, - "time": 0.6837146702557201, + "noteOrder": 6757, + "time": 0.7402422611036339, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6408,18 +8248,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6263, - "time": 0.6864064602960969, + "noteOrder": 6757, + "time": 0.7402422611036339, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6431,18 +8271,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6288, - "time": 0.6890982503364738, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6459,13 +8299,13 @@ "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6337, - "time": 0.6944818304172276, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6482,11 +8322,11 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6386, - "time": 0.6998654104979811, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { "x": 3, "y": 0 @@ -6505,11 +8345,11 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6435, - "time": 0.7052489905787348, + "noteOrder": 6806, + "time": 0.7456258411843876, "position": { "x": 3, "y": 0 @@ -6528,11 +8368,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6607, - "time": 0.7240915208613727, + "noteOrder": 6806, + "time": 0.7456258411843876, "position": { "x": 4, "y": 0 @@ -6551,11 +8391,11 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6631, - "time": 0.7267833109017496, + "noteOrder": 6831, + "time": 0.7483176312247645, "position": { "x": 4, "y": 0 @@ -6574,13 +8414,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6607, - "time": 0.7240915208613727, + "noteOrder": 6831, + "time": 0.7483176312247645, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6592,18 +8432,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 208, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 6631, - "time": 0.7267833109017496, + "noteOrder": 6831, + "time": 0.7483176312247645, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6620,11 +8460,11 @@ "isPlayAudio": false }, { - "lineGroupId": 211, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6681, - "time": 0.7321668909825033, + "noteOrder": 6855, + "time": 0.7510094212651414, "position": { "x": 3, "y": 0 @@ -6638,18 +8478,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6730, - "time": 0.737550471063257, + "noteOrder": 6855, + "time": 0.7510094212651414, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6666,13 +8506,13 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6779, - "time": 0.7429340511440108, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6684,18 +8524,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6828, - "time": 0.7483176312247645, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6713,10 +8553,10 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6926, - "time": 0.7590847913862718, + "noteOrder": 6929, + "time": 0.7590847913862719, "position": { "x": 6, "y": 0 @@ -6736,9 +8576,9 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6951, + "noteOrder": 6954, "time": 0.7617765814266487, "position": { "x": 6, @@ -6759,10 +8599,10 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7024, - "time": 0.7698519515477792, + "noteOrder": 7027, + "time": 0.7698519515477793, "position": { "x": 4, "y": 0 @@ -6782,9 +8622,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7049, + "noteOrder": 7052, "time": 0.7725437415881562, "position": { "x": 4, @@ -6805,9 +8645,9 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7074, + "noteOrder": 7077, "time": 0.775235531628533, "position": { "x": 3, @@ -6828,10 +8668,10 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7123, - "time": 0.7806191117092867, + "noteOrder": 7126, + "time": 0.7806191117092868, "position": { "x": 3, "y": 0 @@ -6851,9 +8691,9 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7172, + "noteOrder": 7175, "time": 0.7860026917900403, "position": { "x": 7, @@ -6874,10 +8714,10 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7221, - "time": 0.791386271870794, + "noteOrder": 7224, + "time": 0.7913862718707941, "position": { "x": 7, "y": 0 @@ -6897,10 +8737,10 @@ }, { "lineGroupId": 245, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7663, - "time": 0.8398384925975774, + "noteOrder": 7666, + "time": 0.8398384925975775, "position": { "x": 3, "y": 0 @@ -6920,9 +8760,9 @@ }, { "lineGroupId": 245, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7712, + "noteOrder": 7715, "time": 0.845222072678331, "position": { "x": 3, @@ -6943,9 +8783,9 @@ }, { "lineGroupId": 247, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7761, + "noteOrder": 7765, "time": 0.8506056527590848, "position": { "x": 7, @@ -6966,9 +8806,9 @@ }, { "lineGroupId": 247, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7810, + "noteOrder": 7814, "time": 0.8559892328398385, "position": { "x": 7, @@ -6989,10 +8829,10 @@ }, { "lineGroupId": 257, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8056, - "time": 0.8829071332436069, + "noteOrder": 8059, + "time": 0.882907133243607, "position": { "x": 7, "y": 0 @@ -7012,9 +8852,9 @@ }, { "lineGroupId": 257, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8105, + "noteOrder": 8109, "time": 0.8882907133243607, "position": { "x": 7, @@ -7035,9 +8875,9 @@ }, { "lineGroupId": 259, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8154, + "noteOrder": 8158, "time": 0.8936742934051144, "position": { "x": 3, @@ -7058,10 +8898,10 @@ }, { "lineGroupId": 259, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8203, - "time": 0.8990578734858681, + "noteOrder": 8207, + "time": 0.8990578734858682, "position": { "x": 3, "y": 0 @@ -7081,10 +8921,10 @@ }, { "lineGroupId": 273, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8547, - "time": 0.936742934051144, + "noteOrder": 8551, + "time": 0.9367429340511441, "position": { "x": 7, "y": 0 @@ -7104,9 +8944,9 @@ }, { "lineGroupId": 273, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8596, + "noteOrder": 8600, "time": 0.9421265141318977, "position": { "x": 7, @@ -7127,10 +8967,10 @@ }, { "lineGroupId": 274, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8572, - "time": 0.9394347240915207, + "noteOrder": 8575, + "time": 0.939434724091521, "position": { "x": 3, "y": 0 @@ -7150,9 +8990,9 @@ }, { "lineGroupId": 274, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8596, + "noteOrder": 8600, "time": 0.9421265141318977, "position": { "x": 3, @@ -7173,10 +9013,10 @@ }, { "lineGroupId": 276, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8645, - "time": 0.9475100942126514, + "noteOrder": 8649, + "time": 0.9475100942126515, "position": { "x": 7, "y": 0 @@ -7196,10 +9036,10 @@ }, { "lineGroupId": 276, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8670, - "time": 0.9502018842530283, + "noteOrder": 8674, + "time": 0.9502018842530282, "position": { "x": 7, "y": 0 @@ -7219,9 +9059,9 @@ }, { "lineGroupId": 278, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8695, + "noteOrder": 8698, "time": 0.9528936742934051, "position": { "x": 3, @@ -7242,9 +9082,9 @@ }, { "lineGroupId": 278, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8719, + "noteOrder": 8723, "time": 0.955585464333782, "position": { "x": 3, @@ -7265,10 +9105,10 @@ }, { "lineGroupId": 284, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8842, - "time": 0.9690444145356661, + "noteOrder": 8846, + "time": 0.9690444145356664, "position": { "x": 7, "y": 0 @@ -7288,9 +9128,9 @@ }, { "lineGroupId": 284, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8867, + "noteOrder": 8870, "time": 0.971736204576043, "position": { "x": 7, @@ -7311,9 +9151,9 @@ }, { "lineGroupId": 286, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8891, + "noteOrder": 8895, "time": 0.9744279946164199, "position": { "x": 3, @@ -7334,10 +9174,10 @@ }, { "lineGroupId": 286, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8916, - "time": 0.9771197846567967, + "noteOrder": 8919, + "time": 0.9771197846567968, "position": { "x": 3, "y": 0 diff --git "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1b.json" "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1b.json" index c19990ac..d0710f2e 100644 --- "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1b.json" +++ "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/292_difficulty_1b.json" @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 1228, - "time": 0.1345895020188425, + "noteOrder": 1229, + "time": 0.13458950201884254, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 1425, - "time": 0.15612382234185732, + "time": 0.15612382234185734, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 1425, - "time": 0.15612382234185732, + "time": 0.15612382234185734, "position": { "x": 6, "y": 0 @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1621, + "noteOrder": 1622, "time": 0.17765814266487215, "position": { "x": 4, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 1916, - "time": 0.20995962314939434, + "noteOrder": 1917, + "time": 0.20995962314939437, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1965, - "time": 0.21534320323014802, + "noteOrder": 1966, + "time": 0.21534320323014808, "position": { "x": 7, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2014, - "time": 0.22072678331090173, + "noteOrder": 2015, + "time": 0.22072678331090176, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.24226110363391654, + "noteOrder": 2211, + "time": 0.2422611036339166, "position": { "x": 6, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2210, - "time": 0.24226110363391654, + "noteOrder": 2211, + "time": 0.2422611036339166, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.2853297442799461, + "noteOrder": 2605, + "time": 0.2853297442799462, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.2853297442799461, + "noteOrder": 2605, + "time": 0.2853297442799462, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2702, - "time": 0.29609690444145353, + "noteOrder": 2703, + "time": 0.2960969044414536, "position": { "x": 6, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2800, - "time": 0.30686406460296095, + "noteOrder": 2801, + "time": 0.306864064602961, "position": { "x": 4, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2996, - "time": 0.3283983849259758, + "noteOrder": 2998, + "time": 0.32839838492597584, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2996, - "time": 0.3283983849259758, + "noteOrder": 2998, + "time": 0.32839838492597584, "position": { "x": 4, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3095, + "noteOrder": 3096, "time": 0.33916554508748314, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3193, + "noteOrder": 3194, "time": 0.34993270524899056, "position": { "x": 6, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.3714670255720054, "position": { "x": 4, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3389, + "noteOrder": 3391, "time": 0.3714670255720054, "position": { "x": 6, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3439, - "time": 0.3768506056527591, + "noteOrder": 3440, + "time": 0.37685060565275913, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3488, + "noteOrder": 3489, "time": 0.3822341857335128, "position": { "x": 6, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3537, + "noteOrder": 3538, "time": 0.3876177658142665, "position": { "x": 3, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3586, + "noteOrder": 3587, "time": 0.39300134589502017, "position": { "x": 4, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3782, + "noteOrder": 3784, "time": 0.414535666218035, "position": { "x": 4, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3782, + "noteOrder": 3784, "time": 0.414535666218035, "position": { "x": 6, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.45760430686406456, + "noteOrder": 4177, + "time": 0.4576043068640646, "position": { "x": 4, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4175, - "time": 0.45760430686406456, + "noteOrder": 4177, + "time": 0.4576043068640646, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4470, + "noteOrder": 4472, "time": 0.4899057873485868, "position": { "x": 6, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4568, - "time": 0.5006729475100943, + "noteOrder": 4570, + "time": 0.5006729475100942, "position": { "x": 4, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4986, - "time": 0.5464333781965006, + "noteOrder": 4988, + "time": 0.5464333781965007, "position": { "x": 7, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5258, "time": 0.576043068640646, "position": { "x": 4, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5354, + "noteOrder": 5357, "time": 0.5868102288021535, "position": { "x": 6, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5403, - "time": 0.5921938088829071, + "noteOrder": 5406, + "time": 0.5921938088829072, "position": { "x": 3, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5453, + "noteOrder": 5455, "time": 0.5975773889636609, "position": { "x": 7, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5502, + "noteOrder": 5504, "time": 0.6029609690444145, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5551, - "time": 0.6083445491251682, + "noteOrder": 5553, + "time": 0.6083445491251683, "position": { "x": 6, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5600, - "time": 0.6137281292059219, + "noteOrder": 5602, + "time": 0.613728129205922, "position": { "x": 3, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5649, - "time": 0.6191117092866757, + "noteOrder": 5651, + "time": 0.6191117092866756, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5796, - "time": 0.6352624495289367, + "noteOrder": 5799, + "time": 0.6352624495289368, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5796, - "time": 0.6352624495289367, + "noteOrder": 5799, + "time": 0.6352624495289368, "position": { "x": 3, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5846, - "time": 0.6406460296096905, + "noteOrder": 5848, + "time": 0.6406460296096904, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5846, - "time": 0.6406460296096905, + "noteOrder": 5848, + "time": 0.6406460296096904, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 6337, + "noteOrder": 6339, "time": 0.6944818304172276, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 6435, - "time": 0.7052489905787348, + "noteOrder": 6438, + "time": 0.7052489905787349, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 6484, + "noteOrder": 6487, "time": 0.7106325706594886, "position": { "x": 3, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 6533, - "time": 0.7160161507402422, + "noteOrder": 6536, + "time": 0.7160161507402424, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 7123, - "time": 0.7806191117092867, + "noteOrder": 7126, + "time": 0.7806191117092868, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 7221, - "time": 0.791386271870794, + "noteOrder": 7224, + "time": 0.7913862718707941, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 7270, + "noteOrder": 7273, "time": 0.7967698519515478, "position": { "x": 7, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 7319, - "time": 0.8021534320323015, + "noteOrder": 7322, + "time": 0.8021534320323016, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 7516, + "noteOrder": 7519, "time": 0.8236877523553162, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 7565, + "noteOrder": 7568, "time": 0.82907133243607, "position": { "x": 6, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 7614, + "noteOrder": 7617, "time": 0.8344549125168237, "position": { "x": 5, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 7712, + "noteOrder": 7715, "time": 0.845222072678331, "position": { "x": 5, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 7761, + "noteOrder": 7765, "time": 0.8506056527590848, "position": { "x": 4, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 7810, + "noteOrder": 7814, "time": 0.8559892328398385, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 7909, + "noteOrder": 7912, "time": 0.8667563930013459, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 8007, - "time": 0.8775235531628532, + "noteOrder": 8010, + "time": 0.8775235531628534, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 8105, + "noteOrder": 8109, "time": 0.8882907133243607, "position": { "x": 2, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 8203, - "time": 0.8990578734858681, + "noteOrder": 8207, + "time": 0.8990578734858682, "position": { "x": 8, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 8253, - "time": 0.9044414535666218, + "noteOrder": 8256, + "time": 0.9044414535666219, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 8302, + "noteOrder": 8305, "time": 0.9098250336473755, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 8351, - "time": 0.9152086137281291, + "noteOrder": 8354, + "time": 0.9152086137281292, "position": { "x": 7, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 8400, - "time": 0.9205921938088829, + "noteOrder": 8403, + "time": 0.920592193808883, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 8449, - "time": 0.9259757738896366, + "noteOrder": 8453, + "time": 0.9259757738896367, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 8498, + "noteOrder": 8502, "time": 0.9313593539703903, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 8596, + "noteOrder": 8600, "time": 0.9421265141318977, "position": { "x": 6, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 8645, - "time": 0.9475100942126514, + "noteOrder": 8649, + "time": 0.9475100942126515, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 8695, + "noteOrder": 8698, "time": 0.9528936742934051, "position": { "x": 6, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 8744, - "time": 0.9582772543741588, + "noteOrder": 8747, + "time": 0.9582772543741589, "position": { "x": 3, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 8793, + "noteOrder": 8797, "time": 0.9636608344549126, "position": { "x": 4, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 8842, - "time": 0.9690444145356661, + "noteOrder": 8846, + "time": 0.9690444145356664, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 8891, + "noteOrder": 8895, "time": 0.9744279946164199, "position": { "x": 3, @@ -1596,7 +1596,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, "time": 0.010767160161507403, @@ -1619,9 +1619,9 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 196, + "noteOrder": 197, "time": 0.021534320323014805, "position": { "x": 7, @@ -1642,9 +1642,9 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 196, + "noteOrder": 197, "time": 0.021534320323014805, "position": { "x": 3, @@ -1665,10 +1665,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 246, - "time": 0.026917900403768503, + "time": 0.02691790040376851, "position": { "x": 3, "y": 0 @@ -1688,10 +1688,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 246, - "time": 0.026917900403768503, + "time": 0.02691790040376851, "position": { "x": 7, "y": 0 @@ -1711,7 +1711,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 295, "time": 0.03230148048452221, @@ -1734,7 +1734,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 295, "time": 0.03230148048452221, @@ -1757,7 +1757,7 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 393, "time": 0.04306864064602961, @@ -1780,7 +1780,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 393, "time": 0.04306864064602961, @@ -1803,7 +1803,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 442, "time": 0.04845222072678331, @@ -1826,10 +1826,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 491, - "time": 0.053835800807537006, + "time": 0.05383580080753702, "position": { "x": 3, "y": 0 @@ -1849,10 +1849,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 528, - "time": 0.05787348586810229, + "time": 0.057873485868102294, "position": { "x": 3, "y": 0 @@ -1872,7 +1872,7 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 565, "time": 0.06191117092866756, @@ -1895,10 +1895,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 639, - "time": 0.06998654104979811, + "time": 0.06998654104979812, "position": { "x": 7, "y": 0 @@ -1918,7 +1918,7 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 688, "time": 0.07537012113055182, @@ -1941,10 +1941,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 725, - "time": 0.07940780619111709, + "time": 0.0794078061911171, "position": { "x": 3, "y": 0 @@ -1964,9 +1964,9 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 761, + "noteOrder": 762, "time": 0.08344549125168237, "position": { "x": 7, @@ -1987,10 +1987,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 835, - "time": 0.09152086137281291, + "time": 0.09152086137281293, "position": { "x": 7, "y": 0 @@ -2010,10 +2010,10 @@ }, { "lineGroupId": 10, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1032, - "time": 0.11305518169582772, + "time": 0.11305518169582773, "position": { "x": 6, "y": 0 @@ -2033,10 +2033,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1081, - "time": 0.11843876177658143, + "time": 0.11843876177658144, "position": { "x": 3, "y": 0 @@ -2056,7 +2056,7 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1130, "time": 0.12382234185733512, @@ -2079,7 +2079,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1179, "time": 0.12920592193808883, @@ -2102,10 +2102,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1228, - "time": 0.1345895020188425, + "noteOrder": 1229, + "time": 0.13458950201884254, "position": { "x": 7, "y": 0 @@ -2125,10 +2125,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1277, - "time": 0.13997308209959622, + "noteOrder": 1278, + "time": 0.13997308209959625, "position": { "x": 3, "y": 0 @@ -2148,9 +2148,9 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.15074024226110364, "position": { "x": 3, @@ -2171,10 +2171,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1277, - "time": 0.13997308209959622, + "noteOrder": 1278, + "time": 0.13997308209959625, "position": { "x": 7, "y": 0 @@ -2194,9 +2194,9 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1375, + "noteOrder": 1376, "time": 0.15074024226110364, "position": { "x": 7, @@ -2217,10 +2217,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1474, - "time": 0.16150740242261102, + "time": 0.16150740242261105, "position": { "x": 7, "y": 0 @@ -2240,7 +2240,7 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1523, "time": 0.16689098250336473, @@ -2263,9 +2263,9 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1572, + "noteOrder": 1573, "time": 0.17227456258411844, "position": { "x": 3, @@ -2286,9 +2286,9 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1621, + "noteOrder": 1622, "time": 0.17765814266487215, "position": { "x": 3, @@ -2309,10 +2309,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1670, - "time": 0.18304172274562583, + "noteOrder": 1671, + "time": 0.18304172274562586, "position": { "x": 7, "y": 0 @@ -2332,9 +2332,9 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1768, + "noteOrder": 1769, "time": 0.19380888290713325, "position": { "x": 7, @@ -2355,10 +2355,10 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1670, - "time": 0.18304172274562583, + "noteOrder": 1671, + "time": 0.18304172274562586, "position": { "x": 3, "y": 0 @@ -2378,9 +2378,9 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1768, + "noteOrder": 1769, "time": 0.19380888290713325, "position": { "x": 3, @@ -2401,10 +2401,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2063, - "time": 0.22611036339165544, + "noteOrder": 2064, + "time": 0.22611036339165547, "position": { "x": 3, "y": 0 @@ -2424,10 +2424,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.23687752355316286, + "noteOrder": 2162, + "time": 0.23687752355316288, "position": { "x": 3, "y": 0 @@ -2447,10 +2447,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2063, - "time": 0.22611036339165544, + "noteOrder": 2064, + "time": 0.22611036339165547, "position": { "x": 7, "y": 0 @@ -2470,10 +2470,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2161, - "time": 0.23687752355316286, + "noteOrder": 2162, + "time": 0.23687752355316288, "position": { "x": 7, "y": 0 @@ -2493,9 +2493,9 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2260, + "noteOrder": 2261, "time": 0.24764468371467024, "position": { "x": 7, @@ -2515,11 +2515,11 @@ "isPlayAudio": false }, { - "lineGroupId": 36, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2358, - "time": 0.25841184387617766, + "noteOrder": 2310, + "time": 0.253028263795424, "position": { "x": 7, "y": 0 @@ -2533,18 +2533,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2456, - "time": 0.269179004037685, + "noteOrder": 2310, + "time": 0.253028263795424, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2561,13 +2561,13 @@ "isPlayAudio": false }, { - "lineGroupId": 37, - "indexInLine": 1, + "lineGroupId": 35, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2554, - "time": 0.27994616419919244, + "noteOrder": 2359, + "time": 0.25841184387617766, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2584,13 +2584,13 @@ "isPlayAudio": false }, { - "lineGroupId": 38, - "indexInLine": 0, + "lineGroupId": 35, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2505, - "time": 0.27456258411843876, + "noteOrder": 2359, + "time": 0.25841184387617766, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2602,39 +2602,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 38, + "lineGroupId": 36, "indexInLine": 1, "isSliding": false, - "noteOrder": 2554, - "time": 0.27994616419919244, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 42, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 2653, - "time": 0.29071332436069985, + "noteOrder": 2359, + "time": 0.25841184387617766, "position": { "x": 7, "y": 0 @@ -2648,16 +2625,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2702, - "time": 0.29609690444145353, + "noteOrder": 2408, + "time": 0.2637954239569314, "position": { "x": 7, "y": 0 @@ -2671,18 +2648,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2751, - "time": 0.30148048452220727, + "noteOrder": 2408, + "time": 0.2637954239569314, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2699,13 +2676,13 @@ "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 1, + "lineGroupId": 36, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2800, - "time": 0.30686406460296095, + "noteOrder": 2457, + "time": 0.2691790040376851, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2722,13 +2699,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 36, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2849, - "time": 0.31224764468371463, + "noteOrder": 2457, + "time": 0.2691790040376851, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2745,13 +2722,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 37, "indexInLine": 1, "isSliding": false, - "noteOrder": 2947, - "time": 0.32301480484522205, + "noteOrder": 2457, + "time": 0.2691790040376851, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2763,16 +2740,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 37, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2849, - "time": 0.31224764468371463, + "noteOrder": 2555, + "time": 0.2799461641991925, "position": { "x": 7, "y": 0 @@ -2791,13 +2768,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 38, "indexInLine": 1, "isSliding": false, - "noteOrder": 2947, - "time": 0.32301480484522205, + "noteOrder": 2506, + "time": 0.27456258411843876, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2809,16 +2786,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 38, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3046, - "time": 0.33378196500672946, + "noteOrder": 2555, + "time": 0.2799461641991925, "position": { "x": 3, "y": 0 @@ -2837,13 +2814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 50, + "lineGroupId": 42, "indexInLine": 1, "isSliding": false, - "noteOrder": 3095, - "time": 0.33916554508748314, + "noteOrder": 2654, + "time": 0.29071332436069985, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2855,16 +2832,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3144, - "time": 0.3445491251682369, + "noteOrder": 2703, + "time": 0.2960969044414536, "position": { "x": 7, "y": 0 @@ -2883,13 +2860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 44, "indexInLine": 1, "isSliding": false, - "noteOrder": 3193, - "time": 0.34993270524899056, + "noteOrder": 2752, + "time": 0.30148048452220727, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2901,18 +2878,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 44, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, - "time": 0.3553162853297443, + "noteOrder": 2801, + "time": 0.306864064602961, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2924,18 +2901,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 46, "indexInLine": 1, "isSliding": false, - "noteOrder": 3340, - "time": 0.36608344549125166, + "noteOrder": 2850, + "time": 0.3122476446837147, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2947,16 +2924,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3242, - "time": 0.3553162853297443, + "noteOrder": 2949, + "time": 0.3230148048452221, "position": { "x": 3, "y": 0 @@ -2975,13 +2952,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, + "lineGroupId": 47, "indexInLine": 1, "isSliding": false, - "noteOrder": 3340, - "time": 0.36608344549125166, + "noteOrder": 2850, + "time": 0.3122476446837147, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2993,16 +2970,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 62, - "indexInLine": 0, + "lineGroupId": 47, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3635, - "time": 0.3983849259757739, + "noteOrder": 2949, + "time": 0.3230148048452221, "position": { "x": 7, "y": 0 @@ -3021,13 +2998,13 @@ "isPlayAudio": false }, { - "lineGroupId": 62, + "lineGroupId": 50, "indexInLine": 1, "isSliding": false, - "noteOrder": 3733, - "time": 0.4091520861372813, + "noteOrder": 3047, + "time": 0.33378196500672946, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3039,16 +3016,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3635, - "time": 0.3983849259757739, + "noteOrder": 3096, + "time": 0.33916554508748314, "position": { "x": 3, "y": 0 @@ -3067,13 +3044,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 52, "indexInLine": 1, "isSliding": false, - "noteOrder": 3733, - "time": 0.4091520861372813, + "noteOrder": 3145, + "time": 0.3445491251682369, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3085,18 +3062,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3832, - "time": 0.4199192462987887, + "noteOrder": 3194, + "time": 0.34993270524899056, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3108,18 +3085,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3930, - "time": 0.43068640646029605, + "noteOrder": 3243, + "time": 0.3553162853297443, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3136,13 +3113,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4028, - "time": 0.44145356662180346, + "noteOrder": 3342, + "time": 0.3660834454912517, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3154,16 +3131,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, + "lineGroupId": 55, "indexInLine": 1, "isSliding": false, - "noteOrder": 4126, - "time": 0.4522207267833109, + "noteOrder": 3243, + "time": 0.3553162853297443, "position": { "x": 3, "y": 0 @@ -3182,13 +3159,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 55, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4077, - "time": 0.4468371467025572, + "noteOrder": 3342, + "time": 0.3660834454912517, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3200,16 +3177,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, + "lineGroupId": 62, "indexInLine": 1, "isSliding": false, - "noteOrder": 4126, - "time": 0.4522207267833109, + "noteOrder": 3637, + "time": 0.3983849259757739, "position": { "x": 7, "y": 0 @@ -3228,13 +3205,1163 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 62, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4421, - "time": 0.48452220726783307, + "noteOrder": 3735, + "time": 0.4091520861372813, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3637, + "time": 0.3983849259757739, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3735, + "time": 0.4091520861372813, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3833, + "time": 0.41991924629878874, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3882, + "time": 0.4253028263795424, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3882, + "time": 0.4253028263795424, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3931, + "time": 0.43068640646029616, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3931, + "time": 0.43068640646029616, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3931, + "time": 0.43068640646029616, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3981, + "time": 0.4360699865410498, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3981, + "time": 0.4360699865410498, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4030, + "time": 0.4414535666218035, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4030, + "time": 0.4414535666218035, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4030, + "time": 0.4414535666218035, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4128, + "time": 0.45222072678331093, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4079, + "time": 0.4468371467025572, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4128, + "time": 0.45222072678331093, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4423, + "time": 0.4845222072678332, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4472, + "time": 0.4899057873485868, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4521, + "time": 0.4952893674293405, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4570, + "time": 0.5006729475100942, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4816, + "time": 0.5275908479138628, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4865, + "time": 0.5329744279946165, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4865, + "time": 0.5329744279946165, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4914, + "time": 0.5383580080753702, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4939, + "time": 0.541049798115747, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4988, + "time": 0.5464333781965007, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5209, + "time": 0.5706594885598923, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5258, + "time": 0.576043068640646, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5307, + "time": 0.5814266487213997, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5357, + "time": 0.5868102288021535, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5701, + "time": 0.6244952893674294, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5750, + "time": 0.629878869448183, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5701, + "time": 0.6244952893674294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5750, + "time": 0.629878869448183, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5897, + "time": 0.6460296096904442, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6514131897711979, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5946, + "time": 0.6514131897711979, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6567967698519517, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6567967698519517, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5995, + "time": 0.6567967698519517, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6045, + "time": 0.6621803499327052, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6045, + "time": 0.6621803499327052, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6094, + "time": 0.6675639300134589, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6094, + "time": 0.6675639300134589, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6094, + "time": 0.6675639300134589, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6729475100942127, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6143, + "time": 0.6729475100942127, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6192, + "time": 0.6783310901749663, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6192, + "time": 0.6783310901749663, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6192, + "time": 0.6783310901749663, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3251,13 +4378,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4470, - "time": 0.4899057873485868, + "noteOrder": 6241, + "time": 0.6837146702557201, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3274,13 +4401,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4519, - "time": 0.4952893674293405, + "noteOrder": 6241, + "time": 0.6837146702557201, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3292,18 +4419,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 107, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4568, - "time": 0.5006729475100943, + "noteOrder": 6290, + "time": 0.6890982503364738, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3315,18 +4442,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4814, - "time": 0.5275908479138628, + "noteOrder": 6290, + "time": 0.6890982503364738, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3338,16 +4465,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, + "lineGroupId": 108, "indexInLine": 1, "isSliding": false, - "noteOrder": 4863, - "time": 0.5329744279946164, + "noteOrder": 6290, + "time": 0.6890982503364738, "position": { "x": 3, "y": 0 @@ -3366,13 +4493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4863, - "time": 0.5329744279946164, + "noteOrder": 6339, + "time": 0.6944818304172276, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3384,16 +4511,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 110, "indexInLine": 1, "isSliding": false, - "noteOrder": 4912, - "time": 0.53835800807537, + "noteOrder": 6389, + "time": 0.6998654104979811, "position": { "x": 7, "y": 0 @@ -3412,13 +4539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4937, - "time": 0.5410497981157469, + "noteOrder": 6438, + "time": 0.7052489905787349, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3430,18 +4557,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, + "lineGroupId": 114, "indexInLine": 1, "isSliding": false, - "noteOrder": 4986, - "time": 0.5464333781965006, + "noteOrder": 6585, + "time": 0.721399730820996, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3458,13 +4585,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5207, - "time": 0.5706594885598922, + "noteOrder": 6634, + "time": 0.7267833109017496, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3481,13 +4608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 115, "indexInLine": 1, "isSliding": false, - "noteOrder": 5256, - "time": 0.576043068640646, + "noteOrder": 6585, + "time": 0.721399730820996, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3499,18 +4626,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5305, - "time": 0.5814266487213997, + "noteOrder": 6634, + "time": 0.7267833109017496, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3527,11 +4654,11 @@ "isPlayAudio": false }, { - "lineGroupId": 89, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 5354, - "time": 0.5868102288021535, + "noteOrder": 6683, + "time": 0.7321668909825034, "position": { "x": 7, "y": 0 @@ -3550,36 +4677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5698, - "time": 0.6244952893674293, - "position": { - "x": 4, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5747, - "time": 0.629878869448183, + "noteOrder": 6733, + "time": 0.7375504710632571, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3591,16 +4695,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5698, - "time": 0.6244952893674293, + "noteOrder": 6733, + "time": 0.7375504710632571, "position": { "x": 6, "y": 0 @@ -3619,11 +4723,11 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 117, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5747, - "time": 0.629878869448183, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { "x": 6, "y": 0 @@ -3642,13 +4746,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 117, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5895, - "time": 0.6460296096904441, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3660,18 +4764,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5993, - "time": 0.6567967698519516, + "noteOrder": 6782, + "time": 0.7429340511440108, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3683,18 +4787,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6091, - "time": 0.6675639300134589, + "noteOrder": 6831, + "time": 0.7483176312247645, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3711,13 +4815,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6189, - "time": 0.6783310901749663, + "noteOrder": 6831, + "time": 0.7483176312247645, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3729,18 +4833,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6288, - "time": 0.6890982503364738, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3757,13 +4861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6337, - "time": 0.6944818304172276, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3780,11 +4884,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6386, - "time": 0.6998654104979811, + "noteOrder": 6880, + "time": 0.7537012113055183, "position": { "x": 7, "y": 0 @@ -3803,11 +4907,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6435, - "time": 0.7052489905787348, + "noteOrder": 6929, + "time": 0.7590847913862719, "position": { "x": 7, "y": 0 @@ -3826,13 +4930,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6582, - "time": 0.721399730820996, + "noteOrder": 6929, + "time": 0.7590847913862719, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3844,18 +4948,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6631, - "time": 0.7267833109017496, + "noteOrder": 6978, + "time": 0.7644683714670256, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3867,18 +4971,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6582, - "time": 0.721399730820996, + "noteOrder": 6978, + "time": 0.7644683714670256, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3895,13 +4999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 120, "indexInLine": 1, "isSliding": false, - "noteOrder": 6631, - "time": 0.7267833109017496, + "noteOrder": 6978, + "time": 0.7644683714670256, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3913,16 +5017,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6681, - "time": 0.7321668909825033, + "noteOrder": 7027, + "time": 0.7698519515477793, "position": { "x": 7, "y": 0 @@ -3936,18 +5040,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6779, - "time": 0.7429340511440108, + "noteOrder": 7027, + "time": 0.7698519515477793, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3964,13 +5068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6877, - "time": 0.7537012113055181, + "noteOrder": 7077, + "time": 0.775235531628533, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3982,18 +5086,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6975, - "time": 0.7644683714670256, + "noteOrder": 7077, + "time": 0.775235531628533, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4011,9 +5115,9 @@ }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7074, + "noteOrder": 7077, "time": 0.775235531628533, "position": { "x": 7, @@ -4034,10 +5138,10 @@ }, { "lineGroupId": 121, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7123, - "time": 0.7806191117092867, + "noteOrder": 7126, + "time": 0.7806191117092868, "position": { "x": 7, "y": 0 @@ -4057,9 +5161,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7172, + "noteOrder": 7175, "time": 0.7860026917900403, "position": { "x": 3, @@ -4080,10 +5184,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7221, - "time": 0.791386271870794, + "noteOrder": 7224, + "time": 0.7913862718707941, "position": { "x": 3, "y": 0 @@ -4103,9 +5207,9 @@ }, { "lineGroupId": 127, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7368, + "noteOrder": 7371, "time": 0.8075370121130552, "position": { "x": 6, @@ -4126,10 +5230,10 @@ }, { "lineGroupId": 127, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7417, - "time": 0.8129205921938089, + "noteOrder": 7421, + "time": 0.812920592193809, "position": { "x": 6, "y": 0 @@ -4149,9 +5253,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7368, + "noteOrder": 7371, "time": 0.8075370121130552, "position": { "x": 4, @@ -4172,10 +5276,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7417, - "time": 0.8129205921938089, + "noteOrder": 7421, + "time": 0.812920592193809, "position": { "x": 4, "y": 0 @@ -4195,9 +5299,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7467, + "noteOrder": 7470, "time": 0.8183041722745626, "position": { "x": 3, @@ -4218,10 +5322,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7663, - "time": 0.8398384925975774, + "noteOrder": 7666, + "time": 0.8398384925975775, "position": { "x": 3, "y": 0 @@ -4241,10 +5345,10 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7663, - "time": 0.8398384925975774, + "noteOrder": 7666, + "time": 0.8398384925975775, "position": { "x": 7, "y": 0 @@ -4264,10 +5368,10 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7860, - "time": 0.8613728129205921, + "noteOrder": 7863, + "time": 0.8613728129205923, "position": { "x": 7, "y": 0 @@ -4287,10 +5391,10 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7860, - "time": 0.8613728129205921, + "noteOrder": 7863, + "time": 0.8613728129205923, "position": { "x": 3, "y": 0 @@ -4310,9 +5414,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7909, + "noteOrder": 7912, "time": 0.8667563930013459, "position": { "x": 3, @@ -4333,10 +5437,10 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7958, - "time": 0.8721399730820997, + "noteOrder": 7961, + "time": 0.8721399730820996, "position": { "x": 7, "y": 0 @@ -4356,10 +5460,10 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8007, - "time": 0.8775235531628532, + "noteOrder": 8010, + "time": 0.8775235531628534, "position": { "x": 7, "y": 0 @@ -4379,10 +5483,10 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8056, - "time": 0.8829071332436069, + "noteOrder": 8059, + "time": 0.882907133243607, "position": { "x": 4, "y": 0 @@ -4402,9 +5506,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8105, + "noteOrder": 8109, "time": 0.8882907133243607, "position": { "x": 4, @@ -4425,9 +5529,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8154, + "noteOrder": 8158, "time": 0.8936742934051144, "position": { "x": 6, @@ -4448,10 +5552,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8203, - "time": 0.8990578734858681, + "noteOrder": 8207, + "time": 0.8990578734858682, "position": { "x": 6, "y": 0 @@ -4471,10 +5575,10 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8547, - "time": 0.936742934051144, + "noteOrder": 8551, + "time": 0.9367429340511441, "position": { "x": 4, "y": 0 @@ -4494,9 +5598,9 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8596, + "noteOrder": 8600, "time": 0.9421265141318977, "position": { "x": 4, @@ -4517,9 +5621,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8940, + "noteOrder": 8944, "time": 0.9798115746971736, "position": { "x": 4, @@ -4540,10 +5644,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8989, - "time": 0.9851951547779273, + "noteOrder": 8993, + "time": 0.9851951547779274, "position": { "x": 4, "y": 0 @@ -4563,9 +5667,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 8940, + "noteOrder": 8944, "time": 0.9798115746971736, "position": { "x": 6, @@ -4586,10 +5690,10 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 8989, - "time": 0.9851951547779273, + "noteOrder": 8993, + "time": 0.9851951547779274, "position": { "x": 6, "y": 0 diff --git "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/info.json" "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/info.json" index 5d5f1704..0927d600 100644 --- "a/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/info.json" +++ "b/tracks/\343\203\246\343\203\241\343\203\226\343\202\255/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u30e6\u30e1\u30d6\u30ad", - "SongLength": "124.055510", + "SongLength": "114.102857", "SongAuthorName": "\u7d2b\u5d0e \u96ea,Risa Yuzuki,709sec. by BEMANI Sound Team \"PHQUASE & SYUNN\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1a.json" "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1a.json" index c153f164..5452c187 100644 --- "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1a.json" +++ "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1a.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 313, - "time": 0.038039502560351136, + "time": 0.03803950256035113, "position": { "x": 5, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 577, - "time": 0.0702267739575713, + "time": 0.07022677395757132, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 625, - "time": 0.07607900512070227, + "time": 0.07607900512070226, "position": { "x": 4, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.09363569861009509, "position": { "x": 7, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.09656181419166056, "position": { "x": 5, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.09948792977322604, "position": { "x": 4, @@ -334,7 +334,7 @@ }, { "noteOrder": 1058, - "time": 0.12874908558888074, + "time": 0.12874908558888076, "position": { "x": 5, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1154, - "time": 0.1404535479151426, + "time": 0.14045354791514264, "position": { "x": 3, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.15508412582297, "position": { "x": 4, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.16093635698610093, + "noteOrder": 1323, + "time": 0.16093635698610095, "position": { "x": 6, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.16386247256766642, "position": { "x": 3, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1371, "time": 0.1667885881492319, "position": { "x": 3, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.16971470373079736, + "noteOrder": 1395, + "time": 0.16971470373079733, "position": { "x": 5, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.17264081931236283, "position": { "x": 7, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.17849305047549377, "position": { "x": 4, @@ -594,7 +594,7 @@ }, { "noteOrder": 1515, - "time": 0.18434528163862474, + "time": 0.1843452816386247, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.21068032187271396, "position": { "x": 6, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.2165325530358449, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.22238478419897584, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1851, - "time": 0.22531089978054133, + "noteOrder": 1852, + "time": 0.2253108997805413, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.2282370153621068, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.23116313094367225, + "noteOrder": 1900, + "time": 0.23116313094367227, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.23408924652523772, "position": { "x": 3, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1947, - "time": 0.2370153621068032, + "noteOrder": 1948, + "time": 0.23701536210680318, "position": { "x": 3, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.23994147768836868, "position": { "x": 3, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1995, + "noteOrder": 1996, "time": 0.24286759326993415, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2043, + "noteOrder": 2044, "time": 0.2487198244330651, "position": { "x": 7, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.25164594001463053, "position": { "x": 4, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.25457205559619606, "position": { "x": 7, @@ -1014,7 +1014,7 @@ }, { "noteOrder": 2116, - "time": 0.25749817117776147, + "time": 0.2574981711777615, "position": { "x": 4, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2212, + "noteOrder": 2213, "time": 0.2692026335040234, "position": { "x": 7, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2236, - "time": 0.2721287490855889, + "noteOrder": 2237, + "time": 0.2721287490855888, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.27505486466715434, + "noteOrder": 2261, + "time": 0.2750548646671543, "position": { "x": 7, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.2779809802487198, "position": { "x": 4, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.2809070958302852, + "noteOrder": 2309, + "time": 0.2809070958302853, "position": { "x": 3, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.28383321141185075, "position": { "x": 3, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.2867593269934162, "position": { "x": 3, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2380, + "noteOrder": 2381, "time": 0.2896854425749817, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.2984637893196781, + "noteOrder": 2453, + "time": 0.29846378931967815, "position": { "x": 5, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2476, - "time": 0.30138990490124357, + "noteOrder": 2477, + "time": 0.3013899049012436, "position": { "x": 3, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.31016825164594, "position": { "x": 5, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2573, "time": 0.31309436722750544, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2596, + "noteOrder": 2597, "time": 0.3160204828090709, "position": { "x": 3, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2644, - "time": 0.32187271397220185, + "noteOrder": 2645, + "time": 0.3218727139722019, "position": { "x": 7, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2813, - "time": 0.3423555230431602, + "noteOrder": 2814, + "time": 0.34235552304316014, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2861, + "noteOrder": 2862, "time": 0.34820775420629113, "position": { "x": 3, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.3511338697878566, "position": { "x": 3, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.35405998536942207, "position": { "x": 3, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.35698610095098754, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.359912216532553, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3005, - "time": 0.36576444769568395, + "noteOrder": 3006, + "time": 0.365764447695684, "position": { "x": 7, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.3686905632772495, + "noteOrder": 3030, + "time": 0.3686905632772494, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.3716166788588149, "position": { "x": 7, @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3101, - "time": 0.3774689100219459, + "noteOrder": 3102, + "time": 0.3774689100219458, "position": { "x": 5, "y": 0 @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3367, "time": 0.40965618141916604, "position": { "x": 7, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3391, "time": 0.4125822970007315, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.415508412582297, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.4213606437454279, "position": { "x": 5, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.42721287490855886, "position": { "x": 6, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3558, + "noteOrder": 3559, "time": 0.4330651060716898, "position": { "x": 7, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3583, "time": 0.43599122165325527, "position": { "x": 5, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3606, + "noteOrder": 3607, "time": 0.43891733723482074, "position": { "x": 4, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3752, "time": 0.4564740307242136, "position": { "x": 3, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.459400146305779, + "noteOrder": 3776, + "time": 0.4594001463057791, "position": { "x": 4, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.4623262618873445, + "noteOrder": 3800, + "time": 0.46232626188734455, "position": { "x": 6, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.46817849305047543, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3895, - "time": 0.4740307242136064, + "noteOrder": 3896, + "time": 0.47403072421360637, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3943, + "noteOrder": 3944, "time": 0.47988295537673736, "position": { "x": 3, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3967, + "noteOrder": 3968, "time": 0.48280907095830283, "position": { "x": 7, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3991, + "noteOrder": 3992, "time": 0.4857351865398683, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3991, + "noteOrder": 3992, "time": 0.4857351865398683, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4231, - "time": 0.5149963423555229, + "noteOrder": 4233, + "time": 0.514996342355523, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4257, "time": 0.5179224579370885, "position": { "x": 5, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4281, "time": 0.520848573518654, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.5267008046817849, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.5325530358449158, + "noteOrder": 4377, + "time": 0.5325530358449159, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4544, + "noteOrder": 4545, "time": 0.5530358449158741, "position": { "x": 5, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4592, + "noteOrder": 4593, "time": 0.558888076079005, "position": { "x": 5, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4688, + "noteOrder": 4690, "time": 0.5705925384052669, "position": { "x": 5, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.5735186539868324, "position": { "x": 7, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.5764447695683979, + "noteOrder": 4738, + "time": 0.576444769568398, "position": { "x": 3, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.5793708851499634, "position": { "x": 6, @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.5793708851499634, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5097, + "noteOrder": 5098, "time": 0.62033650329188, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5121, + "noteOrder": 5122, "time": 0.6232626188734455, "position": { "x": 5, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5145, + "noteOrder": 5146, "time": 0.6261887344550109, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5433, - "time": 0.6613021214337965, + "noteOrder": 5435, + "time": 0.6613021214337966, "position": { "x": 7, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5529, - "time": 0.6730065837600585, + "noteOrder": 5531, + "time": 0.6730065837600584, "position": { "x": 3, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5625, - "time": 0.6847110460863204, + "noteOrder": 5627, + "time": 0.6847110460863203, "position": { "x": 3, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5649, + "noteOrder": 5652, "time": 0.6876371616678858, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5722, + "noteOrder": 5724, "time": 0.6964155084125823, "position": { "x": 7, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5746, + "noteOrder": 5748, "time": 0.6993416239941477, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5770, + "noteOrder": 5772, "time": 0.7022677395757132, "position": { "x": 6, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5794, + "noteOrder": 5796, "time": 0.7051938551572786, "position": { "x": 4, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5818, + "noteOrder": 5820, "time": 0.7081199707388441, "position": { "x": 3, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5818, + "noteOrder": 5820, "time": 0.7081199707388441, "position": { "x": 7, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5842, + "noteOrder": 5844, "time": 0.7110460863204097, "position": { "x": 6, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5842, + "noteOrder": 5844, "time": 0.7110460863204097, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 5962, + "noteOrder": 5964, "time": 0.725676664228237, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 5986, + "noteOrder": 5988, "time": 0.7286027798098025, "position": { "x": 4, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6010, - "time": 0.7315288953913679, + "noteOrder": 6012, + "time": 0.731528895391368, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6010, - "time": 0.7315288953913679, + "noteOrder": 6012, + "time": 0.731528895391368, "position": { "x": 4, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6034, - "time": 0.7344550109729333, + "noteOrder": 6036, + "time": 0.7344550109729334, "position": { "x": 6, "y": 0 @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 6034, - "time": 0.7344550109729333, + "noteOrder": 6036, + "time": 0.7344550109729334, "position": { "x": 4, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 6250, + "noteOrder": 6253, "time": 0.7607900512070226, "position": { "x": 5, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6299, - "time": 0.7666422823701536, + "noteOrder": 6301, + "time": 0.7666422823701535, "position": { "x": 4, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6443, + "noteOrder": 6445, "time": 0.7841989758595465, "position": { "x": 5, @@ -2593,8 +2593,8 @@ "isPlayAudio": false }, { - "noteOrder": 6491, - "time": 0.7900512070226773, + "noteOrder": 6493, + "time": 0.7900512070226774, "position": { "x": 6, "y": 0 @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 6731, + "noteOrder": 6734, "time": 0.8193123628383321, "position": { "x": 7, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6755, + "noteOrder": 6758, "time": 0.8222384784198975, "position": { "x": 5, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6779, + "noteOrder": 6782, "time": 0.825164594001463, "position": { "x": 3, @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 6803, - "time": 0.8280907095830286, + "noteOrder": 6806, + "time": 0.8280907095830284, "position": { "x": 5, "y": 0 @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6827, + "noteOrder": 6830, "time": 0.831016825164594, "position": { "x": 7, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6851, + "noteOrder": 6854, "time": 0.8339429407461594, "position": { "x": 3, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 7020, + "noteOrder": 7022, "time": 0.8544257498171177, "position": { "x": 5, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 7068, + "noteOrder": 7070, "time": 0.8602779809802487, "position": { "x": 6, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 7212, + "noteOrder": 7215, "time": 0.8778346744696415, "position": { "x": 5, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 7260, - "time": 0.8836869056327725, + "noteOrder": 7263, + "time": 0.8836869056327724, "position": { "x": 4, "y": 0 @@ -2813,7 +2813,7 @@ "isPlayAudio": false }, { - "noteOrder": 7501, + "noteOrder": 7503, "time": 0.9129480614484272, "position": { "x": 3, @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 7525, + "noteOrder": 7527, "time": 0.9158741770299926, "position": { "x": 5, @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 7549, - "time": 0.918800292611558, + "noteOrder": 7551, + "time": 0.9188002926115582, "position": { "x": 7, "y": 0 @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 7573, + "noteOrder": 7575, "time": 0.9217264081931236, "position": { "x": 5, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 7597, - "time": 0.924652523774689, + "noteOrder": 7599, + "time": 0.9246525237746891, "position": { "x": 3, "y": 0 @@ -2913,7 +2913,7 @@ "isPlayAudio": false }, { - "noteOrder": 7621, + "noteOrder": 7624, "time": 0.9275786393562545, "position": { "x": 7, @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 7645, - "time": 0.93050475493782, + "noteOrder": 7648, + "time": 0.9305047549378199, "position": { "x": 6, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 7645, - "time": 0.93050475493782, + "noteOrder": 7648, + "time": 0.9305047549378199, "position": { "x": 4, "y": 0 @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 7669, + "noteOrder": 7672, "time": 0.9334308705193854, "position": { "x": 7, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 7669, + "noteOrder": 7672, "time": 0.9334308705193854, "position": { "x": 3, @@ -3016,7 +3016,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.011704462326261886, @@ -3039,7 +3039,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 120, "time": 0.014630577907827357, @@ -3062,7 +3062,7 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 168, "time": 0.020482809070958303, @@ -3085,10 +3085,10 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.03511338697878565, + "noteOrder": 289, + "time": 0.03511338697878566, "position": { "x": 3, "y": 0 @@ -3108,10 +3108,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 313, - "time": 0.038039502560351136, + "time": 0.03803950256035113, "position": { "x": 3, "y": 0 @@ -3131,7 +3131,7 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 361, "time": 0.043891733723482075, @@ -3154,7 +3154,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, "time": 0.05852231163130943, @@ -3175,12 +3175,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 10, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 505, + "time": 0.061448427212874905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 10, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 505, + "time": 0.061448427212874905, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 529, - "time": 0.06437454279444037, + "time": 0.06437454279444038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 11, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 553, + "time": 0.06730065837600585, "position": { "x": 7, "y": 0 @@ -3198,9 +3267,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 11, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 553, + "time": 0.06730065837600585, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 649, "time": 0.07900512070226773, @@ -3223,7 +3315,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 673, "time": 0.08193123628383321, @@ -3246,9 +3338,9 @@ }, { "lineGroupId": 15, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 769, + "noteOrder": 770, "time": 0.09363569861009509, "position": { "x": 5, @@ -3269,9 +3361,9 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 865, + "noteOrder": 866, "time": 0.10534016093635698, "position": { "x": 3, @@ -3290,9 +3382,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 890, + "time": 0.10826627651792245, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 890, + "time": 0.10826627651792245, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 914, "time": 0.11119239209948792, @@ -3313,9 +3451,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 23, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 938, + "time": 0.1141185076810534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 23, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 938, + "time": 0.1141185076810534, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1034, "time": 0.12582297000731527, @@ -3338,10 +3522,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1058, - "time": 0.12874908558888074, + "time": 0.12874908558888076, "position": { "x": 7, "y": 0 @@ -3361,10 +3545,10 @@ }, { "lineGroupId": 27, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1154, - "time": 0.1404535479151426, + "time": 0.14045354791514264, "position": { "x": 5, "y": 0 @@ -3384,10 +3568,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1250, - "time": 0.15215801024140455, + "noteOrder": 1251, + "time": 0.15215801024140452, "position": { "x": 3, "y": 0 @@ -3407,9 +3591,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.15508412582297, "position": { "x": 3, @@ -3430,9 +3614,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.15801024140453546, "position": { "x": 7, @@ -3453,10 +3637,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1322, - "time": 0.16093635698610093, + "noteOrder": 1323, + "time": 0.16093635698610095, "position": { "x": 7, "y": 0 @@ -3476,9 +3660,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.1755669348939283, "position": { "x": 3, @@ -3499,9 +3683,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.17849305047549377, "position": { "x": 3, @@ -3522,9 +3706,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.18141916605705924, "position": { "x": 7, @@ -3545,10 +3729,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1515, - "time": 0.18434528163862474, + "time": 0.1843452816386247, "position": { "x": 7, "y": 0 @@ -3568,7 +3752,7 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1635, "time": 0.19897585954645208, @@ -3591,7 +3775,7 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1707, "time": 0.2077542062911485, @@ -3614,9 +3798,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1755, + "noteOrder": 1756, "time": 0.21360643745427943, "position": { "x": 7, @@ -3637,9 +3821,9 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1779, + "noteOrder": 1780, "time": 0.2165325530358449, "position": { "x": 7, @@ -3660,9 +3844,9 @@ }, { "lineGroupId": 56, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1803, + "noteOrder": 1804, "time": 0.21945866861741037, "position": { "x": 4, @@ -3683,9 +3867,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.24579370885149962, "position": { "x": 6, @@ -3706,9 +3890,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2091, + "noteOrder": 2092, "time": 0.25457205559619606, "position": { "x": 6, @@ -3729,7 +3913,7 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2140, "time": 0.260424286759327, @@ -3752,7 +3936,7 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2164, "time": 0.26335040234089246, @@ -3775,10 +3959,10 @@ }, { "lineGroupId": 71, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 2188, - "time": 0.2662765179224579, + "time": 0.26627651792245793, "position": { "x": 6, "y": 0 @@ -3798,9 +3982,9 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2404, + "noteOrder": 2405, "time": 0.29261155815654716, "position": { "x": 3, @@ -3821,10 +4005,10 @@ }, { "lineGroupId": 81, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2452, - "time": 0.2984637893196781, + "noteOrder": 2453, + "time": 0.29846378931967815, "position": { "x": 3, "y": 0 @@ -3844,10 +4028,10 @@ }, { "lineGroupId": 85, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2500, - "time": 0.3043160204828091, + "noteOrder": 2501, + "time": 0.30431602048280904, "position": { "x": 7, "y": 0 @@ -3867,9 +4051,9 @@ }, { "lineGroupId": 85, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.31016825164594, "position": { "x": 7, @@ -3890,9 +4074,9 @@ }, { "lineGroupId": 93, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, + "noteOrder": 2693, "time": 0.32772494513533285, "position": { "x": 7, @@ -3912,13 +4096,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2741, - "time": 0.3335771762984638, + "noteOrder": 2718, + "time": 0.3306510607168983, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3930,16 +4114,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2789, - "time": 0.3394294074615947, + "noteOrder": 2718, + "time": 0.3306510607168983, "position": { "x": 6, "y": 0 @@ -3958,13 +4142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 94, "indexInLine": 1, "isSliding": false, - "noteOrder": 2813, - "time": 0.3423555230431602, + "noteOrder": 2742, + "time": 0.3335771762984638, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3976,18 +4160,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2837, - "time": 0.34528163862472566, + "noteOrder": 2766, + "time": 0.3365032918800292, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4004,11 +4188,103 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 94, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2861, - "time": 0.34820775420629113, + "noteOrder": 2766, + "time": 0.3365032918800292, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2790, + "time": 0.33942940746159467, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2814, + "time": 0.34235552304316014, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2838, + "time": 0.34528163862472566, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2862, + "time": 0.34820775420629113, "position": { "x": 4, "y": 0 @@ -4028,9 +4304,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.3628383321141185, "position": { "x": 5, @@ -4051,9 +4327,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3053, + "noteOrder": 3054, "time": 0.3716166788588149, "position": { "x": 5, @@ -4074,9 +4350,9 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.37454279444038036, "position": { "x": 3, @@ -4097,10 +4373,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3101, - "time": 0.3774689100219459, + "noteOrder": 3102, + "time": 0.3774689100219458, "position": { "x": 3, "y": 0 @@ -4120,10 +4396,10 @@ }, { "lineGroupId": 107, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3149, - "time": 0.3833211411850768, + "noteOrder": 3150, + "time": 0.38332114118507676, "position": { "x": 7, "y": 0 @@ -4143,9 +4419,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.38624725676664223, "position": { "x": 3, @@ -4166,9 +4442,9 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.3920994879297732, "position": { "x": 3, @@ -4189,9 +4465,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.38624725676664223, "position": { "x": 7, @@ -4212,9 +4488,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.3920994879297732, "position": { "x": 7, @@ -4235,9 +4511,9 @@ }, { "lineGroupId": 112, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3269, + "noteOrder": 3271, "time": 0.39795171909290417, "position": { "x": 7, @@ -4256,11 +4532,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3295, + "time": 0.4008778346744696, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3295, + "time": 0.4008778346744696, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3318, + "noteOrder": 3319, "time": 0.40380395025603505, "position": { "x": 7, @@ -4279,11 +4601,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3343, + "time": 0.4067300658376005, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3343, + "time": 0.4067300658376005, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3438, + "noteOrder": 3439, "time": 0.41843452816386245, "position": { "x": 3, @@ -4304,9 +4672,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.4213606437454279, "position": { "x": 3, @@ -4327,9 +4695,9 @@ }, { "lineGroupId": 117, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3558, + "noteOrder": 3559, "time": 0.4330651060716898, "position": { "x": 5, @@ -4350,9 +4718,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3654, + "noteOrder": 3655, "time": 0.4447695683979517, "position": { "x": 3, @@ -4372,11 +4740,11 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3702, - "time": 0.45062179956108267, + "noteOrder": 3679, + "time": 0.44769568397951715, "position": { "x": 3, "y": 0 @@ -4390,18 +4758,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3822, - "time": 0.46525237746891, + "noteOrder": 3679, + "time": 0.44769568397951715, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4413,18 +4781,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3846, - "time": 0.46817849305047543, + "noteOrder": 3704, + "time": 0.4506217995610826, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4441,13 +4809,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 125, "indexInLine": 2, "isSliding": false, - "noteOrder": 3943, - "time": 0.47988295537673736, + "noteOrder": 3728, + "time": 0.45354791514264814, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4464,11 +4832,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4039, - "time": 0.49158741770299924, + "noteOrder": 3728, + "time": 0.45354791514264814, "position": { "x": 4, "y": 0 @@ -4487,13 +4855,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 129, "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, - "time": 0.4974396488661302, + "noteOrder": 3824, + "time": 0.46525237746890996, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4510,13 +4878,13 @@ "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4087, - "time": 0.4974396488661302, + "noteOrder": 3848, + "time": 0.46817849305047543, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4528,16 +4896,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4135, - "time": 0.5032918800292611, + "noteOrder": 3944, + "time": 0.47988295537673736, "position": { "x": 5, "y": 0 @@ -4551,16 +4919,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4135, - "time": 0.5032918800292611, + "noteOrder": 4040, + "time": 0.49158741770299924, "position": { "x": 4, "y": 0 @@ -4579,11 +4947,11 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 1, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4183, - "time": 0.5091441111923921, + "noteOrder": 4088, + "time": 0.4974396488661302, "position": { "x": 5, "y": 0 @@ -4602,11 +4970,103 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 138, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4183, - "time": 0.5091441111923921, + "noteOrder": 4088, + "time": 0.4974396488661302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4136, + "time": 0.5032918800292611, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4136, + "time": 0.5032918800292611, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4185, + "time": 0.5091441111923921, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 140, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4185, + "time": 0.5091441111923921, "position": { "x": 6, "y": 0 @@ -4626,12 +5086,1415 @@ }, { "lineGroupId": 140, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4233, + "time": 0.514996342355523, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4305, + "time": 0.5237746891002194, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4329, + "time": 0.5267008046817849, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4425, + "time": 0.5384052670080468, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4425, + "time": 0.5384052670080468, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4449, + "time": 0.5413313825896123, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4449, + "time": 0.5413313825896123, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, "indexInLine": 1, "isSliding": false, - "noteOrder": 4231, - "time": 0.5149963423555229, + "noteOrder": 4473, + "time": 0.5442574981711776, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4497, + "time": 0.5471836137527432, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4497, + "time": 0.5471836137527432, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4521, + "time": 0.5501097293343086, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4545, + "time": 0.5530358449158741, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4569, + "time": 0.5559619604974396, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4593, + "time": 0.558888076079005, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4617, + "time": 0.5618141916605706, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4666, + "time": 0.5676664228237015, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4641, + "time": 0.564740307242136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4666, + "time": 0.5676664228237015, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4810, + "time": 0.5852231163130943, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4834, + "time": 0.5881492318946598, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4834, + "time": 0.5881492318946598, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4858, + "time": 0.5910753474762253, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4882, + "time": 0.5940014630577908, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4882, + "time": 0.5940014630577908, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4906, + "time": 0.5969275786393563, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4930, + "time": 0.5998536942209217, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4930, + "time": 0.5998536942209217, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4954, + "time": 0.6027798098024872, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4978, + "time": 0.6057059253840527, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4978, + "time": 0.6057059253840527, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5002, + "time": 0.6086320409656181, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5026, + "time": 0.6115581565471835, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 168, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5026, + "time": 0.6115581565471835, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5050, + "time": 0.614484272128749, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5074, + "time": 0.6174103877103144, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 169, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5074, + "time": 0.6174103877103144, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5195, + "time": 0.6320409656181418, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5387, + "time": 0.6554498902706657, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5195, + "time": 0.6320409656181418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5243, + "time": 0.6378931967812728, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5291, + "time": 0.6437454279444038, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5339, + "time": 0.6495976591075348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5387, + "time": 0.6554498902706657, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5579, + "time": 0.6788588149231893, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5627, + "time": 0.6847110460863203, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5676, + "time": 0.6905632772494513, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5724, + "time": 0.6964155084125823, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5868, + "time": 0.7139722019019751, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5916, + "time": 0.719824433065106, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5868, + "time": 0.7139722019019751, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 195, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5916, + "time": 0.719824433065106, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6060, + "time": 0.7373811265544988, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6072, + "time": 0.7388441843452815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6120, + "time": 0.7446964155084125, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6132, + "time": 0.7461594732991952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6060, + "time": 0.7373811265544988, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6072, + "time": 0.7388441843452815, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6120, + "time": 0.7446964155084125, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6132, + "time": 0.7461594732991952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6181, + "time": 0.7520117044623262, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6193, + "time": 0.7534747622531089, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6193, + "time": 0.7534747622531089, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4643,18 +6506,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 208, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4303, - "time": 0.5237746891002194, + "noteOrder": 6205, + "time": 0.7549378200438916, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4671,13 +6534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 208, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4327, - "time": 0.5267008046817849, + "noteOrder": 6217, + "time": 0.7564008778346744, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -4694,13 +6557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 2, + "lineGroupId": 208, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4423, - "time": 0.5384052670080468, + "noteOrder": 6217, + "time": 0.7564008778346744, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4717,11 +6580,11 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, - "time": 0.5384052670080468, + "noteOrder": 6229, + "time": 0.7578639356254572, "position": { "x": 7, "y": 0 @@ -4740,13 +6603,13 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.5442574981711777, + "noteOrder": 6253, + "time": 0.7607900512070226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4758,18 +6621,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 209, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4520, - "time": 0.5501097293343087, + "noteOrder": 6301, + "time": 0.7666422823701535, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4786,13 +6649,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 212, "indexInLine": 1, "isSliding": false, - "noteOrder": 4544, - "time": 0.5530358449158741, + "noteOrder": 6349, + "time": 0.7724945135332845, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4809,11 +6672,11 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 212, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4568, - "time": 0.5559619604974396, + "noteOrder": 6361, + "time": 0.7739575713240673, "position": { "x": 3, "y": 0 @@ -4827,18 +6690,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 212, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4592, - "time": 0.558888076079005, + "noteOrder": 6361, + "time": 0.7739575713240673, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4850,18 +6713,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, - "time": 0.5618141916605705, + "noteOrder": 6373, + "time": 0.77542062911485, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4873,18 +6736,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 1, + "lineGroupId": 213, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4664, - "time": 0.5676664228237015, + "noteOrder": 6385, + "time": 0.7768836869056327, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4896,18 +6759,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 213, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4640, - "time": 0.5647403072421361, + "noteOrder": 6385, + "time": 0.7768836869056327, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4924,11 +6787,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, + "lineGroupId": 214, "indexInLine": 1, "isSliding": false, - "noteOrder": 4664, - "time": 0.5676664228237015, + "noteOrder": 6397, + "time": 0.7783467446964155, "position": { "x": 3, "y": 0 @@ -4942,18 +6805,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4808, - "time": 0.5852231163130943, + "noteOrder": 6409, + "time": 0.7798098024871982, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4970,13 +6833,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4856, - "time": 0.5910753474762253, + "noteOrder": 6409, + "time": 0.7798098024871982, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4988,18 +6851,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4904, - "time": 0.5969275786393562, + "noteOrder": 6421, + "time": 0.7812728602779809, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5011,18 +6874,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4952, - "time": 0.6027798098024871, + "noteOrder": 6445, + "time": 0.7841989758595465, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5039,13 +6902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5000, - "time": 0.6086320409656182, + "noteOrder": 6493, + "time": 0.7900512070226774, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5057,18 +6920,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5048, - "time": 0.614484272128749, + "noteOrder": 6541, + "time": 0.7959034381858083, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5080,18 +6943,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 218, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5193, - "time": 0.6320409656181418, + "noteOrder": 6565, + "time": 0.7988295537673739, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5108,13 +6971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 1, + "lineGroupId": 218, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5385, - "time": 0.6554498902706657, + "noteOrder": 6565, + "time": 0.7988295537673739, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5131,11 +6994,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 219, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5193, - "time": 0.6320409656181418, + "noteOrder": 6589, + "time": 0.8017556693489392, "position": { "x": 3, "y": 0 @@ -5154,11 +7017,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 1, + "lineGroupId": 219, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5241, - "time": 0.6378931967812729, + "noteOrder": 6613, + "time": 0.8046817849305047, "position": { "x": 3, "y": 0 @@ -5177,13 +7040,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 2, + "lineGroupId": 219, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5289, - "time": 0.6437454279444037, + "noteOrder": 6613, + "time": 0.8046817849305047, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5200,11 +7063,11 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 3, + "lineGroupId": 220, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5337, - "time": 0.6495976591075346, + "noteOrder": 6638, + "time": 0.8076079005120701, "position": { "x": 7, "y": 0 @@ -5218,18 +7081,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 4, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5385, - "time": 0.6554498902706657, + "noteOrder": 6650, + "time": 0.8090709583028529, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5241,18 +7104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5577, - "time": 0.6788588149231894, + "noteOrder": 6650, + "time": 0.8090709583028529, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5269,11 +7132,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 221, "indexInLine": 1, "isSliding": false, - "noteOrder": 5625, - "time": 0.6847110460863204, + "noteOrder": 6662, + "time": 0.8105340160936356, "position": { "x": 7, "y": 0 @@ -5287,18 +7150,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5673, - "time": 0.6905632772494513, + "noteOrder": 6674, + "time": 0.8119970738844183, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5315,13 +7178,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5722, - "time": 0.6964155084125823, + "noteOrder": 6674, + "time": 0.8119970738844183, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5338,13 +7201,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5866, - "time": 0.7139722019019751, + "noteOrder": 6686, + "time": 0.813460131675201, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5356,18 +7219,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5914, - "time": 0.719824433065106, + "noteOrder": 6698, + "time": 0.8149231894659839, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5379,18 +7242,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5866, - "time": 0.7139722019019751, + "noteOrder": 6698, + "time": 0.8149231894659839, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5407,11 +7270,11 @@ "isPlayAudio": false }, { - "lineGroupId": 195, + "lineGroupId": 223, "indexInLine": 1, "isSliding": false, - "noteOrder": 5914, - "time": 0.719824433065106, + "noteOrder": 6710, + "time": 0.8163862472567666, "position": { "x": 7, "y": 0 @@ -5425,18 +7288,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6058, - "time": 0.737381126554499, + "noteOrder": 6722, + "time": 0.8178493050475493, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5448,18 +7311,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6070, - "time": 0.7388441843452817, + "noteOrder": 6722, + "time": 0.8178493050475493, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5471,18 +7334,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 2, + "lineGroupId": 231, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6118, - "time": 0.7446964155084125, + "noteOrder": 6926, + "time": 0.8427212874908558, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5499,13 +7362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 3, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6130, - "time": 0.7461594732991953, + "noteOrder": 6938, + "time": 0.8441843452816385, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5522,13 +7385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6058, - "time": 0.737381126554499, + "noteOrder": 6938, + "time": 0.8441843452816385, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5540,18 +7403,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 232, "indexInLine": 1, "isSliding": false, - "noteOrder": 6070, - "time": 0.7388441843452817, + "noteOrder": 6950, + "time": 0.8456474030724214, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5568,11 +7431,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 232, "indexInLine": 2, "isSliding": false, - "noteOrder": 6118, - "time": 0.7446964155084125, + "noteOrder": 6962, + "time": 0.8471104608632041, "position": { "x": 3, "y": 0 @@ -5591,13 +7454,13 @@ "isPlayAudio": false }, { - "lineGroupId": 204, + "lineGroupId": 232, "indexInLine": 3, "isSliding": false, - "noteOrder": 6130, - "time": 0.7461594732991953, + "noteOrder": 6962, + "time": 0.8471104608632041, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5614,13 +7477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6178, - "time": 0.7520117044623262, + "noteOrder": 6974, + "time": 0.8485735186539868, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5637,13 +7500,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6202, - "time": 0.7549378200438918, + "noteOrder": 6986, + "time": 0.8500365764447695, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5655,18 +7518,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6226, - "time": 0.7578639356254572, + "noteOrder": 6986, + "time": 0.8500365764447695, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5683,13 +7546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, + "lineGroupId": 234, "indexInLine": 1, "isSliding": false, - "noteOrder": 6250, - "time": 0.7607900512070226, + "noteOrder": 6998, + "time": 0.8514996342355523, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5701,18 +7564,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 209, + "lineGroupId": 234, "indexInLine": 2, "isSliding": false, - "noteOrder": 6299, - "time": 0.7666422823701536, + "noteOrder": 7022, + "time": 0.8544257498171177, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5724,18 +7587,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 234, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6347, - "time": 0.7724945135332845, + "noteOrder": 7070, + "time": 0.8602779809802487, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5747,18 +7610,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6371, - "time": 0.77542062911485, + "noteOrder": 7119, + "time": 0.8661302121433796, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5775,13 +7638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6395, - "time": 0.7783467446964154, + "noteOrder": 7131, + "time": 0.8675932699341623, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5793,18 +7656,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6419, - "time": 0.7812728602779809, + "noteOrder": 7131, + "time": 0.8675932699341623, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5821,13 +7684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 238, "indexInLine": 1, "isSliding": false, - "noteOrder": 6443, - "time": 0.7841989758595465, + "noteOrder": 7143, + "time": 0.869056327724945, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5839,18 +7702,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 238, "indexInLine": 2, "isSliding": false, - "noteOrder": 6491, - "time": 0.7900512070226773, + "noteOrder": 7155, + "time": 0.8705193855157277, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5862,18 +7725,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 218, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6539, - "time": 0.7959034381858083, + "noteOrder": 7155, + "time": 0.8705193855157277, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5890,13 +7753,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6587, - "time": 0.8017556693489393, + "noteOrder": 7167, + "time": 0.8719824433065105, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5913,11 +7776,11 @@ "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6635, - "time": 0.8076079005120701, + "noteOrder": 7179, + "time": 0.8734455010972932, "position": { "x": 7, "y": 0 @@ -5931,18 +7794,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6659, - "time": 0.8105340160936357, + "noteOrder": 7179, + "time": 0.8734455010972932, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5959,11 +7822,11 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6683, - "time": 0.8134601316752011, + "noteOrder": 7191, + "time": 0.874908558888076, "position": { "x": 7, "y": 0 @@ -5982,11 +7845,11 @@ "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6707, - "time": 0.8163862472567666, + "noteOrder": 7215, + "time": 0.8778346744696415, "position": { "x": 7, "y": 0 @@ -6000,18 +7863,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6924, - "time": 0.8427212874908558, + "noteOrder": 7263, + "time": 0.8836869056327724, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -6028,11 +7891,11 @@ "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6948, - "time": 0.8456474030724213, + "noteOrder": 7311, + "time": 0.8895391367959034, "position": { "x": 3, "y": 0 @@ -6051,11 +7914,11 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6972, - "time": 0.8485735186539868, + "noteOrder": 7335, + "time": 0.8924652523774689, "position": { "x": 3, "y": 0 @@ -6069,18 +7932,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, - "indexInLine": 0, + "lineGroupId": 243, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6996, - "time": 0.8514996342355522, + "noteOrder": 7335, + "time": 0.8924652523774689, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6097,13 +7960,13 @@ "isPlayAudio": false }, { - "lineGroupId": 234, + "lineGroupId": 244, "indexInLine": 1, "isSliding": false, - "noteOrder": 7020, - "time": 0.8544257498171177, + "noteOrder": 7359, + "time": 0.8953913679590343, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6115,18 +7978,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 234, + "lineGroupId": 244, "indexInLine": 2, "isSliding": false, - "noteOrder": 7068, - "time": 0.8602779809802487, + "noteOrder": 7383, + "time": 0.8983174835405998, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6138,18 +8001,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 244, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7116, - "time": 0.8661302121433796, + "noteOrder": 7383, + "time": 0.8983174835405998, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6161,18 +8024,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7140, - "time": 0.8690563277249451, + "noteOrder": 7407, + "time": 0.9012435991221652, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6184,18 +8047,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7164, - "time": 0.8719824433065105, + "noteOrder": 7419, + "time": 0.902706656912948, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6212,13 +8075,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7188, - "time": 0.8749085588880761, + "noteOrder": 7419, + "time": 0.902706656912948, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6230,18 +8093,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, + "lineGroupId": 246, "indexInLine": 1, "isSliding": false, - "noteOrder": 7212, - "time": 0.8778346744696415, + "noteOrder": 7431, + "time": 0.9041697147037308, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6258,13 +8121,13 @@ "isPlayAudio": false }, { - "lineGroupId": 240, + "lineGroupId": 246, "indexInLine": 2, "isSliding": false, - "noteOrder": 7260, - "time": 0.8836869056327725, + "noteOrder": 7443, + "time": 0.9056327724945135, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6281,11 +8144,34 @@ "isPlayAudio": false }, { - "lineGroupId": 243, - "indexInLine": 0, + "lineGroupId": 246, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7308, - "time": 0.8895391367959034, + "noteOrder": 7443, + "time": 0.9056327724945135, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 247, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7455, + "time": 0.9070958302852963, "position": { "x": 3, "y": 0 @@ -6304,13 +8190,13 @@ "isPlayAudio": false }, { - "lineGroupId": 244, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7356, - "time": 0.8953913679590343, + "noteOrder": 7467, + "time": 0.908558888076079, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6322,18 +8208,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7404, - "time": 0.9012435991221653, + "noteOrder": 7467, + "time": 0.908558888076079, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6350,11 +8236,11 @@ "isPlayAudio": false }, { - "lineGroupId": 246, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7428, - "time": 0.9041697147037308, + "noteOrder": 7479, + "time": 0.9100219458668617, "position": { "x": 3, "y": 0 @@ -6373,11 +8259,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7452, - "time": 0.9070958302852962, + "noteOrder": 7491, + "time": 0.9114850036576444, "position": { "x": 3, "y": 0 @@ -6391,18 +8277,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7476, - "time": 0.9100219458668617, + "noteOrder": 7491, + "time": 0.9114850036576444, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { diff --git "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1b.json" "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1b.json" index 09c90144..2d5fd127 100644 --- "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1b.json" +++ "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/288_difficulty_1b.json" @@ -74,7 +74,7 @@ }, { "noteOrder": 529, - "time": 0.06437454279444037, + "time": 0.06437454279444038, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 577, - "time": 0.0702267739575713, + "time": 0.07022677395757132, "position": { "x": 7, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 625, - "time": 0.07607900512070227, + "time": 0.07607900512070226, "position": { "x": 4, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 769, + "noteOrder": 770, "time": 0.09363569861009509, "position": { "x": 6, @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 794, "time": 0.09656181419166056, "position": { "x": 5, @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 818, "time": 0.09948792977322604, "position": { "x": 4, @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 865, + "noteOrder": 866, "time": 0.10534016093635698, "position": { "x": 3, @@ -354,7 +354,7 @@ }, { "noteOrder": 1058, - "time": 0.12874908558888074, + "time": 0.12874908558888076, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1154, - "time": 0.1404535479151426, + "time": 0.14045354791514264, "position": { "x": 3, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1250, - "time": 0.15215801024140455, + "noteOrder": 1251, + "time": 0.15215801024140452, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1275, "time": 0.15508412582297, "position": { "x": 4, @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1299, "time": 0.15801024140453546, "position": { "x": 7, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1322, - "time": 0.16093635698610093, + "noteOrder": 1323, + "time": 0.16093635698610095, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1347, "time": 0.16386247256766642, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1394, - "time": 0.16971470373079736, + "noteOrder": 1395, + "time": 0.16971470373079733, "position": { "x": 5, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1418, + "noteOrder": 1419, "time": 0.17264081931236283, "position": { "x": 7, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1442, + "noteOrder": 1443, "time": 0.1755669348939283, "position": { "x": 3, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1467, "time": 0.17849305047549377, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1490, + "noteOrder": 1491, "time": 0.18141916605705924, "position": { "x": 7, @@ -674,7 +674,7 @@ }, { "noteOrder": 1515, - "time": 0.18434528163862474, + "time": 0.1843452816386247, "position": { "x": 6, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1828, "time": 0.22238478419897584, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1876, "time": 0.2282370153621068, "position": { "x": 4, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1899, - "time": 0.23116313094367225, + "noteOrder": 1900, + "time": 0.23116313094367227, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 1924, "time": 0.23408924652523772, "position": { "x": 6, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 1972, "time": 0.23994147768836868, "position": { "x": 6, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.25164594001463053, "position": { "x": 6, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2212, + "noteOrder": 2213, "time": 0.2692026335040234, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2260, - "time": 0.27505486466715434, + "noteOrder": 2261, + "time": 0.2750548646671543, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.2779809802487198, "position": { "x": 5, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2308, - "time": 0.2809070958302852, + "noteOrder": 2309, + "time": 0.2809070958302853, "position": { "x": 4, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2356, + "noteOrder": 2357, "time": 0.2867593269934162, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2452, - "time": 0.2984637893196781, + "noteOrder": 2453, + "time": 0.29846378931967815, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2548, + "noteOrder": 2549, "time": 0.31016825164594, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2596, + "noteOrder": 2597, "time": 0.3160204828090709, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2644, - "time": 0.32187271397220185, + "noteOrder": 2645, + "time": 0.3218727139722019, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2789, - "time": 0.3394294074615947, + "noteOrder": 2790, + "time": 0.33942940746159467, "position": { "x": 6, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2837, + "noteOrder": 2838, "time": 0.34528163862472566, "position": { "x": 4, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2885, + "noteOrder": 2886, "time": 0.3511338697878566, "position": { "x": 3, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 2910, "time": 0.35405998536942207, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2933, + "noteOrder": 2934, "time": 0.35698610095098754, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2957, + "noteOrder": 2958, "time": 0.359912216532553, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3029, - "time": 0.3686905632772495, + "noteOrder": 3030, + "time": 0.3686905632772494, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3269, + "noteOrder": 3271, "time": 0.39795171909290417, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3318, + "noteOrder": 3319, "time": 0.40380395025603505, "position": { "x": 7, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3367, "time": 0.40965618141916604, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3390, + "noteOrder": 3391, "time": 0.4125822970007315, "position": { "x": 6, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3414, + "noteOrder": 3415, "time": 0.415508412582297, "position": { "x": 4, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 3463, "time": 0.4213606437454279, "position": { "x": 3, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3511, "time": 0.42721287490855886, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3558, + "noteOrder": 3559, "time": 0.4330651060716898, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 3583, "time": 0.43599122165325527, "position": { "x": 5, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 3606, + "noteOrder": 3607, "time": 0.43891733723482074, "position": { "x": 4, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3654, + "noteOrder": 3655, "time": 0.4447695683979517, "position": { "x": 3, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3702, - "time": 0.45062179956108267, + "noteOrder": 3704, + "time": 0.4506217995610826, "position": { "x": 3, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3750, + "noteOrder": 3752, "time": 0.4564740307242136, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3774, - "time": 0.459400146305779, + "noteOrder": 3776, + "time": 0.4594001463057791, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3798, - "time": 0.4623262618873445, + "noteOrder": 3800, + "time": 0.46232626188734455, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 3848, "time": 0.46817849305047543, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3895, - "time": 0.4740307242136064, + "noteOrder": 3896, + "time": 0.47403072421360637, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 3943, + "noteOrder": 3944, "time": 0.47988295537673736, "position": { "x": 6, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3967, + "noteOrder": 3968, "time": 0.48280907095830283, "position": { "x": 4, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3991, + "noteOrder": 3992, "time": 0.4857351865398683, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3991, + "noteOrder": 3992, "time": 0.4857351865398683, "position": { "x": 3, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4231, - "time": 0.5149963423555229, + "noteOrder": 4233, + "time": 0.514996342355523, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4279, + "noteOrder": 4281, "time": 0.520848573518654, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4327, + "noteOrder": 4329, "time": 0.5267008046817849, "position": { "x": 4, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4375, - "time": 0.5325530358449158, + "noteOrder": 4377, + "time": 0.5325530358449159, "position": { "x": 6, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.5735186539868324, "position": { "x": 7, @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4736, - "time": 0.5764447695683979, + "noteOrder": 4738, + "time": 0.576444769568398, "position": { "x": 3, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.5793708851499634, "position": { "x": 6, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 4760, + "noteOrder": 4762, "time": 0.5793708851499634, "position": { "x": 4, @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5097, + "noteOrder": 5098, "time": 0.62033650329188, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5145, + "noteOrder": 5146, "time": 0.6261887344550109, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5433, - "time": 0.6613021214337965, + "noteOrder": 5435, + "time": 0.6613021214337966, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5529, - "time": 0.6730065837600585, + "noteOrder": 5531, + "time": 0.6730065837600584, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5625, - "time": 0.6847110460863204, + "noteOrder": 5627, + "time": 0.6847110460863203, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5722, + "noteOrder": 5724, "time": 0.6964155084125823, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5770, + "noteOrder": 5772, "time": 0.7022677395757132, "position": { "x": 3, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5770, + "noteOrder": 5772, "time": 0.7022677395757132, "position": { "x": 7, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5818, + "noteOrder": 5820, "time": 0.7081199707388441, "position": { "x": 4, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5818, + "noteOrder": 5820, "time": 0.7081199707388441, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5962, + "noteOrder": 5964, "time": 0.725676664228237, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 6010, - "time": 0.7315288953913679, + "noteOrder": 6012, + "time": 0.731528895391368, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 6154, + "noteOrder": 6157, "time": 0.7490855888807607, "position": { "x": 7, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 6250, + "noteOrder": 6253, "time": 0.7607900512070226, "position": { "x": 5, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 6299, - "time": 0.7666422823701536, + "noteOrder": 6301, + "time": 0.7666422823701535, "position": { "x": 4, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 6347, + "noteOrder": 6349, "time": 0.7724945135332845, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 6443, + "noteOrder": 6445, "time": 0.7841989758595465, "position": { "x": 6, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 6491, - "time": 0.7900512070226773, + "noteOrder": 6493, + "time": 0.7900512070226774, "position": { "x": 6, "y": 0 @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6731, + "noteOrder": 6734, "time": 0.8193123628383321, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 6755, + "noteOrder": 6758, "time": 0.8222384784198975, "position": { "x": 5, @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6779, + "noteOrder": 6782, "time": 0.825164594001463, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6803, - "time": 0.8280907095830286, + "noteOrder": 6806, + "time": 0.8280907095830284, "position": { "x": 5, "y": 0 @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 6827, + "noteOrder": 6830, "time": 0.831016825164594, "position": { "x": 7, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 6851, + "noteOrder": 6854, "time": 0.8339429407461594, "position": { "x": 3, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 6924, + "noteOrder": 6926, "time": 0.8427212874908558, "position": { "x": 3, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 7020, + "noteOrder": 7022, "time": 0.8544257498171177, "position": { "x": 5, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 7068, + "noteOrder": 7070, "time": 0.8602779809802487, "position": { "x": 6, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 7116, + "noteOrder": 7119, "time": 0.8661302121433796, "position": { "x": 6, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 7212, + "noteOrder": 7215, "time": 0.8778346744696415, "position": { "x": 4, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 7260, - "time": 0.8836869056327725, + "noteOrder": 7263, + "time": 0.8836869056327724, "position": { "x": 4, "y": 0 @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 7501, + "noteOrder": 7503, "time": 0.9129480614484272, "position": { "x": 4, @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 7525, + "noteOrder": 7527, "time": 0.9158741770299926, "position": { "x": 5, @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 7549, - "time": 0.918800292611558, + "noteOrder": 7551, + "time": 0.9188002926115582, "position": { "x": 6, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 7573, + "noteOrder": 7575, "time": 0.9217264081931236, "position": { "x": 5, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 7597, - "time": 0.924652523774689, + "noteOrder": 7599, + "time": 0.9246525237746891, "position": { "x": 3, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 7621, + "noteOrder": 7624, "time": 0.9275786393562545, "position": { "x": 7, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 7645, - "time": 0.93050475493782, + "noteOrder": 7648, + "time": 0.9305047549378199, "position": { "x": 5, "y": 0 @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 7669, + "noteOrder": 7672, "time": 0.9334308705193854, "position": { "x": 7, @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 7669, + "noteOrder": 7672, "time": 0.9334308705193854, "position": { "x": 3, @@ -2576,7 +2576,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.011704462326261886, @@ -2599,7 +2599,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 168, "time": 0.020482809070958303, @@ -2622,10 +2622,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 288, - "time": 0.03511338697878565, + "noteOrder": 289, + "time": 0.03511338697878566, "position": { "x": 3, "y": 0 @@ -2645,7 +2645,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 361, "time": 0.043891733723482075, @@ -2668,7 +2668,7 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1635, "time": 0.19897585954645208, @@ -2691,7 +2691,7 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1683, "time": 0.20482809070958302, @@ -2714,9 +2714,9 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1731, + "noteOrder": 1732, "time": 0.21068032187271396, "position": { "x": 4, @@ -2737,9 +2737,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1803, + "noteOrder": 1804, "time": 0.21945866861741037, "position": { "x": 7, @@ -2760,9 +2760,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2019, + "noteOrder": 2020, "time": 0.24579370885149962, "position": { "x": 4, @@ -2783,9 +2783,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2067, + "noteOrder": 2068, "time": 0.25164594001463053, "position": { "x": 4, @@ -2806,10 +2806,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2116, - "time": 0.25749817117776147, + "time": 0.2574981711777615, "position": { "x": 6, "y": 0 @@ -2829,10 +2829,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2188, - "time": 0.2662765179224579, + "time": 0.26627651792245793, "position": { "x": 3, "y": 0 @@ -2852,9 +2852,9 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2692, + "noteOrder": 2693, "time": 0.32772494513533285, "position": { "x": 6, @@ -2875,10 +2875,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2717, - "time": 0.33065106071689826, + "noteOrder": 2718, + "time": 0.3306510607168983, "position": { "x": 6, "y": 0 @@ -2898,9 +2898,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2741, + "noteOrder": 2742, "time": 0.3335771762984638, "position": { "x": 4, @@ -2921,10 +2921,10 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2765, - "time": 0.33650329188002925, + "noteOrder": 2766, + "time": 0.3365032918800292, "position": { "x": 4, "y": 0 @@ -2944,9 +2944,9 @@ }, { "lineGroupId": 73, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2981, + "noteOrder": 2982, "time": 0.3628383321141185, "position": { "x": 5, @@ -2967,10 +2967,10 @@ }, { "lineGroupId": 73, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3029, - "time": 0.3686905632772495, + "noteOrder": 3030, + "time": 0.3686905632772494, "position": { "x": 5, "y": 0 @@ -2990,9 +2990,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3077, + "noteOrder": 3078, "time": 0.37454279444038036, "position": { "x": 3, @@ -3013,10 +3013,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3149, - "time": 0.3833211411850768, + "noteOrder": 3150, + "time": 0.38332114118507676, "position": { "x": 7, "y": 0 @@ -3036,9 +3036,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.38624725676664223, "position": { "x": 7, @@ -3059,9 +3059,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.3920994879297732, "position": { "x": 7, @@ -3082,9 +3082,9 @@ }, { "lineGroupId": 77, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3173, + "noteOrder": 3174, "time": 0.38624725676664223, "position": { "x": 3, @@ -3105,9 +3105,9 @@ }, { "lineGroupId": 77, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3221, + "noteOrder": 3223, "time": 0.3920994879297732, "position": { "x": 3, @@ -3128,9 +3128,9 @@ }, { "lineGroupId": 101, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4039, + "noteOrder": 4040, "time": 0.49158741770299924, "position": { "x": 4, @@ -3151,9 +3151,9 @@ }, { "lineGroupId": 101, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4087, + "noteOrder": 4088, "time": 0.4974396488661302, "position": { "x": 4, @@ -3174,9 +3174,9 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4087, + "noteOrder": 4088, "time": 0.4974396488661302, "position": { "x": 6, @@ -3197,9 +3197,9 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4135, + "noteOrder": 4136, "time": 0.5032918800292611, "position": { "x": 6, @@ -3220,9 +3220,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4135, + "noteOrder": 4136, "time": 0.5032918800292611, "position": { "x": 4, @@ -3243,9 +3243,9 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4183, + "noteOrder": 4185, "time": 0.5091441111923921, "position": { "x": 4, @@ -3266,9 +3266,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4183, + "noteOrder": 4185, "time": 0.5091441111923921, "position": { "x": 6, @@ -3289,10 +3289,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4231, - "time": 0.5149963423555229, + "noteOrder": 4233, + "time": 0.514996342355523, "position": { "x": 6, "y": 0 @@ -3312,9 +3312,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4423, + "noteOrder": 4425, "time": 0.5384052670080468, "position": { "x": 7, @@ -3335,10 +3335,10 @@ }, { "lineGroupId": 109, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4447, - "time": 0.5413313825896122, + "noteOrder": 4449, + "time": 0.5413313825896123, "position": { "x": 6, "y": 0 @@ -3358,10 +3358,10 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4471, - "time": 0.5442574981711777, + "noteOrder": 4473, + "time": 0.5442574981711776, "position": { "x": 3, "y": 0 @@ -3381,9 +3381,9 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4496, + "noteOrder": 4497, "time": 0.5471836137527432, "position": { "x": 4, @@ -3404,10 +3404,10 @@ }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4616, - "time": 0.5618141916605705, + "noteOrder": 4617, + "time": 0.5618141916605706, "position": { "x": 7, "y": 0 @@ -3427,9 +3427,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.5676664228237015, "position": { "x": 7, @@ -3450,9 +3450,9 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4664, + "noteOrder": 4666, "time": 0.5676664228237015, "position": { "x": 3, @@ -3473,9 +3473,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.5735186539868324, "position": { "x": 3, @@ -3496,9 +3496,9 @@ }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4808, + "noteOrder": 4810, "time": 0.5852231163130943, "position": { "x": 7, @@ -3518,11 +3518,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4856, - "time": 0.5910753474762253, + "noteOrder": 4834, + "time": 0.5881492318946598, "position": { "x": 7, "y": 0 @@ -3536,18 +3536,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4904, - "time": 0.5969275786393562, + "noteOrder": 4834, + "time": 0.5881492318946598, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3564,11 +3564,11 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4952, - "time": 0.6027798098024871, + "noteOrder": 4858, + "time": 0.5910753474762253, "position": { "x": 7, "y": 0 @@ -3587,11 +3587,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5000, - "time": 0.6086320409656182, + "noteOrder": 4882, + "time": 0.5940014630577908, "position": { "x": 7, "y": 0 @@ -3605,18 +3605,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5048, - "time": 0.614484272128749, + "noteOrder": 4882, + "time": 0.5940014630577908, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3633,13 +3633,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5193, - "time": 0.6320409656181418, + "noteOrder": 4906, + "time": 0.5969275786393563, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3656,13 +3656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5385, - "time": 0.6554498902706657, + "noteOrder": 4930, + "time": 0.5998536942209217, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3679,13 +3679,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5193, - "time": 0.6320409656181418, + "noteOrder": 4930, + "time": 0.5998536942209217, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3697,18 +3697,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 123, "indexInLine": 1, "isSliding": false, - "noteOrder": 5241, - "time": 0.6378931967812729, + "noteOrder": 4954, + "time": 0.6027798098024872, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3725,11 +3725,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 123, "indexInLine": 2, "isSliding": false, - "noteOrder": 5289, - "time": 0.6437454279444037, + "noteOrder": 4978, + "time": 0.6057059253840527, "position": { "x": 7, "y": 0 @@ -3748,13 +3748,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, + "lineGroupId": 123, "indexInLine": 3, "isSliding": false, - "noteOrder": 5337, - "time": 0.6495976591075346, + "noteOrder": 4978, + "time": 0.6057059253840527, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3771,13 +3771,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 4, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5385, - "time": 0.6554498902706657, + "noteOrder": 5002, + "time": 0.6086320409656181, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3789,16 +3789,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5577, - "time": 0.6788588149231894, + "noteOrder": 5026, + "time": 0.6115581565471835, "position": { "x": 7, "y": 0 @@ -3817,13 +3817,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5625, - "time": 0.6847110460863204, + "noteOrder": 5026, + "time": 0.6115581565471835, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3840,11 +3840,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5673, - "time": 0.6905632772494513, + "noteOrder": 5050, + "time": 0.614484272128749, "position": { "x": 3, "y": 0 @@ -3863,11 +3863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 1, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5722, - "time": 0.6964155084125823, + "noteOrder": 5074, + "time": 0.6174103877103144, "position": { "x": 3, "y": 0 @@ -3886,13 +3886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5866, - "time": 0.7139722019019751, + "noteOrder": 5074, + "time": 0.6174103877103144, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3904,18 +3904,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 128, "indexInLine": 1, "isSliding": false, - "noteOrder": 5914, - "time": 0.719824433065106, + "noteOrder": 5195, + "time": 0.6320409656181418, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3932,13 +3932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5866, - "time": 0.7139722019019751, + "noteOrder": 5387, + "time": 0.6554498902706657, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3950,16 +3950,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 129, "indexInLine": 1, "isSliding": false, - "noteOrder": 5914, - "time": 0.719824433065106, + "noteOrder": 5195, + "time": 0.6320409656181418, "position": { "x": 3, "y": 0 @@ -3978,13 +3978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6058, - "time": 0.737381126554499, + "noteOrder": 5243, + "time": 0.6378931967812728, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3996,16 +3996,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6106, - "time": 0.7432333577176298, + "noteOrder": 5291, + "time": 0.6437454279444038, "position": { "x": 7, "y": 0 @@ -4019,18 +4019,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6058, - "time": 0.737381126554499, + "noteOrder": 5339, + "time": 0.6495976591075348, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4047,11 +4047,11 @@ "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6106, - "time": 0.7432333577176298, + "noteOrder": 5387, + "time": 0.6554498902706657, "position": { "x": 3, "y": 0 @@ -4070,11 +4070,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6202, - "time": 0.7549378200438918, + "noteOrder": 5579, + "time": 0.6788588149231893, "position": { "x": 7, "y": 0 @@ -4093,11 +4093,11 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6250, - "time": 0.7607900512070226, + "noteOrder": 5627, + "time": 0.6847110460863203, "position": { "x": 7, "y": 0 @@ -4116,13 +4116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 2, + "lineGroupId": 136, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6299, - "time": 0.7666422823701536, + "noteOrder": 5676, + "time": 0.6905632772494513, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4134,18 +4134,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6395, - "time": 0.7783467446964154, + "noteOrder": 5724, + "time": 0.6964155084125823, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4162,13 +4162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 142, "indexInLine": 1, "isSliding": false, - "noteOrder": 6443, - "time": 0.7841989758595465, + "noteOrder": 5868, + "time": 0.7139722019019751, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4180,18 +4180,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, + "lineGroupId": 142, "indexInLine": 2, "isSliding": false, - "noteOrder": 6491, - "time": 0.7900512070226773, + "noteOrder": 5916, + "time": 0.719824433065106, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4203,18 +4203,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6539, - "time": 0.7959034381858083, + "noteOrder": 5868, + "time": 0.7139722019019751, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4226,16 +4226,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6587, - "time": 0.8017556693489393, + "noteOrder": 5916, + "time": 0.719824433065106, "position": { "x": 3, "y": 0 @@ -4254,13 +4254,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6635, - "time": 0.8076079005120701, + "noteOrder": 6060, + "time": 0.7373811265544988, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4277,11 +4277,471 @@ "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 6683, - "time": 0.8134601316752011, + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6108, + "time": 0.7432333577176298, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6060, + "time": 0.7373811265544988, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6108, + "time": 0.7432333577176298, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6205, + "time": 0.7549378200438916, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6253, + "time": 0.7607900512070226, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6301, + "time": 0.7666422823701535, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6397, + "time": 0.7783467446964155, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6445, + "time": 0.7841989758595465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6493, + "time": 0.7900512070226774, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6541, + "time": 0.7959034381858083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6565, + "time": 0.7988295537673739, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6565, + "time": 0.7988295537673739, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6589, + "time": 0.8017556693489392, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6613, + "time": 0.8046817849305047, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 159, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6613, + "time": 0.8046817849305047, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6638, + "time": 0.8076079005120701, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6662, + "time": 0.8105340160936356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 160, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6662, + "time": 0.8105340160936356, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6686, + "time": 0.813460131675201, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6710, + "time": 0.8163862472567666, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6710, + "time": 0.8163862472567666, "position": { "x": 6, "y": 0 @@ -4301,9 +4761,9 @@ }, { "lineGroupId": 170, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6972, + "noteOrder": 6974, "time": 0.8485735186539868, "position": { "x": 3, @@ -4324,9 +4784,9 @@ }, { "lineGroupId": 170, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7020, + "noteOrder": 7022, "time": 0.8544257498171177, "position": { "x": 3, @@ -4347,9 +4807,9 @@ }, { "lineGroupId": 170, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7068, + "noteOrder": 7070, "time": 0.8602779809802487, "position": { "x": 4, @@ -4370,9 +4830,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7164, + "noteOrder": 7167, "time": 0.8719824433065105, "position": { "x": 6, @@ -4393,9 +4853,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 7212, + "noteOrder": 7215, "time": 0.8778346744696415, "position": { "x": 6, @@ -4416,10 +4876,10 @@ }, { "lineGroupId": 174, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7260, - "time": 0.8836869056327725, + "noteOrder": 7263, + "time": 0.8836869056327724, "position": { "x": 6, "y": 0 @@ -4439,9 +4899,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7308, + "noteOrder": 7311, "time": 0.8895391367959034, "position": { "x": 3, @@ -4460,11 +4920,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 177, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7335, + "time": 0.8924652523774689, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 177, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7335, + "time": 0.8924652523774689, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 7356, + "noteOrder": 7359, "time": 0.8953913679590343, "position": { "x": 7, @@ -4483,12 +4989,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 178, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7383, + "time": 0.8983174835405998, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 178, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 7383, + "time": 0.8983174835405998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7407, + "time": 0.9012435991221652, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 179, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7431, + "time": 0.9041697147037308, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 179, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7404, - "time": 0.9012435991221653, + "noteOrder": 7431, + "time": 0.9041697147037308, "position": { "x": 4, "y": 0 @@ -4508,10 +5106,56 @@ }, { "lineGroupId": 180, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 7455, + "time": 0.9070958302852963, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 7479, + "time": 0.9100219458668617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, "isSliding": false, - "noteOrder": 7452, - "time": 0.9070958302852962, + "noteOrder": 7479, + "time": 0.9100219458668617, "position": { "x": 4, "y": 0 diff --git "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/info.json" "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/info.json" index 9414dbc6..738c8a49 100644 --- "a/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/info.json" +++ "b/tracks/\345\215\201\345\205\255\345\244\234\343\202\273\343\203\204\343\203\212/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u5341\u516d\u591c\u30bb\u30c4\u30ca", - "SongLength": "138.370612", + "SongLength": "128.417959", "SongAuthorName": "Xceon feat.Mayumi Morinaga", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1a.json" "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1a.json" index 5a67c0bc..6b34cabe 100644 --- "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1a.json" +++ "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1a.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 131, - "time": 0.07627118644067797, + "time": 0.07627118644067796, "position": { "x": 3, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 160, - "time": 0.09322033898305085, + "time": 0.09322033898305083, "position": { "x": 2, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 182, - "time": 0.10593220338983052, + "time": 0.1059322033898305, "position": { "x": 5, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 189, + "noteOrder": 190, "time": 0.11016949152542373, "position": { "x": 7, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 211, - "time": 0.1228813559322034, + "noteOrder": 212, + "time": 0.12288135593220338, "position": { "x": 4, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 218, + "noteOrder": 219, "time": 0.1271186440677966, "position": { "x": 5, @@ -213,8 +213,8 @@ "isPlayAudio": false }, { - "noteOrder": 240, - "time": 0.1398305084745763, + "noteOrder": 241, + "time": 0.13983050847457626, "position": { "x": 5, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 262, - "time": 0.15254237288135594, + "noteOrder": 263, + "time": 0.15254237288135591, "position": { "x": 7, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 269, - "time": 0.15677966101694915, + "noteOrder": 270, + "time": 0.15677966101694912, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 277, - "time": 0.16101694915254236, + "time": 0.1610169491525424, "position": { "x": 3, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 320, - "time": 0.1864406779661017, + "noteOrder": 321, + "time": 0.18644067796610167, "position": { "x": 6, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 335, + "noteOrder": 336, "time": 0.19491525423728812, "position": { "x": 6, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 342, - "time": 0.19915254237288138, + "noteOrder": 343, + "time": 0.19915254237288135, "position": { "x": 7, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 350, - "time": 0.2033898305084746, + "time": 0.20338983050847456, "position": { "x": 5, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 364, - "time": 0.21186440677966104, + "noteOrder": 365, + "time": 0.211864406779661, "position": { "x": 5, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 371, - "time": 0.21610169491525424, + "noteOrder": 372, + "time": 0.21610169491525422, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 386, + "noteOrder": 387, "time": 0.22457627118644066, "position": { "x": 7, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 393, - "time": 0.22881355932203393, + "noteOrder": 394, + "time": 0.22881355932203387, "position": { "x": 5, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 401, - "time": 0.23305084745762714, + "time": 0.23305084745762708, "position": { "x": 3, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.2542372881355932, "position": { "x": 6, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 444, + "noteOrder": 445, "time": 0.2584745762711864, "position": { "x": 5, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 466, + "noteOrder": 467, "time": 0.2711864406779661, "position": { "x": 6, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 473, - "time": 0.27542372881355937, + "noteOrder": 474, + "time": 0.2754237288135593, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 496, "time": 0.288135593220339, "position": { "x": 5, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 502, + "noteOrder": 503, "time": 0.2923728813559322, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 510, - "time": 0.29661016949152547, + "noteOrder": 511, + "time": 0.2966101694915254, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 517, - "time": 0.3008474576271187, + "noteOrder": 518, + "time": 0.3008474576271186, "position": { "x": 5, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 553, - "time": 0.3220338983050847, + "noteOrder": 554, + "time": 0.3220338983050848, "position": { "x": 6, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 561, + "noteOrder": 562, "time": 0.32627118644067793, "position": { "x": 7, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 568, + "noteOrder": 569, "time": 0.3305084745762712, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 575, - "time": 0.33474576271186446, + "noteOrder": 576, + "time": 0.3347457627118644, "position": { "x": 3, "y": 0 @@ -794,7 +794,7 @@ }, { "noteOrder": 583, - "time": 0.33898305084745767, + "time": 0.3389830508474576, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 590, - "time": 0.3432203389830509, + "noteOrder": 591, + "time": 0.3432203389830508, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 597, - "time": 0.3474576271186441, + "noteOrder": 598, + "time": 0.34745762711864403, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 604, - "time": 0.3516949152542373, + "noteOrder": 605, + "time": 0.35169491525423724, "position": { "x": 3, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 612, + "noteOrder": 613, "time": 0.3559322033898305, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 619, - "time": 0.36016949152542377, + "noteOrder": 620, + "time": 0.36016949152542366, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 626, - "time": 0.364406779661017, + "noteOrder": 627, + "time": 0.3644067796610169, "position": { "x": 3, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 634, + "noteOrder": 635, "time": 0.3686440677966102, "position": { "x": 6, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 641, - "time": 0.3728813559322034, + "noteOrder": 642, + "time": 0.37288135593220334, "position": { "x": 7, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.3771186440677966, "position": { "x": 5, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.3813559322033898, "position": { "x": 3, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 663, + "noteOrder": 664, "time": 0.385593220338983, "position": { "x": 7, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 801, - "time": 0.46610169491525427, + "noteOrder": 802, + "time": 0.46610169491525416, "position": { "x": 8, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 823, - "time": 0.4788135593220339, + "noteOrder": 824, + "time": 0.47881355932203384, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 830, + "noteOrder": 831, "time": 0.4830508474576271, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 859, - "time": 0.5, + "noteOrder": 861, + "time": 0.49999999999999994, "position": { "x": 2, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 881, + "noteOrder": 883, "time": 0.5127118644067796, "position": { "x": 5, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 890, "time": 0.5169491525423728, "position": { "x": 7, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 896, - "time": 0.5211864406779662, + "noteOrder": 897, + "time": 0.521186440677966, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 961, - "time": 0.5593220338983051, + "noteOrder": 963, + "time": 0.559322033898305, "position": { "x": 6, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 969, - "time": 0.5635593220338984, + "noteOrder": 970, + "time": 0.5635593220338982, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 976, - "time": 0.5677966101694916, + "noteOrder": 977, + "time": 0.5677966101694915, "position": { "x": 7, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 985, "time": 0.5720338983050848, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 992, "time": 0.576271186440678, "position": { "x": 4, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 998, - "time": 0.5805084745762712, + "noteOrder": 999, + "time": 0.5805084745762711, "position": { "x": 6, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1005, + "noteOrder": 1007, "time": 0.5847457627118644, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1014, "time": 0.5889830508474576, "position": { "x": 5, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1020, - "time": 0.5932203389830509, + "noteOrder": 1021, + "time": 0.5932203389830508, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1027, + "noteOrder": 1028, "time": 0.597457627118644, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1034, - "time": 0.6016949152542374, + "noteOrder": 1036, + "time": 0.6016949152542372, "position": { "x": 7, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1041, + "noteOrder": 1043, "time": 0.6059322033898304, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1194, - "time": 0.6949152542372882, + "noteOrder": 1196, + "time": 0.6949152542372881, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1202, - "time": 0.6991525423728814, + "noteOrder": 1203, + "time": 0.6991525423728813, "position": { "x": 7, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1209, - "time": 0.7033898305084746, + "noteOrder": 1211, + "time": 0.7033898305084745, "position": { "x": 5, "y": 0 @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1216, + "noteOrder": 1218, "time": 0.7076271186440678, "position": { "x": 3, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1223, + "noteOrder": 1225, "time": 0.711864406779661, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1233, "time": 0.7161016949152542, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1238, - "time": 0.7203389830508475, + "noteOrder": 1240, + "time": 0.7203389830508473, "position": { "x": 4, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1245, + "noteOrder": 1247, "time": 0.7245762711864406, "position": { "x": 3, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1253, - "time": 0.728813559322034, + "noteOrder": 1255, + "time": 0.7288135593220338, "position": { "x": 7, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1260, - "time": 0.7330508474576272, + "noteOrder": 1262, + "time": 0.733050847457627, "position": { "x": 3, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1267, + "noteOrder": 1269, "time": 0.7372881355932204, "position": { "x": 7, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.7415254237288136, + "noteOrder": 1276, + "time": 0.7415254237288135, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1355, + "noteOrder": 1357, "time": 0.788135593220339, "position": { "x": 2, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1376, + "noteOrder": 1379, "time": 0.8008474576271186, "position": { "x": 5, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1384, - "time": 0.8050847457627119, + "noteOrder": 1386, + "time": 0.8050847457627118, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1413, - "time": 0.8220338983050848, + "noteOrder": 1415, + "time": 0.8220338983050847, "position": { "x": 8, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1435, + "noteOrder": 1437, "time": 0.8347457627118644, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.8389830508474576, + "noteOrder": 1444, + "time": 0.8389830508474575, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1456, - "time": 0.8474576271186441, + "noteOrder": 1459, + "time": 0.847457627118644, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1466, "time": 0.8516949152542372, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1471, - "time": 0.8559322033898306, + "noteOrder": 1473, + "time": 0.8559322033898304, "position": { "x": 5, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1486, - "time": 0.864406779661017, + "noteOrder": 1488, + "time": 0.8644067796610169, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1493, - "time": 0.8686440677966102, + "noteOrder": 1495, + "time": 0.8686440677966101, "position": { "x": 5, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1500, + "noteOrder": 1503, "time": 0.8728813559322034, "position": { "x": 3, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 1515, + "noteOrder": 1517, "time": 0.8813559322033898, "position": { "x": 3, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1522, - "time": 0.8855932203389831, + "noteOrder": 1524, + "time": 0.8855932203389829, "position": { "x": 4, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1532, "time": 0.8898305084745762, "position": { "x": 7, @@ -1956,10 +1956,10 @@ "lineNodes": [ { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 66, - "time": 0.038135593220338986, + "time": 0.03813559322033898, "position": { "x": 3, "y": 0 @@ -1979,10 +1979,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 73, - "time": 0.04237288135593221, + "time": 0.0423728813559322, "position": { "x": 4, "y": 0 @@ -2002,10 +2002,10 @@ }, { "lineGroupId": 4, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 80, - "time": 0.046610169491525424, + "time": 0.04661016949152542, "position": { "x": 4, "y": 0 @@ -2025,10 +2025,33 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 88, + "time": 0.05084745762711864, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 5, + "indexInLine": 2, "isSliding": false, - "noteOrder": 87, - "time": 0.05084745762711865, + "noteOrder": 91, + "time": 0.05296610169491525, "position": { "x": 8, "y": 0 @@ -2046,9 +2069,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 5, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 91, + "time": 0.05296610169491525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 95, "time": 0.05508474576271186, @@ -2069,9 +2115,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 6, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 98, + "time": 0.05720338983050847, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 6, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 98, + "time": 0.05720338983050847, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 117, "time": 0.06779661016949153, @@ -2094,10 +2186,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 131, - "time": 0.07627118644067797, + "time": 0.07627118644067796, "position": { "x": 5, "y": 0 @@ -2117,10 +2209,33 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.08474576271186442, + "time": 0.0847457627118644, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 13, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 150, + "time": 0.08686440677966101, "position": { "x": 2, "y": 0 @@ -2138,9 +2253,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 13, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 150, + "time": 0.08686440677966101, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 153, "time": 0.08898305084745763, @@ -2161,12 +2299,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 14, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 157, + "time": 0.09110169491525423, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 14, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 157, + "time": 0.09110169491525423, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 175, - "time": 0.1016949152542373, + "time": 0.10169491525423728, "position": { "x": 2, "y": 0 @@ -2186,9 +2370,9 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 189, + "noteOrder": 190, "time": 0.11016949152542373, "position": { "x": 5, @@ -2209,10 +2393,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 291, - "time": 0.16949152542372883, + "noteOrder": 292, + "time": 0.1694915254237288, "position": { "x": 7, "y": 0 @@ -2232,7 +2416,7 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 306, "time": 0.17796610169491525, @@ -2255,10 +2439,10 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 291, - "time": 0.16949152542372883, + "noteOrder": 292, + "time": 0.1694915254237288, "position": { "x": 3, "y": 0 @@ -2278,7 +2462,7 @@ }, { "lineGroupId": 34, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 306, "time": 0.17796610169491525, @@ -2301,7 +2485,7 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 408, "time": 0.23728813559322035, @@ -2324,10 +2508,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 422, - "time": 0.2457627118644068, + "noteOrder": 423, + "time": 0.24576271186440676, "position": { "x": 7, "y": 0 @@ -2347,10 +2531,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 422, - "time": 0.2457627118644068, + "noteOrder": 423, + "time": 0.24576271186440676, "position": { "x": 3, "y": 0 @@ -2370,9 +2554,9 @@ }, { "lineGroupId": 49, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 437, + "noteOrder": 438, "time": 0.2542372881355932, "position": { "x": 3, @@ -2393,10 +2577,10 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 452, - "time": 0.2627118644067797, + "time": 0.2627118644067796, "position": { "x": 7, "y": 0 @@ -2416,10 +2600,10 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 459, - "time": 0.2669491525423729, + "noteOrder": 460, + "time": 0.26694915254237284, "position": { "x": 7, "y": 0 @@ -2439,10 +2623,10 @@ }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 481, - "time": 0.2796610169491526, + "time": 0.2796610169491525, "position": { "x": 3, "y": 0 @@ -2462,10 +2646,10 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 488, - "time": 0.2838983050847458, + "noteOrder": 489, + "time": 0.28389830508474573, "position": { "x": 3, "y": 0 @@ -2485,10 +2669,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 524, - "time": 0.3050847457627119, + "noteOrder": 525, + "time": 0.30508474576271183, "position": { "x": 3, "y": 0 @@ -2508,10 +2692,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 539, - "time": 0.3135593220338983, + "noteOrder": 540, + "time": 0.31355932203389825, "position": { "x": 3, "y": 0 @@ -2531,9 +2715,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 670, + "noteOrder": 671, "time": 0.38983050847457623, "position": { "x": 3, @@ -2554,10 +2738,10 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 685, - "time": 0.39830508474576276, + "noteOrder": 686, + "time": 0.3983050847457627, "position": { "x": 3, "y": 0 @@ -2576,13 +2760,565 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 700, + "time": 0.4067796610169491, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 715, + "time": 0.4152542372881356, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 729, + "time": 0.423728813559322, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 759, + "time": 0.4406779661016949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 729, + "time": 0.423728813559322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 759, + "time": 0.4406779661016949, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 788, + "time": 0.45762711864406774, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 791, + "time": 0.4597457627118644, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 791, + "time": 0.4597457627118644, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 795, + "time": 0.461864406779661, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 799, + "time": 0.4639830508474576, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 799, + "time": 0.4639830508474576, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 817, + "time": 0.4745762711864407, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 831, + "time": 0.4830508474576271, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 846, + "time": 0.4915254237288135, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 850, + "time": 0.49364406779661013, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 850, + "time": 0.49364406779661013, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 853, + "time": 0.49576271186440674, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 857, + "time": 0.4978813559322034, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 857, + "time": 0.4978813559322034, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 875, + "time": 0.5084745762711864, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 98, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 883, + "time": 0.5127118644067796, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 904, + "time": 0.5254237288135593, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 908, + "time": 0.5275423728813559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, "isSliding": false, - "noteOrder": 699, - "time": 0.4067796610169492, + "noteOrder": 908, + "time": 0.5275423728813559, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2599,13 +3335,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 103, "indexInLine": 1, "isSliding": false, - "noteOrder": 714, - "time": 0.4152542372881356, + "noteOrder": 912, + "time": 0.5296610169491525, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2617,18 +3353,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 2, "isSliding": false, - "noteOrder": 728, - "time": 0.42372881355932207, + "noteOrder": 915, + "time": 0.5317796610169491, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2640,18 +3376,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 757, - "time": 0.4406779661016949, + "noteOrder": 915, + "time": 0.5317796610169491, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2663,18 +3399,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 728, - "time": 0.42372881355932207, + "noteOrder": 934, + "time": 0.5423728813559322, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2686,18 +3422,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 757, - "time": 0.4406779661016949, + "noteOrder": 937, + "time": 0.5444915254237288, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2709,18 +3445,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 3, "isSliding": false, - "noteOrder": 786, - "time": 0.45762711864406785, + "noteOrder": 937, + "time": 0.5444915254237288, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -2737,13 +3473,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 794, - "time": 0.46186440677966106, + "noteOrder": 941, + "time": 0.5466101694915254, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2760,13 +3496,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 816, - "time": 0.4745762711864407, + "noteOrder": 945, + "time": 0.548728813559322, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -2778,18 +3514,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 3, "isSliding": false, - "noteOrder": 830, - "time": 0.4830508474576271, + "noteOrder": 945, + "time": 0.548728813559322, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2801,18 +3537,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 845, - "time": 0.4915254237288136, + "noteOrder": 1050, + "time": 0.6101694915254237, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2824,18 +3560,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 852, - "time": 0.4957627118644068, + "noteOrder": 1072, + "time": 0.6228813559322034, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -2852,13 +3588,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 874, - "time": 0.5084745762711864, + "noteOrder": 1109, + "time": 0.6440677966101696, "position": { - "x": 2, + "x": 3, "y": 0 }, "position2D": { @@ -2875,13 +3611,13 @@ "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 881, - "time": 0.5127118644067796, + "noteOrder": 1131, + "time": 0.6567796610169491, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2898,11 +3634,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 903, - "time": 0.5254237288135594, + "noteOrder": 1167, + "time": 0.6779661016949152, "position": { "x": 7, "y": 0 @@ -2921,13 +3657,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 910, - "time": 0.5296610169491526, + "noteOrder": 1189, + "time": 0.690677966101695, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2939,18 +3675,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 932, - "time": 0.5423728813559322, + "noteOrder": 1167, + "time": 0.6779661016949152, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2962,16 +3698,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 939, - "time": 0.5466101694915254, + "noteOrder": 1189, + "time": 0.690677966101695, "position": { "x": 3, "y": 0 @@ -2990,11 +3726,11 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1049, - "time": 0.6101694915254238, + "noteOrder": 1320, + "time": 0.7669491525423728, "position": { "x": 7, "y": 0 @@ -3013,13 +3749,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 1, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1070, - "time": 0.6228813559322034, + "noteOrder": 1327, + "time": 0.771186440677966, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3036,13 +3772,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1107, - "time": 0.6440677966101694, + "noteOrder": 1335, + "time": 0.7754237288135593, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3054,18 +3790,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, + "lineGroupId": 146, "indexInLine": 1, "isSliding": false, - "noteOrder": 1129, - "time": 0.6567796610169492, + "noteOrder": 1342, + "time": 0.7796610169491525, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3082,13 +3818,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 146, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1165, - "time": 0.6779661016949153, + "noteOrder": 1346, + "time": 0.7817796610169492, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -3100,18 +3836,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 146, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1187, - "time": 0.690677966101695, + "noteOrder": 1346, + "time": 0.7817796610169492, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3123,18 +3859,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1165, - "time": 0.6779661016949153, + "noteOrder": 1349, + "time": 0.7838983050847458, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3146,18 +3882,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1187, - "time": 0.690677966101695, + "noteOrder": 1353, + "time": 0.7860169491525424, "position": { - "x": 3, + "x": 2, "y": 0 }, "position2D": { @@ -3169,18 +3905,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1318, - "time": 0.766949152542373, + "noteOrder": 1353, + "time": 0.7860169491525424, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3197,13 +3933,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 150, "indexInLine": 1, "isSliding": false, - "noteOrder": 1325, - "time": 0.771186440677966, + "noteOrder": 1371, + "time": 0.7966101694915254, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -3215,18 +3951,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 150, "indexInLine": 2, "isSliding": false, - "noteOrder": 1333, - "time": 0.7754237288135594, + "noteOrder": 1386, + "time": 0.8050847457627118, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3238,18 +3974,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1340, - "time": 0.7796610169491525, + "noteOrder": 1400, + "time": 0.8135593220338982, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3261,18 +3997,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1347, - "time": 0.7838983050847458, + "noteOrder": 1404, + "time": 0.8156779661016949, "position": { - "x": 2, + "x": 8, "y": 0 }, "position2D": { @@ -3289,13 +4025,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1369, - "time": 0.7966101694915255, + "noteOrder": 1404, + "time": 0.8156779661016949, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3307,18 +4043,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 1384, - "time": 0.8050847457627119, + "noteOrder": 1408, + "time": 0.8177966101694915, "position": { - "x": 5, + "x": 8, "y": 0 }, "position2D": { @@ -3335,11 +4071,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1398, - "time": 0.8135593220338984, + "noteOrder": 1411, + "time": 0.8199152542372881, "position": { "x": 8, "y": 0 @@ -3353,18 +4089,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 155, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1405, - "time": 0.8177966101694916, + "noteOrder": 1411, + "time": 0.8199152542372881, "position": { - "x": 8, + "x": 6, "y": 0 }, "position2D": { @@ -3382,9 +4118,9 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1427, + "noteOrder": 1430, "time": 0.8305084745762712, "position": { "x": 8, @@ -3405,10 +4141,10 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1442, - "time": 0.8389830508474576, + "noteOrder": 1444, + "time": 0.8389830508474575, "position": { "x": 5, "y": 0 @@ -3428,9 +4164,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, + "noteOrder": 1546, "time": 0.8983050847457626, "position": { "x": 3, @@ -3451,9 +4187,9 @@ }, { "lineGroupId": 174, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1558, + "noteOrder": 1561, "time": 0.9067796610169491, "position": { "x": 3, @@ -3474,10 +4210,10 @@ }, { "lineGroupId": 174, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1573, - "time": 0.9152542372881357, + "noteOrder": 1575, + "time": 0.9152542372881355, "position": { "x": 3, "y": 0 @@ -3497,9 +4233,9 @@ }, { "lineGroupId": 174, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1584, + "noteOrder": 1586, "time": 0.9216101694915254, "position": { "x": 3, @@ -3520,10 +4256,10 @@ }, { "lineGroupId": 174, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1588, - "time": 0.9237288135593221, + "noteOrder": 1590, + "time": 0.923728813559322, "position": { "x": 4, "y": 0 @@ -3543,9 +4279,9 @@ }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1544, + "noteOrder": 1546, "time": 0.8983050847457626, "position": { "x": 7, @@ -3566,9 +4302,9 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1558, + "noteOrder": 1561, "time": 0.9067796610169491, "position": { "x": 7, @@ -3589,10 +4325,10 @@ }, { "lineGroupId": 175, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1573, - "time": 0.9152542372881357, + "noteOrder": 1575, + "time": 0.9152542372881355, "position": { "x": 7, "y": 0 @@ -3612,9 +4348,9 @@ }, { "lineGroupId": 175, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1580, + "noteOrder": 1583, "time": 0.9194915254237288, "position": { "x": 6, @@ -3635,10 +4371,10 @@ }, { "lineGroupId": 175, - "indexInLine": 4, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1588, - "time": 0.9237288135593221, + "noteOrder": 1590, + "time": 0.923728813559322, "position": { "x": 6, "y": 0 @@ -3658,9 +4394,9 @@ }, { "lineGroupId": 177, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1595, + "noteOrder": 1597, "time": 0.9279661016949152, "position": { "x": 3, @@ -3681,10 +4417,10 @@ }, { "lineGroupId": 177, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.9639830508474577, + "noteOrder": 1659, + "time": 0.9639830508474576, "position": { "x": 3, "y": 0 @@ -3704,10 +4440,10 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1598, - "time": 0.9300847457627118, + "noteOrder": 1601, + "time": 0.9300847457627117, "position": { "x": 7, "y": 0 @@ -3727,10 +4463,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.9639830508474577, + "noteOrder": 1659, + "time": 0.9639830508474576, "position": { "x": 7, "y": 0 diff --git "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1b.json" "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1b.json" index bbdb0d65..6e758d09 100644 --- "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1b.json" +++ "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/300_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 44, - "time": 0.025423728813559324, + "time": 0.02542372881355932, "position": { "x": 3, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 44, - "time": 0.025423728813559324, + "time": 0.02542372881355932, "position": { "x": 7, "y": 0 @@ -53,8 +53,8 @@ "isPlayAudio": false }, { - "noteOrder": 87, - "time": 0.05084745762711865, + "noteOrder": 88, + "time": 0.05084745762711864, "position": { "x": 7, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 131, - "time": 0.07627118644067797, + "time": 0.07627118644067796, "position": { "x": 4, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 146, - "time": 0.08474576271186442, + "time": 0.0847457627118644, "position": { "x": 3, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 160, - "time": 0.09322033898305085, + "time": 0.09322033898305083, "position": { "x": 3, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 167, + "noteOrder": 168, "time": 0.09745762711864406, "position": { "x": 4, @@ -254,7 +254,7 @@ }, { "noteOrder": 175, - "time": 0.1016949152542373, + "time": 0.10169491525423728, "position": { "x": 4, "y": 0 @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 189, + "noteOrder": 190, "time": 0.11016949152542373, "position": { "x": 6, @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 211, - "time": 0.1228813559322034, + "noteOrder": 212, + "time": 0.12288135593220338, "position": { "x": 4, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 218, + "noteOrder": 219, "time": 0.1271186440677966, "position": { "x": 7, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 240, - "time": 0.1398305084745763, + "noteOrder": 241, + "time": 0.13983050847457626, "position": { "x": 6, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 320, - "time": 0.1864406779661017, + "noteOrder": 321, + "time": 0.18644067796610167, "position": { "x": 6, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 335, + "noteOrder": 336, "time": 0.19491525423728812, "position": { "x": 6, @@ -454,7 +454,7 @@ }, { "noteOrder": 350, - "time": 0.2033898305084746, + "time": 0.20338983050847456, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 364, - "time": 0.21186440677966104, + "noteOrder": 365, + "time": 0.211864406779661, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 393, - "time": 0.22881355932203393, + "noteOrder": 394, + "time": 0.22881355932203387, "position": { "x": 6, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 422, - "time": 0.2457627118644068, + "noteOrder": 423, + "time": 0.24576271186440676, "position": { "x": 4, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 437, + "noteOrder": 438, "time": 0.2542372881355932, "position": { "x": 5, @@ -594,7 +594,7 @@ }, { "noteOrder": 452, - "time": 0.2627118644067797, + "time": 0.2627118644067796, "position": { "x": 5, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 466, + "noteOrder": 467, "time": 0.2711864406779661, "position": { "x": 6, @@ -634,7 +634,7 @@ }, { "noteOrder": 481, - "time": 0.2796610169491526, + "time": 0.2796610169491525, "position": { "x": 4, "y": 0 @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 496, "time": 0.288135593220339, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 510, - "time": 0.29661016949152547, + "noteOrder": 511, + "time": 0.2966101694915254, "position": { "x": 4, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 524, - "time": 0.3050847457627119, + "noteOrder": 525, + "time": 0.30508474576271183, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 539, - "time": 0.3135593220338983, + "noteOrder": 540, + "time": 0.31355932203389825, "position": { "x": 4, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 553, - "time": 0.3220338983050847, + "noteOrder": 554, + "time": 0.3220338983050848, "position": { "x": 4, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 561, + "noteOrder": 562, "time": 0.32627118644067793, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 568, + "noteOrder": 569, "time": 0.3305084745762712, "position": { "x": 4, @@ -794,7 +794,7 @@ }, { "noteOrder": 583, - "time": 0.33898305084745767, + "time": 0.3389830508474576, "position": { "x": 6, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 590, - "time": 0.3432203389830509, + "noteOrder": 591, + "time": 0.3432203389830508, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 597, - "time": 0.3474576271186441, + "noteOrder": 598, + "time": 0.34745762711864403, "position": { "x": 6, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 612, + "noteOrder": 613, "time": 0.3559322033898305, "position": { "x": 4, @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 619, - "time": 0.36016949152542377, + "noteOrder": 620, + "time": 0.36016949152542366, "position": { "x": 4, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 626, - "time": 0.364406779661017, + "noteOrder": 627, + "time": 0.3644067796610169, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 641, - "time": 0.3728813559322034, + "noteOrder": 642, + "time": 0.37288135593220334, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 649, "time": 0.3771186440677966, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 655, + "noteOrder": 656, "time": 0.3813559322033898, "position": { "x": 6, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 786, - "time": 0.45762711864406785, + "noteOrder": 788, + "time": 0.45762711864406774, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 801, - "time": 0.46610169491525427, + "noteOrder": 802, + "time": 0.46610169491525416, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.4745762711864407, "position": { "x": 4, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 830, + "noteOrder": 831, "time": 0.4830508474576271, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 845, - "time": 0.4915254237288136, + "noteOrder": 846, + "time": 0.4915254237288135, "position": { "x": 3, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 859, - "time": 0.5, + "noteOrder": 861, + "time": 0.49999999999999994, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 874, + "noteOrder": 875, "time": 0.5084745762711864, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 890, "time": 0.5169491525423728, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 903, - "time": 0.5254237288135594, + "noteOrder": 904, + "time": 0.5254237288135593, "position": { "x": 7, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 910, - "time": 0.5296610169491526, + "noteOrder": 912, + "time": 0.5296610169491525, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 918, - "time": 0.5338983050847458, + "noteOrder": 919, + "time": 0.5338983050847457, "position": { "x": 7, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 925, - "time": 0.538135593220339, + "noteOrder": 926, + "time": 0.5381355932203389, "position": { "x": 6, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 932, + "noteOrder": 934, "time": 0.5423728813559322, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 947, - "time": 0.5508474576271187, + "noteOrder": 948, + "time": 0.5508474576271186, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 961, - "time": 0.5593220338983051, + "noteOrder": 963, + "time": 0.559322033898305, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 969, - "time": 0.5635593220338984, + "noteOrder": 970, + "time": 0.5635593220338982, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 976, - "time": 0.5677966101694916, + "noteOrder": 977, + "time": 0.5677966101694915, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 985, "time": 0.5720338983050848, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 992, "time": 0.576271186440678, "position": { "x": 4, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1005, + "noteOrder": 1007, "time": 0.5847457627118644, "position": { "x": 7, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1020, - "time": 0.5932203389830509, + "noteOrder": 1021, + "time": 0.5932203389830508, "position": { "x": 3, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1034, - "time": 0.6016949152542374, + "noteOrder": 1036, + "time": 0.6016949152542372, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1078, - "time": 0.6271186440677966, + "noteOrder": 1079, + "time": 0.6271186440677965, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1085, - "time": 0.6313559322033899, + "noteOrder": 1087, + "time": 0.6313559322033898, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1092, + "noteOrder": 1094, "time": 0.635593220338983, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1100, - "time": 0.6398305084745763, + "noteOrder": 1101, + "time": 0.6398305084745762, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1107, - "time": 0.6440677966101694, + "noteOrder": 1109, + "time": 0.6440677966101696, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1121, + "noteOrder": 1123, "time": 0.6525423728813559, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1136, + "noteOrder": 1138, "time": 0.6610169491525424, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1143, + "noteOrder": 1145, "time": 0.6652542372881356, "position": { "x": 4, @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1151, - "time": 0.6694915254237289, + "noteOrder": 1152, + "time": 0.6694915254237288, "position": { "x": 3, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1158, - "time": 0.673728813559322, + "noteOrder": 1160, + "time": 0.6737288135593219, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1165, - "time": 0.6779661016949153, + "noteOrder": 1167, + "time": 0.6779661016949152, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1180, - "time": 0.6864406779661018, + "noteOrder": 1182, + "time": 0.6864406779661016, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1194, - "time": 0.6949152542372882, + "noteOrder": 1196, + "time": 0.6949152542372881, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1202, - "time": 0.6991525423728814, + "noteOrder": 1203, + "time": 0.6991525423728813, "position": { "x": 6, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1209, - "time": 0.7033898305084746, + "noteOrder": 1211, + "time": 0.7033898305084745, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1216, + "noteOrder": 1218, "time": 0.7076271186440678, "position": { "x": 6, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 1223, + "noteOrder": 1225, "time": 0.711864406779661, "position": { "x": 7, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1233, "time": 0.7161016949152542, "position": { "x": 6, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1238, - "time": 0.7203389830508475, + "noteOrder": 1240, + "time": 0.7203389830508473, "position": { "x": 7, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1245, + "noteOrder": 1247, "time": 0.7245762711864406, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1253, - "time": 0.728813559322034, + "noteOrder": 1255, + "time": 0.7288135593220338, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1260, - "time": 0.7330508474576272, + "noteOrder": 1262, + "time": 0.733050847457627, "position": { "x": 6, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1267, + "noteOrder": 1269, "time": 0.7372881355932204, "position": { "x": 7, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 1274, - "time": 0.7415254237288136, + "noteOrder": 1276, + "time": 0.7415254237288135, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1282, - "time": 0.7457627118644068, + "noteOrder": 1284, + "time": 0.7457627118644067, "position": { "x": 6, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1298, "time": 0.7542372881355932, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1311, + "noteOrder": 1313, "time": 0.7627118644067796, "position": { "x": 6, @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 1340, + "noteOrder": 1342, "time": 0.7796610169491525, "position": { "x": 7, @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 1355, + "noteOrder": 1357, "time": 0.788135593220339, "position": { "x": 5, @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1369, - "time": 0.7966101694915255, + "noteOrder": 1371, + "time": 0.7966101694915254, "position": { "x": 4, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1384, - "time": 0.8050847457627119, + "noteOrder": 1386, + "time": 0.8050847457627118, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1398, - "time": 0.8135593220338984, + "noteOrder": 1400, + "time": 0.8135593220338982, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1413, - "time": 0.8220338983050848, + "noteOrder": 1415, + "time": 0.8220338983050847, "position": { "x": 5, "y": 0 @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1427, + "noteOrder": 1430, "time": 0.8305084745762712, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1442, - "time": 0.8389830508474576, + "noteOrder": 1444, + "time": 0.8389830508474575, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1456, - "time": 0.8474576271186441, + "noteOrder": 1459, + "time": 0.847457627118644, "position": { "x": 6, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1466, "time": 0.8516949152542372, "position": { "x": 4, @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 1471, - "time": 0.8559322033898306, + "noteOrder": 1473, + "time": 0.8559322033898304, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 1486, - "time": 0.864406779661017, + "noteOrder": 1488, + "time": 0.8644067796610169, "position": { "x": 4, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1493, - "time": 0.8686440677966102, + "noteOrder": 1495, + "time": 0.8686440677966101, "position": { "x": 6, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 1500, + "noteOrder": 1503, "time": 0.8728813559322034, "position": { "x": 4, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 1515, + "noteOrder": 1517, "time": 0.8813559322033898, "position": { "x": 7, @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 1522, - "time": 0.8855932203389831, + "noteOrder": 1524, + "time": 0.8855932203389829, "position": { "x": 3, "y": 0 @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1532, "time": 0.8898305084745762, "position": { "x": 7, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1544, + "noteOrder": 1546, "time": 0.8983050847457626, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1551, + "noteOrder": 1554, "time": 0.902542372881356, "position": { "x": 7, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1558, + "noteOrder": 1561, "time": 0.9067796610169491, "position": { "x": 3, @@ -2356,10 +2356,10 @@ "lineNodes": [ { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 262, - "time": 0.15254237288135594, + "noteOrder": 263, + "time": 0.15254237288135591, "position": { "x": 6, "y": 0 @@ -2379,10 +2379,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 277, - "time": 0.16101694915254236, + "time": 0.1610169491525424, "position": { "x": 6, "y": 0 @@ -2402,10 +2402,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 291, - "time": 0.16949152542372883, + "noteOrder": 292, + "time": 0.1694915254237288, "position": { "x": 4, "y": 0 @@ -2425,7 +2425,7 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 306, "time": 0.17796610169491525, @@ -2448,9 +2448,9 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 670, + "noteOrder": 671, "time": 0.38983050847457623, "position": { "x": 4, @@ -2471,10 +2471,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 685, - "time": 0.39830508474576276, + "noteOrder": 686, + "time": 0.3983050847457627, "position": { "x": 4, "y": 0 @@ -2494,10 +2494,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 699, - "time": 0.4067796610169492, + "noteOrder": 700, + "time": 0.4067796610169491, "position": { "x": 6, "y": 0 @@ -2517,9 +2517,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 714, + "noteOrder": 715, "time": 0.4152542372881356, "position": { "x": 6, @@ -2540,10 +2540,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 728, - "time": 0.42372881355932207, + "noteOrder": 729, + "time": 0.423728813559322, "position": { "x": 6, "y": 0 @@ -2563,10 +2563,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 743, - "time": 0.4322033898305085, + "noteOrder": 744, + "time": 0.43220338983050843, "position": { "x": 6, "y": 0 @@ -2586,10 +2586,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 728, - "time": 0.42372881355932207, + "noteOrder": 729, + "time": 0.423728813559322, "position": { "x": 4, "y": 0 @@ -2609,10 +2609,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 743, - "time": 0.4322033898305085, + "noteOrder": 744, + "time": 0.43220338983050843, "position": { "x": 4, "y": 0 @@ -2632,10 +2632,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1573, - "time": 0.9152542372881357, + "noteOrder": 1575, + "time": 0.9152542372881355, "position": { "x": 4, "y": 0 @@ -2655,10 +2655,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.9639830508474577, + "noteOrder": 1659, + "time": 0.9639830508474576, "position": { "x": 4, "y": 0 @@ -2678,9 +2678,9 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1595, + "noteOrder": 1597, "time": 0.9279661016949152, "position": { "x": 6, @@ -2701,10 +2701,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1657, - "time": 0.9639830508474577, + "noteOrder": 1659, + "time": 0.9639830508474576, "position": { "x": 6, "y": 0 diff --git "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/info.json" "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/info.json" index ac3dda83..600e4659 100644 --- "a/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/info.json" +++ "b/tracks/\345\245\263\343\200\205\343\201\227\343\201\217\343\201\246 ANOTHER EDITION/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u5973\u3005\u3057\u304f\u3066 ANOTHER EDITION", - "SongLength": "40.045714", + "SongLength": "30.093061", "SongAuthorName": "\u30b4\u30fc\u30eb\u30c7\u30f3\u30dc\u30f3\u30d0\u30fc", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\346\200\252\347\211\251/301_difficulty_1a.json" "b/tracks/\346\200\252\347\211\251/301_difficulty_1a.json" index 5dc1cd9d..b4d1079f 100644 --- "a/tracks/\346\200\252\347\211\251/301_difficulty_1a.json" +++ "b/tracks/\346\200\252\347\211\251/301_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 194, - "time": 0.031746031746031744, + "time": 0.03174603174603175, "position": { "x": 4, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 219, - "time": 0.03571428571428571, + "time": 0.03571428571428572, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 243, - "time": 0.03968253968253968, + "time": 0.03968253968253969, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 267, - "time": 0.04365079365079365, + "time": 0.043650793650793655, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 389, - "time": 0.06349206349206349, + "time": 0.0634920634920635, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 413, - "time": 0.06746031746031746, + "time": 0.06746031746031747, "position": { "x": 3, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 437, - "time": 0.07142857142857142, + "noteOrder": 438, + "time": 0.07142857142857144, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 462, - "time": 0.07539682539682539, + "time": 0.0753968253968254, "position": { "x": 3, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 510, - "time": 0.08333333333333333, + "noteOrder": 511, + "time": 0.08333333333333334, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 559, - "time": 0.09126984126984126, + "time": 0.09126984126984128, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 583, - "time": 0.09523809523809523, + "time": 0.09523809523809525, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 607, - "time": 0.0992063492063492, + "noteOrder": 608, + "time": 0.09920634920634921, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 632, - "time": 0.10317460317460317, + "time": 0.10317460317460318, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 656, - "time": 0.10714285714285714, + "time": 0.10714285714285715, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 680, - "time": 0.1111111111111111, + "noteOrder": 681, + "time": 0.11111111111111112, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 680, - "time": 0.1111111111111111, + "noteOrder": 681, + "time": 0.11111111111111112, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 705, - "time": 0.11507936507936507, + "time": 0.11507936507936509, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 705, - "time": 0.11507936507936507, + "time": 0.11507936507936509, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 875, - "time": 0.14285714285714285, + "time": 0.14285714285714288, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 899, - "time": 0.1468253968253968, + "noteOrder": 900, + "time": 0.14682539682539683, "position": { "x": 3, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 923, - "time": 0.15079365079365079, + "noteOrder": 924, + "time": 0.1507936507936508, "position": { "x": 6, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 948, - "time": 0.15476190476190474, + "time": 0.15476190476190477, "position": { "x": 4, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 972, - "time": 0.15873015873015872, + "time": 0.15873015873015875, "position": { "x": 7, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 996, - "time": 0.16269841269841268, + "noteOrder": 997, + "time": 0.1626984126984127, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1021, - "time": 0.16666666666666666, + "time": 0.16666666666666669, "position": { "x": 6, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 1045, - "time": 0.1706349206349206, + "time": 0.17063492063492064, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 1118, - "time": 0.18253968253968253, + "time": 0.18253968253968256, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1142, + "noteOrder": 1143, "time": 0.1865079365079365, "position": { "x": 5, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1215, - "time": 0.1984126984126984, + "noteOrder": 1216, + "time": 0.19841269841269843, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1239, + "noteOrder": 1240, "time": 0.20238095238095238, "position": { "x": 5, @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1288, + "noteOrder": 1289, "time": 0.21031746031746032, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1336, + "noteOrder": 1337, "time": 0.21825396825396826, "position": { "x": 4, @@ -654,7 +654,7 @@ }, { "noteOrder": 1361, - "time": 0.2222222222222222, + "time": 0.22222222222222224, "position": { "x": 7, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1385, + "noteOrder": 1386, "time": 0.2261904761904762, "position": { "x": 3, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1409, - "time": 0.23015873015873015, + "noteOrder": 1410, + "time": 0.23015873015873017, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1458, - "time": 0.23809523809523808, + "noteOrder": 1459, + "time": 0.2380952380952381, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1458, - "time": 0.23809523809523808, + "noteOrder": 1459, + "time": 0.2380952380952381, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1652, - "time": 0.2698412698412698, + "noteOrder": 1653, + "time": 0.2698412698412699, "position": { "x": 6, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 1798, - "time": 0.2936507936507936, + "noteOrder": 1799, + "time": 0.29365079365079366, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1822, - "time": 0.2976190476190476, + "noteOrder": 1823, + "time": 0.29761904761904767, "position": { "x": 7, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1847, - "time": 0.30158730158730157, + "noteOrder": 1848, + "time": 0.3015873015873016, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.32539682539682535, + "noteOrder": 1994, + "time": 0.3253968253968254, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3333333333333333, + "noteOrder": 2042, + "time": 0.33333333333333337, "position": { "x": 7, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2065, - "time": 0.33730158730158727, + "noteOrder": 2066, + "time": 0.3373015873015873, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.3412698412698412, + "noteOrder": 2091, + "time": 0.3412698412698413, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2114, - "time": 0.34523809523809523, + "noteOrder": 2115, + "time": 0.3452380952380953, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2163, - "time": 0.35317460317460314, + "noteOrder": 2164, + "time": 0.3531746031746032, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.35714285714285715, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.3611111111111111, "position": { "x": 5, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2333, - "time": 0.38095238095238093, + "noteOrder": 2334, + "time": 0.380952380952381, "position": { "x": 3, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2357, - "time": 0.3849206349206349, + "noteOrder": 2358, + "time": 0.38492063492063494, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2527, - "time": 0.4126984126984127, + "noteOrder": 2528, + "time": 0.41269841269841273, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2551, - "time": 0.41666666666666663, + "noteOrder": 2553, + "time": 0.4166666666666667, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2600, - "time": 0.4246031746031746, + "noteOrder": 2601, + "time": 0.42460317460317465, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2721, - "time": 0.4444444444444444, + "noteOrder": 2723, + "time": 0.4444444444444445, "position": { "x": 3, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2747, "time": 0.44841269841269843, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2794, - "time": 0.45634920634920634, + "noteOrder": 2796, + "time": 0.4563492063492064, "position": { "x": 7, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2867, + "noteOrder": 2869, "time": 0.46825396825396826, "position": { "x": 6, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2892, - "time": 0.4722222222222222, + "noteOrder": 2893, + "time": 0.47222222222222227, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2964, + "noteOrder": 2966, "time": 0.48412698412698413, "position": { "x": 4, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2989, - "time": 0.4880952380952381, + "noteOrder": 2990, + "time": 0.48809523809523814, "position": { "x": 5, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3110, - "time": 0.5079365079365079, + "noteOrder": 3112, + "time": 0.507936507936508, "position": { "x": 7, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3136, "time": 0.511904761904762, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3159, + "noteOrder": 3161, "time": 0.5158730158730158, "position": { "x": 6, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3183, - "time": 0.5198412698412698, + "noteOrder": 3185, + "time": 0.5198412698412699, "position": { "x": 4, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3305, - "time": 0.5396825396825397, + "noteOrder": 3306, + "time": 0.5396825396825398, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3329, + "noteOrder": 3331, "time": 0.5436507936507937, "position": { "x": 3, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.5793650793650793, + "noteOrder": 3550, + "time": 0.5793650793650794, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.5793650793650793, + "noteOrder": 3550, + "time": 0.5793650793650794, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3596, - "time": 0.5873015873015872, + "noteOrder": 3598, + "time": 0.5873015873015873, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 3621, + "noteOrder": 3622, "time": 0.5912698412698413, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3645, - "time": 0.5952380952380952, + "noteOrder": 3647, + "time": 0.5952380952380953, "position": { "x": 6, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3669, - "time": 0.5992063492063492, + "noteOrder": 3671, + "time": 0.5992063492063493, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3693, - "time": 0.6031746031746031, + "noteOrder": 3695, + "time": 0.6031746031746033, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3718, + "noteOrder": 3720, "time": 0.6071428571428572, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3742, - "time": 0.611111111111111, + "noteOrder": 3744, + "time": 0.6111111111111112, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4204, - "time": 0.6865079365079365, + "noteOrder": 4206, + "time": 0.6865079365079366, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4252, - "time": 0.6944444444444444, + "noteOrder": 4255, + "time": 0.6944444444444445, "position": { "x": 4, "y": 0 @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4301, + "noteOrder": 4303, "time": 0.7023809523809524, "position": { "x": 6, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4325, - "time": 0.7063492063492063, + "noteOrder": 4327, + "time": 0.7063492063492064, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.7103174603174602, + "noteOrder": 4352, + "time": 0.7103174603174603, "position": { "x": 6, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4398, - "time": 0.7182539682539681, + "noteOrder": 4400, + "time": 0.7182539682539684, "position": { "x": 4, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4425, "time": 0.7222222222222222, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7261904761904763, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4860, - "time": 0.7936507936507936, + "noteOrder": 4862, + "time": 0.7936507936507937, "position": { "x": 7, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4884, + "noteOrder": 4887, "time": 0.7976190476190476, "position": { "x": 5, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4908, - "time": 0.8015873015873015, + "noteOrder": 4911, + "time": 0.8015873015873016, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4933, - "time": 0.8055555555555555, + "noteOrder": 4935, + "time": 0.8055555555555557, "position": { "x": 5, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5054, - "time": 0.8253968253968254, + "noteOrder": 5057, + "time": 0.8253968253968255, "position": { "x": 6, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5078, + "noteOrder": 5081, "time": 0.8293650793650793, "position": { "x": 4, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5103, - "time": 0.8333333333333333, + "noteOrder": 5105, + "time": 0.8333333333333334, "position": { "x": 3, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5103, - "time": 0.8333333333333333, + "noteOrder": 5105, + "time": 0.8333333333333334, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5127, - "time": 0.8373015873015872, + "noteOrder": 5130, + "time": 0.8373015873015874, "position": { "x": 4, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5127, - "time": 0.8373015873015872, + "noteOrder": 5130, + "time": 0.8373015873015874, "position": { "x": 6, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.865079365079365, + "noteOrder": 5300, + "time": 0.8650793650793651, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.8968253968253969, "position": { "x": 4, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5832, - "time": 0.9523809523809523, + "noteOrder": 5835, + "time": 0.9523809523809524, "position": { "x": 3, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5856, - "time": 0.9563492063492063, + "noteOrder": 5859, + "time": 0.9563492063492065, "position": { "x": 7, "y": 0 @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5880, + "noteOrder": 5883, "time": 0.9603174603174603, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5880, + "noteOrder": 5883, "time": 0.9603174603174603, "position": { "x": 6, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5905, - "time": 0.9642857142857142, + "noteOrder": 5908, + "time": 0.9642857142857144, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5905, - "time": 0.9642857142857142, + "noteOrder": 5908, + "time": 0.9642857142857144, "position": { "x": 7, "y": 0 @@ -2076,10 +2076,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, - "time": 0.015873015873015872, + "time": 0.015873015873015876, "position": { "x": 7, "y": 0 @@ -2099,10 +2099,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.023809523809523808, + "time": 0.02380952380952381, "position": { "x": 7, "y": 0 @@ -2122,10 +2122,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 146, - "time": 0.023809523809523808, + "time": 0.02380952380952381, "position": { "x": 3, "y": 0 @@ -2145,10 +2145,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, - "time": 0.03968253968253968, + "time": 0.03968253968253969, "position": { "x": 3, "y": 0 @@ -2168,10 +2168,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 292, - "time": 0.047619047619047616, + "time": 0.04761904761904762, "position": { "x": 3, "y": 0 @@ -2191,10 +2191,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 340, - "time": 0.05555555555555555, + "time": 0.05555555555555556, "position": { "x": 3, "y": 0 @@ -2214,10 +2214,10 @@ }, { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 340, - "time": 0.05555555555555555, + "time": 0.05555555555555556, "position": { "x": 7, "y": 0 @@ -2237,10 +2237,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 437, - "time": 0.07142857142857142, + "noteOrder": 438, + "time": 0.07142857142857144, "position": { "x": 7, "y": 0 @@ -2260,10 +2260,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 486, - "time": 0.07936507936507936, + "time": 0.07936507936507937, "position": { "x": 7, "y": 0 @@ -2283,10 +2283,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 510, - "time": 0.08333333333333333, + "noteOrder": 511, + "time": 0.08333333333333334, "position": { "x": 7, "y": 0 @@ -2306,10 +2306,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 535, - "time": 0.0873015873015873, + "time": 0.08730158730158731, "position": { "x": 3, "y": 0 @@ -2329,10 +2329,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 559, - "time": 0.09126984126984126, + "time": 0.09126984126984128, "position": { "x": 3, "y": 0 @@ -2352,10 +2352,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1069, - "time": 0.1746031746031746, + "noteOrder": 1070, + "time": 0.17460317460317462, "position": { "x": 7, "y": 0 @@ -2375,10 +2375,10 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1118, - "time": 0.18253968253968253, + "time": 0.18253968253968256, "position": { "x": 7, "y": 0 @@ -2398,10 +2398,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1166, - "time": 0.19047619047619047, + "noteOrder": 1167, + "time": 0.1904761904761905, "position": { "x": 3, "y": 0 @@ -2421,10 +2421,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1215, - "time": 0.1984126984126984, + "noteOrder": 1216, + "time": 0.19841269841269843, "position": { "x": 3, "y": 0 @@ -2444,10 +2444,10 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1264, - "time": 0.20634920634920634, + "time": 0.20634920634920637, "position": { "x": 7, "y": 0 @@ -2467,9 +2467,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1288, + "noteOrder": 1289, "time": 0.21031746031746032, "position": { "x": 7, @@ -2490,10 +2490,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1312, - "time": 0.21428571428571427, + "noteOrder": 1313, + "time": 0.2142857142857143, "position": { "x": 3, "y": 0 @@ -2513,9 +2513,9 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1336, + "noteOrder": 1337, "time": 0.21825396825396826, "position": { "x": 3, @@ -2536,9 +2536,9 @@ }, { "lineGroupId": 51, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1482, + "noteOrder": 1483, "time": 0.24206349206349206, "position": { "x": 6, @@ -2559,9 +2559,9 @@ }, { "lineGroupId": 51, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1531, + "noteOrder": 1532, "time": 0.25, "position": { "x": 6, @@ -2582,9 +2582,9 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1482, + "noteOrder": 1483, "time": 0.24206349206349206, "position": { "x": 4, @@ -2605,9 +2605,9 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1531, + "noteOrder": 1532, "time": 0.25, "position": { "x": 4, @@ -2628,10 +2628,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1555, - "time": 0.25396825396825395, + "noteOrder": 1556, + "time": 0.253968253968254, "position": { "x": 3, "y": 0 @@ -2651,10 +2651,10 @@ }, { "lineGroupId": 53, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1604, - "time": 0.26190476190476186, + "noteOrder": 1605, + "time": 0.2619047619047619, "position": { "x": 3, "y": 0 @@ -2674,10 +2674,10 @@ }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1555, - "time": 0.25396825396825395, + "noteOrder": 1556, + "time": 0.253968253968254, "position": { "x": 7, "y": 0 @@ -2697,10 +2697,10 @@ }, { "lineGroupId": 54, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1604, - "time": 0.26190476190476186, + "noteOrder": 1605, + "time": 0.2619047619047619, "position": { "x": 7, "y": 0 @@ -2720,10 +2720,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1652, - "time": 0.2698412698412698, + "noteOrder": 1653, + "time": 0.2698412698412699, "position": { "x": 4, "y": 0 @@ -2743,10 +2743,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1750, - "time": 0.2857142857142857, + "time": 0.28571428571428575, "position": { "x": 4, "y": 0 @@ -2766,10 +2766,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1701, - "time": 0.27777777777777773, + "noteOrder": 1702, + "time": 0.2777777777777778, "position": { "x": 7, "y": 0 @@ -2789,10 +2789,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1750, - "time": 0.2857142857142857, + "time": 0.28571428571428575, "position": { "x": 6, "y": 0 @@ -2812,10 +2812,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1847, - "time": 0.30158730158730157, + "noteOrder": 1848, + "time": 0.3015873015873016, "position": { "x": 6, "y": 0 @@ -2835,10 +2835,10 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1944, - "time": 0.31746031746031744, + "noteOrder": 1945, + "time": 0.3174603174603175, "position": { "x": 6, "y": 0 @@ -2858,10 +2858,10 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1895, - "time": 0.3095238095238095, + "noteOrder": 1896, + "time": 0.30952380952380953, "position": { "x": 3, "y": 0 @@ -2881,10 +2881,10 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1944, - "time": 0.31746031746031744, + "noteOrder": 1945, + "time": 0.3174603174603175, "position": { "x": 4, "y": 0 @@ -2904,10 +2904,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.32936507936507936, + "noteOrder": 2018, + "time": 0.3293650793650794, "position": { "x": 3, "y": 0 @@ -2927,10 +2927,10 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2114, - "time": 0.34523809523809523, + "noteOrder": 2115, + "time": 0.3452380952380953, "position": { "x": 3, "y": 0 @@ -2950,10 +2950,10 @@ }, { "lineGroupId": 70, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2138, - "time": 0.3492063492063492, + "noteOrder": 2139, + "time": 0.34920634920634924, "position": { "x": 7, "y": 0 @@ -2973,9 +2973,9 @@ }, { "lineGroupId": 70, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2211, + "noteOrder": 2212, "time": 0.3611111111111111, "position": { "x": 7, @@ -2996,10 +2996,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2236, - "time": 0.36507936507936506, + "noteOrder": 2237, + "time": 0.3650793650793651, "position": { "x": 3, "y": 0 @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2260, - "time": 0.369047619047619, + "noteOrder": 2261, + "time": 0.36904761904761907, "position": { "x": 4, "y": 0 @@ -3042,9 +3042,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.373015873015873, "position": { "x": 7, @@ -3065,9 +3065,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2308, + "noteOrder": 2310, "time": 0.376984126984127, "position": { "x": 6, @@ -3088,9 +3088,9 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2381, + "noteOrder": 2383, "time": 0.3888888888888889, "position": { "x": 4, @@ -3111,9 +3111,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2406, + "noteOrder": 2407, "time": 0.39285714285714285, "position": { "x": 4, @@ -3134,9 +3134,9 @@ }, { "lineGroupId": 79, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2381, + "noteOrder": 2383, "time": 0.3888888888888889, "position": { "x": 6, @@ -3157,9 +3157,9 @@ }, { "lineGroupId": 79, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2406, + "noteOrder": 2407, "time": 0.39285714285714285, "position": { "x": 6, @@ -3180,10 +3180,10 @@ }, { "lineGroupId": 81, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2430, - "time": 0.3968253968253968, + "noteOrder": 2431, + "time": 0.39682539682539686, "position": { "x": 7, "y": 0 @@ -3202,11 +3202,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2478, - "time": 0.40476190476190477, + "noteOrder": 2455, + "time": 0.4007936507936508, "position": { "x": 7, "y": 0 @@ -3220,18 +3220,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2576, - "time": 0.42063492063492064, + "noteOrder": 2455, + "time": 0.4007936507936508, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3248,13 +3248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 1, + "lineGroupId": 81, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2600, - "time": 0.4246031746031746, + "noteOrder": 2480, + "time": 0.40476190476190477, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3271,13 +3271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 81, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2624, - "time": 0.42857142857142855, + "noteOrder": 2480, + "time": 0.40476190476190477, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3289,18 +3289,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2673, - "time": 0.4365079365079365, + "noteOrder": 2480, + "time": 0.40476190476190477, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3312,18 +3312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2770, - "time": 0.4523809523809524, + "noteOrder": 2504, + "time": 0.4087301587301588, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3340,11 +3340,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2794, - "time": 0.45634920634920634, + "noteOrder": 2504, + "time": 0.4087301587301588, "position": { "x": 6, "y": 0 @@ -3363,13 +3363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2819, - "time": 0.4603174603174603, + "noteOrder": 2528, + "time": 0.41269841269841273, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3381,18 +3381,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 82, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2867, - "time": 0.46825396825396826, + "noteOrder": 2528, + "time": 0.41269841269841273, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3404,18 +3404,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2916, - "time": 0.47619047619047616, + "noteOrder": 2577, + "time": 0.42063492063492064, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3427,18 +3427,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2964, - "time": 0.48412698412698413, + "noteOrder": 2601, + "time": 0.42460317460317465, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3450,18 +3450,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3013, - "time": 0.49206349206349204, + "noteOrder": 2626, + "time": 0.4285714285714286, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3473,16 +3473,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3062, - "time": 0.5, + "noteOrder": 2650, + "time": 0.43253968253968256, "position": { "x": 3, "y": 0 @@ -3501,13 +3501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3207, - "time": 0.5238095238095237, + "noteOrder": 2650, + "time": 0.43253968253968256, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3519,18 +3519,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 87, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3256, - "time": 0.5317460317460317, + "noteOrder": 2674, + "time": 0.4365079365079365, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3542,18 +3542,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3256, - "time": 0.5317460317460317, + "noteOrder": 2674, + "time": 0.4365079365079365, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3570,11 +3570,11 @@ "isPlayAudio": false }, { - "lineGroupId": 106, + "lineGroupId": 88, "indexInLine": 1, "isSliding": false, - "noteOrder": 3305, - "time": 0.5396825396825397, + "noteOrder": 2674, + "time": 0.4365079365079365, "position": { "x": 3, "y": 0 @@ -3588,16 +3588,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3450, - "time": 0.5634920634920635, + "noteOrder": 2699, + "time": 0.4404761904761905, "position": { "x": 3, "y": 0 @@ -3611,18 +3611,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3499, - "time": 0.5714285714285714, + "noteOrder": 2699, + "time": 0.4404761904761905, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3634,18 +3634,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 88, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3450, - "time": 0.5634920634920635, + "noteOrder": 2723, + "time": 0.4444444444444445, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3662,13 +3662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 88, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3499, - "time": 0.5714285714285714, + "noteOrder": 2723, + "time": 0.4444444444444445, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3685,13 +3685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 91, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3766, - "time": 0.615079365079365, + "noteOrder": 2772, + "time": 0.4523809523809524, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3708,13 +3708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 91, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3961, - "time": 0.6468253968253967, + "noteOrder": 2796, + "time": 0.4563492063492064, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3731,11 +3731,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3791, - "time": 0.619047619047619, + "noteOrder": 2820, + "time": 0.46031746031746035, "position": { "x": 7, "y": 0 @@ -3754,11 +3754,11 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 1, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3961, - "time": 0.6468253968253967, + "noteOrder": 2869, + "time": 0.46825396825396826, "position": { "x": 7, "y": 0 @@ -3777,13 +3777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3985, - "time": 0.6507936507936507, + "noteOrder": 2917, + "time": 0.4761904761904762, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3795,18 +3795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.6587301587301587, + "noteOrder": 2966, + "time": 0.48412698412698413, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3818,18 +3818,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.6587301587301587, + "noteOrder": 3015, + "time": 0.4920634920634921, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3841,18 +3841,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4082, - "time": 0.6666666666666666, + "noteOrder": 3039, + "time": 0.49603174603174605, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3864,18 +3864,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4082, - "time": 0.6666666666666666, + "noteOrder": 3039, + "time": 0.49603174603174605, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3892,13 +3892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 4107, - "time": 0.6706349206349207, + "noteOrder": 3063, + "time": 0.5, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3910,16 +3910,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4131, - "time": 0.6746031746031745, + "noteOrder": 3088, + "time": 0.5039682539682541, "position": { "x": 3, "y": 0 @@ -3938,13 +3938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 1, + "lineGroupId": 100, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4155, - "time": 0.6785714285714285, + "noteOrder": 3088, + "time": 0.5039682539682541, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3961,11 +3961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4179, - "time": 0.6825396825396824, + "noteOrder": 3209, + "time": 0.5238095238095238, "position": { "x": 7, "y": 0 @@ -3984,11 +3984,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 105, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4204, - "time": 0.6865079365079365, + "noteOrder": 3258, + "time": 0.5317460317460319, "position": { "x": 7, "y": 0 @@ -4007,11 +4007,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4228, - "time": 0.6904761904761905, + "noteOrder": 3258, + "time": 0.5317460317460319, "position": { "x": 3, "y": 0 @@ -4030,11 +4030,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4252, - "time": 0.6944444444444444, + "noteOrder": 3306, + "time": 0.5396825396825398, "position": { "x": 3, "y": 0 @@ -4053,13 +4053,1347 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.6984126984126984, + "noteOrder": 3452, + "time": 0.5634920634920636, "position": { - "x": 7, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3501, + "time": 0.5714285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3452, + "time": 0.5634920634920636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3501, + "time": 0.5714285714285715, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3768, + "time": 0.6150793650793651, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3963, + "time": 0.6468253968253969, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3793, + "time": 0.6190476190476191, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 124, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3963, + "time": 0.6468253968253969, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3987, + "time": 0.6507936507936508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4036, + "time": 0.6587301587301588, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4036, + "time": 0.6587301587301588, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4084, + "time": 0.6666666666666667, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4084, + "time": 0.6666666666666667, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 127, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4109, + "time": 0.6706349206349207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4133, + "time": 0.6746031746031746, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 128, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4157, + "time": 0.6785714285714286, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4182, + "time": 0.6825396825396826, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4206, + "time": 0.6865079365079366, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4230, + "time": 0.6904761904761906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4255, + "time": 0.6944444444444445, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4279, + "time": 0.6984126984126985, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4376, + "time": 0.7142857142857143, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4376, + "time": 0.7142857142857143, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4473, + "time": 0.7301587301587302, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4473, + "time": 0.7301587301587302, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4498, + "time": 0.7341269841269842, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4522, + "time": 0.7380952380952381, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4546, + "time": 0.7420634920634922, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4571, + "time": 0.746031746031746, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4595, + "time": 0.7500000000000001, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4571, + "time": 0.746031746031746, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 144, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4595, + "time": 0.7500000000000001, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4619, + "time": 0.753968253968254, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 145, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4644, + "time": 0.757936507936508, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4619, + "time": 0.753968253968254, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 146, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4644, + "time": 0.757936507936508, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4668, + "time": 0.761904761904762, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4692, + "time": 0.7658730158730158, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4692, + "time": 0.7658730158730158, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4716, + "time": 0.7698412698412699, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4716, + "time": 0.7698412698412699, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4716, + "time": 0.7698412698412699, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4741, + "time": 0.773809523809524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4741, + "time": 0.773809523809524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7777777777777778, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7777777777777778, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7777777777777778, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4789, + "time": 0.7817460317460319, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4789, + "time": 0.7817460317460319, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7857142857142857, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7857142857142857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7857142857142857, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4838, + "time": 0.7896825396825398, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4838, + "time": 0.7896825396825398, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 4862, + "time": 0.7936507936507937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 4862, + "time": 0.7936507936507937, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4960, + "time": 0.8095238095238095, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4984, + "time": 0.8134920634920636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4984, + "time": 0.8134920634920636, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -4076,13 +5410,151 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5008, + "time": 0.8174603174603176, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5033, + "time": 0.8214285714285715, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5033, + "time": 0.8214285714285715, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5154, + "time": 0.8412698412698413, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5178, + "time": 0.8452380952380953, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5178, + "time": 0.8452380952380953, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4374, - "time": 0.7142857142857143, + "noteOrder": 5203, + "time": 0.8492063492063493, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4094,18 +5566,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4374, - "time": 0.7142857142857143, + "noteOrder": 5203, + "time": 0.8492063492063493, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4122,11 +5594,11 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 164, "indexInLine": 1, "isSliding": false, - "noteOrder": 4471, - "time": 0.7301587301587301, + "noteOrder": 5203, + "time": 0.8492063492063493, "position": { "x": 3, "y": 0 @@ -4140,18 +5612,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4471, - "time": 0.7301587301587301, + "noteOrder": 5227, + "time": 0.8531746031746033, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4168,13 +5640,13 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 164, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4495, - "time": 0.7341269841269842, + "noteOrder": 5227, + "time": 0.8531746031746033, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4191,11 +5663,11 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 164, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4520, - "time": 0.738095238095238, + "noteOrder": 5251, + "time": 0.8571428571428572, "position": { "x": 4, "y": 0 @@ -4209,18 +5681,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 142, + "lineGroupId": 164, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5251, + "time": 0.8571428571428572, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, "indexInLine": 1, "isSliding": false, - "noteOrder": 4544, - "time": 0.742063492063492, + "noteOrder": 5251, + "time": 0.8571428571428572, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4237,13 +5732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4568, - "time": 0.746031746031746, + "noteOrder": 5349, + "time": 0.873015873015873, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4255,16 +5750,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 4592, - "time": 0.7499999999999999, + "noteOrder": 5349, + "time": 0.873015873015873, "position": { "x": 7, "y": 0 @@ -4283,13 +5778,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4568, - "time": 0.746031746031746, + "noteOrder": 5373, + "time": 0.8769841269841271, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4301,18 +5796,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4592, - "time": 0.7499999999999999, + "noteOrder": 5373, + "time": 0.8769841269841271, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4324,16 +5819,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4617, - "time": 0.753968253968254, + "noteOrder": 5397, + "time": 0.880952380952381, "position": { "x": 6, "y": 0 @@ -4352,13 +5847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 1, + "lineGroupId": 167, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4641, - "time": 0.757936507936508, + "noteOrder": 5397, + "time": 0.880952380952381, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4375,13 +5870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4617, - "time": 0.753968253968254, + "noteOrder": 5397, + "time": 0.880952380952381, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4398,13 +5893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 146, - "indexInLine": 1, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4641, - "time": 0.757936507936508, + "noteOrder": 5422, + "time": 0.884920634920635, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4421,13 +5916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4665, - "time": 0.7619047619047619, + "noteOrder": 5422, + "time": 0.884920634920635, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4439,18 +5934,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 148, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4714, - "time": 0.7698412698412698, + "noteOrder": 5446, + "time": 0.888888888888889, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4467,13 +5962,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4763, - "time": 0.7777777777777778, + "noteOrder": 5446, + "time": 0.888888888888889, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4485,16 +5980,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4811, - "time": 0.7857142857142857, + "noteOrder": 5446, + "time": 0.888888888888889, "position": { "x": 7, "y": 0 @@ -4508,18 +6003,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4957, - "time": 0.8095238095238095, + "noteOrder": 5543, + "time": 0.9047619047619048, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4536,11 +6031,11 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5006, - "time": 0.8174603174603174, + "noteOrder": 5543, + "time": 0.9047619047619048, "position": { "x": 3, "y": 0 @@ -4559,11 +6054,11 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5151, - "time": 0.8412698412698413, + "noteOrder": 5567, + "time": 0.9087301587301588, "position": { "x": 3, "y": 0 @@ -4582,13 +6077,13 @@ "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5200, - "time": 0.8492063492063492, + "noteOrder": 5567, + "time": 0.9087301587301588, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4600,18 +6095,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5249, - "time": 0.8571428571428571, + "noteOrder": 5592, + "time": 0.9126984126984128, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4628,13 +6123,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5346, - "time": 0.873015873015873, + "noteOrder": 5592, + "time": 0.9126984126984128, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4651,13 +6146,13 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5346, - "time": 0.873015873015873, + "noteOrder": 5592, + "time": 0.9126984126984128, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4674,13 +6169,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5394, - "time": 0.8809523809523809, + "noteOrder": 5616, + "time": 0.9166666666666667, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4692,18 +6187,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5443, - "time": 0.8888888888888888, + "noteOrder": 5616, + "time": 0.9166666666666667, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4720,11 +6215,11 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5540, - "time": 0.9047619047619048, + "noteOrder": 5640, + "time": 0.9206349206349207, "position": { "x": 4, "y": 0 @@ -4743,11 +6238,34 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5540, - "time": 0.9047619047619048, + "noteOrder": 5640, + "time": 0.9206349206349207, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 173, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5640, + "time": 0.9206349206349207, "position": { "x": 3, "y": 0 @@ -4766,11 +6284,11 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5589, - "time": 0.9126984126984127, + "noteOrder": 5665, + "time": 0.9246031746031745, "position": { "x": 3, "y": 0 @@ -4784,18 +6302,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 173, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5637, - "time": 0.9206349206349206, + "noteOrder": 5665, + "time": 0.9246031746031745, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4813,9 +6331,9 @@ }, { "lineGroupId": 174, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5686, + "noteOrder": 5689, "time": 0.9285714285714286, "position": { "x": 7, @@ -4834,11 +6352,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 174, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5713, + "time": 0.9325396825396827, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5713, + "time": 0.9325396825396827, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 175, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5738, "time": 0.9365079365079365, "position": { "x": 3, @@ -4859,10 +6423,10 @@ }, { "lineGroupId": 175, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5759, - "time": 0.9404761904761904, + "noteOrder": 5762, + "time": 0.9404761904761906, "position": { "x": 3, "y": 0 @@ -4882,10 +6446,10 @@ }, { "lineGroupId": 176, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5783, - "time": 0.9444444444444444, + "noteOrder": 5786, + "time": 0.9444444444444445, "position": { "x": 7, "y": 0 @@ -4905,9 +6469,9 @@ }, { "lineGroupId": 176, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5807, + "noteOrder": 5810, "time": 0.9484126984126985, "position": { "x": 7, diff --git "a/tracks/\346\200\252\347\211\251/301_difficulty_1b.json" "b/tracks/\346\200\252\347\211\251/301_difficulty_1b.json" index 67f79f50..77e94810 100644 --- "a/tracks/\346\200\252\347\211\251/301_difficulty_1b.json" +++ "b/tracks/\346\200\252\347\211\251/301_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 97, - "time": 0.015873015873015872, + "time": 0.015873015873015876, "position": { "x": 7, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 146, - "time": 0.023809523809523808, + "time": 0.02380952380952381, "position": { "x": 3, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 243, - "time": 0.03968253968253968, + "time": 0.03968253968253969, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 292, - "time": 0.047619047619047616, + "time": 0.04761904761904762, "position": { "x": 3, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 340, - "time": 0.05555555555555555, + "time": 0.05555555555555556, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 437, - "time": 0.07142857142857142, + "noteOrder": 438, + "time": 0.07142857142857144, "position": { "x": 4, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 486, - "time": 0.07936507936507936, + "time": 0.07936507936507937, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 583, - "time": 0.09523809523809523, + "time": 0.09523809523809525, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 680, - "time": 0.1111111111111111, + "noteOrder": 681, + "time": 0.11111111111111112, "position": { "x": 6, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 705, - "time": 0.11507936507936507, + "time": 0.11507936507936509, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 778, - "time": 0.12698412698412698, + "time": 0.126984126984127, "position": { "x": 3, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 826, - "time": 0.1349206349206349, + "noteOrder": 827, + "time": 0.13492063492063494, "position": { "x": 7, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 923, - "time": 0.15079365079365079, + "noteOrder": 924, + "time": 0.1507936507936508, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 948, - "time": 0.15476190476190474, + "time": 0.15476190476190477, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1021, - "time": 0.16666666666666666, + "time": 0.16666666666666669, "position": { "x": 5, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1045, - "time": 0.1706349206349206, + "time": 0.17063492063492064, "position": { "x": 4, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1118, - "time": 0.18253968253968253, + "time": 0.18253968253968256, "position": { "x": 7, "y": 0 @@ -353,7 +353,7 @@ "isPlayAudio": false }, { - "noteOrder": 1142, + "noteOrder": 1143, "time": 0.1865079365079365, "position": { "x": 3, @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1215, - "time": 0.1984126984126984, + "noteOrder": 1216, + "time": 0.19841269841269843, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1239, + "noteOrder": 1240, "time": 0.20238095238095238, "position": { "x": 7, @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1458, - "time": 0.23809523809523808, + "noteOrder": 1459, + "time": 0.2380952380952381, "position": { "x": 3, "y": 0 @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 1482, + "noteOrder": 1483, "time": 0.24206349206349206, "position": { "x": 4, @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 1555, - "time": 0.25396825396825395, + "noteOrder": 1556, + "time": 0.253968253968254, "position": { "x": 4, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1555, - "time": 0.25396825396825395, + "noteOrder": 1556, + "time": 0.253968253968254, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1604, - "time": 0.26190476190476186, + "noteOrder": 1605, + "time": 0.2619047619047619, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1604, - "time": 0.26190476190476186, + "noteOrder": 1605, + "time": 0.2619047619047619, "position": { "x": 7, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1701, - "time": 0.27777777777777773, + "noteOrder": 1702, + "time": 0.2777777777777778, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1750, - "time": 0.2857142857142857, + "time": 0.28571428571428575, "position": { "x": 3, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1798, - "time": 0.2936507936507936, + "noteOrder": 1799, + "time": 0.29365079365079366, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1895, - "time": 0.3095238095238095, + "noteOrder": 1896, + "time": 0.30952380952380953, "position": { "x": 4, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1944, - "time": 0.31746031746031744, + "noteOrder": 1945, + "time": 0.3174603174603175, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.32539682539682535, + "noteOrder": 1994, + "time": 0.3253968253968254, "position": { "x": 6, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.3333333333333333, + "noteOrder": 2042, + "time": 0.33333333333333337, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2090, - "time": 0.3412698412698412, + "noteOrder": 2091, + "time": 0.3412698412698413, "position": { "x": 5, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2138, - "time": 0.3492063492063492, + "noteOrder": 2139, + "time": 0.34920634920634924, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2188, "time": 0.35714285714285715, "position": { "x": 3, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2236, - "time": 0.36507936507936506, + "noteOrder": 2237, + "time": 0.3650793650793651, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2236, - "time": 0.36507936507936506, + "noteOrder": 2237, + "time": 0.3650793650793651, "position": { "x": 4, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.373015873015873, "position": { "x": 3, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2284, + "noteOrder": 2285, "time": 0.373015873015873, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2430, - "time": 0.3968253968253968, + "noteOrder": 2431, + "time": 0.39682539682539686, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2478, + "noteOrder": 2480, "time": 0.40476190476190477, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2527, - "time": 0.4126984126984127, + "noteOrder": 2528, + "time": 0.41269841269841273, "position": { "x": 5, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2527, - "time": 0.4126984126984127, + "noteOrder": 2528, + "time": 0.41269841269841273, "position": { "x": 7, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2577, "time": 0.42063492063492064, "position": { "x": 6, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2624, - "time": 0.42857142857142855, + "noteOrder": 2626, + "time": 0.4285714285714286, "position": { "x": 5, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.4365079365079365, "position": { "x": 6, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2770, + "noteOrder": 2772, "time": 0.4523809523809524, "position": { "x": 4, @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2819, - "time": 0.4603174603174603, + "noteOrder": 2820, + "time": 0.46031746031746035, "position": { "x": 7, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2819, - "time": 0.4603174603174603, + "noteOrder": 2820, + "time": 0.46031746031746035, "position": { "x": 3, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2867, + "noteOrder": 2869, "time": 0.46825396825396826, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2867, + "noteOrder": 2869, "time": 0.46825396825396826, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3013, - "time": 0.49206349206349204, + "noteOrder": 3015, + "time": 0.4920634920634921, "position": { "x": 6, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3013, - "time": 0.49206349206349204, + "noteOrder": 3015, + "time": 0.4920634920634921, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3062, + "noteOrder": 3063, "time": 0.5, "position": { "x": 3, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3062, + "noteOrder": 3063, "time": 0.5, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3207, - "time": 0.5238095238095237, + "noteOrder": 3209, + "time": 0.5238095238095238, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3256, - "time": 0.5317460317460317, + "noteOrder": 3258, + "time": 0.5317460317460319, "position": { "x": 7, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3353, - "time": 0.5476190476190476, + "noteOrder": 3355, + "time": 0.5476190476190477, "position": { "x": 5, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3378, - "time": 0.5515873015873015, + "noteOrder": 3379, + "time": 0.5515873015873016, "position": { "x": 6, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3450, - "time": 0.5634920634920635, + "noteOrder": 3452, + "time": 0.5634920634920636, "position": { "x": 5, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3475, - "time": 0.5674603174603174, + "noteOrder": 3477, + "time": 0.5674603174603176, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3499, - "time": 0.5714285714285714, + "noteOrder": 3501, + "time": 0.5714285714285715, "position": { "x": 3, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3548, - "time": 0.5793650793650793, + "noteOrder": 3550, + "time": 0.5793650793650794, "position": { "x": 4, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3596, - "time": 0.5873015873015872, + "noteOrder": 3598, + "time": 0.5873015873015873, "position": { "x": 7, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3645, - "time": 0.5952380952380952, + "noteOrder": 3647, + "time": 0.5952380952380953, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3693, - "time": 0.6031746031746031, + "noteOrder": 3695, + "time": 0.6031746031746033, "position": { "x": 3, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3693, - "time": 0.6031746031746031, + "noteOrder": 3695, + "time": 0.6031746031746033, "position": { "x": 7, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3742, - "time": 0.611111111111111, + "noteOrder": 3744, + "time": 0.6111111111111112, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3742, - "time": 0.611111111111111, + "noteOrder": 3744, + "time": 0.6111111111111112, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4034, - "time": 0.6587301587301587, + "noteOrder": 4036, + "time": 0.6587301587301588, "position": { "x": 4, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4082, - "time": 0.6666666666666666, + "noteOrder": 4084, + "time": 0.6666666666666667, "position": { "x": 6, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4131, - "time": 0.6746031746031745, + "noteOrder": 4133, + "time": 0.6746031746031746, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4131, - "time": 0.6746031746031745, + "noteOrder": 4133, + "time": 0.6746031746031746, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4228, - "time": 0.6904761904761905, + "noteOrder": 4230, + "time": 0.6904761904761906, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4252, - "time": 0.6944444444444444, + "noteOrder": 4255, + "time": 0.6944444444444445, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4325, - "time": 0.7063492063492063, + "noteOrder": 4327, + "time": 0.7063492063492064, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4350, - "time": 0.7103174603174602, + "noteOrder": 4352, + "time": 0.7103174603174603, "position": { "x": 7, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4374, + "noteOrder": 4376, "time": 0.7142857142857143, "position": { "x": 4, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4398, - "time": 0.7182539682539681, + "noteOrder": 4400, + "time": 0.7182539682539684, "position": { "x": 6, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4425, "time": 0.7222222222222222, "position": { "x": 3, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4449, "time": 0.7261904761904763, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4471, - "time": 0.7301587301587301, + "noteOrder": 4473, + "time": 0.7301587301587302, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4471, - "time": 0.7301587301587301, + "noteOrder": 4473, + "time": 0.7301587301587302, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4520, - "time": 0.738095238095238, + "noteOrder": 4522, + "time": 0.7380952380952381, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4520, - "time": 0.738095238095238, + "noteOrder": 4522, + "time": 0.7380952380952381, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5006, - "time": 0.8174603174603174, + "noteOrder": 5008, + "time": 0.8174603174603176, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 5054, - "time": 0.8253968253968254, + "noteOrder": 5057, + "time": 0.8253968253968255, "position": { "x": 7, "y": 0 @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5078, + "noteOrder": 5081, "time": 0.8293650793650793, "position": { "x": 3, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5103, - "time": 0.8333333333333333, + "noteOrder": 5105, + "time": 0.8333333333333334, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5127, - "time": 0.8373015873015872, + "noteOrder": 5130, + "time": 0.8373015873015874, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5200, - "time": 0.8492063492063492, + "noteOrder": 5203, + "time": 0.8492063492063493, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5297, - "time": 0.865079365079365, + "noteOrder": 5300, + "time": 0.8650793650793651, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5394, - "time": 0.8809523809523809, + "noteOrder": 5397, + "time": 0.880952380952381, "position": { "x": 5, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5419, + "noteOrder": 5422, "time": 0.884920634920635, "position": { "x": 4, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 5492, + "noteOrder": 5494, "time": 0.8968253968253969, "position": { "x": 5, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5516, - "time": 0.9007936507936507, + "noteOrder": 5519, + "time": 0.9007936507936509, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5589, - "time": 0.9126984126984127, + "noteOrder": 5592, + "time": 0.9126984126984128, "position": { "x": 3, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5613, + "noteOrder": 5616, "time": 0.9166666666666667, "position": { "x": 7, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5686, + "noteOrder": 5689, "time": 0.9285714285714286, "position": { "x": 7, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5710, - "time": 0.9325396825396824, + "noteOrder": 5713, + "time": 0.9325396825396827, "position": { "x": 3, "y": 0 @@ -2036,10 +2036,10 @@ "lineNodes": [ { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, - "time": 0.031746031746031744, + "time": 0.03174603174603175, "position": { "x": 7, "y": 0 @@ -2059,10 +2059,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 243, - "time": 0.03968253968253968, + "time": 0.03968253968253969, "position": { "x": 7, "y": 0 @@ -2082,10 +2082,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 389, - "time": 0.06349206349206349, + "time": 0.0634920634920635, "position": { "x": 3, "y": 0 @@ -2105,10 +2105,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 437, - "time": 0.07142857142857142, + "noteOrder": 438, + "time": 0.07142857142857144, "position": { "x": 3, "y": 0 @@ -2128,10 +2128,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 535, - "time": 0.0873015873015873, + "time": 0.08730158730158731, "position": { "x": 7, "y": 0 @@ -2151,10 +2151,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 583, - "time": 0.09523809523809523, + "time": 0.09523809523809525, "position": { "x": 7, "y": 0 @@ -2174,10 +2174,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 632, - "time": 0.10317460317460317, + "time": 0.10317460317460318, "position": { "x": 3, "y": 0 @@ -2197,10 +2197,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 680, - "time": 0.1111111111111111, + "noteOrder": 681, + "time": 0.11111111111111112, "position": { "x": 3, "y": 0 @@ -2220,10 +2220,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 875, - "time": 0.14285714285714285, + "time": 0.14285714285714288, "position": { "x": 3, "y": 0 @@ -2243,10 +2243,10 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 948, - "time": 0.15476190476190474, + "time": 0.15476190476190477, "position": { "x": 3, "y": 0 @@ -2266,10 +2266,10 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 972, - "time": 0.15873015873015872, + "time": 0.15873015873015875, "position": { "x": 7, "y": 0 @@ -2289,10 +2289,10 @@ }, { "lineGroupId": 20, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1045, - "time": 0.1706349206349206, + "time": 0.17063492063492064, "position": { "x": 7, "y": 0 @@ -2312,10 +2312,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1069, - "time": 0.1746031746031746, + "noteOrder": 1070, + "time": 0.17460317460317462, "position": { "x": 3, "y": 0 @@ -2335,10 +2335,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1118, - "time": 0.18253968253968253, + "time": 0.18253968253968256, "position": { "x": 3, "y": 0 @@ -2358,10 +2358,10 @@ }, { "lineGroupId": 26, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1166, - "time": 0.19047619047619047, + "noteOrder": 1167, + "time": 0.1904761904761905, "position": { "x": 7, "y": 0 @@ -2381,10 +2381,10 @@ }, { "lineGroupId": 26, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1215, - "time": 0.1984126984126984, + "noteOrder": 1216, + "time": 0.19841269841269843, "position": { "x": 7, "y": 0 @@ -2404,10 +2404,10 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1264, - "time": 0.20634920634920634, + "time": 0.20634920634920637, "position": { "x": 3, "y": 0 @@ -2427,10 +2427,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1312, - "time": 0.21428571428571427, + "noteOrder": 1313, + "time": 0.2142857142857143, "position": { "x": 3, "y": 0 @@ -2450,10 +2450,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1312, - "time": 0.21428571428571427, + "noteOrder": 1313, + "time": 0.2142857142857143, "position": { "x": 7, "y": 0 @@ -2473,10 +2473,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1361, - "time": 0.2222222222222222, + "time": 0.22222222222222224, "position": { "x": 7, "y": 0 @@ -2496,10 +2496,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1361, - "time": 0.2222222222222222, + "time": 0.22222222222222224, "position": { "x": 4, "y": 0 @@ -2519,10 +2519,10 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1409, - "time": 0.23015873015873015, + "noteOrder": 1410, + "time": 0.23015873015873017, "position": { "x": 4, "y": 0 @@ -2542,10 +2542,10 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1409, - "time": 0.23015873015873015, + "noteOrder": 1410, + "time": 0.23015873015873017, "position": { "x": 6, "y": 0 @@ -2565,10 +2565,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1458, - "time": 0.23809523809523808, + "noteOrder": 1459, + "time": 0.2380952380952381, "position": { "x": 6, "y": 0 @@ -2588,10 +2588,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1652, - "time": 0.2698412698412698, + "noteOrder": 1653, + "time": 0.2698412698412699, "position": { "x": 7, "y": 0 @@ -2611,10 +2611,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1701, - "time": 0.27777777777777773, + "noteOrder": 1702, + "time": 0.2777777777777778, "position": { "x": 7, "y": 0 @@ -2634,10 +2634,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1774, - "time": 0.28968253968253965, + "noteOrder": 1775, + "time": 0.2896825396825397, "position": { "x": 6, "y": 0 @@ -2657,10 +2657,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1798, - "time": 0.2936507936507936, + "noteOrder": 1799, + "time": 0.29365079365079366, "position": { "x": 6, "y": 0 @@ -2680,10 +2680,10 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1847, - "time": 0.30158730158730157, + "noteOrder": 1848, + "time": 0.3015873015873016, "position": { "x": 3, "y": 0 @@ -2703,10 +2703,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1895, - "time": 0.3095238095238095, + "noteOrder": 1896, + "time": 0.30952380952380953, "position": { "x": 3, "y": 0 @@ -2726,10 +2726,10 @@ }, { "lineGroupId": 47, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1968, - "time": 0.3214285714285714, + "noteOrder": 1969, + "time": 0.32142857142857145, "position": { "x": 4, "y": 0 @@ -2749,10 +2749,10 @@ }, { "lineGroupId": 47, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1993, - "time": 0.32539682539682535, + "noteOrder": 1994, + "time": 0.3253968253968254, "position": { "x": 4, "y": 0 @@ -2772,10 +2772,10 @@ }, { "lineGroupId": 57, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2333, - "time": 0.38095238095238093, + "noteOrder": 2334, + "time": 0.380952380952381, "position": { "x": 6, "y": 0 @@ -2795,9 +2795,9 @@ }, { "lineGroupId": 57, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2381, + "noteOrder": 2383, "time": 0.3888888888888889, "position": { "x": 6, @@ -2818,10 +2818,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2333, - "time": 0.38095238095238093, + "noteOrder": 2334, + "time": 0.380952380952381, "position": { "x": 4, "y": 0 @@ -2841,9 +2841,9 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2381, + "noteOrder": 2383, "time": 0.3888888888888889, "position": { "x": 4, @@ -2864,10 +2864,10 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2624, - "time": 0.42857142857142855, + "noteOrder": 2626, + "time": 0.4285714285714286, "position": { "x": 7, "y": 0 @@ -2887,9 +2887,9 @@ }, { "lineGroupId": 66, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2673, + "noteOrder": 2674, "time": 0.4365079365079365, "position": { "x": 7, @@ -2910,10 +2910,10 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2721, - "time": 0.4444444444444444, + "noteOrder": 2723, + "time": 0.4444444444444445, "position": { "x": 3, "y": 0 @@ -2933,9 +2933,9 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2770, + "noteOrder": 2772, "time": 0.4523809523809524, "position": { "x": 3, @@ -2956,10 +2956,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2916, - "time": 0.47619047619047616, + "noteOrder": 2917, + "time": 0.4761904761904762, "position": { "x": 3, "y": 0 @@ -2979,9 +2979,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2940, + "noteOrder": 2942, "time": 0.4801587301587302, "position": { "x": 3, @@ -3002,9 +3002,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2964, + "noteOrder": 2966, "time": 0.48412698412698413, "position": { "x": 7, @@ -3025,10 +3025,10 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2989, - "time": 0.4880952380952381, + "noteOrder": 2990, + "time": 0.48809523809523814, "position": { "x": 7, "y": 0 @@ -3048,10 +3048,10 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3305, - "time": 0.5396825396825397, + "noteOrder": 3306, + "time": 0.5396825396825398, "position": { "x": 3, "y": 0 @@ -3071,10 +3071,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3378, - "time": 0.5515873015873015, + "noteOrder": 3379, + "time": 0.5515873015873016, "position": { "x": 3, "y": 0 @@ -3094,10 +3094,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3402, - "time": 0.5555555555555555, + "noteOrder": 3404, + "time": 0.5555555555555556, "position": { "x": 7, "y": 0 @@ -3117,10 +3117,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3475, - "time": 0.5674603174603174, + "noteOrder": 3477, + "time": 0.5674603174603176, "position": { "x": 7, "y": 0 @@ -3140,10 +3140,10 @@ }, { "lineGroupId": 98, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3791, - "time": 0.619047619047619, + "noteOrder": 3793, + "time": 0.6190476190476191, "position": { "x": 3, "y": 0 @@ -3163,10 +3163,10 @@ }, { "lineGroupId": 98, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3985, - "time": 0.6507936507936507, + "noteOrder": 3987, + "time": 0.6507936507936508, "position": { "x": 3, "y": 0 @@ -3186,10 +3186,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3791, - "time": 0.619047619047619, + "noteOrder": 3793, + "time": 0.6190476190476191, "position": { "x": 7, "y": 0 @@ -3209,10 +3209,10 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3985, - "time": 0.6507936507936507, + "noteOrder": 3987, + "time": 0.6507936507936508, "position": { "x": 7, "y": 0 @@ -3232,10 +3232,10 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4179, - "time": 0.6825396825396824, + "noteOrder": 4182, + "time": 0.6825396825396826, "position": { "x": 3, "y": 0 @@ -3255,10 +3255,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4228, - "time": 0.6904761904761905, + "noteOrder": 4230, + "time": 0.6904761904761906, "position": { "x": 3, "y": 0 @@ -3278,10 +3278,10 @@ }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4277, - "time": 0.6984126984126984, + "noteOrder": 4279, + "time": 0.6984126984126985, "position": { "x": 7, "y": 0 @@ -3301,10 +3301,10 @@ }, { "lineGroupId": 107, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4325, - "time": 0.7063492063492063, + "noteOrder": 4327, + "time": 0.7063492063492064, "position": { "x": 7, "y": 0 @@ -3324,9 +3324,9 @@ }, { "lineGroupId": 118, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4568, + "noteOrder": 4571, "time": 0.746031746031746, "position": { "x": 3, @@ -3345,12 +3345,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4619, + "time": 0.753968253968254, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4619, + "time": 0.753968253968254, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4668, + "time": 0.761904761904762, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4665, - "time": 0.7619047619047619, + "noteOrder": 4716, + "time": 0.7698412698412699, "position": { "x": 3, "y": 0 @@ -3368,11 +3437,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4716, + "time": 0.7698412698412699, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 120, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4763, + "noteOrder": 4765, "time": 0.7777777777777778, "position": { "x": 3, @@ -3391,12 +3483,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7857142857142857, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4814, + "time": 0.7857142857142857, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 121, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4860, - "time": 0.7936507936507936, + "noteOrder": 4862, + "time": 0.7936507936507937, "position": { "x": 3, "y": 0 @@ -3414,11 +3552,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4911, + "time": 0.8015873015873016, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4911, + "time": 0.8015873015873016, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4957, + "noteOrder": 4960, "time": 0.8095238095238095, "position": { "x": 3, @@ -3439,10 +3623,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5006, - "time": 0.8174603174603174, + "noteOrder": 5008, + "time": 0.8174603174603176, "position": { "x": 3, "y": 0 @@ -3462,9 +3646,9 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5151, + "noteOrder": 5154, "time": 0.8412698412698413, "position": { "x": 7, @@ -3485,10 +3669,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5200, - "time": 0.8492063492063492, + "noteOrder": 5203, + "time": 0.8492063492063493, "position": { "x": 7, "y": 0 @@ -3508,10 +3692,10 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5249, - "time": 0.8571428571428571, + "noteOrder": 5251, + "time": 0.8571428571428572, "position": { "x": 3, "y": 0 @@ -3531,10 +3715,10 @@ }, { "lineGroupId": 130, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5297, - "time": 0.865079365079365, + "noteOrder": 5300, + "time": 0.8650793650793651, "position": { "x": 3, "y": 0 @@ -3554,9 +3738,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5346, + "noteOrder": 5349, "time": 0.873015873015873, "position": { "x": 7, @@ -3577,9 +3761,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5419, + "noteOrder": 5422, "time": 0.884920634920635, "position": { "x": 7, @@ -3600,10 +3784,10 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5443, - "time": 0.8888888888888888, + "noteOrder": 5446, + "time": 0.888888888888889, "position": { "x": 3, "y": 0 @@ -3623,10 +3807,10 @@ }, { "lineGroupId": 135, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5516, - "time": 0.9007936507936507, + "noteOrder": 5519, + "time": 0.9007936507936509, "position": { "x": 3, "y": 0 @@ -3646,9 +3830,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5540, + "noteOrder": 5543, "time": 0.9047619047619048, "position": { "x": 7, @@ -3669,10 +3853,10 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5589, - "time": 0.9126984126984127, + "noteOrder": 5592, + "time": 0.9126984126984128, "position": { "x": 7, "y": 0 @@ -3692,10 +3876,10 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5637, - "time": 0.9206349206349206, + "noteOrder": 5640, + "time": 0.9206349206349207, "position": { "x": 3, "y": 0 @@ -3715,9 +3899,9 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5686, + "noteOrder": 5689, "time": 0.9285714285714286, "position": { "x": 3, @@ -3738,9 +3922,9 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5735, + "noteOrder": 5738, "time": 0.9365079365079365, "position": { "x": 7, @@ -3761,10 +3945,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5759, - "time": 0.9404761904761904, + "noteOrder": 5762, + "time": 0.9404761904761906, "position": { "x": 7, "y": 0 @@ -3784,10 +3968,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5783, - "time": 0.9444444444444444, + "noteOrder": 5786, + "time": 0.9444444444444445, "position": { "x": 3, "y": 0 @@ -3807,9 +3991,9 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5807, + "noteOrder": 5810, "time": 0.9484126984126985, "position": { "x": 3, @@ -3830,10 +4014,10 @@ }, { "lineGroupId": 146, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5832, - "time": 0.9523809523809523, + "noteOrder": 5835, + "time": 0.9523809523809524, "position": { "x": 6, "y": 0 @@ -3853,10 +4037,10 @@ }, { "lineGroupId": 146, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5856, - "time": 0.9563492063492063, + "noteOrder": 5859, + "time": 0.9563492063492065, "position": { "x": 6, "y": 0 @@ -3876,10 +4060,10 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5832, - "time": 0.9523809523809523, + "noteOrder": 5835, + "time": 0.9523809523809524, "position": { "x": 4, "y": 0 @@ -3899,10 +4083,10 @@ }, { "lineGroupId": 147, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5856, - "time": 0.9563492063492063, + "noteOrder": 5859, + "time": 0.9563492063492065, "position": { "x": 4, "y": 0 @@ -3922,9 +4106,9 @@ }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5880, + "noteOrder": 5883, "time": 0.9603174603174603, "position": { "x": 3, @@ -3945,10 +4129,10 @@ }, { "lineGroupId": 148, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5905, - "time": 0.9642857142857142, + "noteOrder": 5908, + "time": 0.9642857142857144, "position": { "x": 3, "y": 0 @@ -3968,9 +4152,9 @@ }, { "lineGroupId": 149, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5880, + "noteOrder": 5883, "time": 0.9603174603174603, "position": { "x": 7, @@ -3991,10 +4175,10 @@ }, { "lineGroupId": 149, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5905, - "time": 0.9642857142857142, + "noteOrder": 5908, + "time": 0.9642857142857144, "position": { "x": 7, "y": 0 diff --git "a/tracks/\346\200\252\347\211\251/info.json" "b/tracks/\346\200\252\347\211\251/info.json" index 85db2e66..2f9bc2b7 100644 --- "a/tracks/\346\200\252\347\211\251/info.json" +++ "b/tracks/\346\200\252\347\211\251/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u602a\u7269", - "SongLength": "100.048980", + "SongLength": "90.096327", "SongAuthorName": "YOASOBI", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1a.json" "b/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1a.json" index 32f32ac4..094f5257 100644 --- "a/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1a.json" +++ "b/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1a.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 145, - "time": 0.02542372881355932, + "time": 0.025423728813559324, "position": { "x": 3, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 169, + "noteOrder": 170, "time": 0.029661016949152543, "position": { "x": 7, @@ -74,7 +74,7 @@ }, { "noteOrder": 218, - "time": 0.03813559322033898, + "time": 0.038135593220338986, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 266, - "time": 0.04661016949152542, + "time": 0.046610169491525424, "position": { "x": 6, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 315, - "time": 0.055084745762711856, + "time": 0.05508474576271187, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 460, - "time": 0.08050847457627118, + "time": 0.0805084745762712, "position": { "x": 4, "y": 0 @@ -233,7 +233,7 @@ "isPlayAudio": false }, { - "noteOrder": 508, + "noteOrder": 509, "time": 0.08898305084745763, "position": { "x": 6, @@ -254,7 +254,7 @@ }, { "noteOrder": 533, - "time": 0.09322033898305083, + "time": 0.09322033898305085, "position": { "x": 3, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 581, - "time": 0.10169491525423728, + "time": 0.1016949152542373, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 605, - "time": 0.1059322033898305, + "noteOrder": 606, + "time": 0.10593220338983052, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 630, - "time": 0.11016949152542371, + "time": 0.11016949152542374, "position": { "x": 4, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 702, - "time": 0.12288135593220338, + "time": 0.1228813559322034, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 726, + "noteOrder": 727, "time": 0.1271186440677966, "position": { "x": 6, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 823, + "noteOrder": 824, "time": 0.1440677966101695, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 823, + "noteOrder": 824, "time": 0.1440677966101695, "position": { "x": 6, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 847, - "time": 0.14830508474576273, + "noteOrder": 848, + "time": 0.1483050847457627, "position": { "x": 3, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 847, - "time": 0.14830508474576273, + "noteOrder": 848, + "time": 0.1483050847457627, "position": { "x": 7, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 968, + "noteOrder": 969, "time": 0.1694915254237288, "position": { "x": 6, @@ -554,7 +554,7 @@ }, { "noteOrder": 993, - "time": 0.17372881355932202, + "time": 0.17372881355932204, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1041, - "time": 0.1822033898305085, + "noteOrder": 1042, + "time": 0.18220338983050846, "position": { "x": 3, "y": 0 @@ -614,7 +614,7 @@ }, { "noteOrder": 1090, - "time": 0.1906779661016949, + "time": 0.19067796610169493, "position": { "x": 7, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1138, - "time": 0.19915254237288135, + "time": 0.19915254237288138, "position": { "x": 7, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1162, - "time": 0.20338983050847456, + "noteOrder": 1163, + "time": 0.2033898305084746, "position": { "x": 4, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1186, + "noteOrder": 1187, "time": 0.2076271186440678, "position": { "x": 3, @@ -714,7 +714,7 @@ }, { "noteOrder": 1211, - "time": 0.211864406779661, + "time": 0.21186440677966104, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1283, - "time": 0.22457627118644066, + "noteOrder": 1284, + "time": 0.2245762711864407, "position": { "x": 4, "y": 0 @@ -774,7 +774,7 @@ }, { "noteOrder": 1332, - "time": 0.2330508474576271, + "time": 0.23305084745762714, "position": { "x": 6, "y": 0 @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1380, + "noteOrder": 1381, "time": 0.24152542372881355, "position": { "x": 4, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 1404, - "time": 0.24576271186440676, + "noteOrder": 1405, + "time": 0.2457627118644068, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1428, + "noteOrder": 1429, "time": 0.25, "position": { "x": 6, @@ -874,7 +874,7 @@ }, { "noteOrder": 1477, - "time": 0.2584745762711865, + "time": 0.2584745762711864, "position": { "x": 2, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 1525, - "time": 0.26694915254237284, + "noteOrder": 1526, + "time": 0.2669491525423729, "position": { "x": 8, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1598, - "time": 0.2796610169491525, + "noteOrder": 1599, + "time": 0.2796610169491526, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 1598, - "time": 0.2796610169491525, + "noteOrder": 1599, + "time": 0.2796610169491526, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 1622, - "time": 0.2838983050847458, + "noteOrder": 1623, + "time": 0.28389830508474573, "position": { "x": 3, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 1622, - "time": 0.2838983050847458, + "noteOrder": 1623, + "time": 0.28389830508474573, "position": { "x": 7, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 1719, - "time": 0.3008474576271186, + "noteOrder": 1720, + "time": 0.3008474576271187, "position": { "x": 7, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 1937, + "noteOrder": 1938, "time": 0.3389830508474576, "position": { "x": 3, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 1961, - "time": 0.3432203389830508, + "noteOrder": 1962, + "time": 0.3432203389830509, "position": { "x": 7, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 1985, - "time": 0.34745762711864403, + "noteOrder": 1986, + "time": 0.3474576271186441, "position": { "x": 6, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1985, - "time": 0.34745762711864403, + "noteOrder": 1986, + "time": 0.3474576271186441, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2058, - "time": 0.3601694915254237, + "noteOrder": 2059, + "time": 0.36016949152542377, "position": { "x": 3, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.3686440677966102, "position": { "x": 3, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2203, - "time": 0.385593220338983, + "noteOrder": 2204, + "time": 0.3855932203389831, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2445, - "time": 0.4279661016949153, + "noteOrder": 2446, + "time": 0.4279661016949152, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2494, + "noteOrder": 2495, "time": 0.4364406779661017, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2615, + "noteOrder": 2616, "time": 0.4576271186440678, "position": { "x": 7, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 2639, - "time": 0.461864406779661, + "noteOrder": 2640, + "time": 0.46186440677966106, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2663, - "time": 0.4661016949152542, + "noteOrder": 2664, + "time": 0.46610169491525427, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 2689, "time": 0.4703389830508475, "position": { "x": 4, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2736, - "time": 0.47881355932203384, + "noteOrder": 2737, + "time": 0.47881355932203395, "position": { "x": 8, "y": 0 @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2761, "time": 0.4830508474576271, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2784, - "time": 0.4872881355932203, + "noteOrder": 2785, + "time": 0.4872881355932204, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2833, + "noteOrder": 2834, "time": 0.4957627118644068, "position": { "x": 7, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2881, + "noteOrder": 2882, "time": 0.5042372881355932, "position": { "x": 3, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.5254237288135594, "position": { "x": 3, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3026, - "time": 0.5296610169491525, + "noteOrder": 3028, + "time": 0.5296610169491526, "position": { "x": 4, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.5338983050847457, + "noteOrder": 3052, + "time": 0.5338983050847458, "position": { "x": 7, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3075, - "time": 0.5381355932203389, + "noteOrder": 3076, + "time": 0.5381355932203391, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3414, - "time": 0.5974576271186441, + "noteOrder": 3415, + "time": 0.597457627118644, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 3462, - "time": 0.6059322033898304, + "noteOrder": 3464, + "time": 0.6059322033898306, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 3511, - "time": 0.6144067796610169, + "noteOrder": 3512, + "time": 0.614406779661017, "position": { "x": 2, "y": 0 @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3559, + "noteOrder": 3560, "time": 0.6228813559322034, "position": { "x": 8, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3608, + "noteOrder": 3609, "time": 0.6313559322033898, "position": { "x": 7, @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3656, - "time": 0.6398305084745762, + "noteOrder": 3657, + "time": 0.6398305084745763, "position": { "x": 3, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.6440677966101694, + "noteOrder": 3682, + "time": 0.6440677966101696, "position": { "x": 3, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3704, - "time": 0.6483050847457628, + "noteOrder": 3706, + "time": 0.6483050847457626, "position": { "x": 7, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3729, + "noteOrder": 3730, "time": 0.652542372881356, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3753, + "noteOrder": 3754, "time": 0.6567796610169492, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 3777, + "noteOrder": 3778, "time": 0.6610169491525424, "position": { "x": 3, @@ -1773,7 +1773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3801, + "noteOrder": 3803, "time": 0.6652542372881356, "position": { "x": 4, @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3825, - "time": 0.6694915254237287, + "noteOrder": 3827, + "time": 0.6694915254237289, "position": { "x": 7, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3851, "time": 0.673728813559322, "position": { "x": 6, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3874, + "noteOrder": 3875, "time": 0.6779661016949152, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3898, - "time": 0.6822033898305084, + "noteOrder": 3900, + "time": 0.6822033898305085, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.6864406779661016, + "noteOrder": 3924, + "time": 0.6864406779661018, "position": { "x": 6, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3922, - "time": 0.6864406779661016, + "noteOrder": 3924, + "time": 0.6864406779661018, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 3947, - "time": 0.6906779661016949, + "noteOrder": 3948, + "time": 0.690677966101695, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3947, - "time": 0.6906779661016949, + "noteOrder": 3948, + "time": 0.690677966101695, "position": { "x": 3, "y": 0 @@ -1953,7 +1953,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4069, "time": 0.711864406779661, "position": { "x": 3, @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4080, - "time": 0.7139830508474576, + "noteOrder": 4081, + "time": 0.7139830508474577, "position": { "x": 5, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4092, - "time": 0.7161016949152542, + "noteOrder": 4093, + "time": 0.7161016949152543, "position": { "x": 7, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4104, - "time": 0.7182203389830508, + "noteOrder": 4105, + "time": 0.7182203389830509, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7203389830508474, + "noteOrder": 4118, + "time": 0.7203389830508475, "position": { "x": 3, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4128, - "time": 0.722457627118644, + "noteOrder": 4130, + "time": 0.7224576271186441, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4140, - "time": 0.7245762711864407, + "noteOrder": 4142, + "time": 0.7245762711864406, "position": { "x": 7, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4164, - "time": 0.728813559322034, + "noteOrder": 4166, + "time": 0.7288135593220338, "position": { "x": 7, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 4164, - "time": 0.728813559322034, + "noteOrder": 4166, + "time": 0.7288135593220338, "position": { "x": 3, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4177, + "noteOrder": 4178, "time": 0.7309322033898306, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 4177, + "noteOrder": 4178, "time": 0.7309322033898306, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 4237, - "time": 0.7415254237288135, + "noteOrder": 4239, + "time": 0.7415254237288136, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 4237, - "time": 0.7415254237288135, + "noteOrder": 4239, + "time": 0.7415254237288136, "position": { "x": 4, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 4261, - "time": 0.7457627118644067, + "noteOrder": 4263, + "time": 0.7457627118644068, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 4285, - "time": 0.7499999999999999, + "noteOrder": 4287, + "time": 0.7500000000000001, "position": { "x": 7, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 4310, + "noteOrder": 4311, "time": 0.7542372881355932, "position": { "x": 6, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 4310, + "noteOrder": 4311, "time": 0.7542372881355932, "position": { "x": 4, @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 4334, + "noteOrder": 4336, "time": 0.7584745762711864, "position": { "x": 3, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 4334, + "noteOrder": 4336, "time": 0.7584745762711864, "position": { "x": 7, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4358, - "time": 0.7627118644067796, + "noteOrder": 4360, + "time": 0.7627118644067797, "position": { "x": 3, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 4370, - "time": 0.7648305084745762, + "noteOrder": 4372, + "time": 0.7648305084745763, "position": { "x": 5, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4382, - "time": 0.7669491525423728, + "noteOrder": 4384, + "time": 0.766949152542373, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4394, - "time": 0.7690677966101694, + "noteOrder": 4396, + "time": 0.7690677966101696, "position": { "x": 5, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.7838983050847458, "position": { "x": 3, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4528, + "noteOrder": 4529, "time": 0.7923728813559322, "position": { "x": 3, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4576, - "time": 0.8008474576271186, + "noteOrder": 4578, + "time": 0.8008474576271187, "position": { "x": 3, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4697, - "time": 0.8220338983050847, + "noteOrder": 4699, + "time": 0.8220338983050848, "position": { "x": 6, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4721, - "time": 0.8262711864406779, + "noteOrder": 4723, + "time": 0.8262711864406781, "position": { "x": 4, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4770, + "noteOrder": 4772, "time": 0.8347457627118644, "position": { "x": 6, @@ -2533,7 +2533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4796, "time": 0.8389830508474576, "position": { "x": 4, @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4818, - "time": 0.8432203389830508, + "noteOrder": 4820, + "time": 0.8432203389830509, "position": { "x": 6, "y": 0 @@ -2573,8 +2573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4867, - "time": 0.8516949152542372, + "noteOrder": 4868, + "time": 0.8516949152542374, "position": { "x": 4, "y": 0 @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4915, + "noteOrder": 4917, "time": 0.8601694915254238, "position": { "x": 6, @@ -2613,7 +2613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4963, + "noteOrder": 4965, "time": 0.8686440677966102, "position": { "x": 4, @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 4988, + "noteOrder": 4990, "time": 0.8728813559322034, "position": { "x": 6, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.8771186440677966, + "noteOrder": 5014, + "time": 0.8771186440677967, "position": { "x": 4, "y": 0 @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 5060, + "noteOrder": 5062, "time": 0.885593220338983, "position": { "x": 6, @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5109, - "time": 0.8940677966101694, + "noteOrder": 5111, + "time": 0.8940677966101696, "position": { "x": 4, "y": 0 @@ -2713,8 +2713,8 @@ "isPlayAudio": false }, { - "noteOrder": 5157, - "time": 0.9025423728813559, + "noteOrder": 5159, + "time": 0.902542372881356, "position": { "x": 5, "y": 0 @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 5181, - "time": 0.9067796610169491, + "noteOrder": 5183, + "time": 0.9067796610169493, "position": { "x": 4, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5206, + "noteOrder": 5208, "time": 0.9110169491525424, "position": { "x": 3, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5256, "time": 0.9194915254237288, "position": { "x": 4, @@ -2793,8 +2793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9279661016949152, + "noteOrder": 5304, + "time": 0.9279661016949153, "position": { "x": 6, "y": 0 @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5351, - "time": 0.9364406779661018, + "noteOrder": 5353, + "time": 0.9364406779661016, "position": { "x": 5, "y": 0 @@ -2833,7 +2833,7 @@ "isPlayAudio": false }, { - "noteOrder": 5375, + "noteOrder": 5377, "time": 0.940677966101695, "position": { "x": 6, @@ -2853,7 +2853,7 @@ "isPlayAudio": false }, { - "noteOrder": 5399, + "noteOrder": 5401, "time": 0.9449152542372882, "position": { "x": 7, @@ -2873,7 +2873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5423, + "noteOrder": 5426, "time": 0.9491525423728814, "position": { "x": 7, @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5448, - "time": 0.9533898305084745, + "noteOrder": 5450, + "time": 0.9533898305084746, "position": { "x": 3, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9576271186440677, + "noteOrder": 5474, + "time": 0.9576271186440679, "position": { "x": 6, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5472, - "time": 0.9576271186440677, + "noteOrder": 5474, + "time": 0.9576271186440679, "position": { "x": 4, "y": 0 @@ -2953,7 +2953,7 @@ "isPlayAudio": false }, { - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.961864406779661, "position": { "x": 7, @@ -2973,7 +2973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.961864406779661, "position": { "x": 3, @@ -2993,7 +2993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5508, + "noteOrder": 5510, "time": 0.9639830508474576, "position": { "x": 4, @@ -3013,7 +3013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5508, + "noteOrder": 5510, "time": 0.9639830508474576, "position": { "x": 6, @@ -3036,7 +3036,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01694915254237288, @@ -3059,7 +3059,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 121, "time": 0.0211864406779661, @@ -3082,7 +3082,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03389830508474576, @@ -3105,10 +3105,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 218, - "time": 0.03813559322033898, + "time": 0.038135593220338986, "position": { "x": 3, "y": 0 @@ -3128,7 +3128,7 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, "time": 0.0423728813559322, @@ -3151,10 +3151,10 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.04661016949152542, + "time": 0.046610169491525424, "position": { "x": 7, "y": 0 @@ -3174,10 +3174,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.05084745762711864, + "time": 0.05084745762711865, "position": { "x": 3, "y": 0 @@ -3197,10 +3197,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 315, - "time": 0.055084745762711856, + "time": 0.05508474576271187, "position": { "x": 3, "y": 0 @@ -3220,9 +3220,9 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 387, + "noteOrder": 388, "time": 0.06779661016949153, "position": { "x": 7, @@ -3243,7 +3243,7 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 412, "time": 0.07203389830508475, @@ -3266,10 +3266,10 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 436, - "time": 0.07627118644067796, + "time": 0.07627118644067797, "position": { "x": 3, "y": 0 @@ -3289,10 +3289,10 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 460, - "time": 0.08050847457627118, + "time": 0.0805084745762712, "position": { "x": 3, "y": 0 @@ -3312,7 +3312,7 @@ }, { "lineGroupId": 29, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 775, "time": 0.13559322033898305, @@ -3335,10 +3335,10 @@ }, { "lineGroupId": 29, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 799, - "time": 0.13983050847457626, + "time": 0.1398305084745763, "position": { "x": 7, "y": 0 @@ -3358,7 +3358,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 775, "time": 0.13559322033898305, @@ -3381,10 +3381,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 799, - "time": 0.13983050847457626, + "time": 0.1398305084745763, "position": { "x": 3, "y": 0 @@ -3404,10 +3404,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1259, - "time": 0.22033898305084743, + "time": 0.22033898305084748, "position": { "x": 3, "y": 0 @@ -3427,10 +3427,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1283, - "time": 0.22457627118644066, + "noteOrder": 1284, + "time": 0.2245762711864407, "position": { "x": 3, "y": 0 @@ -3450,9 +3450,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1307, + "noteOrder": 1308, "time": 0.2288135593220339, "position": { "x": 7, @@ -3473,10 +3473,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1332, - "time": 0.2330508474576271, + "time": 0.23305084745762714, "position": { "x": 7, "y": 0 @@ -3496,7 +3496,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1453, "time": 0.2542372881355932, @@ -3519,10 +3519,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1477, - "time": 0.2584745762711865, + "time": 0.2584745762711864, "position": { "x": 4, "y": 0 @@ -3542,9 +3542,9 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1501, + "noteOrder": 1502, "time": 0.2627118644067797, "position": { "x": 6, @@ -3565,10 +3565,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1525, - "time": 0.26694915254237284, + "noteOrder": 1526, + "time": 0.2669491525423729, "position": { "x": 6, "y": 0 @@ -3588,9 +3588,9 @@ }, { "lineGroupId": 66, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1646, + "noteOrder": 1647, "time": 0.288135593220339, "position": { "x": 7, @@ -3610,11 +3610,11 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1695, - "time": 0.29661016949152547, + "noteOrder": 1659, + "time": 0.2902542372881356, "position": { "x": 7, "y": 0 @@ -3628,18 +3628,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1743, - "time": 0.30508474576271183, + "noteOrder": 1659, + "time": 0.2902542372881356, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3656,13 +3656,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1767, - "time": 0.30932203389830504, + "noteOrder": 1671, + "time": 0.2923728813559322, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3674,18 +3674,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1792, - "time": 0.3135593220338983, + "noteOrder": 1671, + "time": 0.2923728813559322, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3702,13 +3702,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1816, - "time": 0.3177966101694915, + "noteOrder": 1695, + "time": 0.2966101694915254, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3725,11 +3725,11 @@ "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1840, - "time": 0.3220338983050847, + "noteOrder": 1708, + "time": 0.298728813559322, "position": { "x": 7, "y": 0 @@ -3743,18 +3743,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 74, - "indexInLine": 1, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1864, - "time": 0.326271186440678, + "noteOrder": 1708, + "time": 0.298728813559322, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3766,18 +3766,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1889, - "time": 0.3305084745762712, + "noteOrder": 1720, + "time": 0.3008474576271187, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3794,11 +3794,34 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1913, - "time": 0.33474576271186435, + "noteOrder": 1720, + "time": 0.3008474576271187, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1744, + "time": 0.3050847457627119, "position": { "x": 7, "y": 0 @@ -3817,13 +3840,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2034, - "time": 0.3559322033898305, + "noteOrder": 1756, + "time": 0.3072033898305085, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3835,18 +3858,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2082, - "time": 0.364406779661017, + "noteOrder": 1756, + "time": 0.3072033898305085, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3863,11 +3886,11 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2131, - "time": 0.37288135593220334, + "noteOrder": 1768, + "time": 0.30932203389830515, "position": { "x": 3, "y": 0 @@ -3886,13 +3909,13 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2155, - "time": 0.3771186440677966, + "noteOrder": 1780, + "time": 0.3114406779661017, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3904,18 +3927,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 89, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2179, - "time": 0.3813559322033898, + "noteOrder": 1780, + "time": 0.3114406779661017, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3932,11 +3955,11 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2227, - "time": 0.3898305084745763, + "noteOrder": 1792, + "time": 0.3135593220338983, "position": { "x": 7, "y": 0 @@ -3955,11 +3978,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2252, - "time": 0.3940677966101695, + "noteOrder": 1804, + "time": 0.3156779661016949, "position": { "x": 7, "y": 0 @@ -3973,18 +3996,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2276, - "time": 0.3983050847457627, + "noteOrder": 1804, + "time": 0.3156779661016949, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4001,13 +4024,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2300, - "time": 0.40254237288135597, + "noteOrder": 1817, + "time": 0.31779661016949157, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4024,13 +4047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 73, "indexInLine": 2, "isSliding": false, - "noteOrder": 2349, - "time": 0.41101694915254233, + "noteOrder": 1829, + "time": 0.31991525423728817, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4047,13 +4070,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 73, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2324, - "time": 0.4067796610169491, + "noteOrder": 1829, + "time": 0.31991525423728817, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4065,18 +4088,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 74, "indexInLine": 1, "isSliding": false, - "noteOrder": 2349, - "time": 0.41101694915254233, + "noteOrder": 1841, + "time": 0.3220338983050848, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4093,13 +4116,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2373, - "time": 0.4152542372881356, + "noteOrder": 1865, + "time": 0.326271186440678, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4111,18 +4134,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 75, "indexInLine": 1, "isSliding": false, - "noteOrder": 2397, - "time": 0.4194915254237288, + "noteOrder": 1889, + "time": 0.3305084745762712, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4139,13 +4162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2421, - "time": 0.423728813559322, + "noteOrder": 1901, + "time": 0.3326271186440678, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4157,18 +4180,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2470, - "time": 0.4322033898305085, + "noteOrder": 1901, + "time": 0.3326271186440678, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4185,13 +4208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2518, - "time": 0.44067796610169485, + "noteOrder": 1913, + "time": 0.33474576271186446, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4208,13 +4231,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2542, - "time": 0.4449152542372881, + "noteOrder": 1926, + "time": 0.336864406779661, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4231,11 +4254,11 @@ "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2542, - "time": 0.4449152542372881, + "noteOrder": 1926, + "time": 0.336864406779661, "position": { "x": 6, "y": 0 @@ -4249,18 +4272,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, + "lineGroupId": 83, "indexInLine": 1, "isSliding": false, - "noteOrder": 2566, - "time": 0.4491525423728813, + "noteOrder": 2035, + "time": 0.3559322033898305, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4277,13 +4300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2566, - "time": 0.4491525423728813, + "noteOrder": 2047, + "time": 0.35805084745762716, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4295,18 +4318,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 1, + "lineGroupId": 83, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2591, - "time": 0.45338983050847453, + "noteOrder": 2047, + "time": 0.35805084745762716, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4318,16 +4341,1925 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 83, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2059, + "time": 0.36016949152542377, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2059, + "time": 0.36016949152542377, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2083, + "time": 0.3644067796610169, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2095, + "time": 0.3665254237288136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2095, + "time": 0.3665254237288136, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2107, + "time": 0.3686440677966102, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2107, + "time": 0.3686440677966102, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2131, + "time": 0.3728813559322034, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2144, + "time": 0.37500000000000006, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2144, + "time": 0.37500000000000006, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2156, + "time": 0.3771186440677966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2168, + "time": 0.3792372881355932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2168, + "time": 0.3792372881355932, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2180, + "time": 0.38135593220338987, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2192, + "time": 0.3834745762711865, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2192, + "time": 0.3834745762711865, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2204, + "time": 0.3855932203389831, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 89, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2204, + "time": 0.3855932203389831, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2228, + "time": 0.3898305084745763, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2240, + "time": 0.3919491525423729, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2240, + "time": 0.3919491525423729, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2253, + "time": 0.3940677966101695, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2253, + "time": 0.3940677966101695, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2253, + "time": 0.3940677966101695, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2265, + "time": 0.3961864406779661, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2265, + "time": 0.3961864406779661, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2277, + "time": 0.39830508474576276, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2277, + "time": 0.39830508474576276, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2277, + "time": 0.39830508474576276, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2289, + "time": 0.40042372881355937, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2289, + "time": 0.40042372881355937, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2301, + "time": 0.4025423728813559, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2301, + "time": 0.4025423728813559, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2301, + "time": 0.4025423728813559, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2313, + "time": 0.4046610169491525, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2313, + "time": 0.4046610169491525, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2349, + "time": 0.4110169491525424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2325, + "time": 0.4067796610169492, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2349, + "time": 0.4110169491525424, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2374, + "time": 0.4152542372881356, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 96, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2398, + "time": 0.4194915254237288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2422, + "time": 0.42372881355932207, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2434, + "time": 0.4258474576271187, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2434, + "time": 0.4258474576271187, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2446, + "time": 0.4279661016949152, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 97, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2446, + "time": 0.4279661016949152, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2471, + "time": 0.4322033898305085, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2483, + "time": 0.4343220338983051, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2483, + "time": 0.4343220338983051, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2495, + "time": 0.4364406779661017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2495, + "time": 0.4364406779661017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2519, + "time": 0.44067796610169496, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2543, + "time": 0.4449152542372881, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2543, + "time": 0.4449152542372881, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2567, + "time": 0.4491525423728814, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2567, + "time": 0.4491525423728814, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2592, + "time": 0.45338983050847464, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2592, + "time": 0.45338983050847464, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2616, + "time": 0.4576271186440678, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2713, + "time": 0.4745762711864407, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2785, + "time": 0.4872881355932204, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4915254237288136, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2822, + "time": 0.49364406779661024, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2822, + "time": 0.49364406779661024, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4957627118644068, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4957627118644068, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2858, + "time": 0.5, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5021186440677966, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2870, + "time": 0.5021186440677966, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2882, + "time": 0.5042372881355932, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2882, + "time": 0.5042372881355932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2907, + "time": 0.5084745762711864, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 117, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2931, + "time": 0.5127118644067797, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2931, + "time": 0.5127118644067797, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2955, + "time": 0.5169491525423728, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2955, + "time": 0.5169491525423728, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2979, + "time": 0.521186440677966, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.521186440677966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 120, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3003, + "time": 0.5254237288135594, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3100, + "time": 0.5423728813559322, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3112, + "time": 0.5444915254237288, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3125, + "time": 0.5466101694915254, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3125, + "time": 0.5466101694915254, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2591, - "time": 0.45338983050847453, + "noteOrder": 3137, + "time": 0.548728813559322, "position": { "x": 6, "y": 0 @@ -4341,18 +6273,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 1, + "lineGroupId": 126, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2615, - "time": 0.4576271186440678, + "noteOrder": 3149, + "time": 0.5508474576271186, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4364,18 +6296,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2712, - "time": 0.4745762711864407, + "noteOrder": 3149, + "time": 0.5508474576271186, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4387,16 +6319,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 109, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2784, - "time": 0.4872881355932203, + "noteOrder": 3161, + "time": 0.5529661016949152, "position": { "x": 4, "y": 0 @@ -4410,18 +6342,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2809, - "time": 0.4915254237288135, + "noteOrder": 3173, + "time": 0.5550847457627119, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4438,11 +6370,11 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2857, - "time": 0.5, + "noteOrder": 3173, + "time": 0.5550847457627119, "position": { "x": 7, "y": 0 @@ -4461,11 +6393,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2905, - "time": 0.5084745762711864, + "noteOrder": 3185, + "time": 0.5572033898305085, "position": { "x": 6, "y": 0 @@ -4479,18 +6411,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 128, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3197, + "time": 0.5593220338983051, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, "indexInLine": 1, "isSliding": false, - "noteOrder": 2930, - "time": 0.5127118644067796, + "noteOrder": 3197, + "time": 0.5593220338983051, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4507,13 +6462,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2930, - "time": 0.5127118644067796, + "noteOrder": 3221, + "time": 0.5635593220338984, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4525,18 +6480,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 2954, - "time": 0.516949152542373, + "noteOrder": 3246, + "time": 0.5677966101694915, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4553,13 +6508,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2954, - "time": 0.516949152542373, + "noteOrder": 3270, + "time": 0.5720338983050848, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4571,18 +6526,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, + "lineGroupId": 131, "indexInLine": 1, "isSliding": false, - "noteOrder": 2978, - "time": 0.5211864406779662, + "noteOrder": 3294, + "time": 0.576271186440678, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4599,13 +6554,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, - "time": 0.5211864406779662, + "noteOrder": 3318, + "time": 0.5805084745762712, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4617,18 +6572,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 120, + "lineGroupId": 132, "indexInLine": 1, "isSliding": false, - "noteOrder": 3002, - "time": 0.5254237288135594, + "noteOrder": 3343, + "time": 0.5847457627118644, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4645,13 +6600,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3099, - "time": 0.5423728813559322, + "noteOrder": 3367, + "time": 0.5889830508474577, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4663,18 +6618,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 133, "indexInLine": 1, "isSliding": false, - "noteOrder": 3111, - "time": 0.5444915254237288, + "noteOrder": 3391, + "time": 0.5932203389830508, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4691,13 +6646,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, + "lineGroupId": 133, "indexInLine": 2, "isSliding": false, - "noteOrder": 3123, - "time": 0.5466101694915254, + "noteOrder": 3415, + "time": 0.597457627118644, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4714,11 +6669,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3123, - "time": 0.5466101694915254, + "noteOrder": 3439, + "time": 0.6016949152542374, "position": { "x": 7, "y": 0 @@ -4737,13 +6692,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3135, - "time": 0.548728813559322, + "noteOrder": 3464, + "time": 0.6059322033898306, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4760,13 +6715,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 2, + "lineGroupId": 137, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3148, - "time": 0.5508474576271186, + "noteOrder": 3488, + "time": 0.6101694915254238, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4778,18 +6733,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 137, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3148, - "time": 0.5508474576271186, + "noteOrder": 3512, + "time": 0.614406779661017, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4806,13 +6761,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 139, "indexInLine": 1, "isSliding": false, - "noteOrder": 3160, - "time": 0.5529661016949152, + "noteOrder": 3536, + "time": 0.6186440677966103, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4824,18 +6779,41 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 139, "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.5550847457627118, + "noteOrder": 3560, + "time": 0.6228813559322034, "position": { - "x": 4, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 141, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3585, + "time": 0.6271186440677966, + "position": { + "x": 3, "y": 0 }, "position2D": { @@ -4852,13 +6830,13 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3172, - "time": 0.5550847457627118, + "noteOrder": 3609, + "time": 0.6313559322033898, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4870,18 +6848,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 3184, - "time": 0.5572033898305084, + "noteOrder": 3633, + "time": 0.6355932203389831, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4898,11 +6876,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, + "lineGroupId": 143, "indexInLine": 2, "isSliding": false, - "noteOrder": 3196, - "time": 0.559322033898305, + "noteOrder": 3657, + "time": 0.6398305084745763, "position": { "x": 6, "y": 0 @@ -4921,13 +6899,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3196, - "time": 0.559322033898305, + "noteOrder": 3972, + "time": 0.6949152542372882, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4944,13 +6922,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3220, - "time": 0.5635593220338982, + "noteOrder": 3996, + "time": 0.6991525423728814, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4967,13 +6945,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3244, - "time": 0.5677966101694916, + "noteOrder": 4009, + "time": 0.701271186440678, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4985,18 +6963,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3269, - "time": 0.5720338983050848, + "noteOrder": 4021, + "time": 0.7033898305084746, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5008,18 +6986,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 159, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3293, - "time": 0.576271186440678, + "noteOrder": 4033, + "time": 0.7055084745762712, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5036,11 +7014,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 159, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3317, - "time": 0.5805084745762712, + "noteOrder": 4045, + "time": 0.7076271186440678, "position": { "x": 3, "y": 0 @@ -5059,13 +7037,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3341, - "time": 0.5847457627118644, + "noteOrder": 3996, + "time": 0.6991525423728814, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5082,13 +7060,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3365, - "time": 0.5889830508474576, + "noteOrder": 4009, + "time": 0.701271186440678, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5105,13 +7083,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3390, - "time": 0.5932203389830509, + "noteOrder": 4021, + "time": 0.7033898305084746, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5123,18 +7101,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 1, + "lineGroupId": 160, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3414, - "time": 0.5974576271186441, + "noteOrder": 4033, + "time": 0.7055084745762712, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5146,16 +7124,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3438, - "time": 0.6016949152542372, + "noteOrder": 4045, + "time": 0.7076271186440678, "position": { "x": 7, "y": 0 @@ -5174,13 +7152,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 172, "indexInLine": 1, "isSliding": false, - "noteOrder": 3462, - "time": 0.6059322033898304, + "noteOrder": 4190, + "time": 0.7330508474576272, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5192,18 +7170,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3487, - "time": 0.6101694915254237, + "noteOrder": 4214, + "time": 0.7372881355932204, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5220,13 +7198,13 @@ "isPlayAudio": false }, { - "lineGroupId": 137, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 3511, - "time": 0.6144067796610169, + "noteOrder": 4190, + "time": 0.7330508474576272, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5238,18 +7216,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3535, - "time": 0.6186440677966101, + "noteOrder": 4214, + "time": 0.7372881355932204, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -5266,13 +7244,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, + "lineGroupId": 187, "indexInLine": 1, "isSliding": false, - "noteOrder": 3559, - "time": 0.6228813559322034, + "noteOrder": 4408, + "time": 0.7711864406779662, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5289,11 +7267,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3583, - "time": 0.6271186440677966, + "noteOrder": 4420, + "time": 0.7733050847457628, "position": { "x": 3, "y": 0 @@ -5307,16 +7285,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3608, - "time": 0.6313559322033898, + "noteOrder": 4420, + "time": 0.7733050847457628, "position": { "x": 4, "y": 0 @@ -5330,18 +7308,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 187, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3632, - "time": 0.635593220338983, + "noteOrder": 4432, + "time": 0.7754237288135594, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5358,13 +7336,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 187, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3656, - "time": 0.6398305084745762, + "noteOrder": 4432, + "time": 0.7754237288135594, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5381,13 +7359,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3971, - "time": 0.6949152542372881, + "noteOrder": 4432, + "time": 0.7754237288135594, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5404,13 +7382,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3995, - "time": 0.6991525423728814, + "noteOrder": 4445, + "time": 0.7775423728813559, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5427,13 +7405,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 2, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4007, - "time": 0.701271186440678, + "noteOrder": 4445, + "time": 0.7775423728813559, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5450,11 +7428,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 3, + "lineGroupId": 188, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4019, - "time": 0.7033898305084746, + "noteOrder": 4457, + "time": 0.7796610169491526, "position": { "x": 4, "y": 0 @@ -5473,13 +7451,13 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 4, + "lineGroupId": 188, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4031, - "time": 0.7055084745762712, + "noteOrder": 4457, + "time": 0.7796610169491526, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5496,11 +7474,11 @@ "isPlayAudio": false }, { - "lineGroupId": 159, - "indexInLine": 5, + "lineGroupId": 189, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4043, - "time": 0.7076271186440678, + "noteOrder": 4457, + "time": 0.7796610169491526, "position": { "x": 3, "y": 0 @@ -5514,18 +7492,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 189, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3995, - "time": 0.6991525423728814, + "noteOrder": 4469, + "time": 0.7817796610169492, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5542,13 +7520,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 1, + "lineGroupId": 189, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4007, - "time": 0.701271186440678, + "noteOrder": 4469, + "time": 0.7817796610169492, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5565,13 +7543,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 2, + "lineGroupId": 189, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4019, - "time": 0.7033898305084746, + "noteOrder": 4481, + "time": 0.7838983050847458, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5588,13 +7566,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 3, + "lineGroupId": 189, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4031, - "time": 0.7055084745762712, + "noteOrder": 4481, + "time": 0.7838983050847458, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5611,13 +7589,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 4, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4043, - "time": 0.7076271186440678, + "noteOrder": 4505, + "time": 0.788135593220339, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5629,16 +7607,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4189, - "time": 0.7330508474576272, + "noteOrder": 4517, + "time": 0.7902542372881356, "position": { "x": 3, "y": 0 @@ -5657,13 +7635,13 @@ "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4213, - "time": 0.7372881355932204, + "noteOrder": 4517, + "time": 0.7902542372881356, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5680,13 +7658,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4189, - "time": 0.7330508474576272, + "noteOrder": 4529, + "time": 0.7923728813559322, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5698,18 +7676,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 1, + "lineGroupId": 191, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4213, - "time": 0.7372881355932204, + "noteOrder": 4529, + "time": 0.7923728813559322, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5721,18 +7699,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4407, - "time": 0.771186440677966, + "noteOrder": 4554, + "time": 0.7966101694915255, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5749,13 +7727,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4431, - "time": 0.7754237288135593, + "noteOrder": 4566, + "time": 0.7987288135593221, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -5767,18 +7745,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4455, - "time": 0.7796610169491526, + "noteOrder": 4566, + "time": 0.7987288135593221, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5795,13 +7773,13 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 193, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4503, - "time": 0.788135593220339, + "noteOrder": 4578, + "time": 0.8008474576271187, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -5813,16 +7791,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 193, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4552, - "time": 0.7966101694915254, + "noteOrder": 4578, + "time": 0.8008474576271187, "position": { "x": 7, "y": 0 @@ -5842,10 +7820,10 @@ }, { "lineGroupId": 195, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4600, - "time": 0.8050847457627119, + "noteOrder": 4602, + "time": 0.8050847457627118, "position": { "x": 6, "y": 0 @@ -5865,10 +7843,10 @@ }, { "lineGroupId": 195, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4624, - "time": 0.8093220338983051, + "noteOrder": 4626, + "time": 0.809322033898305, "position": { "x": 6, "y": 0 @@ -5888,10 +7866,10 @@ }, { "lineGroupId": 196, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4600, - "time": 0.8050847457627119, + "noteOrder": 4602, + "time": 0.8050847457627118, "position": { "x": 4, "y": 0 @@ -5911,10 +7889,10 @@ }, { "lineGroupId": 196, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4624, - "time": 0.8093220338983051, + "noteOrder": 4626, + "time": 0.809322033898305, "position": { "x": 4, "y": 0 @@ -5934,10 +7912,10 @@ }, { "lineGroupId": 197, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4649, - "time": 0.8135593220338982, + "noteOrder": 4650, + "time": 0.8135593220338984, "position": { "x": 7, "y": 0 @@ -5957,10 +7935,10 @@ }, { "lineGroupId": 197, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4673, - "time": 0.8177966101694915, + "noteOrder": 4675, + "time": 0.8177966101694916, "position": { "x": 7, "y": 0 @@ -5980,10 +7958,10 @@ }, { "lineGroupId": 198, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4649, - "time": 0.8135593220338982, + "noteOrder": 4650, + "time": 0.8135593220338984, "position": { "x": 3, "y": 0 @@ -6003,10 +7981,10 @@ }, { "lineGroupId": 198, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4673, - "time": 0.8177966101694915, + "noteOrder": 4675, + "time": 0.8177966101694916, "position": { "x": 3, "y": 0 @@ -6026,9 +8004,9 @@ }, { "lineGroupId": 201, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4746, + "noteOrder": 4747, "time": 0.8305084745762712, "position": { "x": 7, @@ -6049,10 +8027,10 @@ }, { "lineGroupId": 201, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4842, - "time": 0.847457627118644, + "noteOrder": 4844, + "time": 0.8474576271186441, "position": { "x": 7, "y": 0 @@ -6072,10 +8050,10 @@ }, { "lineGroupId": 205, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4842, - "time": 0.847457627118644, + "noteOrder": 4844, + "time": 0.8474576271186441, "position": { "x": 3, "y": 0 @@ -6095,10 +8073,10 @@ }, { "lineGroupId": 205, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4867, - "time": 0.8516949152542372, + "noteOrder": 4868, + "time": 0.8516949152542374, "position": { "x": 3, "y": 0 @@ -6118,10 +8096,10 @@ }, { "lineGroupId": 207, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4891, - "time": 0.8559322033898306, + "noteOrder": 4893, + "time": 0.8559322033898304, "position": { "x": 7, "y": 0 @@ -6141,9 +8119,9 @@ }, { "lineGroupId": 207, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4915, + "noteOrder": 4917, "time": 0.8601694915254238, "position": { "x": 7, @@ -6164,9 +8142,9 @@ }, { "lineGroupId": 209, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, + "noteOrder": 4941, "time": 0.864406779661017, "position": { "x": 3, @@ -6187,10 +8165,10 @@ }, { "lineGroupId": 209, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5036, - "time": 0.8813559322033897, + "noteOrder": 5038, + "time": 0.8813559322033899, "position": { "x": 3, "y": 0 @@ -6210,10 +8188,10 @@ }, { "lineGroupId": 213, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5036, - "time": 0.8813559322033897, + "noteOrder": 5038, + "time": 0.8813559322033899, "position": { "x": 7, "y": 0 @@ -6233,9 +8211,9 @@ }, { "lineGroupId": 213, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5060, + "noteOrder": 5062, "time": 0.885593220338983, "position": { "x": 7, @@ -6256,9 +8234,9 @@ }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5084, + "noteOrder": 5086, "time": 0.8898305084745762, "position": { "x": 3, @@ -6279,10 +8257,10 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5109, - "time": 0.8940677966101694, + "noteOrder": 5111, + "time": 0.8940677966101696, "position": { "x": 3, "y": 0 @@ -6302,10 +8280,10 @@ }, { "lineGroupId": 217, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5133, - "time": 0.8983050847457626, + "noteOrder": 5135, + "time": 0.8983050847457628, "position": { "x": 7, "y": 0 @@ -6325,9 +8303,9 @@ }, { "lineGroupId": 217, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9152542372881356, "position": { "x": 4, @@ -6348,9 +8326,9 @@ }, { "lineGroupId": 221, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9152542372881356, "position": { "x": 3, @@ -6371,9 +8349,9 @@ }, { "lineGroupId": 221, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5254, + "noteOrder": 5256, "time": 0.9194915254237288, "position": { "x": 3, @@ -6394,10 +8372,10 @@ }, { "lineGroupId": 223, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5278, - "time": 0.923728813559322, + "noteOrder": 5280, + "time": 0.9237288135593221, "position": { "x": 7, "y": 0 @@ -6417,10 +8395,10 @@ }, { "lineGroupId": 223, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5302, - "time": 0.9279661016949152, + "noteOrder": 5304, + "time": 0.9279661016949153, "position": { "x": 7, "y": 0 @@ -6440,10 +8418,10 @@ }, { "lineGroupId": 225, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5327, - "time": 0.9322033898305084, + "noteOrder": 5329, + "time": 0.9322033898305085, "position": { "x": 3, "y": 0 @@ -6463,9 +8441,9 @@ }, { "lineGroupId": 225, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5423, + "noteOrder": 5426, "time": 0.9491525423728814, "position": { "x": 6, diff --git "a/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1b.json" "b/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1b.json" index a1aaf4f0..8d719c1c 100644 --- "a/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1b.json" +++ "b/tracks/\346\226\260\350\233\207\345\247\253/379_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 145, - "time": 0.02542372881355932, + "time": 0.025423728813559324, "position": { "x": 6, "y": 0 @@ -33,7 +33,7 @@ "isPlayAudio": false }, { - "noteOrder": 169, + "noteOrder": 170, "time": 0.029661016949152543, "position": { "x": 3, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 508, + "noteOrder": 509, "time": 0.08898305084745763, "position": { "x": 7, @@ -134,7 +134,7 @@ }, { "noteOrder": 533, - "time": 0.09322033898305083, + "time": 0.09322033898305085, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 581, - "time": 0.10169491525423728, + "time": 0.1016949152542373, "position": { "x": 6, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 605, - "time": 0.1059322033898305, + "noteOrder": 606, + "time": 0.10593220338983052, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 630, - "time": 0.11016949152542371, + "time": 0.11016949152542374, "position": { "x": 7, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 702, - "time": 0.12288135593220338, + "time": 0.1228813559322034, "position": { "x": 3, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 726, + "noteOrder": 727, "time": 0.1271186440677966, "position": { "x": 6, @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 1307, + "noteOrder": 1308, "time": 0.2288135593220339, "position": { "x": 7, @@ -354,7 +354,7 @@ }, { "noteOrder": 1332, - "time": 0.2330508474576271, + "time": 0.23305084745762714, "position": { "x": 4, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 1404, - "time": 0.24576271186440676, + "noteOrder": 1405, + "time": 0.2457627118644068, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1428, + "noteOrder": 1429, "time": 0.25, "position": { "x": 6, @@ -434,7 +434,7 @@ }, { "noteOrder": 1477, - "time": 0.2584745762711865, + "time": 0.2584745762711864, "position": { "x": 7, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1501, + "noteOrder": 1502, "time": 0.2627118644067797, "position": { "x": 4, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1525, - "time": 0.26694915254237284, + "noteOrder": 1526, + "time": 0.2669491525423729, "position": { "x": 6, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1695, - "time": 0.29661016949152547, + "time": 0.2966101694915254, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1719, - "time": 0.3008474576271186, + "noteOrder": 1720, + "time": 0.3008474576271187, "position": { "x": 3, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1913, - "time": 0.33474576271186435, + "time": 0.33474576271186446, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1985, - "time": 0.34745762711864403, + "noteOrder": 1986, + "time": 0.3474576271186441, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2082, - "time": 0.364406779661017, + "noteOrder": 2083, + "time": 0.3644067796610169, "position": { "x": 3, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2106, + "noteOrder": 2107, "time": 0.3686440677966102, "position": { "x": 7, @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 2276, - "time": 0.3983050847457627, + "noteOrder": 2277, + "time": 0.39830508474576276, "position": { "x": 7, "y": 0 @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2300, - "time": 0.40254237288135597, + "noteOrder": 2301, + "time": 0.4025423728813559, "position": { "x": 3, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2518, - "time": 0.44067796610169485, + "noteOrder": 2519, + "time": 0.44067796610169496, "position": { "x": 3, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2543, "time": 0.4449152542372881, "position": { "x": 4, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2566, - "time": 0.4491525423728813, + "noteOrder": 2567, + "time": 0.4491525423728814, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2591, - "time": 0.45338983050847453, + "noteOrder": 2592, + "time": 0.45338983050847464, "position": { "x": 7, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2663, - "time": 0.4661016949152542, + "noteOrder": 2664, + "time": 0.46610169491525427, "position": { "x": 3, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 2689, "time": 0.4703389830508475, "position": { "x": 6, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2713, "time": 0.4745762711864407, "position": { "x": 3, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2736, - "time": 0.47881355932203384, + "noteOrder": 2737, + "time": 0.47881355932203395, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2761, "time": 0.4830508474576271, "position": { "x": 7, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2784, - "time": 0.4872881355932203, + "noteOrder": 2785, + "time": 0.4872881355932204, "position": { "x": 6, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2905, + "noteOrder": 2907, "time": 0.5084745762711864, "position": { "x": 7, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2930, - "time": 0.5127118644067796, + "noteOrder": 2931, + "time": 0.5127118644067797, "position": { "x": 6, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2954, - "time": 0.516949152542373, + "noteOrder": 2955, + "time": 0.5169491525423728, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.5211864406779662, + "noteOrder": 2979, + "time": 0.521186440677966, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3051, - "time": 0.5338983050847457, + "noteOrder": 3052, + "time": 0.5338983050847458, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3075, - "time": 0.5381355932203389, + "noteOrder": 3076, + "time": 0.5381355932203391, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3099, + "noteOrder": 3100, "time": 0.5423728813559322, "position": { "x": 7, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3123, + "noteOrder": 3125, "time": 0.5466101694915254, "position": { "x": 6, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3148, + "noteOrder": 3149, "time": 0.5508474576271186, "position": { "x": 3, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3172, - "time": 0.5550847457627118, + "noteOrder": 3173, + "time": 0.5550847457627119, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3196, - "time": 0.559322033898305, + "noteOrder": 3197, + "time": 0.5593220338983051, "position": { "x": 7, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3244, - "time": 0.5677966101694916, + "noteOrder": 3246, + "time": 0.5677966101694915, "position": { "x": 3, "y": 0 @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3293, + "noteOrder": 3294, "time": 0.576271186440678, "position": { "x": 6, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3343, "time": 0.5847457627118644, "position": { "x": 4, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3390, - "time": 0.5932203389830509, + "noteOrder": 3391, + "time": 0.5932203389830508, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3438, - "time": 0.6016949152542372, + "noteOrder": 3439, + "time": 0.6016949152542374, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3487, - "time": 0.6101694915254237, + "noteOrder": 3488, + "time": 0.6101694915254238, "position": { "x": 7, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3535, - "time": 0.6186440677966101, + "noteOrder": 3536, + "time": 0.6186440677966103, "position": { "x": 3, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3583, + "noteOrder": 3585, "time": 0.6271186440677966, "position": { "x": 6, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3632, - "time": 0.635593220338983, + "noteOrder": 3633, + "time": 0.6355932203389831, "position": { "x": 7, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3680, - "time": 0.6440677966101694, + "noteOrder": 3682, + "time": 0.6440677966101696, "position": { "x": 4, "y": 0 @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3729, + "noteOrder": 3730, "time": 0.652542372881356, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3777, + "noteOrder": 3778, "time": 0.6610169491525424, "position": { "x": 7, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3801, + "noteOrder": 3803, "time": 0.6652542372881356, "position": { "x": 3, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3825, - "time": 0.6694915254237287, + "noteOrder": 3827, + "time": 0.6694915254237289, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3850, + "noteOrder": 3851, "time": 0.673728813559322, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3971, - "time": 0.6949152542372881, + "noteOrder": 3972, + "time": 0.6949152542372882, "position": { "x": 5, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3996, "time": 0.6991525423728814, "position": { "x": 5, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4019, + "noteOrder": 4021, "time": 0.7033898305084746, "position": { "x": 5, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4045, "time": 0.7076271186440678, "position": { "x": 5, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7203389830508474, + "noteOrder": 4118, + "time": 0.7203389830508475, "position": { "x": 6, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4116, - "time": 0.7203389830508474, + "noteOrder": 4118, + "time": 0.7203389830508475, "position": { "x": 4, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4213, + "noteOrder": 4214, "time": 0.7372881355932204, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4237, - "time": 0.7415254237288135, + "noteOrder": 4239, + "time": 0.7415254237288136, "position": { "x": 3, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4310, + "noteOrder": 4311, "time": 0.7542372881355932, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4334, + "noteOrder": 4336, "time": 0.7584745762711864, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4358, - "time": 0.7627118644067796, + "noteOrder": 4360, + "time": 0.7627118644067797, "position": { "x": 5, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4382, - "time": 0.7669491525423728, + "noteOrder": 4384, + "time": 0.766949152542373, "position": { "x": 5, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4407, - "time": 0.771186440677966, + "noteOrder": 4408, + "time": 0.7711864406779662, "position": { "x": 5, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4431, - "time": 0.7754237288135593, + "noteOrder": 4432, + "time": 0.7754237288135594, "position": { "x": 5, "y": 0 @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.788135593220339, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 4503, + "noteOrder": 4505, "time": 0.788135593220339, "position": { "x": 4, @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4600, - "time": 0.8050847457627119, + "noteOrder": 4602, + "time": 0.8050847457627118, "position": { "x": 3, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4624, - "time": 0.8093220338983051, + "noteOrder": 4626, + "time": 0.809322033898305, "position": { "x": 7, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4697, - "time": 0.8220338983050847, + "noteOrder": 4699, + "time": 0.8220338983050848, "position": { "x": 7, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4721, - "time": 0.8262711864406779, + "noteOrder": 4723, + "time": 0.8262711864406781, "position": { "x": 3, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4796, "time": 0.8389830508474576, "position": { "x": 6, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4891, - "time": 0.8559322033898306, + "noteOrder": 4893, + "time": 0.8559322033898304, "position": { "x": 4, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4988, + "noteOrder": 4990, "time": 0.8728813559322034, "position": { "x": 3, @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5012, - "time": 0.8771186440677966, + "noteOrder": 5014, + "time": 0.8771186440677967, "position": { "x": 6, "y": 0 @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 5084, + "noteOrder": 5086, "time": 0.8898305084745762, "position": { "x": 7, @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 5109, - "time": 0.8940677966101694, + "noteOrder": 5111, + "time": 0.8940677966101696, "position": { "x": 4, "y": 0 @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5133, - "time": 0.8983050847457626, + "noteOrder": 5135, + "time": 0.8983050847457628, "position": { "x": 7, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5157, - "time": 0.9025423728813559, + "noteOrder": 5159, + "time": 0.902542372881356, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5181, - "time": 0.9067796610169491, + "noteOrder": 5183, + "time": 0.9067796610169493, "position": { "x": 4, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5206, + "noteOrder": 5208, "time": 0.9110169491525424, "position": { "x": 3, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.9152542372881356, "position": { "x": 3, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 5254, + "noteOrder": 5256, "time": 0.9194915254237288, "position": { "x": 7, @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5278, - "time": 0.923728813559322, + "noteOrder": 5280, + "time": 0.9237288135593221, "position": { "x": 4, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5302, - "time": 0.9279661016949152, + "noteOrder": 5304, + "time": 0.9279661016949153, "position": { "x": 6, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5327, - "time": 0.9322033898305084, + "noteOrder": 5329, + "time": 0.9322033898305085, "position": { "x": 3, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5351, - "time": 0.9364406779661018, + "noteOrder": 5353, + "time": 0.9364406779661016, "position": { "x": 4, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5375, + "noteOrder": 5377, "time": 0.940677966101695, "position": { "x": 6, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5399, + "noteOrder": 5401, "time": 0.9449152542372882, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5423, + "noteOrder": 5426, "time": 0.9491525423728814, "position": { "x": 7, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5448, - "time": 0.9533898305084745, + "noteOrder": 5450, + "time": 0.9533898305084746, "position": { "x": 3, "y": 0 @@ -2196,7 +2196,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01694915254237288, @@ -2219,9 +2219,9 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 169, + "noteOrder": 170, "time": 0.029661016949152543, "position": { "x": 7, @@ -2242,7 +2242,7 @@ }, { "lineGroupId": 4, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 194, "time": 0.03389830508474576, @@ -2265,10 +2265,10 @@ }, { "lineGroupId": 4, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 218, - "time": 0.03813559322033898, + "time": 0.038135593220338986, "position": { "x": 3, "y": 0 @@ -2288,7 +2288,7 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 242, "time": 0.0423728813559322, @@ -2311,10 +2311,10 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 266, - "time": 0.04661016949152542, + "time": 0.046610169491525424, "position": { "x": 7, "y": 0 @@ -2334,10 +2334,10 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 291, - "time": 0.05084745762711864, + "time": 0.05084745762711865, "position": { "x": 3, "y": 0 @@ -2357,7 +2357,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 363, "time": 0.0635593220338983, @@ -2380,9 +2380,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 387, + "noteOrder": 388, "time": 0.06779661016949153, "position": { "x": 7, @@ -2403,7 +2403,7 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 412, "time": 0.07203389830508475, @@ -2426,10 +2426,10 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 436, - "time": 0.07627118644067796, + "time": 0.07627118644067797, "position": { "x": 3, "y": 0 @@ -2449,10 +2449,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 460, - "time": 0.08050847457627118, + "time": 0.0805084745762712, "position": { "x": 3, "y": 0 @@ -2472,7 +2472,7 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 775, "time": 0.13559322033898305, @@ -2495,10 +2495,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 872, - "time": 0.15254237288135591, + "time": 0.15254237288135594, "position": { "x": 7, "y": 0 @@ -2518,9 +2518,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 823, + "noteOrder": 824, "time": 0.1440677966101695, "position": { "x": 3, @@ -2541,10 +2541,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 872, - "time": 0.15254237288135591, + "time": 0.15254237288135594, "position": { "x": 3, "y": 0 @@ -2564,10 +2564,10 @@ }, { "lineGroupId": 27, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1259, - "time": 0.22033898305084743, + "time": 0.22033898305084748, "position": { "x": 3, "y": 0 @@ -2587,10 +2587,10 @@ }, { "lineGroupId": 27, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1332, - "time": 0.2330508474576271, + "time": 0.23305084745762714, "position": { "x": 3, "y": 0 @@ -2610,7 +2610,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1356, "time": 0.23728813559322035, @@ -2633,9 +2633,9 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1428, + "noteOrder": 1429, "time": 0.25, "position": { "x": 7, @@ -2656,7 +2656,7 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1550, "time": 0.2711864406779661, @@ -2679,10 +2679,10 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1622, - "time": 0.2838983050847458, + "noteOrder": 1623, + "time": 0.28389830508474573, "position": { "x": 3, "y": 0 @@ -2702,10 +2702,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1598, - "time": 0.2796610169491525, + "noteOrder": 1599, + "time": 0.2796610169491526, "position": { "x": 7, "y": 0 @@ -2725,10 +2725,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1622, - "time": 0.2838983050847458, + "noteOrder": 1623, + "time": 0.28389830508474573, "position": { "x": 7, "y": 0 @@ -2748,9 +2748,9 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1646, + "noteOrder": 1647, "time": 0.288135593220339, "position": { "x": 3, @@ -2771,7 +2771,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1671, "time": 0.2923728813559322, @@ -2794,10 +2794,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1743, - "time": 0.30508474576271183, + "noteOrder": 1744, + "time": 0.3050847457627119, "position": { "x": 7, "y": 0 @@ -2815,9 +2815,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1768, + "time": 0.30932203389830515, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1768, + "time": 0.30932203389830515, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1792, "time": 0.3135593220338983, @@ -2838,12 +2884,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1817, + "time": 0.31779661016949157, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1817, + "time": 0.31779661016949157, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1840, - "time": 0.3220338983050847, + "noteOrder": 1841, + "time": 0.3220338983050848, "position": { "x": 7, "y": 0 @@ -2863,9 +2955,9 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1864, + "noteOrder": 1865, "time": 0.326271186440678, "position": { "x": 7, @@ -2886,9 +2978,9 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1937, + "noteOrder": 1938, "time": 0.3389830508474576, "position": { "x": 3, @@ -2909,10 +3001,10 @@ }, { "lineGroupId": 48, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1985, - "time": 0.34745762711864403, + "noteOrder": 1986, + "time": 0.3474576271186441, "position": { "x": 3, "y": 0 @@ -2932,9 +3024,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2034, + "noteOrder": 2035, "time": 0.3559322033898305, "position": { "x": 7, @@ -2955,10 +3047,10 @@ }, { "lineGroupId": 50, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2058, - "time": 0.3601694915254237, + "noteOrder": 2059, + "time": 0.36016949152542377, "position": { "x": 7, "y": 0 @@ -2978,10 +3070,10 @@ }, { "lineGroupId": 53, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 2131, - "time": 0.37288135593220334, + "time": 0.3728813559322034, "position": { "x": 3, "y": 0 @@ -2999,12 +3091,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2156, + "time": 0.3771186440677966, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2156, + "time": 0.3771186440677966, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 54, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2179, - "time": 0.3813559322033898, + "noteOrder": 2180, + "time": 0.38135593220338987, "position": { "x": 7, "y": 0 @@ -3022,11 +3160,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2204, + "time": 0.3855932203389831, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2204, + "time": 0.3855932203389831, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 55, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2227, + "noteOrder": 2228, "time": 0.3898305084745763, "position": { "x": 3, @@ -3047,9 +3231,9 @@ }, { "lineGroupId": 55, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2252, + "noteOrder": 2253, "time": 0.3940677966101695, "position": { "x": 3, @@ -3070,10 +3254,10 @@ }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2324, - "time": 0.4067796610169491, + "noteOrder": 2325, + "time": 0.4067796610169492, "position": { "x": 7, "y": 0 @@ -3093,10 +3277,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 2349, - "time": 0.41101694915254233, + "time": 0.4110169491525424, "position": { "x": 7, "y": 0 @@ -3116,9 +3300,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2373, + "noteOrder": 2374, "time": 0.4152542372881356, "position": { "x": 6, @@ -3139,9 +3323,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2397, + "noteOrder": 2398, "time": 0.4194915254237288, "position": { "x": 6, @@ -3162,9 +3346,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2373, + "noteOrder": 2374, "time": 0.4152542372881356, "position": { "x": 4, @@ -3185,9 +3369,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2397, + "noteOrder": 2398, "time": 0.4194915254237288, "position": { "x": 4, @@ -3208,10 +3392,33 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2422, + "time": 0.42372881355932207, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2421, - "time": 0.423728813559322, + "noteOrder": 2446, + "time": 0.4279661016949152, "position": { "x": 3, "y": 0 @@ -3229,11 +3436,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2446, + "time": 0.4279661016949152, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2470, + "noteOrder": 2471, "time": 0.4322033898305085, "position": { "x": 3, @@ -3252,11 +3482,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 62, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2495, + "time": 0.4364406779661017, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 62, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2495, + "time": 0.4364406779661017, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2615, + "noteOrder": 2616, "time": 0.4576271186440678, "position": { "x": 7, @@ -3277,9 +3553,9 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2688, + "noteOrder": 2689, "time": 0.4703389830508475, "position": { "x": 7, @@ -3300,10 +3576,33 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2810, + "time": 0.4915254237288136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 74, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2809, - "time": 0.4915254237288135, + "noteOrder": 2834, + "time": 0.4957627118644068, "position": { "x": 7, "y": 0 @@ -3321,11 +3620,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 74, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2834, + "time": 0.4957627118644068, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2857, + "noteOrder": 2858, "time": 0.5, "position": { "x": 7, @@ -3344,11 +3666,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2882, + "time": 0.5042372881355932, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2882, + "time": 0.5042372881355932, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3002, + "noteOrder": 3003, "time": 0.5254237288135594, "position": { "x": 3, @@ -3369,10 +3737,10 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3075, - "time": 0.5381355932203389, + "noteOrder": 3076, + "time": 0.5381355932203391, "position": { "x": 3, "y": 0 @@ -3392,9 +3760,9 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3874, + "noteOrder": 3875, "time": 0.6779661016949152, "position": { "x": 3, @@ -3415,10 +3783,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3922, - "time": 0.6864406779661016, + "noteOrder": 3924, + "time": 0.6864406779661018, "position": { "x": 3, "y": 0 @@ -3438,9 +3806,9 @@ }, { "lineGroupId": 104, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3874, + "noteOrder": 3875, "time": 0.6779661016949152, "position": { "x": 7, @@ -3461,10 +3829,10 @@ }, { "lineGroupId": 104, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3922, - "time": 0.6864406779661016, + "noteOrder": 3924, + "time": 0.6864406779661018, "position": { "x": 7, "y": 0 @@ -3484,9 +3852,9 @@ }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4068, + "noteOrder": 4069, "time": 0.711864406779661, "position": { "x": 7, @@ -3507,10 +3875,10 @@ }, { "lineGroupId": 110, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4092, - "time": 0.7161016949152542, + "noteOrder": 4093, + "time": 0.7161016949152543, "position": { "x": 7, "y": 0 @@ -3530,9 +3898,9 @@ }, { "lineGroupId": 111, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4068, + "noteOrder": 4069, "time": 0.711864406779661, "position": { "x": 3, @@ -3553,10 +3921,10 @@ }, { "lineGroupId": 111, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4092, - "time": 0.7161016949152542, + "noteOrder": 4093, + "time": 0.7161016949152543, "position": { "x": 3, "y": 0 @@ -3576,10 +3944,10 @@ }, { "lineGroupId": 114, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4164, - "time": 0.728813559322034, + "noteOrder": 4166, + "time": 0.7288135593220338, "position": { "x": 3, "y": 0 @@ -3599,9 +3967,9 @@ }, { "lineGroupId": 114, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4189, + "noteOrder": 4190, "time": 0.7330508474576272, "position": { "x": 3, @@ -3622,10 +3990,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4261, - "time": 0.7457627118644067, + "noteOrder": 4263, + "time": 0.7457627118644068, "position": { "x": 7, "y": 0 @@ -3645,10 +4013,10 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4285, - "time": 0.7499999999999999, + "noteOrder": 4287, + "time": 0.7500000000000001, "position": { "x": 7, "y": 0 @@ -3668,9 +4036,9 @@ }, { "lineGroupId": 124, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4455, + "noteOrder": 4457, "time": 0.7796610169491526, "position": { "x": 7, @@ -3691,9 +4059,9 @@ }, { "lineGroupId": 124, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.7838983050847458, "position": { "x": 7, @@ -3714,9 +4082,9 @@ }, { "lineGroupId": 125, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4455, + "noteOrder": 4457, "time": 0.7796610169491526, "position": { "x": 3, @@ -3737,9 +4105,9 @@ }, { "lineGroupId": 125, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4479, + "noteOrder": 4481, "time": 0.7838983050847458, "position": { "x": 3, @@ -3760,10 +4128,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4552, - "time": 0.7966101694915254, + "noteOrder": 4554, + "time": 0.7966101694915255, "position": { "x": 7, "y": 0 @@ -3783,10 +4151,10 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4576, - "time": 0.8008474576271186, + "noteOrder": 4578, + "time": 0.8008474576271187, "position": { "x": 7, "y": 0 @@ -3806,10 +4174,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4649, - "time": 0.8135593220338982, + "noteOrder": 4650, + "time": 0.8135593220338984, "position": { "x": 3, "y": 0 @@ -3829,10 +4197,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4673, - "time": 0.8177966101694915, + "noteOrder": 4675, + "time": 0.8177966101694916, "position": { "x": 3, "y": 0 @@ -3852,9 +4220,9 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4746, + "noteOrder": 4747, "time": 0.8305084745762712, "position": { "x": 7, @@ -3875,9 +4243,9 @@ }, { "lineGroupId": 134, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4794, + "noteOrder": 4796, "time": 0.8389830508474576, "position": { "x": 7, @@ -3898,10 +4266,10 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4842, - "time": 0.847457627118644, + "noteOrder": 4844, + "time": 0.8474576271186441, "position": { "x": 3, "y": 0 @@ -3921,10 +4289,10 @@ }, { "lineGroupId": 136, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4891, - "time": 0.8559322033898306, + "noteOrder": 4893, + "time": 0.8559322033898304, "position": { "x": 3, "y": 0 @@ -3944,9 +4312,9 @@ }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4939, + "noteOrder": 4941, "time": 0.864406779661017, "position": { "x": 7, @@ -3967,10 +4335,10 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5012, - "time": 0.8771186440677966, + "noteOrder": 5014, + "time": 0.8771186440677967, "position": { "x": 7, "y": 0 @@ -3990,10 +4358,10 @@ }, { "lineGroupId": 141, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5036, - "time": 0.8813559322033897, + "noteOrder": 5038, + "time": 0.8813559322033899, "position": { "x": 3, "y": 0 @@ -4013,10 +4381,10 @@ }, { "lineGroupId": 141, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5109, - "time": 0.8940677966101694, + "noteOrder": 5111, + "time": 0.8940677966101696, "position": { "x": 3, "y": 0 @@ -4036,10 +4404,10 @@ }, { "lineGroupId": 158, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5472, - "time": 0.9576271186440677, + "noteOrder": 5474, + "time": 0.9576271186440679, "position": { "x": 6, "y": 0 @@ -4059,9 +4427,9 @@ }, { "lineGroupId": 158, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.961864406779661, "position": { "x": 6, @@ -4082,10 +4450,10 @@ }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5472, - "time": 0.9576271186440677, + "noteOrder": 5474, + "time": 0.9576271186440679, "position": { "x": 4, "y": 0 @@ -4105,9 +4473,9 @@ }, { "lineGroupId": 159, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5496, + "noteOrder": 5498, "time": 0.961864406779661, "position": { "x": 4, diff --git "a/tracks/\346\226\260\350\233\207\345\247\253/info.json" "b/tracks/\346\226\260\350\233\207\345\247\253/info.json" index a3e649df..e0b61d09 100644 --- "a/tracks/\346\226\260\350\233\207\345\247\253/info.json" +++ "b/tracks/\346\226\260\350\233\207\345\247\253/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u65b0\u86c7\u59eb", - "SongLength": "134.217143", + "SongLength": "124.264490", "SongAuthorName": "BEMANI Sound Team \"U1-ASAMi\"", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1a.json" "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1a.json" index 0fcdb570..b5e6585d 100644 --- "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1a.json" +++ "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 480, - "time": 0.09616829451540194, + "time": 0.09616829451540196, "position": { "x": 3, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.10578512396694216, + "noteOrder": 529, + "time": 0.10578512396694215, "position": { "x": 5, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 577, "time": 0.11540195341848235, "position": { "x": 6, @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.12501878287002255, "position": { "x": 7, @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.14906085649887302, + "noteOrder": 745, + "time": 0.14906085649887305, "position": { "x": 7, "y": 0 @@ -113,8 +113,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.1682945154019534, + "noteOrder": 841, + "time": 0.16829451540195342, "position": { "x": 6, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 936, - "time": 0.1875281743050338, + "noteOrder": 937, + "time": 0.18752817430503382, "position": { "x": 3, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1057, - "time": 0.21157024793388432, + "time": 0.2115702479338843, "position": { "x": 6, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 1201, - "time": 0.24042073628850485, + "time": 0.2404207362885049, "position": { "x": 4, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 1225, - "time": 0.24522915101427498, + "time": 0.245229151014275, "position": { "x": 5, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1465, - "time": 0.29331329827197594, + "noteOrder": 1466, + "time": 0.293313298271976, "position": { "x": 3, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1489, - "time": 0.29812171299774604, + "noteOrder": 1490, + "time": 0.2981217129977461, "position": { "x": 5, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1514, "time": 0.30293012772351613, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.3077385424492863, + "noteOrder": 1538, + "time": 0.3077385424492862, "position": { "x": 5, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.3125469571750563, + "noteOrder": 1562, + "time": 0.3125469571750564, "position": { "x": 4, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.3173553719008264, + "noteOrder": 1586, + "time": 0.31735537190082647, "position": { "x": 6, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 5, @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 1729, + "noteOrder": 1730, "time": 0.34620586025544703, "position": { "x": 5, @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1729, + "noteOrder": 1730, "time": 0.34620586025544703, "position": { "x": 7, @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.35101427498121707, + "noteOrder": 1754, + "time": 0.3510142749812171, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.35101427498121707, + "noteOrder": 1754, + "time": 0.3510142749812171, "position": { "x": 5, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.3558226897069872, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.3558226897069872, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1849, + "noteOrder": 1850, "time": 0.3702479338842975, "position": { "x": 5, @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1897, + "noteOrder": 1898, "time": 0.37986476333583774, "position": { "x": 5, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 1993, - "time": 0.39909842223891806, + "noteOrder": 1994, + "time": 0.3990984222389181, "position": { "x": 3, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2041, - "time": 0.40871525169045825, + "noteOrder": 2042, + "time": 0.40871525169045836, "position": { "x": 5, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.4183320811419985, + "noteOrder": 2090, + "time": 0.41833208114199855, "position": { "x": 5, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2185, - "time": 0.4375657400450789, + "noteOrder": 2186, + "time": 0.43756574004507887, "position": { "x": 7, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2234, "time": 0.4471825694966191, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2281, - "time": 0.45679939894815924, + "noteOrder": 2282, + "time": 0.4567993989481593, "position": { "x": 3, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2329, - "time": 0.46641622839969943, + "noteOrder": 2330, + "time": 0.4664162283996995, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2377, + "noteOrder": 2378, "time": 0.47603305785123967, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2497, + "noteOrder": 2499, "time": 0.5000751314800902, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2497, + "noteOrder": 2499, "time": 0.5000751314800902, "position": { "x": 3, @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2521, - "time": 0.5048835462058602, + "noteOrder": 2523, + "time": 0.5048835462058603, "position": { "x": 5, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2521, - "time": 0.5048835462058602, + "noteOrder": 2523, + "time": 0.5048835462058603, "position": { "x": 7, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2547, "time": 0.5096919609316304, "position": { "x": 6, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2545, + "noteOrder": 2547, "time": 0.5096919609316304, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.6010518407212622, + "noteOrder": 3003, + "time": 0.6010518407212623, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.6058602554470323, "position": { "x": 5, @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.6106686701728024, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3098, - "time": 0.6202854996243425, + "noteOrder": 3099, + "time": 0.6202854996243427, "position": { "x": 4, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3122, - "time": 0.6250939143501126, + "noteOrder": 3123, + "time": 0.6250939143501127, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.6299023290758828, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 3266, + "noteOrder": 3267, "time": 0.6539444027047333, "position": { "x": 7, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6827948910593539, "position": { "x": 7, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3434, + "noteOrder": 3436, "time": 0.687603305785124, "position": { "x": 4, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3506, - "time": 0.7020285499624341, + "noteOrder": 3508, + "time": 0.7020285499624342, "position": { "x": 7, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7068369646882043, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3578, - "time": 0.7164537941397446, + "noteOrder": 3580, + "time": 0.7164537941397445, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7260706235912847, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.740495867768595, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.7453042824943652, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.7597295266716755, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3818, + "noteOrder": 3820, "time": 0.7645379413974456, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 3844, + "time": 0.7693463561232157, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3866, + "noteOrder": 3868, "time": 0.7741547708489858, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3890, + "noteOrder": 3892, "time": 0.7789631855747559, "position": { "x": 6, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.7837716003005258, + "noteOrder": 3916, + "time": 0.783771600300526, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4178, - "time": 0.836664162283997, + "noteOrder": 4180, + "time": 0.8366641622839971, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.8414725770097671, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4274, + "noteOrder": 4276, "time": 0.8558978211870774, "position": { "x": 3, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4298, - "time": 0.8607062359128476, + "noteOrder": 4300, + "time": 0.8607062359128475, "position": { "x": 6, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4346, + "noteOrder": 4348, "time": 0.8703230653643876, "position": { "x": 5, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4394, + "noteOrder": 4397, "time": 0.8799398948159278, "position": { "x": 5, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4421, "time": 0.8847483095416979, "position": { "x": 3, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4442, + "noteOrder": 4445, "time": 0.8895567242674681, "position": { "x": 7, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4466, + "noteOrder": 4469, "time": 0.8943651389932382, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4466, + "noteOrder": 4469, "time": 0.8943651389932382, "position": { "x": 4, @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.8991735537190082, + "noteOrder": 4493, + "time": 0.8991735537190083, "position": { "x": 3, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.8991735537190082, + "noteOrder": 4493, + "time": 0.8991735537190083, "position": { "x": 7, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4778, - "time": 0.9568745304282494, + "noteOrder": 4781, + "time": 0.9568745304282495, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4790, - "time": 0.9592787377911344, + "noteOrder": 4793, + "time": 0.9592787377911346, "position": { "x": 3, "y": 0 @@ -1696,10 +1696,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.019233658903080392, + "time": 0.01923365890308039, "position": { "x": 7, "y": 0 @@ -1719,7 +1719,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.028850488354620587, @@ -1742,10 +1742,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 192, - "time": 0.038467317806160785, + "time": 0.03846731780616078, "position": { "x": 5, "y": 0 @@ -1765,10 +1765,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.038467317806160785, + "time": 0.03846731780616078, "position": { "x": 3, "y": 0 @@ -1788,10 +1788,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.04808414725770097, + "time": 0.04808414725770098, "position": { "x": 5, "y": 0 @@ -1811,7 +1811,7 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 288, "time": 0.057700976709241174, @@ -1834,7 +1834,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.057700976709241174, @@ -1857,7 +1857,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, "time": 0.06731780616078137, @@ -1880,10 +1880,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 384, - "time": 0.07693463561232157, + "time": 0.07693463561232156, "position": { "x": 5, "y": 0 @@ -1903,9 +1903,9 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 7, @@ -1925,11 +1925,11 @@ "isPlayAudio": false }, { - "lineGroupId": 10, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 2, "isSliding": false, - "noteOrder": 696, - "time": 0.13944402704733283, + "noteOrder": 685, + "time": 0.13703981968444778, "position": { "x": 7, "y": 0 @@ -1943,18 +1943,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 11, - "indexInLine": 0, + "lineGroupId": 9, + "indexInLine": 3, "isSliding": false, - "noteOrder": 720, - "time": 0.14425244177310292, + "noteOrder": 685, + "time": 0.13703981968444778, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -1971,13 +1971,13 @@ "isPlayAudio": false }, { - "lineGroupId": 13, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 1, "isSliding": false, - "noteOrder": 768, - "time": 0.15386927122464314, + "noteOrder": 697, + "time": 0.13944402704733283, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -1989,18 +1989,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 14, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 2, "isSliding": false, - "noteOrder": 792, - "time": 0.1586776859504132, + "noteOrder": 709, + "time": 0.14184823441021788, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2017,11 +2017,11 @@ "isPlayAudio": false }, { - "lineGroupId": 15, - "indexInLine": 0, + "lineGroupId": 10, + "indexInLine": 3, "isSliding": false, - "noteOrder": 816, - "time": 0.16348610067618333, + "noteOrder": 709, + "time": 0.14184823441021788, "position": { "x": 6, "y": 0 @@ -2035,18 +2035,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 17, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 1, "isSliding": false, - "noteOrder": 864, - "time": 0.17310293012772351, + "noteOrder": 721, + "time": 0.14425244177310292, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2058,18 +2058,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 18, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 2, "isSliding": false, - "noteOrder": 888, - "time": 0.1779113448534936, + "noteOrder": 733, + "time": 0.146656649135988, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2086,13 +2086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 19, - "indexInLine": 0, + "lineGroupId": 11, + "indexInLine": 3, "isSliding": false, - "noteOrder": 912, - "time": 0.18271975957926373, + "noteOrder": 733, + "time": 0.146656649135988, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2104,18 +2104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 0, + "lineGroupId": 13, + "indexInLine": 1, "isSliding": false, - "noteOrder": 960, - "time": 0.1923365890308039, + "noteOrder": 769, + "time": 0.1538692712246431, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2127,18 +2127,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 1, + "lineGroupId": 13, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, - "time": 0.2019534184823441, + "noteOrder": 781, + "time": 0.1562734785875282, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2150,18 +2150,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 21, - "indexInLine": 2, + "lineGroupId": 13, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1033, - "time": 0.2067618332081142, + "noteOrder": 781, + "time": 0.1562734785875282, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2173,18 +2173,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 0, + "lineGroupId": 14, + "indexInLine": 1, "isSliding": false, - "noteOrder": 985, - "time": 0.19714500375657398, + "noteOrder": 793, + "time": 0.15867768595041323, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2196,18 +2196,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 1, + "lineGroupId": 14, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1009, - "time": 0.2019534184823441, + "noteOrder": 805, + "time": 0.16108189331329828, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2219,18 +2219,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 22, - "indexInLine": 2, + "lineGroupId": 14, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1033, - "time": 0.2067618332081142, + "noteOrder": 805, + "time": 0.16108189331329828, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2242,18 +2242,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1249, - "time": 0.2500375657400451, + "noteOrder": 817, + "time": 0.16348610067618333, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2270,13 +2270,13 @@ "isPlayAudio": false }, { - "lineGroupId": 32, - "indexInLine": 1, + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1297, - "time": 0.2596543951915853, + "noteOrder": 829, + "time": 0.16589030803906837, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2293,13 +2293,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 15, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1633, - "time": 0.32697220135236665, + "noteOrder": 829, + "time": 0.16589030803906837, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2311,18 +2311,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 46, + "lineGroupId": 17, "indexInLine": 1, "isSliding": false, - "noteOrder": 1681, - "time": 0.3365890308039068, + "noteOrder": 865, + "time": 0.17310293012772351, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -2339,13 +2339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 0, + "lineGroupId": 17, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1825, - "time": 0.36543951915852746, + "noteOrder": 877, + "time": 0.17550713749060856, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2357,18 +2357,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 55, - "indexInLine": 1, + "lineGroupId": 17, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1849, - "time": 0.3702479338842975, + "noteOrder": 877, + "time": 0.17550713749060856, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2380,16 +2380,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1873, - "time": 0.3750563486100676, + "noteOrder": 889, + "time": 0.1779113448534936, "position": { "x": 3, "y": 0 @@ -2403,16 +2403,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 1, + "lineGroupId": 18, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1897, - "time": 0.37986476333583774, + "noteOrder": 901, + "time": 0.18031555221637866, "position": { "x": 3, "y": 0 @@ -2426,18 +2426,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 18, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 901, + "time": 0.18031555221637866, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2454,11 +2454,11 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1945, - "time": 0.38948159278737793, + "noteOrder": 913, + "time": 0.1827197595792637, "position": { "x": 3, "y": 0 @@ -2477,13 +2477,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1969, - "time": 0.39429000751314797, + "noteOrder": 925, + "time": 0.18512396694214875, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2495,18 +2495,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 19, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2017, - "time": 0.4039068369646882, + "noteOrder": 925, + "time": 0.18512396694214875, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2523,11 +2523,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, + "lineGroupId": 21, "indexInLine": 1, "isSliding": false, - "noteOrder": 2041, - "time": 0.40871525169045825, + "noteOrder": 961, + "time": 0.19233658903080392, "position": { "x": 3, "y": 0 @@ -2546,13 +2546,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 21, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, - "time": 0.4135236664162284, + "noteOrder": 1009, + "time": 0.20195341848234408, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2564,18 +2564,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 21, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2089, - "time": 0.4183320811419985, + "noteOrder": 1033, + "time": 0.20676183320811423, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2587,18 +2587,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2113, - "time": 0.42314049586776864, + "noteOrder": 985, + "time": 0.197145003756574, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2610,16 +2610,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2137, - "time": 0.4279489105935387, + "noteOrder": 1009, + "time": 0.20195341848234408, "position": { "x": 7, "y": 0 @@ -2638,13 +2638,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 22, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2161, - "time": 0.43275732531930877, + "noteOrder": 1033, + "time": 0.20676183320811423, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2656,18 +2656,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 32, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, - "time": 0.44237415477084896, + "noteOrder": 1249, + "time": 0.2500375657400451, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2684,13 +2684,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 32, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2233, - "time": 0.4471825694966191, + "noteOrder": 1297, + "time": 0.2596543951915853, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -2707,13 +2707,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 0, + "lineGroupId": 46, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2257, - "time": 0.4519909842223892, + "noteOrder": 1634, + "time": 0.32697220135236665, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2730,13 +2730,13 @@ "isPlayAudio": false }, { - "lineGroupId": 73, - "indexInLine": 1, + "lineGroupId": 46, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2281, - "time": 0.45679939894815924, + "noteOrder": 1682, + "time": 0.33658903080390684, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -2752,14 +2752,1233 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 55, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1826, + "time": 0.3654395191585274, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 55, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1850, + "time": 0.3702479338842975, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1874, + "time": 0.37505634861006765, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 57, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1898, + "time": 0.37986476333583774, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1922, + "time": 0.38467317806160783, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1934, + "time": 0.3870773854244929, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1934, + "time": 0.3870773854244929, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1946, + "time": 0.38948159278737793, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1958, + "time": 0.391885800150263, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 60, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1958, + "time": 0.391885800150263, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1970, + "time": 0.394290007513148, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1982, + "time": 0.39669421487603307, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1982, + "time": 0.39669421487603307, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2018, + "time": 0.40390683696468815, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2042, + "time": 0.40871525169045836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2066, + "time": 0.41352366641622845, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2090, + "time": 0.41833208114199855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2114, + "time": 0.4231404958677686, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2126, + "time": 0.42554470323065363, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2126, + "time": 0.42554470323065363, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2138, + "time": 0.4279489105935387, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2150, + "time": 0.4303531179564237, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2150, + "time": 0.4303531179564237, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2162, + "time": 0.43275732531930877, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2174, + "time": 0.4351615326821938, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2174, + "time": 0.4351615326821938, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2210, + "time": 0.44237415477084896, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2234, + "time": 0.4471825694966191, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2258, + "time": 0.4519909842223892, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 73, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2282, + "time": 0.4567993989481593, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2306, + "time": 0.4616078136739294, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2330, + "time": 0.4664162283996995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2354, + "time": 0.4712246431254696, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2378, + "time": 0.47603305785123967, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.4808414725770098, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2451, + "time": 0.49045830202855, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2402, + "time": 0.4808414725770098, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2451, + "time": 0.49045830202855, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2595, + "time": 0.5193087903831706, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2643, + "time": 0.5289256198347108, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 88, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2691, + "time": 0.538542449286251, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2691, + "time": 0.538542449286251, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2739, + "time": 0.5481592787377911, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2787, + "time": 0.5577761081893313, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2787, + "time": 0.5577761081893313, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2835, + "time": 0.5673929376408715, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2883, + "time": 0.5770097670924117, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2979, + "time": 0.5962434259954922, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3003, + "time": 0.6010518407212623, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3075, + "time": 0.6154770848985724, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3075, + "time": 0.6154770848985724, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3099, + "time": 0.6202854996243427, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 99, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3171, + "time": 0.6347107438016529, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, - "time": 0.4616078136739294, + "noteOrder": 3171, + "time": 0.6347107438016529, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2776,11 +3995,34 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 1, + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3183, + "time": 0.637114951164538, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2329, - "time": 0.46641622839969943, + "noteOrder": 3183, + "time": 0.637114951164538, "position": { "x": 6, "y": 0 @@ -2799,13 +4041,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 104, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2353, - "time": 0.4712246431254696, + "noteOrder": 3195, + "time": 0.639519158527423, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2822,11 +4064,34 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 104, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2377, - "time": 0.47603305785123967, + "noteOrder": 3207, + "time": 0.6419233658903081, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3207, + "time": 0.6419233658903081, "position": { "x": 4, "y": 0 @@ -2845,11 +4110,80 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 105, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 3219, + "time": 0.6443275732531931, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3231, + "time": 0.6467317806160782, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3231, + "time": 0.6467317806160782, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3243, + "time": 0.6491359879789632, "position": { "x": 3, "y": 0 @@ -2868,11 +4202,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2449, - "time": 0.49045830202854995, + "noteOrder": 3255, + "time": 0.6515401953418483, "position": { "x": 3, "y": 0 @@ -2891,11 +4225,34 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3255, + "time": 0.6515401953418483, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2401, - "time": 0.4808414725770097, + "noteOrder": 3363, + "time": 0.6731780616078137, "position": { "x": 7, "y": 0 @@ -2914,11 +4271,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 111, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2449, - "time": 0.49045830202854995, + "noteOrder": 3375, + "time": 0.6755822689706987, "position": { "x": 7, "y": 0 @@ -2937,13 +4294,36 @@ "isPlayAudio": false }, { - "lineGroupId": 88, - "indexInLine": 0, + "lineGroupId": 111, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2593, - "time": 0.5193087903831706, + "noteOrder": 3375, + "time": 0.6755822689706987, "position": { - "x": 3, + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3387, + "time": 0.6779864763335838, + "position": { + "x": 7, "y": 0 }, "position2D": { @@ -2960,13 +4340,59 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3399, + "time": 0.6803906836964688, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3399, + "time": 0.6803906836964688, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, "indexInLine": 1, "isSliding": false, - "noteOrder": 2641, - "time": 0.5289256198347106, + "noteOrder": 3460, + "time": 0.6924117205108941, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2983,13 +4409,36 @@ "isPlayAudio": false }, { - "lineGroupId": 88, + "lineGroupId": 115, "indexInLine": 2, "isSliding": false, - "noteOrder": 2689, - "time": 0.538542449286251, + "noteOrder": 3472, + "time": 0.6948159278737791, "position": { - "x": 5, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 115, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3472, + "time": 0.6948159278737791, + "position": { + "x": 6, "y": 0 }, "position2D": { @@ -3006,11 +4455,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, - "time": 0.538542449286251, + "noteOrder": 3484, + "time": 0.6972201352366642, "position": { "x": 7, "y": 0 @@ -3029,13 +4478,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2737, - "time": 0.5481592787377911, + "noteOrder": 3496, + "time": 0.6996243425995492, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3052,13 +4501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 2, + "lineGroupId": 116, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2785, - "time": 0.5577761081893313, + "noteOrder": 3496, + "time": 0.6996243425995492, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3075,13 +4524,13 @@ "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, - "time": 0.5577761081893313, + "noteOrder": 3556, + "time": 0.7116453794139744, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3093,18 +4542,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2833, - "time": 0.5673929376408715, + "noteOrder": 3604, + "time": 0.7212622088655146, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3116,18 +4565,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 2, + "lineGroupId": 121, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2881, - "time": 0.5770097670924117, + "noteOrder": 3604, + "time": 0.7212622088655146, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3144,13 +4593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 3652, + "time": 0.7308790383170548, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3162,16 +4611,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 123, "indexInLine": 1, "isSliding": false, - "noteOrder": 3002, - "time": 0.6010518407212622, + "noteOrder": 3652, + "time": 0.7308790383170548, "position": { "x": 7, "y": 0 @@ -3190,13 +4639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 123, "indexInLine": 2, "isSliding": false, - "noteOrder": 3074, - "time": 0.6154770848985726, + "noteOrder": 3664, + "time": 0.7332832456799399, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3213,13 +4662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3074, - "time": 0.6154770848985726, + "noteOrder": 3664, + "time": 0.7332832456799399, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3231,16 +4680,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 124, "indexInLine": 1, "isSliding": false, - "noteOrder": 3098, - "time": 0.6202854996243425, + "noteOrder": 3676, + "time": 0.7356874530428249, "position": { "x": 3, "y": 0 @@ -3259,13 +4708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 124, "indexInLine": 2, "isSliding": false, - "noteOrder": 3170, - "time": 0.6347107438016528, + "noteOrder": 3688, + "time": 0.73809166040571, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3282,13 +4731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3170, - "time": 0.6347107438016528, + "noteOrder": 3688, + "time": 0.73809166040571, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3300,16 +4749,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3194, - "time": 0.639519158527423, + "noteOrder": 3940, + "time": 0.788580015026296, "position": { "x": 3, "y": 0 @@ -3328,13 +4777,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3218, - "time": 0.6443275732531931, + "noteOrder": 4036, + "time": 0.8078136739293763, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3346,18 +4795,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3242, - "time": 0.6491359879789631, + "noteOrder": 3940, + "time": 0.788580015026296, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3369,16 +4818,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3362, - "time": 0.6731780616078136, + "noteOrder": 4036, + "time": 0.8078136739293763, "position": { "x": 7, "y": 0 @@ -3397,13 +4846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3386, - "time": 0.6779864763335838, + "noteOrder": 4132, + "time": 0.8270473328324569, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3420,13 +4869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3458, - "time": 0.6924117205108941, + "noteOrder": 4144, + "time": 0.829451540195342, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3443,13 +4892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 139, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3482, - "time": 0.6972201352366642, + "noteOrder": 4144, + "time": 0.829451540195342, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3461,18 +4910,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, - "time": 0.7116453794139744, + "noteOrder": 4156, + "time": 0.831855747558227, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3489,13 +4938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 140, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3602, - "time": 0.7212622088655146, + "noteOrder": 4168, + "time": 0.834259954921112, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3512,13 +4961,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 140, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3602, - "time": 0.7212622088655146, + "noteOrder": 4168, + "time": 0.834259954921112, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3530,16 +4979,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 143, "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.7308790383170549, + "noteOrder": 4228, + "time": 0.8462809917355372, "position": { "x": 3, "y": 0 @@ -3553,18 +5002,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3650, - "time": 0.7308790383170549, + "noteOrder": 4240, + "time": 0.8486851990984222, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3581,13 +5030,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3674, - "time": 0.7356874530428249, + "noteOrder": 4240, + "time": 0.8486851990984222, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3599,16 +5048,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.7885800150262959, + "noteOrder": 4252, + "time": 0.8510894064613073, "position": { "x": 3, "y": 0 @@ -3627,11 +5076,11 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 1, + "lineGroupId": 144, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.8078136739293764, + "noteOrder": 4264, + "time": 0.8534936138241923, "position": { "x": 3, "y": 0 @@ -3650,13 +5099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 144, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3938, - "time": 0.7885800150262959, + "noteOrder": 4264, + "time": 0.8534936138241923, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3668,18 +5117,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 4034, - "time": 0.8078136739293764, + "noteOrder": 4324, + "time": 0.8655146506386175, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3691,16 +5140,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4130, - "time": 0.8270473328324568, + "noteOrder": 4348, + "time": 0.8703230653643876, "position": { "x": 3, "y": 0 @@ -3719,13 +5168,13 @@ "isPlayAudio": false }, { - "lineGroupId": 140, - "indexInLine": 0, + "lineGroupId": 147, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4154, - "time": 0.8318557475582268, + "noteOrder": 4372, + "time": 0.8751314800901577, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3737,18 +5186,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.8462809917355373, + "noteOrder": 4372, + "time": 0.8751314800901577, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3765,13 +5214,13 @@ "isPlayAudio": false }, { - "lineGroupId": 144, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4250, - "time": 0.8510894064613073, + "noteOrder": 4397, + "time": 0.8799398948159278, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3783,18 +5232,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4322, - "time": 0.8655146506386175, + "noteOrder": 4421, + "time": 0.8847483095416979, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3806,16 +5255,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 4346, - "time": 0.8703230653643876, + "noteOrder": 4565, + "time": 0.9135987978963186, "position": { "x": 3, "y": 0 @@ -3834,13 +5283,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 158, "indexInLine": 2, "isSliding": false, - "noteOrder": 4370, - "time": 0.8751314800901578, + "noteOrder": 4577, + "time": 0.9160030052592036, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3857,13 +5306,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4370, - "time": 0.8751314800901578, + "noteOrder": 4577, + "time": 0.9160030052592036, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3875,16 +5324,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 159, "indexInLine": 1, "isSliding": false, - "noteOrder": 4394, - "time": 0.8799398948159278, + "noteOrder": 4589, + "time": 0.9184072126220887, "position": { "x": 7, "y": 0 @@ -3903,13 +5352,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 159, "indexInLine": 2, "isSliding": false, - "noteOrder": 4418, - "time": 0.8847483095416979, + "noteOrder": 4601, + "time": 0.9208114199849737, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3925,37 +5374,14 @@ "postionOffset": null, "isPlayAudio": false }, - { - "lineGroupId": 158, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 4562, - "time": 0.9135987978963185, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, { "lineGroupId": 159, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4586, - "time": 0.9184072126220886, + "noteOrder": 4601, + "time": 0.9208114199849737, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3973,9 +5399,9 @@ }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 6, @@ -3996,9 +5422,9 @@ }, { "lineGroupId": 162, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4724, + "noteOrder": 4727, "time": 0.9460555972952667, "position": { "x": 6, @@ -4019,9 +5445,9 @@ }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4742, + "noteOrder": 4745, "time": 0.9496619083395943, "position": { "x": 4, @@ -4042,9 +5468,9 @@ }, { "lineGroupId": 164, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4760, + "noteOrder": 4763, "time": 0.9532682193839218, "position": { "x": 4, diff --git "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1b.json" "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1b.json" index e77abcec..6236b79a 100644 --- "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1b.json" +++ "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/297_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 480, - "time": 0.09616829451540194, + "time": 0.09616829451540196, "position": { "x": 7, "y": 0 @@ -33,8 +33,8 @@ "isPlayAudio": false }, { - "noteOrder": 528, - "time": 0.10578512396694216, + "noteOrder": 529, + "time": 0.10578512396694215, "position": { "x": 6, "y": 0 @@ -53,7 +53,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 577, "time": 0.11540195341848235, "position": { "x": 5, @@ -73,7 +73,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 625, "time": 0.12501878287002255, "position": { "x": 4, @@ -93,7 +93,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 673, "time": 0.13463561232156274, "position": { "x": 3, @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 697, "time": 0.13944402704733283, "position": { "x": 4, @@ -133,7 +133,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 721, "time": 0.14425244177310292, "position": { "x": 3, @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 744, - "time": 0.14906085649887302, + "noteOrder": 745, + "time": 0.14906085649887305, "position": { "x": 4, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 768, - "time": 0.15386927122464314, + "noteOrder": 769, + "time": 0.1538692712246431, "position": { "x": 7, "y": 0 @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 792, - "time": 0.1586776859504132, + "noteOrder": 793, + "time": 0.15867768595041323, "position": { "x": 6, "y": 0 @@ -213,7 +213,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 817, "time": 0.16348610067618333, "position": { "x": 7, @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 840, - "time": 0.1682945154019534, + "noteOrder": 841, + "time": 0.16829451540195342, "position": { "x": 6, "y": 0 @@ -253,7 +253,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 865, "time": 0.17310293012772351, "position": { "x": 4, @@ -273,7 +273,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 889, "time": 0.1779113448534936, "position": { "x": 6, @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 912, - "time": 0.18271975957926373, + "noteOrder": 913, + "time": 0.1827197595792637, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 936, - "time": 0.1875281743050338, + "noteOrder": 937, + "time": 0.18752817430503382, "position": { "x": 6, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1057, - "time": 0.21157024793388432, + "time": 0.2115702479338843, "position": { "x": 5, "y": 0 @@ -394,7 +394,7 @@ }, { "noteOrder": 1201, - "time": 0.24042073628850485, + "time": 0.2404207362885049, "position": { "x": 3, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1225, - "time": 0.24522915101427498, + "time": 0.245229151014275, "position": { "x": 7, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1489, - "time": 0.29812171299774604, + "noteOrder": 1490, + "time": 0.2981217129977461, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1537, - "time": 0.3077385424492863, + "noteOrder": 1538, + "time": 0.3077385424492862, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1585, - "time": 0.3173553719008264, + "noteOrder": 1586, + "time": 0.31735537190082647, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1609, + "noteOrder": 1610, "time": 0.32216378662659656, "position": { "x": 3, @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1729, + "noteOrder": 1730, "time": 0.34620586025544703, "position": { "x": 4, @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1753, - "time": 0.35101427498121707, + "noteOrder": 1754, + "time": 0.3510142749812171, "position": { "x": 6, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1778, "time": 0.3558226897069872, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 1921, - "time": 0.3846731780616078, + "noteOrder": 1922, + "time": 0.38467317806160783, "position": { "x": 6, "y": 0 @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 1945, + "noteOrder": 1946, "time": 0.38948159278737793, "position": { "x": 4, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1969, - "time": 0.39429000751314797, + "noteOrder": 1970, + "time": 0.394290007513148, "position": { "x": 6, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.42314049586776864, + "noteOrder": 2114, + "time": 0.4231404958677686, "position": { "x": 4, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2138, "time": 0.4279489105935387, "position": { "x": 6, @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2161, + "noteOrder": 2162, "time": 0.43275732531930877, "position": { "x": 4, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2258, "time": 0.4519909842223892, "position": { "x": 4, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2353, + "noteOrder": 2354, "time": 0.4712246431254696, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2497, + "noteOrder": 2499, "time": 0.5000751314800902, "position": { "x": 6, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2521, - "time": 0.5048835462058602, + "noteOrder": 2523, + "time": 0.5048835462058603, "position": { "x": 4, "y": 0 @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2978, - "time": 0.5962434259954921, + "noteOrder": 2979, + "time": 0.5962434259954922, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3002, - "time": 0.6010518407212622, + "noteOrder": 3003, + "time": 0.6010518407212623, "position": { "x": 6, "y": 0 @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3026, + "noteOrder": 3027, "time": 0.6058602554470323, "position": { "x": 4, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3050, + "noteOrder": 3051, "time": 0.6106686701728024, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.6154770848985726, + "noteOrder": 3075, + "time": 0.6154770848985724, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3098, - "time": 0.6202854996243425, + "noteOrder": 3099, + "time": 0.6202854996243427, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 3122, - "time": 0.6250939143501126, + "noteOrder": 3123, + "time": 0.6250939143501127, "position": { "x": 6, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3146, + "noteOrder": 3147, "time": 0.6299023290758828, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3170, - "time": 0.6347107438016528, + "noteOrder": 3171, + "time": 0.6347107438016529, "position": { "x": 7, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3194, + "noteOrder": 3195, "time": 0.639519158527423, "position": { "x": 3, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.6443275732531931, "position": { "x": 6, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3219, "time": 0.6443275732531931, "position": { "x": 4, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.6491359879789631, + "noteOrder": 3243, + "time": 0.6491359879789632, "position": { "x": 6, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3242, - "time": 0.6491359879789631, + "noteOrder": 3243, + "time": 0.6491359879789632, "position": { "x": 4, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3362, - "time": 0.6731780616078136, + "noteOrder": 3363, + "time": 0.6731780616078137, "position": { "x": 6, "y": 0 @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3386, + "noteOrder": 3387, "time": 0.6779864763335838, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3458, + "noteOrder": 3460, "time": 0.6924117205108941, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3482, + "noteOrder": 3484, "time": 0.6972201352366642, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3578, - "time": 0.7164537941397446, + "noteOrder": 3580, + "time": 0.7164537941397445, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7260706235912847, "position": { "x": 5, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.7356874530428249, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.740495867768595, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3698, + "noteOrder": 3700, "time": 0.740495867768595, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.7453042824943652, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 3724, "time": 0.7453042824943652, "position": { "x": 6, @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 3890, + "noteOrder": 3892, "time": 0.7789631855747559, "position": { "x": 6, @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3914, - "time": 0.7837716003005258, + "noteOrder": 3916, + "time": 0.783771600300526, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4130, - "time": 0.8270473328324568, + "noteOrder": 4132, + "time": 0.8270473328324569, "position": { "x": 4, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 4154, - "time": 0.8318557475582268, + "noteOrder": 4156, + "time": 0.831855747558227, "position": { "x": 6, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4226, - "time": 0.8462809917355373, + "noteOrder": 4228, + "time": 0.8462809917355372, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.8510894064613073, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4418, + "noteOrder": 4421, "time": 0.8847483095416979, "position": { "x": 4, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4442, + "noteOrder": 4445, "time": 0.8895567242674681, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4466, + "noteOrder": 4469, "time": 0.8943651389932382, "position": { "x": 7, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4466, + "noteOrder": 4469, "time": 0.8943651389932382, "position": { "x": 3, @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.8991735537190082, + "noteOrder": 4493, + "time": 0.8991735537190083, "position": { "x": 4, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 4490, - "time": 0.8991735537190082, + "noteOrder": 4493, + "time": 0.8991735537190083, "position": { "x": 6, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4562, - "time": 0.9135987978963185, + "noteOrder": 4565, + "time": 0.9135987978963186, "position": { "x": 4, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4586, - "time": 0.9184072126220886, + "noteOrder": 4589, + "time": 0.9184072126220887, "position": { "x": 6, "y": 0 @@ -1636,10 +1636,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, - "time": 0.019233658903080392, + "time": 0.01923365890308039, "position": { "x": 6, "y": 0 @@ -1659,7 +1659,7 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 144, "time": 0.028850488354620587, @@ -1682,10 +1682,10 @@ }, { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 192, - "time": 0.038467317806160785, + "time": 0.03846731780616078, "position": { "x": 4, "y": 0 @@ -1705,10 +1705,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 240, - "time": 0.04808414725770097, + "time": 0.04808414725770098, "position": { "x": 4, "y": 0 @@ -1728,7 +1728,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 288, "time": 0.057700976709241174, @@ -1751,7 +1751,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 336, "time": 0.06731780616078137, @@ -1774,7 +1774,7 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1249, "time": 0.2500375657400451, @@ -1797,7 +1797,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1297, "time": 0.2596543951915853, @@ -1820,9 +1820,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1633, + "noteOrder": 1634, "time": 0.32697220135236665, "position": { "x": 7, @@ -1843,10 +1843,10 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1681, - "time": 0.3365890308039068, + "noteOrder": 1682, + "time": 0.33658903080390684, "position": { "x": 4, "y": 0 @@ -1866,10 +1866,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1825, - "time": 0.36543951915852746, + "noteOrder": 1826, + "time": 0.3654395191585274, "position": { "x": 6, "y": 0 @@ -1889,10 +1889,10 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1873, - "time": 0.3750563486100676, + "noteOrder": 1874, + "time": 0.37505634861006765, "position": { "x": 6, "y": 0 @@ -1912,10 +1912,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2017, - "time": 0.4039068369646882, + "noteOrder": 2018, + "time": 0.40390683696468815, "position": { "x": 4, "y": 0 @@ -1935,10 +1935,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2065, - "time": 0.4135236664162284, + "noteOrder": 2066, + "time": 0.41352366641622845, "position": { "x": 4, "y": 0 @@ -1958,9 +1958,9 @@ }, { "lineGroupId": 50, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2209, + "noteOrder": 2210, "time": 0.44237415477084896, "position": { "x": 4, @@ -1979,11 +1979,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 50, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2234, + "time": 0.4471825694966191, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 50, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2234, + "time": 0.4471825694966191, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2305, + "noteOrder": 2306, "time": 0.4616078136739294, "position": { "x": 4, @@ -2002,11 +2048,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2330, + "time": 0.4664162283996995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2330, + "time": 0.4664162283996995, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 58, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2593, + "noteOrder": 2595, "time": 0.5193087903831706, "position": { "x": 6, @@ -2027,10 +2119,10 @@ }, { "lineGroupId": 58, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2641, - "time": 0.5289256198347106, + "noteOrder": 2643, + "time": 0.5289256198347108, "position": { "x": 5, "y": 0 @@ -2050,9 +2142,9 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2689, + "noteOrder": 2691, "time": 0.538542449286251, "position": { "x": 4, @@ -2073,9 +2165,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2737, + "noteOrder": 2739, "time": 0.5481592787377911, "position": { "x": 5, @@ -2096,9 +2188,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2785, + "noteOrder": 2787, "time": 0.5577761081893313, "position": { "x": 6, @@ -2119,9 +2211,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2833, + "noteOrder": 2835, "time": 0.5673929376408715, "position": { "x": 5, @@ -2142,9 +2234,9 @@ }, { "lineGroupId": 80, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3410, + "noteOrder": 3412, "time": 0.6827948910593539, "position": { "x": 7, @@ -2165,9 +2257,9 @@ }, { "lineGroupId": 80, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3434, + "noteOrder": 3436, "time": 0.687603305785124, "position": { "x": 7, @@ -2188,10 +2280,10 @@ }, { "lineGroupId": 83, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3506, - "time": 0.7020285499624341, + "noteOrder": 3508, + "time": 0.7020285499624342, "position": { "x": 3, "y": 0 @@ -2211,9 +2303,9 @@ }, { "lineGroupId": 83, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3530, + "noteOrder": 3532, "time": 0.7068369646882043, "position": { "x": 3, @@ -2234,9 +2326,9 @@ }, { "lineGroupId": 84, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3554, + "noteOrder": 3556, "time": 0.7116453794139744, "position": { "x": 6, @@ -2257,10 +2349,10 @@ }, { "lineGroupId": 84, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3578, - "time": 0.7164537941397446, + "noteOrder": 3580, + "time": 0.7164537941397445, "position": { "x": 6, "y": 0 @@ -2280,9 +2372,9 @@ }, { "lineGroupId": 86, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3602, + "noteOrder": 3604, "time": 0.7212622088655146, "position": { "x": 4, @@ -2303,9 +2395,9 @@ }, { "lineGroupId": 86, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3626, + "noteOrder": 3628, "time": 0.7260706235912847, "position": { "x": 4, @@ -2326,10 +2418,10 @@ }, { "lineGroupId": 88, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3650, - "time": 0.7308790383170549, + "noteOrder": 3652, + "time": 0.7308790383170548, "position": { "x": 6, "y": 0 @@ -2349,9 +2441,9 @@ }, { "lineGroupId": 88, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3674, + "noteOrder": 3676, "time": 0.7356874530428249, "position": { "x": 6, @@ -2372,9 +2464,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3794, + "noteOrder": 3796, "time": 0.7597295266716755, "position": { "x": 7, @@ -2395,10 +2487,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3842, - "time": 0.7693463561232156, + "noteOrder": 3844, + "time": 0.7693463561232157, "position": { "x": 6, "y": 0 @@ -2418,10 +2510,10 @@ }, { "lineGroupId": 99, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.7885800150262959, + "noteOrder": 3940, + "time": 0.788580015026296, "position": { "x": 6, "y": 0 @@ -2441,10 +2533,10 @@ }, { "lineGroupId": 99, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.8078136739293764, + "noteOrder": 4036, + "time": 0.8078136739293763, "position": { "x": 6, "y": 0 @@ -2464,10 +2556,10 @@ }, { "lineGroupId": 100, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3938, - "time": 0.7885800150262959, + "noteOrder": 3940, + "time": 0.788580015026296, "position": { "x": 4, "y": 0 @@ -2487,10 +2579,10 @@ }, { "lineGroupId": 100, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4034, - "time": 0.8078136739293764, + "noteOrder": 4036, + "time": 0.8078136739293763, "position": { "x": 4, "y": 0 @@ -2510,10 +2602,10 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4178, - "time": 0.836664162283997, + "noteOrder": 4180, + "time": 0.8366641622839971, "position": { "x": 3, "y": 0 @@ -2533,9 +2625,9 @@ }, { "lineGroupId": 105, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4202, + "noteOrder": 4204, "time": 0.8414725770097671, "position": { "x": 3, @@ -2556,9 +2648,9 @@ }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4274, + "noteOrder": 4276, "time": 0.8558978211870774, "position": { "x": 7, @@ -2579,10 +2671,10 @@ }, { "lineGroupId": 108, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4298, - "time": 0.8607062359128476, + "noteOrder": 4300, + "time": 0.8607062359128475, "position": { "x": 7, "y": 0 @@ -2602,9 +2694,9 @@ }, { "lineGroupId": 109, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4322, + "noteOrder": 4324, "time": 0.8655146506386175, "position": { "x": 4, @@ -2623,12 +2715,104 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 109, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4348, + "time": 0.8703230653643876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 109, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4348, + "time": 0.8703230653643876, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4372, + "time": 0.8751314800901577, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 110, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4397, + "time": 0.8799398948159278, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 110, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4370, - "time": 0.8751314800901578, + "noteOrder": 4397, + "time": 0.8799398948159278, "position": { "x": 6, "y": 0 @@ -2648,9 +2832,9 @@ }, { "lineGroupId": 122, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 7, @@ -2671,10 +2855,10 @@ }, { "lineGroupId": 122, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4790, - "time": 0.9592787377911344, + "noteOrder": 4793, + "time": 0.9592787377911346, "position": { "x": 7, "y": 0 @@ -2694,9 +2878,9 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4706, + "noteOrder": 4709, "time": 0.9424492862509392, "position": { "x": 3, @@ -2717,10 +2901,10 @@ }, { "lineGroupId": 123, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4790, - "time": 0.9592787377911344, + "noteOrder": 4793, + "time": 0.9592787377911346, "position": { "x": 3, "y": 0 diff --git "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/info.json" "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/info.json" index 2e02d8b3..273498ec 100644 --- "a/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/info.json" +++ "b/tracks/\347\264\205\350\223\256\350\217\257 ANOTHER EDITION/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u7d05\u84ee\u83ef ANOTHER EDITION", - "SongLength": "102.478367", + "SongLength": "92.525714", "SongAuthorName": null, "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\347\276\244\351\235\222/320_difficulty_1a.json" "b/tracks/\347\276\244\351\235\222/320_difficulty_1a.json" index cbbdc9c8..4900c753 100644 --- "a/tracks/\347\276\244\351\235\222/320_difficulty_1a.json" +++ "b/tracks/\347\276\244\351\235\222/320_difficulty_1a.json" @@ -74,7 +74,7 @@ }, { "noteOrder": 243, - "time": 0.03774029956362778, + "time": 0.03774029956362779, "position": { "x": 7, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 267, - "time": 0.04151432951999057, + "time": 0.04151432951999056, "position": { "x": 4, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 291, + "noteOrder": 292, "time": 0.04528835947635334, "position": { "x": 5, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 461, - "time": 0.07170656917089278, + "noteOrder": 462, + "time": 0.0717065691708928, "position": { "x": 5, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 486, - "time": 0.07548059912725556, + "time": 0.07548059912725558, "position": { "x": 3, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 486, - "time": 0.07548059912725556, + "time": 0.07548059912725558, "position": { "x": 6, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 704, - "time": 0.10944686873452057, + "noteOrder": 705, + "time": 0.10944686873452059, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 753, - "time": 0.11699492864724613, + "time": 0.11699492864724614, "position": { "x": 7, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 899, - "time": 0.1396391083854228, + "time": 0.13963910838542282, "position": { "x": 6, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 923, - "time": 0.14341313834178557, + "time": 0.1434131383417856, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 947, + "noteOrder": 948, "time": 0.14718716829814835, "position": { "x": 4, @@ -394,7 +394,7 @@ }, { "noteOrder": 972, - "time": 0.15096119825451113, + "time": 0.15096119825451115, "position": { "x": 3, "y": 0 @@ -433,8 +433,8 @@ "isPlayAudio": false }, { - "noteOrder": 1044, - "time": 0.1622832881235995, + "noteOrder": 1045, + "time": 0.16228328812359946, "position": { "x": 6, "y": 0 @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1117, - "time": 0.1736053779926878, + "noteOrder": 1118, + "time": 0.17360537799268783, "position": { "x": 5, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1214, - "time": 0.1887014978181389, + "noteOrder": 1215, + "time": 0.18870149781813894, "position": { "x": 7, "y": 0 @@ -573,7 +573,7 @@ "isPlayAudio": false }, { - "noteOrder": 1360, + "noteOrder": 1361, "time": 0.2113456775563156, "position": { "x": 5, @@ -614,7 +614,7 @@ }, { "noteOrder": 1506, - "time": 0.23398985729449226, + "time": 0.2339898572944923, "position": { "x": 3, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1530, + "noteOrder": 1531, "time": 0.23776388725085504, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1554, + "noteOrder": 1555, "time": 0.24153791720721782, "position": { "x": 7, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 1603, - "time": 0.24908597711994337, + "noteOrder": 1604, + "time": 0.2490859771199434, "position": { "x": 7, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 1627, + "noteOrder": 1628, "time": 0.2528600070763062, "position": { "x": 7, @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1676, - "time": 0.26040806698903174, + "noteOrder": 1677, + "time": 0.2604080669890317, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1700, - "time": 0.26418209694539446, + "noteOrder": 1701, + "time": 0.2641820969453945, "position": { "x": 3, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1724, - "time": 0.26795612690175724, + "noteOrder": 1725, + "time": 0.2679561269017573, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1773, + "noteOrder": 1774, "time": 0.2755041868144828, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 1797, - "time": 0.2792782167708456, + "noteOrder": 1798, + "time": 0.27927821677084563, "position": { "x": 4, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1870, + "noteOrder": 1871, "time": 0.29060030663993397, "position": { "x": 4, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 1968, "time": 0.3056964264653851, "position": { "x": 4, @@ -894,7 +894,7 @@ }, { "noteOrder": 1992, - "time": 0.3094704564217478, + "time": 0.30947045642174786, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 2017, "time": 0.3132444863781106, "position": { "x": 5, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2064, - "time": 0.32079254629083614, + "noteOrder": 2065, + "time": 0.3207925462908362, "position": { "x": 5, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.324566576247199, + "noteOrder": 2090, + "time": 0.3245665762471989, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.3283406062035617, + "noteOrder": 2114, + "time": 0.32834060620356176, "position": { "x": 4, "y": 0 @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.35475881589810115, "position": { "x": 6, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2380, - "time": 0.36985493572355227, + "noteOrder": 2381, + "time": 0.3698549357235523, "position": { "x": 4, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2477, + "noteOrder": 2478, "time": 0.3849510555490034, "position": { "x": 6, @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2574, + "noteOrder": 2576, "time": 0.40004717537445456, "position": { "x": 5, @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 2599, + "noteOrder": 2600, "time": 0.4038212053308173, "position": { "x": 7, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2647, + "noteOrder": 2648, "time": 0.41136926524354284, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2696, - "time": 0.4189173251562684, + "noteOrder": 2697, + "time": 0.41891732515626845, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.426465385068994, "position": { "x": 4, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2793, + "noteOrder": 2794, "time": 0.4340134449817195, "position": { "x": 3, @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 2817, - "time": 0.4377874749380823, + "noteOrder": 2818, + "time": 0.43778747493808234, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2842, + "noteOrder": 2843, "time": 0.44156150489444507, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2866, + "noteOrder": 2867, "time": 0.44533553485080785, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2890, - "time": 0.4491095648071706, + "noteOrder": 2891, + "time": 0.4491095648071707, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3012, - "time": 0.4679797145889845, + "noteOrder": 3013, + "time": 0.4679797145889846, "position": { "x": 6, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3037, "time": 0.4717537445453473, "position": { "x": 7, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3061, "time": 0.4755277745017101, "position": { "x": 4, @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3085, - "time": 0.47930180445807286, + "noteOrder": 3086, + "time": 0.4793018044580729, "position": { "x": 3, "y": 0 @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3109, + "noteOrder": 3110, "time": 0.48307583441443563, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3133, - "time": 0.4868498643707984, + "noteOrder": 3134, + "time": 0.48684986437079847, "position": { "x": 7, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3157, + "noteOrder": 3159, "time": 0.4906238943271612, "position": { "x": 4, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3182, - "time": 0.494397924283524, + "noteOrder": 3183, + "time": 0.49439792428352397, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3206, - "time": 0.49817195423988675, + "noteOrder": 3207, + "time": 0.4981719542398868, "position": { "x": 7, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3230, - "time": 0.5019459841962495, + "noteOrder": 3232, + "time": 0.5019459841962496, "position": { "x": 6, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3255, + "noteOrder": 3256, "time": 0.5057200141526124, "position": { "x": 4, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3279, - "time": 0.509494044108975, + "noteOrder": 3280, + "time": 0.5094940441089751, "position": { "x": 3, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3303, + "noteOrder": 3304, "time": 0.5132680740653379, "position": { "x": 3, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3303, + "noteOrder": 3304, "time": 0.5132680740653379, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3352, - "time": 0.5208161339780635, + "noteOrder": 3353, + "time": 0.5208161339780634, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3376, - "time": 0.5245901639344261, + "noteOrder": 3377, + "time": 0.5245901639344263, "position": { "x": 5, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3425, + "noteOrder": 3426, "time": 0.5321382238471518, "position": { "x": 3, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3473, + "noteOrder": 3475, "time": 0.5396862837598773, "position": { "x": 4, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3497, + "noteOrder": 3499, "time": 0.5434603137162402, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5472343436726029, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3547, "time": 0.5510083736289656, "position": { "x": 4, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3546, + "noteOrder": 3547, "time": 0.5510083736289656, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3983, - "time": 0.6189409128434956, + "noteOrder": 3985, + "time": 0.6189409128434957, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4007, - "time": 0.6227149427998584, + "noteOrder": 4009, + "time": 0.6227149427998585, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 4033, "time": 0.6264889727562212, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 4058, "time": 0.6302630027125841, "position": { "x": 4, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4129, - "time": 0.6415850925816723, + "noteOrder": 4131, + "time": 0.6415850925816724, "position": { "x": 4, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4153, + "noteOrder": 4155, "time": 0.6453591225380352, "position": { "x": 3, @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6529071824507606, + "noteOrder": 4203, + "time": 0.6529071824507607, "position": { "x": 3, "y": 0 @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.6604552423634862, "position": { "x": 5, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4301, "time": 0.6680033022762119, "position": { "x": 6, @@ -1873,7 +1873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.6755513621889373, "position": { "x": 7, @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4372, + "noteOrder": 4374, "time": 0.6793253921453002, "position": { "x": 6, @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4398, "time": 0.683099422101663, "position": { "x": 4, @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.6868734520580256, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6906474820143884, + "noteOrder": 4446, + "time": 0.6906474820143885, "position": { "x": 4, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4760, - "time": 0.7397098714471045, + "noteOrder": 4762, + "time": 0.7397098714471046, "position": { "x": 3, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4785, - "time": 0.7434839014034673, + "noteOrder": 4787, + "time": 0.7434839014034674, "position": { "x": 5, "y": 0 @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4809, + "noteOrder": 4811, "time": 0.7472579313598301, "position": { "x": 6, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4809, + "noteOrder": 4811, "time": 0.7472579313598301, "position": { "x": 4, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 4833, + "noteOrder": 4835, "time": 0.751031961316193, "position": { "x": 7, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4833, + "noteOrder": 4835, "time": 0.751031961316193, "position": { "x": 3, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 4906, - "time": 0.7623540511852812, + "noteOrder": 4908, + "time": 0.7623540511852813, "position": { "x": 6, "y": 0 @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7661280811416441, "position": { "x": 7, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4979, + "noteOrder": 4981, "time": 0.7736761410543695, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5028, + "noteOrder": 5030, "time": 0.7812242009670951, "position": { "x": 6, @@ -2173,7 +2173,7 @@ "isPlayAudio": false }, { - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.8227385304870857, "position": { "x": 3, @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5319, - "time": 0.8265125604434485, + "noteOrder": 5321, + "time": 0.8265125604434486, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5368, - "time": 0.8340606203561741, + "noteOrder": 5370, + "time": 0.834060620356174, "position": { "x": 7, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5416, - "time": 0.8416086802688996, + "noteOrder": 5418, + "time": 0.8416086802688997, "position": { "x": 6, "y": 0 @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5440, + "noteOrder": 5443, "time": 0.8453827102252623, "position": { "x": 4, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5465, - "time": 0.8491567401816251, + "noteOrder": 5467, + "time": 0.8491567401816252, "position": { "x": 6, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5489, + "noteOrder": 5491, "time": 0.852930770137988, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5613, "time": 0.8718009199198018, "position": { "x": 5, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5635, - "time": 0.8755749498761646, + "noteOrder": 5637, + "time": 0.8755749498761647, "position": { "x": 4, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5659, + "noteOrder": 5661, "time": 0.8793489798325274, "position": { "x": 4, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5756, + "noteOrder": 5758, "time": 0.8944450996579785, "position": { "x": 5, @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 5780, - "time": 0.8982191296143412, + "noteOrder": 5783, + "time": 0.8982191296143414, "position": { "x": 6, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5805, - "time": 0.901993159570704, + "noteOrder": 5807, + "time": 0.9019931595707041, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5878, - "time": 0.9133152494397924, + "noteOrder": 5880, + "time": 0.9133152494397925, "position": { "x": 7, "y": 0 @@ -2453,7 +2453,7 @@ "isPlayAudio": false }, { - "noteOrder": 5999, + "noteOrder": 6001, "time": 0.9321853992216063, "position": { "x": 5, @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6023, - "time": 0.935959429177969, + "noteOrder": 6026, + "time": 0.9359594291779691, "position": { "x": 6, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 6050, "time": 0.9397334591343318, "position": { "x": 6, @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6120, + "noteOrder": 6123, "time": 0.9510555490034202, "position": { "x": 7, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6193, - "time": 0.9623776388725085, + "noteOrder": 6196, + "time": 0.9623776388725086, "position": { "x": 6, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 6218, + "noteOrder": 6220, "time": 0.9661516688288713, "position": { "x": 4, @@ -2576,10 +2576,33 @@ "lineNodes": [ { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 535, + "time": 0.08302865903998112, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 15, + "indexInLine": 2, "isSliding": false, - "noteOrder": 534, - "time": 0.08302865903998113, + "noteOrder": 559, + "time": 0.08680268899634391, "position": { "x": 7, "y": 0 @@ -2597,9 +2620,32 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 15, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 559, + "time": 0.08680268899634391, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.09057671895270668, @@ -2620,12 +2666,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 16, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 607, + "time": 0.09435074890906947, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 16, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 607, + "time": 0.09435074890906947, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 17, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 632, + "time": 0.09812477886543224, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 631, - "time": 0.09812477886543225, + "noteOrder": 656, + "time": 0.10189880882179503, "position": { "x": 7, "y": 0 @@ -2643,11 +2758,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 17, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 656, + "time": 0.10189880882179503, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 777, + "noteOrder": 778, "time": 0.12076895860360891, "position": { "x": 4, @@ -2668,7 +2806,7 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 826, "time": 0.12831701851633448, @@ -2691,9 +2829,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 777, + "noteOrder": 778, "time": 0.12076895860360891, "position": { "x": 7, @@ -2714,7 +2852,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 826, "time": 0.12831701851633448, @@ -2737,9 +2875,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 874, + "noteOrder": 875, "time": 0.13586507842906004, "position": { "x": 7, @@ -2760,10 +2898,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 899, - "time": 0.1396391083854228, + "time": 0.13963910838542282, "position": { "x": 7, "y": 0 @@ -2783,10 +2921,10 @@ }, { "lineGroupId": 24, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 972, - "time": 0.15096119825451113, + "time": 0.15096119825451115, "position": { "x": 4, "y": 0 @@ -2806,10 +2944,10 @@ }, { "lineGroupId": 31, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1069, - "time": 0.16605731807996227, + "time": 0.16605731807996224, "position": { "x": 3, "y": 0 @@ -2829,7 +2967,7 @@ }, { "lineGroupId": 31, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1093, "time": 0.16983134803632505, @@ -2852,7 +2990,7 @@ }, { "lineGroupId": 31, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1166, "time": 0.18115343790541336, @@ -2875,10 +3013,10 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1263, - "time": 0.1962495577308645, + "time": 0.19624955773086447, "position": { "x": 5, "y": 0 @@ -2898,9 +3036,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1287, + "noteOrder": 1288, "time": 0.20002358768722728, "position": { "x": 5, @@ -2921,9 +3059,9 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1287, + "noteOrder": 1288, "time": 0.20002358768722728, "position": { "x": 5, @@ -2944,10 +3082,10 @@ }, { "lineGroupId": 39, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1312, - "time": 0.20379761764359003, + "time": 0.20379761764359006, "position": { "x": 5, "y": 0 @@ -2967,10 +3105,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1312, - "time": 0.20379761764359003, + "time": 0.20379761764359006, "position": { "x": 5, "y": 0 @@ -2990,7 +3128,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1336, "time": 0.2075716475999528, @@ -3013,7 +3151,7 @@ }, { "lineGroupId": 41, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1336, "time": 0.2075716475999528, @@ -3036,9 +3174,9 @@ }, { "lineGroupId": 41, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1360, + "noteOrder": 1361, "time": 0.2113456775563156, "position": { "x": 5, @@ -3059,9 +3197,9 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1457, + "noteOrder": 1458, "time": 0.2264417973817667, "position": { "x": 6, @@ -3082,7 +3220,7 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1652, "time": 0.25663403703266896, @@ -3105,7 +3243,7 @@ }, { "lineGroupId": 52, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1652, "time": 0.25663403703266896, @@ -3128,7 +3266,7 @@ }, { "lineGroupId": 52, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1749, "time": 0.2717301568581201, @@ -3151,7 +3289,7 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1749, "time": 0.2717301568581201, @@ -3174,10 +3312,10 @@ }, { "lineGroupId": 56, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1797, - "time": 0.2792782167708456, + "noteOrder": 1798, + "time": 0.27927821677084563, "position": { "x": 6, "y": 0 @@ -3197,10 +3335,10 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1846, - "time": 0.28682627668357114, + "noteOrder": 1847, + "time": 0.2868262766835712, "position": { "x": 3, "y": 0 @@ -3220,9 +3358,9 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1870, + "noteOrder": 1871, "time": 0.29060030663993397, "position": { "x": 3, @@ -3243,9 +3381,9 @@ }, { "lineGroupId": 62, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1894, + "noteOrder": 1895, "time": 0.2943743365962967, "position": { "x": 7, @@ -3266,7 +3404,7 @@ }, { "lineGroupId": 62, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1919, "time": 0.2981483665526595, @@ -3289,10 +3427,10 @@ }, { "lineGroupId": 64, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1943, - "time": 0.30192239650902225, + "noteOrder": 1944, + "time": 0.3019223965090223, "position": { "x": 3, "y": 0 @@ -3312,9 +3450,9 @@ }, { "lineGroupId": 64, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1967, + "noteOrder": 1968, "time": 0.3056964264653851, "position": { "x": 3, @@ -3335,9 +3473,9 @@ }, { "lineGroupId": 68, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2040, + "noteOrder": 2041, "time": 0.3170185163344734, "position": { "x": 7, @@ -3358,10 +3496,10 @@ }, { "lineGroupId": 68, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2064, - "time": 0.32079254629083614, + "noteOrder": 2065, + "time": 0.3207925462908362, "position": { "x": 7, "y": 0 @@ -3381,10 +3519,10 @@ }, { "lineGroupId": 68, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2137, - "time": 0.33211463615992454, + "noteOrder": 2138, + "time": 0.3321146361599245, "position": { "x": 5, "y": 0 @@ -3404,10 +3542,10 @@ }, { "lineGroupId": 74, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2234, - "time": 0.3472107559853756, + "noteOrder": 2235, + "time": 0.34721075598537565, "position": { "x": 3, "y": 0 @@ -3427,9 +3565,9 @@ }, { "lineGroupId": 74, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.35475881589810115, "position": { "x": 4, @@ -3450,9 +3588,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.3623068758108267, "position": { "x": 7, @@ -3473,10 +3611,10 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.36985493572355227, + "noteOrder": 2381, + "time": 0.3698549357235523, "position": { "x": 6, "y": 0 @@ -3496,10 +3634,10 @@ }, { "lineGroupId": 78, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2429, - "time": 0.3774029956362778, + "noteOrder": 2430, + "time": 0.3774029956362779, "position": { "x": 3, "y": 0 @@ -3519,9 +3657,9 @@ }, { "lineGroupId": 78, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2477, + "noteOrder": 2478, "time": 0.3849510555490034, "position": { "x": 4, @@ -3542,9 +3680,9 @@ }, { "lineGroupId": 95, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2915, + "noteOrder": 2916, "time": 0.4528835947635334, "position": { "x": 3, @@ -3565,10 +3703,10 @@ }, { "lineGroupId": 95, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2939, - "time": 0.4566576247198962, + "noteOrder": 2940, + "time": 0.45665762471989624, "position": { "x": 3, "y": 0 @@ -3588,9 +3726,9 @@ }, { "lineGroupId": 96, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2915, + "noteOrder": 2916, "time": 0.4528835947635334, "position": { "x": 7, @@ -3611,10 +3749,10 @@ }, { "lineGroupId": 96, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2939, - "time": 0.4566576247198962, + "noteOrder": 2940, + "time": 0.45665762471989624, "position": { "x": 7, "y": 0 @@ -3634,10 +3772,10 @@ }, { "lineGroupId": 123, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3595, - "time": 0.5585564335416912, + "noteOrder": 3596, + "time": 0.5585564335416913, "position": { "x": 4, "y": 0 @@ -3656,13 +3794,13 @@ "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3619, - "time": 0.562330463498054, + "noteOrder": 3608, + "time": 0.5604434485198726, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3674,18 +3812,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3643, - "time": 0.5661044934544168, + "noteOrder": 3608, + "time": 0.5604434485198726, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3702,11 +3840,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3667, - "time": 0.5698785234107795, + "noteOrder": 3620, + "time": 0.562330463498054, "position": { "x": 6, "y": 0 @@ -3725,11 +3863,11 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 3, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3716, - "time": 0.5774265833235052, + "noteOrder": 3632, + "time": 0.5642174784762354, "position": { "x": 6, "y": 0 @@ -3748,13 +3886,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3692, - "time": 0.5736525533671423, + "noteOrder": 3632, + "time": 0.5642174784762354, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3766,18 +3904,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 127, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 3716, - "time": 0.5774265833235052, + "noteOrder": 3645, + "time": 0.5661044934544167, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3794,13 +3932,13 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3789, - "time": 0.5887486731925934, + "noteOrder": 3657, + "time": 0.5679915084325982, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3812,18 +3950,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3813, - "time": 0.5925227031489562, + "noteOrder": 3657, + "time": 0.5679915084325982, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3840,13 +3978,13 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3837, - "time": 0.596296733105319, + "noteOrder": 3669, + "time": 0.5698785234107796, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3863,13 +4001,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3862, - "time": 0.6000707630616818, + "noteOrder": 3681, + "time": 0.5717655383889609, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3881,18 +4019,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 3886, - "time": 0.6038447930180445, + "lineGroupId": 126, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3681, + "time": 0.5717655383889609, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3909,13 +4047,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3910, - "time": 0.6076188229744073, + "noteOrder": 3693, + "time": 0.5736525533671424, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3927,18 +4065,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 135, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3935, - "time": 0.6113928529307702, + "noteOrder": 3693, + "time": 0.5736525533671424, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3955,13 +4093,13 @@ "isPlayAudio": false }, { - "lineGroupId": 136, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3959, - "time": 0.615166882887133, + "noteOrder": 3717, + "time": 0.577426583323505, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3973,16 +4111,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4080, - "time": 0.6340370326689468, + "noteOrder": 3693, + "time": 0.5736525533671424, "position": { "x": 3, "y": 0 @@ -4001,11 +4139,11 @@ "isPlayAudio": false }, { - "lineGroupId": 141, - "indexInLine": 1, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4105, - "time": 0.6378110626253095, + "noteOrder": 3717, + "time": 0.577426583323505, "position": { "x": 3, "y": 0 @@ -4024,13 +4162,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4080, - "time": 0.6340370326689468, + "noteOrder": 3790, + "time": 0.5887486731925934, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4047,13 +4185,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 1, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4105, - "time": 0.6378110626253095, + "noteOrder": 3803, + "time": 0.5906356881707748, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4070,13 +4208,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4469, - "time": 0.6944215119707512, + "noteOrder": 3803, + "time": 0.5906356881707748, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4093,11 +4231,11 @@ "isPlayAudio": false }, { - "lineGroupId": 157, + "lineGroupId": 130, "indexInLine": 1, "isSliding": false, - "noteOrder": 4493, - "time": 0.6981955419271141, + "noteOrder": 3815, + "time": 0.5925227031489563, "position": { "x": 7, "y": 0 @@ -4111,18 +4249,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4469, - "time": 0.6944215119707512, + "noteOrder": 3827, + "time": 0.5944097181271376, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4139,13 +4277,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 1, + "lineGroupId": 130, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4493, - "time": 0.6981955419271141, + "noteOrder": 3827, + "time": 0.5944097181271376, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4162,13 +4300,13 @@ "isPlayAudio": false }, { - "lineGroupId": 160, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4566, - "time": 0.7095176317962023, + "noteOrder": 3839, + "time": 0.596296733105319, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4180,18 +4318,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4590, - "time": 0.7132916617525651, + "noteOrder": 3851, + "time": 0.5981837480835005, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4208,13 +4346,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 131, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4615, - "time": 0.717065691708928, + "noteOrder": 3851, + "time": 0.5981837480835005, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4226,18 +4364,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4639, - "time": 0.7208397216652906, + "noteOrder": 3863, + "time": 0.6000707630616817, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4249,18 +4387,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4663, - "time": 0.7246137516216534, + "noteOrder": 3875, + "time": 0.6019577780398632, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4277,13 +4415,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 132, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4688, - "time": 0.7283877815780162, + "noteOrder": 3875, + "time": 0.6019577780398632, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4295,18 +4433,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4712, - "time": 0.7321618115343791, + "noteOrder": 3888, + "time": 0.6038447930180446, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4318,18 +4456,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4736, - "time": 0.7359358414907419, + "noteOrder": 3900, + "time": 0.605731807996226, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4346,13 +4484,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5052, - "time": 0.784998230923458, + "noteOrder": 3900, + "time": 0.605731807996226, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4364,16 +4502,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5076, - "time": 0.7887722608798207, + "noteOrder": 3912, + "time": 0.6076188229744074, "position": { "x": 7, "y": 0 @@ -4387,18 +4525,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5100, - "time": 0.7925462908361834, + "noteOrder": 3924, + "time": 0.6095058379525887, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4415,13 +4553,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5125, - "time": 0.7963203207925462, + "noteOrder": 3924, + "time": 0.6095058379525887, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4433,18 +4571,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5149, - "time": 0.8000943507489091, + "noteOrder": 3936, + "time": 0.6113928529307702, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4456,18 +4594,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 135, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5198, - "time": 0.8076424106616346, + "noteOrder": 3948, + "time": 0.6132798679089515, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4479,16 +4617,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5246, - "time": 0.8151904705743601, + "noteOrder": 3948, + "time": 0.6132798679089515, "position": { "x": 6, "y": 0 @@ -4507,13 +4645,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, + "lineGroupId": 136, "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, - "time": 0.8227385304870857, + "noteOrder": 3960, + "time": 0.6151668828871328, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4525,16 +4663,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5538, - "time": 0.8604788300507135, + "noteOrder": 3973, + "time": 0.6170538978653143, "position": { "x": 7, "y": 0 @@ -4548,18 +4686,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5562, - "time": 0.8642528600070762, + "noteOrder": 3973, + "time": 0.6170538978653143, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4576,13 +4714,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 141, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5586, - "time": 0.868026889963439, + "noteOrder": 4082, + "time": 0.6340370326689468, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4594,18 +4732,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 1, + "lineGroupId": 141, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5610, - "time": 0.8718009199198018, + "noteOrder": 4106, + "time": 0.6378110626253095, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4617,16 +4755,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 2, + "lineGroupId": 142, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5659, - "time": 0.8793489798325274, + "noteOrder": 4082, + "time": 0.6340370326689468, "position": { "x": 5, "y": 0 @@ -4645,13 +4783,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 142, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5683, - "time": 0.8831230097888901, + "noteOrder": 4106, + "time": 0.6378110626253095, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4663,18 +4801,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5708, - "time": 0.886897039745253, + "noteOrder": 4471, + "time": 0.6944215119707513, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4691,13 +4829,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5732, - "time": 0.8906710697016157, + "noteOrder": 4495, + "time": 0.698195541927114, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4709,16 +4847,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 158, "indexInLine": 1, "isSliding": false, - "noteOrder": 5756, - "time": 0.8944450996579785, + "noteOrder": 4471, + "time": 0.6944215119707513, "position": { "x": 3, "y": 0 @@ -4737,13 +4875,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 158, "indexInLine": 2, "isSliding": false, - "noteOrder": 5805, - "time": 0.901993159570704, + "noteOrder": 4495, + "time": 0.698195541927114, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4760,13 +4898,13 @@ "isPlayAudio": false }, { - "lineGroupId": 209, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5829, - "time": 0.9057671895270668, + "noteOrder": 4568, + "time": 0.7095176317962023, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4778,16 +4916,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5853, - "time": 0.9095412194834296, + "noteOrder": 4580, + "time": 0.7114046467743838, "position": { "x": 3, "y": 0 @@ -4806,11 +4944,1460 @@ "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 160, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5926, - "time": 0.920863309352518, + "noteOrder": 4580, + "time": 0.7114046467743838, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7132916617525651, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7151786767307465, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4604, + "time": 0.7151786767307465, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4616, + "time": 0.717065691708928, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4629, + "time": 0.7189527066871093, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4629, + "time": 0.7189527066871093, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4641, + "time": 0.7208397216652906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4653, + "time": 0.7227267366434721, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4653, + "time": 0.7227267366434721, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4665, + "time": 0.7246137516216534, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4677, + "time": 0.7265007665998349, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4677, + "time": 0.7265007665998349, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7283877815780163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4702, + "time": 0.7302747965561976, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 165, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4702, + "time": 0.7302747965561976, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4714, + "time": 0.7321618115343791, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4726, + "time": 0.7340488265125604, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 166, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4726, + "time": 0.7340488265125604, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4738, + "time": 0.7359358414907418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4750, + "time": 0.7378228564689232, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 167, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4750, + "time": 0.7378228564689232, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5054, + "time": 0.7849982309234579, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5066, + "time": 0.7868852459016393, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5066, + "time": 0.7868852459016393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5078, + "time": 0.7887722608798208, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5090, + "time": 0.7906592758580021, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5090, + "time": 0.7906592758580021, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5102, + "time": 0.7925462908361836, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7944333058143649, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7944333058143649, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5127, + "time": 0.7963203207925462, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5139, + "time": 0.7982073357707277, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5139, + "time": 0.7982073357707277, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5151, + "time": 0.8000943507489091, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5200, + "time": 0.8076424106616346, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5248, + "time": 0.8151904705743602, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5297, + "time": 0.8227385304870857, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5540, + "time": 0.8604788300507136, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5552, + "time": 0.8623658450288949, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5552, + "time": 0.8623658450288949, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5564, + "time": 0.8642528600070764, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5576, + "time": 0.8661398749852578, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5576, + "time": 0.8661398749852578, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5588, + "time": 0.868026889963439, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5613, + "time": 0.8718009199198018, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5661, + "time": 0.8793489798325274, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5686, + "time": 0.8831230097888901, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5698, + "time": 0.8850100247670716, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5698, + "time": 0.8850100247670716, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5710, + "time": 0.886897039745253, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5722, + "time": 0.8887840547234344, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5722, + "time": 0.8887840547234344, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5734, + "time": 0.8906710697016157, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5758, + "time": 0.8944450996579785, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5807, + "time": 0.9019931595707041, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5831, + "time": 0.9057671895270668, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5844, + "time": 0.9076542045052483, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 209, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5844, + "time": 0.9076542045052483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5856, + "time": 0.9095412194834297, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5868, + "time": 0.911428234461611, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5868, + "time": 0.911428234461611, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5929, + "time": 0.920863309352518, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5941, + "time": 0.9227503243306994, "position": { "x": 3, "y": 0 @@ -4828,12 +6415,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 213, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5941, + "time": 0.9227503243306994, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5953, + "time": 0.9246373393088808, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 214, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5950, - "time": 0.9246373393088807, + "noteOrder": 5965, + "time": 0.926524354287062, "position": { "x": 3, "y": 0 @@ -4851,11 +6484,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5965, + "time": 0.926524354287062, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 215, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5975, + "noteOrder": 5977, "time": 0.9284113692652435, "position": { "x": 3, @@ -4876,9 +6532,9 @@ }, { "lineGroupId": 215, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5999, + "noteOrder": 6001, "time": 0.9321853992216063, "position": { "x": 3, @@ -4899,9 +6555,9 @@ }, { "lineGroupId": 215, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6048, + "noteOrder": 6050, "time": 0.9397334591343318, "position": { "x": 5, @@ -4922,9 +6578,9 @@ }, { "lineGroupId": 219, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6072, + "noteOrder": 6074, "time": 0.9435074890906946, "position": { "x": 7, @@ -4943,12 +6599,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6086, + "time": 0.945394504068876, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6086, + "time": 0.945394504068876, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6099, + "time": 0.9472815190470575, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 220, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6096, - "time": 0.9472815190470574, + "noteOrder": 6111, + "time": 0.9491685340252388, "position": { "x": 7, "y": 0 @@ -4965,6 +6690,29 @@ "noteType": 12, "postionOffset": null, "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6111, + "time": 0.9491685340252388, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false } ], "effectNodes": [], diff --git "a/tracks/\347\276\244\351\235\222/320_difficulty_1b.json" "b/tracks/\347\276\244\351\235\222/320_difficulty_1b.json" index 0b5ab8a6..7dea07c8 100644 --- "a/tracks/\347\276\244\351\235\222/320_difficulty_1b.json" +++ "b/tracks/\347\276\244\351\235\222/320_difficulty_1b.json" @@ -34,7 +34,7 @@ }, { "noteOrder": 243, - "time": 0.03774029956362778, + "time": 0.03774029956362779, "position": { "x": 4, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 534, - "time": 0.08302865903998113, + "noteOrder": 535, + "time": 0.08302865903998112, "position": { "x": 5, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 631, - "time": 0.09812477886543225, + "noteOrder": 632, + "time": 0.09812477886543224, "position": { "x": 5, "y": 0 @@ -113,7 +113,7 @@ "isPlayAudio": false }, { - "noteOrder": 874, + "noteOrder": 875, "time": 0.13586507842906004, "position": { "x": 6, @@ -134,7 +134,7 @@ }, { "noteOrder": 899, - "time": 0.1396391083854228, + "time": 0.13963910838542282, "position": { "x": 4, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 923, - "time": 0.14341313834178557, + "time": 0.1434131383417856, "position": { "x": 7, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 972, - "time": 0.15096119825451113, + "time": 0.15096119825451115, "position": { "x": 4, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 996, - "time": 0.1547352282108739, + "time": 0.15473522821087393, "position": { "x": 6, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 1069, - "time": 0.16605731807996227, + "time": 0.16605731807996224, "position": { "x": 3, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 1069, - "time": 0.16605731807996227, + "time": 0.16605731807996224, "position": { "x": 7, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1117, - "time": 0.1736053779926878, + "noteOrder": 1118, + "time": 0.17360537799268783, "position": { "x": 7, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1117, - "time": 0.1736053779926878, + "noteOrder": 1118, + "time": 0.17360537799268783, "position": { "x": 3, "y": 0 @@ -393,7 +393,7 @@ "isPlayAudio": false }, { - "noteOrder": 1457, + "noteOrder": 1458, "time": 0.2264417973817667, "position": { "x": 8, @@ -434,7 +434,7 @@ }, { "noteOrder": 1506, - "time": 0.23398985729449226, + "time": 0.2339898572944923, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1530, + "noteOrder": 1531, "time": 0.23776388725085504, "position": { "x": 4, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 1554, + "noteOrder": 1555, "time": 0.24153791720721782, "position": { "x": 8, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 1603, - "time": 0.24908597711994337, + "noteOrder": 1604, + "time": 0.2490859771199434, "position": { "x": 8, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1627, + "noteOrder": 1628, "time": 0.2528600070763062, "position": { "x": 4, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1700, - "time": 0.26418209694539446, + "noteOrder": 1701, + "time": 0.2641820969453945, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1724, - "time": 0.26795612690175724, + "noteOrder": 1725, + "time": 0.2679561269017573, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 1846, - "time": 0.28682627668357114, + "noteOrder": 1847, + "time": 0.2868262766835712, "position": { "x": 2, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 1870, + "noteOrder": 1871, "time": 0.29060030663993397, "position": { "x": 2, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 1894, + "noteOrder": 1895, "time": 0.2943743365962967, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1943, - "time": 0.30192239650902225, + "noteOrder": 1944, + "time": 0.3019223965090223, "position": { "x": 2, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 1968, "time": 0.3056964264653851, "position": { "x": 6, @@ -714,7 +714,7 @@ }, { "noteOrder": 1992, - "time": 0.3094704564217478, + "time": 0.30947045642174786, "position": { "x": 2, "y": 0 @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 2017, "time": 0.3132444863781106, "position": { "x": 6, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2089, - "time": 0.324566576247199, + "noteOrder": 2090, + "time": 0.3245665762471989, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2113, - "time": 0.3283406062035617, + "noteOrder": 2114, + "time": 0.32834060620356176, "position": { "x": 6, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2599, + "noteOrder": 2600, "time": 0.4038212053308173, "position": { "x": 5, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2647, + "noteOrder": 2648, "time": 0.41136926524354284, "position": { "x": 5, @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2696, - "time": 0.4189173251562684, + "noteOrder": 2697, + "time": 0.41891732515626845, "position": { "x": 5, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.426465385068994, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2793, + "noteOrder": 2794, "time": 0.4340134449817195, "position": { "x": 5, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2817, - "time": 0.4377874749380823, + "noteOrder": 2818, + "time": 0.43778747493808234, "position": { "x": 7, "y": 0 @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 2866, + "noteOrder": 2867, "time": 0.44533553485080785, "position": { "x": 4, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3012, - "time": 0.4679797145889845, + "noteOrder": 3013, + "time": 0.4679797145889846, "position": { "x": 5, "y": 0 @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3037, "time": 0.4717537445453473, "position": { "x": 4, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3061, "time": 0.4755277745017101, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3109, + "noteOrder": 3110, "time": 0.48307583441443563, "position": { "x": 5, @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3133, - "time": 0.4868498643707984, + "noteOrder": 3134, + "time": 0.48684986437079847, "position": { "x": 6, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3157, + "noteOrder": 3159, "time": 0.4906238943271612, "position": { "x": 7, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 3206, - "time": 0.49817195423988675, + "noteOrder": 3207, + "time": 0.4981719542398868, "position": { "x": 5, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3230, - "time": 0.5019459841962495, + "noteOrder": 3232, + "time": 0.5019459841962496, "position": { "x": 4, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 3255, + "noteOrder": 3256, "time": 0.5057200141526124, "position": { "x": 3, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3376, - "time": 0.5245901639344261, + "noteOrder": 3377, + "time": 0.5245901639344263, "position": { "x": 5, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3425, + "noteOrder": 3426, "time": 0.5321382238471518, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3473, + "noteOrder": 3475, "time": 0.5396862837598773, "position": { "x": 5, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3497, + "noteOrder": 3499, "time": 0.5434603137162402, "position": { "x": 4, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3522, + "noteOrder": 3523, "time": 0.5472343436726029, "position": { "x": 6, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3595, - "time": 0.5585564335416912, + "noteOrder": 3596, + "time": 0.5585564335416913, "position": { "x": 5, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3620, "time": 0.562330463498054, "position": { "x": 5, @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3643, - "time": 0.5661044934544168, + "noteOrder": 3645, + "time": 0.5661044934544167, "position": { "x": 4, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 3643, - "time": 0.5661044934544168, + "noteOrder": 3645, + "time": 0.5661044934544167, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3667, - "time": 0.5698785234107795, + "noteOrder": 3669, + "time": 0.5698785234107796, "position": { "x": 4, "y": 0 @@ -1313,8 +1313,8 @@ "isPlayAudio": false }, { - "noteOrder": 3667, - "time": 0.5698785234107795, + "noteOrder": 3669, + "time": 0.5698785234107796, "position": { "x": 6, "y": 0 @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 3983, - "time": 0.6189409128434956, + "noteOrder": 3985, + "time": 0.6189409128434957, "position": { "x": 7, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 4033, "time": 0.6264889727562212, "position": { "x": 4, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 4058, "time": 0.6302630027125841, "position": { "x": 4, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 4082, "time": 0.6340370326689468, "position": { "x": 6, @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4153, + "noteOrder": 4155, "time": 0.6453591225380352, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 4202, - "time": 0.6529071824507606, + "noteOrder": 4203, + "time": 0.6529071824507607, "position": { "x": 4, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.6604552423634862, "position": { "x": 8, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4301, "time": 0.6680033022762119, "position": { "x": 2, @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4323, - "time": 0.6717773322325745, + "noteOrder": 4325, + "time": 0.6717773322325746, "position": { "x": 6, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 4347, + "noteOrder": 4349, "time": 0.6755513621889373, "position": { "x": 4, @@ -1533,7 +1533,7 @@ "isPlayAudio": false }, { - "noteOrder": 4372, + "noteOrder": 4374, "time": 0.6793253921453002, "position": { "x": 6, @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.6868734520580256, "position": { "x": 3, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 4422, "time": 0.6868734520580256, "position": { "x": 7, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6906474820143884, + "noteOrder": 4446, + "time": 0.6906474820143885, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4445, - "time": 0.6906474820143884, + "noteOrder": 4446, + "time": 0.6906474820143885, "position": { "x": 4, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4760, - "time": 0.7397098714471045, + "noteOrder": 4762, + "time": 0.7397098714471046, "position": { "x": 3, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4809, + "noteOrder": 4811, "time": 0.7472579313598301, "position": { "x": 6, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 4833, + "noteOrder": 4835, "time": 0.751031961316193, "position": { "x": 6, @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4858, - "time": 0.7548059912725557, + "noteOrder": 4859, + "time": 0.7548059912725558, "position": { "x": 4, "y": 0 @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7661280811416441, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4979, + "noteOrder": 4981, "time": 0.7736761410543695, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5028, + "noteOrder": 5030, "time": 0.7812242009670951, "position": { "x": 2, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 5076, - "time": 0.7887722608798207, + "noteOrder": 5078, + "time": 0.7887722608798208, "position": { "x": 8, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 5100, - "time": 0.7925462908361834, + "noteOrder": 5102, + "time": 0.7925462908361836, "position": { "x": 4, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 5125, + "noteOrder": 5127, "time": 0.7963203207925462, "position": { "x": 6, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5319, - "time": 0.8265125604434485, + "noteOrder": 5321, + "time": 0.8265125604434486, "position": { "x": 6, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5368, - "time": 0.8340606203561741, + "noteOrder": 5370, + "time": 0.834060620356174, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5416, - "time": 0.8416086802688996, + "noteOrder": 5418, + "time": 0.8416086802688997, "position": { "x": 6, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5440, + "noteOrder": 5443, "time": 0.8453827102252623, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5465, - "time": 0.8491567401816251, + "noteOrder": 5467, + "time": 0.8491567401816252, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5538, - "time": 0.8604788300507135, + "noteOrder": 5540, + "time": 0.8604788300507136, "position": { "x": 2, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5562, - "time": 0.8642528600070762, + "noteOrder": 5564, + "time": 0.8642528600070764, "position": { "x": 2, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5586, + "noteOrder": 5588, "time": 0.868026889963439, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5610, + "noteOrder": 5613, "time": 0.8718009199198018, "position": { "x": 6, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5635, - "time": 0.8755749498761646, + "noteOrder": 5637, + "time": 0.8755749498761647, "position": { "x": 2, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 5659, + "noteOrder": 5661, "time": 0.8793489798325274, "position": { "x": 6, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 5708, + "noteOrder": 5710, "time": 0.886897039745253, "position": { "x": 7, @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5805, - "time": 0.901993159570704, + "noteOrder": 5807, + "time": 0.9019931595707041, "position": { "x": 3, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5926, + "noteOrder": 5929, "time": 0.920863309352518, "position": { "x": 8, @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5950, - "time": 0.9246373393088807, + "noteOrder": 5953, + "time": 0.9246373393088808, "position": { "x": 8, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5975, + "noteOrder": 5977, "time": 0.9284113692652435, "position": { "x": 4, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5999, + "noteOrder": 6001, "time": 0.9321853992216063, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6023, - "time": 0.935959429177969, + "noteOrder": 6026, + "time": 0.9359594291779691, "position": { "x": 8, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 6050, "time": 0.9397334591343318, "position": { "x": 4, @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6096, - "time": 0.9472815190470574, + "noteOrder": 6099, + "time": 0.9472815190470575, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6169, - "time": 0.9586036089161457, + "noteOrder": 6172, + "time": 0.9586036089161458, "position": { "x": 4, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6193, - "time": 0.9623776388725085, + "noteOrder": 6196, + "time": 0.9623776388725086, "position": { "x": 5, "y": 0 @@ -2276,10 +2276,10 @@ "lineNodes": [ { "lineGroupId": 8, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 486, - "time": 0.07548059912725556, + "time": 0.07548059912725558, "position": { "x": 4, "y": 0 @@ -2299,10 +2299,10 @@ }, { "lineGroupId": 8, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 534, - "time": 0.08302865903998113, + "noteOrder": 535, + "time": 0.08302865903998112, "position": { "x": 4, "y": 0 @@ -2322,7 +2322,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 583, "time": 0.09057671895270668, @@ -2345,10 +2345,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 631, - "time": 0.09812477886543225, + "noteOrder": 632, + "time": 0.09812477886543224, "position": { "x": 6, "y": 0 @@ -2368,7 +2368,7 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 680, "time": 0.1056728387781578, @@ -2391,9 +2391,9 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 777, + "noteOrder": 778, "time": 0.12076895860360891, "position": { "x": 4, @@ -2414,7 +2414,7 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 729, "time": 0.11322089869088335, @@ -2437,9 +2437,9 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 777, + "noteOrder": 778, "time": 0.12076895860360891, "position": { "x": 6, @@ -2460,10 +2460,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1214, - "time": 0.1887014978181389, + "noteOrder": 1215, + "time": 0.18870149781813894, "position": { "x": 4, "y": 0 @@ -2483,7 +2483,7 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1239, "time": 0.1924755277745017, @@ -2506,10 +2506,10 @@ }, { "lineGroupId": 28, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1263, - "time": 0.1962495577308645, + "time": 0.19624955773086447, "position": { "x": 5, "y": 0 @@ -2529,10 +2529,10 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1312, - "time": 0.20379761764359003, + "time": 0.20379761764359006, "position": { "x": 6, "y": 0 @@ -2552,7 +2552,7 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1336, "time": 0.2075716475999528, @@ -2575,9 +2575,9 @@ }, { "lineGroupId": 30, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1360, + "noteOrder": 1361, "time": 0.2113456775563156, "position": { "x": 5, @@ -2598,10 +2598,10 @@ }, { "lineGroupId": 59, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2234, - "time": 0.3472107559853756, + "noteOrder": 2235, + "time": 0.34721075598537565, "position": { "x": 6, "y": 0 @@ -2621,9 +2621,9 @@ }, { "lineGroupId": 59, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2283, + "noteOrder": 2284, "time": 0.35475881589810115, "position": { "x": 4, @@ -2644,9 +2644,9 @@ }, { "lineGroupId": 60, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2332, + "noteOrder": 2333, "time": 0.3623068758108267, "position": { "x": 4, @@ -2667,10 +2667,10 @@ }, { "lineGroupId": 60, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2380, - "time": 0.36985493572355227, + "noteOrder": 2381, + "time": 0.3698549357235523, "position": { "x": 6, "y": 0 @@ -2690,10 +2690,10 @@ }, { "lineGroupId": 61, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2429, - "time": 0.3774029956362778, + "noteOrder": 2430, + "time": 0.3774029956362779, "position": { "x": 6, "y": 0 @@ -2713,9 +2713,9 @@ }, { "lineGroupId": 61, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2477, + "noteOrder": 2478, "time": 0.3849510555490034, "position": { "x": 4, @@ -2736,9 +2736,9 @@ }, { "lineGroupId": 63, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2574, + "noteOrder": 2576, "time": 0.40004717537445456, "position": { "x": 4, @@ -2759,9 +2759,9 @@ }, { "lineGroupId": 63, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2599, + "noteOrder": 2600, "time": 0.4038212053308173, "position": { "x": 4, @@ -2782,10 +2782,10 @@ }, { "lineGroupId": 65, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2623, - "time": 0.40759523528718006, + "noteOrder": 2624, + "time": 0.4075952352871801, "position": { "x": 6, "y": 0 @@ -2805,9 +2805,9 @@ }, { "lineGroupId": 65, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2647, + "noteOrder": 2648, "time": 0.41136926524354284, "position": { "x": 6, @@ -2828,9 +2828,9 @@ }, { "lineGroupId": 67, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2672, + "noteOrder": 2673, "time": 0.4151432951999056, "position": { "x": 4, @@ -2851,10 +2851,10 @@ }, { "lineGroupId": 67, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2696, - "time": 0.4189173251562684, + "noteOrder": 2697, + "time": 0.41891732515626845, "position": { "x": 4, "y": 0 @@ -2874,9 +2874,9 @@ }, { "lineGroupId": 69, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2720, + "noteOrder": 2721, "time": 0.4226913551126312, "position": { "x": 6, @@ -2897,9 +2897,9 @@ }, { "lineGroupId": 69, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2745, + "noteOrder": 2746, "time": 0.426465385068994, "position": { "x": 6, @@ -2920,10 +2920,10 @@ }, { "lineGroupId": 71, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2769, - "time": 0.43023941502535673, + "noteOrder": 2770, + "time": 0.4302394150253568, "position": { "x": 4, "y": 0 @@ -2943,9 +2943,9 @@ }, { "lineGroupId": 71, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2793, + "noteOrder": 2794, "time": 0.4340134449817195, "position": { "x": 4, @@ -2966,9 +2966,9 @@ }, { "lineGroupId": 75, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2915, + "noteOrder": 2916, "time": 0.4528835947635334, "position": { "x": 3, @@ -2989,9 +2989,9 @@ }, { "lineGroupId": 75, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2963, + "noteOrder": 2964, "time": 0.460431654676259, "position": { "x": 3, @@ -3012,9 +3012,9 @@ }, { "lineGroupId": 76, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2915, + "noteOrder": 2916, "time": 0.4528835947635334, "position": { "x": 7, @@ -3035,9 +3035,9 @@ }, { "lineGroupId": 76, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2963, + "noteOrder": 2964, "time": 0.460431654676259, "position": { "x": 7, @@ -3058,10 +3058,10 @@ }, { "lineGroupId": 87, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3352, - "time": 0.5208161339780635, + "noteOrder": 3353, + "time": 0.5208161339780634, "position": { "x": 6, "y": 0 @@ -3081,10 +3081,10 @@ }, { "lineGroupId": 87, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3376, - "time": 0.5245901639344261, + "noteOrder": 3377, + "time": 0.5245901639344263, "position": { "x": 6, "y": 0 @@ -3104,10 +3104,10 @@ }, { "lineGroupId": 89, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3400, - "time": 0.5283641938907889, + "noteOrder": 3402, + "time": 0.528364193890789, "position": { "x": 4, "y": 0 @@ -3127,9 +3127,9 @@ }, { "lineGroupId": 89, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3425, + "noteOrder": 3426, "time": 0.5321382238471518, "position": { "x": 4, @@ -3150,10 +3150,10 @@ }, { "lineGroupId": 91, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3449, - "time": 0.5359122538035145, + "noteOrder": 3450, + "time": 0.5359122538035146, "position": { "x": 6, "y": 0 @@ -3173,9 +3173,9 @@ }, { "lineGroupId": 91, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3473, + "noteOrder": 3475, "time": 0.5396862837598773, "position": { "x": 6, @@ -3196,10 +3196,10 @@ }, { "lineGroupId": 102, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3692, - "time": 0.5736525533671423, + "noteOrder": 3693, + "time": 0.5736525533671424, "position": { "x": 6, "y": 0 @@ -3219,10 +3219,10 @@ }, { "lineGroupId": 102, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3716, - "time": 0.5774265833235052, + "noteOrder": 3717, + "time": 0.577426583323505, "position": { "x": 6, "y": 0 @@ -3242,10 +3242,10 @@ }, { "lineGroupId": 103, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3692, - "time": 0.5736525533671423, + "noteOrder": 3693, + "time": 0.5736525533671424, "position": { "x": 4, "y": 0 @@ -3265,10 +3265,10 @@ }, { "lineGroupId": 103, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3716, - "time": 0.5774265833235052, + "noteOrder": 3717, + "time": 0.577426583323505, "position": { "x": 4, "y": 0 @@ -3288,9 +3288,9 @@ }, { "lineGroupId": 105, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3789, + "noteOrder": 3790, "time": 0.5887486731925934, "position": { "x": 7, @@ -3309,11 +3309,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3815, + "time": 0.5925227031489563, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3815, + "time": 0.5925227031489563, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 106, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3837, + "noteOrder": 3839, "time": 0.596296733105319, "position": { "x": 7, @@ -3332,12 +3378,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 106, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3863, + "time": 0.6000707630616817, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 106, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3863, + "time": 0.6000707630616817, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 107, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3888, + "time": 0.6038447930180446, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 107, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3886, - "time": 0.6038447930180445, + "noteOrder": 3912, + "time": 0.6076188229744074, "position": { "x": 7, "y": 0 @@ -3355,11 +3470,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 107, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3912, + "time": 0.6076188229744074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 108, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3935, + "noteOrder": 3936, "time": 0.6113928529307702, "position": { "x": 7, @@ -3378,12 +3516,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6151668828871328, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3960, + "time": 0.6151668828871328, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 113, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4129, - "time": 0.6415850925816723, + "noteOrder": 4131, + "time": 0.6415850925816724, "position": { "x": 7, "y": 0 @@ -3403,9 +3587,9 @@ }, { "lineGroupId": 113, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4153, + "noteOrder": 4155, "time": 0.6453591225380352, "position": { "x": 7, @@ -3426,10 +3610,10 @@ }, { "lineGroupId": 115, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4177, - "time": 0.649133152494398, + "noteOrder": 4179, + "time": 0.6491331524943978, "position": { "x": 3, "y": 0 @@ -3449,10 +3633,10 @@ }, { "lineGroupId": 115, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4202, - "time": 0.6529071824507606, + "noteOrder": 4203, + "time": 0.6529071824507607, "position": { "x": 3, "y": 0 @@ -3472,10 +3656,10 @@ }, { "lineGroupId": 117, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4226, - "time": 0.6566812124071234, + "noteOrder": 4228, + "time": 0.6566812124071235, "position": { "x": 6, "y": 0 @@ -3495,9 +3679,9 @@ }, { "lineGroupId": 117, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4250, + "noteOrder": 4252, "time": 0.6604552423634862, "position": { "x": 6, @@ -3518,10 +3702,10 @@ }, { "lineGroupId": 119, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4275, - "time": 0.6642292723198491, + "noteOrder": 4276, + "time": 0.664229272319849, "position": { "x": 4, "y": 0 @@ -3541,9 +3725,9 @@ }, { "lineGroupId": 119, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4299, + "noteOrder": 4301, "time": 0.6680033022762119, "position": { "x": 4, @@ -3564,10 +3748,10 @@ }, { "lineGroupId": 128, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, - "time": 0.6944215119707512, + "noteOrder": 4471, + "time": 0.6944215119707513, "position": { "x": 3, "y": 0 @@ -3587,9 +3771,9 @@ }, { "lineGroupId": 128, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4519, "time": 0.7019695718834769, "position": { "x": 3, @@ -3610,10 +3794,10 @@ }, { "lineGroupId": 129, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4469, - "time": 0.6944215119707512, + "noteOrder": 4471, + "time": 0.6944215119707513, "position": { "x": 7, "y": 0 @@ -3633,9 +3817,9 @@ }, { "lineGroupId": 129, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4518, + "noteOrder": 4519, "time": 0.7019695718834769, "position": { "x": 7, @@ -3656,9 +3840,9 @@ }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4566, + "noteOrder": 4568, "time": 0.7095176317962023, "position": { "x": 3, @@ -3677,11 +3861,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7132916617525651, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4592, + "time": 0.7132916617525651, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4615, + "noteOrder": 4616, "time": 0.717065691708928, "position": { "x": 3, @@ -3700,11 +3930,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4641, + "time": 0.7208397216652906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4641, + "time": 0.7208397216652906, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4663, + "noteOrder": 4665, "time": 0.7246137516216534, "position": { "x": 3, @@ -3723,11 +3999,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7283877815780163, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4689, + "time": 0.7283877815780163, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4712, + "noteOrder": 4714, "time": 0.7321618115343791, "position": { "x": 3, @@ -3746,12 +4068,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4738, + "time": 0.7359358414907418, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4738, + "time": 0.7359358414907418, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 138, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4906, - "time": 0.7623540511852812, + "noteOrder": 4908, + "time": 0.7623540511852813, "position": { "x": 3, "y": 0 @@ -3771,9 +4139,9 @@ }, { "lineGroupId": 138, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4930, + "noteOrder": 4932, "time": 0.7661280811416441, "position": { "x": 3, @@ -3794,9 +4162,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4955, + "noteOrder": 4957, "time": 0.7699021110980068, "position": { "x": 7, @@ -3817,9 +4185,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4979, + "noteOrder": 4981, "time": 0.7736761410543695, "position": { "x": 7, @@ -3840,10 +4208,10 @@ }, { "lineGroupId": 142, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5003, - "time": 0.7774501710107323, + "noteOrder": 5005, + "time": 0.7774501710107324, "position": { "x": 4, "y": 0 @@ -3863,9 +4231,9 @@ }, { "lineGroupId": 142, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5028, + "noteOrder": 5030, "time": 0.7812242009670951, "position": { "x": 4, @@ -3886,10 +4254,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5052, - "time": 0.784998230923458, + "noteOrder": 5054, + "time": 0.7849982309234579, "position": { "x": 6, "y": 0 @@ -3909,10 +4277,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5076, - "time": 0.7887722608798207, + "noteOrder": 5078, + "time": 0.7887722608798208, "position": { "x": 6, "y": 0 @@ -3932,9 +4300,9 @@ }, { "lineGroupId": 150, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5295, + "noteOrder": 5297, "time": 0.8227385304870857, "position": { "x": 7, @@ -3955,10 +4323,10 @@ }, { "lineGroupId": 150, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5319, - "time": 0.8265125604434485, + "noteOrder": 5321, + "time": 0.8265125604434486, "position": { "x": 7, "y": 0 @@ -3978,9 +4346,9 @@ }, { "lineGroupId": 152, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5343, + "noteOrder": 5345, "time": 0.8302865903998112, "position": { "x": 3, @@ -4001,10 +4369,10 @@ }, { "lineGroupId": 152, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5368, - "time": 0.8340606203561741, + "noteOrder": 5370, + "time": 0.834060620356174, "position": { "x": 3, "y": 0 @@ -4024,10 +4392,10 @@ }, { "lineGroupId": 154, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5392, - "time": 0.8378346503125368, + "noteOrder": 5394, + "time": 0.8378346503125369, "position": { "x": 7, "y": 0 @@ -4047,10 +4415,10 @@ }, { "lineGroupId": 154, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5416, - "time": 0.8416086802688996, + "noteOrder": 5418, + "time": 0.8416086802688997, "position": { "x": 7, "y": 0 @@ -4070,9 +4438,9 @@ }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5683, + "noteOrder": 5686, "time": 0.8831230097888901, "position": { "x": 4, @@ -4093,9 +4461,9 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5708, + "noteOrder": 5710, "time": 0.886897039745253, "position": { "x": 4, @@ -4116,9 +4484,9 @@ }, { "lineGroupId": 165, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5732, + "noteOrder": 5734, "time": 0.8906710697016157, "position": { "x": 5, @@ -4139,10 +4507,10 @@ }, { "lineGroupId": 168, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5780, - "time": 0.8982191296143412, + "noteOrder": 5783, + "time": 0.8982191296143414, "position": { "x": 6, "y": 0 @@ -4162,10 +4530,10 @@ }, { "lineGroupId": 168, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5805, - "time": 0.901993159570704, + "noteOrder": 5807, + "time": 0.9019931595707041, "position": { "x": 6, "y": 0 @@ -4185,9 +4553,9 @@ }, { "lineGroupId": 168, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5829, + "noteOrder": 5831, "time": 0.9057671895270668, "position": { "x": 5, @@ -4208,9 +4576,9 @@ }, { "lineGroupId": 178, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6072, + "noteOrder": 6074, "time": 0.9435074890906946, "position": { "x": 6, @@ -4231,10 +4599,10 @@ }, { "lineGroupId": 178, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6096, - "time": 0.9472815190470574, + "noteOrder": 6099, + "time": 0.9472815190470575, "position": { "x": 6, "y": 0 @@ -4254,9 +4622,9 @@ }, { "lineGroupId": 178, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6120, + "noteOrder": 6123, "time": 0.9510555490034202, "position": { "x": 5, @@ -4277,9 +4645,9 @@ }, { "lineGroupId": 183, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6218, + "noteOrder": 6220, "time": 0.9661516688288713, "position": { "x": 6, @@ -4300,10 +4668,10 @@ }, { "lineGroupId": 183, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6266, - "time": 0.9736997287415968, + "noteOrder": 6269, + "time": 0.9736997287415969, "position": { "x": 6, "y": 0 @@ -4323,9 +4691,9 @@ }, { "lineGroupId": 184, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6218, + "noteOrder": 6220, "time": 0.9661516688288713, "position": { "x": 4, @@ -4346,10 +4714,10 @@ }, { "lineGroupId": 184, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6266, - "time": 0.9736997287415968, + "noteOrder": 6269, + "time": 0.9736997287415969, "position": { "x": 4, "y": 0 diff --git "a/tracks/\347\276\244\351\235\222/info.json" "b/tracks/\347\276\244\351\235\222/info.json" index 0d7e8470..f4fd5712 100644 --- "a/tracks/\347\276\244\351\235\222/info.json" +++ "b/tracks/\347\276\244\351\235\222/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u7fa4\u9752", - "SongLength": "129.175510", + "SongLength": "119.222857", "SongAuthorName": null, "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1a.json" "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1a.json" index 98da6168..e9523ee2 100644 --- "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1a.json" +++ "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1a.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 122, - "time": 0.017054902573869046, + "time": 0.01705490257386905, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 146, - "time": 0.020465883088642854, + "time": 0.020465883088642858, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 171, - "time": 0.023876863603416665, + "time": 0.02387686360341667, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 195, - "time": 0.027287844118190473, + "time": 0.027287844118190477, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 244, - "time": 0.03410980514773809, + "time": 0.0341098051477381, "position": { "x": 6, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 317, - "time": 0.044342746692059516, + "time": 0.04434274669205952, "position": { "x": 5, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 342, - "time": 0.04775372720683333, + "time": 0.04775372720683334, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 390, - "time": 0.05457568823638095, + "time": 0.054575688236380954, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 439, - "time": 0.06139764926592857, + "time": 0.061397649265928576, "position": { "x": 4, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 463, - "time": 0.06480862978070237, + "noteOrder": 464, + "time": 0.06480862978070238, "position": { "x": 6, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 585, - "time": 0.08186353235457142, + "noteOrder": 586, + "time": 0.08186353235457143, "position": { "x": 5, "y": 0 @@ -274,7 +274,7 @@ }, { "noteOrder": 634, - "time": 0.08868549338411903, + "time": 0.08868549338411905, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 659, - "time": 0.09209647389889285, + "time": 0.09209647389889286, "position": { "x": 4, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 707, - "time": 0.09891843492844048, + "noteOrder": 708, + "time": 0.09891843492844049, "position": { "x": 5, "y": 0 @@ -333,7 +333,7 @@ "isPlayAudio": false }, { - "noteOrder": 756, + "noteOrder": 757, "time": 0.10574039595798809, "position": { "x": 5, @@ -354,7 +354,7 @@ }, { "noteOrder": 781, - "time": 0.1091513764727619, + "time": 0.10915137647276191, "position": { "x": 3, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 781, - "time": 0.1091513764727619, + "time": 0.10915137647276191, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 878, - "time": 0.12279529853185714, + "noteOrder": 879, + "time": 0.12279529853185715, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 927, - "time": 0.12961725956140474, + "time": 0.12961725956140477, "position": { "x": 3, "y": 0 @@ -453,8 +453,8 @@ "isPlayAudio": false }, { - "noteOrder": 951, - "time": 0.13302824007617856, + "noteOrder": 952, + "time": 0.13302824007617858, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1025, - "time": 0.14326118162049997, + "time": 0.1432611816205, "position": { "x": 3, "y": 0 @@ -494,7 +494,7 @@ }, { "noteOrder": 1049, - "time": 0.1466721621352738, + "time": 0.14667216213527381, "position": { "x": 5, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1317, - "time": 0.1841929477977857, + "noteOrder": 1318, + "time": 0.18419294779778572, "position": { "x": 7, "y": 0 @@ -594,7 +594,7 @@ }, { "noteOrder": 1415, - "time": 0.19783686985688095, + "time": 0.19783686985688098, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 1439, - "time": 0.20124785037165474, + "noteOrder": 1440, + "time": 0.20124785037165477, "position": { "x": 7, "y": 0 @@ -633,8 +633,8 @@ "isPlayAudio": false }, { - "noteOrder": 1488, - "time": 0.20806981140120237, + "noteOrder": 1489, + "time": 0.2080698114012024, "position": { "x": 4, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 1537, - "time": 0.21489177243074997, + "time": 0.21489177243075, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2000, - "time": 0.2797004022114523, + "noteOrder": 2001, + "time": 0.27970040221145237, "position": { "x": 7, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 2049, - "time": 0.28652236324099994, + "noteOrder": 2050, + "time": 0.286522363241, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 2074, - "time": 0.2899333437557738, + "time": 0.28993334375577384, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2098, - "time": 0.2933443242705476, + "noteOrder": 2099, + "time": 0.29334432427054763, "position": { "x": 3, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 2122, + "noteOrder": 2123, "time": 0.2967553047853214, "position": { "x": 3, @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.30016628530009526, "position": { "x": 7, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.30357726581486905, "position": { "x": 6, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 2195, + "noteOrder": 2196, "time": 0.30698824632964283, "position": { "x": 4, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2221, "time": 0.3103992268444167, "position": { "x": 3, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 2269, - "time": 0.31722118787396425, + "noteOrder": 2270, + "time": 0.3172211878739643, "position": { "x": 7, "y": 0 @@ -873,8 +873,8 @@ "isPlayAudio": false }, { - "noteOrder": 2317, - "time": 0.3240431489035119, + "noteOrder": 2318, + "time": 0.32404314890351194, "position": { "x": 3, "y": 0 @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2415, - "time": 0.33768707096260714, + "noteOrder": 2416, + "time": 0.3376870709626072, "position": { "x": 5, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2488, - "time": 0.34792001250692856, + "noteOrder": 2489, + "time": 0.3479200125069286, "position": { "x": 4, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 2513, - "time": 0.35133099302170234, + "noteOrder": 2514, + "time": 0.3513309930217024, "position": { "x": 6, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2610, - "time": 0.36497491508079755, + "noteOrder": 2611, + "time": 0.3649749150807976, "position": { "x": 7, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.3717968761103452, + "noteOrder": 2660, + "time": 0.3717968761103453, "position": { "x": 3, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2708, - "time": 0.3786188371398928, + "noteOrder": 2709, + "time": 0.37861883713989286, "position": { "x": 7, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.3956737397137619, + "noteOrder": 2831, + "time": 0.39567373971376196, "position": { "x": 3, "y": 0 @@ -1033,7 +1033,7 @@ "isPlayAudio": false }, { - "noteOrder": 2854, + "noteOrder": 2855, "time": 0.3990847202285357, "position": { "x": 4, @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 2879, - "time": 0.4024957007433095, + "noteOrder": 2880, + "time": 0.40249570074330954, "position": { "x": 7, "y": 0 @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2903, - "time": 0.4059066812580833, + "noteOrder": 2904, + "time": 0.4059066812580834, "position": { "x": 6, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 2976, - "time": 0.41613962280240474, + "noteOrder": 2977, + "time": 0.4161396228024048, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3001, - "time": 0.4195506033171785, + "noteOrder": 3002, + "time": 0.4195506033171786, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3049, - "time": 0.42637256434672616, + "noteOrder": 3050, + "time": 0.4263725643467262, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.42978354486149994, + "noteOrder": 3075, + "time": 0.4297835448615, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 3098, + "noteOrder": 3099, "time": 0.4331945253762738, "position": { "x": 5, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3196, - "time": 0.446838447435369, + "noteOrder": 3197, + "time": 0.44683844743536905, "position": { "x": 5, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.4570713889796904, + "noteOrder": 3270, + "time": 0.45707138897969046, "position": { "x": 6, "y": 0 @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 3293, - "time": 0.4604823694944642, + "noteOrder": 3294, + "time": 0.4604823694944643, "position": { "x": 4, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 3391, - "time": 0.4741262915535595, + "noteOrder": 3392, + "time": 0.47412629155355956, "position": { "x": 3, "y": 0 @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3440, + "noteOrder": 3441, "time": 0.48094825258310714, "position": { "x": 7, @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 3488, - "time": 0.4877702136126547, + "noteOrder": 3490, + "time": 0.48777021361265477, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3610, + "noteOrder": 3612, "time": 0.5048251161865238, "position": { "x": 5, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3659, + "noteOrder": 3661, "time": 0.5116470772160714, "position": { "x": 5, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3708, - "time": 0.518469038245619, + "noteOrder": 3709, + "time": 0.5184690382456191, "position": { "x": 5, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 3758, "time": 0.5252909992751666, "position": { "x": 5, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3806, - "time": 0.5321129603047142, + "noteOrder": 3807, + "time": 0.5321129603047143, "position": { "x": 5, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 3854, - "time": 0.5389349213342618, + "noteOrder": 3856, + "time": 0.5389349213342619, "position": { "x": 5, "y": 0 @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3903, - "time": 0.5457568823638095, + "noteOrder": 3905, + "time": 0.5457568823638096, "position": { "x": 5, "y": 0 @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 3952, - "time": 0.552578843393357, + "noteOrder": 3953, + "time": 0.5525788433933572, "position": { "x": 5, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4049, - "time": 0.5662227654524523, + "noteOrder": 4051, + "time": 0.5662227654524524, "position": { "x": 3, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 4147, - "time": 0.5798666875115476, + "noteOrder": 4149, + "time": 0.5798666875115477, "position": { "x": 7, "y": 0 @@ -1513,8 +1513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4220, - "time": 0.590099629055869, + "noteOrder": 4222, + "time": 0.5900996290558691, "position": { "x": 3, "y": 0 @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4269, - "time": 0.5969215900854166, + "noteOrder": 4271, + "time": 0.5969215900854167, "position": { "x": 7, "y": 0 @@ -1553,7 +1553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4344, "time": 0.6071545316297381, "position": { "x": 4, @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4415, + "noteOrder": 4417, "time": 0.6173874731740595, "position": { "x": 6, @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 4464, - "time": 0.6242094342036071, + "noteOrder": 4466, + "time": 0.6242094342036072, "position": { "x": 6, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4489, - "time": 0.6276204147183809, + "noteOrder": 4490, + "time": 0.627620414718381, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4513, - "time": 0.6310313952331547, + "noteOrder": 4515, + "time": 0.6310313952331548, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 4537, - "time": 0.6344423757479285, + "noteOrder": 4539, + "time": 0.6344423757479286, "position": { "x": 7, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4611, - "time": 0.6446753172922499, + "noteOrder": 4612, + "time": 0.64467531729225, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.6480862978070238, + "noteOrder": 4637, + "time": 0.6480862978070239, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.6514972783217975, + "noteOrder": 4661, + "time": 0.6514972783217977, "position": { "x": 6, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4806, - "time": 0.6719631614104403, + "noteOrder": 4807, + "time": 0.6719631614104405, "position": { "x": 7, "y": 0 @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4854, + "noteOrder": 4856, "time": 0.6787851224399881, "position": { "x": 3, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4928, - "time": 0.6890180639843094, + "noteOrder": 4929, + "time": 0.6890180639843095, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4976, - "time": 0.6958400250138571, + "noteOrder": 4978, + "time": 0.6958400250138572, "position": { "x": 6, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5001, - "time": 0.699251005528631, + "noteOrder": 5003, + "time": 0.6992510055286311, "position": { "x": 4, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 5269, - "time": 0.7367717911911428, + "noteOrder": 5271, + "time": 0.7367717911911429, "position": { "x": 7, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 5294, - "time": 0.7401827717059166, + "noteOrder": 5296, + "time": 0.7401827717059167, "position": { "x": 4, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 5318, - "time": 0.7435937522206904, + "noteOrder": 5320, + "time": 0.7435937522206906, "position": { "x": 7, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5391, + "noteOrder": 5393, "time": 0.7538266937650119, "position": { "x": 5, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5416, - "time": 0.7572376742797856, + "noteOrder": 5418, + "time": 0.7572376742797857, "position": { "x": 3, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5440, - "time": 0.7606486547945595, + "noteOrder": 5442, + "time": 0.7606486547945596, "position": { "x": 6, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5586, - "time": 0.7811145378832023, + "noteOrder": 5588, + "time": 0.7811145378832024, "position": { "x": 8, "y": 0 @@ -1973,8 +1973,8 @@ "isPlayAudio": false }, { - "noteOrder": 5635, - "time": 0.7879364989127499, + "noteOrder": 5637, + "time": 0.7879364989127501, "position": { "x": 2, "y": 0 @@ -1993,8 +1993,8 @@ "isPlayAudio": false }, { - "noteOrder": 5733, - "time": 0.8015804209718451, + "noteOrder": 5735, + "time": 0.8015804209718452, "position": { "x": 6, "y": 0 @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5757, - "time": 0.804991401486619, + "noteOrder": 5759, + "time": 0.8049914014866191, "position": { "x": 3, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5781, - "time": 0.8084023820013928, + "noteOrder": 5784, + "time": 0.8084023820013929, "position": { "x": 5, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5806, - "time": 0.8118133625161666, + "noteOrder": 5808, + "time": 0.8118133625161668, "position": { "x": 7, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5830, - "time": 0.8152243430309404, + "noteOrder": 5832, + "time": 0.8152243430309405, "position": { "x": 4, "y": 0 @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.8595670897229999, + "noteOrder": 6150, + "time": 0.859567089723, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 6172, - "time": 0.8629780702377737, + "noteOrder": 6174, + "time": 0.8629780702377738, "position": { "x": 5, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6198, "time": 0.8663890507525476, "position": { "x": 3, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 6221, + "noteOrder": 6223, "time": 0.8698000312673214, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6269, - "time": 0.876621992296869, + "noteOrder": 6272, + "time": 0.8766219922968691, "position": { "x": 3, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 6367, + "noteOrder": 6369, "time": 0.8902659143559642, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 6464, + "noteOrder": 6467, "time": 0.9039098364150595, "position": { "x": 7, @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6562, - "time": 0.9175537584741547, + "noteOrder": 6565, + "time": 0.9175537584741548, "position": { "x": 3, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6635, - "time": 0.9277867000184761, + "noteOrder": 6638, + "time": 0.9277867000184762, "position": { "x": 7, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6647, - "time": 0.9294921902758629, + "noteOrder": 6650, + "time": 0.929492190275863, "position": { "x": 4, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6660, - "time": 0.9311976805332499, + "noteOrder": 6662, + "time": 0.93119768053325, "position": { "x": 7, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 6684, - "time": 0.9346086610480238, + "noteOrder": 6687, + "time": 0.9346086610480239, "position": { "x": 3, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6696, - "time": 0.9363141513054106, + "noteOrder": 6699, + "time": 0.9363141513054107, "position": { "x": 6, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6708, - "time": 0.9380196415627975, + "noteOrder": 6711, + "time": 0.9380196415627976, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6806, - "time": 0.9516635636218927, + "noteOrder": 6809, + "time": 0.9516635636218929, "position": { "x": 4, "y": 0 @@ -2396,10 +2396,10 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, - "time": 0.013643922059095237, + "time": 0.013643922059095238, "position": { "x": 3, "y": 0 @@ -2419,10 +2419,10 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 122, - "time": 0.017054902573869046, + "time": 0.01705490257386905, "position": { "x": 3, "y": 0 @@ -2442,10 +2442,10 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 195, - "time": 0.027287844118190473, + "time": 0.027287844118190477, "position": { "x": 5, "y": 0 @@ -2465,10 +2465,10 @@ }, { "lineGroupId": 9, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, - "time": 0.04093176617728571, + "time": 0.040931766177285715, "position": { "x": 7, "y": 0 @@ -2488,10 +2488,10 @@ }, { "lineGroupId": 9, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 317, - "time": 0.044342746692059516, + "time": 0.04434274669205952, "position": { "x": 7, "y": 0 @@ -2511,10 +2511,10 @@ }, { "lineGroupId": 9, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 390, - "time": 0.05457568823638095, + "time": 0.054575688236380954, "position": { "x": 5, "y": 0 @@ -2534,10 +2534,10 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.06821961029547619, + "time": 0.0682196102954762, "position": { "x": 3, "y": 0 @@ -2557,10 +2557,10 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 512, - "time": 0.07163059081024999, + "time": 0.07163059081025, "position": { "x": 4, "y": 0 @@ -2580,10 +2580,10 @@ }, { "lineGroupId": 17, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 512, - "time": 0.07163059081024999, + "time": 0.07163059081025, "position": { "x": 4, "y": 0 @@ -2603,7 +2603,7 @@ }, { "lineGroupId": 17, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 537, "time": 0.07504157132502381, @@ -2626,7 +2626,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 537, "time": 0.07504157132502381, @@ -2649,10 +2649,10 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 561, - "time": 0.07845255183979762, + "time": 0.07845255183979763, "position": { "x": 5, "y": 0 @@ -2672,10 +2672,10 @@ }, { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 561, - "time": 0.07845255183979762, + "time": 0.07845255183979763, "position": { "x": 5, "y": 0 @@ -2695,10 +2695,10 @@ }, { "lineGroupId": 19, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 585, - "time": 0.08186353235457142, + "noteOrder": 586, + "time": 0.08186353235457143, "position": { "x": 5, "y": 0 @@ -2718,10 +2718,10 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 683, - "time": 0.09550745441366666, + "time": 0.09550745441366668, "position": { "x": 7, "y": 0 @@ -2741,10 +2741,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 707, - "time": 0.09891843492844048, + "noteOrder": 708, + "time": 0.09891843492844049, "position": { "x": 7, "y": 0 @@ -2764,7 +2764,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 732, "time": 0.10232941544321428, @@ -2787,9 +2787,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 756, + "noteOrder": 757, "time": 0.10574039595798809, "position": { "x": 3, @@ -2810,10 +2810,33 @@ }, { "lineGroupId": 34, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 976, - "time": 0.13643922059095237, + "time": 0.1364392205909524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 34, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 988, + "time": 0.1381447108483393, "position": { "x": 3, "y": 0 @@ -2831,12 +2854,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 34, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 988, + "time": 0.1381447108483393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 35, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1001, + "time": 0.13985020110572619, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1000, - "time": 0.13985020110572616, + "noteOrder": 1013, + "time": 0.1415556913631131, "position": { "x": 6, "y": 0 @@ -2854,11 +2923,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 35, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1013, + "time": 0.1415556913631131, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1073, + "noteOrder": 1074, "time": 0.15008314265004763, "position": { "x": 3, @@ -2879,7 +2971,7 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1098, "time": 0.15349412316482142, @@ -2902,10 +2994,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1122, - "time": 0.15690510367959523, + "noteOrder": 1123, + "time": 0.15690510367959526, "position": { "x": 7, "y": 0 @@ -2925,7 +3017,7 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1147, "time": 0.16031608419436905, @@ -2948,10 +3040,10 @@ }, { "lineGroupId": 42, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1171, - "time": 0.16372706470914283, + "time": 0.16372706470914286, "position": { "x": 4, "y": 0 @@ -2971,9 +3063,9 @@ }, { "lineGroupId": 42, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1183, + "noteOrder": 1184, "time": 0.16543255496652975, "position": { "x": 5, @@ -2994,10 +3086,10 @@ }, { "lineGroupId": 42, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1195, - "time": 0.16713804522391665, + "noteOrder": 1196, + "time": 0.16713804522391668, "position": { "x": 4, "y": 0 @@ -3017,10 +3109,10 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1195, - "time": 0.16713804522391665, + "noteOrder": 1196, + "time": 0.16713804522391668, "position": { "x": 6, "y": 0 @@ -3040,10 +3132,10 @@ }, { "lineGroupId": 43, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1208, - "time": 0.16884353548130357, + "time": 0.1688435354813036, "position": { "x": 5, "y": 0 @@ -3063,7 +3155,7 @@ }, { "lineGroupId": 43, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1220, "time": 0.17054902573869046, @@ -3086,7 +3178,7 @@ }, { "lineGroupId": 44, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1220, "time": 0.17054902573869046, @@ -3109,10 +3201,10 @@ }, { "lineGroupId": 44, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1232, - "time": 0.17225451599607736, + "time": 0.17225451599607738, "position": { "x": 5, "y": 0 @@ -3132,10 +3224,10 @@ }, { "lineGroupId": 44, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1244, - "time": 0.17396000625346428, + "noteOrder": 1245, + "time": 0.1739600062534643, "position": { "x": 4, "y": 0 @@ -3155,10 +3247,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1244, - "time": 0.17396000625346428, + "noteOrder": 1245, + "time": 0.1739600062534643, "position": { "x": 6, "y": 0 @@ -3178,10 +3270,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1256, - "time": 0.17566549651085117, + "noteOrder": 1257, + "time": 0.1756654965108512, "position": { "x": 5, "y": 0 @@ -3201,10 +3293,10 @@ }, { "lineGroupId": 45, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 1269, - "time": 0.17737098676823806, + "time": 0.1773709867682381, "position": { "x": 6, "y": 0 @@ -3224,10 +3316,10 @@ }, { "lineGroupId": 56, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1561, - "time": 0.2183027529455238, + "noteOrder": 1562, + "time": 0.21830275294552381, "position": { "x": 3, "y": 0 @@ -3246,13 +3338,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1586, - "time": 0.2217137334602976, + "noteOrder": 1574, + "time": 0.22000824320291074, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3264,18 +3356,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 56, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1610, - "time": 0.2251247139750714, + "noteOrder": 1574, + "time": 0.22000824320291074, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3292,11 +3384,11 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1634, - "time": 0.2285356944898452, + "noteOrder": 1586, + "time": 0.22171373346029763, "position": { "x": 7, "y": 0 @@ -3315,36 +3407,13 @@ "isPlayAudio": false }, { - "lineGroupId": 72, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 1952, - "time": 0.27287844118190474, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 72, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2000, - "time": 0.2797004022114523, + "noteOrder": 1598, + "time": 0.22341922371768452, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3356,18 +3425,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2244, - "time": 0.31381020735919046, + "noteOrder": 1598, + "time": 0.22341922371768452, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3384,13 +3453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, + "lineGroupId": 58, "indexInLine": 1, "isSliding": false, - "noteOrder": 2269, - "time": 0.31722118787396425, + "noteOrder": 1611, + "time": 0.22512471397507144, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3402,18 +3471,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2293, - "time": 0.3206321683887381, + "noteOrder": 1623, + "time": 0.22683020423245834, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3430,13 +3499,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2317, - "time": 0.3240431489035119, + "noteOrder": 1623, + "time": 0.22683020423245834, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3453,13 +3522,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2342, - "time": 0.32745412941828567, + "noteOrder": 1635, + "time": 0.22853569448984523, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3471,18 +3540,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2391, - "time": 0.3342760904478333, + "noteOrder": 1647, + "time": 0.23024118474723215, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3494,16 +3563,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2342, - "time": 0.32745412941828567, + "noteOrder": 1647, + "time": 0.23024118474723215, "position": { "x": 6, "y": 0 @@ -3522,13 +3591,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, + "lineGroupId": 72, "indexInLine": 1, "isSliding": false, - "noteOrder": 2391, - "time": 0.3342760904478333, + "noteOrder": 1952, + "time": 0.2728784411819048, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3540,16 +3609,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 72, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2537, - "time": 0.35474197353647613, + "noteOrder": 2001, + "time": 0.27970040221145237, "position": { "x": 3, "y": 0 @@ -3568,11 +3637,11 @@ "isPlayAudio": false }, { - "lineGroupId": 92, + "lineGroupId": 82, "indexInLine": 1, "isSliding": false, - "noteOrder": 2586, - "time": 0.36156393456602376, + "noteOrder": 2245, + "time": 0.3138102073591905, "position": { "x": 5, "y": 0 @@ -3586,16 +3655,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 82, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2635, - "time": 0.3683858955955714, + "noteOrder": 2270, + "time": 0.3172211878739643, "position": { "x": 5, "y": 0 @@ -3609,16 +3678,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, + "lineGroupId": 84, "indexInLine": 1, "isSliding": false, - "noteOrder": 2659, - "time": 0.3717968761103452, + "noteOrder": 2294, + "time": 0.3206321683887381, "position": { "x": 5, "y": 0 @@ -3637,11 +3706,11 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2683, - "time": 0.375207856625119, + "noteOrder": 2318, + "time": 0.32404314890351194, "position": { "x": 5, "y": 0 @@ -3655,18 +3724,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 86, "indexInLine": 1, "isSliding": false, - "noteOrder": 2708, - "time": 0.3786188371398928, + "noteOrder": 2343, + "time": 0.3274541294182857, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3678,18 +3747,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, - "indexInLine": 0, + "lineGroupId": 86, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2732, - "time": 0.38202981765466665, + "noteOrder": 2392, + "time": 0.33427609044783335, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3701,16 +3770,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 98, + "lineGroupId": 87, "indexInLine": 1, "isSliding": false, - "noteOrder": 2781, - "time": 0.3888517786842143, + "noteOrder": 2343, + "time": 0.3274541294182857, "position": { "x": 6, "y": 0 @@ -3729,13 +3798,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 87, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2732, - "time": 0.38202981765466665, + "noteOrder": 2392, + "time": 0.33427609044783335, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3747,18 +3816,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 99, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 2781, - "time": 0.3888517786842143, + "noteOrder": 2538, + "time": 0.3547419735364762, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3775,13 +3844,13 @@ "isPlayAudio": false }, { - "lineGroupId": 106, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2927, - "time": 0.4093176617728571, + "noteOrder": 2587, + "time": 0.36156393456602387, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3798,13 +3867,13 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2952, - "time": 0.4127286422876309, + "noteOrder": 2636, + "time": 0.36838589559557144, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3816,18 +3885,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3025, - "time": 0.42296158383195237, + "noteOrder": 2660, + "time": 0.3717968761103453, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3844,13 +3913,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 3049, - "time": 0.42637256434672616, + "noteOrder": 2684, + "time": 0.375207856625119, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3862,18 +3931,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, + "lineGroupId": 96, "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.4366055058910476, + "noteOrder": 2709, + "time": 0.37861883713989286, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3885,18 +3954,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 3, + "lineGroupId": 98, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3171, - "time": 0.4434274669205952, + "noteOrder": 2733, + "time": 0.3820298176546667, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3908,18 +3977,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 98, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.4366055058910476, + "noteOrder": 2782, + "time": 0.3888517786842143, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3936,13 +4005,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 3129, - "time": 0.43745825101974106, + "noteOrder": 2733, + "time": 0.3820298176546667, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3954,18 +4023,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 99, "indexInLine": 2, "isSliding": false, - "noteOrder": 3135, - "time": 0.4383109961484345, + "noteOrder": 2782, + "time": 0.3888517786842143, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -3977,18 +4046,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 3, + "lineGroupId": 106, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3141, - "time": 0.43916374127712793, + "noteOrder": 2928, + "time": 0.4093176617728571, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4000,16 +4069,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 4, + "lineGroupId": 106, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3147, - "time": 0.44001648640582136, + "noteOrder": 2941, + "time": 0.41102315203024403, "position": { "x": 3, "y": 0 @@ -4023,16 +4092,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 5, + "lineGroupId": 106, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3153, - "time": 0.44086923153451485, + "noteOrder": 2941, + "time": 0.41102315203024403, "position": { "x": 4, "y": 0 @@ -4046,18 +4115,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 6, + "lineGroupId": 107, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3159, - "time": 0.44172197666320834, + "noteOrder": 2953, + "time": 0.41272864228763095, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4074,13 +4143,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 7, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3165, - "time": 0.4425747217919017, + "noteOrder": 2965, + "time": 0.4144341325450179, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4097,13 +4166,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 8, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3171, - "time": 0.4434274669205952, + "noteOrder": 2965, + "time": 0.4144341325450179, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4120,11 +4189,11 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3318, - "time": 0.46389335000923804, + "noteOrder": 3026, + "time": 0.42296158383195237, "position": { "x": 7, "y": 0 @@ -4138,18 +4207,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3366, - "time": 0.4707153110387857, + "noteOrder": 3050, + "time": 0.4263725643467262, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4161,18 +4230,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3415, - "time": 0.4775372720683333, + "noteOrder": 3124, + "time": 0.43660550589104763, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4184,18 +4253,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3440, - "time": 0.48094825258310714, + "noteOrder": 3172, + "time": 0.44342746692059526, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4207,18 +4276,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, - "time": 0.4843592330978809, + "noteOrder": 3124, + "time": 0.43660550589104763, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4230,18 +4299,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3488, - "time": 0.4877702136126547, + "noteOrder": 3130, + "time": 0.4374582510197411, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4253,18 +4322,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3513, - "time": 0.49118119412742856, + "noteOrder": 3136, + "time": 0.43831099614843455, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4276,18 +4345,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3562, - "time": 0.49800315515697613, + "noteOrder": 3142, + "time": 0.439163741277128, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4299,18 +4368,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3513, - "time": 0.49118119412742856, + "noteOrder": 3148, + "time": 0.44001648640582147, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4327,13 +4396,13 @@ "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 6, "isSliding": false, - "noteOrder": 3562, - "time": 0.49800315515697613, + "noteOrder": 3154, + "time": 0.44086923153451485, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4350,13 +4419,13 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 7, "isSliding": false, - "noteOrder": 4001, - "time": 0.5594008044229046, + "noteOrder": 3160, + "time": 0.44172197666320834, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4373,11 +4442,11 @@ "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 8, "isSliding": false, - "noteOrder": 4049, - "time": 0.5662227654524523, + "noteOrder": 3166, + "time": 0.44257472179190177, "position": { "x": 6, "y": 0 @@ -4396,13 +4465,13 @@ "isPlayAudio": false }, { - "lineGroupId": 145, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 9, "isSliding": false, - "noteOrder": 4098, - "time": 0.5730447264819999, + "noteOrder": 3172, + "time": 0.44342746692059526, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4414,18 +4483,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 145, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 4147, - "time": 0.5798666875115476, + "noteOrder": 3319, + "time": 0.4638933500092381, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4437,18 +4506,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 147, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4196, - "time": 0.5866886485410951, + "noteOrder": 3368, + "time": 0.4707153110387857, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4465,13 +4534,13 @@ "isPlayAudio": false }, { - "lineGroupId": 147, + "lineGroupId": 121, "indexInLine": 1, "isSliding": false, - "noteOrder": 4220, - "time": 0.590099629055869, + "noteOrder": 3416, + "time": 0.47753727206833335, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4488,13 +4557,13 @@ "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4245, - "time": 0.5935106095706428, + "noteOrder": 3441, + "time": 0.48094825258310714, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4506,18 +4575,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, + "lineGroupId": 123, "indexInLine": 1, "isSliding": false, - "noteOrder": 4269, - "time": 0.5969215900854166, + "noteOrder": 3465, + "time": 0.484359233097881, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4534,13 +4603,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4293, - "time": 0.6003325706001905, + "noteOrder": 3490, + "time": 0.48777021361265477, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4552,18 +4621,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 4306, - "time": 0.6020380608575773, + "noteOrder": 3514, + "time": 0.4911811941274286, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4575,18 +4644,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 151, + "lineGroupId": 125, "indexInLine": 2, "isSliding": false, - "noteOrder": 4318, - "time": 0.6037435511149642, + "noteOrder": 3563, + "time": 0.4980031551569762, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4598,18 +4667,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 126, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4318, - "time": 0.6037435511149642, + "noteOrder": 3514, + "time": 0.4911811941274286, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4621,18 +4690,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 126, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4330, - "time": 0.6054490413723511, + "noteOrder": 3563, + "time": 0.4980031551569762, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4644,18 +4713,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 2, + "lineGroupId": 143, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4342, - "time": 0.6071545316297381, + "noteOrder": 4002, + "time": 0.5594008044229047, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4667,16 +4736,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 143, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4391, - "time": 0.6139764926592857, + "noteOrder": 4051, + "time": 0.5662227654524524, "position": { "x": 6, "y": 0 @@ -4695,13 +4764,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4440, - "time": 0.6207984536888334, + "noteOrder": 4100, + "time": 0.573044726482, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4718,13 +4787,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 145, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4586, - "time": 0.6412643367774762, + "noteOrder": 4149, + "time": 0.5798666875115477, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4741,13 +4810,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 147, "indexInLine": 1, "isSliding": false, - "noteOrder": 4611, - "time": 0.6446753172922499, + "noteOrder": 4197, + "time": 0.5866886485410953, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4759,18 +4828,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 165, + "lineGroupId": 147, "indexInLine": 2, "isSliding": false, - "noteOrder": 4659, - "time": 0.6514972783217975, + "noteOrder": 4222, + "time": 0.5900996290558691, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4782,18 +4851,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 0, + "lineGroupId": 149, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4684, - "time": 0.6549082588365713, + "noteOrder": 4246, + "time": 0.5935106095706428, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4810,13 +4879,13 @@ "isPlayAudio": false }, { - "lineGroupId": 169, - "indexInLine": 1, + "lineGroupId": 149, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, - "time": 0.661730219866119, + "noteOrder": 4271, + "time": 0.5969215900854167, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -4833,13 +4902,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4781, - "time": 0.6685521808956666, + "noteOrder": 4295, + "time": 0.6003325706001905, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4856,13 +4925,13 @@ "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 1, + "lineGroupId": 151, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.6719631614104403, + "noteOrder": 4307, + "time": 0.6020380608575774, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4879,11 +4948,11 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 151, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4830, - "time": 0.6753741419252143, + "noteOrder": 4319, + "time": 0.6037435511149644, "position": { "x": 4, "y": 0 @@ -4897,18 +4966,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 173, + "lineGroupId": 152, "indexInLine": 1, "isSliding": false, - "noteOrder": 4854, - "time": 0.6787851224399881, + "noteOrder": 4319, + "time": 0.6037435511149644, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4925,13 +4994,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, - "indexInLine": 0, + "lineGroupId": 152, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4879, - "time": 0.6821961029547619, + "noteOrder": 4332, + "time": 0.6054490413723512, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4943,18 +5012,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 152, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4344, + "time": 0.6071545316297381, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 4891, - "time": 0.6839015932121488, + "noteOrder": 4393, + "time": 0.6139764926592857, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -4971,13 +5063,13 @@ "isPlayAudio": false }, { - "lineGroupId": 175, + "lineGroupId": 155, "indexInLine": 2, "isSliding": false, - "noteOrder": 4903, - "time": 0.6856070834695357, + "noteOrder": 4405, + "time": 0.6156819829166726, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4994,13 +5086,13 @@ "isPlayAudio": false }, { - "lineGroupId": 176, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4903, - "time": 0.6856070834695357, + "noteOrder": 4405, + "time": 0.6156819829166726, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5012,18 +5104,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 157, "indexInLine": 1, "isSliding": false, - "noteOrder": 4915, - "time": 0.6873125737269226, + "noteOrder": 4441, + "time": 0.6207984536888334, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5040,11 +5132,11 @@ "isPlayAudio": false }, { - "lineGroupId": 176, + "lineGroupId": 157, "indexInLine": 2, "isSliding": false, - "noteOrder": 4928, - "time": 0.6890180639843094, + "noteOrder": 4454, + "time": 0.6225039439462202, "position": { "x": 6, "y": 0 @@ -5063,13 +5155,13 @@ "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 157, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5025, - "time": 0.7026619860434047, + "noteOrder": 4454, + "time": 0.6225039439462202, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5081,16 +5173,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5050, - "time": 0.7060729665581785, + "noteOrder": 4588, + "time": 0.6412643367774762, "position": { "x": 3, "y": 0 @@ -5109,11 +5201,11 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 3, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5123, - "time": 0.7163059081024999, + "noteOrder": 4612, + "time": 0.64467531729225, "position": { "x": 3, "y": 0 @@ -5132,13 +5224,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5074, - "time": 0.7094839470729523, + "noteOrder": 4661, + "time": 0.6514972783217977, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5150,18 +5242,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 169, "indexInLine": 1, "isSliding": false, - "noteOrder": 5123, - "time": 0.7163059081024999, + "noteOrder": 4685, + "time": 0.6549082588365714, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5173,18 +5265,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 169, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5172, - "time": 0.7231278691320475, + "noteOrder": 4734, + "time": 0.661730219866119, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5196,18 +5288,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5196, - "time": 0.7265388496468214, + "noteOrder": 4783, + "time": 0.6685521808956667, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5219,18 +5311,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5220, - "time": 0.7299498301615951, + "noteOrder": 4807, + "time": 0.6719631614104405, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5247,13 +5339,13 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5245, - "time": 0.733360810676369, + "noteOrder": 4832, + "time": 0.6753741419252144, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5270,13 +5362,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5367, - "time": 0.750415713250238, + "noteOrder": 4856, + "time": 0.6787851224399881, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5293,13 +5385,13 @@ "isPlayAudio": false }, { - "lineGroupId": 194, + "lineGroupId": 175, "indexInLine": 1, "isSliding": false, - "noteOrder": 5391, - "time": 0.7538266937650119, + "noteOrder": 4881, + "time": 0.6821961029547619, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5311,16 +5403,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 194, + "lineGroupId": 175, "indexInLine": 2, "isSliding": false, - "noteOrder": 5440, - "time": 0.7606486547945595, + "noteOrder": 4893, + "time": 0.6839015932121488, "position": { "x": 5, "y": 0 @@ -5334,18 +5426,1812 @@ "y": 1, "z": 1 }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 175, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4905, + "time": 0.6856070834695357, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4905, + "time": 0.6856070834695357, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4917, + "time": 0.6873125737269227, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 176, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4929, + "time": 0.6890180639843095, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5027, + "time": 0.7026619860434048, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5039, + "time": 0.7043674763007917, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 180, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5039, + "time": 0.7043674763007917, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5052, + "time": 0.7060729665581785, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5064, + "time": 0.7077784568155655, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5064, + "time": 0.7077784568155655, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5076, + "time": 0.7094839470729524, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5076, + "time": 0.7094839470729524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5125, + "time": 0.7163059081025, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5076, + "time": 0.7094839470729524, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5125, + "time": 0.7163059081025, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5174, + "time": 0.7231278691320477, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5186, + "time": 0.7248333593894346, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5186, + "time": 0.7248333593894346, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5198, + "time": 0.7265388496468214, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5198, + "time": 0.7265388496468214, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5198, + "time": 0.7265388496468214, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5210, + "time": 0.7282443399042083, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5210, + "time": 0.7282443399042083, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7299498301615952, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7299498301615952, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7299498301615952, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5235, + "time": 0.7316553204189822, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5235, + "time": 0.7316553204189822, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5247, + "time": 0.733360810676369, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5247, + "time": 0.733360810676369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5247, + "time": 0.733360810676369, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5259, + "time": 0.735066300933756, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5259, + "time": 0.735066300933756, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5271, + "time": 0.7367717911911429, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5271, + "time": 0.7367717911911429, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5369, + "time": 0.750415713250238, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5393, + "time": 0.7538266937650119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5442, + "time": 0.7606486547945596, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5466, + "time": 0.7640596353093334, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5491, + "time": 0.7674706158241072, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5515, + "time": 0.7708815963388809, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5540, + "time": 0.7742925768536547, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5564, + "time": 0.7777035573684286, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5613, + "time": 0.7845255183979762, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5613, + "time": 0.7845255183979762, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5637, + "time": 0.7879364989127501, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 204, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5662, + "time": 0.7913474794275239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5662, + "time": 0.7913474794275239, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5674, + "time": 0.7930529696849107, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 206, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5686, + "time": 0.7947584599422975, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5686, + "time": 0.7947584599422975, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5698, + "time": 0.7964639501996845, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5710, + "time": 0.7981694404570714, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5710, + "time": 0.7981694404570714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5723, + "time": 0.7998749307144584, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 208, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5735, + "time": 0.8015804209718452, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5857, + "time": 0.8186353235457142, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5869, + "time": 0.8203408138031012, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5869, + "time": 0.8203408138031012, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5881, + "time": 0.8220463040604881, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5893, + "time": 0.823751794317875, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5893, + "time": 0.823751794317875, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 5906, + "time": 0.8254572845752619, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 5906, + "time": 0.8254572845752619, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 215, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 5930, + "time": 0.8288682650900357, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5906, + "time": 0.8254572845752619, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 216, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5930, + "time": 0.8288682650900357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6052, + "time": 0.8459231676639047, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6064, + "time": 0.8476286579212917, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6064, + "time": 0.8476286579212917, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6076, + "time": 0.8493341481786786, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 219, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6076, + "time": 0.8493341481786786, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6076, + "time": 0.8493341481786786, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6089, + "time": 0.8510396384360656, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 6089, + "time": 0.8510396384360656, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 6101, + "time": 0.8527451286934524, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 220, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 6101, + "time": 0.8527451286934524, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 221, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6101, + "time": 0.8527451286934524, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5464, - "time": 0.7640596353093333, + "noteOrder": 6113, + "time": 0.8544506189508393, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5362,13 +7248,13 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5489, - "time": 0.767470615824107, + "noteOrder": 6113, + "time": 0.8544506189508393, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5385,13 +7271,13 @@ "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5513, - "time": 0.770881596338881, + "noteOrder": 6125, + "time": 0.8561561092082263, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5403,18 +7289,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5538, - "time": 0.7742925768536547, + "noteOrder": 6125, + "time": 0.8561561092082263, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5426,18 +7312,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5562, - "time": 0.7777035573684286, + "noteOrder": 6125, + "time": 0.8561561092082263, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5454,13 +7340,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5611, - "time": 0.7845255183979761, + "noteOrder": 6137, + "time": 0.8578615994656131, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5477,11 +7363,11 @@ "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5611, - "time": 0.7845255183979761, + "noteOrder": 6137, + "time": 0.8578615994656131, "position": { "x": 4, "y": 0 @@ -5495,16 +7381,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 1, + "lineGroupId": 222, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5635, - "time": 0.7879364989127499, + "noteOrder": 6150, + "time": 0.859567089723, "position": { "x": 4, "y": 0 @@ -5518,18 +7404,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 204, - "indexInLine": 2, + "lineGroupId": 222, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5659, - "time": 0.7913474794275238, + "noteOrder": 6150, + "time": 0.859567089723, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5541,18 +7427,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5659, - "time": 0.7913474794275238, + "noteOrder": 6247, + "time": 0.8732110117820953, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5569,13 +7455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 1, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5672, - "time": 0.7930529696849106, + "noteOrder": 6272, + "time": 0.8766219922968691, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -5592,13 +7478,13 @@ "isPlayAudio": false }, { - "lineGroupId": 206, - "indexInLine": 2, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5684, - "time": 0.7947584599422975, + "noteOrder": 6296, + "time": 0.8800329728116429, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5615,13 +7501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5684, - "time": 0.7947584599422975, + "noteOrder": 6345, + "time": 0.8868549338411905, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -5638,13 +7524,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5696, - "time": 0.7964639501996844, + "noteOrder": 6369, + "time": 0.8902659143559642, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -5661,13 +7547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 2, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5708, - "time": 0.7981694404570714, + "noteOrder": 6394, + "time": 0.8936768948707381, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5684,13 +7570,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 0, + "lineGroupId": 233, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5708, - "time": 0.7981694404570714, + "noteOrder": 6443, + "time": 0.9004988559002858, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5707,13 +7593,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 1, + "lineGroupId": 233, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5720, - "time": 0.7998749307144583, + "noteOrder": 6455, + "time": 0.9022043461576726, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5730,13 +7616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 208, - "indexInLine": 2, + "lineGroupId": 233, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5733, - "time": 0.8015804209718451, + "noteOrder": 6455, + "time": 0.9022043461576726, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -5753,13 +7639,13 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5855, - "time": 0.8186353235457142, + "noteOrder": 6491, + "time": 0.9073208169298334, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5771,18 +7657,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 235, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5879, - "time": 0.822046304060488, + "noteOrder": 6504, + "time": 0.9090263071872202, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5799,13 +7685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 215, + "lineGroupId": 235, "indexInLine": 3, "isSliding": false, - "noteOrder": 5928, - "time": 0.8288682650900356, + "noteOrder": 6504, + "time": 0.9090263071872202, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5822,13 +7708,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5903, - "time": 0.8254572845752618, + "noteOrder": 6516, + "time": 0.9107317974446072, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5845,13 +7731,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5928, - "time": 0.8288682650900356, + "noteOrder": 6528, + "time": 0.9124372877019941, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5868,13 +7754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 219, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6050, - "time": 0.8459231676639047, + "noteOrder": 6528, + "time": 0.9124372877019941, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5886,16 +7772,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6074, - "time": 0.8493341481786786, + "noteOrder": 6540, + "time": 0.9141427779593809, "position": { "x": 3, "y": 0 @@ -5909,16 +7795,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6099, - "time": 0.8527451286934523, + "noteOrder": 6552, + "time": 0.9158482682167679, "position": { "x": 3, "y": 0 @@ -5937,13 +7823,13 @@ "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6123, - "time": 0.8561561092082262, + "noteOrder": 6552, + "time": 0.9158482682167679, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5955,16 +7841,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6245, - "time": 0.8732110117820951, + "noteOrder": 6589, + "time": 0.9209647389889286, "position": { "x": 6, "y": 0 @@ -5983,11 +7869,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6269, - "time": 0.876621992296869, + "noteOrder": 6601, + "time": 0.9226702292463156, "position": { "x": 6, "y": 0 @@ -6006,11 +7892,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 2, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6294, - "time": 0.8800329728116427, + "noteOrder": 6601, + "time": 0.9226702292463156, "position": { "x": 5, "y": 0 @@ -6029,13 +7915,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6343, - "time": 0.8868549338411904, + "noteOrder": 6613, + "time": 0.9243757195037025, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6052,13 +7938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 1, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6367, - "time": 0.8902659143559642, + "noteOrder": 6626, + "time": 0.9260812097610892, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -6075,11 +7961,11 @@ "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 2, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6391, - "time": 0.893676894870738, + "noteOrder": 6626, + "time": 0.9260812097610892, "position": { "x": 5, "y": 0 @@ -6098,13 +7984,13 @@ "isPlayAudio": false }, { - "lineGroupId": 233, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6440, - "time": 0.9004988559002856, + "noteOrder": 6735, + "time": 0.9414306220775714, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6121,13 +8007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 235, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6489, - "time": 0.9073208169298332, + "noteOrder": 6748, + "time": 0.9431361123349584, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6139,18 +8025,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 247, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6513, - "time": 0.9107317974446071, + "noteOrder": 6748, + "time": 0.9431361123349584, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6167,13 +8053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6538, - "time": 0.9141427779593808, + "noteOrder": 6760, + "time": 0.9448416025923453, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -6190,13 +8076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6586, - "time": 0.9209647389889284, + "noteOrder": 6772, + "time": 0.9465470928497323, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -6208,18 +8094,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 248, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6611, - "time": 0.9243757195037023, + "noteOrder": 6772, + "time": 0.9465470928497323, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6236,11 +8122,11 @@ "isPlayAudio": false }, { - "lineGroupId": 247, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6733, - "time": 0.9414306220775714, + "noteOrder": 6784, + "time": 0.9482525831071191, "position": { "x": 6, "y": 0 @@ -6259,13 +8145,13 @@ "isPlayAudio": false }, { - "lineGroupId": 248, - "indexInLine": 0, + "lineGroupId": 249, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6757, - "time": 0.9448416025923452, + "noteOrder": 6796, + "time": 0.9499580733645059, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -6277,18 +8163,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 249, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6782, - "time": 0.948252583107119, + "noteOrder": 6796, + "time": 0.9499580733645059, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6306,10 +8192,10 @@ }, { "lineGroupId": 251, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6830, - "time": 0.9550745441366666, + "noteOrder": 6833, + "time": 0.9550745441366667, "position": { "x": 3, "y": 0 @@ -6329,9 +8215,9 @@ }, { "lineGroupId": 251, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6879, + "noteOrder": 6882, "time": 0.9618965051662143, "position": { "x": 3, @@ -6352,10 +8238,10 @@ }, { "lineGroupId": 251, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6904, - "time": 0.965307485680988, + "noteOrder": 6906, + "time": 0.9653074856809881, "position": { "x": 7, "y": 0 @@ -6375,10 +8261,10 @@ }, { "lineGroupId": 251, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6940, - "time": 0.9704239564531487, + "noteOrder": 6943, + "time": 0.9704239564531489, "position": { "x": 7, "y": 0 @@ -6398,10 +8284,10 @@ }, { "lineGroupId": 252, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6830, - "time": 0.9550745441366666, + "noteOrder": 6833, + "time": 0.9550745441366667, "position": { "x": 7, "y": 0 @@ -6421,9 +8307,9 @@ }, { "lineGroupId": 252, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6879, + "noteOrder": 6882, "time": 0.9618965051662143, "position": { "x": 7, @@ -6444,10 +8330,10 @@ }, { "lineGroupId": 252, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6904, - "time": 0.965307485680988, + "noteOrder": 6906, + "time": 0.9653074856809881, "position": { "x": 3, "y": 0 @@ -6467,10 +8353,10 @@ }, { "lineGroupId": 252, - "indexInLine": 3, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6940, - "time": 0.9704239564531487, + "noteOrder": 6943, + "time": 0.9704239564531489, "position": { "x": 3, "y": 0 diff --git "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1b.json" "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1b.json" index 72a8bcb2..eddde8a3 100644 --- "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1b.json" +++ "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/332_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 244, - "time": 0.03410980514773809, + "time": 0.0341098051477381, "position": { "x": 5, "y": 0 @@ -34,7 +34,7 @@ }, { "noteOrder": 439, - "time": 0.06139764926592857, + "time": 0.061397649265928576, "position": { "x": 5, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 634, - "time": 0.08868549338411903, + "time": 0.08868549338411905, "position": { "x": 5, "y": 0 @@ -73,8 +73,8 @@ "isPlayAudio": false }, { - "noteOrder": 878, - "time": 0.12279529853185714, + "noteOrder": 879, + "time": 0.12279529853185715, "position": { "x": 4, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 927, - "time": 0.12961725956140474, + "time": 0.12961725956140477, "position": { "x": 4, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 976, - "time": 0.13643922059095237, + "time": 0.1364392205909524, "position": { "x": 3, "y": 0 @@ -133,8 +133,8 @@ "isPlayAudio": false }, { - "noteOrder": 1000, - "time": 0.13985020110572616, + "noteOrder": 1001, + "time": 0.13985020110572619, "position": { "x": 6, "y": 0 @@ -154,7 +154,7 @@ }, { "noteOrder": 1025, - "time": 0.14326118162049997, + "time": 0.1432611816205, "position": { "x": 3, "y": 0 @@ -173,7 +173,7 @@ "isPlayAudio": false }, { - "noteOrder": 1073, + "noteOrder": 1074, "time": 0.15008314265004763, "position": { "x": 6, @@ -193,8 +193,8 @@ "isPlayAudio": false }, { - "noteOrder": 1122, - "time": 0.15690510367959523, + "noteOrder": 1123, + "time": 0.15690510367959526, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 1171, - "time": 0.16372706470914283, + "time": 0.16372706470914286, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 1195, - "time": 0.16713804522391665, + "noteOrder": 1196, + "time": 0.16713804522391668, "position": { "x": 4, "y": 0 @@ -273,8 +273,8 @@ "isPlayAudio": false }, { - "noteOrder": 1244, - "time": 0.17396000625346428, + "noteOrder": 1245, + "time": 0.1739600062534643, "position": { "x": 4, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 1561, - "time": 0.2183027529455238, + "noteOrder": 1562, + "time": 0.21830275294552381, "position": { "x": 6, "y": 0 @@ -314,7 +314,7 @@ }, { "noteOrder": 1586, - "time": 0.2217137334602976, + "time": 0.22171373346029763, "position": { "x": 4, "y": 0 @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 1610, - "time": 0.2251247139750714, + "noteOrder": 1611, + "time": 0.22512471397507144, "position": { "x": 6, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2000, - "time": 0.2797004022114523, + "noteOrder": 2001, + "time": 0.27970040221145237, "position": { "x": 7, "y": 0 @@ -373,8 +373,8 @@ "isPlayAudio": false }, { - "noteOrder": 2049, - "time": 0.28652236324099994, + "noteOrder": 2050, + "time": 0.286522363241, "position": { "x": 7, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2098, - "time": 0.2933443242705476, + "noteOrder": 2099, + "time": 0.29334432427054763, "position": { "x": 3, "y": 0 @@ -413,7 +413,7 @@ "isPlayAudio": false }, { - "noteOrder": 2147, + "noteOrder": 2148, "time": 0.30016628530009526, "position": { "x": 6, @@ -433,7 +433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2171, + "noteOrder": 2172, "time": 0.30357726581486905, "position": { "x": 4, @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 2195, + "noteOrder": 2196, "time": 0.30698824632964283, "position": { "x": 7, @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2293, + "noteOrder": 2294, "time": 0.3206321683887381, "position": { "x": 7, @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2439, + "noteOrder": 2440, "time": 0.3410980514773809, "position": { "x": 4, @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2488, - "time": 0.34792001250692856, + "noteOrder": 2489, + "time": 0.3479200125069286, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2537, - "time": 0.35474197353647613, + "noteOrder": 2538, + "time": 0.3547419735364762, "position": { "x": 3, "y": 0 @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2561, - "time": 0.35815295405124997, + "noteOrder": 2562, + "time": 0.35815295405125, "position": { "x": 5, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2586, - "time": 0.36156393456602376, + "noteOrder": 2587, + "time": 0.36156393456602387, "position": { "x": 3, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2830, - "time": 0.3956737397137619, + "noteOrder": 2831, + "time": 0.39567373971376196, "position": { "x": 3, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2879, - "time": 0.4024957007433095, + "noteOrder": 2880, + "time": 0.40249570074330954, "position": { "x": 7, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2927, + "noteOrder": 2928, "time": 0.4093176617728571, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2952, - "time": 0.4127286422876309, + "noteOrder": 2953, + "time": 0.41272864228763095, "position": { "x": 6, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2976, - "time": 0.41613962280240474, + "noteOrder": 2977, + "time": 0.4161396228024048, "position": { "x": 3, "y": 0 @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3074, - "time": 0.42978354486149994, + "noteOrder": 3075, + "time": 0.4297835448615, "position": { "x": 3, "y": 0 @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3220, - "time": 0.4502494279501428, + "noteOrder": 3221, + "time": 0.4502494279501429, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 3269, - "time": 0.4570713889796904, + "noteOrder": 3270, + "time": 0.45707138897969046, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3318, - "time": 0.46389335000923804, + "noteOrder": 3319, + "time": 0.4638933500092381, "position": { "x": 7, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3342, - "time": 0.4673043305240119, + "noteOrder": 3343, + "time": 0.46730433052401193, "position": { "x": 5, "y": 0 @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3368, "time": 0.4707153110387857, "position": { "x": 7, @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3562, - "time": 0.49800315515697613, + "noteOrder": 3563, + "time": 0.4980031551569762, "position": { "x": 7, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4293, + "noteOrder": 4295, "time": 0.6003325706001905, "position": { "x": 6, @@ -853,8 +853,8 @@ "isPlayAudio": false }, { - "noteOrder": 4318, - "time": 0.6037435511149642, + "noteOrder": 4319, + "time": 0.6037435511149644, "position": { "x": 4, "y": 0 @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4344, "time": 0.6071545316297381, "position": { "x": 6, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 4489, - "time": 0.6276204147183809, + "noteOrder": 4490, + "time": 0.627620414718381, "position": { "x": 7, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4513, - "time": 0.6310313952331547, + "noteOrder": 4515, + "time": 0.6310313952331548, "position": { "x": 7, "y": 0 @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 4537, - "time": 0.6344423757479285, + "noteOrder": 4539, + "time": 0.6344423757479286, "position": { "x": 7, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4635, - "time": 0.6480862978070238, + "noteOrder": 4637, + "time": 0.6480862978070239, "position": { "x": 4, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 4659, - "time": 0.6514972783217975, + "noteOrder": 4661, + "time": 0.6514972783217977, "position": { "x": 6, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 4830, - "time": 0.6753741419252143, + "noteOrder": 4832, + "time": 0.6753741419252144, "position": { "x": 6, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 4879, + "noteOrder": 4881, "time": 0.6821961029547619, "position": { "x": 6, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4928, - "time": 0.6890180639843094, + "noteOrder": 4929, + "time": 0.6890180639843095, "position": { "x": 8, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5025, - "time": 0.7026619860434047, + "noteOrder": 5027, + "time": 0.7026619860434048, "position": { "x": 6, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 5050, + "noteOrder": 5052, "time": 0.7060729665581785, "position": { "x": 7, @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 5269, - "time": 0.7367717911911428, + "noteOrder": 5271, + "time": 0.7367717911911429, "position": { "x": 3, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 5294, - "time": 0.7401827717059166, + "noteOrder": 5296, + "time": 0.7401827717059167, "position": { "x": 3, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5318, - "time": 0.7435937522206904, + "noteOrder": 5320, + "time": 0.7435937522206906, "position": { "x": 3, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5416, - "time": 0.7572376742797856, + "noteOrder": 5418, + "time": 0.7572376742797857, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5440, - "time": 0.7606486547945595, + "noteOrder": 5442, + "time": 0.7606486547945596, "position": { "x": 4, "y": 0 @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 5611, - "time": 0.7845255183979761, + "noteOrder": 5613, + "time": 0.7845255183979762, "position": { "x": 4, "y": 0 @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 5659, - "time": 0.7913474794275238, + "noteOrder": 5662, + "time": 0.7913474794275239, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5708, + "noteOrder": 5710, "time": 0.7981694404570714, "position": { "x": 2, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5855, + "noteOrder": 5857, "time": 0.8186353235457142, "position": { "x": 3, @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5879, - "time": 0.822046304060488, + "noteOrder": 5881, + "time": 0.8220463040604881, "position": { "x": 6, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 5903, - "time": 0.8254572845752618, + "noteOrder": 5906, + "time": 0.8254572845752619, "position": { "x": 3, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6050, + "noteOrder": 6052, "time": 0.8459231676639047, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 6074, + "noteOrder": 6076, "time": 0.8493341481786786, "position": { "x": 4, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6099, - "time": 0.8527451286934523, + "noteOrder": 6101, + "time": 0.8527451286934524, "position": { "x": 6, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6147, - "time": 0.8595670897229999, + "noteOrder": 6150, + "time": 0.859567089723, "position": { "x": 5, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6172, - "time": 0.8629780702377737, + "noteOrder": 6174, + "time": 0.8629780702377738, "position": { "x": 7, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 6196, + "noteOrder": 6198, "time": 0.8663890507525476, "position": { "x": 4, @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6221, + "noteOrder": 6223, "time": 0.8698000312673214, "position": { "x": 4, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6635, - "time": 0.9277867000184761, + "noteOrder": 6638, + "time": 0.9277867000184762, "position": { "x": 4, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 6660, - "time": 0.9311976805332499, + "noteOrder": 6662, + "time": 0.93119768053325, "position": { "x": 7, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 6684, - "time": 0.9346086610480238, + "noteOrder": 6687, + "time": 0.9346086610480239, "position": { "x": 5, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 6733, + "noteOrder": 6735, "time": 0.9414306220775714, "position": { "x": 7, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 6757, - "time": 0.9448416025923452, + "noteOrder": 6760, + "time": 0.9448416025923453, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 6782, - "time": 0.948252583107119, + "noteOrder": 6784, + "time": 0.9482525831071191, "position": { "x": 6, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 6806, - "time": 0.9516635636218927, + "noteOrder": 6809, + "time": 0.9516635636218929, "position": { "x": 4, "y": 0 @@ -1596,10 +1596,10 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 98, - "time": 0.013643922059095237, + "time": 0.013643922059095238, "position": { "x": 3, "y": 0 @@ -1619,10 +1619,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 146, - "time": 0.020465883088642854, + "time": 0.020465883088642858, "position": { "x": 3, "y": 0 @@ -1642,10 +1642,10 @@ }, { "lineGroupId": 1, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 195, - "time": 0.027287844118190473, + "time": 0.027287844118190477, "position": { "x": 5, "y": 0 @@ -1665,10 +1665,10 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 293, - "time": 0.04093176617728571, + "time": 0.040931766177285715, "position": { "x": 7, "y": 0 @@ -1688,10 +1688,10 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 342, - "time": 0.04775372720683333, + "time": 0.04775372720683334, "position": { "x": 7, "y": 0 @@ -1711,10 +1711,10 @@ }, { "lineGroupId": 3, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 390, - "time": 0.05457568823638095, + "time": 0.054575688236380954, "position": { "x": 5, "y": 0 @@ -1734,10 +1734,10 @@ }, { "lineGroupId": 5, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 488, - "time": 0.06821961029547619, + "time": 0.0682196102954762, "position": { "x": 6, "y": 0 @@ -1757,7 +1757,7 @@ }, { "lineGroupId": 5, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 537, "time": 0.07504157132502381, @@ -1780,10 +1780,10 @@ }, { "lineGroupId": 5, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 585, - "time": 0.08186353235457142, + "noteOrder": 586, + "time": 0.08186353235457143, "position": { "x": 4, "y": 0 @@ -1803,10 +1803,10 @@ }, { "lineGroupId": 7, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 683, - "time": 0.09550745441366666, + "time": 0.09550745441366668, "position": { "x": 4, "y": 0 @@ -1826,7 +1826,7 @@ }, { "lineGroupId": 7, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 732, "time": 0.10232941544321428, @@ -1849,10 +1849,10 @@ }, { "lineGroupId": 7, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 781, - "time": 0.1091513764727619, + "time": 0.10915137647276191, "position": { "x": 6, "y": 0 @@ -1872,7 +1872,7 @@ }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1464, "time": 0.20465883088642856, @@ -1895,10 +1895,10 @@ }, { "lineGroupId": 22, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1488, - "time": 0.20806981140120237, + "noteOrder": 1489, + "time": 0.2080698114012024, "position": { "x": 6, "y": 0 @@ -1918,9 +1918,9 @@ }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1512, + "noteOrder": 1513, "time": 0.21148079191597619, "position": { "x": 3, @@ -1941,10 +1941,10 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1537, - "time": 0.21489177243074997, + "time": 0.21489177243075, "position": { "x": 4, "y": 0 @@ -1964,10 +1964,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1952, - "time": 0.27287844118190474, + "time": 0.2728784411819048, "position": { "x": 3, "y": 0 @@ -1987,10 +1987,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2000, - "time": 0.2797004022114523, + "noteOrder": 2001, + "time": 0.27970040221145237, "position": { "x": 3, "y": 0 @@ -2010,10 +2010,10 @@ }, { "lineGroupId": 40, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2244, - "time": 0.31381020735919046, + "noteOrder": 2245, + "time": 0.3138102073591905, "position": { "x": 4, "y": 0 @@ -2033,9 +2033,9 @@ }, { "lineGroupId": 40, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2293, + "noteOrder": 2294, "time": 0.3206321683887381, "position": { "x": 4, @@ -2056,10 +2056,10 @@ }, { "lineGroupId": 40, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2342, - "time": 0.32745412941828567, + "noteOrder": 2343, + "time": 0.3274541294182857, "position": { "x": 6, "y": 0 @@ -2079,10 +2079,10 @@ }, { "lineGroupId": 48, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2635, - "time": 0.3683858955955714, + "noteOrder": 2636, + "time": 0.36838589559557144, "position": { "x": 6, "y": 0 @@ -2101,13 +2101,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2683, - "time": 0.375207856625119, + "noteOrder": 2660, + "time": 0.3717968761103453, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2119,16 +2119,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 48, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3025, - "time": 0.42296158383195237, + "noteOrder": 2660, + "time": 0.3717968761103453, "position": { "x": 6, "y": 0 @@ -2147,13 +2147,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 49, "indexInLine": 1, "isSliding": false, - "noteOrder": 3074, - "time": 0.42978354486149994, + "noteOrder": 2684, + "time": 0.375207856625119, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2165,16 +2165,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 57, + "lineGroupId": 49, "indexInLine": 2, "isSliding": false, - "noteOrder": 3122, - "time": 0.4366055058910476, + "noteOrder": 2709, + "time": 0.37861883713989286, "position": { "x": 4, "y": 0 @@ -2188,16 +2188,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3415, - "time": 0.4775372720683333, + "noteOrder": 2709, + "time": 0.37861883713989286, "position": { "x": 4, "y": 0 @@ -2216,11 +2216,11 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3464, - "time": 0.4843592330978809, + "noteOrder": 3026, + "time": 0.42296158383195237, "position": { "x": 6, "y": 0 @@ -2239,13 +2239,13 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3513, - "time": 0.49118119412742856, + "noteOrder": 3075, + "time": 0.4297835448615, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2257,16 +2257,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3562, - "time": 0.49800315515697613, + "noteOrder": 3124, + "time": 0.43660550589104763, "position": { "x": 4, "y": 0 @@ -2280,18 +2280,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4001, - "time": 0.5594008044229046, + "noteOrder": 3416, + "time": 0.47753727206833335, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2303,18 +2303,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 1, + "lineGroupId": 65, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4049, - "time": 0.5662227654524523, + "noteOrder": 3441, + "time": 0.48094825258310714, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2326,18 +2326,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 65, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4098, - "time": 0.5730447264819999, + "noteOrder": 3441, + "time": 0.48094825258310714, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2354,13 +2354,13 @@ "isPlayAudio": false }, { - "lineGroupId": 78, + "lineGroupId": 66, "indexInLine": 1, "isSliding": false, - "noteOrder": 4147, - "time": 0.5798666875115476, + "noteOrder": 3465, + "time": 0.484359233097881, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2372,18 +2372,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 66, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4196, - "time": 0.5866886485410951, + "noteOrder": 3490, + "time": 0.48777021361265477, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2400,11 +2400,11 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 66, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4220, - "time": 0.590099629055869, + "noteOrder": 3490, + "time": 0.48777021361265477, "position": { "x": 6, "y": 0 @@ -2423,13 +2423,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4245, - "time": 0.5935106095706428, + "noteOrder": 3514, + "time": 0.4911811941274286, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2446,11 +2446,11 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4269, - "time": 0.5969215900854166, + "noteOrder": 3563, + "time": 0.4980031551569762, "position": { "x": 4, "y": 0 @@ -2469,13 +2469,13 @@ "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4391, - "time": 0.6139764926592857, + "noteOrder": 4002, + "time": 0.5594008044229047, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2492,13 +2492,13 @@ "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4440, - "time": 0.6207984536888334, + "noteOrder": 4051, + "time": 0.5662227654524524, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2510,18 +2510,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 78, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4684, - "time": 0.6549082588365713, + "noteOrder": 4100, + "time": 0.573044726482, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2533,18 +2533,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 1, + "lineGroupId": 78, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, - "time": 0.661730219866119, + "noteOrder": 4149, + "time": 0.5798666875115477, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -2556,18 +2556,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4684, - "time": 0.6549082588365713, + "noteOrder": 4197, + "time": 0.5866886485410953, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2579,18 +2579,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 79, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4732, - "time": 0.661730219866119, + "noteOrder": 4222, + "time": 0.5900996290558691, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2602,16 +2602,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 80, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4781, - "time": 0.6685521808956666, + "noteOrder": 4246, + "time": 0.5935106095706428, "position": { "x": 3, "y": 0 @@ -2630,13 +2630,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 80, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4806, - "time": 0.6719631614104403, + "noteOrder": 4271, + "time": 0.5969215900854167, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2653,13 +2653,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 2, + "lineGroupId": 84, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4928, - "time": 0.6890180639843094, + "noteOrder": 4393, + "time": 0.6139764926592857, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -2671,18 +2671,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 84, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5074, - "time": 0.7094839470729523, + "noteOrder": 4417, + "time": 0.6173874731740595, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2694,16 +2694,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 1, + "lineGroupId": 84, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5123, - "time": 0.7163059081024999, + "noteOrder": 4417, + "time": 0.6173874731740595, "position": { "x": 6, "y": 0 @@ -2717,18 +2717,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5172, - "time": 0.7231278691320475, + "noteOrder": 4441, + "time": 0.6207984536888334, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2745,13 +2745,13 @@ "isPlayAudio": false }, { - "lineGroupId": 104, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5220, - "time": 0.7299498301615951, + "noteOrder": 4466, + "time": 0.6242094342036072, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2763,18 +2763,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 85, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5464, - "time": 0.7640596353093333, + "noteOrder": 4466, + "time": 0.6242094342036072, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2786,16 +2786,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 92, "indexInLine": 1, "isSliding": false, - "noteOrder": 5513, - "time": 0.770881596338881, + "noteOrder": 4685, + "time": 0.6549082588365714, "position": { "x": 7, "y": 0 @@ -2814,13 +2814,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 92, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5464, - "time": 0.7640596353093333, + "noteOrder": 4734, + "time": 0.661730219866119, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2832,16 +2832,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 112, + "lineGroupId": 93, "indexInLine": 1, "isSliding": false, - "noteOrder": 5513, - "time": 0.770881596338881, + "noteOrder": 4685, + "time": 0.6549082588365714, "position": { "x": 3, "y": 0 @@ -2860,13 +2860,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 93, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5562, - "time": 0.7777035573684286, + "noteOrder": 4734, + "time": 0.661730219866119, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2878,18 +2878,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 95, "indexInLine": 1, "isSliding": false, - "noteOrder": 5586, - "time": 0.7811145378832023, + "noteOrder": 4783, + "time": 0.6685521808956667, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -2901,18 +2901,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 114, + "lineGroupId": 95, "indexInLine": 2, "isSliding": false, - "noteOrder": 5708, - "time": 0.7981694404570714, + "noteOrder": 4807, + "time": 0.6719631614104405, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -2924,18 +2924,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5757, - "time": 0.804991401486619, + "noteOrder": 4929, + "time": 0.6890180639843095, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2952,11 +2952,11 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 102, "indexInLine": 1, "isSliding": false, - "noteOrder": 5781, - "time": 0.8084023820013928, + "noteOrder": 5076, + "time": 0.7094839470729524, "position": { "x": 4, "y": 0 @@ -2975,13 +2975,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, + "lineGroupId": 102, "indexInLine": 2, "isSliding": false, - "noteOrder": 5806, - "time": 0.8118133625161666, + "noteOrder": 5125, + "time": 0.7163059081025, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2998,13 +2998,312 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 103, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5806, - "time": 0.8118133625161666, + "noteOrder": 5174, + "time": 0.7231278691320477, "position": { - "x": 6, + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5198, + "time": 0.7265388496468214, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5198, + "time": 0.7265388496468214, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5222, + "time": 0.7299498301615952, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5247, + "time": 0.733360810676369, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 104, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5247, + "time": 0.733360810676369, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5466, + "time": 0.7640596353093334, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5515, + "time": 0.7708815963388809, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5466, + "time": 0.7640596353093334, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 112, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5515, + "time": 0.7708815963388809, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5564, + "time": 0.7777035573684286, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5588, + "time": 0.7811145378832024, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 114, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5710, + "time": 0.7981694404570714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5759, + "time": 0.8049914014866191, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -3016,7 +3315,53 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5784, + "time": 0.8084023820013929, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5808, + "time": 0.8118133625161668, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, @@ -3024,8 +3369,8 @@ "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 5830, - "time": 0.8152243430309404, + "noteOrder": 5808, + "time": 0.8118133625161668, "position": { "x": 6, "y": 0 @@ -3047,7 +3392,30 @@ "lineGroupId": 119, "indexInLine": 2, "isSliding": false, - "noteOrder": 5855, + "noteOrder": 5832, + "time": 0.8152243430309405, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5857, "time": 0.8186353235457142, "position": { "x": 6, @@ -3068,10 +3436,10 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6245, - "time": 0.8732110117820951, + "noteOrder": 6247, + "time": 0.8732110117820953, "position": { "x": 3, "y": 0 @@ -3091,10 +3459,10 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6269, - "time": 0.876621992296869, + "noteOrder": 6272, + "time": 0.8766219922968691, "position": { "x": 3, "y": 0 @@ -3114,10 +3482,10 @@ }, { "lineGroupId": 131, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6294, - "time": 0.8800329728116427, + "noteOrder": 6296, + "time": 0.8800329728116429, "position": { "x": 4, "y": 0 @@ -3137,10 +3505,10 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6343, - "time": 0.8868549338411904, + "noteOrder": 6345, + "time": 0.8868549338411905, "position": { "x": 7, "y": 0 @@ -3160,9 +3528,9 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6367, + "noteOrder": 6369, "time": 0.8902659143559642, "position": { "x": 7, @@ -3183,10 +3551,10 @@ }, { "lineGroupId": 132, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6391, - "time": 0.893676894870738, + "noteOrder": 6394, + "time": 0.8936768948707381, "position": { "x": 6, "y": 0 @@ -3206,10 +3574,56 @@ }, { "lineGroupId": 133, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6443, + "time": 0.9004988559002858, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6467, + "time": 0.9039098364150595, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6440, - "time": 0.9004988559002856, + "noteOrder": 6467, + "time": 0.9039098364150595, "position": { "x": 4, "y": 0 @@ -3229,10 +3643,56 @@ }, { "lineGroupId": 134, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6491, + "time": 0.9073208169298334, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6516, + "time": 0.9107317974446072, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6489, - "time": 0.9073208169298332, + "noteOrder": 6516, + "time": 0.9107317974446072, "position": { "x": 4, "y": 0 @@ -3252,10 +3712,56 @@ }, { "lineGroupId": 135, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6540, + "time": 0.9141427779593809, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6565, + "time": 0.9175537584741548, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 135, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6538, - "time": 0.9141427779593808, + "noteOrder": 6565, + "time": 0.9175537584741548, "position": { "x": 4, "y": 0 @@ -3275,10 +3781,56 @@ }, { "lineGroupId": 136, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 6589, + "time": 0.9209647389889286, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 6613, + "time": 0.9243757195037025, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 136, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6586, - "time": 0.9209647389889284, + "noteOrder": 6613, + "time": 0.9243757195037025, "position": { "x": 4, "y": 0 @@ -3298,10 +3850,10 @@ }, { "lineGroupId": 144, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6830, - "time": 0.9550745441366666, + "noteOrder": 6833, + "time": 0.9550745441366667, "position": { "x": 7, "y": 0 @@ -3321,10 +3873,10 @@ }, { "lineGroupId": 144, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6940, - "time": 0.9704239564531487, + "noteOrder": 6943, + "time": 0.9704239564531489, "position": { "x": 7, "y": 0 @@ -3344,10 +3896,10 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6830, - "time": 0.9550745441366666, + "noteOrder": 6833, + "time": 0.9550745441366667, "position": { "x": 3, "y": 0 @@ -3367,10 +3919,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6940, - "time": 0.9704239564531487, + "noteOrder": 6943, + "time": 0.9704239564531489, "position": { "x": 3, "y": 0 diff --git "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/info.json" "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/info.json" index ed48f8e8..ba6d4956 100644 --- "a/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/info.json" +++ "b/tracks/\351\207\216\347\220\203\343\201\256\351\201\212\343\201\263\346\226\271\343\200\200\343\201\235\343\201\227\343\201\246\343\201\235\343\201\256\346\255\264\345\217\262\343\200\200\357\275\236\346\261\272\345\256\232\347\211\210\357\275\236/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u91ce\u7403\u306e\u904a\u3073\u65b9\u3000\u305d\u3057\u3066\u305d\u306e\u6b74\u53f2\u3000\uff5e\u6c7a\u5b9a\u7248\uff5e", - "SongLength": "136.803265", + "SongLength": "126.850612", "SongAuthorName": "\u3042\u3055\u304d\u5927\u76e3\u7763", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1a.json" "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1a.json" index 14a77815..9f1f8ee9 100644 --- "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1a.json" +++ "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1a.json" @@ -13,7 +13,7 @@ "orderCountPerBeat": 24, "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 121, "time": 0.01818181818181818, "position": { "x": 4, @@ -54,7 +54,7 @@ }, { "noteOrder": 169, - "time": 0.025454545454545455, + "time": 0.025454545454545452, "position": { "x": 6, "y": 0 @@ -173,8 +173,8 @@ "isPlayAudio": false }, { - "noteOrder": 337, - "time": 0.05090909090909091, + "noteOrder": 338, + "time": 0.050909090909090904, "position": { "x": 6, "y": 0 @@ -193,7 +193,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 362, "time": 0.05454545454545454, "position": { "x": 6, @@ -274,7 +274,7 @@ }, { "noteOrder": 651, - "time": 0.09818181818181819, + "time": 0.09818181818181818, "position": { "x": 7, "y": 0 @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 783, + "noteOrder": 784, "time": 0.11818181818181818, "position": { "x": 5, @@ -333,8 +333,8 @@ "isPlayAudio": false }, { - "noteOrder": 795, - "time": 0.12, + "noteOrder": 796, + "time": 0.11999999999999998, "position": { "x": 7, "y": 0 @@ -353,8 +353,8 @@ "isPlayAudio": false }, { - "noteOrder": 807, - "time": 0.12181818181818183, + "noteOrder": 808, + "time": 0.12181818181818181, "position": { "x": 5, "y": 0 @@ -373,7 +373,7 @@ "isPlayAudio": false }, { - "noteOrder": 819, + "noteOrder": 820, "time": 0.12363636363636363, "position": { "x": 3, @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 831, - "time": 0.12545454545454546, + "noteOrder": 832, + "time": 0.12545454545454543, "position": { "x": 7, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 988, - "time": 0.1490909090909091, + "time": 0.14909090909090908, "position": { "x": 4, "y": 0 @@ -453,7 +453,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.1527272727272727, "position": { "x": 6, @@ -473,8 +473,8 @@ "isPlayAudio": false }, { - "noteOrder": 1036, - "time": 0.15636363636363637, + "noteOrder": 1037, + "time": 0.15636363636363634, "position": { "x": 3, "y": 0 @@ -493,7 +493,7 @@ "isPlayAudio": false }, { - "noteOrder": 1084, + "noteOrder": 1085, "time": 0.16363636363636364, "position": { "x": 5, @@ -514,7 +514,7 @@ }, { "noteOrder": 1133, - "time": 0.17090909090909093, + "time": 0.1709090909090909, "position": { "x": 5, "y": 0 @@ -533,7 +533,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1254, "time": 0.1890909090909091, "position": { "x": 3, @@ -553,8 +553,8 @@ "isPlayAudio": false }, { - "noteOrder": 1277, - "time": 0.19272727272727272, + "noteOrder": 1278, + "time": 0.1927272727272727, "position": { "x": 6, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.19636363636363638, + "noteOrder": 1302, + "time": 0.19636363636363635, "position": { "x": 4, "y": 0 @@ -593,7 +593,7 @@ "isPlayAudio": false }, { - "noteOrder": 1325, + "noteOrder": 1326, "time": 0.19999999999999998, "position": { "x": 7, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 1518, + "noteOrder": 1519, "time": 0.2290909090909091, "position": { "x": 6, @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 1554, - "time": 0.23454545454545456, + "noteOrder": 1555, + "time": 0.23454545454545453, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1591, - "time": 0.24, + "time": 0.23999999999999996, "position": { "x": 7, "y": 0 @@ -714,7 +714,7 @@ }, { "noteOrder": 1615, - "time": 0.24363636363636365, + "time": 0.24363636363636362, "position": { "x": 5, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 1687, - "time": 0.2545454545454546, + "noteOrder": 1688, + "time": 0.2545454545454545, "position": { "x": 3, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 1711, + "noteOrder": 1712, "time": 0.2581818181818182, "position": { "x": 5, @@ -793,7 +793,7 @@ "isPlayAudio": false }, { - "noteOrder": 1759, + "noteOrder": 1760, "time": 0.26545454545454544, "position": { "x": 4, @@ -813,7 +813,7 @@ "isPlayAudio": false }, { - "noteOrder": 1807, + "noteOrder": 1808, "time": 0.2727272727272727, "position": { "x": 6, @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1905, "time": 0.2872727272727273, "position": { "x": 4, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 1940, + "noteOrder": 1941, "time": 0.2927272727272727, "position": { "x": 5, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 1988, + "noteOrder": 1989, "time": 0.3, "position": { "x": 5, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 2036, + "noteOrder": 2037, "time": 0.30727272727272725, "position": { "x": 5, @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2121, + "noteOrder": 2122, "time": 0.32, "position": { "x": 7, @@ -953,7 +953,7 @@ "isPlayAudio": false }, { - "noteOrder": 2145, + "noteOrder": 2146, "time": 0.3236363636363636, "position": { "x": 5, @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 2169, + "noteOrder": 2170, "time": 0.32727272727272727, "position": { "x": 3, @@ -993,7 +993,7 @@ "isPlayAudio": false }, { - "noteOrder": 2193, + "noteOrder": 2194, "time": 0.33090909090909093, "position": { "x": 5, @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 2362, + "noteOrder": 2363, "time": 0.3563636363636363, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 2386, - "time": 0.36000000000000004, + "noteOrder": 2387, + "time": 0.36, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 2458, + "noteOrder": 2459, "time": 0.3709090909090909, "position": { "x": 6, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 2482, - "time": 0.37454545454545457, + "noteOrder": 2483, + "time": 0.3745454545454545, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2530, + "noteOrder": 2531, "time": 0.38181818181818183, "position": { "x": 5, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 2579, + "noteOrder": 2580, "time": 0.38909090909090904, "position": { "x": 7, @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.39272727272727276, + "noteOrder": 2604, + "time": 0.3927272727272727, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 2627, - "time": 0.39636363636363636, + "noteOrder": 2628, + "time": 0.3963636363636363, "position": { "x": 4, "y": 0 @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 2652, "time": 0.39999999999999997, "position": { "x": 6, @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 2652, "time": 0.39999999999999997, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2675, + "noteOrder": 2676, "time": 0.4036363636363636, "position": { "x": 7, @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 2675, + "noteOrder": 2676, "time": 0.4036363636363636, "position": { "x": 3, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2724, "time": 0.4109090909090909, "position": { "x": 6, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 2747, + "noteOrder": 2748, "time": 0.41454545454545455, "position": { "x": 3, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 2771, + "noteOrder": 2772, "time": 0.41818181818181815, "position": { "x": 7, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2820, + "noteOrder": 2821, "time": 0.4254545454545455, "position": { "x": 4, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2845, "time": 0.4290909090909091, "position": { "x": 7, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 2868, - "time": 0.43272727272727274, + "noteOrder": 2869, + "time": 0.4327272727272727, "position": { "x": 3, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2892, + "noteOrder": 2893, "time": 0.43636363636363634, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2916, - "time": 0.44, + "noteOrder": 2917, + "time": 0.43999999999999995, "position": { "x": 6, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2940, - "time": 0.44363636363636366, + "noteOrder": 2941, + "time": 0.4436363636363636, "position": { "x": 3, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2964, + "noteOrder": 2965, "time": 0.44727272727272727, "position": { "x": 6, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3157, + "noteOrder": 3158, "time": 0.4763636363636364, "position": { "x": 7, @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 3169, - "time": 0.4781818181818182, + "noteOrder": 3170, + "time": 0.47818181818181815, "position": { "x": 4, "y": 0 @@ -1493,8 +1493,8 @@ "isPlayAudio": false }, { - "noteOrder": 3229, - "time": 0.4872727272727273, + "noteOrder": 3231, + "time": 0.48727272727272725, "position": { "x": 7, "y": 0 @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3241, + "noteOrder": 3243, "time": 0.4890909090909091, "position": { "x": 5, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.4909090909090909, + "noteOrder": 3255, + "time": 0.49090909090909085, "position": { "x": 3, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3326, - "time": 0.5018181818181818, + "noteOrder": 3327, + "time": 0.5018181818181817, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3350, + "noteOrder": 3351, "time": 0.5054545454545454, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 3519, + "noteOrder": 3520, "time": 0.5309090909090909, "position": { "x": 7, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 3543, + "noteOrder": 3544, "time": 0.5345454545454545, "position": { "x": 7, @@ -1633,7 +1633,7 @@ "isPlayAudio": false }, { - "noteOrder": 3615, + "noteOrder": 3616, "time": 0.5454545454545454, "position": { "x": 3, @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 3639, + "noteOrder": 3640, "time": 0.5490909090909091, "position": { "x": 3, @@ -1673,7 +1673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3687, + "noteOrder": 3689, "time": 0.5563636363636364, "position": { "x": 6, @@ -1693,7 +1693,7 @@ "isPlayAudio": false }, { - "noteOrder": 3735, + "noteOrder": 3737, "time": 0.5636363636363636, "position": { "x": 4, @@ -1713,7 +1713,7 @@ "isPlayAudio": false }, { - "noteOrder": 4049, + "noteOrder": 4050, "time": 0.6109090909090908, "position": { "x": 4, @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 4073, + "noteOrder": 4074, "time": 0.6145454545454545, "position": { "x": 6, @@ -1753,7 +1753,7 @@ "isPlayAudio": false }, { - "noteOrder": 4097, + "noteOrder": 4098, "time": 0.6181818181818182, "position": { "x": 5, @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4121, - "time": 0.6218181818181818, + "noteOrder": 4123, + "time": 0.6218181818181817, "position": { "x": 4, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 4145, - "time": 0.6254545454545455, + "noteOrder": 4147, + "time": 0.6254545454545454, "position": { "x": 3, "y": 0 @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4458, + "noteOrder": 4460, "time": 0.6727272727272727, "position": { "x": 4, @@ -1833,7 +1833,7 @@ "isPlayAudio": false }, { - "noteOrder": 4507, + "noteOrder": 4508, "time": 0.68, "position": { "x": 6, @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4603, + "noteOrder": 4605, "time": 0.6945454545454545, "position": { "x": 5, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4651, - "time": 0.7018181818181819, + "noteOrder": 4653, + "time": 0.7018181818181818, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 4675, + "noteOrder": 4677, "time": 0.7054545454545454, "position": { "x": 5, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 4699, - "time": 0.7090909090909091, + "noteOrder": 4701, + "time": 0.709090909090909, "position": { "x": 6, "y": 0 @@ -1933,7 +1933,7 @@ "isPlayAudio": false }, { - "noteOrder": 4748, + "noteOrder": 4749, "time": 0.7163636363636363, "position": { "x": 6, @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 4772, - "time": 0.7200000000000001, + "noteOrder": 4774, + "time": 0.72, "position": { "x": 5, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 4796, + "noteOrder": 4798, "time": 0.7236363636363636, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 4916, + "noteOrder": 4918, "time": 0.7418181818181818, "position": { "x": 2, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 4928, - "time": 0.7436363636363637, + "noteOrder": 4930, + "time": 0.7436363636363635, "position": { "x": 4, "y": 0 @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 4940, + "noteOrder": 4942, "time": 0.7454545454545455, "position": { "x": 6, @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4952, - "time": 0.7472727272727273, + "noteOrder": 4954, + "time": 0.7472727272727272, "position": { "x": 8, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 4964, - "time": 0.7490909090909091, + "noteOrder": 4966, + "time": 0.749090909090909, "position": { "x": 6, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4977, + "noteOrder": 4978, "time": 0.7509090909090909, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4989, + "noteOrder": 4990, "time": 0.7527272727272727, "position": { "x": 2, @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 5001, + "noteOrder": 5003, "time": 0.7545454545454545, "position": { "x": 6, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 5230, + "noteOrder": 5232, "time": 0.7890909090909091, "position": { "x": 3, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5326, - "time": 0.8036363636363637, + "noteOrder": 5328, + "time": 0.8036363636363636, "position": { "x": 7, "y": 0 @@ -2193,7 +2193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5350, + "noteOrder": 5352, "time": 0.8072727272727273, "position": { "x": 7, @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5362, + "noteOrder": 5364, "time": 0.8090909090909091, "position": { "x": 5, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 5374, + "noteOrder": 5376, "time": 0.8109090909090909, "position": { "x": 3, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5386, + "noteOrder": 5388, "time": 0.8127272727272727, "position": { "x": 5, @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 5519, - "time": 0.8327272727272728, + "noteOrder": 5521, + "time": 0.8327272727272726, "position": { "x": 5, "y": 0 @@ -2293,7 +2293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5543, + "noteOrder": 5545, "time": 0.8363636363636363, "position": { "x": 4, @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5567, + "noteOrder": 5569, "time": 0.84, "position": { "x": 5, @@ -2333,7 +2333,7 @@ "isPlayAudio": false }, { - "noteOrder": 5615, + "noteOrder": 5617, "time": 0.8472727272727273, "position": { "x": 5, @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 5639, + "noteOrder": 5641, "time": 0.850909090909091, "position": { "x": 6, @@ -2373,7 +2373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5663, + "noteOrder": 5666, "time": 0.8545454545454545, "position": { "x": 5, @@ -2393,7 +2393,7 @@ "isPlayAudio": false }, { - "noteOrder": 5687, + "noteOrder": 5690, "time": 0.8581818181818182, "position": { "x": 7, @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 5712, - "time": 0.8618181818181818, + "noteOrder": 5714, + "time": 0.8618181818181817, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 5736, - "time": 0.8654545454545455, + "noteOrder": 5738, + "time": 0.8654545454545454, "position": { "x": 3, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 5760, - "time": 0.8690909090909091, + "noteOrder": 5762, + "time": 0.869090909090909, "position": { "x": 4, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 5808, - "time": 0.8763636363636363, + "noteOrder": 5810, + "time": 0.8763636363636362, "position": { "x": 2, "y": 0 @@ -2493,8 +2493,8 @@ "isPlayAudio": false }, { - "noteOrder": 5832, - "time": 0.88, + "noteOrder": 5834, + "time": 0.8799999999999999, "position": { "x": 3, "y": 0 @@ -2513,7 +2513,7 @@ "isPlayAudio": false }, { - "noteOrder": 5856, + "noteOrder": 5858, "time": 0.8836363636363636, "position": { "x": 4, @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 5904, - "time": 0.890909090909091, + "noteOrder": 5907, + "time": 0.8909090909090909, "position": { "x": 7, "y": 0 @@ -2553,8 +2553,8 @@ "isPlayAudio": false }, { - "noteOrder": 5953, - "time": 0.8981818181818182, + "noteOrder": 5955, + "time": 0.8981818181818181, "position": { "x": 3, "y": 0 @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 6049, + "noteOrder": 6051, "time": 0.9127272727272727, "position": { "x": 7, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 6073, + "noteOrder": 6075, "time": 0.9163636363636364, "position": { "x": 7, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 6085, - "time": 0.9181818181818182, + "noteOrder": 6087, + "time": 0.9181818181818181, "position": { "x": 5, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 6097, + "noteOrder": 6099, "time": 0.9199999999999999, "position": { "x": 2, @@ -2653,7 +2653,7 @@ "isPlayAudio": false }, { - "noteOrder": 6109, + "noteOrder": 6112, "time": 0.9218181818181818, "position": { "x": 5, @@ -2673,7 +2673,7 @@ "isPlayAudio": false }, { - "noteOrder": 6121, + "noteOrder": 6124, "time": 0.9236363636363636, "position": { "x": 2, @@ -2693,7 +2693,7 @@ "isPlayAudio": false }, { - "noteOrder": 6133, + "noteOrder": 6136, "time": 0.9254545454545454, "position": { "x": 5, @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 6145, + "noteOrder": 6148, "time": 0.9272727272727272, "position": { "x": 7, @@ -2733,8 +2733,8 @@ "isPlayAudio": false }, { - "noteOrder": 6157, - "time": 0.9290909090909092, + "noteOrder": 6160, + "time": 0.929090909090909, "position": { "x": 5, "y": 0 @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 6169, + "noteOrder": 6172, "time": 0.9309090909090909, "position": { "x": 2, @@ -2773,8 +2773,8 @@ "isPlayAudio": false }, { - "noteOrder": 6181, - "time": 0.9327272727272727, + "noteOrder": 6184, + "time": 0.9327272727272726, "position": { "x": 5, "y": 0 @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 6194, + "noteOrder": 6196, "time": 0.9345454545454546, "position": { "x": 7, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 6206, - "time": 0.9363636363636364, + "noteOrder": 6208, + "time": 0.9363636363636363, "position": { "x": 3, "y": 0 @@ -2836,7 +2836,7 @@ "lineNodes": [ { "lineGroupId": 2, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 96, "time": 0.014545454545454545, @@ -2859,9 +2859,9 @@ }, { "lineGroupId": 2, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 120, + "noteOrder": 121, "time": 0.01818181818181818, "position": { "x": 3, @@ -2882,7 +2882,7 @@ }, { "lineGroupId": 2, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 193, "time": 0.02909090909090909, @@ -2905,7 +2905,7 @@ }, { "lineGroupId": 6, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.02909090909090909, @@ -2928,7 +2928,7 @@ }, { "lineGroupId": 6, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 217, "time": 0.03272727272727272, @@ -2951,7 +2951,7 @@ }, { "lineGroupId": 6, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 289, "time": 0.04363636363636363, @@ -2974,7 +2974,7 @@ }, { "lineGroupId": 14, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 386, "time": 0.05818181818181818, @@ -2997,7 +2997,7 @@ }, { "lineGroupId": 14, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 410, "time": 0.061818181818181814, @@ -3020,7 +3020,7 @@ }, { "lineGroupId": 15, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 410, "time": 0.061818181818181814, @@ -3043,7 +3043,7 @@ }, { "lineGroupId": 15, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 434, "time": 0.06545454545454545, @@ -3066,7 +3066,7 @@ }, { "lineGroupId": 16, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 434, "time": 0.06545454545454545, @@ -3089,7 +3089,7 @@ }, { "lineGroupId": 16, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 458, "time": 0.06909090909090909, @@ -3112,7 +3112,7 @@ }, { "lineGroupId": 18, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 482, "time": 0.07272727272727272, @@ -3135,7 +3135,7 @@ }, { "lineGroupId": 18, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 506, "time": 0.07636363636363636, @@ -3158,7 +3158,7 @@ }, { "lineGroupId": 18, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, "noteOrder": 530, "time": 0.08, @@ -3181,7 +3181,7 @@ }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 530, "time": 0.08, @@ -3204,7 +3204,7 @@ }, { "lineGroupId": 21, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 554, "time": 0.08363636363636363, @@ -3227,9 +3227,9 @@ }, { "lineGroupId": 21, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 578, + "noteOrder": 579, "time": 0.08727272727272727, "position": { "x": 5, @@ -3250,9 +3250,9 @@ }, { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 578, + "noteOrder": 579, "time": 0.08727272727272727, "position": { "x": 7, @@ -3272,11 +3272,11 @@ "isPlayAudio": false }, { - "lineGroupId": 25, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 2, "isSliding": false, - "noteOrder": 602, - "time": 0.09090909090909091, + "noteOrder": 591, + "time": 0.08909090909090908, "position": { "x": 7, "y": 0 @@ -3290,18 +3290,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 26, - "indexInLine": 0, + "lineGroupId": 24, + "indexInLine": 3, "isSliding": false, - "noteOrder": 627, - "time": 0.09454545454545454, + "noteOrder": 591, + "time": 0.08909090909090908, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3318,13 +3318,13 @@ "isPlayAudio": false }, { - "lineGroupId": 28, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 1, "isSliding": false, - "noteOrder": 675, - "time": 0.10181818181818182, + "noteOrder": 603, + "time": 0.0909090909090909, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3341,11 +3341,11 @@ "isPlayAudio": false }, { - "lineGroupId": 29, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 2, "isSliding": false, - "noteOrder": 699, - "time": 0.10545454545454545, + "noteOrder": 615, + "time": 0.09272727272727273, "position": { "x": 7, "y": 0 @@ -3359,18 +3359,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 30, - "indexInLine": 0, + "lineGroupId": 25, + "indexInLine": 3, "isSliding": false, - "noteOrder": 723, - "time": 0.10909090909090909, + "noteOrder": 615, + "time": 0.09272727272727273, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3387,11 +3387,11 @@ "isPlayAudio": false }, { - "lineGroupId": 31, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 1, "isSliding": false, - "noteOrder": 747, - "time": 0.11272727272727272, + "noteOrder": 627, + "time": 0.09454545454545454, "position": { "x": 7, "y": 0 @@ -3410,11 +3410,11 @@ "isPlayAudio": false }, { - "lineGroupId": 39, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 2, "isSliding": false, - "noteOrder": 868, - "time": 0.1309090909090909, + "noteOrder": 639, + "time": 0.09636363636363635, "position": { "x": 7, "y": 0 @@ -3433,13 +3433,13 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 26, + "indexInLine": 3, "isSliding": false, - "noteOrder": 892, - "time": 0.13454545454545455, + "noteOrder": 639, + "time": 0.09636363636363635, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -3451,18 +3451,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 1, "isSliding": false, - "noteOrder": 916, - "time": 0.13818181818181818, + "noteOrder": 675, + "time": 0.10181818181818181, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3474,18 +3474,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 2, "isSliding": false, - "noteOrder": 940, - "time": 0.14181818181818182, + "noteOrder": 687, + "time": 0.10363636363636364, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3502,13 +3502,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, - "indexInLine": 0, + "lineGroupId": 28, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1060, - "time": 0.16, + "noteOrder": 687, + "time": 0.10363636363636364, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3525,13 +3525,13 @@ "isPlayAudio": false }, { - "lineGroupId": 47, + "lineGroupId": 29, "indexInLine": 1, "isSliding": false, - "noteOrder": 1084, - "time": 0.16363636363636364, + "noteOrder": 699, + "time": 0.10545454545454545, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3543,18 +3543,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 0, + "lineGroupId": 29, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1109, - "time": 0.16727272727272727, + "noteOrder": 711, + "time": 0.10727272727272727, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3571,13 +3571,13 @@ "isPlayAudio": false }, { - "lineGroupId": 49, - "indexInLine": 1, + "lineGroupId": 29, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1133, - "time": 0.17090909090909093, + "noteOrder": 711, + "time": 0.10727272727272727, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3594,11 +3594,11 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1157, - "time": 0.17454545454545453, + "noteOrder": 723, + "time": 0.10909090909090909, "position": { "x": 3, "y": 0 @@ -3617,11 +3617,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1181, - "time": 0.17818181818181816, + "noteOrder": 735, + "time": 0.1109090909090909, "position": { "x": 3, "y": 0 @@ -3635,18 +3635,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 30, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1205, - "time": 0.18181818181818182, + "noteOrder": 735, + "time": 0.1109090909090909, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -3663,13 +3663,13 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1229, - "time": 0.18545454545454546, + "noteOrder": 747, + "time": 0.11272727272727272, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3686,13 +3686,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 31, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1350, - "time": 0.20363636363636364, + "noteOrder": 759, + "time": 0.11454545454545455, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3709,13 +3709,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 1, + "lineGroupId": 31, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1374, - "time": 0.20727272727272728, + "noteOrder": 759, + "time": 0.11454545454545455, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3732,13 +3732,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1398, - "time": 0.2109090909090909, + "noteOrder": 868, + "time": 0.1309090909090909, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3750,18 +3750,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1422, - "time": 0.21454545454545454, + "noteOrder": 880, + "time": 0.13272727272727272, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3773,18 +3773,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1446, - "time": 0.21818181818181817, + "noteOrder": 880, + "time": 0.13272727272727272, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3801,11 +3801,11 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 1, + "lineGroupId": 39, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1458, - "time": 0.22, + "noteOrder": 892, + "time": 0.13454545454545452, "position": { "x": 5, "y": 0 @@ -3824,13 +3824,13 @@ "isPlayAudio": false }, { - "lineGroupId": 63, - "indexInLine": 2, + "lineGroupId": 39, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1470, - "time": 0.22181818181818183, + "noteOrder": 892, + "time": 0.13454545454545452, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3847,13 +3847,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1470, - "time": 0.22181818181818183, + "noteOrder": 892, + "time": 0.13454545454545452, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3870,13 +3870,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1482, - "time": 0.22363636363636363, + "noteOrder": 904, + "time": 0.13636363636363635, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3893,13 +3893,13 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 2, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1494, - "time": 0.22545454545454544, + "noteOrder": 904, + "time": 0.13636363636363635, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3916,13 +3916,13 @@ "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1494, - "time": 0.22545454545454544, + "noteOrder": 916, + "time": 0.13818181818181818, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -3934,18 +3934,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 1, + "lineGroupId": 40, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1506, - "time": 0.2272727272727273, + "noteOrder": 916, + "time": 0.13818181818181818, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -3957,16 +3957,269 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 65, - "indexInLine": 2, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1518, - "time": 0.2290909090909091, + "noteOrder": 916, + "time": 0.13818181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 928, + "time": 0.13999999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 928, + "time": 0.13999999999999999, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 940, + "time": 0.14181818181818182, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 41, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 940, + "time": 0.14181818181818182, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 940, + "time": 0.14181818181818182, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 952, + "time": 0.14363636363636365, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 952, + "time": 0.14363636363636365, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 964, + "time": 0.14545454545454545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 42, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 964, + "time": 0.14545454545454545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1061, + "time": 0.16, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 47, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1085, + "time": 0.16363636363636364, "position": { "x": 4, "y": 0 @@ -3980,16 +4233,3535 @@ "y": 1, "z": 1 }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1109, + "time": 0.16727272727272727, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 49, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1133, + "time": 0.1709090909090909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1157, + "time": 0.17454545454545453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1169, + "time": 0.17636363636363636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1169, + "time": 0.17636363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1181, + "time": 0.17818181818181816, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1181, + "time": 0.17818181818181816, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1181, + "time": 0.17818181818181816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1193, + "time": 0.18, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1193, + "time": 0.18, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1205, + "time": 0.1818181818181818, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1205, + "time": 0.1818181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1205, + "time": 0.1818181818181818, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1217, + "time": 0.18363636363636363, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1217, + "time": 0.18363636363636363, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1230, + "time": 0.18545454545454546, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1230, + "time": 0.18545454545454546, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1230, + "time": 0.18545454545454546, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1242, + "time": 0.18727272727272726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1242, + "time": 0.18727272727272726, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 1254, + "time": 0.1890909090909091, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 1254, + "time": 0.1890909090909091, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1350, + "time": 0.20363636363636362, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1374, + "time": 0.20727272727272728, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1398, + "time": 0.2109090909090909, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1422, + "time": 0.21454545454545454, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1447, + "time": 0.21818181818181817, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1459, + "time": 0.21999999999999997, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 63, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1471, + "time": 0.2218181818181818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1471, + "time": 0.2218181818181818, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1483, + "time": 0.22363636363636363, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1495, + "time": 0.22545454545454544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1495, + "time": 0.22545454545454544, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1507, + "time": 0.22727272727272727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 65, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1519, + "time": 0.2290909090909091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1543, + "time": 0.23272727272727273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1555, + "time": 0.23454545454545453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 67, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1567, + "time": 0.23636363636363636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1639, + "time": 0.24727272727272726, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1651, + "time": 0.24909090909090909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1663, + "time": 0.25090909090909086, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1736, + "time": 0.2618181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 75, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1784, + "time": 0.26909090909090905, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1784, + "time": 0.26909090909090905, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 77, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1832, + "time": 0.27636363636363637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1832, + "time": 0.27636363636363637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1856, + "time": 0.27999999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1856, + "time": 0.27999999999999997, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1880, + "time": 0.28363636363636363, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1880, + "time": 0.28363636363636363, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 81, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1905, + "time": 0.2872727272727273, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1929, + "time": 0.2909090909090909, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1941, + "time": 0.2927272727272727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1953, + "time": 0.29454545454545455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1977, + "time": 0.29818181818181816, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1989, + "time": 0.3, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2001, + "time": 0.30181818181818176, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2025, + "time": 0.3054545454545454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2037, + "time": 0.30727272727272725, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 90, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2049, + "time": 0.3090909090909091, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2073, + "time": 0.3127272727272727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2085, + "time": 0.3145454545454545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2097, + "time": 0.31636363636363635, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2218, + "time": 0.33454545454545453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2230, + "time": 0.33636363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 100, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2230, + "time": 0.33636363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2242, + "time": 0.3381818181818182, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2254, + "time": 0.34, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 101, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2254, + "time": 0.34, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2266, + "time": 0.3418181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2278, + "time": 0.3436363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 102, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2278, + "time": 0.3436363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2290, + "time": 0.3454545454545454, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2302, + "time": 0.34727272727272723, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 103, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2302, + "time": 0.34727272727272723, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2314, + "time": 0.34909090909090906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 105, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2411, + "time": 0.3636363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2411, + "time": 0.3636363636363636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 108, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2507, + "time": 0.3781818181818182, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2507, + "time": 0.3781818181818182, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 111, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2531, + "time": 0.38181818181818183, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2556, + "time": 0.3854545454545454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 113, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2580, + "time": 0.38909090909090904, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2700, + "time": 0.40727272727272723, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4109090909090909, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2748, + "time": 0.41454545454545455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2772, + "time": 0.41818181818181815, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2797, + "time": 0.4218181818181818, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2797, + "time": 0.4218181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2821, + "time": 0.4254545454545455, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2845, + "time": 0.4290909090909091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 2869, + "time": 0.4327272727272727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 125, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 2893, + "time": 0.43636363636363634, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2989, + "time": 0.45090909090909087, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 133, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3014, + "time": 0.45454545454545453, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2989, + "time": 0.45090909090909087, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 134, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3014, + "time": 0.45454545454545453, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3086, + "time": 0.46545454545454545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3098, + "time": 0.4672727272727273, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3098, + "time": 0.4672727272727273, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3110, + "time": 0.46909090909090906, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 137, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3110, + "time": 0.46909090909090906, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3110, + "time": 0.46909090909090906, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3122, + "time": 0.4709090909090909, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3122, + "time": 0.4709090909090909, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3134, + "time": 0.4727272727272727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 138, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3134, + "time": 0.4727272727272727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3134, + "time": 0.4727272727272727, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3146, + "time": 0.47454545454545455, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3146, + "time": 0.47454545454545455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3158, + "time": 0.4763636363636364, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 139, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3158, + "time": 0.4763636363636364, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3182, + "time": 0.4799999999999999, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3194, + "time": 0.48181818181818176, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3194, + "time": 0.48181818181818176, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3206, + "time": 0.4836363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 142, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3206, + "time": 0.4836363636363636, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3206, + "time": 0.4836363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4854545454545454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3219, + "time": 0.4854545454545454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3231, + "time": 0.48727272727272725, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 143, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3231, + "time": 0.48727272727272725, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3423, + "time": 0.5163636363636364, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 151, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3448, + "time": 0.52, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3423, + "time": 0.5163636363636364, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 152, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3448, + "time": 0.52, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3472, + "time": 0.5236363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5254545454545455, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3484, + "time": 0.5254545454545455, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3496, + "time": 0.5272727272727272, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3496, + "time": 0.5272727272727272, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3496, + "time": 0.5272727272727272, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5290909090909091, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3508, + "time": 0.5290909090909091, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3520, + "time": 0.5309090909090909, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3520, + "time": 0.5309090909090909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5327272727272727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3532, + "time": 0.5327272727272727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3544, + "time": 0.5345454545454545, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, + "indexInLine": 9, + "isSliding": false, + "noteOrder": 3544, + "time": 0.5345454545454545, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3568, + "time": 0.5381818181818181, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3580, + "time": 0.54, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3580, + "time": 0.54, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3592, + "time": 0.5418181818181818, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 157, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3592, + "time": 0.5418181818181818, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3592, + "time": 0.5418181818181818, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3604, + "time": 0.5436363636363637, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3604, + "time": 0.5436363636363637, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 4, + "isSliding": false, + "noteOrder": 3616, + "time": 0.5454545454545454, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 5, + "isSliding": false, + "noteOrder": 3616, + "time": 0.5454545454545454, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 6, + "isSliding": false, + "noteOrder": 3628, + "time": 0.5472727272727272, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 7, + "isSliding": false, + "noteOrder": 3628, + "time": 0.5472727272727272, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 158, + "indexInLine": 8, + "isSliding": false, + "noteOrder": 3640, + "time": 0.5490909090909091, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 158, + "indexInLine": 9, "isSliding": false, - "noteOrder": 1542, - "time": 0.23272727272727273, + "noteOrder": 3640, + "time": 0.5490909090909091, "position": { "x": 7, "y": 0 @@ -4003,18 +7775,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 161, "indexInLine": 1, "isSliding": false, - "noteOrder": 1554, - "time": 0.23454545454545456, + "noteOrder": 3665, + "time": 0.5527272727272727, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4031,11 +7803,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, + "lineGroupId": 161, "indexInLine": 2, "isSliding": false, - "noteOrder": 1566, - "time": 0.23636363636363636, + "noteOrder": 3689, + "time": 0.5563636363636364, "position": { "x": 4, "y": 0 @@ -4054,13 +7826,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 163, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1639, - "time": 0.24727272727272726, + "noteOrder": 3713, + "time": 0.5599999999999999, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4077,13 +7849,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 163, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1651, - "time": 0.24909090909090909, + "noteOrder": 3737, + "time": 0.5636363636363636, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4100,13 +7872,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 2, + "lineGroupId": 165, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1663, - "time": 0.2509090909090909, + "noteOrder": 3761, + "time": 0.5672727272727273, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4123,13 +7895,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 165, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1735, - "time": 0.2618181818181818, + "noteOrder": 3785, + "time": 0.5709090909090909, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4146,13 +7918,13 @@ "isPlayAudio": false }, { - "lineGroupId": 75, + "lineGroupId": 166, "indexInLine": 1, "isSliding": false, - "noteOrder": 1783, - "time": 0.2690909090909091, + "noteOrder": 3785, + "time": 0.5709090909090909, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -4164,18 +7936,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 166, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1783, - "time": 0.2690909090909091, + "noteOrder": 3809, + "time": 0.5745454545454546, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4192,13 +7964,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, + "lineGroupId": 167, "indexInLine": 1, "isSliding": false, - "noteOrder": 1832, - "time": 0.27636363636363637, + "noteOrder": 3809, + "time": 0.5745454545454546, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4210,18 +7982,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 167, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1832, - "time": 0.27636363636363637, + "noteOrder": 3833, + "time": 0.5781818181818182, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4238,13 +8010,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, + "lineGroupId": 168, "indexInLine": 1, "isSliding": false, - "noteOrder": 1856, - "time": 0.28, + "noteOrder": 3833, + "time": 0.5781818181818182, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4256,18 +8028,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 168, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1856, - "time": 0.28, + "noteOrder": 3857, + "time": 0.5818181818181818, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -4284,13 +8056,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, + "lineGroupId": 171, "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, - "time": 0.28363636363636363, + "noteOrder": 3954, + "time": 0.5963636363636363, "position": { - "x": 4, + "x": 2, "y": 0 }, "position2D": { @@ -4307,13 +8079,13 @@ "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1880, - "time": 0.28363636363636363, + "noteOrder": 3966, + "time": 0.5981818181818181, "position": { - "x": 6, + "x": 2, "y": 0 }, "position2D": { @@ -4325,18 +8097,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 81, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1904, - "time": 0.2872727272727273, + "noteOrder": 3966, + "time": 0.5981818181818181, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4348,18 +8120,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 171, + "indexInLine": 4, "isSliding": false, - "noteOrder": 1928, - "time": 0.2909090909090909, + "noteOrder": 3978, + "time": 0.6, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4376,13 +8148,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 1, + "lineGroupId": 171, + "indexInLine": 5, "isSliding": false, - "noteOrder": 1940, - "time": 0.2927272727272727, + "noteOrder": 3978, + "time": 0.6, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4399,13 +8171,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 2, + "lineGroupId": 172, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1952, - "time": 0.29454545454545455, + "noteOrder": 3978, + "time": 0.6, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4417,16 +8189,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1976, - "time": 0.2981818181818182, + "noteOrder": 3990, + "time": 0.6018181818181818, "position": { "x": 3, "y": 0 @@ -4445,13 +8217,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 1, + "lineGroupId": 172, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1988, - "time": 0.3, + "noteOrder": 3990, + "time": 0.6018181818181818, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4468,13 +8240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 2, + "lineGroupId": 172, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2000, - "time": 0.3018181818181818, + "noteOrder": 4002, + "time": 0.6036363636363635, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -4491,11 +8263,11 @@ "isPlayAudio": false }, { - "lineGroupId": 90, - "indexInLine": 0, + "lineGroupId": 172, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2024, - "time": 0.3054545454545454, + "noteOrder": 4002, + "time": 0.6036363636363635, "position": { "x": 7, "y": 0 @@ -4509,18 +8281,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 173, "indexInLine": 1, "isSliding": false, - "noteOrder": 2036, - "time": 0.30727272727272725, + "noteOrder": 4002, + "time": 0.6036363636363635, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4537,13 +8309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 90, + "lineGroupId": 173, "indexInLine": 2, "isSliding": false, - "noteOrder": 2048, - "time": 0.3090909090909091, + "noteOrder": 4014, + "time": 0.6054545454545455, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4560,13 +8332,13 @@ "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 173, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2073, - "time": 0.31272727272727274, + "noteOrder": 4014, + "time": 0.6054545454545455, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4578,18 +8350,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 173, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2085, - "time": 0.3145454545454545, + "noteOrder": 4026, + "time": 0.6072727272727272, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -4601,18 +8373,41 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 2, + "lineGroupId": 173, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2097, - "time": 0.31636363636363635, + "noteOrder": 4026, + "time": 0.6072727272727272, "position": { - "x": 6, + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 174, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4026, + "time": 0.6072727272727272, + "position": { + "x": 4, "y": 0 }, "position2D": { @@ -4629,13 +8424,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2217, - "time": 0.33454545454545453, + "noteOrder": 4038, + "time": 0.6090909090909091, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4652,13 +8447,13 @@ "isPlayAudio": false }, { - "lineGroupId": 101, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2241, - "time": 0.33818181818181814, + "noteOrder": 4038, + "time": 0.6090909090909091, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -4670,18 +8465,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 102, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 4, "isSliding": false, - "noteOrder": 2265, - "time": 0.34181818181818185, + "noteOrder": 4050, + "time": 0.6109090909090908, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4698,13 +8493,13 @@ "isPlayAudio": false }, { - "lineGroupId": 103, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 5, "isSliding": false, - "noteOrder": 2289, - "time": 0.34545454545454546, + "noteOrder": 4050, + "time": 0.6109090909090908, "position": { - "x": 3, + "x": 8, "y": 0 }, "position2D": { @@ -4716,18 +8511,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 6, "isSliding": false, - "noteOrder": 2314, - "time": 0.34909090909090906, + "noteOrder": 4074, + "time": 0.6145454545454545, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -4744,13 +8539,13 @@ "isPlayAudio": false }, { - "lineGroupId": 105, - "indexInLine": 1, + "lineGroupId": 174, + "indexInLine": 7, "isSliding": false, - "noteOrder": 2410, - "time": 0.36363636363636365, + "noteOrder": 4147, + "time": 0.6254545454545454, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4767,11 +8562,11 @@ "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 174, + "indexInLine": 8, "isSliding": false, - "noteOrder": 2410, - "time": 0.36363636363636365, + "noteOrder": 4195, + "time": 0.6327272727272727, "position": { "x": 4, "y": 0 @@ -4785,18 +8580,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, + "lineGroupId": 180, "indexInLine": 1, "isSliding": false, - "noteOrder": 2506, - "time": 0.3781818181818182, + "noteOrder": 4171, + "time": 0.629090909090909, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4813,13 +8608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 111, - "indexInLine": 0, + "lineGroupId": 180, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2506, - "time": 0.3781818181818182, + "noteOrder": 4195, + "time": 0.6327272727272727, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4831,16 +8626,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 111, + "lineGroupId": 182, "indexInLine": 1, "isSliding": false, - "noteOrder": 2530, - "time": 0.38181818181818183, + "noteOrder": 4243, + "time": 0.64, "position": { "x": 7, "y": 0 @@ -4859,13 +8654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 113, - "indexInLine": 0, + "lineGroupId": 182, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2555, - "time": 0.38545454545454544, + "noteOrder": 4291, + "time": 0.6472727272727272, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -4877,18 +8672,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 113, + "lineGroupId": 184, "indexInLine": 1, "isSliding": false, - "noteOrder": 2579, - "time": 0.38909090909090904, + "noteOrder": 4340, + "time": 0.6545454545454545, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -4905,11 +8700,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 184, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2699, - "time": 0.4072727272727273, + "noteOrder": 4388, + "time": 0.6618181818181819, "position": { "x": 3, "y": 0 @@ -4928,13 +8723,13 @@ "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 186, "indexInLine": 1, "isSliding": false, - "noteOrder": 2723, - "time": 0.4109090909090909, + "noteOrder": 4436, + "time": 0.6690909090909091, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4946,18 +8741,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 186, "indexInLine": 2, "isSliding": false, - "noteOrder": 2747, - "time": 0.41454545454545455, + "noteOrder": 4448, + "time": 0.6709090909090909, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -4969,18 +8764,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 186, "indexInLine": 3, "isSliding": false, - "noteOrder": 2771, - "time": 0.41818181818181815, + "noteOrder": 4460, + "time": 0.6727272727272727, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4992,18 +8787,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 4, + "lineGroupId": 188, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2796, - "time": 0.4218181818181818, + "noteOrder": 4484, + "time": 0.6763636363636364, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5020,13 +8815,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 188, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2796, - "time": 0.4218181818181818, + "noteOrder": 4496, + "time": 0.6781818181818181, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -5038,18 +8833,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 1, + "lineGroupId": 188, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2820, - "time": 0.4254545454545455, + "noteOrder": 4508, + "time": 0.68, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5061,18 +8856,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 2, + "lineGroupId": 190, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2844, - "time": 0.4290909090909091, + "noteOrder": 4532, + "time": 0.6836363636363636, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5089,13 +8884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 3, + "lineGroupId": 190, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2868, - "time": 0.43272727272727274, + "noteOrder": 4557, + "time": 0.6872727272727271, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5112,13 +8907,13 @@ "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 4, + "lineGroupId": 191, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2892, - "time": 0.43636363636363634, + "noteOrder": 4557, + "time": 0.6872727272727271, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -5130,18 +8925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 133, - "indexInLine": 0, + "lineGroupId": 191, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2988, - "time": 0.45090909090909087, + "noteOrder": 4581, + "time": 0.6909090909090908, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5158,13 +8953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 133, + "lineGroupId": 192, "indexInLine": 1, "isSliding": false, - "noteOrder": 3012, - "time": 0.4545454545454546, + "noteOrder": 4581, + "time": 0.6909090909090908, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5176,18 +8971,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 134, - "indexInLine": 0, + "lineGroupId": 192, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2988, - "time": 0.45090909090909087, + "noteOrder": 4605, + "time": 0.6945454545454545, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -5204,13 +8999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 134, + "lineGroupId": 195, "indexInLine": 1, "isSliding": false, - "noteOrder": 3012, - "time": 0.4545454545454546, + "noteOrder": 4629, + "time": 0.6981818181818181, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5222,18 +9017,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 137, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3085, - "time": 0.46545454545454545, + "noteOrder": 4653, + "time": 0.7018181818181818, "position": { - "x": 7, + "x": 2, "y": 0 }, "position2D": { @@ -5245,18 +9040,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 138, - "indexInLine": 0, + "lineGroupId": 195, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3109, - "time": 0.4690909090909091, + "noteOrder": 4725, + "time": 0.7127272727272727, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -5273,13 +9068,13 @@ "isPlayAudio": false }, { - "lineGroupId": 139, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3133, - "time": 0.4727272727272727, + "noteOrder": 4725, + "time": 0.7127272727272727, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5296,13 +9091,13 @@ "isPlayAudio": false }, { - "lineGroupId": 142, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3181, - "time": 0.48, + "noteOrder": 4749, + "time": 0.7163636363636363, "position": { - "x": 7, + "x": 8, "y": 0 }, "position2D": { @@ -5314,16 +9109,39 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 143, - "indexInLine": 0, + "lineGroupId": 202, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3205, - "time": 0.4836363636363636, + "noteOrder": 4798, + "time": 0.7236363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 223, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5111, + "time": 0.7709090909090908, "position": { "x": 7, "y": 0 @@ -5342,13 +9160,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3422, - "time": 0.5163636363636364, + "noteOrder": 5123, + "time": 0.7727272727272727, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5365,13 +9183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 151, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3446, - "time": 0.52, + "noteOrder": 5123, + "time": 0.7727272727272727, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5388,13 +9206,13 @@ "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3422, - "time": 0.5163636363636364, + "noteOrder": 5135, + "time": 0.7745454545454544, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5406,18 +9224,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 152, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3446, - "time": 0.52, + "noteOrder": 5135, + "time": 0.7745454545454544, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5429,16 +9247,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3470, - "time": 0.5236363636363636, + "noteOrder": 5135, + "time": 0.7745454545454544, "position": { "x": 7, "y": 0 @@ -5452,16 +9270,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3494, - "time": 0.5272727272727272, + "noteOrder": 5147, + "time": 0.7763636363636364, "position": { "x": 7, "y": 0 @@ -5480,13 +9298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 157, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3567, - "time": 0.5381818181818182, + "noteOrder": 5147, + "time": 0.7763636363636364, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5503,13 +9321,13 @@ "isPlayAudio": false }, { - "lineGroupId": 158, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3591, - "time": 0.5418181818181819, + "noteOrder": 5159, + "time": 0.7781818181818181, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5521,16 +9339,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3663, - "time": 0.5527272727272727, + "noteOrder": 5159, + "time": 0.7781818181818181, "position": { "x": 3, "y": 0 @@ -5549,13 +9367,13 @@ "isPlayAudio": false }, { - "lineGroupId": 161, + "lineGroupId": 225, "indexInLine": 1, "isSliding": false, - "noteOrder": 3687, - "time": 0.5563636363636364, + "noteOrder": 5159, + "time": 0.7781818181818181, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5567,16 +9385,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3711, - "time": 0.56, + "noteOrder": 5171, + "time": 0.7799999999999999, "position": { "x": 7, "y": 0 @@ -5595,13 +9413,13 @@ "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3735, - "time": 0.5636363636363636, + "noteOrder": 5171, + "time": 0.7799999999999999, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -5618,11 +9436,11 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 0, + "lineGroupId": 225, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3759, - "time": 0.5672727272727273, + "noteOrder": 5183, + "time": 0.7818181818181817, "position": { "x": 5, "y": 0 @@ -5641,13 +9459,13 @@ "isPlayAudio": false }, { - "lineGroupId": 165, - "indexInLine": 1, + "lineGroupId": 225, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3784, - "time": 0.5709090909090908, + "noteOrder": 5183, + "time": 0.7818181818181817, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5664,13 +9482,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3784, - "time": 0.5709090909090908, + "noteOrder": 5183, + "time": 0.7818181818181817, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5687,13 +9505,13 @@ "isPlayAudio": false }, { - "lineGroupId": 166, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3808, - "time": 0.5745454545454546, + "noteOrder": 5195, + "time": 0.7836363636363636, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5710,11 +9528,11 @@ "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3808, - "time": 0.5745454545454546, + "noteOrder": 5195, + "time": 0.7836363636363636, "position": { "x": 5, "y": 0 @@ -5728,16 +9546,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 167, - "indexInLine": 1, + "lineGroupId": 226, + "indexInLine": 4, "isSliding": false, - "noteOrder": 3832, - "time": 0.5781818181818182, + "noteOrder": 5207, + "time": 0.7854545454545454, "position": { "x": 5, "y": 0 @@ -5751,18 +9569,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 168, - "indexInLine": 0, + "lineGroupId": 226, + "indexInLine": 5, "isSliding": false, - "noteOrder": 3832, - "time": 0.5781818181818182, + "noteOrder": 5207, + "time": 0.7854545454545454, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -5779,13 +9597,13 @@ "isPlayAudio": false }, { - "lineGroupId": 168, + "lineGroupId": 227, "indexInLine": 1, "isSliding": false, - "noteOrder": 3856, - "time": 0.5818181818181818, + "noteOrder": 5207, + "time": 0.7854545454545454, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -5797,18 +9615,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 171, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3952, - "time": 0.5963636363636364, + "noteOrder": 5220, + "time": 0.7872727272727272, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -5820,18 +9638,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 172, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3976, - "time": 0.6, + "noteOrder": 5220, + "time": 0.7872727272727272, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5848,13 +9666,13 @@ "isPlayAudio": false }, { - "lineGroupId": 173, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4000, - "time": 0.6036363636363636, + "noteOrder": 5232, + "time": 0.7890909090909091, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -5866,18 +9684,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 0, + "lineGroupId": 227, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4025, - "time": 0.6072727272727273, + "noteOrder": 5232, + "time": 0.7890909090909091, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -5894,13 +9712,13 @@ "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 3, + "lineGroupId": 229, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4073, - "time": 0.6145454545454545, + "noteOrder": 5256, + "time": 0.7927272727272726, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -5912,18 +9730,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 4, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4145, - "time": 0.6254545454545455, + "noteOrder": 5268, + "time": 0.7945454545454546, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5935,16 +9753,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 174, - "indexInLine": 5, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4193, - "time": 0.6327272727272727, + "noteOrder": 5268, + "time": 0.7945454545454546, "position": { "x": 4, "y": 0 @@ -5958,16 +9776,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4169, - "time": 0.629090909090909, + "noteOrder": 5280, + "time": 0.7963636363636363, "position": { "x": 7, "y": 0 @@ -5981,18 +9799,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 180, - "indexInLine": 1, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4193, - "time": 0.6327272727272727, + "noteOrder": 5292, + "time": 0.7981818181818182, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6004,18 +9822,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4241, - "time": 0.64, + "noteOrder": 5292, + "time": 0.7981818181818182, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6032,13 +9850,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 4290, - "time": 0.6472727272727272, + "noteOrder": 5304, + "time": 0.7999999999999999, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6050,16 +9868,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4338, - "time": 0.6545454545454545, + "noteOrder": 5316, + "time": 0.8018181818181818, "position": { "x": 3, "y": 0 @@ -6078,13 +9896,13 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4386, - "time": 0.6618181818181819, + "noteOrder": 5316, + "time": 0.8018181818181818, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6101,13 +9919,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4434, - "time": 0.6690909090909091, + "noteOrder": 5328, + "time": 0.8036363636363636, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6119,18 +9937,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 231, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4446, - "time": 0.6709090909090909, + "noteOrder": 5328, + "time": 0.8036363636363636, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -6142,16 +9960,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 2, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4458, - "time": 0.6727272727272727, + "noteOrder": 5400, + "time": 0.8145454545454545, "position": { "x": 7, "y": 0 @@ -6170,13 +9988,13 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4482, - "time": 0.6763636363636363, + "noteOrder": 5412, + "time": 0.8163636363636364, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -6188,18 +10006,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 1, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4495, - "time": 0.6781818181818182, + "noteOrder": 5412, + "time": 0.8163636363636364, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6211,18 +10029,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 2, + "lineGroupId": 237, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4507, - "time": 0.68, + "noteOrder": 5424, + "time": 0.8181818181818181, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6234,18 +10052,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 190, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4531, - "time": 0.6836363636363637, + "noteOrder": 5424, + "time": 0.8181818181818181, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6262,13 +10080,13 @@ "isPlayAudio": false }, { - "lineGroupId": 190, + "lineGroupId": 238, "indexInLine": 1, "isSliding": false, - "noteOrder": 4555, - "time": 0.6872727272727273, + "noteOrder": 5424, + "time": 0.8181818181818181, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6280,18 +10098,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4555, - "time": 0.6872727272727273, + "noteOrder": 5436, + "time": 0.82, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6308,11 +10126,11 @@ "isPlayAudio": false }, { - "lineGroupId": 191, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4579, - "time": 0.6909090909090909, + "noteOrder": 5436, + "time": 0.82, "position": { "x": 5, "y": 0 @@ -6331,11 +10149,11 @@ "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4579, - "time": 0.6909090909090909, + "noteOrder": 5449, + "time": 0.8218181818181818, "position": { "x": 5, "y": 0 @@ -6349,18 +10167,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 192, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4603, - "time": 0.6945454545454545, + "noteOrder": 5449, + "time": 0.8218181818181818, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6372,18 +10190,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4627, - "time": 0.6981818181818181, + "noteOrder": 5449, + "time": 0.8218181818181818, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6395,18 +10213,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4651, - "time": 0.7018181818181819, + "noteOrder": 5461, + "time": 0.8236363636363635, "position": { - "x": 2, + "x": 7, "y": 0 }, "position2D": { @@ -6418,18 +10236,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 195, - "indexInLine": 2, + "lineGroupId": 239, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4723, - "time": 0.7127272727272727, + "noteOrder": 5461, + "time": 0.8236363636363635, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -6441,18 +10259,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 4, "isSliding": false, - "noteOrder": 4723, - "time": 0.7127272727272727, + "noteOrder": 5473, + "time": 0.8254545454545454, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -6469,13 +10287,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 239, + "indexInLine": 5, "isSliding": false, - "noteOrder": 4748, - "time": 0.7163636363636363, + "noteOrder": 5473, + "time": 0.8254545454545454, "position": { - "x": 8, + "x": 3, "y": 0 }, "position2D": { @@ -6492,13 +10310,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 2, + "lineGroupId": 240, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4796, - "time": 0.7236363636363636, + "noteOrder": 5473, + "time": 0.8254545454545454, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6510,16 +10328,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5109, - "time": 0.7709090909090909, + "noteOrder": 5485, + "time": 0.8272727272727272, "position": { "x": 7, "y": 0 @@ -6533,18 +10351,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5133, - "time": 0.7745454545454545, + "noteOrder": 5485, + "time": 0.8272727272727272, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6561,13 +10379,13 @@ "isPlayAudio": false }, { - "lineGroupId": 225, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5157, - "time": 0.7781818181818181, + "noteOrder": 5497, + "time": 0.8290909090909091, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6579,18 +10397,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 226, - "indexInLine": 0, + "lineGroupId": 240, + "indexInLine": 5, "isSliding": false, - "noteOrder": 5181, - "time": 0.7818181818181817, + "noteOrder": 5497, + "time": 0.8290909090909091, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6607,11 +10425,11 @@ "isPlayAudio": false }, { - "lineGroupId": 227, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5205, - "time": 0.7854545454545455, + "noteOrder": 5497, + "time": 0.8290909090909091, "position": { "x": 7, "y": 0 @@ -6630,13 +10448,13 @@ "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5254, - "time": 0.7927272727272727, + "noteOrder": 5545, + "time": 0.8363636363636363, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6648,18 +10466,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5278, - "time": 0.7963636363636364, + "noteOrder": 5569, + "time": 0.84, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -6676,13 +10494,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 241, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5302, - "time": 0.7999999999999999, + "noteOrder": 5593, + "time": 0.8436363636363636, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6694,18 +10512,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5398, - "time": 0.8145454545454546, + "noteOrder": 5593, + "time": 0.8436363636363636, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -6717,18 +10535,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5422, - "time": 0.8181818181818181, + "noteOrder": 5641, + "time": 0.850909090909091, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6745,13 +10563,13 @@ "isPlayAudio": false }, { - "lineGroupId": 239, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5446, - "time": 0.8218181818181818, + "noteOrder": 5666, + "time": 0.8545454545454545, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6763,18 +10581,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 240, - "indexInLine": 0, + "lineGroupId": 245, + "indexInLine": 4, "isSliding": false, - "noteOrder": 5471, - "time": 0.8254545454545456, + "noteOrder": 5690, + "time": 0.8581818181818182, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -6791,13 +10609,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 0, + "lineGroupId": 253, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5495, - "time": 0.8290909090909091, + "noteOrder": 5786, + "time": 0.8727272727272727, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -6814,13 +10632,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 1, + "lineGroupId": 253, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5543, - "time": 0.8363636363636363, + "noteOrder": 5810, + "time": 0.8763636363636362, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -6837,11 +10655,11 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 2, + "lineGroupId": 253, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5567, - "time": 0.84, + "noteOrder": 5858, + "time": 0.8836363636363636, "position": { "x": 6, "y": 0 @@ -6860,13 +10678,13 @@ "isPlayAudio": false }, { - "lineGroupId": 241, - "indexInLine": 3, + "lineGroupId": 257, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5591, - "time": 0.8436363636363636, + "noteOrder": 5883, + "time": 0.8872727272727272, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6878,18 +10696,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 0, + "lineGroupId": 257, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5591, - "time": 0.8436363636363636, + "noteOrder": 5907, + "time": 0.8909090909090909, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -6906,13 +10724,13 @@ "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 259, "indexInLine": 1, "isSliding": false, - "noteOrder": 5639, - "time": 0.850909090909091, + "noteOrder": 5931, + "time": 0.8945454545454545, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -6924,18 +10742,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, + "lineGroupId": 259, "indexInLine": 2, "isSliding": false, - "noteOrder": 5663, - "time": 0.8545454545454545, + "noteOrder": 5955, + "time": 0.8981818181818181, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -6947,18 +10765,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 245, - "indexInLine": 3, + "lineGroupId": 261, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5687, - "time": 0.8581818181818182, + "noteOrder": 5979, + "time": 0.9018181818181817, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -6975,13 +10793,13 @@ "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 0, + "lineGroupId": 261, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5784, - "time": 0.8727272727272727, + "noteOrder": 5991, + "time": 0.9036363636363637, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -6993,18 +10811,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 1, + "lineGroupId": 261, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5808, - "time": 0.8763636363636363, + "noteOrder": 5991, + "time": 0.9036363636363637, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -7016,18 +10834,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 253, - "indexInLine": 2, + "lineGroupId": 262, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5856, - "time": 0.8836363636363636, + "noteOrder": 6003, + "time": 0.9054545454545454, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -7044,13 +10862,13 @@ "isPlayAudio": false }, { - "lineGroupId": 257, - "indexInLine": 0, + "lineGroupId": 262, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5880, - "time": 0.8872727272727273, + "noteOrder": 6015, + "time": 0.9072727272727271, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -7062,16 +10880,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 257, - "indexInLine": 1, + "lineGroupId": 262, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5904, - "time": 0.890909090909091, + "noteOrder": 6015, + "time": 0.9072727272727271, "position": { "x": 5, "y": 0 @@ -7085,18 +10903,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5928, - "time": 0.8945454545454545, + "noteOrder": 6027, + "time": 0.9090909090909091, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -7108,18 +10926,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 259, - "indexInLine": 1, + "lineGroupId": 263, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5953, - "time": 0.8981818181818182, + "noteOrder": 6039, + "time": 0.9109090909090908, "position": { - "x": 5, + "x": 3, "y": 0 }, "position2D": { @@ -7131,18 +10949,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 261, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5977, - "time": 0.9018181818181817, + "noteOrder": 6039, + "time": 0.9109090909090908, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -7159,13 +10977,13 @@ "isPlayAudio": false }, { - "lineGroupId": 262, - "indexInLine": 0, + "lineGroupId": 263, + "indexInLine": 4, "isSliding": false, - "noteOrder": 6001, - "time": 0.9054545454545454, + "noteOrder": 6051, + "time": 0.9127272727272727, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -7177,16 +10995,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 263, - "indexInLine": 0, + "indexInLine": 5, "isSliding": false, - "noteOrder": 6025, - "time": 0.9090909090909092, + "noteOrder": 6051, + "time": 0.9127272727272727, "position": { "x": 3, "y": 0 @@ -7206,9 +11024,9 @@ }, { "lineGroupId": 282, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6244, "time": 0.9418181818181818, "position": { "x": 7, @@ -7229,10 +11047,10 @@ }, { "lineGroupId": 282, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.9636363636363636, + "noteOrder": 6389, + "time": 0.9636363636363635, "position": { "x": 7, "y": 0 @@ -7252,9 +11070,9 @@ }, { "lineGroupId": 284, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6244, "time": 0.9418181818181818, "position": { "x": 3, @@ -7275,10 +11093,10 @@ }, { "lineGroupId": 284, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.9636363636363636, + "noteOrder": 6389, + "time": 0.9636363636363635, "position": { "x": 3, "y": 0 diff --git "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1b.json" "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1b.json" index fc6333be..7e9eadab 100644 --- "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1b.json" +++ "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/371_difficulty_1b.json" @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 337, - "time": 0.05090909090909091, + "noteOrder": 338, + "time": 0.050909090909090904, "position": { "x": 6, "y": 0 @@ -233,8 +233,8 @@ "isPlayAudio": false }, { - "noteOrder": 602, - "time": 0.09090909090909091, + "noteOrder": 603, + "time": 0.0909090909090909, "position": { "x": 5, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 651, - "time": 0.09818181818181819, + "time": 0.09818181818181818, "position": { "x": 5, "y": 0 @@ -293,7 +293,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.1527272727272727, "position": { "x": 5, @@ -313,7 +313,7 @@ "isPlayAudio": false }, { - "noteOrder": 1060, + "noteOrder": 1061, "time": 0.16, "position": { "x": 6, @@ -354,7 +354,7 @@ }, { "noteOrder": 1133, - "time": 0.17090909090909093, + "time": 0.1709090909090909, "position": { "x": 4, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1205, - "time": 0.18181818181818182, + "time": 0.1818181818181818, "position": { "x": 6, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1301, - "time": 0.19636363636363638, + "noteOrder": 1302, + "time": 0.19636363636363635, "position": { "x": 4, "y": 0 @@ -414,7 +414,7 @@ }, { "noteOrder": 1350, - "time": 0.20363636363636364, + "time": 0.20363636363636362, "position": { "x": 4, "y": 0 @@ -473,7 +473,7 @@ "isPlayAudio": false }, { - "noteOrder": 2217, + "noteOrder": 2218, "time": 0.33454545454545453, "position": { "x": 4, @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 2241, - "time": 0.33818181818181814, + "noteOrder": 2242, + "time": 0.3381818181818182, "position": { "x": 6, "y": 0 @@ -513,8 +513,8 @@ "isPlayAudio": false }, { - "noteOrder": 2265, - "time": 0.34181818181818185, + "noteOrder": 2266, + "time": 0.3418181818181818, "position": { "x": 4, "y": 0 @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2289, - "time": 0.34545454545454546, + "noteOrder": 2290, + "time": 0.3454545454545454, "position": { "x": 6, "y": 0 @@ -553,7 +553,7 @@ "isPlayAudio": false }, { - "noteOrder": 2506, + "noteOrder": 2507, "time": 0.3781818181818182, "position": { "x": 3, @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2555, - "time": 0.38545454545454544, + "noteOrder": 2556, + "time": 0.3854545454545454, "position": { "x": 4, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2603, - "time": 0.39272727272727276, + "noteOrder": 2604, + "time": 0.3927272727272727, "position": { "x": 5, "y": 0 @@ -613,7 +613,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 2652, "time": 0.39999999999999997, "position": { "x": 6, @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2747, + "noteOrder": 2748, "time": 0.41454545454545455, "position": { "x": 4, @@ -653,7 +653,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2845, "time": 0.4290909090909091, "position": { "x": 6, @@ -673,7 +673,7 @@ "isPlayAudio": false }, { - "noteOrder": 3085, + "noteOrder": 3086, "time": 0.46545454545454545, "position": { "x": 7, @@ -693,8 +693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3109, - "time": 0.4690909090909091, + "noteOrder": 3110, + "time": 0.46909090909090906, "position": { "x": 5, "y": 0 @@ -713,7 +713,7 @@ "isPlayAudio": false }, { - "noteOrder": 3133, + "noteOrder": 3134, "time": 0.4727272727272727, "position": { "x": 7, @@ -733,7 +733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3157, + "noteOrder": 3158, "time": 0.4763636363636364, "position": { "x": 5, @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3181, - "time": 0.48, + "noteOrder": 3182, + "time": 0.4799999999999999, "position": { "x": 3, "y": 0 @@ -773,7 +773,7 @@ "isPlayAudio": false }, { - "noteOrder": 3205, + "noteOrder": 3206, "time": 0.4836363636363636, "position": { "x": 5, @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3229, - "time": 0.4872727272727273, + "noteOrder": 3231, + "time": 0.48727272727272725, "position": { "x": 3, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3253, - "time": 0.4909090909090909, + "noteOrder": 3255, + "time": 0.49090909090909085, "position": { "x": 5, "y": 0 @@ -833,7 +833,7 @@ "isPlayAudio": false }, { - "noteOrder": 3422, + "noteOrder": 3423, "time": 0.5163636363636364, "position": { "x": 7, @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 3446, + "noteOrder": 3448, "time": 0.52, "position": { "x": 7, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 3470, + "noteOrder": 3472, "time": 0.5236363636363636, "position": { "x": 7, @@ -893,7 +893,7 @@ "isPlayAudio": false }, { - "noteOrder": 3494, + "noteOrder": 3496, "time": 0.5272727272727272, "position": { "x": 5, @@ -913,7 +913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3543, + "noteOrder": 3544, "time": 0.5345454545454545, "position": { "x": 6, @@ -933,8 +933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3567, - "time": 0.5381818181818182, + "noteOrder": 3568, + "time": 0.5381818181818181, "position": { "x": 3, "y": 0 @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3591, - "time": 0.5418181818181819, + "noteOrder": 3592, + "time": 0.5418181818181818, "position": { "x": 5, "y": 0 @@ -973,7 +973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3639, + "noteOrder": 3640, "time": 0.5490909090909091, "position": { "x": 4, @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 3952, - "time": 0.5963636363636364, + "noteOrder": 3954, + "time": 0.5963636363636363, "position": { "x": 5, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3976, + "noteOrder": 3978, "time": 0.6, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 4000, - "time": 0.6036363636363636, + "noteOrder": 4002, + "time": 0.6036363636363635, "position": { "x": 5, "y": 0 @@ -1053,8 +1053,8 @@ "isPlayAudio": false }, { - "noteOrder": 4025, - "time": 0.6072727272727273, + "noteOrder": 4026, + "time": 0.6072727272727272, "position": { "x": 5, "y": 0 @@ -1073,7 +1073,7 @@ "isPlayAudio": false }, { - "noteOrder": 4049, + "noteOrder": 4050, "time": 0.6109090909090908, "position": { "x": 5, @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 4073, + "noteOrder": 4074, "time": 0.6145454545454545, "position": { "x": 6, @@ -1113,7 +1113,7 @@ "isPlayAudio": false }, { - "noteOrder": 4290, + "noteOrder": 4291, "time": 0.6472727272727272, "position": { "x": 4, @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 4386, + "noteOrder": 4388, "time": 0.6618181818181819, "position": { "x": 6, @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 4579, - "time": 0.6909090909090909, + "noteOrder": 4581, + "time": 0.6909090909090908, "position": { "x": 3, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 5398, - "time": 0.8145454545454546, + "noteOrder": 5400, + "time": 0.8145454545454545, "position": { "x": 4, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 5422, + "noteOrder": 5424, "time": 0.8181818181818181, "position": { "x": 4, @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 5446, + "noteOrder": 5449, "time": 0.8218181818181818, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 5471, - "time": 0.8254545454545456, + "noteOrder": 5473, + "time": 0.8254545454545454, "position": { "x": 6, "y": 0 @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 5543, + "noteOrder": 5545, "time": 0.8363636363636363, "position": { "x": 4, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 5567, + "noteOrder": 5569, "time": 0.84, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 5639, + "noteOrder": 5641, "time": 0.850909090909091, "position": { "x": 6, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 5663, + "noteOrder": 5666, "time": 0.8545454545454545, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 5736, - "time": 0.8654545454545455, + "noteOrder": 5738, + "time": 0.8654545454545454, "position": { "x": 4, "y": 0 @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 5832, - "time": 0.88, + "noteOrder": 5834, + "time": 0.8799999999999999, "position": { "x": 6, "y": 0 @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 5977, + "noteOrder": 5979, "time": 0.9018181818181817, "position": { "x": 7, @@ -1393,7 +1393,7 @@ "isPlayAudio": false }, { - "noteOrder": 6001, + "noteOrder": 6003, "time": 0.9054545454545454, "position": { "x": 3, @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6025, - "time": 0.9090909090909092, + "noteOrder": 6027, + "time": 0.9090909090909091, "position": { "x": 6, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 6049, + "noteOrder": 6051, "time": 0.9127272727272727, "position": { "x": 4, @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 6097, + "noteOrder": 6099, "time": 0.9199999999999999, "position": { "x": 5, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 6145, + "noteOrder": 6148, "time": 0.9272727272727272, "position": { "x": 5, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 6194, + "noteOrder": 6196, "time": 0.9345454545454546, "position": { "x": 5, @@ -1516,10 +1516,56 @@ "lineNodes": [ { "lineGroupId": 19, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 675, - "time": 0.10181818181818182, + "time": 0.10181818181818181, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 699, + "time": 0.10545454545454545, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 19, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 699, + "time": 0.10545454545454545, "position": { "x": 6, "y": 0 @@ -1539,7 +1585,7 @@ }, { "lineGroupId": 20, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 723, "time": 0.10909090909090909, @@ -1560,9 +1606,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 20, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 747, + "time": 0.11272727272727272, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 20, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 747, + "time": 0.11272727272727272, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 21, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 771, "time": 0.11636363636363636, @@ -1583,11 +1675,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 21, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 796, + "time": 0.11999999999999998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 21, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 796, + "time": 0.11999999999999998, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 22, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 819, + "noteOrder": 820, "time": 0.12363636363636363, "position": { "x": 4, @@ -1606,9 +1744,55 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 22, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 844, + "time": 0.12727272727272726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 22, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 844, + "time": 0.12727272727272726, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 23, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 868, "time": 0.1309090909090909, @@ -1631,7 +1815,7 @@ }, { "lineGroupId": 23, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 916, "time": 0.13818181818181818, @@ -1654,7 +1838,7 @@ }, { "lineGroupId": 25, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 964, "time": 0.14545454545454545, @@ -1677,9 +1861,9 @@ }, { "lineGroupId": 25, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1012, + "noteOrder": 1013, "time": 0.1527272727272727, "position": { "x": 3, @@ -1700,7 +1884,7 @@ }, { "lineGroupId": 30, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1157, "time": 0.17454545454545453, @@ -1723,10 +1907,10 @@ }, { "lineGroupId": 30, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1205, - "time": 0.18181818181818182, + "time": 0.1818181818181818, "position": { "x": 4, "y": 0 @@ -1746,9 +1930,9 @@ }, { "lineGroupId": 32, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1253, + "noteOrder": 1254, "time": 0.1890909090909091, "position": { "x": 7, @@ -1769,10 +1953,10 @@ }, { "lineGroupId": 32, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1301, - "time": 0.19636363636363638, + "noteOrder": 1302, + "time": 0.19636363636363635, "position": { "x": 6, "y": 0 @@ -1792,9 +1976,9 @@ }, { "lineGroupId": 37, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1446, + "noteOrder": 1447, "time": 0.21818181818181817, "position": { "x": 5, @@ -1815,9 +1999,9 @@ }, { "lineGroupId": 37, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1494, + "noteOrder": 1495, "time": 0.22545454545454544, "position": { "x": 5, @@ -1838,9 +2022,9 @@ }, { "lineGroupId": 38, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1494, + "noteOrder": 1495, "time": 0.22545454545454544, "position": { "x": 5, @@ -1861,9 +2045,9 @@ }, { "lineGroupId": 38, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1542, + "noteOrder": 1543, "time": 0.23272727272727273, "position": { "x": 5, @@ -1884,9 +2068,9 @@ }, { "lineGroupId": 43, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1735, + "noteOrder": 1736, "time": 0.2618181818181818, "position": { "x": 6, @@ -1901,18 +2085,1122 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1760, + "time": 0.26545454545454544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 43, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1760, + "time": 0.26545454545454544, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1784, + "time": 0.26909090909090905, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1808, + "time": 0.2727272727272727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 44, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1808, + "time": 0.2727272727272727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1832, + "time": 0.27636363636363637, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1856, + "time": 0.27999999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 45, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1856, + "time": 0.27999999999999997, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 1880, + "time": 0.28363636363636363, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 1905, + "time": 0.2872727272727273, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 46, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 1905, + "time": 0.2872727272727273, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2122, + "time": 0.32, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 51, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3236363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2122, + "time": 0.32, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 52, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2146, + "time": 0.3236363636363636, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.32727272727272727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 53, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2194, + "time": 0.33090909090909093, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2170, + "time": 0.32727272727272727, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 54, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2194, + "time": 0.33090909090909093, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2700, + "time": 0.40727272727272723, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4109090909090909, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 64, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2724, + "time": 0.4109090909090909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2797, + "time": 0.4218181818181818, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2821, + "time": 0.4254545454545455, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 66, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2821, + "time": 0.4254545454545455, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2893, + "time": 0.43636363636363634, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2917, + "time": 0.43999999999999995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 68, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2917, + "time": 0.43999999999999995, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2941, + "time": 0.4436363636363636, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2965, + "time": 0.44727272727272727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 69, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2965, + "time": 0.44727272727272727, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2989, + "time": 0.45090909090909087, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3014, + "time": 0.45454545454545453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 70, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3014, + "time": 0.45454545454545453, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3038, + "time": 0.4581818181818182, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3062, + "time": 0.4618181818181818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 71, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3062, + "time": 0.4618181818181818, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3279, + "time": 0.4945454545454545, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 80, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3327, + "time": 0.5018181818181817, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3375, + "time": 0.509090909090909, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3423, + "time": 0.5163636363636364, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 82, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3472, + "time": 0.5236363636363636, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3520, + "time": 0.5309090909090909, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3544, + "time": 0.5345454545454545, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3616, + "time": 0.5454545454545454, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3640, + "time": 0.5490909090909091, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3665, + "time": 0.5527272727272727, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3689, + "time": 0.5563636363636364, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 44, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1783, - "time": 0.2690909090909091, + "noteOrder": 3665, + "time": 0.5527272727272727, "position": { - "x": 4, + "x": 5, "y": 0 }, "position2D": { @@ -1924,18 +3212,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 45, - "indexInLine": 0, + "lineGroupId": 94, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1832, - "time": 0.27636363636363637, + "noteOrder": 3689, + "time": 0.5563636363636364, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -1952,13 +3240,13 @@ "isPlayAudio": false }, { - "lineGroupId": 46, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1880, - "time": 0.28363636363636363, + "noteOrder": 3713, + "time": 0.5599999999999999, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -1970,18 +3258,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 95, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2121, - "time": 0.32, + "noteOrder": 3737, + "time": 0.5636363636363636, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -1993,16 +3281,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, + "lineGroupId": 96, "indexInLine": 1, "isSliding": false, - "noteOrder": 2145, - "time": 0.3236363636363636, + "noteOrder": 3713, + "time": 0.5599999999999999, "position": { "x": 5, "y": 0 @@ -2021,13 +3309,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2121, - "time": 0.32, + "noteOrder": 3737, + "time": 0.5636363636363636, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2039,18 +3327,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 52, + "lineGroupId": 99, "indexInLine": 1, "isSliding": false, - "noteOrder": 2145, - "time": 0.3236363636363636, + "noteOrder": 3857, + "time": 0.5818181818181818, "position": { - "x": 7, + "x": 5, "y": 0 }, "position2D": { @@ -2067,13 +3355,13 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 99, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2169, - "time": 0.32727272727272727, + "noteOrder": 3906, + "time": 0.5890909090909091, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2085,18 +3373,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, + "lineGroupId": 100, "indexInLine": 1, "isSliding": false, - "noteOrder": 2193, - "time": 0.33090909090909093, + "noteOrder": 3906, + "time": 0.5890909090909091, "position": { - "x": 3, + "x": 5, "y": 0 }, "position2D": { @@ -2113,11 +3401,11 @@ "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 100, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2169, - "time": 0.32727272727272727, + "noteOrder": 3954, + "time": 0.5963636363636363, "position": { "x": 5, "y": 0 @@ -2131,18 +3419,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, + "lineGroupId": 107, "indexInLine": 1, "isSliding": false, - "noteOrder": 2193, - "time": 0.33090909090909093, + "noteOrder": 4098, + "time": 0.6181818181818182, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2159,11 +3447,11 @@ "isPlayAudio": false }, { - "lineGroupId": 64, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2699, - "time": 0.4072727272727273, + "noteOrder": 4123, + "time": 0.6218181818181817, "position": { "x": 7, "y": 0 @@ -2182,13 +3470,13 @@ "isPlayAudio": false }, { - "lineGroupId": 66, - "indexInLine": 0, + "lineGroupId": 107, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2796, - "time": 0.4218181818181818, + "noteOrder": 4123, + "time": 0.6218181818181817, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2200,18 +3488,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2892, - "time": 0.43636363636363634, + "noteOrder": 4147, + "time": 0.6254545454545454, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2223,16 +3511,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2940, - "time": 0.44363636363636366, + "noteOrder": 4171, + "time": 0.629090909090909, "position": { "x": 4, "y": 0 @@ -2251,11 +3539,11 @@ "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 108, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2988, - "time": 0.45090909090909087, + "noteOrder": 4171, + "time": 0.629090909090909, "position": { "x": 6, "y": 0 @@ -2269,18 +3557,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3037, - "time": 0.4581818181818182, + "noteOrder": 4243, + "time": 0.64, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2292,18 +3580,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3278, - "time": 0.4945454545454545, + "noteOrder": 4291, + "time": 0.6472727272727272, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2320,13 +3608,13 @@ "isPlayAudio": false }, { - "lineGroupId": 80, - "indexInLine": 1, + "lineGroupId": 110, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3326, - "time": 0.5018181818181818, + "noteOrder": 4340, + "time": 0.6545454545454545, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2343,11 +3631,11 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 0, + "lineGroupId": 112, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3374, - "time": 0.5090909090909091, + "noteOrder": 4340, + "time": 0.6545454545454545, "position": { "x": 3, "y": 0 @@ -2366,13 +3654,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 1, + "lineGroupId": 112, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3422, - "time": 0.5163636363636364, + "noteOrder": 4388, + "time": 0.6618181818181819, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2389,13 +3677,13 @@ "isPlayAudio": false }, { - "lineGroupId": 82, - "indexInLine": 2, + "lineGroupId": 112, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3470, - "time": 0.5236363636363636, + "noteOrder": 4436, + "time": 0.6690909090909091, "position": { - "x": 5, + "x": 4, "y": 0 }, "position2D": { @@ -2412,13 +3700,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 114, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3519, - "time": 0.5309090909090909, + "noteOrder": 4436, + "time": 0.6690909090909091, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -2430,18 +3718,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 114, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3543, - "time": 0.5345454545454545, + "noteOrder": 4484, + "time": 0.6763636363636364, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2453,18 +3741,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 115, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3615, - "time": 0.5454545454545454, + "noteOrder": 4484, + "time": 0.6763636363636364, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -2476,18 +3764,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 1, + "lineGroupId": 115, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3639, - "time": 0.5490909090909091, + "noteOrder": 4532, + "time": 0.6836363636363636, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -2499,18 +3787,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 116, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3663, - "time": 0.5527272727272727, + "noteOrder": 4532, + "time": 0.6836363636363636, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -2522,18 +3810,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 1, + "lineGroupId": 116, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3687, - "time": 0.5563636363636364, + "noteOrder": 4581, + "time": 0.6909090909090908, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -2545,18 +3833,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3663, - "time": 0.5527272727272727, + "noteOrder": 4629, + "time": 0.6981818181818181, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2573,13 +3861,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 1, + "lineGroupId": 118, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3687, - "time": 0.5563636363636364, + "noteOrder": 4653, + "time": 0.7018181818181818, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2596,13 +3884,13 @@ "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3711, - "time": 0.56, + "noteOrder": 4653, + "time": 0.7018181818181818, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2619,11 +3907,11 @@ "isPlayAudio": false }, { - "lineGroupId": 95, + "lineGroupId": 119, "indexInLine": 1, "isSliding": false, - "noteOrder": 3735, - "time": 0.5636363636363636, + "noteOrder": 4677, + "time": 0.7054545454545454, "position": { "x": 7, "y": 0 @@ -2637,18 +3925,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 119, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3711, - "time": 0.56, + "noteOrder": 4701, + "time": 0.709090909090909, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2665,13 +3953,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 1, + "lineGroupId": 119, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3735, - "time": 0.5636363636363636, + "noteOrder": 4701, + "time": 0.709090909090909, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2688,13 +3976,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3856, - "time": 0.5818181818181818, + "noteOrder": 4725, + "time": 0.7127272727272727, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2711,13 +3999,13 @@ "isPlayAudio": false }, { - "lineGroupId": 99, - "indexInLine": 1, + "lineGroupId": 120, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3904, - "time": 0.5890909090909091, + "noteOrder": 4749, + "time": 0.7163636363636363, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2734,13 +4022,13 @@ "isPlayAudio": false }, { - "lineGroupId": 100, - "indexInLine": 0, + "lineGroupId": 120, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3904, - "time": 0.5890909090909091, + "noteOrder": 4749, + "time": 0.7163636363636363, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -2752,18 +4040,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 100, + "lineGroupId": 121, "indexInLine": 1, "isSliding": false, - "noteOrder": 3952, - "time": 0.5963636363636364, + "noteOrder": 4774, + "time": 0.72, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -2780,11 +4068,11 @@ "isPlayAudio": false }, { - "lineGroupId": 107, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4097, - "time": 0.6181818181818182, + "noteOrder": 4798, + "time": 0.7236363636363636, "position": { "x": 7, "y": 0 @@ -2798,18 +4086,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 108, - "indexInLine": 0, + "lineGroupId": 121, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4145, - "time": 0.6254545454545455, + "noteOrder": 4798, + "time": 0.7236363636363636, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -2826,13 +4114,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 122, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4241, - "time": 0.64, + "noteOrder": 4822, + "time": 0.7272727272727272, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2849,11 +4137,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 122, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4290, - "time": 0.6472727272727272, + "noteOrder": 4846, + "time": 0.7309090909090908, "position": { "x": 6, "y": 0 @@ -2872,11 +4160,11 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 2, + "lineGroupId": 122, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4338, - "time": 0.6545454545454545, + "noteOrder": 4846, + "time": 0.7309090909090908, "position": { "x": 6, "y": 0 @@ -2895,13 +4183,13 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 0, + "lineGroupId": 123, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4338, - "time": 0.6545454545454545, + "noteOrder": 4870, + "time": 0.7345454545454545, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -2918,11 +4206,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 1, + "lineGroupId": 123, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4386, - "time": 0.6618181818181819, + "noteOrder": 4894, + "time": 0.7381818181818182, "position": { "x": 4, "y": 0 @@ -2941,11 +4229,11 @@ "isPlayAudio": false }, { - "lineGroupId": 112, - "indexInLine": 2, + "lineGroupId": 123, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4434, - "time": 0.6690909090909091, + "noteOrder": 4894, + "time": 0.7381818181818182, "position": { "x": 4, "y": 0 @@ -2964,13 +4252,13 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4434, - "time": 0.6690909090909091, + "noteOrder": 4918, + "time": 0.7418181818181818, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -2987,11 +4275,11 @@ "isPlayAudio": false }, { - "lineGroupId": 114, - "indexInLine": 1, + "lineGroupId": 124, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4482, - "time": 0.6763636363636363, + "noteOrder": 4942, + "time": 0.7454545454545455, "position": { "x": 6, "y": 0 @@ -3010,13 +4298,13 @@ "isPlayAudio": false }, { - "lineGroupId": 115, - "indexInLine": 0, + "lineGroupId": 124, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4482, - "time": 0.6763636363636363, + "noteOrder": 4942, + "time": 0.7454545454545455, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3028,16 +4316,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 115, + "lineGroupId": 125, "indexInLine": 1, "isSliding": false, - "noteOrder": 4531, - "time": 0.6836363636363637, + "noteOrder": 4966, + "time": 0.749090909090909, "position": { "x": 4, "y": 0 @@ -3056,13 +4344,13 @@ "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 0, + "lineGroupId": 125, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4531, - "time": 0.6836363636363637, + "noteOrder": 4990, + "time": 0.7527272727272727, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3074,18 +4362,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 116, - "indexInLine": 1, + "lineGroupId": 125, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4579, - "time": 0.6909090909090909, + "noteOrder": 4990, + "time": 0.7527272727272727, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3097,18 +4385,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4627, - "time": 0.6981818181818181, + "noteOrder": 5111, + "time": 0.7709090909090908, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3120,18 +4408,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4675, - "time": 0.7054545454545454, + "noteOrder": 5135, + "time": 0.7745454545454544, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3148,13 +4436,13 @@ "isPlayAudio": false }, { - "lineGroupId": 120, - "indexInLine": 0, + "lineGroupId": 127, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4723, - "time": 0.7127272727272727, + "noteOrder": 5135, + "time": 0.7745454545454544, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3166,18 +4454,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4772, - "time": 0.7200000000000001, + "noteOrder": 5159, + "time": 0.7781818181818181, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3189,18 +4477,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 122, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4820, - "time": 0.7272727272727273, + "noteOrder": 5183, + "time": 0.7818181818181817, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3217,13 +4505,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 128, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4868, - "time": 0.7345454545454545, + "noteOrder": 5183, + "time": 0.7818181818181817, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3235,18 +4523,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 124, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4916, - "time": 0.7418181818181818, + "noteOrder": 5207, + "time": 0.7854545454545454, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3258,16 +4546,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 125, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4964, - "time": 0.7490909090909091, + "noteOrder": 5232, + "time": 0.7890909090909091, "position": { "x": 4, "y": 0 @@ -3286,13 +4574,13 @@ "isPlayAudio": false }, { - "lineGroupId": 127, - "indexInLine": 0, + "lineGroupId": 129, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5109, - "time": 0.7709090909090909, + "noteOrder": 5232, + "time": 0.7890909090909091, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3309,11 +4597,11 @@ "isPlayAudio": false }, { - "lineGroupId": 128, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5157, - "time": 0.7781818181818181, + "noteOrder": 5256, + "time": 0.7927272727272726, "position": { "x": 4, "y": 0 @@ -3332,11 +4620,11 @@ "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 130, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5205, - "time": 0.7854545454545455, + "noteOrder": 5280, + "time": 0.7963636363636363, "position": { "x": 4, "y": 0 @@ -3350,18 +4638,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 130, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5254, - "time": 0.7927272727272727, + "noteOrder": 5280, + "time": 0.7963636363636363, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3379,9 +4667,9 @@ }, { "lineGroupId": 131, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5302, + "noteOrder": 5304, "time": 0.7999999999999999, "position": { "x": 4, @@ -3402,9 +4690,9 @@ }, { "lineGroupId": 131, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5350, + "noteOrder": 5352, "time": 0.8072727272727273, "position": { "x": 6, @@ -3425,9 +4713,9 @@ }, { "lineGroupId": 132, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5350, + "noteOrder": 5352, "time": 0.8072727272727273, "position": { "x": 7, @@ -3448,10 +4736,10 @@ }, { "lineGroupId": 132, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5398, - "time": 0.8145454545454546, + "noteOrder": 5400, + "time": 0.8145454545454545, "position": { "x": 6, "y": 0 @@ -3471,9 +4759,9 @@ }, { "lineGroupId": 137, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5495, + "noteOrder": 5497, "time": 0.8290909090909091, "position": { "x": 7, @@ -3494,9 +4782,9 @@ }, { "lineGroupId": 137, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5543, + "noteOrder": 5545, "time": 0.8363636363636363, "position": { "x": 6, @@ -3517,9 +4805,9 @@ }, { "lineGroupId": 137, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5591, + "noteOrder": 5593, "time": 0.8436363636363636, "position": { "x": 6, @@ -3540,9 +4828,9 @@ }, { "lineGroupId": 140, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5591, + "noteOrder": 5593, "time": 0.8436363636363636, "position": { "x": 3, @@ -3563,9 +4851,9 @@ }, { "lineGroupId": 140, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5639, + "noteOrder": 5641, "time": 0.850909090909091, "position": { "x": 4, @@ -3586,9 +4874,9 @@ }, { "lineGroupId": 140, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5687, + "noteOrder": 5690, "time": 0.8581818181818182, "position": { "x": 4, @@ -3609,9 +4897,9 @@ }, { "lineGroupId": 143, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5687, + "noteOrder": 5690, "time": 0.8581818181818182, "position": { "x": 7, @@ -3632,9 +4920,9 @@ }, { "lineGroupId": 143, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5784, + "noteOrder": 5786, "time": 0.8727272727272727, "position": { "x": 5, @@ -3655,9 +4943,9 @@ }, { "lineGroupId": 145, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5784, + "noteOrder": 5786, "time": 0.8727272727272727, "position": { "x": 3, @@ -3678,10 +4966,10 @@ }, { "lineGroupId": 145, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5880, - "time": 0.8872727272727273, + "noteOrder": 5883, + "time": 0.8872727272727272, "position": { "x": 5, "y": 0 @@ -3701,10 +4989,33 @@ }, { "lineGroupId": 147, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5883, + "time": 0.8872727272727272, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 147, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5880, - "time": 0.8872727272727273, + "noteOrder": 5907, + "time": 0.8909090909090909, "position": { "x": 7, "y": 0 @@ -3722,11 +5033,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 147, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5907, + "time": 0.8909090909090909, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 148, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5928, + "noteOrder": 5931, "time": 0.8945454545454545, "position": { "x": 4, @@ -3745,11 +5079,57 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 148, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5955, + "time": 0.8981818181818181, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 148, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5955, + "time": 0.8981818181818181, + "position": { + "x": 5, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 160, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6244, "time": 0.9418181818181818, "position": { "x": 6, @@ -3770,10 +5150,10 @@ }, { "lineGroupId": 160, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.9636363636363636, + "noteOrder": 6389, + "time": 0.9636363636363635, "position": { "x": 6, "y": 0 @@ -3793,9 +5173,9 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6242, + "noteOrder": 6244, "time": 0.9418181818181818, "position": { "x": 4, @@ -3816,10 +5196,10 @@ }, { "lineGroupId": 161, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6386, - "time": 0.9636363636363636, + "noteOrder": 6389, + "time": 0.9636363636363635, "position": { "x": 4, "y": 0 diff --git "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/info.json" "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/info.json" index c1b775df..cf9f47ae 100644 --- "a/tracks/\351\237\263\346\245\275 (STARDOM Remix)/info.json" +++ "b/tracks/\351\237\263\346\245\275 (STARDOM Remix)/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u97f3\u697d (STARDOM Remix)", - "SongLength": "132.728163", + "SongLength": "122.775510", "SongAuthorName": "cosMo\uff20\u66b4\u8d70P", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0, diff --git "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1a.json" "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1a.json" index af7d614c..4e91dbab 100644 --- "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1a.json" +++ "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1a.json" @@ -54,7 +54,7 @@ }, { "noteOrder": 145, - "time": 0.02230483271375465, + "time": 0.022304832713754646, "position": { "x": 4, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 157, - "time": 0.024163568773234202, + "time": 0.0241635687732342, "position": { "x": 6, "y": 0 @@ -94,7 +94,7 @@ }, { "noteOrder": 169, - "time": 0.026022304832713755, + "time": 0.02602230483271375, "position": { "x": 3, "y": 0 @@ -134,7 +134,7 @@ }, { "noteOrder": 218, - "time": 0.033457249070631974, + "time": 0.03345724907063197, "position": { "x": 3, "y": 0 @@ -174,7 +174,7 @@ }, { "noteOrder": 254, - "time": 0.03903345724907063, + "time": 0.039033457249070626, "position": { "x": 5, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 266, - "time": 0.040892193308550186, + "time": 0.04089219330855018, "position": { "x": 7, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 290, - "time": 0.0446096654275093, + "time": 0.04460966542750929, "position": { "x": 5, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 314, - "time": 0.048327137546468404, + "time": 0.0483271375464684, "position": { "x": 3, "y": 0 @@ -253,8 +253,8 @@ "isPlayAudio": false }, { - "noteOrder": 338, - "time": 0.05204460966542751, + "noteOrder": 339, + "time": 0.0520446096654275, "position": { "x": 6, "y": 0 @@ -294,7 +294,7 @@ }, { "noteOrder": 363, - "time": 0.05576208178438662, + "time": 0.055762081784386616, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 411, - "time": 0.06319702602230484, + "time": 0.06319702602230483, "position": { "x": 7, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 435, - "time": 0.06691449814126395, + "time": 0.06691449814126393, "position": { "x": 3, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 459, - "time": 0.07063197026022305, + "noteOrder": 460, + "time": 0.07063197026022304, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 508, - "time": 0.07806691449814127, + "time": 0.07806691449814125, "position": { "x": 7, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 556, - "time": 0.08550185873605948, + "time": 0.08550185873605946, "position": { "x": 6, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 580, - "time": 0.0892193308550186, + "time": 0.08921933085501858, "position": { "x": 4, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 604, - "time": 0.0929368029739777, + "noteOrder": 605, + "time": 0.09293680297397769, "position": { "x": 3, "y": 0 @@ -514,7 +514,7 @@ }, { "noteOrder": 653, - "time": 0.10037174721189591, + "time": 0.1003717472118959, "position": { "x": 4, "y": 0 @@ -534,7 +534,7 @@ }, { "noteOrder": 677, - "time": 0.10408921933085502, + "time": 0.104089219330855, "position": { "x": 7, "y": 0 @@ -573,8 +573,8 @@ "isPlayAudio": false }, { - "noteOrder": 725, - "time": 0.11152416356877325, + "noteOrder": 726, + "time": 0.11152416356877323, "position": { "x": 7, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 749, - "time": 0.11524163568773235, + "noteOrder": 750, + "time": 0.11524163568773234, "position": { "x": 3, "y": 0 @@ -634,7 +634,7 @@ }, { "noteOrder": 798, - "time": 0.12267657992565056, + "time": 0.12267657992565055, "position": { "x": 5, "y": 0 @@ -654,7 +654,7 @@ }, { "noteOrder": 822, - "time": 0.12639405204460968, + "time": 0.12639405204460966, "position": { "x": 5, "y": 0 @@ -694,7 +694,7 @@ }, { "noteOrder": 1064, - "time": 0.16356877323420074, + "time": 0.16356877323420072, "position": { "x": 7, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 1112, - "time": 0.17100371747211895, + "noteOrder": 1113, + "time": 0.17100371747211893, "position": { "x": 6, "y": 0 @@ -753,7 +753,7 @@ "isPlayAudio": false }, { - "noteOrder": 1136, + "noteOrder": 1137, "time": 0.17472118959107807, "position": { "x": 4, @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 1160, - "time": 0.1784386617100372, + "noteOrder": 1161, + "time": 0.17843866171003717, "position": { "x": 7, "y": 0 @@ -814,7 +814,7 @@ }, { "noteOrder": 1209, - "time": 0.1858736059479554, + "time": 0.18587360594795538, "position": { "x": 6, "y": 0 @@ -834,7 +834,7 @@ }, { "noteOrder": 1233, - "time": 0.18959107806691453, + "time": 0.1895910780669145, "position": { "x": 3, "y": 0 @@ -854,7 +854,7 @@ }, { "noteOrder": 1451, - "time": 0.2230483271375465, + "time": 0.22304832713754646, "position": { "x": 3, "y": 0 @@ -874,7 +874,7 @@ }, { "noteOrder": 1475, - "time": 0.22676579925650558, + "time": 0.22676579925650556, "position": { "x": 7, "y": 0 @@ -894,7 +894,7 @@ }, { "noteOrder": 1499, - "time": 0.2304832713754647, + "time": 0.23048327137546468, "position": { "x": 4, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 1523, - "time": 0.2342007434944238, + "noteOrder": 1524, + "time": 0.23420074349442377, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 1547, + "noteOrder": 1548, "time": 0.2379182156133829, "position": { "x": 3, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.241635687732342, + "noteOrder": 1572, + "time": 0.24163568773234198, "position": { "x": 7, "y": 0 @@ -974,7 +974,7 @@ }, { "noteOrder": 1596, - "time": 0.24535315985130113, + "time": 0.2453531598513011, "position": { "x": 4, "y": 0 @@ -994,7 +994,7 @@ }, { "noteOrder": 1620, - "time": 0.24907063197026022, + "time": 0.2490706319702602, "position": { "x": 7, "y": 0 @@ -1013,7 +1013,7 @@ "isPlayAudio": false }, { - "noteOrder": 1958, + "noteOrder": 1959, "time": 0.3011152416356877, "position": { "x": 5, @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 1982, - "time": 0.3048327137546469, + "noteOrder": 1983, + "time": 0.3048327137546468, "position": { "x": 4, "y": 0 @@ -1074,7 +1074,7 @@ }, { "noteOrder": 2152, - "time": 0.3308550185873606, + "time": 0.33085501858736055, "position": { "x": 5, "y": 0 @@ -1093,7 +1093,7 @@ "isPlayAudio": false }, { - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.33457249070631967, "position": { "x": 6, @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 2200, - "time": 0.33828996282527884, + "noteOrder": 2201, + "time": 0.3382899628252788, "position": { "x": 7, "y": 0 @@ -1133,7 +1133,7 @@ "isPlayAudio": false }, { - "noteOrder": 2345, + "noteOrder": 2346, "time": 0.36059479553903345, "position": { "x": 5, @@ -1153,7 +1153,7 @@ "isPlayAudio": false }, { - "noteOrder": 2369, + "noteOrder": 2370, "time": 0.3643122676579926, "position": { "x": 4, @@ -1173,7 +1173,7 @@ "isPlayAudio": false }, { - "noteOrder": 2393, + "noteOrder": 2394, "time": 0.36802973977695164, "position": { "x": 3, @@ -1193,8 +1193,8 @@ "isPlayAudio": false }, { - "noteOrder": 2538, - "time": 0.39033457249070636, + "noteOrder": 2539, + "time": 0.3903345724907063, "position": { "x": 5, "y": 0 @@ -1213,7 +1213,7 @@ "isPlayAudio": false }, { - "noteOrder": 2563, + "noteOrder": 2564, "time": 0.3940520446096654, "position": { "x": 6, @@ -1233,8 +1233,8 @@ "isPlayAudio": false }, { - "noteOrder": 2587, - "time": 0.39776951672862454, + "noteOrder": 2588, + "time": 0.3977695167286245, "position": { "x": 7, "y": 0 @@ -1253,8 +1253,8 @@ "isPlayAudio": false }, { - "noteOrder": 2708, - "time": 0.4163568773234201, + "noteOrder": 2709, + "time": 0.41635687732342, "position": { "x": 6, "y": 0 @@ -1273,8 +1273,8 @@ "isPlayAudio": false }, { - "noteOrder": 2732, - "time": 0.4200743494423792, + "noteOrder": 2733, + "time": 0.42007434944237915, "position": { "x": 7, "y": 0 @@ -1293,8 +1293,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.4237918215613383, + "noteOrder": 2757, + "time": 0.4237918215613382, "position": { "x": 4, "y": 0 @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 2768, + "noteOrder": 2769, "time": 0.4256505576208178, "position": { "x": 6, @@ -1333,8 +1333,8 @@ "isPlayAudio": false }, { - "noteOrder": 2780, - "time": 0.42750929368029744, + "noteOrder": 2781, + "time": 0.4275092936802974, "position": { "x": 3, "y": 0 @@ -1353,7 +1353,7 @@ "isPlayAudio": false }, { - "noteOrder": 2804, + "noteOrder": 2805, "time": 0.4312267657992565, "position": { "x": 6, @@ -1373,7 +1373,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 2830, "time": 0.4349442379182156, "position": { "x": 3, @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 2853, - "time": 0.43866171003717475, + "noteOrder": 2854, + "time": 0.4386617100371747, "position": { "x": 7, "y": 0 @@ -1413,8 +1413,8 @@ "isPlayAudio": false }, { - "noteOrder": 2865, - "time": 0.4405204460966543, + "noteOrder": 2866, + "time": 0.44052044609665425, "position": { "x": 5, "y": 0 @@ -1433,7 +1433,7 @@ "isPlayAudio": false }, { - "noteOrder": 2877, + "noteOrder": 2878, "time": 0.4423791821561338, "position": { "x": 7, @@ -1453,8 +1453,8 @@ "isPlayAudio": false }, { - "noteOrder": 2901, - "time": 0.446096654275093, + "noteOrder": 2902, + "time": 0.44609665427509293, "position": { "x": 3, "y": 0 @@ -1473,8 +1473,8 @@ "isPlayAudio": false }, { - "noteOrder": 2901, - "time": 0.446096654275093, + "noteOrder": 2902, + "time": 0.44609665427509293, "position": { "x": 7, "y": 0 @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 2926, "time": 0.44981412639405205, "position": { "x": 6, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 2926, "time": 0.44981412639405205, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 2949, - "time": 0.45353159851301117, + "noteOrder": 2951, + "time": 0.4535315985130111, "position": { "x": 6, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 2961, - "time": 0.45539033457249073, + "noteOrder": 2963, + "time": 0.4553903345724907, "position": { "x": 3, "y": 0 @@ -1573,8 +1573,8 @@ "isPlayAudio": false }, { - "noteOrder": 2974, - "time": 0.4572490706319703, + "noteOrder": 2975, + "time": 0.45724907063197023, "position": { "x": 5, "y": 0 @@ -1593,8 +1593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.4609665427509294, + "noteOrder": 2999, + "time": 0.46096654275092935, "position": { "x": 3, "y": 0 @@ -1613,8 +1613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.4609665427509294, + "noteOrder": 2999, + "time": 0.46096654275092935, "position": { "x": 7, "y": 0 @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.4646840148698885, + "noteOrder": 3023, + "time": 0.4646840148698884, "position": { "x": 4, "y": 0 @@ -1653,8 +1653,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.4646840148698885, + "noteOrder": 3023, + "time": 0.4646840148698884, "position": { "x": 6, "y": 0 @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 3046, - "time": 0.4684014869888476, + "noteOrder": 3047, + "time": 0.46840148698884754, "position": { "x": 4, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 3058, - "time": 0.47026022304832715, + "noteOrder": 3059, + "time": 0.4702602230483271, "position": { "x": 7, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 3070, - "time": 0.4721189591078067, + "noteOrder": 3072, + "time": 0.47211895910780666, "position": { "x": 5, "y": 0 @@ -1733,7 +1733,7 @@ "isPlayAudio": false }, { - "noteOrder": 3094, + "noteOrder": 3096, "time": 0.4758364312267658, "position": { "x": 4, @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 3119, - "time": 0.47955390334572495, + "noteOrder": 3120, + "time": 0.47955390334572484, "position": { "x": 3, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 3143, - "time": 0.483271375464684, + "noteOrder": 3144, + "time": 0.48327137546468396, "position": { "x": 6, "y": 0 @@ -1793,8 +1793,8 @@ "isPlayAudio": false }, { - "noteOrder": 3155, - "time": 0.4851301115241636, + "noteOrder": 3156, + "time": 0.4851301115241635, "position": { "x": 4, "y": 0 @@ -1813,8 +1813,8 @@ "isPlayAudio": false }, { - "noteOrder": 3167, - "time": 0.48698884758364314, + "noteOrder": 3168, + "time": 0.4869888475836431, "position": { "x": 7, "y": 0 @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 3191, - "time": 0.49070631970260226, + "noteOrder": 3192, + "time": 0.4907063197026022, "position": { "x": 4, "y": 0 @@ -1853,8 +1853,8 @@ "isPlayAudio": false }, { - "noteOrder": 3215, - "time": 0.4944237918215614, + "noteOrder": 3217, + "time": 0.49442379182156126, "position": { "x": 7, "y": 0 @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 3239, - "time": 0.49814126394052044, + "noteOrder": 3241, + "time": 0.4981412639405204, "position": { "x": 3, "y": 0 @@ -1893,8 +1893,8 @@ "isPlayAudio": false }, { - "noteOrder": 3252, - "time": 0.5, + "noteOrder": 3253, + "time": 0.49999999999999994, "position": { "x": 5, "y": 0 @@ -1913,7 +1913,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3265, "time": 0.5018587360594795, "position": { "x": 3, @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 3288, - "time": 0.5055762081784387, + "noteOrder": 3289, + "time": 0.5055762081784386, "position": { "x": 3, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 3288, - "time": 0.5055762081784387, + "noteOrder": 3289, + "time": 0.5055762081784386, "position": { "x": 7, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.5092936802973977, "position": { "x": 6, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.5092936802973977, "position": { "x": 4, @@ -2013,7 +2013,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.5130111524163569, "position": { "x": 7, @@ -2033,7 +2033,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.5130111524163569, "position": { "x": 3, @@ -2053,7 +2053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3362, "time": 0.516728624535316, "position": { "x": 4, @@ -2073,7 +2073,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3362, "time": 0.516728624535316, "position": { "x": 6, @@ -2093,8 +2093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.5278810408921933, + "noteOrder": 3434, + "time": 0.5278810408921932, "position": { "x": 3, "y": 0 @@ -2113,8 +2113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3433, - "time": 0.5278810408921933, + "noteOrder": 3434, + "time": 0.5278810408921932, "position": { "x": 7, "y": 0 @@ -2133,7 +2133,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.550185873605948, "position": { "x": 7, @@ -2153,7 +2153,7 @@ "isPlayAudio": false }, { - "noteOrder": 3602, + "noteOrder": 3604, "time": 0.5539033457249071, "position": { "x": 4, @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5576208178438662, + "noteOrder": 3628, + "time": 0.5576208178438661, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 3650, - "time": 0.5613382899628253, + "noteOrder": 3652, + "time": 0.5613382899628252, "position": { "x": 3, "y": 0 @@ -2213,7 +2213,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 3773, "time": 0.5799256505576208, "position": { "x": 3, @@ -2233,7 +2233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3797, "time": 0.5836431226765799, "position": { "x": 6, @@ -2253,7 +2253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.587360594795539, "position": { "x": 4, @@ -2273,7 +2273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3844, + "noteOrder": 3845, "time": 0.5910780669144982, "position": { "x": 7, @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 4061, - "time": 0.6245353159851301, + "noteOrder": 4063, + "time": 0.62453531598513, "position": { "x": 6, "y": 0 @@ -2313,8 +2313,8 @@ "isPlayAudio": false }, { - "noteOrder": 4086, - "time": 0.6282527881040892, + "noteOrder": 4087, + "time": 0.6282527881040891, "position": { "x": 4, "y": 0 @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 4110, - "time": 0.6319702602230484, + "noteOrder": 4112, + "time": 0.6319702602230483, "position": { "x": 6, "y": 0 @@ -2353,7 +2353,7 @@ "isPlayAudio": false }, { - "noteOrder": 4134, + "noteOrder": 4136, "time": 0.6356877323420074, "position": { "x": 3, @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 4158, - "time": 0.6394052044609666, + "noteOrder": 4160, + "time": 0.6394052044609665, "position": { "x": 7, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6431226765799257, + "noteOrder": 4184, + "time": 0.6431226765799256, "position": { "x": 4, "y": 0 @@ -2413,7 +2413,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4208, "time": 0.6468401486988847, "position": { "x": 6, @@ -2433,7 +2433,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4232, "time": 0.6505576208178439, "position": { "x": 3, @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 4255, - "time": 0.654275092936803, + "noteOrder": 4257, + "time": 0.6542750929368029, "position": { "x": 6, "y": 0 @@ -2473,8 +2473,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.6617100371747212, + "noteOrder": 4305, + "time": 0.6617100371747211, "position": { "x": 6, "y": 0 @@ -2493,7 +2493,7 @@ "isPlayAudio": false }, { - "noteOrder": 4352, + "noteOrder": 4353, "time": 0.6691449814126393, "position": { "x": 4, @@ -2513,8 +2513,8 @@ "isPlayAudio": false }, { - "noteOrder": 4400, - "time": 0.6765799256505577, + "noteOrder": 4402, + "time": 0.6765799256505576, "position": { "x": 4, "y": 0 @@ -2533,8 +2533,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.7472118959107807, + "noteOrder": 4861, + "time": 0.7472118959107806, "position": { "x": 5, "y": 0 @@ -2553,7 +2553,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.7509293680297398, "position": { "x": 4, @@ -2573,7 +2573,7 @@ "isPlayAudio": false }, { - "noteOrder": 4908, + "noteOrder": 4910, "time": 0.7546468401486989, "position": { "x": 3, @@ -2593,7 +2593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4956, + "noteOrder": 4958, "time": 0.7620817843866171, "position": { "x": 5, @@ -2613,8 +2613,8 @@ "isPlayAudio": false }, { - "noteOrder": 4980, - "time": 0.7657992565055762, + "noteOrder": 4982, + "time": 0.7657992565055761, "position": { "x": 6, "y": 0 @@ -2633,7 +2633,7 @@ "isPlayAudio": false }, { - "noteOrder": 5004, + "noteOrder": 5006, "time": 0.7695167286245352, "position": { "x": 7, @@ -2653,8 +2653,8 @@ "isPlayAudio": false }, { - "noteOrder": 5439, - "time": 0.8364312267657993, + "noteOrder": 5442, + "time": 0.8364312267657992, "position": { "x": 5, "y": 0 @@ -2673,8 +2673,8 @@ "isPlayAudio": false }, { - "noteOrder": 5464, - "time": 0.8401486988847584, + "noteOrder": 5466, + "time": 0.8401486988847583, "position": { "x": 4, "y": 0 @@ -2693,8 +2693,8 @@ "isPlayAudio": false }, { - "noteOrder": 5488, - "time": 0.8438661710037175, + "noteOrder": 5490, + "time": 0.8438661710037173, "position": { "x": 3, "y": 0 @@ -2713,7 +2713,7 @@ "isPlayAudio": false }, { - "noteOrder": 5633, + "noteOrder": 5635, "time": 0.8661710037174721, "position": { "x": 5, @@ -2733,7 +2733,7 @@ "isPlayAudio": false }, { - "noteOrder": 5657, + "noteOrder": 5659, "time": 0.8698884758364313, "position": { "x": 6, @@ -2753,7 +2753,7 @@ "isPlayAudio": false }, { - "noteOrder": 5681, + "noteOrder": 5684, "time": 0.8736059479553904, "position": { "x": 7, @@ -2773,7 +2773,7 @@ "isPlayAudio": false }, { - "noteOrder": 5826, + "noteOrder": 5829, "time": 0.895910780669145, "position": { "x": 5, @@ -2793,7 +2793,7 @@ "isPlayAudio": false }, { - "noteOrder": 5850, + "noteOrder": 5853, "time": 0.8996282527881041, "position": { "x": 4, @@ -2813,8 +2813,8 @@ "isPlayAudio": false }, { - "noteOrder": 5875, - "time": 0.9033457249070632, + "noteOrder": 5877, + "time": 0.9033457249070631, "position": { "x": 3, "y": 0 @@ -2833,8 +2833,8 @@ "isPlayAudio": false }, { - "noteOrder": 6020, - "time": 0.9256505576208179, + "noteOrder": 6022, + "time": 0.9256505576208178, "position": { "x": 5, "y": 0 @@ -2853,8 +2853,8 @@ "isPlayAudio": false }, { - "noteOrder": 6044, - "time": 0.929368029739777, + "noteOrder": 6046, + "time": 0.9293680297397768, "position": { "x": 6, "y": 0 @@ -2873,8 +2873,8 @@ "isPlayAudio": false }, { - "noteOrder": 6068, - "time": 0.9330855018587361, + "noteOrder": 6071, + "time": 0.933085501858736, "position": { "x": 7, "y": 0 @@ -2893,8 +2893,8 @@ "isPlayAudio": false }, { - "noteOrder": 6116, - "time": 0.9405204460966543, + "noteOrder": 6119, + "time": 0.9405204460966542, "position": { "x": 7, "y": 0 @@ -2913,8 +2913,8 @@ "isPlayAudio": false }, { - "noteOrder": 6165, - "time": 0.9479553903345725, + "noteOrder": 6167, + "time": 0.9479553903345724, "position": { "x": 3, "y": 0 @@ -2933,8 +2933,8 @@ "isPlayAudio": false }, { - "noteOrder": 6213, - "time": 0.9553903345724908, + "noteOrder": 6216, + "time": 0.9553903345724907, "position": { "x": 7, "y": 0 @@ -2953,8 +2953,8 @@ "isPlayAudio": false }, { - "noteOrder": 6261, - "time": 0.9628252788104089, + "noteOrder": 6264, + "time": 0.9628252788104088, "position": { "x": 3, "y": 0 @@ -2973,8 +2973,8 @@ "isPlayAudio": false }, { - "noteOrder": 6286, - "time": 0.966542750929368, + "noteOrder": 6288, + "time": 0.9665427509293679, "position": { "x": 6, "y": 0 @@ -2996,10 +2996,10 @@ "lineNodes": [ { "lineGroupId": 24, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 532, - "time": 0.08178438661710037, + "time": 0.08178438661710036, "position": { "x": 3, "y": 0 @@ -3019,10 +3019,10 @@ }, { "lineGroupId": 24, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 556, - "time": 0.08550185873605948, + "time": 0.08550185873605946, "position": { "x": 3, "y": 0 @@ -3042,10 +3042,10 @@ }, { "lineGroupId": 28, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 629, - "time": 0.09665427509293681, + "time": 0.0966542750929368, "position": { "x": 7, "y": 0 @@ -3065,10 +3065,10 @@ }, { "lineGroupId": 28, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 653, - "time": 0.10037174721189591, + "time": 0.1003717472118959, "position": { "x": 7, "y": 0 @@ -3088,10 +3088,10 @@ }, { "lineGroupId": 39, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 870, - "time": 0.1338289962825279, + "noteOrder": 871, + "time": 0.13382899628252787, "position": { "x": 6, "y": 0 @@ -3110,11 +3110,11 @@ "isPlayAudio": false }, { - "lineGroupId": 40, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 2, "isSliding": false, - "noteOrder": 919, - "time": 0.1412639405204461, + "noteOrder": 895, + "time": 0.137546468401487, "position": { "x": 6, "y": 0 @@ -3128,18 +3128,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 41, - "indexInLine": 0, + "lineGroupId": 39, + "indexInLine": 3, "isSliding": false, - "noteOrder": 967, - "time": 0.14869888475836432, + "noteOrder": 895, + "time": 0.137546468401487, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3156,11 +3156,11 @@ "isPlayAudio": false }, { - "lineGroupId": 42, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1015, - "time": 0.15613382899628253, + "noteOrder": 919, + "time": 0.14126394052044608, "position": { "x": 6, "y": 0 @@ -3179,13 +3179,13 @@ "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1257, - "time": 0.19330855018587362, + "noteOrder": 943, + "time": 0.1449814126394052, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3202,13 +3202,13 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 40, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1305, - "time": 0.20074349442379183, + "noteOrder": 943, + "time": 0.1449814126394052, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3220,18 +3220,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1354, - "time": 0.20817843866171004, + "noteOrder": 967, + "time": 0.14869888475836432, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3243,18 +3243,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 54, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1402, - "time": 0.21561338289962825, + "noteOrder": 992, + "time": 0.1524163568773234, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3271,11 +3271,11 @@ "isPlayAudio": false }, { - "lineGroupId": 67, - "indexInLine": 0, + "lineGroupId": 41, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1837, - "time": 0.2825278810408922, + "noteOrder": 992, + "time": 0.1524163568773234, "position": { "x": 7, "y": 0 @@ -3294,13 +3294,13 @@ "isPlayAudio": false }, { - "lineGroupId": 68, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1861, - "time": 0.2862453531598513, + "noteOrder": 1016, + "time": 0.1561338289962825, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3317,13 +3317,13 @@ "isPlayAudio": false }, { - "lineGroupId": 69, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1886, - "time": 0.2899628252788104, + "noteOrder": 1040, + "time": 0.15985130111524162, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3335,16 +3335,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 70, - "indexInLine": 0, + "lineGroupId": 42, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1910, - "time": 0.2936802973977695, + "noteOrder": 1040, + "time": 0.15985130111524162, "position": { "x": 7, "y": 0 @@ -3363,13 +3363,13 @@ "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1934, - "time": 0.29739776951672864, + "noteOrder": 1258, + "time": 0.1933085501858736, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3381,16 +3381,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 71, - "indexInLine": 1, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2007, - "time": 0.30855018587360594, + "noteOrder": 1282, + "time": 0.1970260223048327, "position": { "x": 4, "y": 0 @@ -3404,16 +3404,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 75, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2031, - "time": 0.31226765799256506, + "noteOrder": 1282, + "time": 0.1970260223048327, "position": { "x": 3, "y": 0 @@ -3432,13 +3432,13 @@ "isPlayAudio": false }, { - "lineGroupId": 76, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2055, - "time": 0.3159851301115242, + "noteOrder": 1306, + "time": 0.2007434944237918, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3455,13 +3455,13 @@ "isPlayAudio": false }, { - "lineGroupId": 77, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2079, - "time": 0.3197026022304833, + "noteOrder": 1330, + "time": 0.2044609665427509, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3473,16 +3473,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 78, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2103, - "time": 0.32342007434944237, + "noteOrder": 1330, + "time": 0.2044609665427509, "position": { "x": 3, "y": 0 @@ -3501,13 +3501,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2127, - "time": 0.3271375464684015, + "noteOrder": 1354, + "time": 0.20817843866171, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3524,13 +3524,13 @@ "isPlayAudio": false }, { - "lineGroupId": 79, - "indexInLine": 1, + "lineGroupId": 53, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2200, - "time": 0.33828996282527884, + "noteOrder": 1379, + "time": 0.2118959107806691, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3547,13 +3547,13 @@ "isPlayAudio": false }, { - "lineGroupId": 83, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2224, - "time": 0.3420074349442379, + "noteOrder": 1379, + "time": 0.2118959107806691, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3565,18 +3565,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 84, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2248, - "time": 0.3457249070631971, + "noteOrder": 1403, + "time": 0.21561338289962825, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3588,18 +3588,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 85, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2272, - "time": 0.34944237918215615, + "noteOrder": 1427, + "time": 0.21933085501858735, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3616,13 +3616,13 @@ "isPlayAudio": false }, { - "lineGroupId": 86, - "indexInLine": 0, + "lineGroupId": 54, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2297, - "time": 0.35315985130111527, + "noteOrder": 1427, + "time": 0.21933085501858735, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3634,16 +3634,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2321, - "time": 0.3568773234200744, + "noteOrder": 1838, + "time": 0.28252788104089216, "position": { "x": 7, "y": 0 @@ -3662,13 +3662,13 @@ "isPlayAudio": false }, { - "lineGroupId": 87, - "indexInLine": 1, + "lineGroupId": 67, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2393, - "time": 0.36802973977695164, + "noteOrder": 1850, + "time": 0.2843866171003717, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3685,13 +3685,13 @@ "isPlayAudio": false }, { - "lineGroupId": 91, - "indexInLine": 0, + "lineGroupId": 67, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2418, - "time": 0.3717472118959108, + "noteOrder": 1850, + "time": 0.2843866171003717, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3703,18 +3703,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 92, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2442, - "time": 0.3754646840148699, + "noteOrder": 1862, + "time": 0.2862453531598513, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3726,18 +3726,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 93, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2466, - "time": 0.37918215613382905, + "noteOrder": 1874, + "time": 0.28810408921933084, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3754,13 +3754,13 @@ "isPlayAudio": false }, { - "lineGroupId": 94, - "indexInLine": 0, + "lineGroupId": 68, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2490, - "time": 0.3828996282527881, + "noteOrder": 1874, + "time": 0.28810408921933084, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3772,18 +3772,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2514, - "time": 0.38661710037174724, + "noteOrder": 1886, + "time": 0.2899628252788104, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3795,18 +3795,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 95, - "indexInLine": 1, + "lineGroupId": 69, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2587, - "time": 0.39776951672862454, + "noteOrder": 1899, + "time": 0.29182156133828996, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3818,16 +3818,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 149, - "indexInLine": 0, + "lineGroupId": 69, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3481, - "time": 0.5353159851301116, + "noteOrder": 1899, + "time": 0.29182156133828996, "position": { "x": 6, "y": 0 @@ -3846,13 +3846,13 @@ "isPlayAudio": false }, { - "lineGroupId": 150, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3530, - "time": 0.5427509293680297, + "noteOrder": 1911, + "time": 0.2936802973977695, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3869,13 +3869,13 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3675, - "time": 0.5650557620817844, + "noteOrder": 1923, + "time": 0.2955390334572491, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3892,13 +3892,13 @@ "isPlayAudio": false }, { - "lineGroupId": 156, - "indexInLine": 0, + "lineGroupId": 70, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3723, - "time": 0.5724907063197026, + "noteOrder": 1923, + "time": 0.2955390334572491, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3910,16 +3910,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 161, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5947955390334573, + "noteOrder": 1935, + "time": 0.29739776951672864, "position": { "x": 7, "y": 0 @@ -3938,13 +3938,13 @@ "isPlayAudio": false }, { - "lineGroupId": 162, - "indexInLine": 0, + "lineGroupId": 71, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3916, - "time": 0.6022304832713754, + "noteOrder": 2007, + "time": 0.30855018587360594, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -3956,18 +3956,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 163, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3965, - "time": 0.6096654275092938, + "noteOrder": 2032, + "time": 0.312267657992565, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -3979,16 +3979,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 164, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4013, - "time": 0.6171003717472119, + "noteOrder": 2044, + "time": 0.31412639405204457, "position": { "x": 3, "y": 0 @@ -4007,13 +4007,13 @@ "isPlayAudio": false }, { - "lineGroupId": 181, - "indexInLine": 0, + "lineGroupId": 75, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4448, - "time": 0.6840148698884758, + "noteOrder": 2044, + "time": 0.31412639405204457, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -4025,18 +4025,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 181, + "lineGroupId": 76, "indexInLine": 1, "isSliding": false, - "noteOrder": 4472, - "time": 0.6877323420074349, + "noteOrder": 2056, + "time": 0.3159851301115241, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4053,13 +4053,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 0, + "lineGroupId": 76, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4497, - "time": 0.6914498141263942, + "noteOrder": 2068, + "time": 0.3178438661710037, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4076,13 +4076,13 @@ "isPlayAudio": false }, { - "lineGroupId": 182, - "indexInLine": 1, + "lineGroupId": 76, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4521, - "time": 0.6951672862453532, + "noteOrder": 2068, + "time": 0.3178438661710037, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4099,13 +4099,13 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4545, - "time": 0.6988847583643123, + "noteOrder": 2080, + "time": 0.31970260223048325, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -4122,11 +4122,11 @@ "isPlayAudio": false }, { - "lineGroupId": 183, - "indexInLine": 1, + "lineGroupId": 77, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4569, - "time": 0.7026022304832713, + "noteOrder": 2092, + "time": 0.3215613382899628, "position": { "x": 3, "y": 0 @@ -4145,11 +4145,11 @@ "isPlayAudio": false }, { - "lineGroupId": 184, - "indexInLine": 0, + "lineGroupId": 77, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4593, - "time": 0.7063197026022305, + "noteOrder": 2092, + "time": 0.3215613382899628, "position": { "x": 4, "y": 0 @@ -4168,11 +4168,80 @@ "isPlayAudio": false }, { - "lineGroupId": 184, + "lineGroupId": 78, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2104, + "time": 0.32342007434944237, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3252788104089219, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 78, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2116, + "time": 0.3252788104089219, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 79, "indexInLine": 1, "isSliding": false, - "noteOrder": 4617, - "time": 0.7100371747211897, + "noteOrder": 2128, + "time": 0.32713754646840143, "position": { "x": 3, "y": 0 @@ -4191,13 +4260,2359 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 0, + "lineGroupId": 79, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2201, + "time": 0.3382899628252788, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2225, + "time": 0.34200743494423785, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3438661710037174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 83, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2237, + "time": 0.3438661710037174, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2249, + "time": 0.345724907063197, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2261, + "time": 0.34758364312267653, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 84, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2261, + "time": 0.34758364312267653, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2273, + "time": 0.34944237918215615, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3513011152416357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 85, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2286, + "time": 0.3513011152416357, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2298, + "time": 0.35315985130111527, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2310, + "time": 0.3550185873605948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 86, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2310, + "time": 0.3550185873605948, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2322, + "time": 0.35687732342007433, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 87, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2394, + "time": 0.36802973977695164, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2419, + "time": 0.37174721189591076, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2431, + "time": 0.3736059479553903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 91, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2431, + "time": 0.3736059479553903, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2443, + "time": 0.3754646840148699, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2455, + "time": 0.37732342007434944, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 92, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2455, + "time": 0.37732342007434944, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2467, + "time": 0.379182156133829, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2479, + "time": 0.38104089219330856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 93, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2479, + "time": 0.38104089219330856, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2491, + "time": 0.38289962825278806, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2503, + "time": 0.3847583643122676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 94, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 2503, + "time": 0.3847583643122676, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 2515, + "time": 0.3866171003717472, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 95, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 2588, + "time": 0.3977695167286245, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3483, + "time": 0.5353159851301115, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5390334572490706, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 149, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3507, + "time": 0.5390334572490706, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3531, + "time": 0.5427509293680297, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5464684014869888, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 150, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3555, + "time": 0.5464684014869888, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3676, + "time": 0.5650557620817843, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3700, + "time": 0.5687732342007434, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 155, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3700, + "time": 0.5687732342007434, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3725, + "time": 0.5724907063197026, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3749, + "time": 0.5762081784386617, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 156, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3749, + "time": 0.5762081784386617, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3870, + "time": 0.5947955390334573, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5985130111524163, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3894, + "time": 0.5985130111524163, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3918, + "time": 0.6022304832713754, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3942, + "time": 0.6059479553903345, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3942, + "time": 0.6059479553903345, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 3966, + "time": 0.6096654275092936, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 3991, + "time": 0.6133828996282528, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 3991, + "time": 0.6133828996282528, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4015, + "time": 0.6171003717472119, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4039, + "time": 0.620817843866171, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4039, + "time": 0.620817843866171, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4450, + "time": 0.6840148698884757, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 181, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4474, + "time": 0.6877323420074348, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4498, + "time": 0.691449814126394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 182, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4523, + "time": 0.6951672862453531, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4547, + "time": 0.6988847583643123, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 183, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4571, + "time": 0.7026022304832714, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4595, + "time": 0.7063197026022305, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 184, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4619, + "time": 0.7100371747211895, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4644, + "time": 0.7137546468401487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 185, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4668, + "time": 0.7174721189591078, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4692, + "time": 0.7211895910780669, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 186, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4716, + "time": 0.724907063197026, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.7286245353159851, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 187, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7323420074349443, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4789, + "time": 0.7360594795539033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 188, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4813, + "time": 0.7397769516728624, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4837, + "time": 0.7434944237918215, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 189, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4910, + "time": 0.7546468401486989, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4934, + "time": 0.758364312267658, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 193, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5006, + "time": 0.7695167286245352, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5031, + "time": 0.7732342007434944, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5043, + "time": 0.775092936802974, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 197, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5043, + "time": 0.775092936802974, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5055, + "time": 0.7769516728624535, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5067, + "time": 0.778810408921933, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 198, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5067, + "time": 0.778810408921933, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5079, + "time": 0.7806691449814126, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5091, + "time": 0.7825278810408921, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 199, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5091, + "time": 0.7825278810408921, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5103, + "time": 0.7843866171003717, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7862453531598512, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 200, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5115, + "time": 0.7862453531598512, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5127, + "time": 0.7881040892193308, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 202, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5151, + "time": 0.7918215613382898, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5151, + "time": 0.7918215613382898, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 203, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5176, + "time": 0.795539033457249, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5176, + "time": 0.795539033457249, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 205, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5200, + "time": 0.7992565055762081, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5200, + "time": 0.7992565055762081, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 207, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5272, + "time": 0.8104089219330854, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5224, + "time": 0.8029739776951672, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 210, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5272, + "time": 0.8104089219330854, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5321, + "time": 0.8178438661710036, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5333, + "time": 0.8197026022304832, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 212, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5333, + "time": 0.8197026022304832, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5345, + "time": 0.8215613382899627, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5357, + "time": 0.8234200743494423, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 213, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5357, + "time": 0.8234200743494423, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5369, + "time": 0.8252788104089218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 214, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4642, - "time": 0.7137546468401488, + "noteOrder": 5381, + "time": 0.8271375464684014, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -4214,13 +6629,13 @@ "isPlayAudio": false }, { - "lineGroupId": 185, - "indexInLine": 1, + "lineGroupId": 214, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4666, - "time": 0.7174721189591078, + "noteOrder": 5381, + "time": 0.8271375464684014, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4237,13 +6652,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4690, - "time": 0.7211895910780669, + "noteOrder": 5393, + "time": 0.8289962825278809, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4260,13 +6675,13 @@ "isPlayAudio": false }, { - "lineGroupId": 186, - "indexInLine": 1, + "lineGroupId": 215, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4714, - "time": 0.7249070631970261, + "noteOrder": 5405, + "time": 0.8308550185873604, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4283,11 +6698,11 @@ "isPlayAudio": false }, { - "lineGroupId": 187, - "indexInLine": 0, + "lineGroupId": 215, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4738, - "time": 0.7286245353159851, + "noteOrder": 5405, + "time": 0.8308550185873604, "position": { "x": 6, "y": 0 @@ -4301,16 +6716,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 187, + "lineGroupId": 216, "indexInLine": 1, "isSliding": false, - "noteOrder": 4762, - "time": 0.7323420074349443, + "noteOrder": 5418, + "time": 0.83271375464684, "position": { "x": 7, "y": 0 @@ -4329,11 +6744,11 @@ "isPlayAudio": false }, { - "lineGroupId": 188, - "indexInLine": 0, + "lineGroupId": 216, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4787, - "time": 0.7360594795539033, + "noteOrder": 5490, + "time": 0.8438661710037173, "position": { "x": 4, "y": 0 @@ -4347,16 +6762,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 188, + "lineGroupId": 220, "indexInLine": 1, "isSliding": false, - "noteOrder": 4811, - "time": 0.7397769516728625, + "noteOrder": 5514, + "time": 0.8475836431226764, "position": { "x": 3, "y": 0 @@ -4375,13 +6790,13 @@ "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 0, + "lineGroupId": 220, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4835, - "time": 0.7434944237918216, + "noteOrder": 5526, + "time": 0.849442379182156, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4393,16 +6808,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 189, - "indexInLine": 1, + "lineGroupId": 220, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4908, - "time": 0.7546468401486989, + "noteOrder": 5526, + "time": 0.849442379182156, "position": { "x": 4, "y": 0 @@ -4416,16 +6831,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4932, - "time": 0.7583643122676581, + "noteOrder": 5538, + "time": 0.8513011152416357, "position": { "x": 3, "y": 0 @@ -4439,18 +6854,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 193, - "indexInLine": 1, + "lineGroupId": 221, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5004, - "time": 0.7695167286245352, + "noteOrder": 5551, + "time": 0.8531598513011153, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -4462,18 +6877,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 197, - "indexInLine": 0, + "lineGroupId": 221, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5028, - "time": 0.7732342007434945, + "noteOrder": 5551, + "time": 0.8531598513011153, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -4490,11 +6905,11 @@ "isPlayAudio": false }, { - "lineGroupId": 198, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5053, - "time": 0.7769516728624536, + "noteOrder": 5563, + "time": 0.8550185873605948, "position": { "x": 3, "y": 0 @@ -4513,13 +6928,13 @@ "isPlayAudio": false }, { - "lineGroupId": 199, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5077, - "time": 0.7806691449814127, + "noteOrder": 5575, + "time": 0.8568773234200744, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4531,18 +6946,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 200, - "indexInLine": 0, + "lineGroupId": 222, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5101, - "time": 0.7843866171003717, + "noteOrder": 5575, + "time": 0.8568773234200744, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4559,13 +6974,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5125, - "time": 0.7881040892193308, + "noteOrder": 5587, + "time": 0.8587360594795539, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4582,13 +6997,13 @@ "isPlayAudio": false }, { - "lineGroupId": 202, - "indexInLine": 1, + "lineGroupId": 223, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5149, - "time": 0.7918215613382901, + "noteOrder": 5599, + "time": 0.8605947955390335, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -4605,13 +7020,13 @@ "isPlayAudio": false }, { - "lineGroupId": 203, - "indexInLine": 0, + "lineGroupId": 223, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5149, - "time": 0.7918215613382901, + "noteOrder": 5599, + "time": 0.8605947955390335, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -4623,16 +7038,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 203, + "lineGroupId": 224, "indexInLine": 1, "isSliding": false, - "noteOrder": 5173, - "time": 0.7955390334572491, + "noteOrder": 5611, + "time": 0.862453531598513, "position": { "x": 3, "y": 0 @@ -4651,13 +7066,13 @@ "isPlayAudio": false }, { - "lineGroupId": 205, - "indexInLine": 0, + "lineGroupId": 224, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5173, - "time": 0.7955390334572491, + "noteOrder": 5684, + "time": 0.8736059479553904, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4669,16 +7084,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 205, + "lineGroupId": 228, "indexInLine": 1, "isSliding": false, - "noteOrder": 5198, - "time": 0.7992565055762082, + "noteOrder": 5708, + "time": 0.8773234200743494, "position": { "x": 7, "y": 0 @@ -4697,36 +7112,13 @@ "isPlayAudio": false }, { - "lineGroupId": 207, - "indexInLine": 0, - "isSliding": false, - "noteOrder": 5198, - "time": 0.7992565055762082, - "position": { - "x": 3, - "y": 0 - }, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "noteType": 12, - "postionOffset": null, - "isPlayAudio": false - }, - { - "lineGroupId": 207, - "indexInLine": 1, + "lineGroupId": 228, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5270, - "time": 0.8104089219330856, + "noteOrder": 5720, + "time": 0.879182156133829, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4738,16 +7130,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 210, - "indexInLine": 0, + "lineGroupId": 228, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5222, - "time": 0.8029739776951673, + "noteOrder": 5720, + "time": 0.879182156133829, "position": { "x": 7, "y": 0 @@ -4766,11 +7158,11 @@ "isPlayAudio": false }, { - "lineGroupId": 210, + "lineGroupId": 229, "indexInLine": 1, "isSliding": false, - "noteOrder": 5270, - "time": 0.8104089219330856, + "noteOrder": 5732, + "time": 0.8810408921933085, "position": { "x": 7, "y": 0 @@ -4784,16 +7176,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 212, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5319, - "time": 0.8178438661710037, + "noteOrder": 5744, + "time": 0.8828996282527881, "position": { "x": 7, "y": 0 @@ -4807,16 +7199,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 213, - "indexInLine": 0, + "lineGroupId": 229, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5343, - "time": 0.8215613382899629, + "noteOrder": 5744, + "time": 0.8828996282527881, "position": { "x": 7, "y": 0 @@ -4835,11 +7227,11 @@ "isPlayAudio": false }, { - "lineGroupId": 214, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5367, - "time": 0.825278810408922, + "noteOrder": 5756, + "time": 0.8847583643122676, "position": { "x": 7, "y": 0 @@ -4858,11 +7250,11 @@ "isPlayAudio": false }, { - "lineGroupId": 215, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5391, - "time": 0.828996282527881, + "noteOrder": 5768, + "time": 0.8866171003717472, "position": { "x": 7, "y": 0 @@ -4876,16 +7268,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 216, - "indexInLine": 0, + "lineGroupId": 230, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5415, - "time": 0.8327137546468402, + "noteOrder": 5768, + "time": 0.8866171003717472, "position": { "x": 7, "y": 0 @@ -4904,13 +7296,13 @@ "isPlayAudio": false }, { - "lineGroupId": 216, + "lineGroupId": 231, "indexInLine": 1, "isSliding": false, - "noteOrder": 5488, - "time": 0.8438661710037175, + "noteOrder": 5780, + "time": 0.8884758364312267, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -4922,18 +7314,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 220, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5512, - "time": 0.8475836431226766, + "noteOrder": 5792, + "time": 0.8903345724907062, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4950,13 +7342,13 @@ "isPlayAudio": false }, { - "lineGroupId": 221, - "indexInLine": 0, + "lineGroupId": 231, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5536, - "time": 0.8513011152416357, + "noteOrder": 5792, + "time": 0.8903345724907062, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4968,18 +7360,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 222, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5560, - "time": 0.8550185873605949, + "noteOrder": 5804, + "time": 0.8921933085501859, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -4991,18 +7383,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 223, - "indexInLine": 0, + "lineGroupId": 232, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5584, - "time": 0.858736059479554, + "noteOrder": 5877, + "time": 0.9033457249070631, "position": { - "x": 3, + "x": 4, "y": 0 }, "position2D": { @@ -5019,11 +7411,11 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5609, - "time": 0.862453531598513, + "noteOrder": 5901, + "time": 0.9070631970260222, "position": { "x": 3, "y": 0 @@ -5042,13 +7434,13 @@ "isPlayAudio": false }, { - "lineGroupId": 224, - "indexInLine": 1, + "lineGroupId": 236, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5681, - "time": 0.8736059479553904, + "noteOrder": 5913, + "time": 0.9089219330855018, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -5065,13 +7457,13 @@ "isPlayAudio": false }, { - "lineGroupId": 228, - "indexInLine": 0, + "lineGroupId": 236, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5705, - "time": 0.8773234200743495, + "noteOrder": 5913, + "time": 0.9089219330855018, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5083,18 +7475,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 229, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5729, - "time": 0.8810408921933086, + "noteOrder": 5925, + "time": 0.9107806691449813, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5106,18 +7498,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 230, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5754, - "time": 0.8847583643122676, + "noteOrder": 5937, + "time": 0.912639405204461, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5134,13 +7526,13 @@ "isPlayAudio": false }, { - "lineGroupId": 231, - "indexInLine": 0, + "lineGroupId": 237, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5778, - "time": 0.8884758364312269, + "noteOrder": 5937, + "time": 0.912639405204461, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5152,18 +7544,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5802, - "time": 0.892193308550186, + "noteOrder": 5950, + "time": 0.9144981412639405, "position": { - "x": 7, + "x": 3, "y": 0 }, "position2D": { @@ -5175,18 +7567,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 232, - "indexInLine": 1, + "lineGroupId": 238, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5875, - "time": 0.9033457249070632, + "noteOrder": 5962, + "time": 0.91635687732342, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -5198,16 +7590,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 236, - "indexInLine": 0, + "lineGroupId": 238, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5899, - "time": 0.9070631970260223, + "noteOrder": 5962, + "time": 0.91635687732342, "position": { "x": 3, "y": 0 @@ -5226,11 +7618,11 @@ "isPlayAudio": false }, { - "lineGroupId": 237, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5923, - "time": 0.9107806691449815, + "noteOrder": 5974, + "time": 0.9182156133828996, "position": { "x": 3, "y": 0 @@ -5249,11 +7641,11 @@ "isPlayAudio": false }, { - "lineGroupId": 238, - "indexInLine": 0, + "lineGroupId": 239, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5947, - "time": 0.9144981412639406, + "noteOrder": 5986, + "time": 0.9200743494423791, "position": { "x": 3, "y": 0 @@ -5267,16 +7659,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 239, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5971, - "time": 0.9182156133828996, + "noteOrder": 5986, + "time": 0.9200743494423791, "position": { "x": 3, "y": 0 @@ -5296,10 +7688,10 @@ }, { "lineGroupId": 240, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5995, - "time": 0.9219330855018588, + "noteOrder": 5998, + "time": 0.9219330855018587, "position": { "x": 3, "y": 0 @@ -5319,10 +7711,10 @@ }, { "lineGroupId": 240, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6068, - "time": 0.9330855018587361, + "noteOrder": 6071, + "time": 0.933085501858736, "position": { "x": 6, "y": 0 @@ -5342,10 +7734,10 @@ }, { "lineGroupId": 244, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6092, - "time": 0.9368029739776952, + "noteOrder": 6095, + "time": 0.9368029739776951, "position": { "x": 6, "y": 0 @@ -5365,10 +7757,10 @@ }, { "lineGroupId": 244, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6140, - "time": 0.9442379182156134, + "noteOrder": 6143, + "time": 0.9442379182156133, "position": { "x": 6, "y": 0 @@ -5388,10 +7780,10 @@ }, { "lineGroupId": 246, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6140, - "time": 0.9442379182156134, + "noteOrder": 6143, + "time": 0.9442379182156133, "position": { "x": 4, "y": 0 @@ -5411,9 +7803,9 @@ }, { "lineGroupId": 246, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6189, + "noteOrder": 6191, "time": 0.9516728624535316, "position": { "x": 4, @@ -5434,9 +7826,9 @@ }, { "lineGroupId": 248, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6189, + "noteOrder": 6191, "time": 0.9516728624535316, "position": { "x": 6, @@ -5457,10 +7849,10 @@ }, { "lineGroupId": 248, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6237, - "time": 0.9591078066914499, + "noteOrder": 6240, + "time": 0.9591078066914497, "position": { "x": 6, "y": 0 @@ -5480,10 +7872,10 @@ }, { "lineGroupId": 250, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 6237, - "time": 0.9591078066914499, + "noteOrder": 6240, + "time": 0.9591078066914497, "position": { "x": 4, "y": 0 @@ -5503,10 +7895,10 @@ }, { "lineGroupId": 250, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 6286, - "time": 0.966542750929368, + "noteOrder": 6288, + "time": 0.9665427509293679, "position": { "x": 4, "y": 0 diff --git "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1b.json" "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1b.json" index 2a8f7fc9..ef140853 100644 --- "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1b.json" +++ "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/370_difficulty_1b.json" @@ -14,7 +14,7 @@ "sphereNodes": [ { "noteOrder": 145, - "time": 0.02230483271375465, + "time": 0.022304832713754646, "position": { "x": 7, "y": 0 @@ -54,7 +54,7 @@ }, { "noteOrder": 290, - "time": 0.0446096654275093, + "time": 0.04460966542750929, "position": { "x": 6, "y": 0 @@ -74,7 +74,7 @@ }, { "noteOrder": 314, - "time": 0.048327137546468404, + "time": 0.0483271375464684, "position": { "x": 7, "y": 0 @@ -93,8 +93,8 @@ "isPlayAudio": false }, { - "noteOrder": 338, - "time": 0.05204460966542751, + "noteOrder": 339, + "time": 0.0520446096654275, "position": { "x": 3, "y": 0 @@ -114,7 +114,7 @@ }, { "noteOrder": 677, - "time": 0.10408921933085502, + "time": 0.104089219330855, "position": { "x": 4, "y": 0 @@ -153,8 +153,8 @@ "isPlayAudio": false }, { - "noteOrder": 725, - "time": 0.11152416356877325, + "noteOrder": 726, + "time": 0.11152416356877323, "position": { "x": 3, "y": 0 @@ -194,7 +194,7 @@ }, { "noteOrder": 798, - "time": 0.12267657992565056, + "time": 0.12267657992565055, "position": { "x": 4, "y": 0 @@ -214,7 +214,7 @@ }, { "noteOrder": 822, - "time": 0.12639405204460968, + "time": 0.12639405204460966, "position": { "x": 7, "y": 0 @@ -234,7 +234,7 @@ }, { "noteOrder": 919, - "time": 0.1412639405204461, + "time": 0.14126394052044608, "position": { "x": 7, "y": 0 @@ -254,7 +254,7 @@ }, { "noteOrder": 919, - "time": 0.1412639405204461, + "time": 0.14126394052044608, "position": { "x": 3, "y": 0 @@ -293,8 +293,8 @@ "isPlayAudio": false }, { - "noteOrder": 991, - "time": 0.15241635687732344, + "noteOrder": 992, + "time": 0.1524163568773234, "position": { "x": 6, "y": 0 @@ -313,8 +313,8 @@ "isPlayAudio": false }, { - "noteOrder": 1015, - "time": 0.15613382899628253, + "noteOrder": 1016, + "time": 0.1561338289962825, "position": { "x": 5, "y": 0 @@ -334,7 +334,7 @@ }, { "noteOrder": 1040, - "time": 0.15985130111524165, + "time": 0.15985130111524162, "position": { "x": 4, "y": 0 @@ -354,7 +354,7 @@ }, { "noteOrder": 1064, - "time": 0.16356877323420074, + "time": 0.16356877323420072, "position": { "x": 7, "y": 0 @@ -374,7 +374,7 @@ }, { "noteOrder": 1064, - "time": 0.16356877323420074, + "time": 0.16356877323420072, "position": { "x": 3, "y": 0 @@ -393,8 +393,8 @@ "isPlayAudio": false }, { - "noteOrder": 1160, - "time": 0.1784386617100372, + "noteOrder": 1161, + "time": 0.17843866171003717, "position": { "x": 7, "y": 0 @@ -413,8 +413,8 @@ "isPlayAudio": false }, { - "noteOrder": 1160, - "time": 0.1784386617100372, + "noteOrder": 1161, + "time": 0.17843866171003717, "position": { "x": 3, "y": 0 @@ -434,7 +434,7 @@ }, { "noteOrder": 1451, - "time": 0.2230483271375465, + "time": 0.22304832713754646, "position": { "x": 5, "y": 0 @@ -454,7 +454,7 @@ }, { "noteOrder": 1475, - "time": 0.22676579925650558, + "time": 0.22676579925650556, "position": { "x": 4, "y": 0 @@ -474,7 +474,7 @@ }, { "noteOrder": 1499, - "time": 0.2304832713754647, + "time": 0.23048327137546468, "position": { "x": 6, "y": 0 @@ -493,8 +493,8 @@ "isPlayAudio": false }, { - "noteOrder": 1523, - "time": 0.2342007434944238, + "noteOrder": 1524, + "time": 0.23420074349442377, "position": { "x": 7, "y": 0 @@ -513,7 +513,7 @@ "isPlayAudio": false }, { - "noteOrder": 1547, + "noteOrder": 1548, "time": 0.2379182156133829, "position": { "x": 4, @@ -533,8 +533,8 @@ "isPlayAudio": false }, { - "noteOrder": 1571, - "time": 0.241635687732342, + "noteOrder": 1572, + "time": 0.24163568773234198, "position": { "x": 6, "y": 0 @@ -554,7 +554,7 @@ }, { "noteOrder": 1596, - "time": 0.24535315985130113, + "time": 0.2453531598513011, "position": { "x": 4, "y": 0 @@ -574,7 +574,7 @@ }, { "noteOrder": 1620, - "time": 0.24907063197026022, + "time": 0.2490706319702602, "position": { "x": 6, "y": 0 @@ -593,8 +593,8 @@ "isPlayAudio": false }, { - "noteOrder": 2079, - "time": 0.3197026022304833, + "noteOrder": 2080, + "time": 0.31970260223048325, "position": { "x": 5, "y": 0 @@ -613,8 +613,8 @@ "isPlayAudio": false }, { - "noteOrder": 2127, - "time": 0.3271375464684015, + "noteOrder": 2128, + "time": 0.32713754646840143, "position": { "x": 4, "y": 0 @@ -633,7 +633,7 @@ "isPlayAudio": false }, { - "noteOrder": 2176, + "noteOrder": 2177, "time": 0.33457249070631967, "position": { "x": 4, @@ -653,8 +653,8 @@ "isPlayAudio": false }, { - "noteOrder": 2466, - "time": 0.37918215613382905, + "noteOrder": 2467, + "time": 0.379182156133829, "position": { "x": 5, "y": 0 @@ -673,8 +673,8 @@ "isPlayAudio": false }, { - "noteOrder": 2514, - "time": 0.38661710037174724, + "noteOrder": 2515, + "time": 0.3866171003717472, "position": { "x": 6, "y": 0 @@ -693,7 +693,7 @@ "isPlayAudio": false }, { - "noteOrder": 2563, + "noteOrder": 2564, "time": 0.3940520446096654, "position": { "x": 6, @@ -713,8 +713,8 @@ "isPlayAudio": false }, { - "noteOrder": 2611, - "time": 0.40148698884758366, + "noteOrder": 2612, + "time": 0.4014869888475836, "position": { "x": 6, "y": 0 @@ -733,8 +733,8 @@ "isPlayAudio": false }, { - "noteOrder": 2635, - "time": 0.4052044609665428, + "noteOrder": 2636, + "time": 0.4052044609665427, "position": { "x": 6, "y": 0 @@ -753,8 +753,8 @@ "isPlayAudio": false }, { - "noteOrder": 2659, - "time": 0.40892193308550184, + "noteOrder": 2660, + "time": 0.4089219330855018, "position": { "x": 4, "y": 0 @@ -773,8 +773,8 @@ "isPlayAudio": false }, { - "noteOrder": 2683, - "time": 0.412639405204461, + "noteOrder": 2685, + "time": 0.4126394052044609, "position": { "x": 4, "y": 0 @@ -793,8 +793,8 @@ "isPlayAudio": false }, { - "noteOrder": 2708, - "time": 0.4163568773234201, + "noteOrder": 2709, + "time": 0.41635687732342, "position": { "x": 7, "y": 0 @@ -813,8 +813,8 @@ "isPlayAudio": false }, { - "noteOrder": 2732, - "time": 0.4200743494423792, + "noteOrder": 2733, + "time": 0.42007434944237915, "position": { "x": 6, "y": 0 @@ -833,8 +833,8 @@ "isPlayAudio": false }, { - "noteOrder": 2756, - "time": 0.4237918215613383, + "noteOrder": 2757, + "time": 0.4237918215613382, "position": { "x": 7, "y": 0 @@ -853,7 +853,7 @@ "isPlayAudio": false }, { - "noteOrder": 2804, + "noteOrder": 2805, "time": 0.4312267657992565, "position": { "x": 3, @@ -873,7 +873,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 2830, "time": 0.4349442379182156, "position": { "x": 4, @@ -893,8 +893,8 @@ "isPlayAudio": false }, { - "noteOrder": 2853, - "time": 0.43866171003717475, + "noteOrder": 2854, + "time": 0.4386617100371747, "position": { "x": 3, "y": 0 @@ -913,8 +913,8 @@ "isPlayAudio": false }, { - "noteOrder": 2901, - "time": 0.446096654275093, + "noteOrder": 2902, + "time": 0.44609665427509293, "position": { "x": 6, "y": 0 @@ -933,7 +933,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 2926, "time": 0.44981412639405205, "position": { "x": 4, @@ -953,8 +953,8 @@ "isPlayAudio": false }, { - "noteOrder": 2949, - "time": 0.45353159851301117, + "noteOrder": 2951, + "time": 0.4535315985130111, "position": { "x": 6, "y": 0 @@ -973,8 +973,8 @@ "isPlayAudio": false }, { - "noteOrder": 2974, - "time": 0.4572490706319703, + "noteOrder": 2975, + "time": 0.45724907063197023, "position": { "x": 4, "y": 0 @@ -993,8 +993,8 @@ "isPlayAudio": false }, { - "noteOrder": 2998, - "time": 0.4609665427509294, + "noteOrder": 2999, + "time": 0.46096654275092935, "position": { "x": 6, "y": 0 @@ -1013,8 +1013,8 @@ "isPlayAudio": false }, { - "noteOrder": 3022, - "time": 0.4646840148698885, + "noteOrder": 3023, + "time": 0.4646840148698884, "position": { "x": 4, "y": 0 @@ -1033,8 +1033,8 @@ "isPlayAudio": false }, { - "noteOrder": 3046, - "time": 0.4684014869888476, + "noteOrder": 3047, + "time": 0.46840148698884754, "position": { "x": 6, "y": 0 @@ -1053,7 +1053,7 @@ "isPlayAudio": false }, { - "noteOrder": 3094, + "noteOrder": 3096, "time": 0.4758364312267658, "position": { "x": 4, @@ -1073,8 +1073,8 @@ "isPlayAudio": false }, { - "noteOrder": 3119, - "time": 0.47955390334572495, + "noteOrder": 3120, + "time": 0.47955390334572484, "position": { "x": 4, "y": 0 @@ -1093,8 +1093,8 @@ "isPlayAudio": false }, { - "noteOrder": 3143, - "time": 0.483271375464684, + "noteOrder": 3144, + "time": 0.48327137546468396, "position": { "x": 4, "y": 0 @@ -1113,8 +1113,8 @@ "isPlayAudio": false }, { - "noteOrder": 3167, - "time": 0.48698884758364314, + "noteOrder": 3168, + "time": 0.4869888475836431, "position": { "x": 5, "y": 0 @@ -1133,8 +1133,8 @@ "isPlayAudio": false }, { - "noteOrder": 3191, - "time": 0.49070631970260226, + "noteOrder": 3192, + "time": 0.4907063197026022, "position": { "x": 6, "y": 0 @@ -1153,8 +1153,8 @@ "isPlayAudio": false }, { - "noteOrder": 3215, - "time": 0.4944237918215614, + "noteOrder": 3217, + "time": 0.49442379182156126, "position": { "x": 6, "y": 0 @@ -1173,8 +1173,8 @@ "isPlayAudio": false }, { - "noteOrder": 3239, - "time": 0.49814126394052044, + "noteOrder": 3241, + "time": 0.4981412639405204, "position": { "x": 6, "y": 0 @@ -1193,7 +1193,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3265, "time": 0.5018587360594795, "position": { "x": 4, @@ -1213,8 +1213,8 @@ "isPlayAudio": false }, { - "noteOrder": 3288, - "time": 0.5055762081784387, + "noteOrder": 3289, + "time": 0.5055762081784386, "position": { "x": 4, "y": 0 @@ -1233,7 +1233,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3313, "time": 0.5092936802973977, "position": { "x": 6, @@ -1253,7 +1253,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3338, "time": 0.5130111524163569, "position": { "x": 7, @@ -1273,7 +1273,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3362, "time": 0.516728624535316, "position": { "x": 4, @@ -1293,7 +1293,7 @@ "isPlayAudio": false }, { - "noteOrder": 3385, + "noteOrder": 3386, "time": 0.5204460966542751, "position": { "x": 3, @@ -1313,7 +1313,7 @@ "isPlayAudio": false }, { - "noteOrder": 3578, + "noteOrder": 3579, "time": 0.550185873605948, "position": { "x": 6, @@ -1333,7 +1333,7 @@ "isPlayAudio": false }, { - "noteOrder": 3602, + "noteOrder": 3604, "time": 0.5539033457249071, "position": { "x": 6, @@ -1353,8 +1353,8 @@ "isPlayAudio": false }, { - "noteOrder": 3626, - "time": 0.5576208178438662, + "noteOrder": 3628, + "time": 0.5576208178438661, "position": { "x": 4, "y": 0 @@ -1373,8 +1373,8 @@ "isPlayAudio": false }, { - "noteOrder": 3675, - "time": 0.5650557620817844, + "noteOrder": 3676, + "time": 0.5650557620817843, "position": { "x": 4, "y": 0 @@ -1393,8 +1393,8 @@ "isPlayAudio": false }, { - "noteOrder": 3699, - "time": 0.5687732342007435, + "noteOrder": 3700, + "time": 0.5687732342007434, "position": { "x": 3, "y": 0 @@ -1413,7 +1413,7 @@ "isPlayAudio": false }, { - "noteOrder": 3723, + "noteOrder": 3725, "time": 0.5724907063197026, "position": { "x": 6, @@ -1433,8 +1433,8 @@ "isPlayAudio": false }, { - "noteOrder": 3747, - "time": 0.5762081784386618, + "noteOrder": 3749, + "time": 0.5762081784386617, "position": { "x": 7, "y": 0 @@ -1453,7 +1453,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 3773, "time": 0.5799256505576208, "position": { "x": 4, @@ -1473,7 +1473,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 3797, "time": 0.5836431226765799, "position": { "x": 6, @@ -1493,7 +1493,7 @@ "isPlayAudio": false }, { - "noteOrder": 3820, + "noteOrder": 3821, "time": 0.587360594795539, "position": { "x": 4, @@ -1513,7 +1513,7 @@ "isPlayAudio": false }, { - "noteOrder": 3844, + "noteOrder": 3845, "time": 0.5910780669144982, "position": { "x": 4, @@ -1533,8 +1533,8 @@ "isPlayAudio": false }, { - "noteOrder": 3941, - "time": 0.6059479553903346, + "noteOrder": 3942, + "time": 0.6059479553903345, "position": { "x": 5, "y": 0 @@ -1553,8 +1553,8 @@ "isPlayAudio": false }, { - "noteOrder": 3965, - "time": 0.6096654275092938, + "noteOrder": 3966, + "time": 0.6096654275092936, "position": { "x": 4, "y": 0 @@ -1573,7 +1573,7 @@ "isPlayAudio": false }, { - "noteOrder": 3989, + "noteOrder": 3991, "time": 0.6133828996282528, "position": { "x": 6, @@ -1593,7 +1593,7 @@ "isPlayAudio": false }, { - "noteOrder": 4013, + "noteOrder": 4015, "time": 0.6171003717472119, "position": { "x": 3, @@ -1613,7 +1613,7 @@ "isPlayAudio": false }, { - "noteOrder": 4037, + "noteOrder": 4039, "time": 0.620817843866171, "position": { "x": 6, @@ -1633,8 +1633,8 @@ "isPlayAudio": false }, { - "noteOrder": 4182, - "time": 0.6431226765799257, + "noteOrder": 4184, + "time": 0.6431226765799256, "position": { "x": 7, "y": 0 @@ -1653,7 +1653,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4232, "time": 0.6505576208178439, "position": { "x": 3, @@ -1673,8 +1673,8 @@ "isPlayAudio": false }, { - "noteOrder": 4279, - "time": 0.6579925650557622, + "noteOrder": 4281, + "time": 0.657992565055762, "position": { "x": 5, "y": 0 @@ -1693,8 +1693,8 @@ "isPlayAudio": false }, { - "noteOrder": 4303, - "time": 0.6617100371747212, + "noteOrder": 4305, + "time": 0.6617100371747211, "position": { "x": 6, "y": 0 @@ -1713,8 +1713,8 @@ "isPlayAudio": false }, { - "noteOrder": 4376, - "time": 0.6728624535315986, + "noteOrder": 4378, + "time": 0.6728624535315985, "position": { "x": 5, "y": 0 @@ -1733,8 +1733,8 @@ "isPlayAudio": false }, { - "noteOrder": 4400, - "time": 0.6765799256505577, + "noteOrder": 4402, + "time": 0.6765799256505576, "position": { "x": 4, "y": 0 @@ -1753,8 +1753,8 @@ "isPlayAudio": false }, { - "noteOrder": 4835, - "time": 0.7434944237918216, + "noteOrder": 4837, + "time": 0.7434944237918215, "position": { "x": 6, "y": 0 @@ -1773,8 +1773,8 @@ "isPlayAudio": false }, { - "noteOrder": 4859, - "time": 0.7472118959107807, + "noteOrder": 4861, + "time": 0.7472118959107806, "position": { "x": 6, "y": 0 @@ -1793,7 +1793,7 @@ "isPlayAudio": false }, { - "noteOrder": 4883, + "noteOrder": 4885, "time": 0.7509293680297398, "position": { "x": 6, @@ -1813,7 +1813,7 @@ "isPlayAudio": false }, { - "noteOrder": 4908, + "noteOrder": 4910, "time": 0.7546468401486989, "position": { "x": 6, @@ -1833,8 +1833,8 @@ "isPlayAudio": false }, { - "noteOrder": 4932, - "time": 0.7583643122676581, + "noteOrder": 4934, + "time": 0.758364312267658, "position": { "x": 4, "y": 0 @@ -1853,7 +1853,7 @@ "isPlayAudio": false }, { - "noteOrder": 4956, + "noteOrder": 4958, "time": 0.7620817843866171, "position": { "x": 4, @@ -1873,8 +1873,8 @@ "isPlayAudio": false }, { - "noteOrder": 4980, - "time": 0.7657992565055762, + "noteOrder": 4982, + "time": 0.7657992565055761, "position": { "x": 4, "y": 0 @@ -1893,7 +1893,7 @@ "isPlayAudio": false }, { - "noteOrder": 5004, + "noteOrder": 5006, "time": 0.7695167286245352, "position": { "x": 4, @@ -1913,8 +1913,8 @@ "isPlayAudio": false }, { - "noteOrder": 5028, - "time": 0.7732342007434945, + "noteOrder": 5031, + "time": 0.7732342007434944, "position": { "x": 6, "y": 0 @@ -1933,8 +1933,8 @@ "isPlayAudio": false }, { - "noteOrder": 5053, - "time": 0.7769516728624536, + "noteOrder": 5055, + "time": 0.7769516728624535, "position": { "x": 4, "y": 0 @@ -1953,8 +1953,8 @@ "isPlayAudio": false }, { - "noteOrder": 5077, - "time": 0.7806691449814127, + "noteOrder": 5079, + "time": 0.7806691449814126, "position": { "x": 6, "y": 0 @@ -1973,7 +1973,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5103, "time": 0.7843866171003717, "position": { "x": 4, @@ -1993,7 +1993,7 @@ "isPlayAudio": false }, { - "noteOrder": 5125, + "noteOrder": 5127, "time": 0.7881040892193308, "position": { "x": 5, @@ -2013,8 +2013,8 @@ "isPlayAudio": false }, { - "noteOrder": 5149, - "time": 0.7918215613382901, + "noteOrder": 5151, + "time": 0.7918215613382898, "position": { "x": 5, "y": 0 @@ -2033,8 +2033,8 @@ "isPlayAudio": false }, { - "noteOrder": 5173, - "time": 0.7955390334572491, + "noteOrder": 5176, + "time": 0.795539033457249, "position": { "x": 5, "y": 0 @@ -2053,8 +2053,8 @@ "isPlayAudio": false }, { - "noteOrder": 5198, - "time": 0.7992565055762082, + "noteOrder": 5200, + "time": 0.7992565055762081, "position": { "x": 5, "y": 0 @@ -2073,8 +2073,8 @@ "isPlayAudio": false }, { - "noteOrder": 5560, - "time": 0.8550185873605949, + "noteOrder": 5563, + "time": 0.8550185873605948, "position": { "x": 5, "y": 0 @@ -2093,7 +2093,7 @@ "isPlayAudio": false }, { - "noteOrder": 5609, + "noteOrder": 5611, "time": 0.862453531598513, "position": { "x": 4, @@ -2113,7 +2113,7 @@ "isPlayAudio": false }, { - "noteOrder": 5657, + "noteOrder": 5659, "time": 0.8698884758364313, "position": { "x": 4, @@ -2133,8 +2133,8 @@ "isPlayAudio": false }, { - "noteOrder": 5947, - "time": 0.9144981412639406, + "noteOrder": 5950, + "time": 0.9144981412639405, "position": { "x": 5, "y": 0 @@ -2153,8 +2153,8 @@ "isPlayAudio": false }, { - "noteOrder": 5995, - "time": 0.9219330855018588, + "noteOrder": 5998, + "time": 0.9219330855018587, "position": { "x": 6, "y": 0 @@ -2173,8 +2173,8 @@ "isPlayAudio": false }, { - "noteOrder": 6044, - "time": 0.929368029739777, + "noteOrder": 6046, + "time": 0.9293680297397768, "position": { "x": 6, "y": 0 @@ -2193,8 +2193,8 @@ "isPlayAudio": false }, { - "noteOrder": 6092, - "time": 0.9368029739776952, + "noteOrder": 6095, + "time": 0.9368029739776951, "position": { "x": 7, "y": 0 @@ -2213,8 +2213,8 @@ "isPlayAudio": false }, { - "noteOrder": 6116, - "time": 0.9405204460966543, + "noteOrder": 6119, + "time": 0.9405204460966542, "position": { "x": 3, "y": 0 @@ -2233,8 +2233,8 @@ "isPlayAudio": false }, { - "noteOrder": 6140, - "time": 0.9442379182156134, + "noteOrder": 6143, + "time": 0.9442379182156133, "position": { "x": 6, "y": 0 @@ -2253,8 +2253,8 @@ "isPlayAudio": false }, { - "noteOrder": 6140, - "time": 0.9442379182156134, + "noteOrder": 6143, + "time": 0.9442379182156133, "position": { "x": 4, "y": 0 @@ -2273,8 +2273,8 @@ "isPlayAudio": false }, { - "noteOrder": 6165, - "time": 0.9479553903345725, + "noteOrder": 6167, + "time": 0.9479553903345724, "position": { "x": 3, "y": 0 @@ -2293,8 +2293,8 @@ "isPlayAudio": false }, { - "noteOrder": 6165, - "time": 0.9479553903345725, + "noteOrder": 6167, + "time": 0.9479553903345724, "position": { "x": 7, "y": 0 @@ -2313,7 +2313,7 @@ "isPlayAudio": false }, { - "noteOrder": 6189, + "noteOrder": 6191, "time": 0.9516728624535316, "position": { "x": 4, @@ -2333,8 +2333,8 @@ "isPlayAudio": false }, { - "noteOrder": 6213, - "time": 0.9553903345724908, + "noteOrder": 6216, + "time": 0.9553903345724907, "position": { "x": 7, "y": 0 @@ -2353,8 +2353,8 @@ "isPlayAudio": false }, { - "noteOrder": 6213, - "time": 0.9553903345724908, + "noteOrder": 6216, + "time": 0.9553903345724907, "position": { "x": 3, "y": 0 @@ -2373,8 +2373,8 @@ "isPlayAudio": false }, { - "noteOrder": 6237, - "time": 0.9591078066914499, + "noteOrder": 6240, + "time": 0.9591078066914497, "position": { "x": 6, "y": 0 @@ -2393,8 +2393,8 @@ "isPlayAudio": false }, { - "noteOrder": 6261, - "time": 0.9628252788104089, + "noteOrder": 6264, + "time": 0.9628252788104088, "position": { "x": 4, "y": 0 @@ -2413,8 +2413,8 @@ "isPlayAudio": false }, { - "noteOrder": 6261, - "time": 0.9628252788104089, + "noteOrder": 6264, + "time": 0.9628252788104088, "position": { "x": 6, "y": 0 @@ -2433,8 +2433,8 @@ "isPlayAudio": false }, { - "noteOrder": 6286, - "time": 0.966542750929368, + "noteOrder": 6288, + "time": 0.9665427509293679, "position": { "x": 3, "y": 0 @@ -2453,8 +2453,8 @@ "isPlayAudio": false }, { - "noteOrder": 6286, - "time": 0.966542750929368, + "noteOrder": 6288, + "time": 0.9665427509293679, "position": { "x": 7, "y": 0 @@ -2476,7 +2476,7 @@ "lineNodes": [ { "lineGroupId": 1, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 97, "time": 0.01486988847583643, @@ -2499,10 +2499,10 @@ }, { "lineGroupId": 1, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 145, - "time": 0.02230483271375465, + "time": 0.022304832713754646, "position": { "x": 6, "y": 0 @@ -2522,7 +2522,7 @@ }, { "lineGroupId": 3, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 193, "time": 0.02973977695167286, @@ -2545,7 +2545,7 @@ }, { "lineGroupId": 3, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 242, "time": 0.03717472118959108, @@ -2568,7 +2568,7 @@ }, { "lineGroupId": 10, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 484, "time": 0.07434944237918216, @@ -2591,10 +2591,10 @@ }, { "lineGroupId": 10, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 532, - "time": 0.08178438661710037, + "time": 0.08178438661710036, "position": { "x": 6, "y": 0 @@ -2614,10 +2614,10 @@ }, { "lineGroupId": 11, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 532, - "time": 0.08178438661710037, + "time": 0.08178438661710036, "position": { "x": 4, "y": 0 @@ -2637,10 +2637,10 @@ }, { "lineGroupId": 11, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 580, - "time": 0.0892193308550186, + "time": 0.08921933085501858, "position": { "x": 4, "y": 0 @@ -2660,10 +2660,10 @@ }, { "lineGroupId": 12, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 580, - "time": 0.0892193308550186, + "time": 0.08921933085501858, "position": { "x": 7, "y": 0 @@ -2683,10 +2683,10 @@ }, { "lineGroupId": 12, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 629, - "time": 0.09665427509293681, + "time": 0.0966542750929368, "position": { "x": 7, "y": 0 @@ -2706,10 +2706,10 @@ }, { "lineGroupId": 13, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 629, - "time": 0.09665427509293681, + "time": 0.0966542750929368, "position": { "x": 3, "y": 0 @@ -2729,10 +2729,10 @@ }, { "lineGroupId": 13, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 677, - "time": 0.10408921933085502, + "time": 0.104089219330855, "position": { "x": 3, "y": 0 @@ -2752,10 +2752,10 @@ }, { "lineGroupId": 33, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1257, - "time": 0.19330855018587362, + "noteOrder": 1258, + "time": 0.1933085501858736, "position": { "x": 6, "y": 0 @@ -2775,10 +2775,10 @@ }, { "lineGroupId": 33, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1305, - "time": 0.20074349442379183, + "noteOrder": 1306, + "time": 0.2007434944237918, "position": { "x": 6, "y": 0 @@ -2798,10 +2798,10 @@ }, { "lineGroupId": 35, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, "noteOrder": 1354, - "time": 0.20817843866171004, + "time": 0.20817843866171, "position": { "x": 4, "y": 0 @@ -2821,9 +2821,9 @@ }, { "lineGroupId": 35, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1402, + "noteOrder": 1403, "time": 0.21561338289962825, "position": { "x": 4, @@ -2844,10 +2844,10 @@ }, { "lineGroupId": 45, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1644, - "time": 0.25278810408921937, + "noteOrder": 1645, + "time": 0.2527881040892193, "position": { "x": 7, "y": 0 @@ -2867,10 +2867,10 @@ }, { "lineGroupId": 45, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1741, - "time": 0.2676579925650558, + "time": 0.26765799256505574, "position": { "x": 7, "y": 0 @@ -2890,10 +2890,10 @@ }, { "lineGroupId": 46, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1644, - "time": 0.25278810408921937, + "noteOrder": 1645, + "time": 0.2527881040892193, "position": { "x": 3, "y": 0 @@ -2913,10 +2913,10 @@ }, { "lineGroupId": 46, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, "noteOrder": 1741, - "time": 0.2676579925650558, + "time": 0.26765799256505574, "position": { "x": 3, "y": 0 @@ -2936,10 +2936,10 @@ }, { "lineGroupId": 49, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1837, - "time": 0.2825278810408922, + "noteOrder": 1838, + "time": 0.28252788104089216, "position": { "x": 7, "y": 0 @@ -2958,11 +2958,11 @@ "isPlayAudio": false }, { - "lineGroupId": 50, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 2, "isSliding": false, - "noteOrder": 1886, - "time": 0.2899628252788104, + "noteOrder": 1862, + "time": 0.2862453531598513, "position": { "x": 7, "y": 0 @@ -2976,18 +2976,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 51, - "indexInLine": 0, + "lineGroupId": 49, + "indexInLine": 3, "isSliding": false, - "noteOrder": 1934, - "time": 0.29739776951672864, + "noteOrder": 1862, + "time": 0.2862453531598513, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3004,11 +3004,11 @@ "isPlayAudio": false }, { - "lineGroupId": 52, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 1, "isSliding": false, - "noteOrder": 1982, - "time": 0.3048327137546469, + "noteOrder": 1886, + "time": 0.2899628252788104, "position": { "x": 7, "y": 0 @@ -3027,11 +3027,11 @@ "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 0, + "lineGroupId": 50, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2031, - "time": 0.31226765799256506, + "noteOrder": 1911, + "time": 0.2936802973977695, "position": { "x": 7, "y": 0 @@ -3045,16 +3045,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 1, + "lineGroupId": 50, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2127, - "time": 0.3271375464684015, + "noteOrder": 1911, + "time": 0.2936802973977695, "position": { "x": 6, "y": 0 @@ -3068,18 +3068,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 53, - "indexInLine": 2, + "lineGroupId": 51, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2176, - "time": 0.33457249070631967, + "noteOrder": 1935, + "time": 0.29739776951672864, "position": { - "x": 5, + "x": 7, "y": 0 }, "position2D": { @@ -3096,13 +3096,13 @@ "isPlayAudio": false }, { - "lineGroupId": 57, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2224, - "time": 0.3420074349442379, + "noteOrder": 1959, + "time": 0.3011152416356877, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3114,18 +3114,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 58, - "indexInLine": 0, + "lineGroupId": 51, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2272, - "time": 0.34944237918215615, + "noteOrder": 1959, + "time": 0.3011152416356877, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3142,13 +3142,13 @@ "isPlayAudio": false }, { - "lineGroupId": 59, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 1, "isSliding": false, - "noteOrder": 2321, - "time": 0.3568773234200744, + "noteOrder": 1983, + "time": 0.3048327137546468, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3165,13 +3165,13 @@ "isPlayAudio": false }, { - "lineGroupId": 60, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 2, "isSliding": false, - "noteOrder": 2369, - "time": 0.3643122676579926, + "noteOrder": 2007, + "time": 0.30855018587360594, "position": { - "x": 3, + "x": 7, "y": 0 }, "position2D": { @@ -3183,18 +3183,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, - "indexInLine": 0, + "lineGroupId": 52, + "indexInLine": 3, "isSliding": false, - "noteOrder": 2418, - "time": 0.3717472118959108, + "noteOrder": 2007, + "time": 0.30855018587360594, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3211,13 +3211,13 @@ "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 53, "indexInLine": 1, "isSliding": false, - "noteOrder": 2514, - "time": 0.38661710037174724, + "noteOrder": 2032, + "time": 0.312267657992565, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3229,18 +3229,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 61, + "lineGroupId": 53, "indexInLine": 2, "isSliding": false, - "noteOrder": 2563, - "time": 0.3940520446096654, + "noteOrder": 2128, + "time": 0.32713754646840143, "position": { - "x": 5, + "x": 6, "y": 0 }, "position2D": { @@ -3252,18 +3252,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 96, - "indexInLine": 0, + "lineGroupId": 53, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3481, - "time": 0.5353159851301116, + "noteOrder": 2177, + "time": 0.33457249070631967, "position": { - "x": 6, + "x": 5, "y": 0 }, "position2D": { @@ -3280,13 +3280,13 @@ "isPlayAudio": false }, { - "lineGroupId": 96, + "lineGroupId": 57, "indexInLine": 1, "isSliding": false, - "noteOrder": 3530, - "time": 0.5427509293680297, + "noteOrder": 2225, + "time": 0.34200743494423785, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3298,18 +3298,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 0, + "lineGroupId": 57, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3481, - "time": 0.5353159851301116, + "noteOrder": 2249, + "time": 0.345724907063197, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3326,11 +3326,11 @@ "isPlayAudio": false }, { - "lineGroupId": 97, - "indexInLine": 1, + "lineGroupId": 57, + "indexInLine": 3, "isSliding": false, - "noteOrder": 3530, - "time": 0.5427509293680297, + "noteOrder": 2249, + "time": 0.345724907063197, "position": { "x": 4, "y": 0 @@ -3349,13 +3349,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 1, "isSliding": false, - "noteOrder": 3868, - "time": 0.5947955390334573, + "noteOrder": 2273, + "time": 0.34944237918215615, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3372,13 +3372,13 @@ "isPlayAudio": false }, { - "lineGroupId": 110, - "indexInLine": 1, + "lineGroupId": 58, + "indexInLine": 2, "isSliding": false, - "noteOrder": 3916, - "time": 0.6022304832713754, + "noteOrder": 2298, + "time": 0.35315985130111527, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3395,11 +3395,11 @@ "isPlayAudio": false }, { - "lineGroupId": 117, - "indexInLine": 0, + "lineGroupId": 58, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4061, - "time": 0.6245353159851301, + "noteOrder": 2298, + "time": 0.35315985130111527, "position": { "x": 4, "y": 0 @@ -3413,18 +3413,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 117, + "lineGroupId": 59, "indexInLine": 1, "isSliding": false, - "noteOrder": 4086, - "time": 0.6282527881040892, + "noteOrder": 2322, + "time": 0.35687732342007433, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3441,13 +3441,13 @@ "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 0, + "lineGroupId": 59, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4110, - "time": 0.6319702602230484, + "noteOrder": 2346, + "time": 0.36059479553903345, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3459,18 +3459,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 118, - "indexInLine": 1, + "lineGroupId": 59, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4134, - "time": 0.6356877323420074, + "noteOrder": 2346, + "time": 0.36059479553903345, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3482,18 +3482,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4158, - "time": 0.6394052044609666, + "noteOrder": 2370, + "time": 0.3643122676579926, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3510,13 +3510,13 @@ "isPlayAudio": false }, { - "lineGroupId": 119, - "indexInLine": 1, + "lineGroupId": 60, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4182, - "time": 0.6431226765799257, + "noteOrder": 2394, + "time": 0.36802973977695164, "position": { - "x": 6, + "x": 3, "y": 0 }, "position2D": { @@ -3533,11 +3533,11 @@ "isPlayAudio": false }, { - "lineGroupId": 121, - "indexInLine": 0, + "lineGroupId": 60, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4206, - "time": 0.6468401486988847, + "noteOrder": 2394, + "time": 0.36802973977695164, "position": { "x": 4, "y": 0 @@ -3551,18 +3551,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 121, + "lineGroupId": 61, "indexInLine": 1, "isSliding": false, - "noteOrder": 4231, - "time": 0.6505576208178439, + "noteOrder": 2419, + "time": 0.37174721189591076, "position": { - "x": 4, + "x": 3, "y": 0 }, "position2D": { @@ -3579,13 +3579,13 @@ "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 0, + "lineGroupId": 61, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4255, - "time": 0.654275092936803, + "noteOrder": 2515, + "time": 0.3866171003717472, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3597,18 +3597,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 123, - "indexInLine": 1, + "lineGroupId": 61, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4303, - "time": 0.6617100371747212, + "noteOrder": 2564, + "time": 0.3940520446096654, "position": { - "x": 8, + "x": 5, "y": 0 }, "position2D": { @@ -3620,18 +3620,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 0, + "lineGroupId": 96, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4352, - "time": 0.6691449814126393, + "noteOrder": 3483, + "time": 0.5353159851301115, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3643,18 +3643,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 126, - "indexInLine": 1, + "lineGroupId": 96, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4400, - "time": 0.6765799256505577, + "noteOrder": 3531, + "time": 0.5427509293680297, "position": { - "x": 2, + "x": 6, "y": 0 }, "position2D": { @@ -3666,18 +3666,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 0, + "lineGroupId": 97, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4448, - "time": 0.6840148698884758, + "noteOrder": 3483, + "time": 0.5353159851301115, "position": { - "x": 7, + "x": 4, "y": 0 }, "position2D": { @@ -3689,18 +3689,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 1, + "lineGroupId": 97, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4472, - "time": 0.6877323420074349, + "noteOrder": 3531, + "time": 0.5427509293680297, "position": { - "x": 6, + "x": 4, "y": 0 }, "position2D": { @@ -3712,16 +3712,16 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 129, - "indexInLine": 2, + "lineGroupId": 110, + "indexInLine": 1, "isSliding": false, - "noteOrder": 4497, - "time": 0.6914498141263942, + "noteOrder": 3870, + "time": 0.5947955390334573, "position": { "x": 6, "y": 0 @@ -3740,13 +3740,13 @@ "isPlayAudio": false }, { - "lineGroupId": 130, - "indexInLine": 0, + "lineGroupId": 110, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4545, - "time": 0.6988847583643123, + "noteOrder": 3918, + "time": 0.6022304832713754, "position": { - "x": 3, + "x": 6, "y": 0 }, "position2D": { @@ -3758,16 +3758,16 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 117, "indexInLine": 1, "isSliding": false, - "noteOrder": 4569, - "time": 0.7026022304832713, + "noteOrder": 4063, + "time": 0.62453531598513, "position": { "x": 4, "y": 0 @@ -3786,11 +3786,11 @@ "isPlayAudio": false }, { - "lineGroupId": 130, + "lineGroupId": 117, "indexInLine": 2, "isSliding": false, - "noteOrder": 4593, - "time": 0.7063197026022305, + "noteOrder": 4087, + "time": 0.6282527881040891, "position": { "x": 4, "y": 0 @@ -3809,13 +3809,542 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 0, + "lineGroupId": 118, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4112, + "time": 0.6319702602230483, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 118, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4136, + "time": 0.6356877323420074, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4160, + "time": 0.6394052044609665, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 119, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4184, + "time": 0.6431226765799256, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4208, + "time": 0.6468401486988847, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 121, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4232, + "time": 0.6505576208178439, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4257, + "time": 0.6542750929368029, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 123, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4305, + "time": 0.6617100371747211, + "position": { + "x": 8, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4353, + "time": 0.6691449814126393, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 126, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4402, + "time": 0.6765799256505576, + "position": { + "x": 2, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4450, + "time": 0.6840148698884757, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4474, + "time": 0.6877323420074348, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 129, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4498, + "time": 0.691449814126394, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4547, + "time": 0.6988847583643123, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4571, + "time": 0.7026022304832714, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 130, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4595, + "time": 0.7063197026022305, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4644, + "time": 0.7137546468401487, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4668, + "time": 0.7174721189591078, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 131, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4692, + "time": 0.7211895910780669, + "position": { + "x": 6, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 4740, + "time": 0.7286245353159851, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 4765, + "time": 0.7323420074349443, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 132, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 4789, + "time": 0.7360594795539033, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5321, + "time": 0.8178438661710036, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 153, + "indexInLine": 2, "isSliding": false, - "noteOrder": 4642, - "time": 0.7137546468401488, + "noteOrder": 5345, + "time": 0.8215613382899627, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3832,11 +4361,11 @@ "isPlayAudio": false }, { - "lineGroupId": 131, - "indexInLine": 1, + "lineGroupId": 153, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4666, - "time": 0.7174721189591078, + "noteOrder": 5345, + "time": 0.8215613382899627, "position": { "x": 6, "y": 0 @@ -3855,13 +4384,36 @@ "isPlayAudio": false }, { - "lineGroupId": 131, + "lineGroupId": 154, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5369, + "time": 0.8252788104089218, + "position": { + "x": 7, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 154, "indexInLine": 2, "isSliding": false, - "noteOrder": 4690, - "time": 0.7211895910780669, + "noteOrder": 5393, + "time": 0.8289962825278809, "position": { - "x": 6, + "x": 7, "y": 0 }, "position2D": { @@ -3873,18 +4425,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, - "indexInLine": 0, + "lineGroupId": 154, + "indexInLine": 3, "isSliding": false, - "noteOrder": 4738, - "time": 0.7286245353159851, + "noteOrder": 5393, + "time": 0.8289962825278809, "position": { - "x": 4, + "x": 6, "y": 0 }, "position2D": { @@ -3901,13 +4453,13 @@ "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 155, "indexInLine": 1, "isSliding": false, - "noteOrder": 4762, - "time": 0.7323420074349443, + "noteOrder": 5418, + "time": 0.83271375464684, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3919,18 +4471,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 132, + "lineGroupId": 155, "indexInLine": 2, "isSliding": false, - "noteOrder": 4787, - "time": 0.7360594795539033, + "noteOrder": 5442, + "time": 0.8364312267657992, "position": { - "x": 4, + "x": 7, "y": 0 }, "position2D": { @@ -3942,18 +4494,18 @@ "y": 1, "z": 1 }, - "noteType": 12, + "noteType": 13, "postionOffset": null, "isPlayAudio": false }, { - "lineGroupId": 153, - "indexInLine": 0, + "lineGroupId": 155, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5319, - "time": 0.8178438661710037, + "noteOrder": 5442, + "time": 0.8364312267657992, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -3970,11 +4522,11 @@ "isPlayAudio": false }, { - "lineGroupId": 154, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5367, - "time": 0.825278810408922, + "noteOrder": 5466, + "time": 0.8401486988847583, "position": { "x": 7, "y": 0 @@ -3993,11 +4545,11 @@ "isPlayAudio": false }, { - "lineGroupId": 155, - "indexInLine": 0, + "lineGroupId": 156, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5415, - "time": 0.8327137546468402, + "noteOrder": 5490, + "time": 0.8438661710037173, "position": { "x": 7, "y": 0 @@ -4011,18 +4563,18 @@ "y": 1, "z": 1 }, - "noteType": 13, + "noteType": 12, "postionOffset": null, "isPlayAudio": false }, { "lineGroupId": 156, - "indexInLine": 0, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5464, - "time": 0.8401486988847584, + "noteOrder": 5490, + "time": 0.8438661710037173, "position": { - "x": 7, + "x": 6, "y": 0 }, "position2D": { @@ -4040,10 +4592,10 @@ }, { "lineGroupId": 157, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5512, - "time": 0.8475836431226766, + "noteOrder": 5514, + "time": 0.8475836431226764, "position": { "x": 7, "y": 0 @@ -4063,9 +4615,9 @@ }, { "lineGroupId": 157, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5609, + "noteOrder": 5611, "time": 0.862453531598513, "position": { "x": 6, @@ -4086,9 +4638,9 @@ }, { "lineGroupId": 157, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 5657, + "noteOrder": 5659, "time": 0.8698884758364313, "position": { "x": 5, @@ -4109,10 +4661,33 @@ }, { "lineGroupId": 161, - "indexInLine": 0, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5708, + "time": 0.8773234200743494, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 161, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5705, - "time": 0.8773234200743495, + "noteOrder": 5732, + "time": 0.8810408921933085, "position": { "x": 3, "y": 0 @@ -4130,11 +4705,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 161, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5732, + "time": 0.8810408921933085, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 162, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5754, + "noteOrder": 5756, "time": 0.8847583643122676, "position": { "x": 3, @@ -4153,12 +4751,81 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 162, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5780, + "time": 0.8884758364312267, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 162, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5780, + "time": 0.8884758364312267, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 163, + "indexInLine": 1, + "isSliding": false, + "noteOrder": 5804, + "time": 0.8921933085501859, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 163, - "indexInLine": 0, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5802, - "time": 0.892193308550186, + "noteOrder": 5829, + "time": 0.895910780669145, "position": { "x": 3, "y": 0 @@ -4176,11 +4843,34 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 163, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5829, + "time": 0.895910780669145, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 12, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 164, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5850, + "noteOrder": 5853, "time": 0.8996282527881041, "position": { "x": 3, @@ -4199,12 +4889,58 @@ "postionOffset": null, "isPlayAudio": false }, + { + "lineGroupId": 164, + "indexInLine": 2, + "isSliding": false, + "noteOrder": 5877, + "time": 0.9033457249070631, + "position": { + "x": 3, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, + { + "lineGroupId": 164, + "indexInLine": 3, + "isSliding": false, + "noteOrder": 5877, + "time": 0.9033457249070631, + "position": { + "x": 4, + "y": 0 + }, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "noteType": 13, + "postionOffset": null, + "isPlayAudio": false + }, { "lineGroupId": 165, - "indexInLine": 0, + "indexInLine": 1, "isSliding": false, - "noteOrder": 5899, - "time": 0.9070631970260223, + "noteOrder": 5901, + "time": 0.9070631970260222, "position": { "x": 3, "y": 0 @@ -4224,10 +4960,10 @@ }, { "lineGroupId": 165, - "indexInLine": 1, + "indexInLine": 2, "isSliding": false, - "noteOrder": 5995, - "time": 0.9219330855018588, + "noteOrder": 5998, + "time": 0.9219330855018587, "position": { "x": 4, "y": 0 @@ -4247,10 +4983,10 @@ }, { "lineGroupId": 165, - "indexInLine": 2, + "indexInLine": 3, "isSliding": false, - "noteOrder": 6044, - "time": 0.929368029739777, + "noteOrder": 6046, + "time": 0.9293680297397768, "position": { "x": 5, "y": 0 diff --git "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/info.json" "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/info.json" index bf771760..0b538779 100644 --- "a/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/info.json" +++ "b/tracks/\351\273\222\351\253\252\344\271\261\343\202\214\343\201\227\344\277\256\347\276\205\343\201\250\343\201\252\343\202\212\343\201\246 (STARDOM Remix)/info.json" @@ -5,7 +5,7 @@ "CreateTicks": 0, "CreateTime": "", "SongName": "\u9ed2\u9aea\u4e71\u308c\u3057\u4fee\u7f85\u3068\u306a\u308a\u3066 (STARDOM Remix)", - "SongLength": "122.122449", + "SongLength": "112.169796", "SongAuthorName": "Endorfin.", "LevelAuthorName": "https://github.com/thomasasfk/drs2dd", "SongPreviewSection": 0,